From d62d2d3773b34d23e7fce579dbeb9d9c5aa7fdf2 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 6 Aug 2022 10:19:49 +0200 Subject: [PATCH 001/355] Add function to get allowed loading of stations --- edisgo/flex_opt/check_tech_constraints.py | 120 +++++++++++++++--- tests/flex_opt/test_check_tech_constraints.py | 68 +++++++++- 2 files changed, 167 insertions(+), 21 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 5944467ca..097e9e05e 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -377,12 +377,11 @@ def _station_load(edisgo_obj, grid): if isinstance(grid, LVGrid): voltage_level = "lv" transformers_df = grid.transformers_df - s_station_pfa = edisgo_obj.results.s_res.loc[:, transformers_df.index].sum( - axis=1 - ) + s_station_pfa = pd.DataFrame( + {f"{grid}_station": edisgo_obj.results.s_res.loc[ + :, transformers_df.index].sum(axis=1)}) elif isinstance(grid, MVGrid): voltage_level = "mv" - transformers_df = edisgo_obj.topology.transformers_hvmv_df # ensure that power flow was conducted for MV mv_lines = edisgo_obj.topology.mv_grid.lines_df.index if not any(mv_lines.isin(edisgo_obj.results.i_res.columns)): @@ -390,44 +389,127 @@ def _station_load(edisgo_obj, grid): "MV was not included in power flow analysis, wherefore load " "of HV/MV station cannot be calculated." ) - s_station_pfa = np.hypot( - edisgo_obj.results.pfa_slack.p, - edisgo_obj.results.pfa_slack.q, + s_station_pfa = pd.DataFrame( + {f"{grid}_station": np.hypot( + edisgo_obj.results.pfa_slack.p, + edisgo_obj.results.pfa_slack.q,) + } ) else: raise ValueError("Inserted grid is invalid.") # get maximum allowed apparent power of station in each time step - s_station = sum(transformers_df.s_nom) - load_factor = edisgo_obj.timeseries.timesteps_load_feedin_case.apply( - lambda _: edisgo_obj.config["grid_expansion_load_factors"][ - f"{voltage_level}_{_}_transformer" - ] - ) - - s_station_allowed = s_station * load_factor + s_station_allowed = station_allowed_load(edisgo_obj, grid) # calculate residual apparent power (if negative, station is over-loaded) s_res = s_station_allowed - s_station_pfa s_res = s_res[s_res < 0] - if not s_res.empty: + if not s_res.dropna().empty: + load_factor = edisgo_obj.timeseries.timesteps_load_feedin_case.apply( + lambda _: edisgo_obj.config["grid_expansion_load_factors"][ + f"{voltage_level}_{_}_transformer" + ] + ) + # calculate greatest apparent power missing (residual apparent power is - # devided by the load factor to account for load factors smaller than + # divided by the load factor to account for load factors smaller than # one, which lead to a higher needed additional capacity) - s_missing = (s_res / load_factor).dropna() + s_missing = (s_res.iloc[:, 0] / load_factor).dropna() return pd.DataFrame( { "s_missing": abs(s_missing.min()), "time_index": s_missing.idxmin(), }, - index=[repr(grid)], + index=[f"{grid}_station"], ) else: return pd.DataFrame(dtype=float) +def station_allowed_load(edisgo_obj, grid): + """ + Returns allowed loading of grid's station to the overlying voltage level per time + step in MVA. + + Allowed loading considers allowed load factors in heavy load flow case ('load case') + and reverse power flow case ('feed-in case') from config files. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + grid : :class:`~.network.grids.LVGrid` or :class:`~.network.grids.MVGrid` + Grid to get allowed station loading for. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe containing the maximum allowed apparent power over the grid's + transformers to the overlying voltage level per time step in MVA. + Index of the dataframe are all time steps power flow analysis + was conducted for of type :pandas:`pandas.Timestamp`. + Column name is grid's name with the extension '_station'. + + """ + # get grid's voltage level and transformers to the overlying voltage level + if isinstance(grid, LVGrid): + voltage_level = "lv" + transformers_df = grid.transformers_df + elif isinstance(grid, MVGrid): + voltage_level = "mv" + transformers_df = edisgo_obj.topology.transformers_hvmv_df + else: + raise ValueError("Inserted grid is invalid.") + + # get maximum allowed apparent power of station in each time step + s_station = sum(transformers_df.s_nom) + load_factor = edisgo_obj.timeseries.timesteps_load_feedin_case.apply( + lambda _: edisgo_obj.config["grid_expansion_load_factors"][ + f"{voltage_level}_{_}_transformer" + ] + ) + + return pd.DataFrame( + {f"{grid}_station": s_station * load_factor}, index=load_factor.index) + + +def stations_allowed_load(edisgo_obj, grids=None): + """ + Returns allowed loading of specified grids stations to the overlying voltage level + per time step in MVA. + + Allowed loading considers allowed load factors in heavy load flow case ('load case') + and reverse power flow case ('feed-in case') from config files. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + grids : list(:class:`~.network.grids.Grid`) + List of MV and LV grid to get allowed station loading for. Per default all + allowed loading is returned for all grids in the network. Default: None. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe containing the maximum allowed apparent power over the grid's + transformers to the overlying voltage level per time step in MVA. + Index of the dataframe are all time steps power flow analysis + was conducted for of type :pandas:`pandas.Timestamp`. + Column names are the respective grid's name with the extension '_station'. + + """ + if grids is None: + grids = list(edisgo_obj.topology.lv_grids) + [edisgo_obj.topology.mv_grid] + + allowed_loading = pd.DataFrame() + for grid in grids: + allowed_loading = pd.concat( + [allowed_loading, + station_allowed_load(edisgo_obj, grid)], axis=1) + return allowed_loading + + def mv_voltage_deviation(edisgo_obj, voltage_levels="mv_lv"): """ Checks for voltage stability issues in MV network. diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 5688eb378..988672afc 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -3,6 +3,7 @@ import numpy as np import pandas as pd import pytest +from pandas.util.testing import assert_frame_equal from edisgo import EDisGo from edisgo.flex_opt import check_tech_constraints @@ -78,11 +79,74 @@ def test_mv_lv_station_load(self): assert (4, 2) == df.shape # check missing transformer capacity of one grid assert np.isclose( - df.at["LVGrid_1", "s_missing"], + df.at["LVGrid_1_station", "s_missing"], self.edisgo.results.s_res.at[self.timesteps[1], "LVStation_1_transformer_1"] - 0.16, ) - assert df.at["LVGrid_1", "time_index"] == self.timesteps[0] + assert df.at["LVGrid_1_station", "time_index"] == self.timesteps[0] + + def test_station_allowed_load(self): + + # check LV grid + grid = self.edisgo.topology.get_lv_grid(4) + df = check_tech_constraints.station_allowed_load(self.edisgo, grid) + # check shape of dataframe + assert (4, 1) == df.shape + # check values + exp = pd.DataFrame( + {f"{grid}_station": [0.05] * len(self.edisgo.timeseries.timeindex)}, + index=self.edisgo.timeseries.timeindex + ) + assert_frame_equal(df, exp) + + # check MV grid + grid = self.edisgo.topology.mv_grid + df = check_tech_constraints.station_allowed_load(self.edisgo, grid) + # check shape of dataframe + assert (4, 1) == df.shape + # check values + load_cases = self.edisgo.timeseries.timeindex_worst_cases[ + self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") + ] + assert np.isclose(20., df.loc[load_cases.values].values).all() + feed_in_cases = self.edisgo.timeseries.timeindex_worst_cases[ + self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("feed") + ] + assert np.isclose(40., df.loc[feed_in_cases.values].values).all() + + def test_stations_allowed_load(self): + + # check without specifying a grid + df = check_tech_constraints.stations_allowed_load(self.edisgo) + # check shape of dataframe + assert (4, 11) == df.shape + # check values + exp = pd.DataFrame( + {"LVGrid_4_station": [0.05] * len(self.edisgo.timeseries.timeindex)}, + index=self.edisgo.timeseries.timeindex + ) + assert_frame_equal(df.loc[:, ["LVGrid_4_station"]], exp) + load_cases = self.edisgo.timeseries.timeindex_worst_cases[ + self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") + ] + assert np.isclose(20., df.loc[load_cases.values, "MVGrid_1_station"].values).all() + + # check with specifying grids + grids = [self.edisgo.topology.mv_grid, self.edisgo.topology.get_lv_grid(1)] + df = check_tech_constraints.stations_allowed_load(self.edisgo, grids) + # check shape of dataframe + assert (4, 2) == df.shape + # check values + exp = pd.DataFrame( + {"LVGrid_1_station": [0.16] * len(self.edisgo.timeseries.timeindex)}, + index=self.edisgo.timeseries.timeindex + ) + assert_frame_equal(df.loc[:, ["LVGrid_1_station"]], exp) + assert np.isclose(20., df.loc[load_cases.values, "MVGrid_1_station"].values).all() + feed_in_cases = self.edisgo.timeseries.timeindex_worst_cases[ + self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("feed") + ] + assert np.isclose(40., df.loc[feed_in_cases.values, "MVGrid_1_station"].values).all() def test_lines_allowed_load(self): From cdbc06c587498e599e6800667fc14ad683f54ae7 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 6 Aug 2022 11:09:07 +0200 Subject: [PATCH 002/355] Add function to get relative loading of stations --- edisgo/flex_opt/check_tech_constraints.py | 129 ++++++++++++++++-- tests/flex_opt/test_check_tech_constraints.py | 92 +++++++++++-- 2 files changed, 201 insertions(+), 20 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 097e9e05e..55edd4ff0 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -337,7 +337,7 @@ def mv_lv_station_load(edisgo_obj): crit_stations = pd.concat( [ crit_stations, - _station_load(edisgo_obj, lv_grid), + _station_overload(edisgo_obj, lv_grid), ] ) if not crit_stations.empty: @@ -352,7 +352,7 @@ def mv_lv_station_load(edisgo_obj): return crit_stations -def _station_load(edisgo_obj, grid): +def _station_overload(edisgo_obj, grid): """ Checks for over-loading of stations. @@ -378,8 +378,12 @@ def _station_load(edisgo_obj, grid): voltage_level = "lv" transformers_df = grid.transformers_df s_station_pfa = pd.DataFrame( - {f"{grid}_station": edisgo_obj.results.s_res.loc[ - :, transformers_df.index].sum(axis=1)}) + { + f"{grid}_station": edisgo_obj.results.s_res.loc[ + :, transformers_df.index + ].sum(axis=1) + } + ) elif isinstance(grid, MVGrid): voltage_level = "mv" # ensure that power flow was conducted for MV @@ -390,9 +394,11 @@ def _station_load(edisgo_obj, grid): "of HV/MV station cannot be calculated." ) s_station_pfa = pd.DataFrame( - {f"{grid}_station": np.hypot( - edisgo_obj.results.pfa_slack.p, - edisgo_obj.results.pfa_slack.q,) + { + f"{grid}_station": np.hypot( + edisgo_obj.results.pfa_slack.p, + edisgo_obj.results.pfa_slack.q, + ) } ) else: @@ -428,6 +434,58 @@ def _station_load(edisgo_obj, grid): return pd.DataFrame(dtype=float) +def _station_load(edisgo_obj, grid): + """ + Returns loading of stations per time step from power flow analysis in MVA. + + In case of HV/MV transformers, which are not included in power flow analysis, + loading is determined using slack results. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + grid : :class:`~.network.grids.LVGrid` or :class:`~.network.grids.MVGrid` + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe containing loading of grid's station to the overlying voltage level + per time step in MVA. + Index of the dataframe are all time steps power flow analysis + was conducted for of type :pandas:`pandas.Timestamp`. + Column name is grid's name with the extension '_station'. + + """ + # get apparent power over station from power flow analysis + if isinstance(grid, LVGrid): + return pd.DataFrame( + { + f"{grid}_station": edisgo_obj.results.s_res.loc[ + :, grid.transformers_df.index + ].sum(axis=1) + } + ) + elif isinstance(grid, MVGrid): + # ensure that power flow was conducted for MV as slack could also be at MV/LV + # station's secondary side + mv_lines = edisgo_obj.topology.mv_grid.lines_df.index + if not any(mv_lines.isin(edisgo_obj.results.i_res.columns)): + raise ValueError( + "MV was not included in power flow analysis, wherefore load " + "of HV/MV station cannot be calculated." + ) + return pd.DataFrame( + { + f"{grid}_station": np.hypot( + edisgo_obj.results.pfa_slack.p, + edisgo_obj.results.pfa_slack.q, + ) + } + ) + else: + raise ValueError("Inserted grid is invalid.") + + def station_allowed_load(edisgo_obj, grid): """ Returns allowed loading of grid's station to the overlying voltage level per time @@ -471,7 +529,8 @@ def station_allowed_load(edisgo_obj, grid): ) return pd.DataFrame( - {f"{grid}_station": s_station * load_factor}, index=load_factor.index) + {f"{grid}_station": s_station * load_factor}, index=load_factor.index + ) def stations_allowed_load(edisgo_obj, grids=None): @@ -486,8 +545,8 @@ def stations_allowed_load(edisgo_obj, grids=None): ---------- edisgo_obj : :class:`~.EDisGo` grids : list(:class:`~.network.grids.Grid`) - List of MV and LV grid to get allowed station loading for. Per default all - allowed loading is returned for all grids in the network. Default: None. + List of MV and LV grids to get allowed station loading for. Per default + allowed loading is returned for all stations in the network. Default: None. Returns ------- @@ -505,11 +564,57 @@ def stations_allowed_load(edisgo_obj, grids=None): allowed_loading = pd.DataFrame() for grid in grids: allowed_loading = pd.concat( - [allowed_loading, - station_allowed_load(edisgo_obj, grid)], axis=1) + [allowed_loading, station_allowed_load(edisgo_obj, grid)], axis=1 + ) return allowed_loading +def stations_relative_load(edisgo_obj, grids=None): + """ + Returns relative loading of specified grids stations to the overlying voltage level + per time step in p.u.. + + Stations relative loading is determined by dividing the stations loading (from + power flow analysis) by the allowed loading (considering allowed load factors in + heavy load flow case ('load case') and reverse power flow case ('feed-in case') + from config files). + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + grids : list(:class:`~.network.grids.Grid`) + List of MV and LV grids to get relative station loading for. Per default + relative loading is returned for all stations in the network that were + included in the power flow analysis. Default: None. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe containing the relative loading of the grid's + transformers to the overlying voltage level per time step in p.u.. + Index of the dataframe are all time steps power flow analysis + was conducted for of type :pandas:`pandas.Timestamp`. + Column names are the respective grid's name with the extension '_station'. + + """ + if grids is None: + grids = list(edisgo_obj.topology.lv_grids) + [edisgo_obj.topology.mv_grid] + + # get allowed loading + allowed_loading = stations_allowed_load(edisgo_obj, grids) + + # get loading from power flow results + loading = pd.DataFrame() + for grid in grids: + # check that grid was included in power flow analysis + try: + loading = pd.concat([loading, _station_load(edisgo_obj, grid)], axis=1) + except Exception: + pass + + return loading / allowed_loading.loc[:, loading.columns] + + def mv_voltage_deviation(edisgo_obj, voltage_levels="mv_lv"): """ Checks for voltage stability issues in MV network. diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 988672afc..cd0abfee8 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -3,6 +3,7 @@ import numpy as np import pandas as pd import pytest + from pandas.util.testing import assert_frame_equal from edisgo import EDisGo @@ -85,6 +86,38 @@ def test_mv_lv_station_load(self): ) assert df.at["LVGrid_1_station", "time_index"] == self.timesteps[0] + def test__station_load(self): + # check LV grid + grid = self.edisgo.topology.get_lv_grid(4) + df = check_tech_constraints._station_load(self.edisgo, grid) + # check shape and column of dataframe + assert (4, 1) == df.shape + assert f"{grid}_station" in df.columns + + # check MV grid + grid = self.edisgo.topology.mv_grid + df = check_tech_constraints._station_load(self.edisgo, grid) + # check shape and column of dataframe + assert (4, 1) == df.shape + assert f"{grid}_station" in df.columns + + # check ValueErrors + msg = "Inserted grid is invalid." + with pytest.raises(ValueError, match=msg): + check_tech_constraints._station_load(self.edisgo, str(grid)) + + self.edisgo.analyze(mode="lv", lv_grid_id=1) + msg = "MV was not included in power flow analysis" + with pytest.raises(ValueError, match=msg): + check_tech_constraints._station_load(self.edisgo, grid) + + # check KeyError in case grid was not included in power flow + self.edisgo.analyze(mode="mv") + grid = self.edisgo.topology.get_lv_grid(4) + msg = "LVStation_4_transformer_1" + with pytest.raises(KeyError, match=msg): + check_tech_constraints._station_load(self.edisgo, grid) + def test_station_allowed_load(self): # check LV grid @@ -95,7 +128,7 @@ def test_station_allowed_load(self): # check values exp = pd.DataFrame( {f"{grid}_station": [0.05] * len(self.edisgo.timeseries.timeindex)}, - index=self.edisgo.timeseries.timeindex + index=self.edisgo.timeseries.timeindex, ) assert_frame_equal(df, exp) @@ -108,11 +141,11 @@ def test_station_allowed_load(self): load_cases = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") ] - assert np.isclose(20., df.loc[load_cases.values].values).all() + assert np.isclose(20.0, df.loc[load_cases.values].values).all() feed_in_cases = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("feed") ] - assert np.isclose(40., df.loc[feed_in_cases.values].values).all() + assert np.isclose(40.0, df.loc[feed_in_cases.values].values).all() def test_stations_allowed_load(self): @@ -123,13 +156,15 @@ def test_stations_allowed_load(self): # check values exp = pd.DataFrame( {"LVGrid_4_station": [0.05] * len(self.edisgo.timeseries.timeindex)}, - index=self.edisgo.timeseries.timeindex + index=self.edisgo.timeseries.timeindex, ) assert_frame_equal(df.loc[:, ["LVGrid_4_station"]], exp) load_cases = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") ] - assert np.isclose(20., df.loc[load_cases.values, "MVGrid_1_station"].values).all() + assert np.isclose( + 20.0, df.loc[load_cases.values, "MVGrid_1_station"].values + ).all() # check with specifying grids grids = [self.edisgo.topology.mv_grid, self.edisgo.topology.get_lv_grid(1)] @@ -139,14 +174,55 @@ def test_stations_allowed_load(self): # check values exp = pd.DataFrame( {"LVGrid_1_station": [0.16] * len(self.edisgo.timeseries.timeindex)}, - index=self.edisgo.timeseries.timeindex + index=self.edisgo.timeseries.timeindex, ) assert_frame_equal(df.loc[:, ["LVGrid_1_station"]], exp) - assert np.isclose(20., df.loc[load_cases.values, "MVGrid_1_station"].values).all() + assert np.isclose( + 20.0, df.loc[load_cases.values, "MVGrid_1_station"].values + ).all() feed_in_cases = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("feed") ] - assert np.isclose(40., df.loc[feed_in_cases.values, "MVGrid_1_station"].values).all() + assert np.isclose( + 40.0, df.loc[feed_in_cases.values, "MVGrid_1_station"].values + ).all() + + def test_stations_relative_load(self): + + # check without specifying grids + df = check_tech_constraints.stations_relative_load(self.edisgo) + # check shape of dataframe + assert (4, 11) == df.shape + # check values + load_cases = self.edisgo.timeseries.timeindex_worst_cases[ + self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") + ] + assert np.isclose( + 0.02853, df.loc[load_cases.values, "LVGrid_4_station"].values, atol=1e-5 + ).all() + + # check with specifying grids + grids = [self.edisgo.topology.mv_grid, self.edisgo.topology.get_lv_grid(4)] + df = check_tech_constraints.stations_relative_load(self.edisgo, grids) + # check shape of dataframe + assert (4, 2) == df.shape + # check values + assert np.isclose( + 0.02853, df.loc[load_cases.values, "LVGrid_4_station"].values, atol=1e-5 + ).all() + + # check with missing grids + self.edisgo.analyze(mode="mv") + df = check_tech_constraints.stations_relative_load(self.edisgo) + # check shape of dataframe + assert (4, 1) == df.shape + # check values + load_cases = self.edisgo.timeseries.timeindex_worst_cases[ + self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") + ] + assert np.isclose( + 0.06753, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 + ).all() def test_lines_allowed_load(self): From d9ec84f34bd23505414686a103e4376d045f9e58 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 6 Aug 2022 11:12:26 +0200 Subject: [PATCH 003/355] Make function private --- edisgo/flex_opt/check_tech_constraints.py | 8 ++++---- tests/flex_opt/test_check_tech_constraints.py | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 55edd4ff0..2d84fd71d 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -296,7 +296,7 @@ def hv_mv_station_load(edisgo_obj): section 'grid_expansion_load_factors'. """ - crit_stations = _station_load(edisgo_obj, edisgo_obj.topology.mv_grid) + crit_stations = _station_overload(edisgo_obj, edisgo_obj.topology.mv_grid) if not crit_stations.empty: logger.debug("==> HV/MV station has load issues.") else: @@ -405,7 +405,7 @@ def _station_overload(edisgo_obj, grid): raise ValueError("Inserted grid is invalid.") # get maximum allowed apparent power of station in each time step - s_station_allowed = station_allowed_load(edisgo_obj, grid) + s_station_allowed = _station_allowed_load(edisgo_obj, grid) # calculate residual apparent power (if negative, station is over-loaded) s_res = s_station_allowed - s_station_pfa @@ -486,7 +486,7 @@ def _station_load(edisgo_obj, grid): raise ValueError("Inserted grid is invalid.") -def station_allowed_load(edisgo_obj, grid): +def _station_allowed_load(edisgo_obj, grid): """ Returns allowed loading of grid's station to the overlying voltage level per time step in MVA. @@ -564,7 +564,7 @@ def stations_allowed_load(edisgo_obj, grids=None): allowed_loading = pd.DataFrame() for grid in grids: allowed_loading = pd.concat( - [allowed_loading, station_allowed_load(edisgo_obj, grid)], axis=1 + [allowed_loading, _station_allowed_load(edisgo_obj, grid)], axis=1 ) return allowed_loading diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index cd0abfee8..4c8092214 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -118,11 +118,11 @@ def test__station_load(self): with pytest.raises(KeyError, match=msg): check_tech_constraints._station_load(self.edisgo, grid) - def test_station_allowed_load(self): + def test__station_allowed_load(self): # check LV grid grid = self.edisgo.topology.get_lv_grid(4) - df = check_tech_constraints.station_allowed_load(self.edisgo, grid) + df = check_tech_constraints._station_allowed_load(self.edisgo, grid) # check shape of dataframe assert (4, 1) == df.shape # check values @@ -134,7 +134,7 @@ def test_station_allowed_load(self): # check MV grid grid = self.edisgo.topology.mv_grid - df = check_tech_constraints.station_allowed_load(self.edisgo, grid) + df = check_tech_constraints._station_allowed_load(self.edisgo, grid) # check shape of dataframe assert (4, 1) == df.shape # check values From c79362815d3297c4a9ad2be08cbc8c033fe036a9 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 6 Aug 2022 11:53:08 +0200 Subject: [PATCH 004/355] Add station_name property --- edisgo/flex_opt/check_tech_constraints.py | 8 ++++---- edisgo/network/grids.py | 8 ++++++++ tests/flex_opt/test_check_tech_constraints.py | 6 +++--- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 2d84fd71d..67d193a15 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -427,7 +427,7 @@ def _station_overload(edisgo_obj, grid): "s_missing": abs(s_missing.min()), "time_index": s_missing.idxmin(), }, - index=[f"{grid}_station"], + index=[grid.station_name], ) else: @@ -460,7 +460,7 @@ def _station_load(edisgo_obj, grid): if isinstance(grid, LVGrid): return pd.DataFrame( { - f"{grid}_station": edisgo_obj.results.s_res.loc[ + grid.station_name: edisgo_obj.results.s_res.loc[ :, grid.transformers_df.index ].sum(axis=1) } @@ -476,7 +476,7 @@ def _station_load(edisgo_obj, grid): ) return pd.DataFrame( { - f"{grid}_station": np.hypot( + grid.station_name: np.hypot( edisgo_obj.results.pfa_slack.p, edisgo_obj.results.pfa_slack.q, ) @@ -529,7 +529,7 @@ def _station_allowed_load(edisgo_obj, grid): ) return pd.DataFrame( - {f"{grid}_station": s_station * load_factor}, index=load_factor.index + {grid.station_name: s_station * load_factor}, index=load_factor.index ) diff --git a/edisgo/network/grids.py b/edisgo/network/grids.py index d2dcfc082..a15e0a161 100644 --- a/edisgo/network/grids.py +++ b/edisgo/network/grids.py @@ -114,6 +114,14 @@ def station(self): """ return self.buses_df.loc[self.transformers_df.iloc[0].bus1].to_frame().T + @property + def station_name(self): + """ + Name of station to the overlying voltage level. + + """ + return f"{self}_station" + @property def generators_df(self): """ diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 4c8092214..47bab2789 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -92,14 +92,14 @@ def test__station_load(self): df = check_tech_constraints._station_load(self.edisgo, grid) # check shape and column of dataframe assert (4, 1) == df.shape - assert f"{grid}_station" in df.columns + assert grid.station_name in df.columns # check MV grid grid = self.edisgo.topology.mv_grid df = check_tech_constraints._station_load(self.edisgo, grid) # check shape and column of dataframe assert (4, 1) == df.shape - assert f"{grid}_station" in df.columns + assert grid.station_name in df.columns # check ValueErrors msg = "Inserted grid is invalid." @@ -127,7 +127,7 @@ def test__station_allowed_load(self): assert (4, 1) == df.shape # check values exp = pd.DataFrame( - {f"{grid}_station": [0.05] * len(self.edisgo.timeseries.timeindex)}, + {grid.station_name: [0.05] * len(self.edisgo.timeseries.timeindex)}, index=self.edisgo.timeseries.timeindex, ) assert_frame_equal(df, exp) From 5ca1119fc55fa823567503942b2ef3412979eb5f Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 6 Aug 2022 11:53:39 +0200 Subject: [PATCH 005/355] Use new functions --- edisgo/flex_opt/check_tech_constraints.py | 27 +++-------------------- 1 file changed, 3 insertions(+), 24 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 67d193a15..fb0e74c10 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -373,37 +373,16 @@ def _station_overload(edisgo_obj, grid): :pandas:`pandas.Timestamp`. """ - # get apparent power over station from power flow analysis if isinstance(grid, LVGrid): voltage_level = "lv" - transformers_df = grid.transformers_df - s_station_pfa = pd.DataFrame( - { - f"{grid}_station": edisgo_obj.results.s_res.loc[ - :, transformers_df.index - ].sum(axis=1) - } - ) elif isinstance(grid, MVGrid): voltage_level = "mv" - # ensure that power flow was conducted for MV - mv_lines = edisgo_obj.topology.mv_grid.lines_df.index - if not any(mv_lines.isin(edisgo_obj.results.i_res.columns)): - raise ValueError( - "MV was not included in power flow analysis, wherefore load " - "of HV/MV station cannot be calculated." - ) - s_station_pfa = pd.DataFrame( - { - f"{grid}_station": np.hypot( - edisgo_obj.results.pfa_slack.p, - edisgo_obj.results.pfa_slack.q, - ) - } - ) else: raise ValueError("Inserted grid is invalid.") + # get apparent power over station from power flow analysis + s_station_pfa = _station_load(edisgo_obj, grid) + # get maximum allowed apparent power of station in each time step s_station_allowed = _station_allowed_load(edisgo_obj, grid) From 0024a70debaf488ddc45734f9ce365e04c712acf Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 6 Aug 2022 11:54:21 +0200 Subject: [PATCH 006/355] Also return grid --- edisgo/flex_opt/check_tech_constraints.py | 43 ++++++++++++----------- 1 file changed, 22 insertions(+), 21 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index fb0e74c10..1c67ebca4 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -281,13 +281,13 @@ def hv_mv_station_load(edisgo_obj): Returns ------- :pandas:`pandas.DataFrame` - Dataframe containing over-loaded HV/MV station, their apparent power - at maximal over-loading and the corresponding time step. - Index of the dataframe is the representative of the MVGrid. - Columns are 's_missing' containing the missing - apparent power at maximal over-loading in MVA as float and 'time_index' - containing the corresponding time step the over-loading occured in as - :pandas:`pandas.Timestamp`. + In case there are no over-loading problems returns an empty dataframe. + In case of over-loading problems the dataframe contains the name of the + over-loaded station (grid's name with the extension '_station') in the index. + Columns are 's_missing' containing the missing apparent power at maximal + over-loading in MVA as float, 'time_index' containing the corresponding time + step the over-loading occurred in as :pandas:`pandas.Timestamp`, + and 'grid' containing the grid object as :class:`~.network.grids.MVGrid`. Notes ----- @@ -316,13 +316,13 @@ def mv_lv_station_load(edisgo_obj): Returns ------- :pandas:`pandas.DataFrame` - Dataframe containing over-loaded MV/LV stations, their missing apparent - power at maximal over-loading and the corresponding time step. - Index of the dataframe are the representatives of the grids with - over-loaded stations. Columns are 's_missing' containing the missing - apparent power at maximal over-loading in MVA as float and 'time_index' - containing the corresponding time step the over-loading occured in as - :pandas:`pandas.Timestamp`. + In case there are no over-loading problems returns an empty dataframe. + In case of over-loading problems the dataframe contains the name of the + over-loaded station (grid's name with the extension '_station') in the index. + Columns are 's_missing' containing the missing apparent power at maximal + over-loading in MVA as float, 'time_index' containing the corresponding time + step the over-loading occurred in as :pandas:`pandas.Timestamp`, + and 'grid' containing the grid object as :class:`~.network.grids.LVGrid`. Notes ----- @@ -364,13 +364,13 @@ def _station_overload(edisgo_obj, grid): Returns ------- :pandas:`pandas.DataFrame` - Dataframe containing over-loaded stations, their missing apparent - power at maximal over-loading and the corresponding time step. - Index of the dataframe are the representatives of the grids with - over-loaded stations. Columns are 's_missing' containing the missing - apparent power at maximal over-loading in MVA as float and 'time_index' - containing the corresponding time step the over-loading occured in as - :pandas:`pandas.Timestamp`. + In case there are no over-loading problems returns an empty dataframe. + In case of over-loading problems the dataframe contains the name of the + over-loaded station (grid's name with the extension '_station') in the index. + Columns are 's_missing' containing the missing apparent power at maximal + over-loading in MVA as float, 'time_index' containing the corresponding time + step the over-loading occurred in as :pandas:`pandas.Timestamp`, + and 'grid' containing the grid object as :class:`~.network.grids.Grid`. """ if isinstance(grid, LVGrid): @@ -405,6 +405,7 @@ def _station_overload(edisgo_obj, grid): { "s_missing": abs(s_missing.min()), "time_index": s_missing.idxmin(), + "grid": grid, }, index=[grid.station_name], ) From e43931474665a0da4ff1f5eb6b83ba3053abfbab Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 6 Aug 2022 12:27:07 +0200 Subject: [PATCH 007/355] Rename functions and fix tests --- edisgo/flex_opt/check_tech_constraints.py | 4 +- edisgo/flex_opt/costs.py | 4 +- edisgo/flex_opt/reinforce_grid.py | 16 +++---- edisgo/flex_opt/reinforce_measures.py | 47 +++++++++---------- tests/flex_opt/test_check_tech_constraints.py | 16 +++---- tests/flex_opt/test_costs.py | 6 +-- tests/flex_opt/test_reinforce_measures.py | 36 +++++++++----- 7 files changed, 69 insertions(+), 60 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 1c67ebca4..e3bca96fe 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -270,7 +270,7 @@ def _line_load(edisgo_obj, voltage_level): return crit_lines -def hv_mv_station_load(edisgo_obj): +def hv_mv_station_overload(edisgo_obj): """ Checks for over-loading of HV/MV station. @@ -305,7 +305,7 @@ def hv_mv_station_load(edisgo_obj): return crit_stations -def mv_lv_station_load(edisgo_obj): +def mv_lv_station_overload(edisgo_obj): """ Checks for over-loading of MV/LV stations. diff --git a/edisgo/flex_opt/costs.py b/edisgo/flex_opt/costs.py index 919b58566..bc0b285d8 100644 --- a/edisgo/flex_opt/costs.py +++ b/edisgo/flex_opt/costs.py @@ -114,7 +114,9 @@ def _get_line_costs(lines_added): # costs for transformers if not equipment_changes.empty: transformers = equipment_changes[ - equipment_changes.index.isin(edisgo_obj.topology._grids_repr) + equipment_changes.index.isin( + [f"{_}_station" for _ in edisgo_obj.topology._grids_repr] + ) ] added_transformers = transformers[transformers["change"] == "added"] removed_transformers = transformers[transformers["change"] == "removed"] diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 1e0bd22c0..e46ab79c8 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -182,13 +182,13 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_load(edisgo_reinforce) + else checks.hv_mv_station_overload(edisgo_reinforce) ) overloaded_lv_stations = ( pd.DataFrame(dtype=float) if mode == "mv" - else checks.mv_lv_station_load(edisgo_reinforce) + else checks.mv_lv_station_overload(edisgo_reinforce) ) logger.debug("==> Check line load.") @@ -252,11 +252,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_load(edisgo_reinforce) + else checks.hv_mv_station_overload(edisgo_reinforce) ) if mode != "mv": - overloaded_lv_stations = checks.mv_lv_station_load(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") @@ -473,11 +473,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_load(edisgo_reinforce) + else checks.hv_mv_station_overload(edisgo_reinforce) ) if mode != "mv": - overloaded_lv_stations = checks.mv_lv_station_load(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") @@ -541,11 +541,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_load(edisgo_reinforce) + else checks.hv_mv_station_overload(edisgo_reinforce) ) if mode != "mv": - overloaded_lv_stations = checks.mv_lv_station_load(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index cc9126a87..5ea324d93 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -39,12 +39,12 @@ def reinforce_mv_lv_station_overloading(edisgo_obj, critical_stations): dict Dictionary with added and removed transformers in the form:: - {'added': {'Grid_1': ['transformer_reinforced_1', - ..., - 'transformer_reinforced_x'], - 'Grid_10': ['transformer_reinforced_10'] + {'added': {'Grid_1_station': ['transformer_reinforced_1', + ..., + 'transformer_reinforced_x'], + 'Grid_10_station': ['transformer_reinforced_10'] }, - 'removed': {'Grid_1': ['transformer_1']} + 'removed': {'Grid_1_station': ['transformer_1']} } """ @@ -86,12 +86,12 @@ def reinforce_hv_mv_station_overloading(edisgo_obj, critical_stations): dict Dictionary with added and removed transformers in the form:: - {'added': {'Grid_1': ['transformer_reinforced_1', - ..., - 'transformer_reinforced_x'], - 'Grid_10': ['transformer_reinforced_10'] + {'added': {'Grid_1_station': ['transformer_reinforced_1', + ..., + 'transformer_reinforced_x'], + 'Grid_10_station': ['transformer_reinforced_10'] }, - 'removed': {'Grid_1': ['transformer_1']} + 'removed': {'Grid_1_station': ['transformer_1']} } """ @@ -133,12 +133,12 @@ def _station_overloading(edisgo_obj, critical_stations, voltage_level): dict Dictionary with added and removed transformers in the form:: - {'added': {'Grid_1': ['transformer_reinforced_1', - ..., - 'transformer_reinforced_x'], - 'Grid_10': ['transformer_reinforced_10'] + {'added': {'Grid_1_station': ['transformer_reinforced_1', + ..., + 'transformer_reinforced_x'], + 'Grid_10_station': ['transformer_reinforced_10'] }, - 'removed': {'Grid_1': ['transformer_1']} + 'removed': {'Grid_1_station': ['transformer_1']} } """ @@ -172,15 +172,12 @@ def _station_overloading(edisgo_obj, critical_stations, voltage_level): ) transformers_changes = {"added": {}, "removed": {}} - for grid_name in critical_stations.index: - if "MV" in grid_name: - grid = edisgo_obj.topology.mv_grid - else: - grid = edisgo_obj.topology.get_lv_grid(grid_name) + for station in critical_stations.index: + grid = critical_stations.at[station, "grid"] # list of maximum power of each transformer in the station s_max_per_trafo = grid.transformers_df.s_nom # missing capacity - s_trafo_missing = critical_stations.at[grid_name, "s_missing"] + s_trafo_missing = critical_stations.at[station, "s_missing"] # check if second transformer of the same kind is sufficient # if true install second transformer, otherwise install as many @@ -202,7 +199,7 @@ def _station_overloading(edisgo_obj, critical_stations, voltage_level): new_transformers.index = ["_".join([str(_) for _ in name])] # add new transformer to list of added transformers - transformers_changes["added"][grid_name] = [new_transformers.index[0]] + transformers_changes["added"][station] = [new_transformers.index[0]] else: # get any transformer to get attributes for new transformer from duplicated_transformer = grid.transformers_df.iloc[[0]] @@ -235,11 +232,9 @@ def _station_overloading(edisgo_obj, critical_stations, voltage_level): new_transformers.index = index # add new transformer to list of added transformers - transformers_changes["added"][grid_name] = new_transformers.index.values + transformers_changes["added"][station] = new_transformers.index.values # add previous transformers to list of removed transformers - transformers_changes["removed"][ - grid_name - ] = grid.transformers_df.index.values + transformers_changes["removed"][station] = grid.transformers_df.index.values # remove previous transformers from topology if voltage_level == "lv": edisgo_obj.topology.transformers_df.drop( diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 47bab2789..ae244c127 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -53,7 +53,7 @@ def test_lv_line_load(self): ) assert df.at["Line_50000002", "time_index"] == self.timesteps[0] - def test_hv_mv_station_load(self): + def test_hv_mv_station_overload(self): # implicitly checks function _station_load # create over-load problem with highest over-load in first time step (as it is @@ -62,22 +62,22 @@ def test_hv_mv_station_load(self): data={"p": [30, 25, 30, 20], "q": [30, 25, 30, 20]}, index=self.timesteps ) - df = check_tech_constraints.hv_mv_station_load(self.edisgo) + df = check_tech_constraints.hv_mv_station_overload(self.edisgo) # check shape of dataframe - assert (1, 2) == df.shape + assert (1, 3) == df.shape # check missing transformer capacity assert np.isclose( - df.at["MVGrid_1", "s_missing"], + df.at["MVGrid_1_station", "s_missing"], (np.hypot(30, 30) - 20) / 0.5, ) - assert df.at["MVGrid_1", "time_index"] == self.timesteps[0] + assert df.at["MVGrid_1_station", "time_index"] == self.timesteps[0] - def test_mv_lv_station_load(self): + def test_mv_lv_station_overload(self): # implicitly checks function _station_load - df = check_tech_constraints.mv_lv_station_load(self.edisgo) + df = check_tech_constraints.mv_lv_station_overload(self.edisgo) # check shape of dataframe - assert (4, 2) == df.shape + assert (4, 3) == df.shape # check missing transformer capacity of one grid assert np.isclose( df.at["LVGrid_1_station", "s_missing"], diff --git a/tests/flex_opt/test_costs.py b/tests/flex_opt/test_costs.py index f5dea1b0a..0902fe40b 100644 --- a/tests/flex_opt/test_costs.py +++ b/tests/flex_opt/test_costs.py @@ -65,9 +65,9 @@ def test_costs(self): "quantity": [1, 1, 1, 2, 1, 1, 3, 1], }, index=[ - "MVGrid_1", - "LVGrid_1", - "LVGrid_1", + "MVGrid_1_station", + "LVGrid_1_station", + "LVGrid_1_station", "Line_10006", "Line_10019", "Line_10019", diff --git a/tests/flex_opt/test_reinforce_measures.py b/tests/flex_opt/test_reinforce_measures.py index c7f14bf24..b2564dcd7 100644 --- a/tests/flex_opt/test_reinforce_measures.py +++ b/tests/flex_opt/test_reinforce_measures.py @@ -21,12 +21,15 @@ def test_reinforce_mv_lv_station_overloading(self): # create problems such that in LVGrid_1 existing transformer is # exchanged with standard transformer and in LVGrid_4 a third # transformer is added + lv_grid_1 = self.edisgo.topology.get_lv_grid(1) + lv_grid_4 = self.edisgo.topology.get_lv_grid(4) crit_lv_stations = pd.DataFrame( { "s_missing": [0.17, 0.04], "time_index": [self.timesteps[1]] * 2, + "grid": [lv_grid_1, lv_grid_4], }, - index=["LVGrid_1", "LVGrid_4"], + index=[lv_grid_1.station_name, lv_grid_4.station_name], ) transformer_changes = reinforce_measures.reinforce_mv_lv_station_overloading( self.edisgo, crit_lv_stations @@ -37,14 +40,15 @@ def test_reinforce_mv_lv_station_overloading(self): assert len(transformer_changes["removed"].keys()) == 1 assert ( - transformer_changes["added"]["LVGrid_1"][0] + transformer_changes["added"]["LVGrid_1_station"][0] == "LVStation_1_transformer_reinforced_1" ) assert ( - transformer_changes["removed"]["LVGrid_1"][0] == "LVStation_1_transformer_1" + transformer_changes["removed"]["LVGrid_1_station"][0] + == "LVStation_1_transformer_1" ) assert ( - transformer_changes["added"]["LVGrid_4"][0] + transformer_changes["added"]["LVGrid_4_station"][0] == "LVStation_4_transformer_reinforced_3" ) @@ -86,13 +90,17 @@ def test_reinforce_hv_mv_station_overloading(self): # check adding transformer of same MVA crit_mv_station = pd.DataFrame( - {"s_missing": [19], "time_index": [self.timesteps[1]]}, - index=["MVGrid_1"], + { + "s_missing": [19], + "time_index": [self.timesteps[1]], + "grid": self.edisgo.topology.mv_grid, + }, + index=["MVGrid_1_station"], ) transformer_changes = reinforce_measures.reinforce_hv_mv_station_overloading( self.edisgo, crit_mv_station ) - assert len(transformer_changes["added"]["MVGrid_1"]) == 1 + assert len(transformer_changes["added"]["MVGrid_1_station"]) == 1 assert len(transformer_changes["removed"]) == 0 trafo_new = self.edisgo.topology.transformers_hvmv_df.loc[ @@ -114,14 +122,18 @@ def test_reinforce_hv_mv_station_overloading(self): # check replacing current transformers and replacing them with three # standard transformers crit_mv_station = pd.DataFrame( - {"s_missing": [50], "time_index": [self.timesteps[1]]}, - index=["MVGrid_1"], + { + "s_missing": [50], + "time_index": [self.timesteps[1]], + "grid": self.edisgo.topology.mv_grid, + }, + index=["MVGrid_1_station"], ) transformer_changes = reinforce_measures.reinforce_hv_mv_station_overloading( self.edisgo, crit_mv_station ) - assert len(transformer_changes["added"]["MVGrid_1"]) == 3 - assert len(transformer_changes["removed"]["MVGrid_1"]) == 1 + assert len(transformer_changes["added"]["MVGrid_1_station"]) == 3 + assert len(transformer_changes["removed"]["MVGrid_1_station"]) == 1 trafos = self.edisgo.topology.transformers_hvmv_df assert (trafos.bus0 == "Bus_primary_MVStation_1").all() @@ -130,7 +142,7 @@ def test_reinforce_hv_mv_station_overloading(self): assert (trafos.type_info == "40 MVA").all() assert ( "MVStation_1_transformer_reinforced_2" - in transformer_changes["added"]["MVGrid_1"] + in transformer_changes["added"]["MVGrid_1_station"] ) # check that removed transformer is removed from topology assert ( From eb9aa9c43cb2474ceb0a958404941e0b6ca563be Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 15:08:26 +0200 Subject: [PATCH 008/355] Change function to return allowed loading in MVA --- edisgo/flex_opt/check_tech_constraints.py | 138 +++++++++++------- tests/flex_opt/test_check_tech_constraints.py | 16 +- 2 files changed, 93 insertions(+), 61 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index e3bca96fe..8dea04deb 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -1,8 +1,6 @@ import itertools import logging -from math import sqrt - import numpy as np import pandas as pd @@ -97,9 +95,42 @@ def lv_line_load(edisgo_obj): return crit_lines -def lines_allowed_load(edisgo_obj, voltage_level): +def lines_allowed_load(edisgo_obj, lines=None): """ - Get allowed maximum current per line per time step + Returns allowed loading of specified lines per time step in MVA. + + Allowed loading is determined based on allowed load factors for feed-in and + load cases that are defined in the config file 'config_grid_expansion' in + section 'grid_expansion_load_factors'. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + lines : list(str) + List of line names to get allowed loading for. Per default + allowed loading is returned for all lines in the network. Default: None. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe containing the maximum allowed apparent power per line and time step + in MVA. Index of the dataframe are all time steps power flow analysis + was conducted for of type :pandas:`pandas.Timestamp`. + Columns are line names of all lines in the specified voltage level. + + """ + allowed_load_lv = _lines_allowed_load_voltage_level(edisgo_obj, voltage_level="lv") + allowed_load_mv = _lines_allowed_load_voltage_level(edisgo_obj, voltage_level="mv") + allowed_load = pd.concat([allowed_load_lv, allowed_load_mv]) + if lines is None: + return allowed_load + else: + return allowed_load.loc[:, lines] + + +def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): + """ + Returns allowed loading per line in the specified voltage level in MVA. Parameters ---------- @@ -111,8 +142,8 @@ def lines_allowed_load(edisgo_obj, voltage_level): Returns ------- :pandas:`pandas.DataFrame` - Dataframe containing the maximum allowed current per line and time step - in kA. Index of the dataframe are all time steps power flow analysis + Dataframe containing the maximum allowed apparent power per line and time step + in MVA. Index of the dataframe are all time steps power flow analysis was conducted for of type :pandas:`pandas.Timestamp`. Columns are line names of all lines in the specified voltage level. @@ -123,14 +154,8 @@ def lines_allowed_load(edisgo_obj, voltage_level): lines_df = edisgo_obj.topology.lines_df[ ~edisgo_obj.topology.lines_df.index.isin(mv_grid.lines_df.index) ] - lv_grids = list(edisgo_obj.topology.lv_grids) - if len(lv_grids) > 0: - nominal_voltage = lv_grids[0].nominal_voltage - else: - nominal_voltage = np.NaN elif voltage_level == "mv": lines_df = mv_grid.lines_df - nominal_voltage = mv_grid.nominal_voltage else: raise ValueError( "{} is not a valid option for input variable 'voltage_level' in " @@ -138,53 +163,60 @@ def lines_allowed_load(edisgo_obj, voltage_level): "'lv'.".format(voltage_level) ) - i_lines_allowed_per_case = {} - i_lines_allowed_per_case["feed-in_case"] = ( - lines_df.s_nom - / sqrt(3) - / nominal_voltage - * edisgo_obj.config["grid_expansion_load_factors"][ - "{}_feed-in_case_line".format(voltage_level) - ] - ) + allowed_load_per_case = {} - # adapt i_lines_allowed for radial feeders - buses_in_cycles = list( - set(itertools.chain.from_iterable(edisgo_obj.topology.rings)) - ) + # get allowed loads per case + for case in ["feed-in_case", "load_case"]: - # Find lines in cycles - lines_in_cycles = list( - lines_df.loc[ - lines_df[["bus0", "bus1"]].isin(buses_in_cycles).all(axis=1) - ].index.values - ) - lines_radial_feeders = list( - lines_df.loc[~lines_df.index.isin(lines_in_cycles)].index.values - ) + # if load factor is not 1, handle lines in cycles differently from lines in + # stubs + if ( + edisgo_obj.config["grid_expansion_load_factors"][ + f"{voltage_level}_{case}_line" + ] + != 1.0 + ): - # lines in cycles have to be n-1 secure - i_lines_allowed_per_case["load_case"] = ( - lines_df.loc[lines_in_cycles].s_nom - / sqrt(3) - / nominal_voltage - * edisgo_obj.config["grid_expansion_load_factors"][ - "{}_load_case_line".format(voltage_level) - ] - ) + buses_in_cycles = list( + set(itertools.chain.from_iterable(edisgo_obj.topology.rings)) + ) - # lines in radial feeders are not n-1 secure anyways - i_lines_allowed_per_case["load_case"] = pd.concat( - [ - i_lines_allowed_per_case["load_case"], - lines_df.loc[lines_radial_feeders].s_nom / sqrt(3) / nominal_voltage, - ] - ) + # Find lines in cycles + lines_in_cycles = list( + lines_df.loc[ + lines_df[["bus0", "bus1"]].isin(buses_in_cycles).all(axis=1) + ].index.values + ) + lines_radial_feeders = list( + lines_df.loc[~lines_df.index.isin(lines_in_cycles)].index.values + ) + + # lines in cycles have to be n-1 secure + allowed_load_per_case[case] = ( + lines_df.loc[lines_in_cycles].s_nom + * edisgo_obj.config["grid_expansion_load_factors"][ + f"{voltage_level}_{case}_line" + ] + ) + + # lines in radial feeders are not n-1 secure anyways + allowed_load_per_case[case] = pd.concat( + [ + allowed_load_per_case[case], + lines_df.loc[lines_radial_feeders].s_nom, + ] + ) + else: + allowed_load_per_case[case] = ( + lines_df.s_nom + * edisgo_obj.config["grid_expansion_load_factors"][ + f"{voltage_level}_{case}_line" + ] + ) - i_lines_allowed = edisgo_obj.timeseries.timesteps_load_feedin_case.loc[ + return edisgo_obj.timeseries.timesteps_load_feedin_case.loc[ edisgo_obj.results.i_res.index - ].apply(lambda _: i_lines_allowed_per_case[_]) - return i_lines_allowed + ].apply(lambda _: allowed_load_per_case[_]) def lines_relative_load(edisgo_obj, lines_allowed_load): diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index ae244c127..54b99adfe 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -224,40 +224,40 @@ def test_stations_relative_load(self): 0.06753, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 ).all() - def test_lines_allowed_load(self): + def test__lines_allowed_load_voltage_level(self): # check for MV - df = check_tech_constraints.lines_allowed_load(self.edisgo, "mv") + df = check_tech_constraints._lines_allowed_load_voltage_level(self.edisgo, "mv") # check shape of dataframe assert (4, 30) == df.shape # check in feed-in case assert np.isclose( df.at[self.timesteps[2], "Line_10005"], - 7.27461339178928 / 20 / sqrt(3), + 7.27461339178928, ) # check in load case (line in cycle as well as stub) assert np.isclose( df.at[self.timesteps[0], "Line_10005"], - 7.274613391789284 / 20 / sqrt(3) * 0.5, + 7.274613391789284 * 0.5, ) assert np.isclose( df.at[self.timesteps[0], "Line_10024"], - 7.27461339178928 / 20 / sqrt(3), + 7.27461339178928, ) # check for LV - df = check_tech_constraints.lines_allowed_load(self.edisgo, "lv") + df = check_tech_constraints._lines_allowed_load_voltage_level(self.edisgo, "lv") # check shape of dataframe assert (4, 99) == df.shape # check in feed-in case assert np.isclose( df.at[self.timesteps[2], "Line_50000002"], - 0.08521689973238901 / 0.4 / sqrt(3), + 0.08521689973238901, ) # check in load case assert np.isclose( df.at[self.timesteps[0], "Line_50000002"], - 0.08521689973238901 / 0.4 / sqrt(3), + 0.08521689973238901, ) def mv_voltage_issues(self): From dced999d0f79b2ae2e9ca5442074f6d418bce8af Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 15:11:39 +0200 Subject: [PATCH 009/355] Move test --- tests/flex_opt/test_check_tech_constraints.py | 72 +++++++++---------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 54b99adfe..663a6d016 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -53,6 +53,42 @@ def test_lv_line_load(self): ) assert df.at["Line_50000002", "time_index"] == self.timesteps[0] + def test__lines_allowed_load_voltage_level(self): + + # check for MV + df = check_tech_constraints._lines_allowed_load_voltage_level(self.edisgo, "mv") + # check shape of dataframe + assert (4, 30) == df.shape + # check in feed-in case + assert np.isclose( + df.at[self.timesteps[2], "Line_10005"], + 7.27461339178928, + ) + # check in load case (line in cycle as well as stub) + assert np.isclose( + df.at[self.timesteps[0], "Line_10005"], + 7.274613391789284 * 0.5, + ) + assert np.isclose( + df.at[self.timesteps[0], "Line_10024"], + 7.27461339178928, + ) + + # check for LV + df = check_tech_constraints._lines_allowed_load_voltage_level(self.edisgo, "lv") + # check shape of dataframe + assert (4, 99) == df.shape + # check in feed-in case + assert np.isclose( + df.at[self.timesteps[2], "Line_50000002"], + 0.08521689973238901, + ) + # check in load case + assert np.isclose( + df.at[self.timesteps[0], "Line_50000002"], + 0.08521689973238901, + ) + def test_hv_mv_station_overload(self): # implicitly checks function _station_load @@ -224,42 +260,6 @@ def test_stations_relative_load(self): 0.06753, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 ).all() - def test__lines_allowed_load_voltage_level(self): - - # check for MV - df = check_tech_constraints._lines_allowed_load_voltage_level(self.edisgo, "mv") - # check shape of dataframe - assert (4, 30) == df.shape - # check in feed-in case - assert np.isclose( - df.at[self.timesteps[2], "Line_10005"], - 7.27461339178928, - ) - # check in load case (line in cycle as well as stub) - assert np.isclose( - df.at[self.timesteps[0], "Line_10005"], - 7.274613391789284 * 0.5, - ) - assert np.isclose( - df.at[self.timesteps[0], "Line_10024"], - 7.27461339178928, - ) - - # check for LV - df = check_tech_constraints._lines_allowed_load_voltage_level(self.edisgo, "lv") - # check shape of dataframe - assert (4, 99) == df.shape - # check in feed-in case - assert np.isclose( - df.at[self.timesteps[2], "Line_50000002"], - 0.08521689973238901, - ) - # check in load case - assert np.isclose( - df.at[self.timesteps[0], "Line_50000002"], - 0.08521689973238901, - ) - def mv_voltage_issues(self): """ Fixture to create voltage issues in MV grid. From b20cd83d3eac265e832168810a8a2a2cf7e4c569 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 15:17:48 +0200 Subject: [PATCH 010/355] Add function to get allowed loading of all lines --- edisgo/flex_opt/check_tech_constraints.py | 2 +- tests/flex_opt/test_check_tech_constraints.py | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 8dea04deb..f73b337f4 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -121,7 +121,7 @@ def lines_allowed_load(edisgo_obj, lines=None): """ allowed_load_lv = _lines_allowed_load_voltage_level(edisgo_obj, voltage_level="lv") allowed_load_mv = _lines_allowed_load_voltage_level(edisgo_obj, voltage_level="mv") - allowed_load = pd.concat([allowed_load_lv, allowed_load_mv]) + allowed_load = pd.concat([allowed_load_lv, allowed_load_mv], axis=1) if lines is None: return allowed_load else: diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 663a6d016..3f92d2e29 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -53,6 +53,38 @@ def test_lv_line_load(self): ) assert df.at["Line_50000002", "time_index"] == self.timesteps[0] + def test_lines_allowed_load(self): + + # check with default value (all lines) + df = check_tech_constraints.lines_allowed_load(self.edisgo) + # check shape of dataframe + assert (4, 129) == df.shape + # check values (feed-in case) + assert np.isclose( + df.at[self.timesteps[2], "Line_10005"], + 7.27461339178928, + ) + assert np.isclose( + df.at[self.timesteps[2], "Line_50000002"], + 0.08521689973238901, + ) + # check values (load case) + assert np.isclose( + df.at[self.timesteps[0], "Line_10005"], + 7.274613391789284 * 0.5, + ) + assert np.isclose( + df.at[self.timesteps[0], "Line_50000002"], + 0.08521689973238901, + ) + + # check with specifying lines + df = check_tech_constraints.lines_allowed_load( + self.edisgo, lines=["Line_10005", "Line_50000002"] + ) + # check shape of dataframe + assert (4, 2) == df.shape + def test__lines_allowed_load_voltage_level(self): # check for MV From 5dfa13c269a368711279d4730b685444619a1711 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 15:18:40 +0200 Subject: [PATCH 011/355] Minor doc changes --- edisgo/flex_opt/check_tech_constraints.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index f73b337f4..62639cbb1 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -504,7 +504,8 @@ def _station_allowed_load(edisgo_obj, grid): step in MVA. Allowed loading considers allowed load factors in heavy load flow case ('load case') - and reverse power flow case ('feed-in case') from config files. + and reverse power flow case ('feed-in case') that are defined in the config file + 'config_grid_expansion' in section 'grid_expansion_load_factors'. Parameters ---------- @@ -551,7 +552,8 @@ def stations_allowed_load(edisgo_obj, grids=None): per time step in MVA. Allowed loading considers allowed load factors in heavy load flow case ('load case') - and reverse power flow case ('feed-in case') from config files. + and reverse power flow case ('feed-in case') that are defined in the config file + 'config_grid_expansion' in section 'grid_expansion_load_factors'. Parameters ---------- From 7a1648a3b96fbec86c2221358acd2ba9189e6c39 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 15:34:45 +0200 Subject: [PATCH 012/355] Move and rename function --- edisgo/flex_opt/check_tech_constraints.py | 125 ++++++++++-------- tests/flex_opt/test_check_tech_constraints.py | 10 +- 2 files changed, 72 insertions(+), 63 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 62639cbb1..be49cf443 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -38,7 +38,7 @@ def mv_line_load(edisgo_obj): """ - crit_lines = _line_load(edisgo_obj, voltage_level="mv") + crit_lines = _line_overload(edisgo_obj, voltage_level="mv") if not crit_lines.empty: logger.debug( @@ -81,7 +81,7 @@ def lv_line_load(edisgo_obj): """ - crit_lines = _line_load(edisgo_obj, voltage_level="lv") + crit_lines = _line_overload(edisgo_obj, voltage_level="lv") if not crit_lines.empty: logger.debug( @@ -95,6 +95,72 @@ def lv_line_load(edisgo_obj): return crit_lines +def _line_overload(edisgo_obj, voltage_level): + """ + Checks for over-loading issues of lines. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + voltage_level : str + Voltage level, over-loading is checked for. Possible options are + 'mv' or 'lv'. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe containing over-loaded lines, their maximum relative over-loading + (maximum calculated apparent power over allowed apparent power) and the + corresponding time step. + Index of the dataframe are the names of the over-loaded lines. + Columns are 'max_rel_overload' containing the maximum relative + over-loading as float, 'time_index' containing the corresponding + time step the over-loading occurred in as + :pandas:`pandas.Timestamp`, and 'voltage_level' specifying + the voltage level the line is in (either 'mv' or 'lv'). + + """ + if edisgo_obj.results.i_res.empty: + raise Exception( + "No power flow results to check over-load for. Please perform " + "power flow analysis first." + ) + + # get lines in voltage level + mv_grid = edisgo_obj.topology.mv_grid + if voltage_level == "lv": + lines = edisgo_obj.topology.lines_df[ + ~edisgo_obj.topology.lines_df.index.isin(mv_grid.lines_df.index) + ].index + elif voltage_level == "mv": + lines = mv_grid.lines_df.index + else: + raise ValueError( + "{} is not a valid option for input variable 'voltage_level'. " + "Try 'mv' or 'lv'.".format(voltage_level) + ) + + # calculate relative line load and keep maximum over-load of each line + relative_i_res = lines_relative_load(edisgo_obj, lines) + + crit_lines_relative_load = relative_i_res[relative_i_res > 1].max().dropna() + if len(crit_lines_relative_load) > 0: + crit_lines = pd.concat( + [ + crit_lines_relative_load, + relative_i_res.idxmax()[crit_lines_relative_load.index], + ], + axis=1, + keys=["max_rel_overload", "time_index"], + sort=True, + ) + crit_lines.loc[:, "voltage_level"] = voltage_level + else: + crit_lines = pd.DataFrame(dtype=float) + + return crit_lines + + def lines_allowed_load(edisgo_obj, lines=None): """ Returns allowed loading of specified lines per time step in MVA. @@ -247,61 +313,6 @@ def lines_relative_load(edisgo_obj, lines_allowed_load): return i_lines_pfa / lines_allowed_load -def _line_load(edisgo_obj, voltage_level): - """ - Checks for over-loading issues of lines. - - Parameters - ---------- - edisgo_obj : :class:`~.EDisGo` - voltage_level : str - Voltage level, over-loading is checked for. Possible options are - "mv" or "lv". - - Returns - ------- - :pandas:`pandas.DataFrame` - Dataframe containing over-loaded lines, their maximum relative - over-loading (maximum calculated current over allowed current) and the - corresponding time step. - Index of the dataframe are the names of the over-loaded lines. - Columns are 'max_rel_overload' containing the maximum relative - over-loading as float, 'time_index' containing the corresponding - time step the over-loading occured in as - :pandas:`pandas.Timestamp`, and 'voltage_level' specifying - the voltage level the line is in (either 'mv' or 'lv'). - - """ - if edisgo_obj.results.i_res.empty: - raise Exception( - "No power flow results to check over-load for. Please perform " - "power flow analysis first." - ) - - # get allowed line load - i_lines_allowed = lines_allowed_load(edisgo_obj, voltage_level) - - # calculate relative line load and keep maximum over-load of each line - relative_i_res = lines_relative_load(edisgo_obj, i_lines_allowed) - - crit_lines_relative_load = relative_i_res[relative_i_res > 1].max().dropna() - if len(crit_lines_relative_load) > 0: - crit_lines = pd.concat( - [ - crit_lines_relative_load, - relative_i_res.idxmax()[crit_lines_relative_load.index], - ], - axis=1, - keys=["max_rel_overload", "time_index"], - sort=True, - ) - crit_lines.loc[:, "voltage_level"] = voltage_level - else: - crit_lines = pd.DataFrame(dtype=float) - - return crit_lines - - def hv_mv_station_overload(edisgo_obj): """ Checks for over-loading of HV/MV station. diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 3f92d2e29..e2b76f9ef 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -1,5 +1,3 @@ -from math import sqrt - import numpy as np import pandas as pd import pytest @@ -34,8 +32,8 @@ def test_mv_line_load(self): # check relative overload of one line assert np.isclose( df.at["Line_10005", "max_rel_overload"], - self.edisgo.results.i_res.at[self.timesteps[3], "Line_10005"] - / (7.274613391789284 / 20 / sqrt(3)), + self.edisgo.results.s_res.at[self.timesteps[3], "Line_10005"] + / 7.274613391789284, ) assert df.at["Line_10005", "time_index"] == self.timesteps[3] @@ -48,8 +46,8 @@ def test_lv_line_load(self): # check relative overload of one line assert np.isclose( df.at["Line_50000002", "max_rel_overload"], - self.edisgo.results.i_res.at[self.timesteps[0], "Line_50000002"] - / (0.08521689973238901 / 0.4 / sqrt(3)), + self.edisgo.results.s_res.at[self.timesteps[0], "Line_50000002"] + / 0.08521689973238901, ) assert df.at["Line_50000002", "time_index"] == self.timesteps[0] From 9b8a21d84c74f3c2283b58b9461f0483bcda446e Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 15:55:22 +0200 Subject: [PATCH 013/355] Rename functions --- edisgo/flex_opt/check_tech_constraints.py | 4 ++-- edisgo/flex_opt/reinforce_grid.py | 16 ++++++++-------- edisgo/flex_opt/storage_positioning.py | 2 +- edisgo/opf/timeseries_reduction.py | 2 +- tests/flex_opt/test_check_tech_constraints.py | 6 +++--- 5 files changed, 15 insertions(+), 15 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index be49cf443..339ce75a4 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -9,7 +9,7 @@ logger = logging.getLogger(__name__) -def mv_line_load(edisgo_obj): +def mv_line_overload(edisgo_obj): """ Checks for over-loading issues in MV network. @@ -52,7 +52,7 @@ def mv_line_load(edisgo_obj): return crit_lines -def lv_line_load(edisgo_obj): +def lv_line_overload(edisgo_obj): """ Checks for over-loading issues in LV network. diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index e46ab79c8..8900c40ee 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -195,14 +195,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_load(edisgo_reinforce) + else checks.mv_line_overload(edisgo_reinforce) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_load(edisgo_reinforce), + checks.lv_line_overload(edisgo_reinforce), ] ) @@ -263,14 +263,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_load(edisgo_reinforce) + else checks.mv_line_overload(edisgo_reinforce) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_load(edisgo_reinforce), + checks.lv_line_overload(edisgo_reinforce), ] ) @@ -484,14 +484,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_load(edisgo_reinforce) + else checks.mv_line_overload(edisgo_reinforce) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_load(edisgo_reinforce), + checks.lv_line_overload(edisgo_reinforce), ] ) @@ -552,14 +552,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_load(edisgo_reinforce) + else checks.mv_line_overload(edisgo_reinforce) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_load(edisgo_reinforce), + checks.lv_line_overload(edisgo_reinforce), ] ) diff --git a/edisgo/flex_opt/storage_positioning.py b/edisgo/flex_opt/storage_positioning.py index 2d9a5edb4..05f8b76b2 100644 --- a/edisgo/flex_opt/storage_positioning.py +++ b/edisgo/flex_opt/storage_positioning.py @@ -313,7 +313,7 @@ def _critical_lines_feeder(edisgo, feeder): # (grid_expansion_costs_feeder_ranking.mv_feeder == feeder) & # (grid_expansion_costs_feeder_ranking.voltage_level == 'mv')] # get all overloaded MV lines - critical_lines = check_tech_constraints.mv_line_load(edisgo.network) + critical_lines = check_tech_constraints.mv_line_overload(edisgo.network) # filter overloaded lines in feeder critical_lines_feeder = [ line diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 1af50f5d3..b87645fd7 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -137,7 +137,7 @@ def get_steps_storage(edisgo_obj, window=5): crit_periods.append(step) # Get periods with current violations - crit_lines = check_tech_constraints.mv_line_load(edisgo_obj) + crit_lines = check_tech_constraints.mv_line_overload(edisgo_obj) if "time_index" in crit_lines: for step in crit_lines["time_index"]: if step not in crit_periods: diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index e2b76f9ef..ad3ab7014 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -23,10 +23,10 @@ def run_power_flow(self): """ self.edisgo.analyze() - def test_mv_line_load(self): + def test_mv_line_overload(self): # implicitly checks function _line_load - df = check_tech_constraints.mv_line_load(self.edisgo) + df = check_tech_constraints.mv_line_overload(self.edisgo) # check shape of dataframe assert (4, 3) == df.shape # check relative overload of one line @@ -40,7 +40,7 @@ def test_mv_line_load(self): def test_lv_line_load(self): # implicitly checks function _line_load - df = check_tech_constraints.lv_line_load(self.edisgo) + df = check_tech_constraints.lv_line_overload(self.edisgo) # check shape of dataframe assert (2, 3) == df.shape # check relative overload of one line From ef9a5c728fb62d8754c856f993cbf80fc0164a5d Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 15:55:44 +0200 Subject: [PATCH 014/355] Minor doc changes --- edisgo/flex_opt/check_tech_constraints.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 339ce75a4..9b02bd862 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -20,8 +20,8 @@ def mv_line_overload(edisgo_obj): Returns ------- :pandas:`pandas.DataFrame` - Dataframe containing over-loaded MV lines, their maximum relative - over-loading (maximum calculated current over allowed current) and the + Dataframe containing over-loaded MV lines, their maximum relative over-loading + (maximum calculated apparent power over allowed apparent power) and the corresponding time step. Index of the dataframe are the names of the over-loaded lines. Columns are 'max_rel_overload' containing the maximum relative @@ -54,7 +54,7 @@ def mv_line_overload(edisgo_obj): def lv_line_overload(edisgo_obj): """ - Checks for over-loading issues in LV network. + Checks for over-loading issues in LV networks. Parameters ---------- @@ -63,8 +63,8 @@ def lv_line_overload(edisgo_obj): Returns ------- :pandas:`pandas.DataFrame` - Dataframe containing over-loaded LV lines, their maximum relative - over-loading (maximum calculated current over allowed current) and the + Dataframe containing over-loaded LV lines, their maximum relative over-loading + (maximum calculated apparent power over allowed apparent power) and the corresponding time step. Index of the dataframe are the names of the over-loaded lines. Columns are 'max_rel_overload' containing the maximum relative @@ -182,7 +182,7 @@ def lines_allowed_load(edisgo_obj, lines=None): Dataframe containing the maximum allowed apparent power per line and time step in MVA. Index of the dataframe are all time steps power flow analysis was conducted for of type :pandas:`pandas.Timestamp`. - Columns are line names of all lines in the specified voltage level. + Columns are line names as string. """ allowed_load_lv = _lines_allowed_load_voltage_level(edisgo_obj, voltage_level="lv") @@ -214,7 +214,7 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): Columns are line names of all lines in the specified voltage level. """ - # get lines and nominal voltage + # get lines in voltage level mv_grid = edisgo_obj.topology.mv_grid if voltage_level == "lv": lines_df = edisgo_obj.topology.lines_df[ @@ -225,7 +225,7 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): else: raise ValueError( "{} is not a valid option for input variable 'voltage_level' in " - "function lines_allowed_load. Try 'mv' or " + "function lines_allowed_load_voltage_level. Try 'mv' or " "'lv'.".format(voltage_level) ) From 2b51b64e852254b9fcd85fadf1fc79b3f8e1cf42 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 16:16:40 +0200 Subject: [PATCH 015/355] Minor test changes --- tests/flex_opt/test_check_tech_constraints.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index ad3ab7014..55bc802f8 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -37,8 +37,8 @@ def test_mv_line_overload(self): ) assert df.at["Line_10005", "time_index"] == self.timesteps[3] - def test_lv_line_load(self): - # implicitly checks function _line_load + def test_lv_line_overload(self): + # implicitly checks function _line_overload df = check_tech_constraints.lv_line_overload(self.edisgo) # check shape of dataframe @@ -120,7 +120,7 @@ def test__lines_allowed_load_voltage_level(self): ) def test_hv_mv_station_overload(self): - # implicitly checks function _station_load + # implicitly checks function _station_overload # create over-load problem with highest over-load in first time step (as it is # a load case) @@ -139,7 +139,7 @@ def test_hv_mv_station_overload(self): assert df.at["MVGrid_1_station", "time_index"] == self.timesteps[0] def test_mv_lv_station_overload(self): - # implicitly checks function _station_load + # implicitly checks function _station_overload df = check_tech_constraints.mv_lv_station_overload(self.edisgo) # check shape of dataframe From 60674d782a8f676781969cefa8bb257b35a534d6 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 16:17:31 +0200 Subject: [PATCH 016/355] Change function input parameters --- edisgo/flex_opt/check_tech_constraints.py | 30 +++++++++++-------- tests/flex_opt/test_check_tech_constraints.py | 27 ++++++++++++++++- 2 files changed, 43 insertions(+), 14 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 9b02bd862..43599b24e 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -285,32 +285,36 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): ].apply(lambda _: allowed_load_per_case[_]) -def lines_relative_load(edisgo_obj, lines_allowed_load): +def lines_relative_load(edisgo_obj, lines=None): """ - Calculates relative line load based on specified allowed line load. + Returns relative line load based on specified allowed line load. Parameters ---------- edisgo_obj : :class:`~.EDisGo` - lines_allowed_load : :pandas:`pandas.DataFrame` - Dataframe containing the maximum allowed current per line and time step - in kA. Index of the dataframe are time steps of type - :pandas:`pandas.Timestamp` and columns are line names. + lines : list(str) + List of line names to get relative loading for. Per default + relative loading is returned for all lines in the network. Default: None. Returns -------- :pandas:`pandas.DataFrame` - Dataframe containing the relative line load per line and time step. - Index and columns of the dataframe are the same as those of parameter - `lines_allowed_load`. + Dataframe containing the relative loading per line and time step + in p.u.. Index of the dataframe are all time steps power flow analysis + was conducted for of type :pandas:`pandas.Timestamp`. + Columns are line names as strings. """ + if lines is None: + lines = edisgo_obj.topology.lines_df.index + + # get allowed loading + allowed_loading = lines_allowed_load(edisgo_obj, lines) + # get line load from power flow analysis - i_lines_pfa = edisgo_obj.results.i_res.loc[ - lines_allowed_load.index, lines_allowed_load.columns - ] + loading = edisgo_obj.results.s_res.loc[:, lines] - return i_lines_pfa / lines_allowed_load + return loading / allowed_loading def hv_mv_station_overload(edisgo_obj): diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 55bc802f8..3912bc242 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -24,7 +24,7 @@ def run_power_flow(self): self.edisgo.analyze() def test_mv_line_overload(self): - # implicitly checks function _line_load + # implicitly checks function _line_overload df = check_tech_constraints.mv_line_overload(self.edisgo) # check shape of dataframe @@ -119,6 +119,31 @@ def test__lines_allowed_load_voltage_level(self): 0.08521689973238901, ) + def test_lines_relative_load(self): + + # check with default value (all lines) + df = check_tech_constraints.lines_relative_load(self.edisgo) + # check shape of dataframe + assert (4, 129) == df.shape + # check values (feed-in case) + assert np.isclose( + df.at[self.timesteps[2], "Line_10005"], 7.74132 / 7.27461, atol=1e-5 + ) + assert np.isclose( + df.at[self.timesteps[2], "Line_50000002"], 0.012644 / 0.08522, atol=1e-5 + ) + # check values (load case) + assert np.isclose( + df.at[self.timesteps[0], "Line_10005"], 0.00142 / (7.27461 * 0.5), atol=1e-5 + ) + + # check with specifying lines + df = check_tech_constraints.lines_relative_load( + self.edisgo, lines=["Line_10005", "Line_50000002"] + ) + # check shape of dataframe + assert (4, 2) == df.shape + def test_hv_mv_station_overload(self): # implicitly checks function _station_overload From 4b1221665647b1b252459e4b08d0b8c44b79ac52 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 17:32:43 +0200 Subject: [PATCH 017/355] Add function to get relative loading of all components --- edisgo/flex_opt/check_tech_constraints.py | 31 ++++++++++++++ tests/flex_opt/test_check_tech_constraints.py | 40 +++++++++++++++++++ 2 files changed, 71 insertions(+) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 43599b24e..b4c9be8b3 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -644,6 +644,37 @@ def stations_relative_load(edisgo_obj, grids=None): return loading / allowed_loading.loc[:, loading.columns] +def components_relative_load(edisgo_obj): + """ + Returns relative loading of all lines and stations included in power flow analysis. + + The component's relative loading is determined by dividing the stations loading + (from power flow analysis) by the allowed loading (considering allowed load factors + in heavy load flow case ('load case') and reverse power flow case ('feed-in case') + from config files). + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe containing the relative loading of lines and stations power flow + results are available for per time step in p.u.. + Index of the dataframe are all time steps power flow analysis + was conducted for of type :pandas:`pandas.Timestamp`. + Columns are line names (as in index of + :attr:`~.network.topology.Topology.loads_df`) and station names (respective + grid's name with the extension '_station', see + :attr:`~.network.grids.Grid.station_name`). + + """ + stations_rel_load = stations_relative_load(edisgo_obj) + lines_rel_load = lines_relative_load(edisgo_obj, lines=None) + return pd.concat([lines_rel_load, stations_rel_load], axis=1) + + def mv_voltage_deviation(edisgo_obj, voltage_levels="mv_lv"): """ Checks for voltage stability issues in MV network. diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 3912bc242..0d5c4a38d 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -315,6 +315,46 @@ def test_stations_relative_load(self): 0.06753, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 ).all() + def test_components_relative_load(self): + + # check with power flow results available for all components + df = check_tech_constraints.components_relative_load(self.edisgo) + # check shape of dataframe + assert (4, 140) == df.shape + # check values + load_cases = self.edisgo.timeseries.timeindex_worst_cases[ + self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") + ] + assert np.isclose( + 0.02853, df.loc[load_cases.values, "LVGrid_4_station"].values, atol=1e-5 + ).all() + assert np.isclose( + df.at[self.timesteps[0], "Line_10005"], 0.00142 / (7.27461 * 0.5), atol=1e-5 + ) + + # check with power flow results not available for all components + self.edisgo.analyze(mode="mvlv") + df = check_tech_constraints.components_relative_load(self.edisgo) + # check shape of dataframe + assert (4, 41) == df.shape + # check values + assert np.isclose( + 0.02852, df.loc[load_cases.values, "LVGrid_4_station"].values, atol=1e-5 + ).all() + + # check with missing grids + self.edisgo.analyze(mode="mv") + df = check_tech_constraints.components_relative_load(self.edisgo) + # check shape of dataframe + assert (4, 31) == df.shape + # check values + load_cases = self.edisgo.timeseries.timeindex_worst_cases[ + self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") + ] + assert np.isclose( + 0.06753, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 + ).all() + def mv_voltage_issues(self): """ Fixture to create voltage issues in MV grid. From 09bba1ac502bc56af4f4cccd7d69a04ba8237283 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 17:33:09 +0200 Subject: [PATCH 018/355] Only use lines power flow analysis was conducted for --- edisgo/flex_opt/check_tech_constraints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index b4c9be8b3..0043c9df8 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -306,7 +306,7 @@ def lines_relative_load(edisgo_obj, lines=None): """ if lines is None: - lines = edisgo_obj.topology.lines_df.index + lines = edisgo_obj.results.i_res.columns # get allowed loading allowed_loading = lines_allowed_load(edisgo_obj, lines) From 959119145c6ea14eddfc85364e8cb50115949960 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 17:33:24 +0200 Subject: [PATCH 019/355] Minor doc changes --- edisgo/flex_opt/check_tech_constraints.py | 14 +++++++++----- edisgo/network/grids.py | 2 ++ 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 0043c9df8..1e385a383 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -182,7 +182,8 @@ def lines_allowed_load(edisgo_obj, lines=None): Dataframe containing the maximum allowed apparent power per line and time step in MVA. Index of the dataframe are all time steps power flow analysis was conducted for of type :pandas:`pandas.Timestamp`. - Columns are line names as string. + Columns are line names as in index of + :attr:`~.network.topology.Topology.loads_df`. """ allowed_load_lv = _lines_allowed_load_voltage_level(edisgo_obj, voltage_level="lv") @@ -211,7 +212,9 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): Dataframe containing the maximum allowed apparent power per line and time step in MVA. Index of the dataframe are all time steps power flow analysis was conducted for of type :pandas:`pandas.Timestamp`. - Columns are line names of all lines in the specified voltage level. + Columns are line names as in index of + :attr:`~.network.topology.Topology.loads_df` of all lines in the specified + voltage level. """ # get lines in voltage level @@ -293,8 +296,8 @@ def lines_relative_load(edisgo_obj, lines=None): ---------- edisgo_obj : :class:`~.EDisGo` lines : list(str) - List of line names to get relative loading for. Per default - relative loading is returned for all lines in the network. Default: None. + List of line names to get relative loading for. Per default relative loading + is returned for all lines included in the power flow analysis. Default: None. Returns -------- @@ -302,7 +305,8 @@ def lines_relative_load(edisgo_obj, lines=None): Dataframe containing the relative loading per line and time step in p.u.. Index of the dataframe are all time steps power flow analysis was conducted for of type :pandas:`pandas.Timestamp`. - Columns are line names as strings. + Columns are line names as in index of + :attr:`~.network.topology.Topology.loads_df`. """ if lines is None: diff --git a/edisgo/network/grids.py b/edisgo/network/grids.py index a15e0a161..5cc574faf 100644 --- a/edisgo/network/grids.py +++ b/edisgo/network/grids.py @@ -119,6 +119,8 @@ def station_name(self): """ Name of station to the overlying voltage level. + Name of station is composed of grid name with the extension '_station'. + """ return f"{self}_station" From bd47b8d588b3ca1cae9fa3a6694ebfdaa77f1dec Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 12 Aug 2022 18:05:30 +0200 Subject: [PATCH 020/355] Remove old function calculating relative line load --- edisgo/edisgo.py | 6 +++--- edisgo/tools/plots.py | 11 +++++++---- tests/test_edisgo.py | 2 ++ tests/tools/test_tools.py | 34 ---------------------------------- 4 files changed, 12 insertions(+), 41 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 78fad1900..508364007 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -12,6 +12,7 @@ import pandas as pd from edisgo.flex_opt.charging_strategies import charging_strategy +from edisgo.flex_opt.check_tech_constraints import lines_relative_load from edisgo.flex_opt.reinforce_grid import reinforce_grid from edisgo.io import pypsa_io from edisgo.io.ding0_import import import_ding0_grid @@ -1808,15 +1809,14 @@ def histogram_relative_line_load( else: lines = self.topology.lines_df - rel_line_loading = tools.calculate_relative_line_load( - self, lines.index, timestep - ) + rel_line_loading = lines_relative_load(self, lines.index) if timestep is None: timestep = rel_line_loading.index # check if timesteps is array-like, otherwise convert to list if not hasattr(timestep, "__len__"): timestep = [timestep] + rel_line_loading = rel_line_loading.loc[timestep, :] if title is True: if len(timestep) == 1: diff --git a/edisgo/tools/plots.py b/edisgo/tools/plots.py index 7fcb0fce4..d76698996 100644 --- a/edisgo/tools/plots.py +++ b/edisgo/tools/plots.py @@ -19,7 +19,8 @@ from pyproj import Transformer from pypsa import Network as PyPSANetwork -from edisgo.tools import session_scope, tools +from edisgo.flex_opt.check_tech_constraints import lines_relative_load +from edisgo.tools import session_scope if TYPE_CHECKING: from numbers import Number @@ -579,9 +580,11 @@ def nodes_by_costs(buses, grid_expansion_costs, edisgo_obj): # line colors if line_color == "loading": - line_colors = tools.calculate_relative_line_load( - edisgo_obj, pypsa_plot.lines.index, timestep - ).max() + line_colors = lines_relative_load(edisgo_obj, pypsa_plot.lines.index) + if timestep is None: + line_colors = line_colors.max() + else: + line_colors = line_colors.loc[timestep, :] elif line_color == "expansion_costs": node_color = "expansion_costs" line_costs = pypsa_plot.lines.join( diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index bdf7bd3bc..5b4d7f0bd 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -1045,6 +1045,8 @@ def test_plot_mv_line_loading(self): self.edisgo.analyze() self.edisgo.plot_mv_line_loading() plt.close("all") + self.edisgo.plot_mv_line_loading(timestep=self.edisgo.timeseries.timeindex[0]) + plt.close("all") def test_plot_mv_grid_expansion_costs(self): # test with storage diff --git a/tests/tools/test_tools.py b/tests/tools/test_tools.py index 367d6bf8c..65fb75974 100644 --- a/tests/tools/test_tools.py +++ b/tests/tools/test_tools.py @@ -1,5 +1,3 @@ -from math import sqrt - import numpy as np import pytest @@ -17,38 +15,6 @@ def setup_class(self): self.timesteps = self.edisgo.timeseries.timeindex self.edisgo.analyze() - def test_calculate_relative_line_load(self): - # test without providing lines and time steps - rel_line_load = tools.calculate_relative_line_load(self.edisgo) - assert rel_line_load.shape == (4, 129) - - # test with providing lines - rel_line_load = tools.calculate_relative_line_load( - self.edisgo, lines=["Line_10005", "Line_50000002", "Line_90000021"] - ) - assert rel_line_load.shape == (4, 3) - assert np.isclose( - rel_line_load.at[self.timesteps[0], "Line_10005"], - self.edisgo.results.i_res.at[self.timesteps[0], "Line_10005"] - / (7.274613391789284 / 2 / 20 / sqrt(3)), - ) - assert np.isclose( - rel_line_load.at[self.timesteps[1], "Line_50000002"], - self.edisgo.results.i_res.at[self.timesteps[1], "Line_50000002"] - / (0.08521689973238901 / 0.4 / sqrt(3)), - ) - - # test with providing lines and timesteps - rel_line_load = tools.calculate_relative_line_load( - self.edisgo, lines=["Line_10005"], timesteps=self.timesteps[0] - ) - assert rel_line_load.shape == (1, 1) - assert np.isclose( - rel_line_load.at[self.timesteps[0], "Line_10005"], - self.edisgo.results.i_res.at[self.timesteps[0], "Line_10005"] - / (7.274613391789284 / 2 / 20 / sqrt(3)), - ) - def test_calculate_line_reactance(self): # test single line data = tools.calculate_line_reactance(2, 3, 1) From 8c8e6d30be8d3e1e23db9331a4f7384d781cda48 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Wed, 14 Sep 2022 15:00:53 +0200 Subject: [PATCH 021/355] Adding sphinx autoapi Sphinx autoapi is added, through this no manual running of sphinx-autodoc is needed. --- doc/api.rst | 17 -------- doc/api/edisgo.flex_opt.rst | 58 -------------------------- doc/api/edisgo.io.rst | 42 ------------------- doc/api/edisgo.network.rst | 50 ---------------------- doc/api/edisgo.opf.rst | 44 -------------------- doc/api/edisgo.tools.rst | 82 ------------------------------------- doc/api/edisgo_class.rst | 5 --- doc/conf.py | 4 ++ doc/index.rst | 1 - rtd_requirements.txt | 1 + setup.py | 1 + 11 files changed, 6 insertions(+), 299 deletions(-) delete mode 100644 doc/api.rst delete mode 100644 doc/api/edisgo.flex_opt.rst delete mode 100644 doc/api/edisgo.io.rst delete mode 100644 doc/api/edisgo.network.rst delete mode 100644 doc/api/edisgo.opf.rst delete mode 100644 doc/api/edisgo.tools.rst delete mode 100644 doc/api/edisgo_class.rst diff --git a/doc/api.rst b/doc/api.rst deleted file mode 100644 index 89ce73c1e..000000000 --- a/doc/api.rst +++ /dev/null @@ -1,17 +0,0 @@ -.. _api: - -API -=== - -.. make doc-string generated documentation appear here - -.. toctree:: - :maxdepth: 2 - :glob: - - api/edisgo_class - api/edisgo.network - api/edisgo.flex_opt - api/edisgo.io - api/edisgo.opf - api/edisgo.tools diff --git a/doc/api/edisgo.flex_opt.rst b/doc/api/edisgo.flex_opt.rst deleted file mode 100644 index 8abea6d10..000000000 --- a/doc/api/edisgo.flex_opt.rst +++ /dev/null @@ -1,58 +0,0 @@ -edisgo.flex\_opt package -======================== - -edisgo.flex\_opt.charging\_strategies module --------------------------------------------- - -.. automodule:: edisgo.flex_opt.charging_strategies - :members: - :undoc-members: - :show-inheritance: - -edisgo.flex\_opt.check\_tech\_constraints module ------------------------------------------------- - -.. automodule:: edisgo.flex_opt.check_tech_constraints - :members: - :undoc-members: - :show-inheritance: - -edisgo.flex\_opt.costs module ------------------------------ - -.. automodule:: edisgo.flex_opt.costs - :members: - :undoc-members: - :show-inheritance: - -edisgo.flex\_opt.exceptions module ----------------------------------- - -.. automodule:: edisgo.flex_opt.exceptions - :members: - :undoc-members: - :show-inheritance: - -edisgo.flex\_opt.q\_control module ------------------------------------ - -.. automodule:: edisgo.flex_opt.q_control - :members: - :undoc-members: - :show-inheritance: - -edisgo.flex\_opt.reinforce\_grid module ---------------------------------------- - -.. automodule:: edisgo.flex_opt.reinforce_grid - :members: - :undoc-members: - :show-inheritance: - -edisgo.flex\_opt.reinforce\_measures module -------------------------------------------- - -.. automodule:: edisgo.flex_opt.reinforce_measures - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/api/edisgo.io.rst b/doc/api/edisgo.io.rst deleted file mode 100644 index 75a1d860c..000000000 --- a/doc/api/edisgo.io.rst +++ /dev/null @@ -1,42 +0,0 @@ -edisgo.io package -================= - -edisgo.io.ding0\_import module ------------------------------- - -.. automodule:: edisgo.io.ding0_import - :members: - :undoc-members: - :show-inheritance: - -edisgo.io.electromobility\_import module ----------------------------------------- - -.. automodule:: edisgo.io.electromobility_import - :members: - :undoc-members: - :show-inheritance: - -edisgo.io.generators\_import module ------------------------------------ - -.. automodule:: edisgo.io.generators_import - :members: - :undoc-members: - :show-inheritance: - -edisgo.io.pypsa\_io module --------------------------- - -.. automodule:: edisgo.io.pypsa_io - :members: - :undoc-members: - :show-inheritance: - -edisgo.io.timeseries\_import module ------------------------------------ - -.. automodule:: edisgo.io.timeseries_import - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/api/edisgo.network.rst b/doc/api/edisgo.network.rst deleted file mode 100644 index a139b7408..000000000 --- a/doc/api/edisgo.network.rst +++ /dev/null @@ -1,50 +0,0 @@ -edisgo.network package -====================== - -edisgo.network.components module --------------------------------- - -.. automodule:: edisgo.network.components - :members: - :undoc-members: - :show-inheritance: - -edisgo.network.electromobility module -------------------------------------- - -.. automodule:: edisgo.network.electromobility - :members: - :undoc-members: - :show-inheritance: - -edisgo.network.grids module ---------------------------- - -.. automodule:: edisgo.network.grids - :members: - :undoc-members: - :show-inheritance: - -edisgo.network.results module ------------------------------ - -.. automodule:: edisgo.network.results - :members: - :undoc-members: - :show-inheritance: - -edisgo.network.timeseries module --------------------------------- - -.. automodule:: edisgo.network.timeseries - :members: - :undoc-members: - :show-inheritance: - -edisgo.network.topology module ------------------------------- - -.. automodule:: edisgo.network.topology - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/api/edisgo.opf.rst b/doc/api/edisgo.opf.rst deleted file mode 100644 index db421aadf..000000000 --- a/doc/api/edisgo.opf.rst +++ /dev/null @@ -1,44 +0,0 @@ -edisgo.opf package -================== - -edisgo.opf.run\_mp\_opf module ----------------------------------- - -.. automodule:: edisgo.opf.run_mp_opf - :members: - :undoc-members: - :show-inheritance: - -edisgo.opf.timeseries\_reduction module -------------------------------------------- - -.. automodule:: edisgo.opf.timeseries_reduction - :members: - :undoc-members: - :show-inheritance: - -edisgo.opf.results package ------------------------------ - -.. automodule:: edisgo.opf.results.opf_expand_network - :members: - :undoc-members: - :show-inheritance: - -.. automodule:: edisgo.opf.results.opf_result_class - :members: - :undoc-members: - :show-inheritance: - -edisgo.opf.util package ----------------------------------- - -.. automodule:: edisgo.opf.util.plot_solutions - :members: - :undoc-members: - :show-inheritance: - -.. automodule:: edisgo.opf.util.scenario_settings - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/api/edisgo.tools.rst b/doc/api/edisgo.tools.rst deleted file mode 100644 index 1bc306a87..000000000 --- a/doc/api/edisgo.tools.rst +++ /dev/null @@ -1,82 +0,0 @@ -edisgo.tools package -==================== - -edisgo.tools.config module ---------------------------- - -.. automodule:: edisgo.tools.config - :members: - :undoc-members: - :show-inheritance: - -edisgo.tools.geo module ------------------------- - -.. automodule:: edisgo.tools.geo - :members: - :undoc-members: - :show-inheritance: - -edisgo.tools.geopandas\_helper module ----------------------------------------- - -.. automodule:: edisgo.tools.geopandas_helper - :members: - :undoc-members: - :show-inheritance: - -edisgo.tools.logger module ----------------------------------------- - -.. automodule:: edisgo.tools.logger - :members: - :undoc-members: - :show-inheritance: - -edisgo.tools.networkx\_helper module ----------------------------------------- - -.. automodule:: edisgo.tools.networkx_helper - :members: - :undoc-members: - :show-inheritance: - -edisgo.tools.plots module --------------------------- - -.. automodule:: edisgo.tools.plots - :members: - :undoc-members: - :show-inheritance: - -edisgo.tools.powermodels\_io module -------------------------------------- - -.. automodule:: edisgo.tools.powermodels_io - :members: - :undoc-members: - :show-inheritance: - -edisgo.tools.preprocess\_pypsa\_opf\_structure module ------------------------------------------------------- - -.. automodule:: edisgo.tools.preprocess_pypsa_opf_structure - :members: - :undoc-members: - :show-inheritance: - -edisgo.tools.tools module --------------------------- - -.. automodule:: edisgo.tools.tools - :members: - :undoc-members: - :show-inheritance: - -Module contents ---------------- - -.. automodule:: edisgo.tools - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/api/edisgo_class.rst b/doc/api/edisgo_class.rst deleted file mode 100644 index e231b15d7..000000000 --- a/doc/api/edisgo_class.rst +++ /dev/null @@ -1,5 +0,0 @@ -EDisGo class -============ - -.. autoclass:: edisgo.EDisGo - :members: diff --git a/doc/conf.py b/doc/conf.py index 688f95197..2b4b44b7f 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -46,6 +46,7 @@ # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ + "autoapi.extension", "sphinx.ext.autodoc", "sphinx.ext.intersphinx", "sphinx.ext.todo", @@ -56,6 +57,9 @@ "sphinx.ext.extlinks", # enables external links with a key "sphinx_autodoc_typehints", ] +# Autoapi settings +autoapi_type = "python" +autoapi_dirs = ["../edisgo"] # Napoleon settings napoleon_google_docstring = True diff --git a/doc/index.rst b/doc/index.rst index c02d20c37..0ff3cb798 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -69,6 +69,5 @@ Contents definitions_and_units configs equipment - api whatsnew genindex diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 34b13a347..a18e231f2 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -20,3 +20,4 @@ sphinx >= 4.3.0, < 5.1.0 sphinx_rtd_theme >=0.5.2 sphinx-autodoc-typehints geopandas >= 0.9.0 +sphinx-autoapi diff --git a/setup.py b/setup.py index 40052998d..c68e18ac9 100644 --- a/setup.py +++ b/setup.py @@ -72,6 +72,7 @@ def read(fname): "jupyter_contrib_nbextensions", "sphinx_rtd_theme", "sphinx-autodoc-typehints", + "sphinx-autoapi", "pre-commit", "black", "isort", From 5af4bc294739cccdf42dd6c0bdc802eb451754de Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 18 Sep 2022 22:03:21 +0200 Subject: [PATCH 022/355] Change allowed voltage deviations naming in config --- .../config/config_grid_expansion_default.cfg | 47 +++++++++---------- 1 file changed, 22 insertions(+), 25 deletions(-) diff --git a/edisgo/config/config_grid_expansion_default.cfg b/edisgo/config/config_grid_expansion_default.cfg index a82e027c9..1b69b91ff 100644 --- a/edisgo/config/config_grid_expansion_default.cfg +++ b/edisgo/config/config_grid_expansion_default.cfg @@ -21,12 +21,9 @@ lv_line = NAYY 4x1x150 # allowed voltage deviations # ========================== -# relevant for all cases -feed-in_case_lower = 0.9 -load_case_upper = 1.1 -# COMBINED MV+LV -# -------------- +# voltage at HV/MV station's secondary side +# ------------------------------------------ # hv_mv_trafo_offset: # offset which is set at HV-MV station # (pos. if op. voltage is increased, neg. if decreased) @@ -37,37 +34,37 @@ hv_mv_trafo_offset = 0.0 # (always pos. in config; pos. or neg. usage depending on case in edisgo) hv_mv_trafo_control_deviation = 0.0 -# mv_lv_max_v_deviation: -# max. allowed voltage deviation according to DIN EN 50160 +# COMBINED MV+LV +# -------------- +# max. allowed voltage rise and drop in case voltage band is not allocated to different +# voltage levels +# (values according to DIN EN 50160) # caution: offset and control deviation at HV-MV station must be considered in calculations! -mv_lv_feed-in_case_max_v_deviation = 0.1 -mv_lv_load_case_max_v_deviation = 0.1 +mv_lv_max_v_rise = 0.1 +mv_lv_max_v_drop = 0.1 # MV ONLY # ------- -# mv_load_case_max_v_deviation: -# max. allowed voltage deviation in MV grids (load case) -mv_load_case_max_v_deviation = 0.015 +# max. allowed voltage rise in MV grids +mv_max_v_rise = 0.05 -# mv_feed-in_case_max_v_deviation: -# max. allowed voltage deviation in MV grids (feed-in case) -# according to BDEW -mv_feed-in_case_max_v_deviation = 0.05 +# max. allowed voltage drop in MV grids +mv_max_v_drop = 0.015 # LV ONLY # ------- -# max. allowed voltage deviation in LV grids (load case) -lv_load_case_max_v_deviation = 0.065 +# max. allowed voltage rise in LV grids +lv_max_v_rise = 0.035 -# max. allowed voltage deviation in LV grids (feed-in case) -# according to VDE-AR-N 4105 -lv_feed-in_case_max_v_deviation = 0.035 +# max. allowed voltage rise over MV/LV stations +mv_lv_station_max_v_rise = 0.015 -# max. allowed voltage deviation in MV/LV stations (load case) -mv_lv_station_load_case_max_v_deviation = 0.02 +# max. allowed voltage drop in LV grids +# according to VDE-AR-N 4105 +lv_max_v_drop = 0.065 -# max. allowed voltage deviation in MV/LV stations (feed-in case) -mv_lv_station_feed-in_case_max_v_deviation = 0.015 +# max. allowed voltage drop over MV/LV stations +mv_lv_station_max_v_drop = 0.02 [grid_expansion_load_factors] From 67449d26530c96c984a4d4b735f317399f74b62d Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 7 Oct 2022 14:30:53 +0200 Subject: [PATCH 023/355] added basic database engine to read local or remote (per ssh) database --- doc/api/edisgo.flex_opt.rst | 29 +++++- doc/api/edisgo.io.rst | 11 +++ doc/api/edisgo.network.rst | 11 +++ doc/api/edisgo.opf.rst | 80 ++++++++------- doc/api/edisgo.tools.rst | 89 +++++++++-------- edisgo/io/egon_data_import.py | 177 ++++++++++++++++++++++++++++++++++ setup.py | 52 +++++----- 7 files changed, 351 insertions(+), 98 deletions(-) create mode 100644 edisgo/io/egon_data_import.py diff --git a/doc/api/edisgo.flex_opt.rst b/doc/api/edisgo.flex_opt.rst index 8abea6d10..e389ecaf7 100644 --- a/doc/api/edisgo.flex_opt.rst +++ b/doc/api/edisgo.flex_opt.rst @@ -1,6 +1,9 @@ edisgo.flex\_opt package ======================== +Submodules +---------- + edisgo.flex\_opt.charging\_strategies module -------------------------------------------- @@ -25,6 +28,14 @@ edisgo.flex\_opt.costs module :undoc-members: :show-inheritance: +edisgo.flex\_opt.curtailment module +----------------------------------- + +.. automodule:: edisgo.flex_opt.curtailment + :members: + :undoc-members: + :show-inheritance: + edisgo.flex\_opt.exceptions module ---------------------------------- @@ -34,7 +45,7 @@ edisgo.flex\_opt.exceptions module :show-inheritance: edisgo.flex\_opt.q\_control module ------------------------------------ +---------------------------------- .. automodule:: edisgo.flex_opt.q_control :members: @@ -56,3 +67,19 @@ edisgo.flex\_opt.reinforce\_measures module :members: :undoc-members: :show-inheritance: + +edisgo.flex\_opt.storage\_positioning module +-------------------------------------------- + +.. automodule:: edisgo.flex_opt.storage_positioning + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: edisgo.flex_opt + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/api/edisgo.io.rst b/doc/api/edisgo.io.rst index 75a1d860c..a37dfa478 100644 --- a/doc/api/edisgo.io.rst +++ b/doc/api/edisgo.io.rst @@ -1,6 +1,9 @@ edisgo.io package ================= +Submodules +---------- + edisgo.io.ding0\_import module ------------------------------ @@ -40,3 +43,11 @@ edisgo.io.timeseries\_import module :members: :undoc-members: :show-inheritance: + +Module contents +--------------- + +.. automodule:: edisgo.io + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/api/edisgo.network.rst b/doc/api/edisgo.network.rst index a139b7408..6f17d969f 100644 --- a/doc/api/edisgo.network.rst +++ b/doc/api/edisgo.network.rst @@ -1,6 +1,9 @@ edisgo.network package ====================== +Submodules +---------- + edisgo.network.components module -------------------------------- @@ -48,3 +51,11 @@ edisgo.network.topology module :members: :undoc-members: :show-inheritance: + +Module contents +--------------- + +.. automodule:: edisgo.network + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/api/edisgo.opf.rst b/doc/api/edisgo.opf.rst index db421aadf..d95540313 100644 --- a/doc/api/edisgo.opf.rst +++ b/doc/api/edisgo.opf.rst @@ -1,44 +1,56 @@ edisgo.opf package ================== +Subpackages +----------- + +.. toctree:: + :maxdepth: 4 + + edisgo.opf.edisgo_scenario_data + edisgo.opf.opf_solutions + edisgo.opf.results + edisgo.opf.util + +Submodules +---------- + edisgo.opf.run\_mp\_opf module ----------------------------------- +------------------------------ .. automodule:: edisgo.opf.run_mp_opf - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: + +edisgo.opf.run\_opf\_test module +-------------------------------- + +.. automodule:: edisgo.opf.run_opf_test + :members: + :undoc-members: + :show-inheritance: + +edisgo.opf.test\_path module +---------------------------- + +.. automodule:: edisgo.opf.test_path + :members: + :undoc-members: + :show-inheritance: edisgo.opf.timeseries\_reduction module -------------------------------------------- +--------------------------------------- .. automodule:: edisgo.opf.timeseries_reduction - :members: - :undoc-members: - :show-inheritance: - -edisgo.opf.results package ------------------------------ - -.. automodule:: edisgo.opf.results.opf_expand_network - :members: - :undoc-members: - :show-inheritance: - -.. automodule:: edisgo.opf.results.opf_result_class - :members: - :undoc-members: - :show-inheritance: - -edisgo.opf.util package ----------------------------------- - -.. automodule:: edisgo.opf.util.plot_solutions - :members: - :undoc-members: - :show-inheritance: - -.. automodule:: edisgo.opf.util.scenario_settings - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: + +Module contents +--------------- + +.. automodule:: edisgo.opf + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/api/edisgo.tools.rst b/doc/api/edisgo.tools.rst index 1bc306a87..c58bbc3ed 100644 --- a/doc/api/edisgo.tools.rst +++ b/doc/api/edisgo.tools.rst @@ -1,82 +1,93 @@ edisgo.tools package ==================== +Submodules +---------- + edisgo.tools.config module ---------------------------- +-------------------------- .. automodule:: edisgo.tools.config - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: edisgo.tools.geo module ------------------------- +----------------------- .. automodule:: edisgo.tools.geo - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: edisgo.tools.geopandas\_helper module ----------------------------------------- +------------------------------------- .. automodule:: edisgo.tools.geopandas_helper - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: edisgo.tools.logger module ----------------------------------------- +-------------------------- .. automodule:: edisgo.tools.logger - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: edisgo.tools.networkx\_helper module ----------------------------------------- +------------------------------------ .. automodule:: edisgo.tools.networkx_helper - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: edisgo.tools.plots module --------------------------- +------------------------- .. automodule:: edisgo.tools.plots - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: edisgo.tools.powermodels\_io module -------------------------------------- +----------------------------------- .. automodule:: edisgo.tools.powermodels_io - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: edisgo.tools.preprocess\_pypsa\_opf\_structure module ------------------------------------------------------- +----------------------------------------------------- .. automodule:: edisgo.tools.preprocess_pypsa_opf_structure - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: + +edisgo.tools.pseudo\_coordinates module +--------------------------------------- + +.. automodule:: edisgo.tools.pseudo_coordinates + :members: + :undoc-members: + :show-inheritance: edisgo.tools.tools module --------------------------- +------------------------- .. automodule:: edisgo.tools.tools - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: Module contents --------------- .. automodule:: edisgo.tools - :members: - :undoc-members: - :show-inheritance: + :members: + :undoc-members: + :show-inheritance: diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py new file mode 100644 index 000000000..c992f8f0b --- /dev/null +++ b/edisgo/io/egon_data_import.py @@ -0,0 +1,177 @@ +from __future__ import annotations + +import logging + +from pathlib import Path + +import yaml + +from sqlalchemy import create_engine +from sqlalchemy.engine.base import Engine +from sshtunnel import SSHTunnelForwarder + +logger = logging.getLogger(__name__) + + +def config_settings(path: Path | str) -> dict[str, dict[str, str | int | Path]]: + """ + Return a nested dictionary containing the configuration settings. + + It's a nested dictionary because the top level has command names as keys + and dictionaries as values where the second level dictionary has command + line switches applicable to the command as keys and the supplied values + as values. + + So you would obtain the ``--database-name`` configuration setting used + by the current invocation of ``egon-data`` via + + .. code-block:: python + + settings()["egon-data"]["--database-name"] + + Parameters + ---------- + path : pathlib.Path or str + Path to configuration YAML file of egon-data database. + + Returns + ------- + dict + Nested dictionary containing the egon-data and optional ssh tunnel configuration + settings. + + """ + if isinstance(path, str): + path = Path(path) + + if not path.is_file(): + raise ValueError(f"Configuration file {path} not found.") + with open(path) as f: + return yaml.safe_load(f) + + +def credentials(path: Path | str) -> dict[str, str | int | Path]: + """ + Return local database connection parameters. + + Parameters + ---------- + path : pathlib.Path or str + Path to configuration YAML file of egon-data database. + + Returns + ------- + dict + Complete DB connection information. + + """ + translated = { + "--database-name": "POSTGRES_DB", + "--database-password": "POSTGRES_PASSWORD", + "--database-host": "HOST", + "--database-port": "PORT", + "--database-user": "POSTGRES_USER", + } + configuration = config_settings(path=path) + + egon_config = configuration["egon-data"] + + update = { + translated[flag]: egon_config[flag] + for flag in egon_config + if flag in translated + } + + if "PORT" in update.keys(): + update["PORT"] = int(update["PORT"]) + + egon_config.update(update) + + if "ssh-tunnel" in configuration.keys(): + translated = { + "ssh-host": "SSH_HOST", + "ssh-user": "SSH_USER", + "ssh-pkey": "SSH_PKEY", + "pgres-host": "PGRES_HOST", + } + + update = { + translated[flag]: configuration["ssh-tunnel"][flag] + for flag in configuration["ssh-tunnel"] + if flag in translated + } + + egon_config.update(update) + + if "SSH_PKEY" in egon_config.keys(): + egon_config["SSH_PKEY"] = Path(egon_config["SSH_PKEY"]).expanduser() + + if not egon_config["SSH_PKEY"].is_file(): + raise ValueError(f"{egon_config['SSH_PKEY']} is not a file.") + + return egon_config + + +def ssh_tunnel(cred: dict) -> str: + """ + Initialize a SSH tunnel to a remote host according to the input arguments. + See https://sshtunnel.readthedocs.io/en/latest/ for more information. + + Parameters + ---------- + cred : dict + Complete DB connection information. + + Returns + ------- + sqlalchemy.engine.base.Engine + SQLAlchemy engine. + + """ + server = SSHTunnelForwarder( + ssh_address_or_host=(cred["SSH_HOST"], 22), + ssh_username=cred["SSH_USER"], + ssh_private_key=cred["SSH_PKEY"], + remote_bind_address=(cred["PGRES_HOST"], cred["PORT"]), + ) + server.start() + + return str(server.local_bind_port) + + +def engine(path: Path | str, ssh: bool = False) -> Engine: + """ + Engine for local or remote database. + + Parameters + ---------- + path : dict + Path to configuration YAML file of egon-data database. + ssh : bool + If True try to establish ssh tunnel from given information within the + configuration YAML. If False try to connect to local database. + + Returns + ------- + str + Name of local port + + """ + cred = credentials(path=path) + + if not ssh: + return create_engine( + f"postgresql+psycopg2://{cred['POSTGRES_USER']}:" + f"{cred['POSTGRES_PASSWORD']}@{cred['HOST']}:" + f"{cred['PORT']}/{cred['POSTGRES_DB']}", + echo=False, + ) + + local_port = ssh_tunnel(cred) + + return create_engine( + f"postgresql+psycopg2://{cred['POSTGRES_USER']}:" + f"{cred['POSTGRES_PASSWORD']}@{cred['PGRES_HOST']}:" + f"{local_port}/{cred['POSTGRES_DB']}", + echo=False, + ) diff --git a/setup.py b/setup.py index 05bb8a330..66455c6bb 100644 --- a/setup.py +++ b/setup.py @@ -31,34 +31,36 @@ def read(fname): requirements = [ - "demandlib", - "networkx >= 2.5.0", - "geopy >= 2.0.0", - "pandas >= 1.2.0", - "geopandas >= 0.9.0", - "pyproj >= 3.0.0", - "shapely >= 1.7.0", - "pypsa >= 0.17.0", - "pyomo >= 6.0", - "multiprocess", - "workalendar", - "sqlalchemy < 1.4.0", - "geoalchemy2 < 0.7.0", - "egoio >= 0.4.7", - "matplotlib >= 3.3.0", - "pypower", - "sklearn", - "pydot", - "pygeos", "beautifulsoup4", + "demandlib", "contextily", + "dash == 2.6.0", "descartes", + "egoio >= 0.4.7", + "geoalchemy2 < 0.7.0", + "geopandas >= 0.9.0", + "geopy >= 2.0.0", "jupyter", "jupyterlab", - "plotly", - "dash==2.6.0", "jupyter_dash", - "werkzeug==2.2.0", + "matplotlib >= 3.3.0", + "multiprocess", + "networkx >= 2.5.0", + "pandas >= 1.2.0", + "plotly", + "pyaml", + "pydot", + "pygeos", + "pypower", + "pyomo >= 6.0", + "pyproj >= 3.0.0", + "pypsa >= 0.17.0", + "shapely >= 1.7.0", + "sklearn", + "sqlalchemy < 1.4.0", + "sshtunnel", + "werkzeug == 2.2.0", + "workalendar", ] dev_requirements = [ @@ -82,8 +84,10 @@ def read(fname): packages=find_packages(), url="https://github.com/openego/eDisGo", license="GNU Affero General Public License v3.0", - author="birgits, AnyaHe, khelfen, gplssm, nesnoj, jaappedersen, Elias, boltbeard, " - "mltja", + author=( + "birgits, AnyaHe, khelfen, gplssm, nesnoj, jaappedersen, Elias, boltbeard, " + "mltja" + ), author_email="anya.heider@rl-institut.de", description="A python package for distribution network analysis and optimization", long_description=read("README.md"), From 3ca89082423ff281cf3318cd1ad28bbedd3f8df0 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Thu, 13 Oct 2022 15:44:26 +0200 Subject: [PATCH 024/355] added egon-data db read-in for SimBEV profiles --- edisgo/edisgo.py | 20 ++++--- edisgo/io/egon_data_import.py | 68 ++++++++++++++++++++-- edisgo/io/electromobility_import.py | 90 ++++++++++++++++++++++++++++- 3 files changed, 166 insertions(+), 12 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 6a7f5edc5..b68a48828 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -12,6 +12,8 @@ import numpy as np import pandas as pd +from sqlalchemy.engine.base import Engine + from edisgo.flex_opt.charging_strategies import charging_strategy from edisgo.flex_opt.reinforce_grid import reinforce_grid from edisgo.io import pypsa_io @@ -19,6 +21,7 @@ from edisgo.io.electromobility_import import ( distribute_charging_demand, import_electromobility, + import_electromobility_from_database, integrate_charging_parks, ) from edisgo.io.generators_import import oedb as import_generators_oedb @@ -1523,6 +1526,9 @@ def import_electromobility( integrate_charging_parks(self) + def import_electromobility_from_database(self, engine: Engine): + import_electromobility_from_database(self, engine=engine) + def apply_charging_strategy(self, strategy="dumb", **kwargs): """ Applies charging strategy to set EV charging time series at charging parks. @@ -2172,12 +2178,12 @@ def import_edisgo_from_pickle(filename, path=""): def import_edisgo_from_files( - edisgo_path, - import_topology=True, - import_timeseries=False, - import_results=False, - import_electromobility=False, - from_zip_archive=False, + edisgo_path: str | PurePath, + import_topology: bool = True, + import_timeseries: bool = False, + import_results: bool = False, + import_electromobility: bool = False, + from_zip_archive: bool = False, **kwargs, ): """ @@ -2189,7 +2195,7 @@ def import_edisgo_from_files( Parameters ----------- - edisgo_path : str + edisgo_path : str or pathlib.PurePath Main directory to restore EDisGo object from. This directory must contain the config files. Further, if not specified differently, it is assumed to be the main directory containing sub-directories with diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py index c992f8f0b..cc3a19848 100644 --- a/edisgo/io/egon_data_import.py +++ b/edisgo/io/egon_data_import.py @@ -4,6 +4,8 @@ from pathlib import Path +import geopandas as gpd +import pandas as pd import yaml from sqlalchemy import create_engine @@ -124,8 +126,8 @@ def ssh_tunnel(cred: dict) -> str: Returns ------- - sqlalchemy.engine.base.Engine - SQLAlchemy engine. + str + Name of local port. """ server = SSHTunnelForwarder( @@ -153,8 +155,8 @@ def engine(path: Path | str, ssh: bool = False) -> Engine: Returns ------- - str - Name of local port + sqlalchemy.engine.base.Engine + Database engine """ cred = credentials(path=path) @@ -175,3 +177,61 @@ def engine(path: Path | str, ssh: bool = False) -> Engine: f"{local_port}/{cred['POSTGRES_DB']}", echo=False, ) + + +def select_dataframe(sql, db_engine, index_col=None): + """Select data from local database as pandas.DataFrame + + Parameters + ---------- + sql : str + SQL query to be executed. + db_engine : sqlalchemy.engine.base.Engine + Database engine + index_col : str, optional + Column(s) to set as index(MultiIndex). The default is None. + + Returns + ------- + df : pandas.DataFrame + Data returned from SQL statement. + + """ + + df = pd.read_sql(sql, db_engine, index_col=index_col) + + if df.size == 0: + logger.warning(f"No data returned by statement:\n{sql}") + + return df + + +def select_geodataframe(sql, db_engine, index_col=None, geom_col="geom", epsg=3035): + """Select data from local database as geopandas.GeoDataFrame + + Parameters + ---------- + sql : str + SQL query to be executed. + db_engine : sqlalchemy.engine.base.Engine + Database engine + index_col : str, optional + Column(s) to set as index(MultiIndex). The default is None. + geom_col : str, optional + column name to convert to shapely geometries. The default is 'geom'. + epsg : int, optional + EPSG code specifying output projection. The default is 3035. + + Returns + ------- + gdf : pandas.DataFrame + Data returned from SQL statement. + + """ + + gdf = gpd.read_postgis(sql, db_engine, index_col=index_col, geom_col=geom_col) + + if gdf.size == 0: + logger.warning(f"No data returned by statement:\n{sql}") + + return gdf.to_crs(epsg=epsg) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 20ba4d708..f2597ba35 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -4,6 +4,7 @@ import logging import os +from collections import Counter from pathlib import Path, PurePath from typing import TYPE_CHECKING @@ -12,6 +13,9 @@ from numpy.random import default_rng from sklearn import preprocessing +from sqlalchemy.engine.base import Engine + +from edisgo.io.egon_data_import import select_dataframe if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -19,7 +23,7 @@ if TYPE_CHECKING: from edisgo import EDisGo -logger = logging.getLogger("edisgo") +logger = logging.getLogger(__name__) min_max_scaler = preprocessing.MinMaxScaler() @@ -1133,3 +1137,87 @@ def integrate_charging_parks(edisgo_obj): data=edisgo_ids, index=charging_park_ids, ) + + +def import_electromobility_from_database( + edisgo_obj: EDisGo, + engine: Engine, + scenario: str = "eGon2035", +): + edisgo_obj.electromobility.charging_processes_df = charging_processes_from_database( + edisgo_obj=edisgo_obj, engine=engine, scenario=scenario + ) + + # edisgo_obj.electromobility.simbev_config_df = simbev_config_from_database( + # engine=engine + # ) + # + # edisgo_obj.electromobility.potential_charging_parks_gdf = ( + # potential_charging_parks_from_database(engine=engine) + # ) + + +def charging_processes_from_database( + edisgo_obj: EDisGo, + engine: Engine, + scenario: str = "eGon2035", +): + mv_grid_id = edisgo_obj.topology.id + + sql = f""" + SELECT egon_ev_pool_ev_id FROM demand.egon_ev_mv_grid_district + WHERE scenario = '{scenario}' + AND bus_id = '{mv_grid_id}' + """ + + pool = Counter(select_dataframe(sql, db_engine=engine).egon_ev_pool_ev_id) + + n_max = max(pool.values()) + + sql = f""" + SELECT * FROM demand.egon_ev_trip + WHERE scenario = '{scenario}' + AND charging_demand > 0 + AND egon_ev_pool_ev_id IN ({str(list(pool.keys()))[1:-1]}) + """ + + ev_trips_df = select_dataframe(sql=sql, db_engine=engine) + + df_list = [] + + last_id = 0 + + for i in range(n_max, 0, -1): + evs = sorted([ev_id for ev_id, count in pool.items() if count >= i]) + + df = ev_trips_df.loc[ev_trips_df.egon_ev_pool_ev_id.isin(evs)] + + mapping = {ev: count + last_id for count, ev in enumerate(evs)} + + df.egon_ev_pool_ev_id = df.egon_ev_pool_ev_id.map(mapping) + + last_id = max(mapping.values()) + 1 + + df_list.append(df) + + df = pd.concat(df_list, ignore_index=True) + + rename = { + "egon_ev_pool_ev_id": "car_id", + "location": "destination", + "charging_capacity_nominal": "nominal_charging_capacity_kW", + "charging_capacity_grid": "grid_charging_capacity_kW", + "charging_demand": "chargingdemand_kWh", + "park_start": "park_start_timesteps", + "park_end": "park_end_timesteps", + } + + df = df.rename(columns=rename, errors="raise") + + if df.park_start_timesteps.min() == 1: + df.loc[:, ["park_start_timesteps", "park_end_timesteps"]] -= 1 + + return df.assign( + ags=0, + park_time_timesteps=df.park_end_timesteps - df.park_start_timesteps + 1, + )[COLUMNS["charging_processes_df"]] From b3c8721271d8e93851167728e73139c81b92b21b Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 14 Oct 2022 15:45:30 +0200 Subject: [PATCH 025/355] added egon-data db read-in for TracBEV data --- edisgo/io/electromobility_import.py | 58 ++++++++++++++++++++++++++--- 1 file changed, 52 insertions(+), 6 deletions(-) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index f2597ba35..10adb3412 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -15,7 +15,7 @@ from sklearn import preprocessing from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import select_dataframe +from edisgo.io.egon_data_import import select_dataframe, select_geodataframe if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -361,6 +361,18 @@ def read_gpkg_potential_charging_parks(path, edisgo_obj, **kwargs): crs=potential_charging_parks_gdf_list[0].crs, ).astype(DTYPES["potential_charging_parks_gdf"]) + return assure_minimum_potential_charging_parks( + edisgo_obj=edisgo_obj, + potential_charging_parks_gdf=potential_charging_parks_gdf, + **kwargs, + ) + + +def assure_minimum_potential_charging_parks( + edisgo_obj: EDisGo, + potential_charging_parks_gdf: gpd.GeoDataFrame, + **kwargs, +): # ensure minimum number of potential charging parks per car num_cars = len(edisgo_obj.electromobility.charging_processes_df.car_id.unique()) @@ -1143,19 +1155,53 @@ def import_electromobility_from_database( edisgo_obj: EDisGo, engine: Engine, scenario: str = "eGon2035", + **kwargs, ): edisgo_obj.electromobility.charging_processes_df = charging_processes_from_database( edisgo_obj=edisgo_obj, engine=engine, scenario=scenario ) # edisgo_obj.electromobility.simbev_config_df = simbev_config_from_database( - # engine=engine - # ) - # - # edisgo_obj.electromobility.potential_charging_parks_gdf = ( - # potential_charging_parks_from_database(engine=engine) + # edisgo_obj=edisgo_obj, engine=engine # ) + edisgo_obj.electromobility.potential_charging_parks_gdf = ( + potential_charging_parks_from_database( + edisgo_obj=edisgo_obj, engine=engine, **kwargs + ) + ) + + +def potential_charging_parks_from_database( + edisgo_obj: EDisGo, + engine: Engine, + **kwargs, +): + mv_grid_id = edisgo_obj.topology.id + + sql = f""" + SELECT * FROM grid.egon_emob_charging_infrastructure + WHERE mv_grid_id = '{mv_grid_id}' + """ + + gdf = select_geodataframe( + sql=sql, db_engine=engine, index_col="cp_id", geom_col="geometry" + ) + + gdf = gdf.assign(ags=0) + + rename = { + "weight": "user_centric_weight", + } + + gdf = gdf.rename(columns=rename, errors="raise")[ + COLUMNS["potential_charging_parks_gdf"] + ] + + return assure_minimum_potential_charging_parks( + edisgo_obj=edisgo_obj, potential_charging_parks_gdf=gdf, **kwargs + ) + def charging_processes_from_database( edisgo_obj: EDisGo, From 18f266f17e295eae688131141295ae65476de95f Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Tue, 18 Oct 2022 09:06:32 +0200 Subject: [PATCH 026/355] small bug fix --- edisgo/edisgo.py | 13 +++++++-- edisgo/io/electromobility_import.py | 42 ++++++++++++++++++++++------- 2 files changed, 43 insertions(+), 12 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 338756e40..c2bf0ff97 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1546,8 +1546,17 @@ def import_electromobility( integrate_charging_parks(self) - def import_electromobility_from_database(self, engine: Engine): - import_electromobility_from_database(self, engine=engine) + def import_electromobility_from_database( + self, engine: Engine, allocate_charging_demand_kwds: dict = None, **kwargs + ): + import_electromobility_from_database(self, engine=engine, **kwargs) + + if allocate_charging_demand_kwds is None: + allocate_charging_demand_kwds = {} + + distribute_charging_demand(self, **allocate_charging_demand_kwds) + + integrate_charging_parks(self) def apply_charging_strategy(self, strategy="dumb", **kwargs): """ diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 10adb3412..4744db403 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -40,6 +40,8 @@ "park_time_timesteps", "park_start_timesteps", "park_end_timesteps", + "charging_park_id", + "charging_point_id", ], "simbev_config_df": [ "eta_cp", @@ -78,6 +80,8 @@ "park_time_timesteps": np.uint16, "park_start_timesteps": np.uint16, "park_end_timesteps": np.uint16, + "charging_park_id": np.uint16, + "charging_point_id": np.uint32, }, "simbev_config_df": { "eta_cp": float, @@ -359,7 +363,7 @@ def read_gpkg_potential_charging_parks(path, edisgo_obj, **kwargs): ignore_index=True, ), crs=potential_charging_parks_gdf_list[0].crs, - ).astype(DTYPES["potential_charging_parks_gdf"]) + ) return assure_minimum_potential_charging_parks( edisgo_obj=edisgo_obj, @@ -431,8 +435,8 @@ def assure_minimum_potential_charging_parks( while actual_gc_to_car_rate < gc_to_car_rate and n < max_it: logger.info( f"Duplicating potential charging parks to meet the desired grid " - f"connections to cars rate of {gc_to_car_rate*100:.2f} %. Iteration: " - f"{n+1}." + f"connections to cars rate of {gc_to_car_rate*100:.2f} % for use case " + f"{use_case}. Iteration: {n+1}." ) if actual_gc_to_car_rate * 2 < gc_to_car_rate: @@ -485,9 +489,13 @@ def assure_minimum_potential_charging_parks( # in case of polygons use the centroid as potential charging parks point # and set crs to match edisgo object - return potential_charging_parks_gdf.assign( - geometry=potential_charging_parks_gdf.geometry.representative_point() - ).to_crs(epsg=edisgo_obj.topology.grid_district["srid"]) + return ( + potential_charging_parks_gdf.assign( + geometry=potential_charging_parks_gdf.geometry.representative_point() + ) + .to_crs(epsg=edisgo_obj.topology.grid_district["srid"]) + .astype(DTYPES["potential_charging_parks_gdf"]) + ) def distribute_charging_demand(edisgo_obj, **kwargs): @@ -1161,9 +1169,9 @@ def import_electromobility_from_database( edisgo_obj=edisgo_obj, engine=engine, scenario=scenario ) - # edisgo_obj.electromobility.simbev_config_df = simbev_config_from_database( - # edisgo_obj=edisgo_obj, engine=engine - # ) + edisgo_obj.electromobility.simbev_config_df = simbev_config_from_database( + engine=engine, scenario=scenario + ) edisgo_obj.electromobility.potential_charging_parks_gdf = ( potential_charging_parks_from_database( @@ -1172,6 +1180,18 @@ def import_electromobility_from_database( ) +def simbev_config_from_database( + engine: Engine, + scenario: str = "eGon2035", +): + sql = f""" + SELECT * FROM demand.egon_ev_metadata + WHERE scenario = '{scenario}' + """ + + return select_dataframe(sql=sql, db_engine=engine) + + def potential_charging_parks_from_database( edisgo_obj: EDisGo, engine: Engine, @@ -1266,4 +1286,6 @@ def charging_processes_from_database( return df.assign( ags=0, park_time_timesteps=df.park_end_timesteps - df.park_start_timesteps + 1, - )[COLUMNS["charging_processes_df"]] + charging_park_id=np.nan, + charging_point_id=np.nan, + )[COLUMNS["charging_processes_df"]].astype(DTYPES["charging_processes_df"]) From 4b5e15b09cefc5dfc1282335d0ee5e2080400166 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Tue, 18 Oct 2022 10:04:16 +0200 Subject: [PATCH 027/355] added how-to --- edisgo/io/egon_data_import.md | 62 +++++++++++++++++++++++++++++ edisgo/io/electromobility_import.py | 10 ++--- 2 files changed, 66 insertions(+), 6 deletions(-) create mode 100644 edisgo/io/egon_data_import.md diff --git a/edisgo/io/egon_data_import.md b/edisgo/io/egon_data_import.md new file mode 100644 index 000000000..8046580d4 --- /dev/null +++ b/edisgo/io/egon_data_import.md @@ -0,0 +1,62 @@ +# Import data from a local or remote [egon-data](https://github.com/openego/eGon-data) database + +To import data from the database the `egon-data.configuration.yaml` generated by +egon-data is used. If access to a remote database via ssh is desired, then an +`ssh-tunnel` section must be added to the `egon-data.configuration.yaml` with the ssh +connection information. For example, this would look like this: + +```yaml +egon-data: + --airflow-database-name: airflow + --airflow-port: 8080 + --compose-project-name: egon-data-db + --database-host: 127.0.0.1 + --database-name: egon-data-db + --database-password: data + --database-port: '59782' + --database-user: egon + --dataset-boundary: Schleswig-Holstein + --docker-container-name: egon-data-db + --jobs: 12 + --processes-per-task: 1 + --random-seed: 42 +ssh-tunnel: + ssh-host: "111.222.33.444" + ssh-user: "user.name" + ssh-pkey: "~/.ssh/path-to-private-key" + pgres-host: "localhost" +``` + +To get data from the database, the database engine has to be instantiated first: + +```python +from pathlib import Path + +from edisgo.io.egon_data_import import engine + +config_path = Path("path/to/egon-data.configuration.yaml") + +engine = engine(path=config_path, ssh=True) # set ssh True if remote else False +``` + +## E-Mobility + +The import of E-Mobility from the database works automatically and just needs the +instantiated database engine. The amount of EVs and potential charging parks is taken +from the database. The import may look like this: + +```python +from pathlib import Path + +from edisgo import EDisGo +from edisgo.io.egon_data_import import engine + +ding0_path = Path("path/to/.ding0/grid") +config_path = Path("path/to/egon-data.configuration.yaml") + +edisgo = EDisGo(ding0_grid=ding0_path) + +engine = engine(path=config_path, ssh=True) + +edisgo.import_electromobility_from_database(engine) +``` diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 4744db403..62d26bc4e 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -80,8 +80,6 @@ "park_time_timesteps": np.uint16, "park_start_timesteps": np.uint16, "park_end_timesteps": np.uint16, - "charging_park_id": np.uint16, - "charging_point_id": np.uint32, }, "simbev_config_df": { "eta_cp": float, @@ -280,9 +278,7 @@ def read_simbev_config_df( for col in ["start_date", "end_date"]: df[col] = pd.to_datetime(df[col]) - df = df.assign(days=(df.end_date - df.start_date).iat[0].days + 1) - - return df + return df.assign(days=(df.end_date - df.start_date).iat[0].days + 1) except Exception: logging.warning( @@ -1189,7 +1185,9 @@ def simbev_config_from_database( WHERE scenario = '{scenario}' """ - return select_dataframe(sql=sql, db_engine=engine) + df = select_dataframe(sql=sql, db_engine=engine) + + return df.assign(days=(df.end_date - df.start_date).iat[0].days + 1) def potential_charging_parks_from_database( From 81d1bd8df7d3b07dfeaa6fca44fbc8b268489401 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Tue, 18 Oct 2022 13:02:04 +0200 Subject: [PATCH 028/355] minor fix --- edisgo/io/egon_data_import.md | 13 ++++++++++--- edisgo/io/electromobility_import.py | 19 +++++++++++-------- 2 files changed, 21 insertions(+), 11 deletions(-) diff --git a/edisgo/io/egon_data_import.md b/edisgo/io/egon_data_import.md index 8046580d4..0f0fefc35 100644 --- a/edisgo/io/egon_data_import.md +++ b/edisgo/io/egon_data_import.md @@ -2,8 +2,8 @@ To import data from the database the `egon-data.configuration.yaml` generated by egon-data is used. If access to a remote database via ssh is desired, then an -`ssh-tunnel` section must be added to the `egon-data.configuration.yaml` with the ssh -connection information. For example, this would look like this: +`ssh-tunnel` section must be added to the (copy of the) `egon-data.configuration.yaml` +with the ssh connection information. For example, this would look like this: ```yaml egon-data: @@ -46,6 +46,8 @@ instantiated database engine. The amount of EVs and potential charging parks is from the database. The import may look like this: ```python +import pandas as pd + from pathlib import Path from edisgo import EDisGo @@ -55,8 +57,13 @@ ding0_path = Path("path/to/.ding0/grid") config_path = Path("path/to/egon-data.configuration.yaml") edisgo = EDisGo(ding0_grid=ding0_path) +timeindex = pd.date_range("1/1/2011", periods=365 * 7, freq="H") -engine = engine(path=config_path, ssh=True) +edisgo.set_timeindex(timeindex) +edisgo.resample_timeseries() +engine = engine(path=config_path, ssh=True) edisgo.import_electromobility_from_database(engine) + +edisgo.apply_charging_strategy() ``` diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 62d26bc4e..2db0ee35a 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -40,8 +40,6 @@ "park_time_timesteps", "park_start_timesteps", "park_end_timesteps", - "charging_park_id", - "charging_point_id", ], "simbev_config_df": [ "eta_cp", @@ -1281,9 +1279,14 @@ def charging_processes_from_database( if df.park_start_timesteps.min() == 1: df.loc[:, ["park_start_timesteps", "park_end_timesteps"]] -= 1 - return df.assign( - ags=0, - park_time_timesteps=df.park_end_timesteps - df.park_start_timesteps + 1, - charging_park_id=np.nan, - charging_point_id=np.nan, - )[COLUMNS["charging_processes_df"]].astype(DTYPES["charging_processes_df"]) + return ( + df.assign( + ags=0, + park_time_timesteps=df.park_end_timesteps - df.park_start_timesteps + 1, + )[COLUMNS["charging_processes_df"]] + .astype(DTYPES["charging_processes_df"]) + .assign( + charging_park_id=np.nan, + charging_point_id=np.nan, + ) + ) From 38cf4688c3a43e712dce291197ec1b4fb2b9b9d7 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Tue, 1 Nov 2022 14:52:28 +0100 Subject: [PATCH 029/355] changed queries to use saio --- .pre-commit-config.yaml | 6 +- edisgo/io/egon_data_import.py | 17 ++++++ edisgo/io/electromobility_import.py | 70 ++++++++++++++--------- edisgo/io/generators_import.py | 87 ++++++++++++++++++++++++++++- setup.py | 1 + 5 files changed, 149 insertions(+), 32 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 5e00619c1..af7bb3464 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/psf/black - rev: 22.8.0 + rev: 22.10.0 hooks: - id: black - repo: https://github.com/pycqa/flake8 @@ -19,7 +19,7 @@ repos: - id: isort name: isort (python) - repo: https://github.com/asottile/pyupgrade - rev: v2.38.0 + rev: v3.2.0 hooks: - id: pyupgrade #- repo: https://github.com/pycqa/pylint @@ -27,6 +27,6 @@ repos: # hooks: # - id: pylint - repo: https://github.com/kynan/nbstripout - rev: 0.6.0 + rev: 0.6.1 hooks: - id: nbstripout diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py index cc3a19848..7a0d5eff6 100644 --- a/edisgo/io/egon_data_import.py +++ b/edisgo/io/egon_data_import.py @@ -2,6 +2,7 @@ import logging +from contextlib import contextmanager from pathlib import Path import geopandas as gpd @@ -10,6 +11,7 @@ from sqlalchemy import create_engine from sqlalchemy.engine.base import Engine +from sqlalchemy.orm import sessionmaker from sshtunnel import SSHTunnelForwarder logger = logging.getLogger(__name__) @@ -235,3 +237,18 @@ def select_geodataframe(sql, db_engine, index_col=None, geom_col="geom", epsg=30 logger.warning(f"No data returned by statement:\n{sql}") return gdf.to_crs(epsg=epsg) + + +@contextmanager +def session_scope(engine: Engine): + """Provide a transactional scope around a series of operations.""" + Session = sessionmaker(bind=engine) + session = Session() + try: + yield session + session.commit() + except: # noqa: E722 + session.rollback() + raise + finally: + session.close() diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 2db0ee35a..00887ce25 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -10,12 +10,13 @@ import numpy as np import pandas as pd +import saio from numpy.random import default_rng from sklearn import preprocessing from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import select_dataframe, select_geodataframe +from edisgo.io.egon_data_import import session_scope if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -266,7 +267,7 @@ def read_simbev_config_df( """ try: if simbev_config_file is not None: - with open(os.path.join(path, simbev_config_file), "r") as f: + with open(os.path.join(path, simbev_config_file)) as f: data = json.load(f) df = pd.DataFrame.from_dict( @@ -1159,6 +1160,9 @@ def import_electromobility_from_database( scenario: str = "eGon2035", **kwargs, ): + saio.register_schema("demand", engine) + saio.register_schema("grid", engine) + edisgo_obj.electromobility.charging_processes_df = charging_processes_from_database( edisgo_obj=edisgo_obj, engine=engine, scenario=scenario ) @@ -1178,12 +1182,14 @@ def simbev_config_from_database( engine: Engine, scenario: str = "eGon2035", ): - sql = f""" - SELECT * FROM demand.egon_ev_metadata - WHERE scenario = '{scenario}' - """ + from saio.demand import egon_ev_metadata + + with session_scope(engine) as session: + query = session.query(egon_ev_metadata).filter( + egon_ev_metadata.scenario == scenario + ) - df = select_dataframe(sql=sql, db_engine=engine) + df = pd.read_sql(sql=query.statement, con=query.session.bind) return df.assign(days=(df.end_date - df.start_date).iat[0].days + 1) @@ -1193,16 +1199,22 @@ def potential_charging_parks_from_database( engine: Engine, **kwargs, ): + from saio.grid import egon_emob_charging_infrastructure + mv_grid_id = edisgo_obj.topology.id + srid = edisgo_obj.topology.grid_district["srid"] - sql = f""" - SELECT * FROM grid.egon_emob_charging_infrastructure - WHERE mv_grid_id = '{mv_grid_id}' - """ + with session_scope(engine) as session: + query = session.query(egon_emob_charging_infrastructure).filter( + egon_emob_charging_infrastructure.mv_grid_id == mv_grid_id + ) - gdf = select_geodataframe( - sql=sql, db_engine=engine, index_col="cp_id", geom_col="geometry" - ) + gdf = gpd.read_postgis( + sql=query.statement, + con=query.session.bind, + geom_col="geometry", + index_col="cp_id", + ).to_crs(epsg=srid) gdf = gdf.assign(ags=0) @@ -1224,26 +1236,30 @@ def charging_processes_from_database( engine: Engine, scenario: str = "eGon2035", ): + from saio.demand import egon_ev_mv_grid_district, egon_ev_trip + mv_grid_id = edisgo_obj.topology.id - sql = f""" - SELECT egon_ev_pool_ev_id FROM demand.egon_ev_mv_grid_district - WHERE scenario = '{scenario}' - AND bus_id = '{mv_grid_id}' - """ + with session_scope(engine) as session: + query = session.query(egon_ev_mv_grid_district.egon_ev_pool_ev_id).filter( + egon_ev_mv_grid_district.scenario == scenario, + egon_ev_mv_grid_district.bus_id == mv_grid_id, + ) - pool = Counter(select_dataframe(sql, db_engine=engine).egon_ev_pool_ev_id) + pool = Counter( + pd.read_sql(sql=query.statement, con=query.session.bind).egon_ev_pool_ev_id + ) n_max = max(pool.values()) - sql = f""" - SELECT * FROM demand.egon_ev_trip - WHERE scenario = '{scenario}' - AND charging_demand > 0 - AND egon_ev_pool_ev_id IN ({str(list(pool.keys()))[1:-1]}) - """ + with session_scope(engine) as session: + query = session.query(egon_ev_trip).filter( + egon_ev_trip.scenario == scenario, + egon_ev_trip.charging_demand > 0, + egon_ev_trip.egon_ev_pool_ev_id.in_(pool.keys()), + ) - ev_trips_df = select_dataframe(sql=sql, db_engine=engine) + ev_trips_df = pd.read_sql(sql=query.statement, con=query.session.bind) df_list = [] diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index fc9a839c8..7a0d0e431 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -1,22 +1,33 @@ +from __future__ import annotations + import logging import os import random +from typing import TYPE_CHECKING + import numpy as np import pandas as pd from sqlalchemy import func +from sqlalchemy.engine.base import Engine +from edisgo.io.egon_data_import import select_geodataframe from edisgo.tools import session_scope from edisgo.tools.geo import proj2equidistant -logger = logging.getLogger(__name__) - if "READTHEDOCS" not in os.environ: + import geopandas as gpd + from egoio.db_tables import model_draft, supply from shapely.ops import transform from shapely.wkt import loads as wkt_loads +if TYPE_CHECKING: + from edisgo import EDisGo + +logger = logging.getLogger(__name__) + def oedb(edisgo_object, generator_scenario, **kwargs): """ @@ -713,3 +724,75 @@ def scale_generators(gen_type, total_capacity): lv_gens_voltage_level_7, lv_loads, lv_grid.id ) ) + + +def generators_from_database( + edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" +): + """ + + :return: + """ + fluctuating = ["wind_onshore", "solar"] + firm = ["others", "gas", "oil", "biomass", "run_of_river", "reservoir"] + + srid = edisgo_object.topology.grid_district["srid"] + + sql = """ + SELECT * FROM supply.egon_power_plants + WHERE scenario = '{}' + AND carrier IN ({}) + """ + + grid_gdf = gpd.GeoDataFrame( + geometry=[edisgo_object.topology.grid_district["geom"]], crs=f"EPSG:{srid}" + ) + + # 1. firm egon_power_plants + firm_gdf = select_geodataframe( + sql=sql.format(scenario, str(firm)[1:-1]), + db_engine=engine, + geom_col="geom", + epsg=srid, + ) + + firm_gdf = firm_gdf.loc[firm_gdf.geom.within(grid_gdf.geometry)] + + # 2. fluctuating egon_power_plants + fluc_gdf = select_geodataframe( + sql=sql.format(scenario, str(fluctuating)[1:-1]), + db_engine=engine, + geom_col="geom", + epsg=srid, + ) + + fluc_gdf = fluc_gdf.loc[fluc_gdf.geom.within(grid_gdf.geometry)] + + # TODO: + # # 3. pv rooftop egon_power_plants_pv_roof_building + # sql = f""" + # SELECT * FROM supply.egon_power_plants_pv_roof_building + # WHERE scenario = '{scenario}' + # """ + # + # pv_roof_df = select_dataframe(sql=sql, db_engine=engine, index_col="index") + # + # sql = f""" + # SELECT * FROM openstreetmap.osm_buildings_filtered + # """ + # + # buildings_gdf = select_geodataframe( + # sql=sql, db_engine=engine, geom_col="geom_point", epsg=srid + # ) + + # 4. chp plants egon_chp_plants + sql = f""" + SELECT * FROM supply.egon_chp_plants + WHERE scenario = '{scenario}' + """ + + chp_gdf = select_geodataframe(sql=sql, db_engine=engine, index_col="id", epsg=srid) + + chp_gdf = chp_gdf.loc[chp_gdf.geom.within(grid_gdf.geometry)] + + return fluc_gdf diff --git a/setup.py b/setup.py index 66455c6bb..f141589a2 100644 --- a/setup.py +++ b/setup.py @@ -55,6 +55,7 @@ def read(fname): "pyomo >= 6.0", "pyproj >= 3.0.0", "pypsa >= 0.17.0", + "saio", "shapely >= 1.7.0", "sklearn", "sqlalchemy < 1.4.0", From b2ef13bb56dfb7968ed34ad2e9d4978fdadddbcd Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Wed, 2 Nov 2022 08:45:21 +0100 Subject: [PATCH 030/355] minor change --- edisgo/io/generators_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 7a0d0e431..abf02a700 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -730,7 +730,7 @@ def generators_from_database( edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" ): """ - + TODO :return: """ fluctuating = ["wind_onshore", "solar"] From c0c627d67ad1afe18538fc472c7c87cb5effb8d1 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Wed, 2 Nov 2022 13:56:03 +0100 Subject: [PATCH 031/355] added basic dsm structure and import --- edisgo/edisgo.py | 4 +- edisgo/io/dsm_import.py | 122 ++++++++++++++++++++++++++++ edisgo/io/electromobility_import.py | 1 + edisgo/io/generators_import.py | 72 ++++++++-------- edisgo/network/dsm.py | 36 ++++++++ edisgo/network/electromobility.py | 2 +- edisgo/tools/tools.py | 13 +++ 7 files changed, 209 insertions(+), 41 deletions(-) create mode 100644 edisgo/io/dsm_import.py create mode 100644 edisgo/network/dsm.py diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 86fefbfbe..57595f7e7 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -31,6 +31,7 @@ # from edisgo.io.heat_pump_import import oedb as import_heat_pumps_oedb from edisgo.network import timeseries +from edisgo.network.dsm import DSM from edisgo.network.electromobility import Electromobility from edisgo.network.heat import HeatPump from edisgo.network.results import Results @@ -151,9 +152,10 @@ def __init__(self, **kwargs): timeindex=kwargs.get("timeindex", pd.DatetimeIndex([])) ) - # instantiate electromobility and heat pump object + # instantiate electromobility, heat pump and dsm object self.electromobility = Electromobility(edisgo_obj=self) self.heat_pump = HeatPump() + self.dsm = DSM(edisgo_obj=self) # import new generators if kwargs.get("generator_scenario", None) is not None: diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py new file mode 100644 index 000000000..d470d6a17 --- /dev/null +++ b/edisgo/io/dsm_import.py @@ -0,0 +1,122 @@ +from __future__ import annotations + +import logging +import os + +from typing import TYPE_CHECKING + +import pandas as pd +import saio + +# from sqlalchemy import func +from sqlalchemy.engine.base import Engine + +from edisgo.io.egon_data_import import session_scope +from edisgo.tools.tools import mv_grid_gdf + +if "READTHEDOCS" not in os.environ: + import geopandas as gpd + +if TYPE_CHECKING: + from edisgo import EDisGo + +logger = logging.getLogger(__name__) + + +def dsm_from_database( + edisgo_obj: EDisGo, + engine: Engine, + scenario: str = "eGon2035", +): + saio.register_schema("grid", engine) + + from saio.grid import ( + egon_etrago_link, + egon_etrago_link_timeseries, + egon_hvmv_substation, + ) + + grid_gdf = mv_grid_gdf(edisgo_obj) + + with session_scope(engine) as session: + query = session.query( + egon_hvmv_substation.bus_id, + egon_hvmv_substation.point.label("geom"), + ) # TODO: wie muss die querry richtig lauten? + # .filter( + # func.ST_Within( + # grid_gdf.geometry.iat[0], + # egon_hvmv_substation.point, + # ) + # ) + + gdf = gpd.read_postgis( + sql=query.statement, con=query.session.bind, crs=grid_gdf.crs + ) + + bus_ids = gdf.loc[gdf.geometry.within(grid_gdf.geometry.iat[0])].bus_id + + if len(bus_ids) == 0: + raise ImportError( + f"There is no egon-data substation within the open_ego grid " + f"{edisgo_obj.topology.id}. Cannot import any DSM information." + ) + + # pick one randomly (if more than one) + bus_id = bus_ids.iat[0] + + with session_scope(engine) as session: + query = session.query(egon_etrago_link).filter( + egon_etrago_link.scn_name == "eGon2035", + egon_etrago_link.carrier == "dsm", + egon_etrago_link.bus0 == bus_id, + ) + + edisgo_obj.dsm.egon_etrago_link = pd.read_sql( + sql=query.statement, con=query.session.bind + ) + + link_id = edisgo_obj.dsm.egon_etrago_link.at[0, "link_id"] + + with session_scope(engine) as session: + query = session.query(egon_etrago_link_timeseries).filter( + egon_etrago_link_timeseries.scn_name == scenario, + egon_etrago_link_timeseries.link_id == link_id, + ) + + edisgo_obj.dsm.egon_etrago_link_timeseries = pd.read_sql( + sql=query.statement, con=query.session.bind + ) + + time_series_data = { + "p_min_pu": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_min_pu"], + "p_max_pu": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_max_pu"], + "p_set": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_set"], + } + + if time_series_data["p_set"] is None: + logger.warning( + "DSM time series for p_set is missing. Using the mean from p_min_pu and " + "p_max_pu as fallback." + ) + + time_series_data["p_set"] = [ + (p_min_pu + p_max_pu) / 2 + for p_min_pu, p_max_pu in zip( + time_series_data["p_min_pu"], time_series_data["p_max_pu"] + ) + ] + + if len(edisgo_obj.timeseries.timeindex) != len(time_series_data["p_min_pu"]): + raise IndexError( + f"The length of the time series of the edisgo object (" + f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" + f"{len(time_series_data['p_min_pu'])}) do not match. Adjust the length of " + f"the time series of the edisgo object accordingly." + ) + + edisgo_obj.dsm.grid_time_series = pd.DataFrame( + time_series_data, index=edisgo_obj.timeseries.timeindex + ) + + print("break") diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 00887ce25..6fa2d0c5b 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -1204,6 +1204,7 @@ def potential_charging_parks_from_database( mv_grid_id = edisgo_obj.topology.id srid = edisgo_obj.topology.grid_district["srid"] + # TODO: change to load charging parks that lay within the grid geometry? with session_scope(engine) as session: query = session.query(egon_emob_charging_infrastructure).filter( egon_emob_charging_infrastructure.mv_grid_id == mv_grid_id diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index abf02a700..dd4e8b44c 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -15,10 +15,9 @@ from edisgo.io.egon_data_import import select_geodataframe from edisgo.tools import session_scope from edisgo.tools.geo import proj2equidistant +from edisgo.tools.tools import mv_grid_gdf if "READTHEDOCS" not in os.environ: - import geopandas as gpd - from egoio.db_tables import model_draft, supply from shapely.ops import transform from shapely.wkt import loads as wkt_loads @@ -29,7 +28,7 @@ logger = logging.getLogger(__name__) -def oedb(edisgo_object, generator_scenario, **kwargs): +def oedb(edisgo_obj, generator_scenario, **kwargs): """ Gets generator park for specified scenario from oedb and integrates them into the grid. @@ -42,7 +41,7 @@ def oedb(edisgo_object, generator_scenario, **kwargs): Parameters ---------- - edisgo_object : :class:`~.EDisGo` + edisgo_obj : :class:`~.EDisGo` generator_scenario : str Scenario for which to retrieve generator data. Possible options are 'nep2035' and 'ego100'. @@ -109,8 +108,7 @@ def _import_conv_generators(session): ).label("geom"), ) .filter( - orm_conv_generators.columns.subst_id - == edisgo_object.topology.mv_grid.id + orm_conv_generators.columns.subst_id == edisgo_obj.topology.mv_grid.id ) .filter(orm_conv_generators.columns.voltage_level.in_([4, 5])) .filter(orm_conv_generators_version) @@ -159,7 +157,7 @@ def _import_res_generators(session): ).label("geom_em"), ) .filter( - orm_re_generators.columns.subst_id == edisgo_object.topology.mv_grid.id + orm_re_generators.columns.subst_id == edisgo_obj.topology.mv_grid.id ) .filter(orm_re_generators_version) ) @@ -211,7 +209,7 @@ def _validate_generation(): + generators_conv_mv["p_nom"].sum() ) - capacity_grid = edisgo_object.topology.generators_df.p_nom.sum() + capacity_grid = edisgo_obj.topology.generators_df.p_nom.sum() logger.debug( f"Cumulative generator capacity (updated): {round(capacity_imported, 1)} MW" @@ -265,7 +263,7 @@ def _validate_sample_geno_location(): # get geom of MV grid district mvgd_geom_shp = transform( projection, - edisgo_object.topology.grid_district["geom"], + edisgo_obj.topology.grid_district["geom"], ) # check if MVGD contains geno @@ -279,19 +277,19 @@ def _validate_sample_geno_location(): "datasets." ) - oedb_data_source = edisgo_object.config["data_source"]["oedb_data_source"] - srid = edisgo_object.topology.grid_district["srid"] + oedb_data_source = edisgo_obj.config["data_source"]["oedb_data_source"] + srid = edisgo_obj.topology.grid_district["srid"] # load ORM names orm_conv_generators_name = ( - edisgo_object.config[oedb_data_source]["conv_generators_prefix"] + edisgo_obj.config[oedb_data_source]["conv_generators_prefix"] + generator_scenario - + edisgo_object.config[oedb_data_source]["conv_generators_suffix"] + + edisgo_obj.config[oedb_data_source]["conv_generators_suffix"] ) orm_re_generators_name = ( - edisgo_object.config[oedb_data_source]["re_generators_prefix"] + edisgo_obj.config[oedb_data_source]["re_generators_prefix"] + generator_scenario - + edisgo_object.config[oedb_data_source]["re_generators_suffix"] + + edisgo_obj.config[oedb_data_source]["re_generators_suffix"] ) if oedb_data_source == "model_draft": @@ -306,7 +304,7 @@ def _validate_sample_geno_location(): elif oedb_data_source == "versioned": - data_version = edisgo_object.config["versioned"]["version"] + data_version = edisgo_obj.config["versioned"]["version"] # import ORMs orm_conv_generators = supply.__getattribute__(orm_conv_generators_name) @@ -334,7 +332,7 @@ def _validate_sample_geno_location(): _validate_sample_geno_location() _update_grids( - edisgo_object=edisgo_object, + edisgo_obj=edisgo_obj, imported_generators_mv=generators_mv, imported_generators_lv=generators_res_lv, **kwargs, @@ -345,7 +343,7 @@ def _validate_sample_geno_location(): def _update_grids( - edisgo_object, + edisgo_obj, imported_generators_mv, imported_generators_lv, remove_decommissioned=True, @@ -368,7 +366,7 @@ def _update_grids( Parameters ---------- - edisgo_object : :class:`~.EDisGo` + edisgo_obj : :class:`~.EDisGo` imported_generators_mv : :pandas:`pandas.DataFrame` Dataframe containing all MV generators. Index of the dataframe are the generator IDs. @@ -454,7 +452,7 @@ def _check_mv_generator_geom(generator_data): logger.debug(f"{len(imported_gens)} generators imported.") # get existing generators and append ID column - existing_gens = edisgo_object.topology.generators_df + existing_gens = edisgo_obj.topology.generators_df existing_gens["id"] = list( map(lambda _: int(_.split("_")[-1]), existing_gens.index) ) @@ -471,7 +469,7 @@ def _check_mv_generator_geom(generator_data): # remove from topology (if generator exists) if id in existing_gens.id.values: gen_name = existing_gens[existing_gens.id == id].index[0] - edisgo_object.topology.remove_generator(gen_name) + edisgo_obj.topology.remove_generator(gen_name) logger.warning( "Capacity of generator {} is <= 0, it is therefore " "removed. Check your data source.".format(gen_name) @@ -506,7 +504,7 @@ def _check_mv_generator_geom(generator_data): ] for id, row in gens_to_update_cap.iterrows(): - edisgo_object.topology._generators_df.loc[id, "p_nom"] = imported_gens.loc[ + edisgo_obj.topology._generators_df.loc[id, "p_nom"] = imported_gens.loc[ row["id"], "p_nom" ] @@ -531,7 +529,7 @@ def _check_mv_generator_geom(generator_data): if not decommissioned_gens.empty and remove_decommissioned: for gen in decommissioned_gens.index: - edisgo_object.topology.remove_generator(gen) + edisgo_obj.topology.remove_generator(gen) log_geno_cap = decommissioned_gens.p_nom.sum() log_geno_count = len(decommissioned_gens) logger.debug( @@ -626,7 +624,7 @@ def drop_generators(generator_list, gen_type, total_capacity): drop_generators(imported_gens, gen_type, required_expansion) new_gens = pd.concat([new_gens_lv, new_gens_mv], sort=True) - update_imported_gens(edisgo_object.topology.generators_df.index, new_gens) + update_imported_gens(edisgo_obj.topology.generators_df.index, new_gens) # drop types not in p_target from new_gens for gen_type in new_gens.generator_type.unique(): @@ -651,9 +649,7 @@ def drop_generators(generator_list, gen_type, total_capacity): new_gens_mv.drop(id) continue new_gens_mv.at[id, "geom"] = geom - edisgo_object.topology.connect_to_mv( - edisgo_object, dict(new_gens_mv.loc[id, :]) - ) + edisgo_obj.topology.connect_to_mv(edisgo_obj, dict(new_gens_mv.loc[id, :])) log_geno_count = len(new_gens_mv) log_geno_cap = new_gens_mv["p_nom"].sum() @@ -669,7 +665,7 @@ def drop_generators(generator_list, gen_type, total_capacity): # check if new generators can be allocated to an existing LV grid if not imported_generators_lv.empty: - grid_ids = edisgo_object.topology._lv_grid_ids + grid_ids = edisgo_obj.topology._lv_grid_ids if not any( [ int(_) in grid_ids @@ -685,17 +681,17 @@ def drop_generators(generator_list, gen_type, total_capacity): # iterate over new generators and create them for id in new_gens_lv.index.sort_values(ascending=True): - edisgo_object.topology.connect_to_lv( - edisgo_object, + edisgo_obj.topology.connect_to_lv( + edisgo_obj, dict(new_gens_lv.loc[id, :]), allowed_number_of_comp_per_bus=allowed_number_of_comp_per_lv_bus, ) def scale_generators(gen_type, total_capacity): - idx = edisgo_object.topology.generators_df["type"] == gen_type - current_capacity = edisgo_object.topology.generators_df[idx].p_nom.sum() + idx = edisgo_obj.topology.generators_df["type"] == gen_type + current_capacity = edisgo_obj.topology.generators_df[idx].p_nom.sum() if current_capacity != 0: - edisgo_object.topology.generators_df.loc[idx, "p_nom"] *= ( + edisgo_obj.topology.generators_df.loc[idx, "p_nom"] *= ( total_capacity / current_capacity ) @@ -711,7 +707,7 @@ def scale_generators(gen_type, total_capacity): ) ) - for lv_grid in edisgo_object.topology.mv_grid.lv_grids: + for lv_grid in edisgo_obj.topology.mv_grid.lv_grids: lv_loads = len(lv_grid.loads_df) lv_gens_voltage_level_7 = len( lv_grid.generators_df[lv_grid.generators_df.bus != lv_grid.station.index[0]] @@ -727,7 +723,7 @@ def scale_generators(gen_type, total_capacity): def generators_from_database( - edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" + edisgo_obj: EDisGo, engine: Engine, scenario: str = "eGon2035" ): """ TODO @@ -736,7 +732,7 @@ def generators_from_database( fluctuating = ["wind_onshore", "solar"] firm = ["others", "gas", "oil", "biomass", "run_of_river", "reservoir"] - srid = edisgo_object.topology.grid_district["srid"] + srid = edisgo_obj.topology.grid_district["srid"] sql = """ SELECT * FROM supply.egon_power_plants @@ -744,9 +740,7 @@ def generators_from_database( AND carrier IN ({}) """ - grid_gdf = gpd.GeoDataFrame( - geometry=[edisgo_object.topology.grid_district["geom"]], crs=f"EPSG:{srid}" - ) + grid_gdf = mv_grid_gdf(edisgo_obj) # 1. firm egon_power_plants firm_gdf = select_geodataframe( diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py new file mode 100644 index 000000000..14babe7a6 --- /dev/null +++ b/edisgo/network/dsm.py @@ -0,0 +1,36 @@ +from __future__ import annotations + +import logging + +import pandas as pd + +logger = logging.getLogger(__name__) + + +class DSM: + def __init__(self, **kwargs): + self._edisgo_obj = kwargs.get("edisgo_obj") + + @property + def egon_etrago_link(self): + return self._egon_etrago_link + + @egon_etrago_link.setter + def egon_etrago_link(self, df: pd.DataFrame): + self._egon_etrago_link = df + + @property + def egon_etrago_link_timeseries(self): + return self._egon_etrago_link_timeseries + + @egon_etrago_link_timeseries.setter + def egon_etrago_link_timeseries(self, df: pd.DataFrame): + self._egon_etrago_link_timeseries = df + + @property + def grid_time_series(self): + return self._grid_time_series + + @grid_time_series.setter + def grid_time_series(self, df: pd.DataFrame): + self._grid_time_series = df diff --git a/edisgo/network/electromobility.py b/edisgo/network/electromobility.py index bc65157a4..d1b27acba 100644 --- a/edisgo/network/electromobility.py +++ b/edisgo/network/electromobility.py @@ -75,7 +75,7 @@ class Electromobility: """ def __init__(self, **kwargs): - self._edisgo_obj = kwargs.get("edisgo_obj", None) + self._edisgo_obj = kwargs.get("edisgo_obj") @property def charging_processes_df(self): diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index 6a063db73..8610d5e25 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -1,7 +1,10 @@ +from __future__ import annotations + import logging import os from math import pi, sqrt +from typing import TYPE_CHECKING import networkx as nx import numpy as np @@ -20,6 +23,9 @@ from shapely.geometry.multipolygon import MultiPolygon from shapely.wkt import loads as wkt_loads +if TYPE_CHECKING: + from edisgo import EDisGo + logger = logging.getLogger(__name__) @@ -631,3 +637,10 @@ def add_line_susceptance( ) return edisgo_obj + + +def mv_grid_gdf(edisgo_obj: EDisGo): + return gpd.GeoDataFrame( + geometry=[edisgo_obj.topology.grid_district["geom"]], + crs=f"EPSG:{edisgo_obj.topology.grid_district['srid']}", + ) From 222ca6d1da4185e498efedd904d1f89798b039ea Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Wed, 2 Nov 2022 15:52:24 +0100 Subject: [PATCH 032/355] added basic dsm structure and import --- edisgo/io/dsm_import.py | 38 ++++++++++++++++++++++++++++++++++++-- edisgo/network/dsm.py | 34 +++++++++++++++++++++++++++++----- 2 files changed, 65 insertions(+), 7 deletions(-) diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index d470d6a17..0e2ed87fc 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -33,6 +33,8 @@ def dsm_from_database( from saio.grid import ( egon_etrago_link, egon_etrago_link_timeseries, + egon_etrago_store, + egon_etrago_store_timeseries, egon_hvmv_substation, ) @@ -77,6 +79,7 @@ def dsm_from_database( ) link_id = edisgo_obj.dsm.egon_etrago_link.at[0, "link_id"] + store_bus_id = edisgo_obj.dsm.egon_etrago_link.at[0, "bus1"] with session_scope(engine) as session: query = session.query(egon_etrago_link_timeseries).filter( @@ -115,8 +118,39 @@ def dsm_from_database( f"the time series of the edisgo object accordingly." ) - edisgo_obj.dsm.grid_time_series = pd.DataFrame( + edisgo_obj.dsm.dsm_time_series = pd.DataFrame( time_series_data, index=edisgo_obj.timeseries.timeindex ) - print("break") + with session_scope(engine) as session: + query = session.query(egon_etrago_store).filter( + egon_etrago_store.scn_name == scenario, + egon_etrago_store.carrier == "dsm", + egon_etrago_store.bus == store_bus_id, + ) + + edisgo_obj.dsm.egon_etrago_store = pd.read_sql( + sql=query.statement, con=query.session.bind + ) + + store_id = edisgo_obj.dsm.egon_etrago_store.at[0, "store_id"] + e_nom = edisgo_obj.dsm.egon_etrago_store.at[0, "e_nom"] + + with session_scope(engine) as session: + query = session.query(egon_etrago_store_timeseries).filter( + egon_etrago_store_timeseries.scn_name == scenario, + egon_etrago_store_timeseries.store_id == store_id, + ) + + edisgo_obj.dsm.egon_etrago_store_timeseries = pd.read_sql( + sql=query.statement, con=query.session.bind + ) + + time_series_data = { + "e_min": edisgo_obj.dsm.egon_etrago_store_timeseries.at[0, "e_min_pu"], + "e_max": edisgo_obj.dsm.egon_etrago_store_timeseries.at[0, "e_max_pu"], + } + + edisgo_obj.dsm.store_time_series = pd.DataFrame( + time_series_data, index=edisgo_obj.timeseries.timeindex + ).mul(e_nom) diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py index 14babe7a6..bcdcd7d1a 100644 --- a/edisgo/network/dsm.py +++ b/edisgo/network/dsm.py @@ -28,9 +28,33 @@ def egon_etrago_link_timeseries(self, df: pd.DataFrame): self._egon_etrago_link_timeseries = df @property - def grid_time_series(self): - return self._grid_time_series + def dsm_time_series(self): + return self._dsm_time_series - @grid_time_series.setter - def grid_time_series(self, df: pd.DataFrame): - self._grid_time_series = df + @dsm_time_series.setter + def dsm_time_series(self, df: pd.DataFrame): + self._dsm_time_series = df + + @property + def egon_etrago_store(self): + return self._egon_etrago_store + + @egon_etrago_store.setter + def egon_etrago_store(self, df: pd.DataFrame): + self._egon_etrago_store = df + + @property + def egon_etrago_store_timeseries(self): + return self._egon_etrago_store_timeseries + + @egon_etrago_store_timeseries.setter + def egon_etrago_store_timeseries(self, df: pd.DataFrame): + self._egon_etrago_store_timeseries = df + + @property + def store_time_series(self): + return self._store_time_series + + @store_time_series.setter + def store_time_series(self, df: pd.DataFrame): + self._store_time_series = df From eedc5176ce815679a38134c03339869778e5f26d Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Thu, 3 Nov 2022 07:46:28 +0100 Subject: [PATCH 033/355] rollback changes --- edisgo/io/generators_import.py | 67 ++++++++++++++++++---------------- 1 file changed, 35 insertions(+), 32 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index dd4e8b44c..7daf6c139 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -28,7 +28,7 @@ logger = logging.getLogger(__name__) -def oedb(edisgo_obj, generator_scenario, **kwargs): +def oedb(edisgo_object, generator_scenario, **kwargs): """ Gets generator park for specified scenario from oedb and integrates them into the grid. @@ -41,7 +41,7 @@ def oedb(edisgo_obj, generator_scenario, **kwargs): Parameters ---------- - edisgo_obj : :class:`~.EDisGo` + edisgo_object : :class:`~.EDisGo` generator_scenario : str Scenario for which to retrieve generator data. Possible options are 'nep2035' and 'ego100'. @@ -108,7 +108,8 @@ def _import_conv_generators(session): ).label("geom"), ) .filter( - orm_conv_generators.columns.subst_id == edisgo_obj.topology.mv_grid.id + orm_conv_generators.columns.subst_id + == edisgo_object.topology.mv_grid.id ) .filter(orm_conv_generators.columns.voltage_level.in_([4, 5])) .filter(orm_conv_generators_version) @@ -157,7 +158,7 @@ def _import_res_generators(session): ).label("geom_em"), ) .filter( - orm_re_generators.columns.subst_id == edisgo_obj.topology.mv_grid.id + orm_re_generators.columns.subst_id == edisgo_object.topology.mv_grid.id ) .filter(orm_re_generators_version) ) @@ -209,7 +210,7 @@ def _validate_generation(): + generators_conv_mv["p_nom"].sum() ) - capacity_grid = edisgo_obj.topology.generators_df.p_nom.sum() + capacity_grid = edisgo_object.topology.generators_df.p_nom.sum() logger.debug( f"Cumulative generator capacity (updated): {round(capacity_imported, 1)} MW" @@ -263,7 +264,7 @@ def _validate_sample_geno_location(): # get geom of MV grid district mvgd_geom_shp = transform( projection, - edisgo_obj.topology.grid_district["geom"], + edisgo_object.topology.grid_district["geom"], ) # check if MVGD contains geno @@ -277,19 +278,19 @@ def _validate_sample_geno_location(): "datasets." ) - oedb_data_source = edisgo_obj.config["data_source"]["oedb_data_source"] - srid = edisgo_obj.topology.grid_district["srid"] + oedb_data_source = edisgo_object.config["data_source"]["oedb_data_source"] + srid = edisgo_object.topology.grid_district["srid"] # load ORM names orm_conv_generators_name = ( - edisgo_obj.config[oedb_data_source]["conv_generators_prefix"] + edisgo_object.config[oedb_data_source]["conv_generators_prefix"] + generator_scenario - + edisgo_obj.config[oedb_data_source]["conv_generators_suffix"] + + edisgo_object.config[oedb_data_source]["conv_generators_suffix"] ) orm_re_generators_name = ( - edisgo_obj.config[oedb_data_source]["re_generators_prefix"] + edisgo_object.config[oedb_data_source]["re_generators_prefix"] + generator_scenario - + edisgo_obj.config[oedb_data_source]["re_generators_suffix"] + + edisgo_object.config[oedb_data_source]["re_generators_suffix"] ) if oedb_data_source == "model_draft": @@ -304,7 +305,7 @@ def _validate_sample_geno_location(): elif oedb_data_source == "versioned": - data_version = edisgo_obj.config["versioned"]["version"] + data_version = edisgo_object.config["versioned"]["version"] # import ORMs orm_conv_generators = supply.__getattribute__(orm_conv_generators_name) @@ -332,7 +333,7 @@ def _validate_sample_geno_location(): _validate_sample_geno_location() _update_grids( - edisgo_obj=edisgo_obj, + edisgo_object=edisgo_object, imported_generators_mv=generators_mv, imported_generators_lv=generators_res_lv, **kwargs, @@ -343,7 +344,7 @@ def _validate_sample_geno_location(): def _update_grids( - edisgo_obj, + edisgo_object, imported_generators_mv, imported_generators_lv, remove_decommissioned=True, @@ -366,7 +367,7 @@ def _update_grids( Parameters ---------- - edisgo_obj : :class:`~.EDisGo` + edisgo_object : :class:`~.EDisGo` imported_generators_mv : :pandas:`pandas.DataFrame` Dataframe containing all MV generators. Index of the dataframe are the generator IDs. @@ -452,7 +453,7 @@ def _check_mv_generator_geom(generator_data): logger.debug(f"{len(imported_gens)} generators imported.") # get existing generators and append ID column - existing_gens = edisgo_obj.topology.generators_df + existing_gens = edisgo_object.topology.generators_df existing_gens["id"] = list( map(lambda _: int(_.split("_")[-1]), existing_gens.index) ) @@ -469,7 +470,7 @@ def _check_mv_generator_geom(generator_data): # remove from topology (if generator exists) if id in existing_gens.id.values: gen_name = existing_gens[existing_gens.id == id].index[0] - edisgo_obj.topology.remove_generator(gen_name) + edisgo_object.topology.remove_generator(gen_name) logger.warning( "Capacity of generator {} is <= 0, it is therefore " "removed. Check your data source.".format(gen_name) @@ -504,7 +505,7 @@ def _check_mv_generator_geom(generator_data): ] for id, row in gens_to_update_cap.iterrows(): - edisgo_obj.topology._generators_df.loc[id, "p_nom"] = imported_gens.loc[ + edisgo_object.topology._generators_df.loc[id, "p_nom"] = imported_gens.loc[ row["id"], "p_nom" ] @@ -529,7 +530,7 @@ def _check_mv_generator_geom(generator_data): if not decommissioned_gens.empty and remove_decommissioned: for gen in decommissioned_gens.index: - edisgo_obj.topology.remove_generator(gen) + edisgo_object.topology.remove_generator(gen) log_geno_cap = decommissioned_gens.p_nom.sum() log_geno_count = len(decommissioned_gens) logger.debug( @@ -624,7 +625,7 @@ def drop_generators(generator_list, gen_type, total_capacity): drop_generators(imported_gens, gen_type, required_expansion) new_gens = pd.concat([new_gens_lv, new_gens_mv], sort=True) - update_imported_gens(edisgo_obj.topology.generators_df.index, new_gens) + update_imported_gens(edisgo_object.topology.generators_df.index, new_gens) # drop types not in p_target from new_gens for gen_type in new_gens.generator_type.unique(): @@ -649,7 +650,9 @@ def drop_generators(generator_list, gen_type, total_capacity): new_gens_mv.drop(id) continue new_gens_mv.at[id, "geom"] = geom - edisgo_obj.topology.connect_to_mv(edisgo_obj, dict(new_gens_mv.loc[id, :])) + edisgo_object.topology.connect_to_mv( + edisgo_object, dict(new_gens_mv.loc[id, :]) + ) log_geno_count = len(new_gens_mv) log_geno_cap = new_gens_mv["p_nom"].sum() @@ -665,7 +668,7 @@ def drop_generators(generator_list, gen_type, total_capacity): # check if new generators can be allocated to an existing LV grid if not imported_generators_lv.empty: - grid_ids = edisgo_obj.topology._lv_grid_ids + grid_ids = edisgo_object.topology._lv_grid_ids if not any( [ int(_) in grid_ids @@ -681,17 +684,17 @@ def drop_generators(generator_list, gen_type, total_capacity): # iterate over new generators and create them for id in new_gens_lv.index.sort_values(ascending=True): - edisgo_obj.topology.connect_to_lv( - edisgo_obj, + edisgo_object.topology.connect_to_lv( + edisgo_object, dict(new_gens_lv.loc[id, :]), allowed_number_of_comp_per_bus=allowed_number_of_comp_per_lv_bus, ) def scale_generators(gen_type, total_capacity): - idx = edisgo_obj.topology.generators_df["type"] == gen_type - current_capacity = edisgo_obj.topology.generators_df[idx].p_nom.sum() + idx = edisgo_object.topology.generators_df["type"] == gen_type + current_capacity = edisgo_object.topology.generators_df[idx].p_nom.sum() if current_capacity != 0: - edisgo_obj.topology.generators_df.loc[idx, "p_nom"] *= ( + edisgo_object.topology.generators_df.loc[idx, "p_nom"] *= ( total_capacity / current_capacity ) @@ -707,7 +710,7 @@ def scale_generators(gen_type, total_capacity): ) ) - for lv_grid in edisgo_obj.topology.mv_grid.lv_grids: + for lv_grid in edisgo_object.topology.mv_grid.lv_grids: lv_loads = len(lv_grid.loads_df) lv_gens_voltage_level_7 = len( lv_grid.generators_df[lv_grid.generators_df.bus != lv_grid.station.index[0]] @@ -723,7 +726,7 @@ def scale_generators(gen_type, total_capacity): def generators_from_database( - edisgo_obj: EDisGo, engine: Engine, scenario: str = "eGon2035" + edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" ): """ TODO @@ -732,7 +735,7 @@ def generators_from_database( fluctuating = ["wind_onshore", "solar"] firm = ["others", "gas", "oil", "biomass", "run_of_river", "reservoir"] - srid = edisgo_obj.topology.grid_district["srid"] + srid = edisgo_object.topology.grid_district["srid"] sql = """ SELECT * FROM supply.egon_power_plants @@ -740,7 +743,7 @@ def generators_from_database( AND carrier IN ({}) """ - grid_gdf = mv_grid_gdf(edisgo_obj) + grid_gdf = mv_grid_gdf(edisgo_object) # 1. firm egon_power_plants firm_gdf = select_geodataframe( From 3ed88de8ba16403571cf175fb4ac8cb0ff45c1c7 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Thu, 3 Nov 2022 08:03:46 +0100 Subject: [PATCH 034/355] added wrapper function --- edisgo/edisgo.py | 4 ++++ edisgo/io/dsm_import.py | 17 +++++++++-------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 57595f7e7..2e896c3a6 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -21,6 +21,7 @@ from edisgo.flex_opt.reinforce_grid import reinforce_grid from edisgo.io import pypsa_io from edisgo.io.ding0_import import import_ding0_grid +from edisgo.io.dsm_import import dsm_from_database from edisgo.io.electromobility_import import ( distribute_charging_demand, import_electromobility, @@ -1686,6 +1687,9 @@ def import_heat_pumps(self, scenario=None, **kwargs): # ) # self.heat_pump.set_cop(self, "oedb", heat_pump_names=integrated_heat_pumps) + def import_dsm(self, engine: Engine, scenario: str = "eGon2035"): + dsm_from_database(edisgo_obj=self, engine=engine, scenario=scenario) + def apply_heat_pump_operating_strategy( self, strategy="uncontrolled", heat_pump_names=None, **kwargs ): diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index 0e2ed87fc..733951e5c 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -80,6 +80,7 @@ def dsm_from_database( link_id = edisgo_obj.dsm.egon_etrago_link.at[0, "link_id"] store_bus_id = edisgo_obj.dsm.egon_etrago_link.at[0, "bus1"] + p_nom = edisgo_obj.dsm.egon_etrago_link.at[0, "p_nom"] with session_scope(engine) as session: query = session.query(egon_etrago_link_timeseries).filter( @@ -92,8 +93,8 @@ def dsm_from_database( ) time_series_data = { - "p_min_pu": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_min_pu"], - "p_max_pu": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_max_pu"], + "p_min": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_min_pu"], + "p_max": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_max_pu"], "p_set": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_set"], } @@ -104,23 +105,23 @@ def dsm_from_database( ) time_series_data["p_set"] = [ - (p_min_pu + p_max_pu) / 2 - for p_min_pu, p_max_pu in zip( - time_series_data["p_min_pu"], time_series_data["p_max_pu"] + (p_min + p_max) / 2 + for p_min, p_max in zip( + time_series_data["p_min"], time_series_data["p_max"] ) ] - if len(edisgo_obj.timeseries.timeindex) != len(time_series_data["p_min_pu"]): + if len(edisgo_obj.timeseries.timeindex) != len(time_series_data["p_min"]): raise IndexError( f"The length of the time series of the edisgo object (" f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" - f"{len(time_series_data['p_min_pu'])}) do not match. Adjust the length of " + f"{len(time_series_data['p_min'])}) do not match. Adjust the length of " f"the time series of the edisgo object accordingly." ) edisgo_obj.dsm.dsm_time_series = pd.DataFrame( time_series_data, index=edisgo_obj.timeseries.timeindex - ) + ).mul(p_nom) with session_scope(engine) as session: query = session.query(egon_etrago_store).filter( From 20cd2910fba1a09546b1ed329d5408ff09bf7bf8 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Thu, 3 Nov 2022 09:33:45 +0100 Subject: [PATCH 035/355] changed structure --- edisgo/io/dsm_import.py | 66 ++++++++++++++++++++--------------------- edisgo/network/dsm.py | 42 ++++++++++++++++++-------- 2 files changed, 61 insertions(+), 47 deletions(-) diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index 733951e5c..d879d453c 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -92,36 +92,24 @@ def dsm_from_database( sql=query.statement, con=query.session.bind ) - time_series_data = { - "p_min": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_min_pu"], - "p_max": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_max_pu"], - "p_set": edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, "p_set"], - } - - if time_series_data["p_set"] is None: - logger.warning( - "DSM time series for p_set is missing. Using the mean from p_min_pu and " - "p_max_pu as fallback." - ) + for p in ["p_min_pu", "p_max_pu"]: + name = "_".join(p.split("_")[:-1]) + + data = {name: edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, p]} - time_series_data["p_set"] = [ - (p_min + p_max) / 2 - for p_min, p_max in zip( - time_series_data["p_min"], time_series_data["p_max"] + if len(edisgo_obj.timeseries.timeindex) != len(data[name]): + raise IndexError( + f"The length of the time series of the edisgo object (" + f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" + f"{len(data[name])}) do not match. Adjust the length of " + f"the time series of the edisgo object accordingly." ) - ] - - if len(edisgo_obj.timeseries.timeindex) != len(time_series_data["p_min"]): - raise IndexError( - f"The length of the time series of the edisgo object (" - f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" - f"{len(time_series_data['p_min'])}) do not match. Adjust the length of " - f"the time series of the edisgo object accordingly." - ) - edisgo_obj.dsm.dsm_time_series = pd.DataFrame( - time_series_data, index=edisgo_obj.timeseries.timeindex - ).mul(p_nom) + setattr( + edisgo_obj.dsm, + name, + pd.DataFrame(data, index=edisgo_obj.timeseries.timeindex).mul(p_nom), + ) with session_scope(engine) as session: query = session.query(egon_etrago_store).filter( @@ -147,11 +135,21 @@ def dsm_from_database( sql=query.statement, con=query.session.bind ) - time_series_data = { - "e_min": edisgo_obj.dsm.egon_etrago_store_timeseries.at[0, "e_min_pu"], - "e_max": edisgo_obj.dsm.egon_etrago_store_timeseries.at[0, "e_max_pu"], - } + for e in ["e_min_pu", "e_max_pu"]: + name = "_".join(e.split("_")[:-1]) - edisgo_obj.dsm.store_time_series = pd.DataFrame( - time_series_data, index=edisgo_obj.timeseries.timeindex - ).mul(e_nom) + data = {name: edisgo_obj.dsm.egon_etrago_store_timeseries.at[0, e]} + + if len(edisgo_obj.timeseries.timeindex) != len(data[name]): + raise IndexError( + f"The length of the time series of the edisgo object (" + f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" + f"{len(data[name])}) do not match. Adjust the length of " + f"the time series of the edisgo object accordingly." + ) + + setattr( + edisgo_obj.dsm, + name, + pd.DataFrame(data, index=edisgo_obj.timeseries.timeindex).mul(e_nom), + ) diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py index bcdcd7d1a..eb23f441f 100644 --- a/edisgo/network/dsm.py +++ b/edisgo/network/dsm.py @@ -27,14 +27,6 @@ def egon_etrago_link_timeseries(self): def egon_etrago_link_timeseries(self, df: pd.DataFrame): self._egon_etrago_link_timeseries = df - @property - def dsm_time_series(self): - return self._dsm_time_series - - @dsm_time_series.setter - def dsm_time_series(self, df: pd.DataFrame): - self._dsm_time_series = df - @property def egon_etrago_store(self): return self._egon_etrago_store @@ -52,9 +44,33 @@ def egon_etrago_store_timeseries(self, df: pd.DataFrame): self._egon_etrago_store_timeseries = df @property - def store_time_series(self): - return self._store_time_series + def p_min(self): + return self._p_min + + @p_min.setter + def p_min(self, df: pd.DataFrame): + self._p_min = df + + @property + def p_max(self): + return self._p_max + + @p_max.setter + def p_max(self, df: pd.DataFrame): + self._p_max = df + + @property + def e_min(self): + return self._e_min + + @e_min.setter + def e_min(self, df: pd.DataFrame): + self._e_min = df + + @property + def e_max(self): + return self._e_max - @store_time_series.setter - def store_time_series(self, df: pd.DataFrame): - self._store_time_series = df + @e_max.setter + def e_max(self, df: pd.DataFrame): + self._e_max = df From fd3e63dd6e098f1c9ce140fece554bb0d67f2d6a Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Thu, 3 Nov 2022 10:43:25 +0100 Subject: [PATCH 036/355] minor change --- edisgo/io/dsm_import.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index d879d453c..2610f4cce 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -8,7 +8,6 @@ import pandas as pd import saio -# from sqlalchemy import func from sqlalchemy.engine.base import Engine from edisgo.io.egon_data_import import session_scope @@ -44,13 +43,7 @@ def dsm_from_database( query = session.query( egon_hvmv_substation.bus_id, egon_hvmv_substation.point.label("geom"), - ) # TODO: wie muss die querry richtig lauten? - # .filter( - # func.ST_Within( - # grid_gdf.geometry.iat[0], - # egon_hvmv_substation.point, - # ) - # ) + ) gdf = gpd.read_postgis( sql=query.statement, con=query.session.bind, crs=grid_gdf.crs From 2c4ab3569d042fe39a79318bf9f1e3f10de1239c Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein <46815982+khelfen@users.noreply.github.com> Date: Thu, 3 Nov 2022 10:48:43 +0100 Subject: [PATCH 037/355] Features/#323 dsm class (#327) * added basic dsm structure and import * added wrapper function --- edisgo/edisgo.py | 8 +- edisgo/io/dsm_import.py | 148 ++++++++++++++++++++++++++++ edisgo/io/electromobility_import.py | 1 + edisgo/io/generators_import.py | 9 +- edisgo/network/dsm.py | 76 ++++++++++++++ edisgo/network/electromobility.py | 2 +- edisgo/tools/tools.py | 13 +++ 7 files changed, 249 insertions(+), 8 deletions(-) create mode 100644 edisgo/io/dsm_import.py create mode 100644 edisgo/network/dsm.py diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 86fefbfbe..2e896c3a6 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -21,6 +21,7 @@ from edisgo.flex_opt.reinforce_grid import reinforce_grid from edisgo.io import pypsa_io from edisgo.io.ding0_import import import_ding0_grid +from edisgo.io.dsm_import import dsm_from_database from edisgo.io.electromobility_import import ( distribute_charging_demand, import_electromobility, @@ -31,6 +32,7 @@ # from edisgo.io.heat_pump_import import oedb as import_heat_pumps_oedb from edisgo.network import timeseries +from edisgo.network.dsm import DSM from edisgo.network.electromobility import Electromobility from edisgo.network.heat import HeatPump from edisgo.network.results import Results @@ -151,9 +153,10 @@ def __init__(self, **kwargs): timeindex=kwargs.get("timeindex", pd.DatetimeIndex([])) ) - # instantiate electromobility and heat pump object + # instantiate electromobility, heat pump and dsm object self.electromobility = Electromobility(edisgo_obj=self) self.heat_pump = HeatPump() + self.dsm = DSM(edisgo_obj=self) # import new generators if kwargs.get("generator_scenario", None) is not None: @@ -1684,6 +1687,9 @@ def import_heat_pumps(self, scenario=None, **kwargs): # ) # self.heat_pump.set_cop(self, "oedb", heat_pump_names=integrated_heat_pumps) + def import_dsm(self, engine: Engine, scenario: str = "eGon2035"): + dsm_from_database(edisgo_obj=self, engine=engine, scenario=scenario) + def apply_heat_pump_operating_strategy( self, strategy="uncontrolled", heat_pump_names=None, **kwargs ): diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py new file mode 100644 index 000000000..2610f4cce --- /dev/null +++ b/edisgo/io/dsm_import.py @@ -0,0 +1,148 @@ +from __future__ import annotations + +import logging +import os + +from typing import TYPE_CHECKING + +import pandas as pd +import saio + +from sqlalchemy.engine.base import Engine + +from edisgo.io.egon_data_import import session_scope +from edisgo.tools.tools import mv_grid_gdf + +if "READTHEDOCS" not in os.environ: + import geopandas as gpd + +if TYPE_CHECKING: + from edisgo import EDisGo + +logger = logging.getLogger(__name__) + + +def dsm_from_database( + edisgo_obj: EDisGo, + engine: Engine, + scenario: str = "eGon2035", +): + saio.register_schema("grid", engine) + + from saio.grid import ( + egon_etrago_link, + egon_etrago_link_timeseries, + egon_etrago_store, + egon_etrago_store_timeseries, + egon_hvmv_substation, + ) + + grid_gdf = mv_grid_gdf(edisgo_obj) + + with session_scope(engine) as session: + query = session.query( + egon_hvmv_substation.bus_id, + egon_hvmv_substation.point.label("geom"), + ) + + gdf = gpd.read_postgis( + sql=query.statement, con=query.session.bind, crs=grid_gdf.crs + ) + + bus_ids = gdf.loc[gdf.geometry.within(grid_gdf.geometry.iat[0])].bus_id + + if len(bus_ids) == 0: + raise ImportError( + f"There is no egon-data substation within the open_ego grid " + f"{edisgo_obj.topology.id}. Cannot import any DSM information." + ) + + # pick one randomly (if more than one) + bus_id = bus_ids.iat[0] + + with session_scope(engine) as session: + query = session.query(egon_etrago_link).filter( + egon_etrago_link.scn_name == "eGon2035", + egon_etrago_link.carrier == "dsm", + egon_etrago_link.bus0 == bus_id, + ) + + edisgo_obj.dsm.egon_etrago_link = pd.read_sql( + sql=query.statement, con=query.session.bind + ) + + link_id = edisgo_obj.dsm.egon_etrago_link.at[0, "link_id"] + store_bus_id = edisgo_obj.dsm.egon_etrago_link.at[0, "bus1"] + p_nom = edisgo_obj.dsm.egon_etrago_link.at[0, "p_nom"] + + with session_scope(engine) as session: + query = session.query(egon_etrago_link_timeseries).filter( + egon_etrago_link_timeseries.scn_name == scenario, + egon_etrago_link_timeseries.link_id == link_id, + ) + + edisgo_obj.dsm.egon_etrago_link_timeseries = pd.read_sql( + sql=query.statement, con=query.session.bind + ) + + for p in ["p_min_pu", "p_max_pu"]: + name = "_".join(p.split("_")[:-1]) + + data = {name: edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, p]} + + if len(edisgo_obj.timeseries.timeindex) != len(data[name]): + raise IndexError( + f"The length of the time series of the edisgo object (" + f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" + f"{len(data[name])}) do not match. Adjust the length of " + f"the time series of the edisgo object accordingly." + ) + + setattr( + edisgo_obj.dsm, + name, + pd.DataFrame(data, index=edisgo_obj.timeseries.timeindex).mul(p_nom), + ) + + with session_scope(engine) as session: + query = session.query(egon_etrago_store).filter( + egon_etrago_store.scn_name == scenario, + egon_etrago_store.carrier == "dsm", + egon_etrago_store.bus == store_bus_id, + ) + + edisgo_obj.dsm.egon_etrago_store = pd.read_sql( + sql=query.statement, con=query.session.bind + ) + + store_id = edisgo_obj.dsm.egon_etrago_store.at[0, "store_id"] + e_nom = edisgo_obj.dsm.egon_etrago_store.at[0, "e_nom"] + + with session_scope(engine) as session: + query = session.query(egon_etrago_store_timeseries).filter( + egon_etrago_store_timeseries.scn_name == scenario, + egon_etrago_store_timeseries.store_id == store_id, + ) + + edisgo_obj.dsm.egon_etrago_store_timeseries = pd.read_sql( + sql=query.statement, con=query.session.bind + ) + + for e in ["e_min_pu", "e_max_pu"]: + name = "_".join(e.split("_")[:-1]) + + data = {name: edisgo_obj.dsm.egon_etrago_store_timeseries.at[0, e]} + + if len(edisgo_obj.timeseries.timeindex) != len(data[name]): + raise IndexError( + f"The length of the time series of the edisgo object (" + f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" + f"{len(data[name])}) do not match. Adjust the length of " + f"the time series of the edisgo object accordingly." + ) + + setattr( + edisgo_obj.dsm, + name, + pd.DataFrame(data, index=edisgo_obj.timeseries.timeindex).mul(e_nom), + ) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 00887ce25..6fa2d0c5b 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -1204,6 +1204,7 @@ def potential_charging_parks_from_database( mv_grid_id = edisgo_obj.topology.id srid = edisgo_obj.topology.grid_district["srid"] + # TODO: change to load charging parks that lay within the grid geometry? with session_scope(engine) as session: query = session.query(egon_emob_charging_infrastructure).filter( egon_emob_charging_infrastructure.mv_grid_id == mv_grid_id diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 7a0d0e431..7daf6c139 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -15,10 +15,9 @@ from edisgo.io.egon_data_import import select_geodataframe from edisgo.tools import session_scope from edisgo.tools.geo import proj2equidistant +from edisgo.tools.tools import mv_grid_gdf if "READTHEDOCS" not in os.environ: - import geopandas as gpd - from egoio.db_tables import model_draft, supply from shapely.ops import transform from shapely.wkt import loads as wkt_loads @@ -730,7 +729,7 @@ def generators_from_database( edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" ): """ - + TODO :return: """ fluctuating = ["wind_onshore", "solar"] @@ -744,9 +743,7 @@ def generators_from_database( AND carrier IN ({}) """ - grid_gdf = gpd.GeoDataFrame( - geometry=[edisgo_object.topology.grid_district["geom"]], crs=f"EPSG:{srid}" - ) + grid_gdf = mv_grid_gdf(edisgo_object) # 1. firm egon_power_plants firm_gdf = select_geodataframe( diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py new file mode 100644 index 000000000..eb23f441f --- /dev/null +++ b/edisgo/network/dsm.py @@ -0,0 +1,76 @@ +from __future__ import annotations + +import logging + +import pandas as pd + +logger = logging.getLogger(__name__) + + +class DSM: + def __init__(self, **kwargs): + self._edisgo_obj = kwargs.get("edisgo_obj") + + @property + def egon_etrago_link(self): + return self._egon_etrago_link + + @egon_etrago_link.setter + def egon_etrago_link(self, df: pd.DataFrame): + self._egon_etrago_link = df + + @property + def egon_etrago_link_timeseries(self): + return self._egon_etrago_link_timeseries + + @egon_etrago_link_timeseries.setter + def egon_etrago_link_timeseries(self, df: pd.DataFrame): + self._egon_etrago_link_timeseries = df + + @property + def egon_etrago_store(self): + return self._egon_etrago_store + + @egon_etrago_store.setter + def egon_etrago_store(self, df: pd.DataFrame): + self._egon_etrago_store = df + + @property + def egon_etrago_store_timeseries(self): + return self._egon_etrago_store_timeseries + + @egon_etrago_store_timeseries.setter + def egon_etrago_store_timeseries(self, df: pd.DataFrame): + self._egon_etrago_store_timeseries = df + + @property + def p_min(self): + return self._p_min + + @p_min.setter + def p_min(self, df: pd.DataFrame): + self._p_min = df + + @property + def p_max(self): + return self._p_max + + @p_max.setter + def p_max(self, df: pd.DataFrame): + self._p_max = df + + @property + def e_min(self): + return self._e_min + + @e_min.setter + def e_min(self, df: pd.DataFrame): + self._e_min = df + + @property + def e_max(self): + return self._e_max + + @e_max.setter + def e_max(self, df: pd.DataFrame): + self._e_max = df diff --git a/edisgo/network/electromobility.py b/edisgo/network/electromobility.py index bc65157a4..d1b27acba 100644 --- a/edisgo/network/electromobility.py +++ b/edisgo/network/electromobility.py @@ -75,7 +75,7 @@ class Electromobility: """ def __init__(self, **kwargs): - self._edisgo_obj = kwargs.get("edisgo_obj", None) + self._edisgo_obj = kwargs.get("edisgo_obj") @property def charging_processes_df(self): diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index 6a063db73..8610d5e25 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -1,7 +1,10 @@ +from __future__ import annotations + import logging import os from math import pi, sqrt +from typing import TYPE_CHECKING import networkx as nx import numpy as np @@ -20,6 +23,9 @@ from shapely.geometry.multipolygon import MultiPolygon from shapely.wkt import loads as wkt_loads +if TYPE_CHECKING: + from edisgo import EDisGo + logger = logging.getLogger(__name__) @@ -631,3 +637,10 @@ def add_line_susceptance( ) return edisgo_obj + + +def mv_grid_gdf(edisgo_obj: EDisGo): + return gpd.GeoDataFrame( + geometry=[edisgo_obj.topology.grid_district["geom"]], + crs=f"EPSG:{edisgo_obj.topology.grid_district['srid']}", + ) From 8535a25b63be953f56d71f056d21f0c58152098c Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Thu, 3 Nov 2022 11:47:51 +0100 Subject: [PATCH 038/355] added dsm to and from csv --- edisgo/edisgo.py | 21 +++++++- edisgo/network/dsm.py | 108 ++++++++++++++++++++++++++++++++++++++---- 2 files changed, 120 insertions(+), 9 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 2e896c3a6..b053f248a 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2024,6 +2024,7 @@ def save( save_results=True, save_electromobility=False, save_heatpump=False, + save_dsm=False, **kwargs, ): """ @@ -2144,12 +2145,17 @@ def save( to_type=kwargs.get("to_type", "float32"), ) + if save_dsm: + self.dsm.to_csv( + os.path.join(directory, "dsm"), + ) + if kwargs.get("archive", False): archive_type = kwargs.get("archive_type", "zip") shutil.make_archive(directory, archive_type, directory) dir_size = tools.get_directory_size(directory) - zip_size = os.path.getsize(directory + ".zip") + zip_size = os.path.getsize(str(directory) + ".zip") reduction = (1 - zip_size / dir_size) * 100 @@ -2348,6 +2354,7 @@ def import_edisgo_from_files( import_results: bool = False, import_electromobility: bool = False, import_heat_pump: bool = False, + import_dsm: bool = False, from_zip_archive: bool = False, **kwargs, ): @@ -2537,4 +2544,16 @@ def import_edisgo_from_files( else: logging.warning("No heat pump data found. Heat pump data not imported.") + if import_dsm: + if not from_zip_archive: + directory = kwargs.get( + "dsm_directory", + os.path.join(edisgo_path, "dsm"), + ) + + if os.path.exists(directory): + edisgo_obj.dsm.from_csv(directory, from_zip_archive=from_zip_archive) + else: + logging.warning("No dsm data found. DSM data not imported.") + return edisgo_obj diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py index eb23f441f..0fa9e2fb2 100644 --- a/edisgo/network/dsm.py +++ b/edisgo/network/dsm.py @@ -2,6 +2,9 @@ import logging +from pathlib import Path +from zipfile import ZipFile + import pandas as pd logger = logging.getLogger(__name__) @@ -13,7 +16,10 @@ def __init__(self, **kwargs): @property def egon_etrago_link(self): - return self._egon_etrago_link + try: + return self._egon_etrago_link + except Exception: + return pd.DataFrame() @egon_etrago_link.setter def egon_etrago_link(self, df: pd.DataFrame): @@ -21,7 +27,10 @@ def egon_etrago_link(self, df: pd.DataFrame): @property def egon_etrago_link_timeseries(self): - return self._egon_etrago_link_timeseries + try: + return self._egon_etrago_link_timeseries + except Exception: + return pd.DataFrame() @egon_etrago_link_timeseries.setter def egon_etrago_link_timeseries(self, df: pd.DataFrame): @@ -29,7 +38,10 @@ def egon_etrago_link_timeseries(self, df: pd.DataFrame): @property def egon_etrago_store(self): - return self._egon_etrago_store + try: + return self._egon_etrago_store + except Exception: + return pd.DataFrame() @egon_etrago_store.setter def egon_etrago_store(self, df: pd.DataFrame): @@ -37,7 +49,10 @@ def egon_etrago_store(self, df: pd.DataFrame): @property def egon_etrago_store_timeseries(self): - return self._egon_etrago_store_timeseries + try: + return self._egon_etrago_store_timeseries + except Exception: + return pd.DataFrame() @egon_etrago_store_timeseries.setter def egon_etrago_store_timeseries(self, df: pd.DataFrame): @@ -45,7 +60,10 @@ def egon_etrago_store_timeseries(self, df: pd.DataFrame): @property def p_min(self): - return self._p_min + try: + return self._p_min + except Exception: + return pd.DataFrame() @p_min.setter def p_min(self, df: pd.DataFrame): @@ -53,7 +71,10 @@ def p_min(self, df: pd.DataFrame): @property def p_max(self): - return self._p_max + try: + return self._p_max + except Exception: + return pd.DataFrame() @p_max.setter def p_max(self, df: pd.DataFrame): @@ -61,7 +82,10 @@ def p_max(self, df: pd.DataFrame): @property def e_min(self): - return self._e_min + try: + return self._e_min + except Exception: + return pd.DataFrame() @e_min.setter def e_min(self, df: pd.DataFrame): @@ -69,8 +93,76 @@ def e_min(self, df: pd.DataFrame): @property def e_max(self): - return self._e_max + try: + return self._e_max + except Exception: + return pd.DataFrame() @e_max.setter def e_max(self, df: pd.DataFrame): self._e_max = df + + @property + def _attributes(self): + return [ + "egon_etrago_link", + "egon_etrago_link_timeseries", + "egon_etrago_store", + "egon_etrago_store_timeseries", + "p_min", + "p_max", + "e_min", + "e_max", + ] + + def to_csv(self, directory: str | Path): + if not isinstance(directory, Path): + directory = Path(directory) + + directory.mkdir(parents=True, exist_ok=True) + + for attr in self._attributes: + if not getattr(self, attr).empty: + getattr(self, attr).to_csv(directory / f"{attr}.csv") + + def from_csv(self, data_path: str | Path, from_zip_archive: bool = False): + if not isinstance(data_path, Path): + data_path = Path(data_path) + + attrs = self._attributes + + if from_zip_archive: + # read from zip archive + # setup ZipFile Class + zip = ZipFile(data_path) + + # get all directories and files within zip archive + files = zip.namelist() + + # add directory and .csv to files to match zip archive + attrs = {v: f"dsm/{v}.csv" for v in attrs} + + else: + # read from directory + # check files within the directory + files = [f.parts[-1] for f in data_path.iterdir()] + + # add .csv to files to match directory structure + attrs = {v: f"{v}.csv" for v in attrs} + + attrs_to_read = {k: v for k, v in attrs.items() if v in files} + + for attr, file in attrs_to_read.items(): + if from_zip_archive: + # open zip file to make it readable for pandas + with zip.open(file) as f: + df = pd.read_csv(f, index_col=0, parse_dates=True) + else: + path = data_path / file + df = pd.read_csv(path, index_col=0, parse_dates=True) + + setattr(self, attr, df) + + if from_zip_archive: + # make sure to destroy ZipFile Class to close any open connections + zip.close() From ae75f7bf301bcad2f4a56aa4db1df3c98631c25d Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 4 Nov 2022 09:44:57 +0100 Subject: [PATCH 039/355] added pv rooftop import --- edisgo/io/dsm_import.py | 35 +++---- edisgo/io/egon_data_import.py | 2 +- edisgo/io/electromobility_import.py | 10 +- edisgo/io/generators_import.py | 150 +++++++++++++++++++--------- edisgo/tools/geo.py | 26 ++++- 5 files changed, 150 insertions(+), 73 deletions(-) diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index 2610f4cce..3c3de1736 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -1,20 +1,17 @@ from __future__ import annotations import logging -import os from typing import TYPE_CHECKING import pandas as pd import saio +from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import session_scope -from edisgo.tools.tools import mv_grid_gdf - -if "READTHEDOCS" not in os.environ: - import geopandas as gpd +from edisgo.io.egon_data_import import session_scope_egon_data +from edisgo.tools.geo import sql_grid_geom if TYPE_CHECKING: from edisgo import EDisGo @@ -37,19 +34,15 @@ def dsm_from_database( egon_hvmv_substation, ) - grid_gdf = mv_grid_gdf(edisgo_obj) - - with session_scope(engine) as session: - query = session.query( - egon_hvmv_substation.bus_id, - egon_hvmv_substation.point.label("geom"), - ) - - gdf = gpd.read_postgis( - sql=query.statement, con=query.session.bind, crs=grid_gdf.crs + with session_scope_egon_data(engine) as session: + query = session.query(egon_hvmv_substation.bus_id,).filter( + func.ST_Within( + egon_hvmv_substation.point, + sql_grid_geom(edisgo_obj), + ) ) - bus_ids = gdf.loc[gdf.geometry.within(grid_gdf.geometry.iat[0])].bus_id + bus_ids = pd.read_sql(sql=query.statement, con=query.session.bind).bus_id if len(bus_ids) == 0: raise ImportError( @@ -60,7 +53,7 @@ def dsm_from_database( # pick one randomly (if more than one) bus_id = bus_ids.iat[0] - with session_scope(engine) as session: + with session_scope_egon_data(engine) as session: query = session.query(egon_etrago_link).filter( egon_etrago_link.scn_name == "eGon2035", egon_etrago_link.carrier == "dsm", @@ -75,7 +68,7 @@ def dsm_from_database( store_bus_id = edisgo_obj.dsm.egon_etrago_link.at[0, "bus1"] p_nom = edisgo_obj.dsm.egon_etrago_link.at[0, "p_nom"] - with session_scope(engine) as session: + with session_scope_egon_data(engine) as session: query = session.query(egon_etrago_link_timeseries).filter( egon_etrago_link_timeseries.scn_name == scenario, egon_etrago_link_timeseries.link_id == link_id, @@ -104,7 +97,7 @@ def dsm_from_database( pd.DataFrame(data, index=edisgo_obj.timeseries.timeindex).mul(p_nom), ) - with session_scope(engine) as session: + with session_scope_egon_data(engine) as session: query = session.query(egon_etrago_store).filter( egon_etrago_store.scn_name == scenario, egon_etrago_store.carrier == "dsm", @@ -118,7 +111,7 @@ def dsm_from_database( store_id = edisgo_obj.dsm.egon_etrago_store.at[0, "store_id"] e_nom = edisgo_obj.dsm.egon_etrago_store.at[0, "e_nom"] - with session_scope(engine) as session: + with session_scope_egon_data(engine) as session: query = session.query(egon_etrago_store_timeseries).filter( egon_etrago_store_timeseries.scn_name == scenario, egon_etrago_store_timeseries.store_id == store_id, diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py index 7a0d5eff6..196722e07 100644 --- a/edisgo/io/egon_data_import.py +++ b/edisgo/io/egon_data_import.py @@ -240,7 +240,7 @@ def select_geodataframe(sql, db_engine, index_col=None, geom_col="geom", epsg=30 @contextmanager -def session_scope(engine: Engine): +def session_scope_egon_data(engine: Engine): """Provide a transactional scope around a series of operations.""" Session = sessionmaker(bind=engine) session = Session() diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 6fa2d0c5b..b42ce80bf 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -16,7 +16,7 @@ from sklearn import preprocessing from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import session_scope +from edisgo.io.egon_data_import import session_scope_egon_data if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -1184,7 +1184,7 @@ def simbev_config_from_database( ): from saio.demand import egon_ev_metadata - with session_scope(engine) as session: + with session_scope_egon_data(engine) as session: query = session.query(egon_ev_metadata).filter( egon_ev_metadata.scenario == scenario ) @@ -1205,7 +1205,7 @@ def potential_charging_parks_from_database( srid = edisgo_obj.topology.grid_district["srid"] # TODO: change to load charging parks that lay within the grid geometry? - with session_scope(engine) as session: + with session_scope_egon_data(engine) as session: query = session.query(egon_emob_charging_infrastructure).filter( egon_emob_charging_infrastructure.mv_grid_id == mv_grid_id ) @@ -1241,7 +1241,7 @@ def charging_processes_from_database( mv_grid_id = edisgo_obj.topology.id - with session_scope(engine) as session: + with session_scope_egon_data(engine) as session: query = session.query(egon_ev_mv_grid_district.egon_ev_pool_ev_id).filter( egon_ev_mv_grid_district.scenario == scenario, egon_ev_mv_grid_district.bus_id == mv_grid_id, @@ -1253,7 +1253,7 @@ def charging_processes_from_database( n_max = max(pool.values()) - with session_scope(engine) as session: + with session_scope_egon_data(engine) as session: query = session.query(egon_ev_trip).filter( egon_ev_trip.scenario == scenario, egon_ev_trip.charging_demand > 0, diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 7daf6c139..676430dcb 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -8,16 +8,19 @@ import numpy as np import pandas as pd +import saio from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import select_geodataframe +from edisgo.io.egon_data_import import session_scope_egon_data from edisgo.tools import session_scope -from edisgo.tools.geo import proj2equidistant +from edisgo.tools.geo import get_srid_of_db_table, proj2equidistant, sql_grid_geom from edisgo.tools.tools import mv_grid_gdf if "READTHEDOCS" not in os.environ: + import geopandas as gpd + from egoio.db_tables import model_draft, supply from shapely.ops import transform from shapely.wkt import loads as wkt_loads @@ -732,64 +735,121 @@ def generators_from_database( TODO :return: """ - fluctuating = ["wind_onshore", "solar"] - firm = ["others", "gas", "oil", "biomass", "run_of_river", "reservoir"] + saio.register_schema("supply", engine) + saio.register_schema("openstreetmap", engine) - srid = edisgo_object.topology.grid_district["srid"] + from saio.openstreetmap import osm_buildings_filtered + from saio.supply import egon_power_plants, egon_power_plants_pv_roof_building - sql = """ - SELECT * FROM supply.egon_power_plants - WHERE scenario = '{}' - AND carrier IN ({}) - """ + fluctuating = ["wind_onshore", "solar"] + firm = ["others", "gas", "oil", "biomass", "run_of_river", "reservoir"] + sql_geom = sql_grid_geom(edisgo_object) grid_gdf = mv_grid_gdf(edisgo_object) # 1. firm egon_power_plants - firm_gdf = select_geodataframe( - sql=sql.format(scenario, str(firm)[1:-1]), - db_engine=engine, - geom_col="geom", - epsg=srid, - ) + with session_scope_egon_data(engine) as session: + srid = get_srid_of_db_table(session, egon_power_plants.geom) + + query = session.query(egon_power_plants).filter( + egon_power_plants.scenario == scenario, + egon_power_plants.carrier.in_(firm), + func.ST_Within( + egon_power_plants.geom, + func.ST_Transform( + sql_geom, + srid, + ), + ), + ) - firm_gdf = firm_gdf.loc[firm_gdf.geom.within(grid_gdf.geometry)] + firm_gdf = gpd.read_postgis( + sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" + ).to_crs(grid_gdf.crs) # 2. fluctuating egon_power_plants - fluc_gdf = select_geodataframe( - sql=sql.format(scenario, str(fluctuating)[1:-1]), - db_engine=engine, - geom_col="geom", - epsg=srid, + with session_scope_egon_data(engine) as session: + srid = get_srid_of_db_table(session, egon_power_plants.geom) + + query = session.query(egon_power_plants).filter( + egon_power_plants.scenario == scenario, + egon_power_plants.carrier.in_(fluctuating), + func.ST_Within( + egon_power_plants.geom, + func.ST_Transform( + sql_geom, + srid, + ), + ), + ) + + fluc_gdf = gpd.read_postgis( + sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" + ).to_crs(grid_gdf.crs) + + # 3. pv rooftop egon_power_plants_pv_roof_building + with session_scope_egon_data(engine) as session: + srid = get_srid_of_db_table(session, osm_buildings_filtered.geom_point) + + query = session.query( + func.ST_Transform( + osm_buildings_filtered.geom_point, + srid, + ).label("geom"), + osm_buildings_filtered.id, + ).filter( + func.ST_Within( + func.ST_Transform( + osm_buildings_filtered.geom_point, + srid, + ), + func.ST_Transform( + sql_geom, + srid, + ), + ), + ) + + buildings_gdf = gpd.read_postgis( + sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" + ).to_crs(grid_gdf.crs) + + building_ids = buildings_gdf.id + + with session_scope_egon_data(engine) as session: + query = session.query(egon_power_plants_pv_roof_building).filter( + egon_power_plants_pv_roof_building.scenario == scenario, + egon_power_plants_pv_roof_building.building_id.in_(building_ids), + ) + + pv_roof_df = pd.read_sql(sql=query.statement, con=query.session.bind) + + pv_roof_gdf = gpd.GeoDataFrame( + pv_roof_df.merge( + buildings_gdf, how="left", left_on="building_id", right_on="id" + ).drop(columns=["id"]), + geometry="geom", + crs=buildings_gdf.crs, ) - fluc_gdf = fluc_gdf.loc[fluc_gdf.geom.within(grid_gdf.geometry)] + print("break") + print("break") + + return firm_gdf, fluc_gdf, pv_roof_gdf + + # TODO: Funktion, welche die egon-data bus_id returned + # TODO: move tools Funktionen in egon_data_import? - # TODO: - # # 3. pv rooftop egon_power_plants_pv_roof_building + # + # # 4. chp plants egon_chp_plants # sql = f""" - # SELECT * FROM supply.egon_power_plants_pv_roof_building + # SELECT * FROM supply.egon_chp_plants # WHERE scenario = '{scenario}' # """ # - # pv_roof_df = select_dataframe(sql=sql, db_engine=engine, index_col="index") + # chp_gdf = select_geodataframe( + # sql=sql, db_engine=engine, index_col="id", epsg=srid) # - # sql = f""" - # SELECT * FROM openstreetmap.osm_buildings_filtered - # """ + # chp_gdf = chp_gdf.loc[chp_gdf.geom.within(grid_gdf.geometry)] # - # buildings_gdf = select_geodataframe( - # sql=sql, db_engine=engine, geom_col="geom_point", epsg=srid - # ) - - # 4. chp plants egon_chp_plants - sql = f""" - SELECT * FROM supply.egon_chp_plants - WHERE scenario = '{scenario}' - """ - - chp_gdf = select_geodataframe(sql=sql, db_engine=engine, index_col="id", epsg=srid) - - chp_gdf = chp_gdf.loc[chp_gdf.geom.within(grid_gdf.geometry)] - - return fluc_gdf + # return fluc_gdf diff --git a/edisgo/tools/geo.py b/edisgo/tools/geo.py index 95f1d4ddb..6ee3914ea 100755 --- a/edisgo/tools/geo.py +++ b/edisgo/tools/geo.py @@ -1,13 +1,24 @@ +from __future__ import annotations + +import logging import os +from typing import TYPE_CHECKING + +import pandas as pd + from geopy.distance import geodesic from pyproj import Transformer +from sqlalchemy import func +from sqlalchemy.orm.attributes import InstrumentedAttribute +from sqlalchemy.orm.session import Session if "READTHEDOCS" not in os.environ: from shapely.geometry import LineString, Point from shapely.ops import transform -import logging +if TYPE_CHECKING: + from edisgo import EDisGo logger = logging.getLogger(__name__) @@ -310,3 +321,16 @@ def find_nearest_conn_objects(grid_topology, bus, lines, conn_diff_tolerance=0.0 ] return conn_objects_min_stack + + +def sql_grid_geom(edisgo_obj: EDisGo): + return func.ST_GeomFromText( + str(edisgo_obj.topology.grid_district["geom"]), + edisgo_obj.topology.grid_district["srid"], + ) + + +def get_srid_of_db_table(session: Session, geom_col: InstrumentedAttribute): + query = session.query(func.ST_SRID(geom_col)).limit(1) + + return pd.read_sql(sql=query.statement, con=query.session.bind).iat[0, 0] From 5d53a685edbab322b8a873724dc2ce69e4afb928 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 4 Nov 2022 11:47:43 +0100 Subject: [PATCH 040/355] restructured; added chp plants --- edisgo/io/dsm_import.py | 29 ++++------------- edisgo/io/egon_data_import.py | 57 +++++++++++++++++++++++++++++++++- edisgo/io/generators_import.py | 41 +++++++++++++++++++----- edisgo/tools/geo.py | 21 ++++--------- edisgo/tools/tools.py | 11 ------- 5 files changed, 101 insertions(+), 58 deletions(-) diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index 3c3de1736..bc4d8e634 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -7,11 +7,12 @@ import pandas as pd import saio -from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import session_scope_egon_data -from edisgo.tools.geo import sql_grid_geom +from edisgo.io.egon_data_import import ( + get_matching_egon_data_bus_id, + session_scope_egon_data, +) if TYPE_CHECKING: from edisgo import EDisGo @@ -31,33 +32,15 @@ def dsm_from_database( egon_etrago_link_timeseries, egon_etrago_store, egon_etrago_store_timeseries, - egon_hvmv_substation, ) - with session_scope_egon_data(engine) as session: - query = session.query(egon_hvmv_substation.bus_id,).filter( - func.ST_Within( - egon_hvmv_substation.point, - sql_grid_geom(edisgo_obj), - ) - ) - - bus_ids = pd.read_sql(sql=query.statement, con=query.session.bind).bus_id - - if len(bus_ids) == 0: - raise ImportError( - f"There is no egon-data substation within the open_ego grid " - f"{edisgo_obj.topology.id}. Cannot import any DSM information." - ) - - # pick one randomly (if more than one) - bus_id = bus_ids.iat[0] + egon_bus_id = get_matching_egon_data_bus_id(edisgo_obj=edisgo_obj, db_engine=engine) with session_scope_egon_data(engine) as session: query = session.query(egon_etrago_link).filter( egon_etrago_link.scn_name == "eGon2035", egon_etrago_link.carrier == "dsm", - egon_etrago_link.bus0 == bus_id, + egon_etrago_link.bus0 == egon_bus_id, ) edisgo_obj.dsm.egon_etrago_link = pd.read_sql( diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py index 196722e07..28052c939 100644 --- a/edisgo/io/egon_data_import.py +++ b/edisgo/io/egon_data_import.py @@ -4,16 +4,23 @@ from contextlib import contextmanager from pathlib import Path +from typing import TYPE_CHECKING import geopandas as gpd import pandas as pd +import saio import yaml -from sqlalchemy import create_engine +from sqlalchemy import create_engine, func from sqlalchemy.engine.base import Engine from sqlalchemy.orm import sessionmaker +from sqlalchemy.orm.attributes import InstrumentedAttribute +from sqlalchemy.orm.session import Session from sshtunnel import SSHTunnelForwarder +if TYPE_CHECKING: + from edisgo import EDisGo + logger = logging.getLogger(__name__) @@ -252,3 +259,51 @@ def session_scope_egon_data(engine: Engine): raise finally: session.close() + + +def get_matching_egon_data_bus_id(edisgo_obj: EDisGo, db_engine: Engine): + saio.register_schema("grid", db_engine) + + from saio.grid import egon_hvmv_substation + + with session_scope_egon_data(db_engine) as session: + srid = get_srid_of_db_table(session, egon_hvmv_substation.point) + + query = session.query(egon_hvmv_substation.bus_id).filter( + func.ST_Within( + func.ST_Transform( + egon_hvmv_substation.point, + srid, + ), + func.ST_Transform( + sql_grid_geom(edisgo_obj), + srid, + ), + ) + ) + + bus_ids = pd.read_sql( + sql=query.statement, con=query.session.bind + ).bus_id.tolist() + + if not bus_ids: + raise ImportError( + f"There is no egon-data substation within the open_ego grid " + f"{edisgo_obj.topology.id}. Cannot import any DSM information." + ) + + # pick one bus id if more than one + return sorted(bus_ids)[0] + + +def sql_grid_geom(edisgo_obj: EDisGo): + return func.ST_GeomFromText( + str(edisgo_obj.topology.grid_district["geom"]), + edisgo_obj.topology.grid_district["srid"], + ) + + +def get_srid_of_db_table(session: Session, geom_col: InstrumentedAttribute): + query = session.query(func.ST_SRID(geom_col)).limit(1) + + return pd.read_sql(sql=query.statement, con=query.session.bind).iat[0, 0] diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 676430dcb..b5a20cef1 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -13,10 +13,13 @@ from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import session_scope_egon_data +from edisgo.io.egon_data_import import ( + get_srid_of_db_table, + session_scope_egon_data, + sql_grid_geom, +) from edisgo.tools import session_scope -from edisgo.tools.geo import get_srid_of_db_table, proj2equidistant, sql_grid_geom -from edisgo.tools.tools import mv_grid_gdf +from edisgo.tools.geo import mv_grid_gdf, proj2equidistant if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -739,7 +742,11 @@ def generators_from_database( saio.register_schema("openstreetmap", engine) from saio.openstreetmap import osm_buildings_filtered - from saio.supply import egon_power_plants, egon_power_plants_pv_roof_building + from saio.supply import ( + egon_chp_plants, + egon_power_plants, + egon_power_plants_pv_roof_building, + ) fluctuating = ["wind_onshore", "solar"] firm = ["others", "gas", "oil", "biomass", "run_of_river", "reservoir"] @@ -832,13 +839,31 @@ def generators_from_database( crs=buildings_gdf.crs, ) + with session_scope_egon_data(engine) as session: + srid = get_srid_of_db_table(session, egon_chp_plants.geom) + + query = session.query(egon_chp_plants).filter( + egon_chp_plants.scenario == scenario, + func.ST_Within( + func.ST_Transform( + egon_chp_plants.geom, + srid, + ), + func.ST_Transform( + sql_geom, + srid, + ), + ), + ) + + chp_gdf = gpd.read_postgis( + sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" + ).to_crs(grid_gdf.crs) + print("break") print("break") - return firm_gdf, fluc_gdf, pv_roof_gdf - - # TODO: Funktion, welche die egon-data bus_id returned - # TODO: move tools Funktionen in egon_data_import? + return firm_gdf, fluc_gdf, pv_roof_gdf, chp_gdf # # # 4. chp plants egon_chp_plants diff --git a/edisgo/tools/geo.py b/edisgo/tools/geo.py index 6ee3914ea..e46b4e913 100755 --- a/edisgo/tools/geo.py +++ b/edisgo/tools/geo.py @@ -5,15 +5,12 @@ from typing import TYPE_CHECKING -import pandas as pd - from geopy.distance import geodesic from pyproj import Transformer -from sqlalchemy import func -from sqlalchemy.orm.attributes import InstrumentedAttribute -from sqlalchemy.orm.session import Session if "READTHEDOCS" not in os.environ: + import geopandas as gpd + from shapely.geometry import LineString, Point from shapely.ops import transform @@ -323,14 +320,8 @@ def find_nearest_conn_objects(grid_topology, bus, lines, conn_diff_tolerance=0.0 return conn_objects_min_stack -def sql_grid_geom(edisgo_obj: EDisGo): - return func.ST_GeomFromText( - str(edisgo_obj.topology.grid_district["geom"]), - edisgo_obj.topology.grid_district["srid"], +def mv_grid_gdf(edisgo_obj: EDisGo): + return gpd.GeoDataFrame( + geometry=[edisgo_obj.topology.grid_district["geom"]], + crs=f"EPSG:{edisgo_obj.topology.grid_district['srid']}", ) - - -def get_srid_of_db_table(session: Session, geom_col: InstrumentedAttribute): - query = session.query(func.ST_SRID(geom_col)).limit(1) - - return pd.read_sql(sql=query.statement, con=query.session.bind).iat[0, 0] diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index 8610d5e25..50b847445 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -4,7 +4,6 @@ import os from math import pi, sqrt -from typing import TYPE_CHECKING import networkx as nx import numpy as np @@ -23,9 +22,6 @@ from shapely.geometry.multipolygon import MultiPolygon from shapely.wkt import loads as wkt_loads -if TYPE_CHECKING: - from edisgo import EDisGo - logger = logging.getLogger(__name__) @@ -637,10 +633,3 @@ def add_line_susceptance( ) return edisgo_obj - - -def mv_grid_gdf(edisgo_obj: EDisGo): - return gpd.GeoDataFrame( - geometry=[edisgo_obj.topology.grid_district["geom"]], - crs=f"EPSG:{edisgo_obj.topology.grid_district['srid']}", - ) From 9da7e0237e45fdd3e69efe2176b0ddb3bce517ed Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 4 Nov 2022 13:03:38 +0100 Subject: [PATCH 041/355] type hinting --- edisgo/io/egon_data_import.py | 7 ++++--- edisgo/io/generators_import.py | 24 +++++------------------- 2 files changed, 9 insertions(+), 22 deletions(-) diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py index 28052c939..067ac07bb 100644 --- a/edisgo/io/egon_data_import.py +++ b/edisgo/io/egon_data_import.py @@ -11,6 +11,7 @@ import saio import yaml +from geoalchemy2.types import Geometry from sqlalchemy import create_engine, func from sqlalchemy.engine.base import Engine from sqlalchemy.orm import sessionmaker @@ -261,7 +262,7 @@ def session_scope_egon_data(engine: Engine): session.close() -def get_matching_egon_data_bus_id(edisgo_obj: EDisGo, db_engine: Engine): +def get_matching_egon_data_bus_id(edisgo_obj: EDisGo, db_engine: Engine) -> int: saio.register_schema("grid", db_engine) from saio.grid import egon_hvmv_substation @@ -296,14 +297,14 @@ def get_matching_egon_data_bus_id(edisgo_obj: EDisGo, db_engine: Engine): return sorted(bus_ids)[0] -def sql_grid_geom(edisgo_obj: EDisGo): +def sql_grid_geom(edisgo_obj: EDisGo) -> Geometry: return func.ST_GeomFromText( str(edisgo_obj.topology.grid_district["geom"]), edisgo_obj.topology.grid_district["srid"], ) -def get_srid_of_db_table(session: Session, geom_col: InstrumentedAttribute): +def get_srid_of_db_table(session: Session, geom_col: InstrumentedAttribute) -> int: query = session.query(func.ST_SRID(geom_col)).limit(1) return pd.read_sql(sql=query.statement, con=query.session.bind).iat[0, 0] diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index b5a20cef1..79c9d9164 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -752,7 +752,7 @@ def generators_from_database( firm = ["others", "gas", "oil", "biomass", "run_of_river", "reservoir"] sql_geom = sql_grid_geom(edisgo_object) - grid_gdf = mv_grid_gdf(edisgo_object) + crs = mv_grid_gdf(edisgo_object).crs # 1. firm egon_power_plants with session_scope_egon_data(engine) as session: @@ -772,7 +772,7 @@ def generators_from_database( firm_gdf = gpd.read_postgis( sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(grid_gdf.crs) + ).to_crs(crs) # 2. fluctuating egon_power_plants with session_scope_egon_data(engine) as session: @@ -792,7 +792,7 @@ def generators_from_database( fluc_gdf = gpd.read_postgis( sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(grid_gdf.crs) + ).to_crs(crs) # 3. pv rooftop egon_power_plants_pv_roof_building with session_scope_egon_data(engine) as session: @@ -819,7 +819,7 @@ def generators_from_database( buildings_gdf = gpd.read_postgis( sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(grid_gdf.crs) + ).to_crs(crs) building_ids = buildings_gdf.id @@ -858,23 +858,9 @@ def generators_from_database( chp_gdf = gpd.read_postgis( sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(grid_gdf.crs) + ).to_crs(crs) print("break") print("break") return firm_gdf, fluc_gdf, pv_roof_gdf, chp_gdf - - # - # # 4. chp plants egon_chp_plants - # sql = f""" - # SELECT * FROM supply.egon_chp_plants - # WHERE scenario = '{scenario}' - # """ - # - # chp_gdf = select_geodataframe( - # sql=sql, db_engine=engine, index_col="id", epsg=srid) - # - # chp_gdf = chp_gdf.loc[chp_gdf.geom.within(grid_gdf.geometry)] - # - # return fluc_gdf From 9238e61289c20551777a50c6e919557ec93a97c0 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 7 Nov 2022 15:04:37 +0100 Subject: [PATCH 042/355] import only charging infrastructure within grid district --- edisgo/io/electromobility_import.py | 54 +++++++++++++++++++---------- edisgo/io/generators_import.py | 10 ++++-- 2 files changed, 44 insertions(+), 20 deletions(-) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index b42ce80bf..6d44d5e4d 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -14,9 +14,16 @@ from numpy.random import default_rng from sklearn import preprocessing +from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import session_scope_egon_data +from edisgo.io.egon_data_import import ( + get_matching_egon_data_bus_id, + get_srid_of_db_table, + session_scope_egon_data, + sql_grid_geom, +) +from edisgo.tools.geo import mv_grid_gdf if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -1189,7 +1196,7 @@ def simbev_config_from_database( egon_ev_metadata.scenario == scenario ) - df = pd.read_sql(sql=query.statement, con=query.session.bind) + df = pd.read_sql(sql=query.statement, con=query.session.bind) return df.assign(days=(df.end_date - df.start_date).iat[0].days + 1) @@ -1201,21 +1208,32 @@ def potential_charging_parks_from_database( ): from saio.grid import egon_emob_charging_infrastructure - mv_grid_id = edisgo_obj.topology.id - srid = edisgo_obj.topology.grid_district["srid"] + crs = mv_grid_gdf(edisgo_obj).crs + sql_geom = sql_grid_geom(edisgo_obj) - # TODO: change to load charging parks that lay within the grid geometry? with session_scope_egon_data(engine) as session: + srid = get_srid_of_db_table(session, egon_emob_charging_infrastructure.geometry) + query = session.query(egon_emob_charging_infrastructure).filter( - egon_emob_charging_infrastructure.mv_grid_id == mv_grid_id + func.ST_Within( + func.ST_Transform( + egon_emob_charging_infrastructure.geometry, + srid, + ), + func.ST_Transform( + sql_geom, + srid, + ), + ) ) - gdf = gpd.read_postgis( - sql=query.statement, - con=query.session.bind, - geom_col="geometry", - index_col="cp_id", - ).to_crs(epsg=srid) + gdf = gpd.read_postgis( + sql=query.statement, + con=query.session.bind, + geom_col="geometry", + crs=f"EPSG:{srid}", + index_col="cp_id", + ).to_crs(crs) gdf = gdf.assign(ags=0) @@ -1239,17 +1257,17 @@ def charging_processes_from_database( ): from saio.demand import egon_ev_mv_grid_district, egon_ev_trip - mv_grid_id = edisgo_obj.topology.id + egon_bus_id = get_matching_egon_data_bus_id(edisgo_obj=edisgo_obj, db_engine=engine) with session_scope_egon_data(engine) as session: query = session.query(egon_ev_mv_grid_district.egon_ev_pool_ev_id).filter( egon_ev_mv_grid_district.scenario == scenario, - egon_ev_mv_grid_district.bus_id == mv_grid_id, + egon_ev_mv_grid_district.bus_id == egon_bus_id, ) - pool = Counter( - pd.read_sql(sql=query.statement, con=query.session.bind).egon_ev_pool_ev_id - ) + pool = Counter( + pd.read_sql(sql=query.statement, con=query.session.bind).egon_ev_pool_ev_id + ) n_max = max(pool.values()) @@ -1260,7 +1278,7 @@ def charging_processes_from_database( egon_ev_trip.egon_ev_pool_ev_id.in_(pool.keys()), ) - ev_trips_df = pd.read_sql(sql=query.statement, con=query.session.bind) + ev_trips_df = pd.read_sql(sql=query.statement, con=query.session.bind) df_list = [] diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 79c9d9164..aa5ced46f 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -762,7 +762,10 @@ def generators_from_database( egon_power_plants.scenario == scenario, egon_power_plants.carrier.in_(firm), func.ST_Within( - egon_power_plants.geom, + func.ST_Transform( + egon_power_plants.geom, + srid, + ), func.ST_Transform( sql_geom, srid, @@ -782,7 +785,10 @@ def generators_from_database( egon_power_plants.scenario == scenario, egon_power_plants.carrier.in_(fluctuating), func.ST_Within( - egon_power_plants.geom, + func.ST_Transform( + egon_power_plants.geom, + srid, + ), func.ST_Transform( sql_geom, srid, From 92bf5874817141ef985eeff919371a4aa12f2e74 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 7 Nov 2022 16:22:25 +0100 Subject: [PATCH 043/355] preprocess data --- edisgo/io/generators_import.py | 89 +++++++++++++++++++++++++++++++--- 1 file changed, 81 insertions(+), 8 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index aa5ced46f..aca289672 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -738,6 +738,80 @@ def generators_from_database( TODO :return: """ + data = get_generators_from_database( + edisgo_object=edisgo_object, engine=engine, scenario=scenario + ) + + data = preprocess_data(edisgo_object=edisgo_object, data=data) + + # TODO: check if gens already exists in status quo / previous scenario + # TODO: remove old gens + # TODO: add new gens + + +def preprocess_data( + edisgo_object: EDisGo, data: dict[str, gpd.GeoDataFrame] +) -> dict[str, gpd.GeoDataFrame]: + # 1. firm + rename = { + "el_capacity": "p_nom", + "carrier": "type", + } + + data["firm_gdf"] = ( + data["firm_gdf"] + .assign(subtype=data["firm_gdf"]["carrier"]) + .rename(columns=rename, errors="raise") + ) + + # 2. fluc + mapping = {"wind_onshore": "wind", "solar": "solar"} + + data["fluc_gdf"] = ( + data["fluc_gdf"] + .assign(carrier=data["fluc_gdf"].carrier.map(mapping)) + .rename(columns=rename, errors="raise") + ) + + mapping = { + "wind": "wind_onshore", + "solar": "solar_ground_mounted", + } + + data["fluc_gdf"] = data["fluc_gdf"].assign( + subtype=data["fluc_gdf"]["type"].map(mapping) + ) + + # 3. chp + data["chp_gdf"] = ( + data["chp_gdf"] + .assign(subtype=data["chp_gdf"].carrier) + .rename(columns=rename, errors="raise") + ) + + # 4. pv rooftop + rename = { + "capacity": "p_nom", + } + + data["pv_roof_gdf"] = ( + data["pv_roof_gdf"] + .assign( + type="solar", + subtype="solar_roof_mounted", + ) + .rename(columns=rename, errors="raise") + ) + + return data + + +def get_generators_from_database( + edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" +) -> dict[str, gpd.GeoDataFrame]: + # TODO: max. capacity? 17.5 or 20 MW? + # TODO: sort new gens + saio.register_schema("supply", engine) saio.register_schema("openstreetmap", engine) @@ -754,6 +828,8 @@ def generators_from_database( sql_geom = sql_grid_geom(edisgo_object) crs = mv_grid_gdf(edisgo_object).crs + data = dict() + # 1. firm egon_power_plants with session_scope_egon_data(engine) as session: srid = get_srid_of_db_table(session, egon_power_plants.geom) @@ -773,7 +849,7 @@ def generators_from_database( ), ) - firm_gdf = gpd.read_postgis( + data["firm_gdf"] = gpd.read_postgis( sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" ).to_crs(crs) @@ -796,7 +872,7 @@ def generators_from_database( ), ) - fluc_gdf = gpd.read_postgis( + data["fluc_gdf"] = gpd.read_postgis( sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" ).to_crs(crs) @@ -837,7 +913,7 @@ def generators_from_database( pv_roof_df = pd.read_sql(sql=query.statement, con=query.session.bind) - pv_roof_gdf = gpd.GeoDataFrame( + data["pv_roof_gdf"] = gpd.GeoDataFrame( pv_roof_df.merge( buildings_gdf, how="left", left_on="building_id", right_on="id" ).drop(columns=["id"]), @@ -862,11 +938,8 @@ def generators_from_database( ), ) - chp_gdf = gpd.read_postgis( + data["chp_gdf"] = gpd.read_postgis( sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" ).to_crs(crs) - print("break") - print("break") - - return firm_gdf, fluc_gdf, pv_roof_gdf, chp_gdf + return data From dbc0d6205f7b540f40445cfc04decbaada419c27 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Wed, 9 Nov 2022 14:15:12 +0100 Subject: [PATCH 044/355] determine intersecting weather cells --- edisgo/edisgo.py | 10 ++- edisgo/io/egon_data_import.py | 26 ++++++ edisgo/io/generators_import.py | 155 +++++++++++++++++++-------------- edisgo/network/timeseries.py | 25 +++++- edisgo/network/topology.py | 4 + edisgo/tools/tools.py | 106 +++++++++++++++------- 6 files changed, 228 insertions(+), 98 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 4a2e72fef..b9f2fd11e 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -339,6 +339,7 @@ def set_time_series_active_power_predefined( conventional_loads_names=None, charging_points_ts=None, charging_points_names=None, + engine: Engine | None = None, ): """ Uses predefined feed-in or demand profiles. @@ -425,7 +426,10 @@ def set_time_series_active_power_predefined( return if fluctuating_generators_ts is not None: self.timeseries.predefined_fluctuating_generators_by_technology( - self, fluctuating_generators_ts, fluctuating_generators_names + self, + fluctuating_generators_ts, + fluctuating_generators_names, + engine=engine, ) if dispatchable_generators_ts is not None: self.timeseries.predefined_dispatchable_generators_by_technology( @@ -1257,8 +1261,10 @@ def integrate_component_based_on_geolocation( ] nearest_substation, _ = find_nearest_bus(geolocation, substations) kwargs["mvlv_subst_id"] = int(nearest_substation.split("_")[-2]) + kwargs["geom"] = geolocation kwargs["voltage_level"] = voltage_level + comp_name = self.topology.connect_to_lv(self, kwargs, comp_type) if add_ts: @@ -1405,8 +1411,10 @@ def _aggregate_time_series(attribute, groups, naming): axis=1, ) gens_df_grouped["control"] = "PQ" + if "weather_cell_id" in gens_df_grouped.columns: gens_df_grouped.drop(columns=["weather_cell_id"], inplace=True) + self.topology.generators_df = gens_df_grouped.set_index("name") # set up new generator time series diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py index 067ac07bb..a6f0be695 100644 --- a/edisgo/io/egon_data_import.py +++ b/edisgo/io/egon_data_import.py @@ -308,3 +308,29 @@ def get_srid_of_db_table(session: Session, geom_col: InstrumentedAttribute) -> i query = session.query(func.ST_SRID(geom_col)).limit(1) return pd.read_sql(sql=query.statement, con=query.session.bind).iat[0, 0] + + +def sql_within(geom_col: InstrumentedAttribute, geom_shape: Geometry, srid: int): + return func.ST_Within( + func.ST_Transform( + geom_col, + srid, + ), + func.ST_Transform( + geom_shape, + srid, + ), + ) + + +def sql_intersects(geom_col: InstrumentedAttribute, geom_shape: Geometry, srid: int): + return func.ST_Intersects( + func.ST_Transform( + geom_col, + srid, + ), + func.ST_Transform( + geom_shape, + srid, + ), + ) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index aca289672..74e91f7c2 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -17,6 +17,7 @@ get_srid_of_db_table, session_scope_egon_data, sql_grid_geom, + sql_within, ) from edisgo.tools import session_scope from edisgo.tools.geo import mv_grid_gdf, proj2equidistant @@ -742,16 +743,62 @@ def generators_from_database( edisgo_object=edisgo_object, engine=engine, scenario=scenario ) - data = preprocess_data(edisgo_object=edisgo_object, data=data) + data = preprocess_data(data=data) + remove_existing_gens(edisgo_object=edisgo_object) + + add_generators(edisgo_object=edisgo_object, data=data) + + +def remove_existing_gens(edisgo_object: EDisGo) -> None: # TODO: check if gens already exists in status quo / previous scenario - # TODO: remove old gens - # TODO: add new gens + generators_df = edisgo_object.topology.generators_df.copy() + for name in generators_df.index: + edisgo_object.remove_component(comp_type="generator", comp_name=name) -def preprocess_data( - edisgo_object: EDisGo, data: dict[str, gpd.GeoDataFrame] -) -> dict[str, gpd.GeoDataFrame]: + +def add_generators(edisgo_object: EDisGo, data: dict[str, gpd.GeoDataFrame]) -> None: + cols_to_iterate = [ + "id", + "type", + "p_nom", + "voltage_level", + "geom", + "subtype", + "weather_cell_id", + ] + # TODO: integration of LV generators needs to be changed to previously determine the + # closest MV-LV station + # TODO: change to add pv rooftop to specific buildings as soon as building id is + # given + + for key, gdf in data.items(): + for ( + index, + gen_type, + p_nom, + voltage_level, + geom, + subtype, + weather_cell_id, + ) in gdf[cols_to_iterate].itertuples(index=False): + index = f"egon_{subtype}_{index}" + + edisgo_object.integrate_component_based_on_geolocation( + comp_type="generator", + generator_id=index, + geolocation=geom, + voltage_level=voltage_level, + add_ts=False, + p_nom=p_nom, + generator_type=gen_type, + subtype=subtype, + weather_cell_id=weather_cell_id, + ) + + +def preprocess_data(data: dict[str, gpd.GeoDataFrame]) -> dict[str, gpd.GeoDataFrame]: # 1. firm rename = { "el_capacity": "p_nom", @@ -760,7 +807,7 @@ def preprocess_data( data["firm_gdf"] = ( data["firm_gdf"] - .assign(subtype=data["firm_gdf"]["carrier"]) + .assign(subtype=data["firm_gdf"]["carrier"], weather_cell_id=np.nan) .rename(columns=rename, errors="raise") ) @@ -785,14 +832,12 @@ def preprocess_data( # 3. chp data["chp_gdf"] = ( data["chp_gdf"] - .assign(subtype=data["chp_gdf"].carrier) + .assign(subtype=data["chp_gdf"].carrier, weather_cell_id=np.nan) .rename(columns=rename, errors="raise") ) # 4. pv rooftop - rename = { - "capacity": "p_nom", - } + rename = {"capacity": "p_nom", "index": "id"} data["pv_roof_gdf"] = ( data["pv_roof_gdf"] @@ -810,7 +855,6 @@ def get_generators_from_database( edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" ) -> dict[str, gpd.GeoDataFrame]: # TODO: max. capacity? 17.5 or 20 MW? - # TODO: sort new gens saio.register_schema("supply", engine) saio.register_schema("openstreetmap", engine) @@ -834,19 +878,15 @@ def get_generators_from_database( with session_scope_egon_data(engine) as session: srid = get_srid_of_db_table(session, egon_power_plants.geom) - query = session.query(egon_power_plants).filter( - egon_power_plants.scenario == scenario, - egon_power_plants.carrier.in_(firm), - func.ST_Within( - func.ST_Transform( - egon_power_plants.geom, - srid, - ), - func.ST_Transform( - sql_geom, - srid, - ), - ), + query = ( + session.query(egon_power_plants) + .filter( + egon_power_plants.scenario == scenario, + egon_power_plants.carrier.in_(firm), + egon_power_plants.voltage_level >= 4, + sql_within(egon_power_plants.geom, sql_geom, srid), + ) + .order_by(egon_power_plants.id) ) data["firm_gdf"] = gpd.read_postgis( @@ -857,19 +897,15 @@ def get_generators_from_database( with session_scope_egon_data(engine) as session: srid = get_srid_of_db_table(session, egon_power_plants.geom) - query = session.query(egon_power_plants).filter( - egon_power_plants.scenario == scenario, - egon_power_plants.carrier.in_(fluctuating), - func.ST_Within( - func.ST_Transform( - egon_power_plants.geom, - srid, - ), - func.ST_Transform( - sql_geom, - srid, - ), - ), + query = ( + session.query(egon_power_plants) + .filter( + egon_power_plants.scenario == scenario, + egon_power_plants.carrier.in_(fluctuating), + egon_power_plants.voltage_level >= 4, + sql_within(egon_power_plants.geom, sql_geom, srid), + ) + .order_by(egon_power_plants.id) ) data["fluc_gdf"] = gpd.read_postgis( @@ -887,16 +923,7 @@ def get_generators_from_database( ).label("geom"), osm_buildings_filtered.id, ).filter( - func.ST_Within( - func.ST_Transform( - osm_buildings_filtered.geom_point, - srid, - ), - func.ST_Transform( - sql_geom, - srid, - ), - ), + sql_within(osm_buildings_filtered.geom_point, sql_geom, srid), ) buildings_gdf = gpd.read_postgis( @@ -906,9 +933,14 @@ def get_generators_from_database( building_ids = buildings_gdf.id with session_scope_egon_data(engine) as session: - query = session.query(egon_power_plants_pv_roof_building).filter( - egon_power_plants_pv_roof_building.scenario == scenario, - egon_power_plants_pv_roof_building.building_id.in_(building_ids), + query = ( + session.query(egon_power_plants_pv_roof_building) + .filter( + egon_power_plants_pv_roof_building.scenario == scenario, + egon_power_plants_pv_roof_building.building_id.in_(building_ids), + egon_power_plants_pv_roof_building.voltage_level >= 4, + ) + .order_by(egon_power_plants_pv_roof_building.index) ) pv_roof_df = pd.read_sql(sql=query.statement, con=query.session.bind) @@ -921,21 +953,18 @@ def get_generators_from_database( crs=buildings_gdf.crs, ) + # 4. chp plants egon_chp_plants with session_scope_egon_data(engine) as session: srid = get_srid_of_db_table(session, egon_chp_plants.geom) - query = session.query(egon_chp_plants).filter( - egon_chp_plants.scenario == scenario, - func.ST_Within( - func.ST_Transform( - egon_chp_plants.geom, - srid, - ), - func.ST_Transform( - sql_geom, - srid, - ), - ), + query = ( + session.query(egon_chp_plants) + .filter( + egon_chp_plants.scenario == scenario, + egon_chp_plants.voltage_level >= 4, + sql_within(egon_chp_plants.geom, sql_geom, srid), + ) + .order_by(egon_chp_plants.id) ) data["chp_gdf"] = gpd.read_postgis( diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index d5c58068b..eb13bd39e 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -1177,7 +1177,7 @@ def _worst_case_storage_units(self, cases, df, configs): return active_power, reactive_power def predefined_fluctuating_generators_by_technology( - self, edisgo_object, ts_generators, generator_names=None + self, edisgo_object, ts_generators, generator_names=None, engine=None ): """ Set active power feed-in time series for fluctuating generators by technology. @@ -1203,6 +1203,11 @@ def predefined_fluctuating_generators_by_technology( :func:`edisgo.io.timeseries_import.import_feedin_timeseries` for more information. + * 'egon_data' + + Technology and weather cell specific hourly feed-in time series are + obtained from an eGon-data instance for the weather year 2011. + * :pandas:`pandas.DataFrame` DataFrame with self-provided feed-in time series per technology or @@ -1236,11 +1241,25 @@ def predefined_fluctuating_generators_by_technology( # in case time series from oedb are used, retrieve oedb time series if isinstance(ts_generators, str) and ts_generators == "oedb": weather_cell_ids = get_weather_cells_intersecting_with_grid_district( - edisgo_object + edisgo_object, source=ts_generators, engine=None + ) + ts_generators = timeseries_import.feedin_oedb( + edisgo_object.config, weather_cell_ids, self.timeindex + ) + + elif isinstance(ts_generators, str) and ts_generators == "egon_data": + if engine is None: + raise ValueError( + "Please provide a valid engine to your egon-data instance." + ) + + weather_cell_ids = get_weather_cells_intersecting_with_grid_district( + edisgo_object, source=ts_generators, engine=engine ) ts_generators = timeseries_import.feedin_oedb( edisgo_object.config, weather_cell_ids, self.timeindex ) + elif not isinstance(ts_generators, pd.DataFrame): raise ValueError( "'ts_generators' must either be a pandas DataFrame or 'oedb'." @@ -1261,6 +1280,7 @@ def predefined_fluctuating_generators_by_technology( generator_names = edisgo_object.topology.generators_df[ edisgo_object.topology.generators_df.type.isin(technologies) ].index + generator_names = self._check_if_components_exist( edisgo_object, generator_names, "generators" ) @@ -1277,6 +1297,7 @@ def predefined_fluctuating_generators_by_technology( lambda x: ts_generators[x.type].T * x.p_nom, axis=1, ).T + if not ts_scaled.empty: self.add_component_time_series("generators_active_power", ts_scaled) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 7f5f11244..e5fb4b720 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -1158,11 +1158,15 @@ def add_generator(self, bus, p_nom, generator_type, control="PQ", **kwargs): grid = self.get_lv_grid(int(bus_s.lv_grid_id)) else: grid = self.mv_grid + tmp = f"{str(grid)}_{generator_type}" generator_id = kwargs.pop("generator_id", None) + if generator_id is not None: tmp = f"{tmp}_{generator_id}" + generator_name = f"Generator_{tmp}" + while generator_name in self.generators_df.index: random.seed(a=generator_name) generator_name = f"Generator_{tmp}_{random.randint(10**8, 10**9)}" diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index 50b847445..e562e17ef 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -4,14 +4,23 @@ import os from math import pi, sqrt +from typing import TYPE_CHECKING import networkx as nx import numpy as np import pandas as pd +import saio from sqlalchemy import func +from sqlalchemy.engine.base import Engine from edisgo.flex_opt import check_tech_constraints, exceptions +from edisgo.io.egon_data_import import ( + get_srid_of_db_table, + session_scope_egon_data, + sql_grid_geom, + sql_intersects, +) from edisgo.tools import session_scope if "READTHEDOCS" not in os.environ: @@ -22,6 +31,8 @@ from shapely.geometry.multipolygon import MultiPolygon from shapely.wkt import loads as wkt_loads +if TYPE_CHECKING: + from edisgo import EDisGo logger = logging.getLogger(__name__) @@ -451,7 +462,11 @@ def assign_voltage_level_to_component(df, buses_df): return df -def get_weather_cells_intersecting_with_grid_district(edisgo_obj): +def get_weather_cells_intersecting_with_grid_district( + edisgo_obj: EDisGo, + source: str = "oedb", + engine: Engine | None = None, +) -> set: """ Get all weather cells that intersect with the grid district. @@ -467,41 +482,68 @@ def get_weather_cells_intersecting_with_grid_district(edisgo_obj): """ # Download geometries of weather cells - srid = edisgo_obj.topology.grid_district["srid"] - table = climate.Cosmoclmgrid - with session_scope() as session: - query = session.query( - table.gid, - func.ST_AsText(func.ST_Transform(table.geom, srid)).label("geometry"), + if source == "oedb": + srid = edisgo_obj.topology.grid_district["srid"] + table = climate.Cosmoclmgrid + + with session_scope() as session: + query = session.query( + table.gid, + func.ST_AsText(func.ST_Transform(table.geom, srid)).label("geometry"), + ) + + geom_data = pd.read_sql_query(query.statement, query.session.bind) + geom_data.geometry = geom_data.apply(lambda _: wkt_loads(_.geometry), axis=1) + geom_data = gpd.GeoDataFrame(geom_data, crs=f"EPSG:{srid}") + + # Make sure MV Geometry is MultiPolygon + mv_geom = edisgo_obj.topology.grid_district["geom"] + if mv_geom.geom_type == "Polygon": + # Transform Polygon to MultiPolygon and overwrite geometry + p = wkt_loads(str(mv_geom)) + m = MultiPolygon([p]) + edisgo_obj.topology.grid_district["geom"] = m + elif mv_geom.geom_type == "MultiPolygon": + m = mv_geom + else: + raise ValueError( + f"Grid district geometry is of type {type(mv_geom)}." + " Only Shapely Polygon or MultiPolygon are accepted." + ) + mv_geom_gdf = gpd.GeoDataFrame(m, crs=f"EPSG:{srid}", columns=["geometry"]) + + return set( + np.append( + gpd.sjoin( + geom_data, mv_geom_gdf, how="right", op="intersects" + ).gid.unique(), + edisgo_obj.topology.generators_df.weather_cell_id.dropna().unique(), + ) ) - geom_data = pd.read_sql_query(query.statement, query.session.bind) - geom_data.geometry = geom_data.apply(lambda _: wkt_loads(_.geometry), axis=1) - geom_data = gpd.GeoDataFrame(geom_data, crs=f"EPSG:{srid}") - - # Make sure MV Geometry is MultiPolygon - mv_geom = edisgo_obj.topology.grid_district["geom"] - if mv_geom.geom_type == "Polygon": - # Transform Polygon to MultiPolygon and overwrite geometry - p = wkt_loads(str(mv_geom)) - m = MultiPolygon([p]) - edisgo_obj.topology.grid_district["geom"] = m - elif mv_geom.geom_type == "MultiPolygon": - m = mv_geom + + elif source == "egon_data": + saio.register_schema("supply", engine) + + from saio.supply import egon_era5_weather_cells + + sql_geom = sql_grid_geom(edisgo_obj) + + with session_scope_egon_data(engine=engine) as session: + srid = get_srid_of_db_table(session, egon_era5_weather_cells.geom) + + query = session.query( + egon_era5_weather_cells.w_id, + ).filter(sql_intersects(egon_era5_weather_cells.geom, sql_geom, srid)) + + return set( + pd.read_sql(sql=query.statement, con=query.session.bind).w_id + ).union(set(edisgo_obj.topology.generators_df.weather_cell_id.dropna())) + else: raise ValueError( - f"Grid district geometry is of type {type(mv_geom)}." - " Only Shapely Polygon or MultiPolygon are accepted." - ) - mv_geom_gdf = gpd.GeoDataFrame(m, crs=f"EPSG:{srid}", columns=["geometry"]) - - return set( - np.append( - gpd.sjoin( - geom_data, mv_geom_gdf, how="right", op="intersects" - ).gid.unique(), - edisgo_obj.topology.generators_df.weather_cell_id.dropna().unique(), + "Please provide a valid source for obtaining weather cells. At the moment" + "'oedb' and 'egon_data' are supported." ) - ) def get_directory_size(start_dir): From ad3f3503fa79ada46a278dac5f51b35bd9e8e273 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 11 Nov 2022 14:18:21 +0100 Subject: [PATCH 045/355] import generator time series from egon data db --- edisgo/io/home_batteries_import.py | 1 + edisgo/io/timeseries_import.py | 37 ++++++++++++++++++++++++++++++ edisgo/network/timeseries.py | 6 +++-- 3 files changed, 42 insertions(+), 2 deletions(-) create mode 100644 edisgo/io/home_batteries_import.py diff --git a/edisgo/io/home_batteries_import.py b/edisgo/io/home_batteries_import.py new file mode 100644 index 000000000..9d48db4f9 --- /dev/null +++ b/edisgo/io/home_batteries_import.py @@ -0,0 +1 @@ +from __future__ import annotations diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index b5587425c..e348c2ca9 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -2,11 +2,14 @@ import os import pandas as pd +import saio from demandlib import bdew as bdew from demandlib import particular_profiles as profiles +from sqlalchemy.engine.base import Engine from workalendar.europe import Germany +from edisgo.io.egon_data_import import session_scope_egon_data from edisgo.tools import session_scope if "READTHEDOCS" not in os.environ: @@ -185,6 +188,40 @@ def load_time_series_demandlib(config_data, timeindex): return elec_demand.loc[timeindex] +def feedin_egon_data( + weather_cell_ids: set, timeindex: pd.DatetimeIndex, engine: Engine +): + saio.register_schema("supply", engine) + + from saio.supply import egon_era5_renewable_feedin + + with session_scope_egon_data(engine) as session: + query = ( + session.query( + egon_era5_renewable_feedin.w_id.label("weather_cell_id"), + egon_era5_renewable_feedin.carrier, + egon_era5_renewable_feedin.feedin, + ) + .filter(egon_era5_renewable_feedin.w_id.in_(weather_cell_ids)) + .order_by( + egon_era5_renewable_feedin.w_id, egon_era5_renewable_feedin.carrier + ) + ) + + feedin_df = pd.read_sql(sql=query.statement, con=query.session.bind) + + # TODO: gibt es auch MS Netze mit offshore wind? vermutlich nicht + feedin_df.carrier = feedin_df.carrier.str.replace("pv", "solar").str.replace( + "_onshore", "" + ) + + feedin_df = feedin_df.set_index(["carrier", "weather_cell_id"]) + + data = [list(val)[: len(timeindex)] for val in feedin_df.feedin.tolist()] + + return pd.DataFrame(data=data, index=feedin_df.index, columns=timeindex).T + + def cop_oedb(config_data, weather_cell_ids=None, timeindex=None): """ Get COP (coefficient of performance) time series data from the diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index eb13bd39e..b4137df03 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -1256,8 +1256,8 @@ def predefined_fluctuating_generators_by_technology( weather_cell_ids = get_weather_cells_intersecting_with_grid_district( edisgo_object, source=ts_generators, engine=engine ) - ts_generators = timeseries_import.feedin_oedb( - edisgo_object.config, weather_cell_ids, self.timeindex + ts_generators = timeseries_import.feedin_egon_data( + weather_cell_ids, self.timeindex, engine=engine ) elif not isinstance(ts_generators, pd.DataFrame): @@ -1271,7 +1271,9 @@ def predefined_fluctuating_generators_by_technology( groups = edisgo_object.topology.generators_df.groupby( ["type", "weather_cell_id"] ).groups + combinations = ts_generators.columns + generator_names = np.concatenate( [groups[_].values for _ in combinations if _ in groups.keys()] ) From 5a974f137cb7d79f7753827e5cdbabb5105889aa Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 11 Nov 2022 15:26:51 +0100 Subject: [PATCH 046/355] intergrate home batteries --- edisgo/io/generators_import.py | 27 +++++-- edisgo/io/home_batteries_import.py | 125 +++++++++++++++++++++++++++++ 2 files changed, 144 insertions(+), 8 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 74e91f7c2..5dedde5fa 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -733,7 +733,10 @@ def scale_generators(gen_type, total_capacity): def generators_from_database( - edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" + edisgo_object: EDisGo, + engine: Engine, + scenario: str = "eGon2035", + remove_existing: bool = True, ): """ TODO @@ -745,7 +748,8 @@ def generators_from_database( data = preprocess_data(data=data) - remove_existing_gens(edisgo_object=edisgo_object) + if remove_existing: + remove_existing_gens(edisgo_object=edisgo_object) add_generators(edisgo_object=edisgo_object, data=data) @@ -767,13 +771,14 @@ def add_generators(edisgo_object: EDisGo, data: dict[str, gpd.GeoDataFrame]) -> "geom", "subtype", "weather_cell_id", + "building_id", ] # TODO: integration of LV generators needs to be changed to previously determine the # closest MV-LV station # TODO: change to add pv rooftop to specific buildings as soon as building id is # given - for key, gdf in data.items(): + for gdf in data.values(): for ( index, gen_type, @@ -782,6 +787,7 @@ def add_generators(edisgo_object: EDisGo, data: dict[str, gpd.GeoDataFrame]) -> geom, subtype, weather_cell_id, + building_id, ) in gdf[cols_to_iterate].itertuples(index=False): index = f"egon_{subtype}_{index}" @@ -795,6 +801,7 @@ def add_generators(edisgo_object: EDisGo, data: dict[str, gpd.GeoDataFrame]) -> generator_type=gen_type, subtype=subtype, weather_cell_id=weather_cell_id, + building_id=building_id, ) @@ -807,7 +814,11 @@ def preprocess_data(data: dict[str, gpd.GeoDataFrame]) -> dict[str, gpd.GeoDataF data["firm_gdf"] = ( data["firm_gdf"] - .assign(subtype=data["firm_gdf"]["carrier"], weather_cell_id=np.nan) + .assign( + subtype=data["firm_gdf"]["carrier"], + weather_cell_id=np.nan, + building_id=np.nan, + ) .rename(columns=rename, errors="raise") ) @@ -816,7 +827,7 @@ def preprocess_data(data: dict[str, gpd.GeoDataFrame]) -> dict[str, gpd.GeoDataF data["fluc_gdf"] = ( data["fluc_gdf"] - .assign(carrier=data["fluc_gdf"].carrier.map(mapping)) + .assign(carrier=data["fluc_gdf"].carrier.map(mapping), building_id=np.nan) .rename(columns=rename, errors="raise") ) @@ -832,7 +843,9 @@ def preprocess_data(data: dict[str, gpd.GeoDataFrame]) -> dict[str, gpd.GeoDataF # 3. chp data["chp_gdf"] = ( data["chp_gdf"] - .assign(subtype=data["chp_gdf"].carrier, weather_cell_id=np.nan) + .assign( + subtype=data["chp_gdf"].carrier, weather_cell_id=np.nan, building_id=np.nan + ) .rename(columns=rename, errors="raise") ) @@ -854,8 +867,6 @@ def preprocess_data(data: dict[str, gpd.GeoDataFrame]) -> dict[str, gpd.GeoDataF def get_generators_from_database( edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" ) -> dict[str, gpd.GeoDataFrame]: - # TODO: max. capacity? 17.5 or 20 MW? - saio.register_schema("supply", engine) saio.register_schema("openstreetmap", engine) diff --git a/edisgo/io/home_batteries_import.py b/edisgo/io/home_batteries_import.py index 9d48db4f9..ff54fc8bb 100644 --- a/edisgo/io/home_batteries_import.py +++ b/edisgo/io/home_batteries_import.py @@ -1 +1,126 @@ from __future__ import annotations + +import logging + +from typing import TYPE_CHECKING + +import geopandas as gpd +import pandas as pd +import saio + +from sqlalchemy import func +from sqlalchemy.engine.base import Engine + +from edisgo.io.egon_data_import import ( + get_srid_of_db_table, + session_scope_egon_data, + sql_grid_geom, + sql_within, +) +from edisgo.tools.geo import mv_grid_gdf + +if TYPE_CHECKING: + from edisgo import EDisGo + +logger = logging.getLogger(__name__) + + +def home_batteries_from_database( + edisgo_obj: EDisGo, + engine: Engine, + scenario: str = "eGon2035", + remove_existing: bool = True, +): + batteries_gdf = get_home_batteries_from_database( + edisgo_obj=edisgo_obj, engine=engine, scenario=scenario + ) + + if remove_existing: + remove_existing_storages(edisgo_obj=edisgo_obj) + + generators_df = edisgo_obj.topology.generators_df.copy() + + batteries_gdf = batteries_gdf.merge( + right=generators_df[["bus", "building_id"]], how="left", on="building_id" + ) + + if batteries_gdf.bus.isna().any(): + raise LookupError( + f"The following batteries don't have a matching generator. Please make sure" + f" to import all generators of the scenario first. Batteries missing " + f"generator: {batteries_gdf.loc[batteries_gdf.bus.isna()].index.tolist()}" + ) + + cols_to_iterate = [ + "p_nom", + "bus", + ] + + for index, p_nom, bus in batteries_gdf[cols_to_iterate].itertuples(): + edisgo_obj.add_component( + comp_type="storage_unit", + p_nom=p_nom, + bus=bus, + egon_id=index, + ) + + +def remove_existing_storages(edisgo_obj: EDisGo): + storage_units_df = edisgo_obj.topology.storage_units_df.copy() + + for name in storage_units_df.index: + edisgo_obj.remove_component(comp_type="storage_unit", comp_name=name) + + +def get_home_batteries_from_database( + edisgo_obj: EDisGo, engine: Engine, scenario: str = "eGon2035" +): + saio.register_schema("supply", engine) + saio.register_schema("openstreetmap", engine) + + from saio.openstreetmap import osm_buildings_filtered + from saio.supply import egon_home_batteries + + sql_geom = sql_grid_geom(edisgo_obj) + crs = mv_grid_gdf(edisgo_obj).crs + + with session_scope_egon_data(engine) as session: + srid = get_srid_of_db_table(session, osm_buildings_filtered.geom_point) + + query = session.query( + func.ST_Transform( + osm_buildings_filtered.geom_point, + srid, + ).label("geom"), + osm_buildings_filtered.id, + ).filter( + sql_within(osm_buildings_filtered.geom_point, sql_geom, srid), + ) + + buildings_gdf = gpd.read_postgis( + sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" + ).to_crs(crs) + + building_ids = buildings_gdf.id + + with session_scope_egon_data(engine) as session: + query = ( + session.query(egon_home_batteries) + .filter( + egon_home_batteries.scenario == scenario, + egon_home_batteries.building_id.in_(building_ids), + ) + .order_by(egon_home_batteries.index) + ) + + batteries_df = pd.read_sql( + sql=query.statement, con=query.session.bind, index_col="index" + ) + + return gpd.GeoDataFrame( + batteries_df.merge( + buildings_gdf, how="left", left_on="building_id", right_on="id" + ).drop(columns=["id"]), + geometry="geom", + crs=buildings_gdf.crs, + ) From 0077c4fa8ca277f87895cbfd93e3be09cd9f14ab Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Thu, 17 Nov 2022 11:20:55 +0100 Subject: [PATCH 047/355] determine the closest MV-LV station when importing lv generators --- edisgo/edisgo.py | 40 +++++++++++++++++++++++++++++++--- edisgo/io/egon_data_import.py | 2 +- edisgo/io/generators_import.py | 22 +++++++++++++++++-- edisgo/network/topology.py | 21 +++++++++++------- 4 files changed, 71 insertions(+), 14 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index b9f2fd11e..05f99d54a 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -28,7 +28,9 @@ import_electromobility_from_database, integrate_charging_parks, ) +from edisgo.io.generators_import import generators_from_database from edisgo.io.generators_import import oedb as import_generators_oedb +from edisgo.io.home_batteries_import import home_batteries_from_database # from edisgo.io.heat_pump_import import oedb as import_heat_pumps_oedb from edisgo.network import timeseries @@ -698,9 +700,28 @@ def import_generators(self, generator_scenario=None, **kwargs): See :func:`edisgo.io.generators_import.oedb`. """ - import_generators_oedb( - edisgo_object=self, generator_scenario=generator_scenario, **kwargs - ) + if generator_scenario in ["nep2035", "ego100"]: + import_generators_oedb( + edisgo_object=self, generator_scenario=generator_scenario, **kwargs + ) + elif generator_scenario in ["eGon2035", "eGon100RE"]: + engine = kwargs.pop("engine") + + if not isinstance(engine, Engine): + raise ValueError( + "Please provide a valide sqlalchemy engine when loading scenarios " + "'eGon2035' and 'eGon100RE'." + ) + + generators_from_database( + edisgo_object=self, engine=engine, scenario=generator_scenario, **kwargs + ) + else: + raise ValueError( + f"Unknown generator scenario {generator_scenario}. The following " + f"scenarios are currently supported: 'nep2035', 'ego100', 'eGon2035' " + f"and 'eGon100RE'." + ) def analyze( self, @@ -1698,6 +1719,19 @@ def import_heat_pumps(self, scenario=None, **kwargs): def import_dsm(self, engine: Engine, scenario: str = "eGon2035"): dsm_from_database(edisgo_obj=self, engine=engine, scenario=scenario) + def import_home_batteries( + self, + engine: Engine, + scenario: str = "eGon2035", + remove_existing: bool = True, + ): + home_batteries_from_database( + edisgo_obj=self, + engine=engine, + scenario=scenario, + remove_existing=remove_existing, + ) + def apply_heat_pump_operating_strategy( self, strategy="uncontrolled", heat_pump_names=None, **kwargs ): diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py index a6f0be695..ef788b36e 100644 --- a/edisgo/io/egon_data_import.py +++ b/edisgo/io/egon_data_import.py @@ -143,7 +143,7 @@ def ssh_tunnel(cred: dict) -> str: server = SSHTunnelForwarder( ssh_address_or_host=(cred["SSH_HOST"], 22), ssh_username=cred["SSH_USER"], - ssh_private_key=cred["SSH_PKEY"], + ssh_pkey=cred["SSH_PKEY"], remote_bind_address=(cred["PGRES_HOST"], cred["PORT"]), ) server.start() diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 5dedde5fa..7629eb7ba 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -20,7 +20,7 @@ sql_within, ) from edisgo.tools import session_scope -from edisgo.tools.geo import mv_grid_gdf, proj2equidistant +from edisgo.tools.geo import find_nearest_bus, mv_grid_gdf, proj2equidistant if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -689,11 +689,29 @@ def drop_generators(generator_list, gen_type, total_capacity): "and generator datasets." ) + substations = edisgo_object.topology.buses_df.loc[ + edisgo_object.topology.transformers_df.bus1.unique() + ] + + new_gens_lv.geom = new_gens_lv.geom.apply(wkt_loads) + + new_gens_lv = gpd.GeoDataFrame( + new_gens_lv, + geometry="geom", + crs=f"EPSG:{edisgo_object.topology.grid_district['srid']}", + ) + # iterate over new generators and create them for id in new_gens_lv.index.sort_values(ascending=True): + comp_data = dict(new_gens_lv.loc[id, :]) + + nearest_substation, _ = find_nearest_bus(comp_data["geom"], substations) + + comp_data["mvlv_subst_id"] = int(nearest_substation.split("_")[-2]) + edisgo_object.topology.connect_to_lv( edisgo_object, - dict(new_gens_lv.loc[id, :]), + comp_data, allowed_number_of_comp_per_bus=allowed_number_of_comp_per_lv_bus, ) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 031a9fbf4..e1430ede7 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -25,6 +25,7 @@ ) if "READTHEDOCS" not in os.environ: + from shapely.errors import ShapelyDeprecationWarning from shapely.geometry import LineString, Point from shapely.ops import transform from shapely.wkt import loads as wkt_loads @@ -1179,14 +1180,18 @@ def add_generator(self, bus, p_nom, generator_type, control="PQ", **kwargs): "control": control, } data.update(kwargs) - new_df = ( - pd.Series( - data, - name=generator_name, + + with warnings.catch_warnings(): + warnings.filterwarnings("ignore", category=ShapelyDeprecationWarning) + + new_df = ( + pd.Series( + data, + name=generator_name, + ) + .to_frame() + .T ) - .to_frame() - .T - ) # FIXME: casting non-numeric values with numeric values into one series changes # the data type to 'Object'. Change the data type to numeric if possible @@ -2200,7 +2205,7 @@ def _choose_random_substation_id(): # generate random list (unique elements) of possible target buses # to connect components to if comp_type == "generator": - random.seed(a=comp_data["generator_id"]) + random.seed(a=int(comp_data["generator_id"])) else: random.seed( a="{}_{}_{}".format( From b55c6ed4601cd8b1ab1c56da20a8bf2970393a88 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 2 Feb 2023 11:19:53 +0100 Subject: [PATCH 048/355] Add method to scale timeseries of edisgo object --- edisgo/network/timeseries.py | 13 +++++++++++++ tests/network/test_timeseries.py | 12 ++++++++++++ 2 files changed, 25 insertions(+) diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index 5f4513b1c..54e322ac9 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -2186,6 +2186,19 @@ def resample_timeseries( # set new timeindex self._timeindex = index + def scale_timeseries( + self, p_scaling_factor: float = 1.0, q_scaling_factor: float = 1.0 + ): + attributes_type = ["generators", "storage_units", "storage_units"] + power_types = { + "active_power": p_scaling_factor, + "reactive_power": q_scaling_factor, + } + for suffix, scaling_factor in power_types.items(): + for type in attributes_type: + attribute = f"{type}_{suffix}" + setattr(self, attribute, getattr(self, attribute) * scaling_factor) + class TimeSeriesRaw: """ diff --git a/tests/network/test_timeseries.py b/tests/network/test_timeseries.py index 9290981d3..17046c1a2 100644 --- a/tests/network/test_timeseries.py +++ b/tests/network/test_timeseries.py @@ -1,3 +1,4 @@ +import copy import logging import os import shutil @@ -2426,6 +2427,17 @@ def test_resample_timeseries(self): atol=1e-5, ) + def test_scale_timeseries(self): + self.edisgo.set_time_series_worst_case_analysis() + edisgo_scaled = copy.deepcopy(self.edisgo) + edisgo_scaled.timeseries.scale_timeseries( + p_scaling_factor=0.5, q_scaling_factor=0.5 + ) + assert_frame_equal( + edisgo_scaled.timeseries.generators_active_power, + self.edisgo.timeseries.generators_active_power * 0.5, + ) + class TestTimeSeriesRaw: @pytest.fixture(autouse=True) From 1c35fa205571691e031dfd38174bc708fc4dba04 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 2 Feb 2023 11:32:15 +0100 Subject: [PATCH 049/355] Add reinforcement strategy to catch convergence problems --- edisgo/edisgo.py | 118 +++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 109 insertions(+), 9 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 8384854f8..230e7c10b 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -912,6 +912,7 @@ def reinforce( combined_analysis: bool = False, mode: str | None = None, without_generator_import: bool = False, + catch_convergence_problems: bool = False, **kwargs, ) -> Results: """ @@ -985,15 +986,114 @@ def reinforce( results = edisgo_obj.results else: - results = reinforce_grid( - self, - max_while_iterations=max_while_iterations, - copy_grid=copy_grid, - timesteps_pfa=timesteps_pfa, - combined_analysis=combined_analysis, - mode=mode, - without_generator_import=without_generator_import, - ) + if not catch_convergence_problems: + results = reinforce_grid( + self, + max_while_iterations=max_while_iterations, + copy_grid=copy_grid, + timesteps_pfa=timesteps_pfa, + combined_analysis=combined_analysis, + mode=mode, + without_generator_import=without_generator_import, + ) + else: + # Initial try + try: + logger.info("Initial reinforcement try.") + results = reinforce_grid( + self, + max_while_iterations=max_while_iterations, + copy_grid=copy_grid, + timesteps_pfa=timesteps_pfa, + combined_analysis=combined_analysis, + mode=mode, + without_generator_import=without_generator_import, + ) + converged = True + except ValueError: + logger.info("Initial reinforcement doesn't converged.") + converged = False + + # traceback.print_exc() + set_scaling_factor = 1 + initial_timerseries = copy.deepcopy(self.timeseries) + minimal_scaling_factor = 0.1 + max_iterations = 10 + + # Find non converging timesteps + non_converging_timesteps = self.analyze( + timesteps=timesteps_pfa, raise_not_converged=False + ) + logger.debug( + f"Following timesteps {non_converging_timesteps} " + f"doesnt't converged." + ) + # Reinforce only converged timesteps + + def reinforce(): + try: + results = reinforce_grid( + self, + max_while_iterations=max_while_iterations, + copy_grid=copy_grid, + timesteps_pfa=non_converging_timesteps, + combined_analysis=combined_analysis, + mode=mode, + without_generator_import=without_generator_import, + ) + converged = True + logger.debug( + f"Reinforcement succeeded for {set_scaling_factor=} " + f"at {iteration=}" + ) + except ValueError: + results = self.results + converged = False + logger.debug( + f"Reinforcement failed for {set_scaling_factor=} " + f"at {iteration=}" + ) + return converged, results + + iteration = 0 + highest_converged_scaling_factor = 0 + while iteration < max_iterations: + iteration += 1 + if converged: + if set_scaling_factor == 1: + # Initial iteration (0) worked + break + else: + highest_converged_scaling_factor = set_scaling_factor + set_scaling_factor = 1 + else: + if set_scaling_factor == minimal_scaling_factor: + raise ValueError( + f"Not reinforceable with {minimal_scaling_factor=}!" + ) + elif iteration == 1: + set_scaling_factor = minimal_scaling_factor + else: + set_scaling_factor = ( + set_scaling_factor + highest_converged_scaling_factor + ) / 2 + + self.timeseries = copy.deepcopy(initial_timerseries) + self.timeseries.scale_timeseries( + p_scaling_factor=set_scaling_factor, + q_scaling_factor=set_scaling_factor, + ) + logger.info( + f"Try reinforce with {set_scaling_factor=} at {iteration=}" + ) + converged, results = reinforce() + if converged is False and iteration == max_iterations: + raise ValueError( + f"Not reinforceable, max iterations ({max_iterations}) " + f"reached!" + ) + + self.timeseries = initial_timerseries # add measure to Results object if not copy_grid: From 8ca40483a8986b5011dacc860d67b61b37ed5218 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Fri, 3 Feb 2023 08:55:01 +0100 Subject: [PATCH 050/355] Enhance the catch convergence reinforcement --- edisgo/edisgo.py | 50 +++++++++++++++++++++++++++++--------------- tests/test_edisgo.py | 14 +++++++++++++ 2 files changed, 47 insertions(+), 17 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 230e7c10b..58ba59da4 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -902,7 +902,7 @@ def _check_convergence(): # handle converged time steps pypsa_io.process_pfa_results(self, pypsa_network, timesteps_converged) - return timesteps_not_converged + return timesteps_converged, timesteps_not_converged def reinforce( self, @@ -1010,25 +1010,33 @@ def reinforce( without_generator_import=without_generator_import, ) converged = True + fully_converged = True except ValueError: logger.info("Initial reinforcement doesn't converged.") converged = False + fully_converged = False # traceback.print_exc() set_scaling_factor = 1 initial_timerseries = copy.deepcopy(self.timeseries) - minimal_scaling_factor = 0.1 + minimal_scaling_factor = 0.01 max_iterations = 10 + iteration = 0 + highest_converged_scaling_factor = 0 - # Find non converging timesteps - non_converging_timesteps = self.analyze( - timesteps=timesteps_pfa, raise_not_converged=False - ) - logger.debug( - f"Following timesteps {non_converging_timesteps} " - f"doesnt't converged." - ) - # Reinforce only converged timesteps + if not fully_converged: + # Find non converging timesteps + logger.debug("Find converging and non converging timesteps.") + converging_timesteps, non_converging_timesteps = self.analyze( + timesteps=timesteps_pfa, raise_not_converged=False + ) + logger.debug( + f"Following timesteps {converging_timesteps} converged." + ) + logger.debug( + f"Following timesteps {non_converging_timesteps} " + f"doesnt't converged." + ) def reinforce(): try: @@ -1036,7 +1044,7 @@ def reinforce(): self, max_while_iterations=max_while_iterations, copy_grid=copy_grid, - timesteps_pfa=non_converging_timesteps, + timesteps_pfa=selected_timesteps, combined_analysis=combined_analysis, mode=mode, without_generator_import=without_generator_import, @@ -1055,8 +1063,15 @@ def reinforce(): ) return converged, results - iteration = 0 - highest_converged_scaling_factor = 0 + if not converged: + logger.debug("Reinforce only converged timesteps") + selected_timesteps = converging_timesteps + _, _ = reinforce() + + logger.debug("Reinforce only non converged timesteps") + selected_timesteps = non_converging_timesteps + converged, results = reinforce() + while iteration < max_iterations: iteration += 1 if converged: @@ -1075,13 +1090,14 @@ def reinforce(): set_scaling_factor = minimal_scaling_factor else: set_scaling_factor = ( - set_scaling_factor + highest_converged_scaling_factor - ) / 2 + (set_scaling_factor - highest_converged_scaling_factor) + * 0.25 + ) + highest_converged_scaling_factor self.timeseries = copy.deepcopy(initial_timerseries) self.timeseries.scale_timeseries( p_scaling_factor=set_scaling_factor, - q_scaling_factor=set_scaling_factor, + q_scaling_factor=0, ) logger.info( f"Try reinforce with {set_scaling_factor=} at {iteration=}" diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index b2f8402c2..deb996344 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -429,6 +429,20 @@ def test_reinforce(self): assert len(results.equipment_changes) == 8 assert results.v_res.shape == (4, 41) + def test_reinforce_catch_convergence(self): + # ###################### test with catch convergence ########################## + self.setup_worst_case_time_series() + self.edisgo.timeseries.scale_timeseries( + p_scaling_factor=10, q_scaling_factor=10 + ) + results = self.edisgo.reinforce( + catch_convergence_problems=True, is_worst_case=False + ) + assert results.unresolved_issues.empty + assert len(results.grid_expansion_costs) == 109 + assert len(results.equipment_changes) == 139 + assert results.v_res.shape == (2, 142) + def test_add_component(self, caplog): self.setup_worst_case_time_series() index = self.edisgo.timeseries.timeindex From 831ace182eecd62b88a3776ba1daa584fe5c4eac Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Fri, 3 Feb 2023 09:13:57 +0100 Subject: [PATCH 051/355] Fix bug in catch convergence problems reinforcement - Better logging levels - Add final full reinforcement - Changen reactive power scaling factor --- edisgo/edisgo.py | 15 ++++++++------- tests/test_edisgo.py | 4 ++-- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 58ba59da4..760cc3327 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1026,7 +1026,7 @@ def reinforce( if not fully_converged: # Find non converging timesteps - logger.debug("Find converging and non converging timesteps.") + logger.info("Find converging and non converging timesteps.") converging_timesteps, non_converging_timesteps = self.analyze( timesteps=timesteps_pfa, raise_not_converged=False ) @@ -1050,25 +1050,25 @@ def reinforce(): without_generator_import=without_generator_import, ) converged = True - logger.debug( + logger.info( f"Reinforcement succeeded for {set_scaling_factor=} " f"at {iteration=}" ) except ValueError: results = self.results converged = False - logger.debug( + logger.info( f"Reinforcement failed for {set_scaling_factor=} " f"at {iteration=}" ) return converged, results if not converged: - logger.debug("Reinforce only converged timesteps") + logger.info("Reinforce only converged timesteps") selected_timesteps = converging_timesteps _, _ = reinforce() - logger.debug("Reinforce only non converged timesteps") + logger.info("Reinforce only non converged timesteps") selected_timesteps = non_converging_timesteps converged, results = reinforce() @@ -1097,7 +1097,7 @@ def reinforce(): self.timeseries = copy.deepcopy(initial_timerseries) self.timeseries.scale_timeseries( p_scaling_factor=set_scaling_factor, - q_scaling_factor=0, + q_scaling_factor=set_scaling_factor, ) logger.info( f"Try reinforce with {set_scaling_factor=} at {iteration=}" @@ -1110,7 +1110,8 @@ def reinforce(): ) self.timeseries = initial_timerseries - + selected_timesteps = timesteps_pfa + converged, results = reinforce() # add measure to Results object if not copy_grid: self.results.measures = "grid_expansion" diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index deb996344..c96301f3f 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -440,8 +440,8 @@ def test_reinforce_catch_convergence(self): ) assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 109 - assert len(results.equipment_changes) == 139 - assert results.v_res.shape == (2, 142) + assert len(results.equipment_changes) == 176 + assert results.v_res.shape == (4, 142) def test_add_component(self, caplog): self.setup_worst_case_time_series() From f7ce354062ae0f722c84eb2b88133f147d6079cf Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Wed, 15 Feb 2023 11:41:17 +0100 Subject: [PATCH 052/355] Add parameter to docstring. --- edisgo/edisgo.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 760cc3327..91f1ef888 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -932,6 +932,12 @@ def reinforce( :attr:`edisgo.network.timeseries.TimeSeries.is_worst_case`. If True reinforcement is calculated for worst-case MV and LV cases separately. + catch_convergence_problems : bool + Uses reinforcement strategy to reinforce not converging grid. + Reinforces first with only converging timesteps. Reinforce again with at + start not converging timesteps. If still not converging, scale timeseries. + Default: False + """ if kwargs.get("is_worst_case", self.timeseries.is_worst_case): From aa3b60106343058fdf011803710595e4b2b2914d Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 2 Mar 2023 17:46:49 +0100 Subject: [PATCH 053/355] Enhance reinforcement methods - add method to aggregate lv_grid on secondary side station bus - change reinforcement method that it is possible to reinforce only on lv grid --- edisgo/edisgo.py | 13 ++++- edisgo/flex_opt/check_tech_constraints.py | 56 +++++++++++++++---- edisgo/flex_opt/reinforce_grid.py | 65 ++++++++++++++--------- edisgo/network/topology.py | 30 +++++++++++ tests/network/test_topology.py | 11 ++++ tests/test_edisgo.py | 15 +++++- 6 files changed, 151 insertions(+), 39 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 91f1ef888..01833a0e1 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -655,7 +655,7 @@ def to_graph(self): Returns ------- - :networkx:`networkx.Graph<>` + :networkx:`networkx.Graph` Graph representation of the grid as networkx Ordered Graph, where lines are represented by edges in the graph, and buses and transformers are represented by nodes. @@ -936,8 +936,12 @@ def reinforce( Uses reinforcement strategy to reinforce not converging grid. Reinforces first with only converging timesteps. Reinforce again with at start not converging timesteps. If still not converging, scale timeseries. + To use method "is_worst_case" must be "False". Default: False + lv_grid_id : str or int + LV grid id to specify the grid to check, if mode is "lv". + """ if kwargs.get("is_worst_case", self.timeseries.is_worst_case): @@ -968,6 +972,7 @@ def reinforce( combined_analysis=combined_analysis, mode="mv", without_generator_import=without_generator_import, + **kwargs, ) if mode != "mv": @@ -985,6 +990,7 @@ def reinforce( combined_analysis=combined_analysis, mode=reinforce_mode, without_generator_import=without_generator_import, + **kwargs, ) if mode not in ["mv", "lv"]: @@ -1001,6 +1007,7 @@ def reinforce( combined_analysis=combined_analysis, mode=mode, without_generator_import=without_generator_import, + **kwargs, ) else: # Initial try @@ -1014,6 +1021,7 @@ def reinforce( combined_analysis=combined_analysis, mode=mode, without_generator_import=without_generator_import, + **kwargs, ) converged = True fully_converged = True @@ -1025,7 +1033,7 @@ def reinforce( # traceback.print_exc() set_scaling_factor = 1 initial_timerseries = copy.deepcopy(self.timeseries) - minimal_scaling_factor = 0.01 + minimal_scaling_factor = 0.05 max_iterations = 10 iteration = 0 highest_converged_scaling_factor = 0 @@ -1054,6 +1062,7 @@ def reinforce(): combined_analysis=combined_analysis, mode=mode, without_generator_import=without_generator_import, + **kwargs, ) converged = True logger.info( diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 5944467ca..1ba263325 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -54,7 +54,7 @@ def mv_line_load(edisgo_obj): return crit_lines -def lv_line_load(edisgo_obj): +def lv_line_load(edisgo_obj, **kwargs): """ Checks for over-loading issues in LV network. @@ -62,6 +62,11 @@ def lv_line_load(edisgo_obj): ---------- edisgo_obj : :class:`~.EDisGo` + Other Parameters + ----------------- + lv_grid_id : str or int + LV grid id to specify the grid to check, if mode is "lv". + Returns ------- :pandas:`pandas.DataFrame` @@ -83,7 +88,7 @@ def lv_line_load(edisgo_obj): """ - crit_lines = _line_load(edisgo_obj, voltage_level="lv") + crit_lines = _line_load(edisgo_obj, voltage_level="lv", **kwargs) if not crit_lines.empty: logger.debug( @@ -97,7 +102,7 @@ def lv_line_load(edisgo_obj): return crit_lines -def lines_allowed_load(edisgo_obj, voltage_level): +def lines_allowed_load(edisgo_obj, voltage_level, **kwargs): """ Get allowed maximum current per line per time step @@ -108,6 +113,11 @@ def lines_allowed_load(edisgo_obj, voltage_level): Grid level, allowed line load is returned for. Possible options are "mv" or "lv". + Other Parameters + ----------------- + lv_grid_id : str or int + LV grid id to specify the grid to check, if mode is "lv". + Returns ------- :pandas:`pandas.DataFrame` @@ -120,9 +130,13 @@ def lines_allowed_load(edisgo_obj, voltage_level): # get lines and nominal voltage mv_grid = edisgo_obj.topology.mv_grid if voltage_level == "lv": - lines_df = edisgo_obj.topology.lines_df[ - ~edisgo_obj.topology.lines_df.index.isin(mv_grid.lines_df.index) - ] + if kwargs.get("lv_grid_id", None): + lv_grid = edisgo_obj.topology.get_lv_grid(kwargs.get("lv_grid_id", None)) + lines_df = lv_grid.lines_df + else: + lines_df = edisgo_obj.topology.lines_df[ + ~edisgo_obj.topology.lines_df.index.isin(mv_grid.lines_df.index) + ] lv_grids = list(edisgo_obj.topology.lv_grids) if len(lv_grids) > 0: nominal_voltage = lv_grids[0].nominal_voltage @@ -215,7 +229,7 @@ def lines_relative_load(edisgo_obj, lines_allowed_load): return i_lines_pfa / lines_allowed_load -def _line_load(edisgo_obj, voltage_level): +def _line_load(edisgo_obj, voltage_level, **kwargs): """ Checks for over-loading issues of lines. @@ -226,6 +240,11 @@ def _line_load(edisgo_obj, voltage_level): Voltage level, over-loading is checked for. Possible options are "mv" or "lv". + Other Parameters + ----------------- + lv_grid_id : str or int + LV grid id to specify the grid to check, if mode is "lv". + Returns ------- :pandas:`pandas.DataFrame` @@ -247,7 +266,7 @@ def _line_load(edisgo_obj, voltage_level): ) # get allowed line load - i_lines_allowed = lines_allowed_load(edisgo_obj, voltage_level) + i_lines_allowed = lines_allowed_load(edisgo_obj, voltage_level, **kwargs) # calculate relative line load and keep maximum over-load of each line relative_i_res = lines_relative_load(edisgo_obj, i_lines_allowed) @@ -305,7 +324,7 @@ def hv_mv_station_load(edisgo_obj): return crit_stations -def mv_lv_station_load(edisgo_obj): +def mv_lv_station_load(edisgo_obj, **kwargs): """ Checks for over-loading of MV/LV stations. @@ -313,6 +332,11 @@ def mv_lv_station_load(edisgo_obj): ---------- edisgo_obj : :class:`~.EDisGo` + Other Parameters + ----------------- + lv_grid_id : str or int + LV grid id to specify the grid to check, if mode is "lv". + Returns ------- :pandas:`pandas.DataFrame` @@ -498,7 +522,7 @@ def mv_voltage_deviation(edisgo_obj, voltage_levels="mv_lv"): return crit_buses -def lv_voltage_deviation(edisgo_obj, mode=None, voltage_levels="mv_lv"): +def lv_voltage_deviation(edisgo_obj, mode=None, voltage_levels="mv_lv", **kwargs): """ Checks for voltage stability issues in LV networks. @@ -523,6 +547,11 @@ def lv_voltage_deviation(edisgo_obj, mode=None, voltage_levels="mv_lv"): topology differently. In that case, load and feed-in case are differentiated. + Other Parameters + ----------------- + lv_grid_id : str or int + LV grid id to specify the grid to check, if mode is "lv". + Returns ------- dict @@ -554,7 +583,12 @@ def lv_voltage_deviation(edisgo_obj, mode=None, voltage_levels="mv_lv"): "'lv'.".format(voltage_levels) ) - for lv_grid in edisgo_obj.topology.lv_grids: + if kwargs.get("lv_grid_id", None): + lv_grids = [edisgo_obj.topology.get_lv_grid(kwargs.get("lv_grid_id", None))] + else: + lv_grids = edisgo_obj.topology.lv_grids + + for lv_grid in lv_grids: if mode: if mode == "stations": diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 7292dda6c..a96d938fb 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -28,6 +28,7 @@ def reinforce_grid( combined_analysis: bool = False, mode: str | None = None, without_generator_import: bool = False, + **kwargs, ) -> Results: """ Evaluates network reinforcement needs and performs measures. @@ -94,6 +95,11 @@ def reinforce_grid( connect new generators to the topology from calculation of topology expansion costs. Default: False. + Other Parameters + ----------------- + lv_grid_id : str or int + LV grid id to specify the grid to check, if mode is "lv". + Returns ------- :class:`~.network.network.Results` @@ -177,9 +183,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) iteration_step = 1 - analyze_mode = None if mode == "lv" else mode + if mode == "lv" and kwargs.get("lv_grid_id", None): + analyze_mode = "lv" + elif mode == "lv": + analyze_mode = None + else: + analyze_mode = mode - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) + edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa, **kwargs) # REINFORCE OVERLOADED TRANSFORMERS AND LINES logger.debug("==> Check station load.") @@ -189,13 +200,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if mode == "lv" else checks.hv_mv_station_load(edisgo_reinforce) ) - - overloaded_lv_stations = ( - pd.DataFrame(dtype=float) - if mode == "mv" - else checks.mv_lv_station_load(edisgo_reinforce) - ) - logger.debug("==> Check line load.") + if (kwargs.get("lv_grid_id", None)) or (mode == "mv"): + overloaded_lv_stations = pd.DataFrame(dtype=float) + else: + overloaded_lv_stations = checks.mv_lv_station_load(edisgo_reinforce, **kwargs) + logger.debug("==> Check line load.") crit_lines = ( pd.DataFrame(dtype=float) @@ -207,7 +216,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = pd.concat( [ crit_lines, - checks.lv_line_load(edisgo_reinforce), + checks.lv_line_load(edisgo_reinforce, **kwargs), ] ) @@ -251,7 +260,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-loading problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) + edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa, **kwargs) logger.debug("==> Recheck station load.") overloaded_mv_station = ( @@ -260,7 +269,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): else checks.hv_mv_station_load(edisgo_reinforce) ) - if mode != "mv": + if mode != "mv" and (not kwargs.get("lv_grid_id", None)): overloaded_lv_stations = checks.mv_lv_station_load(edisgo_reinforce) logger.debug("==> Recheck line load.") @@ -275,7 +284,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = pd.concat( [ crit_lines, - checks.lv_line_load(edisgo_reinforce), + checks.lv_line_load(edisgo_reinforce, **kwargs), ] ) @@ -336,7 +345,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) + edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa, **kwargs) logger.debug("==> Recheck voltage in MV topology.") crit_nodes = checks.mv_voltage_deviation( @@ -370,10 +379,12 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Check voltage at secondary side of LV stations.") voltage_levels = "mv_lv" if combined_analysis else "lv" - - crit_stations = checks.lv_voltage_deviation( - edisgo_reinforce, mode="stations", voltage_levels=voltage_levels - ) + if kwargs.get("lv_grid_id", None): + crit_stations = {} + else: + crit_stations = checks.lv_voltage_deviation( + edisgo_reinforce, mode="stations", voltage_levels=voltage_levels + ) while_counter = 0 while crit_stations and while_counter < max_while_iterations: @@ -389,7 +400,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and # check if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) + edisgo_reinforce.analyze( + mode=analyze_mode, timesteps=timesteps_pfa, **kwargs + ) logger.debug("==> Recheck voltage at secondary side of LV stations.") crit_stations = checks.lv_voltage_deviation( @@ -424,7 +437,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if not mode or mode == "lv": logger.debug("==> Check voltage in LV grids.") crit_nodes = checks.lv_voltage_deviation( - edisgo_reinforce, voltage_levels=voltage_levels + edisgo_reinforce, voltage_levels=voltage_levels, **kwargs ) while_counter = 0 @@ -443,11 +456,13 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) # and check if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) + edisgo_reinforce.analyze( + mode=analyze_mode, timesteps=timesteps_pfa, **kwargs + ) logger.debug("==> Recheck voltage in LV grids.") crit_nodes = checks.lv_voltage_deviation( - edisgo_reinforce, voltage_levels=voltage_levels + edisgo_reinforce, voltage_levels=voltage_levels, **kwargs ) iteration_step += 1 @@ -481,7 +496,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): else checks.hv_mv_station_load(edisgo_reinforce) ) - if mode != "mv": + if mode != "mv" and (not kwargs.get("lv_grid_id", None)): overloaded_lv_stations = checks.mv_lv_station_load(edisgo_reinforce) logger.debug("==> Recheck line load.") @@ -496,7 +511,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = pd.concat( [ crit_lines, - checks.lv_line_load(edisgo_reinforce), + checks.lv_line_load(edisgo_reinforce, **kwargs), ] ) @@ -540,7 +555,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-loading problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) + edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa, **kwargs) logger.debug("==> Recheck station load.") overloaded_mv_station = ( diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 19df7ada9..78ea2874a 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -2811,5 +2811,35 @@ def check_integrity(self): f"are in a different reference system." ) + def aggregate_lv_grid_buses_on_station(self, lv_grid_id: int | str) -> None: + """ + Aggregates all lv grid buses on secondary station side bus. Drop all lines of + lv grid and replaces bus names in "loads_df", "storages_df", + "charging_points_df" and "storages_df". + + Parameters + ---------- + lv_grid_id : int or str + """ + lv_grid = self.get_lv_grid(name=lv_grid_id) + lines_to_drop = lv_grid.lines_df.index.to_list() + station_bus = lv_grid.station.index[0] + buses_to_drop = lv_grid.buses_df.loc[ + lv_grid.buses_df.index != station_bus + ].index.to_list() + + self.buses_df = self.buses_df[~self.buses_df.index.isin(buses_to_drop)] + self.lines_df = self.lines_df[~self.lines_df.index.isin(lines_to_drop)] + self.loads_df.loc[self.loads_df.bus.isin(buses_to_drop), "bus"] = station_bus + self.generators_df.loc[ + self.generators_df.bus.isin(buses_to_drop), "bus" + ] = station_bus + self.charging_points_df.loc[ + self.charging_points_df.bus.isin(buses_to_drop), "bus" + ] = station_bus + self.storage_units_df.loc[ + self.storage_units_df.bus.isin(buses_to_drop), "bus" + ] = station_bus + def __repr__(self): return f"Network topology {self.id}" diff --git a/tests/network/test_topology.py b/tests/network/test_topology.py index 2e5d3d14c..f368a3a72 100644 --- a/tests/network/test_topology.py +++ b/tests/network/test_topology.py @@ -1,3 +1,4 @@ +import copy import logging import os import shutil @@ -849,6 +850,16 @@ def test_to_csv(self): shutil.rmtree(dir) + def test_aggregate_lv_grid_buses_on_station(self): + """Test method aggregate_lv_grid_buses_on_station""" + + lv_grid_id = str(list(self.topology.mv_grid.lv_grids)[1]) + topology_obj = copy.deepcopy(self.topology) + topology_obj.aggregate_lv_grid_buses_on_station(lv_grid_id=lv_grid_id) + + assert list(self.topology.mv_grid.lv_grids)[1].buses_df.shape[0] == 15 + assert list(topology_obj.mv_grid.lv_grids)[1].buses_df.shape[0] == 1 + class TestTopologyWithEdisgoObject: """ diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index c96301f3f..772b24a28 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -440,9 +440,22 @@ def test_reinforce_catch_convergence(self): ) assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 109 - assert len(results.equipment_changes) == 176 + assert len(results.equipment_changes) == 186 assert results.v_res.shape == (4, 142) + def test_reinforce_one_lv_grid(self): + # ###################### test with only one lv grid ########################## + self.setup_worst_case_time_series() + lv_grid_id = list(self.edisgo.topology.mv_grid.lv_grids)[0].id + results = self.edisgo.reinforce( + mode="lv", copy_grid=True, lv_grid_id=lv_grid_id + ) + + assert results.unresolved_issues.empty + assert len(results.grid_expansion_costs) == 6 + assert len(results.equipment_changes) == 6 + assert results.v_res.shape == (2, 142) + def test_add_component(self, caplog): self.setup_worst_case_time_series() index = self.edisgo.timeseries.timeindex From 91b55e2b9ccdfc67fb9e9d9b1a67fa5b1afe02e7 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 2 Mar 2023 18:19:51 +0100 Subject: [PATCH 054/355] Add changes to whatsnew --- doc/whatsnew/v0-2-1.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/whatsnew/v0-2-1.rst b/doc/whatsnew/v0-2-1.rst index 76386724b..2bcc99a0d 100644 --- a/doc/whatsnew/v0-2-1.rst +++ b/doc/whatsnew/v0-2-1.rst @@ -10,3 +10,5 @@ Changes * Added MV grid ID to logging output `#309 `_ * Added automatic link checking `#297 `_ * Bug fix `#346 `_ +* Added method to scale timeseries `#353 `_ +* Added method to aggregate lv grid buses to station bus secondary side `#353 `_ From 2ffe5d4518d7c52ac2ad8ea779aa29b4477ddc18 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 15:45:57 +0100 Subject: [PATCH 055/355] Minor doc change --- edisgo/flex_opt/check_tech_constraints.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 1e385a383..42d93d5bb 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -290,12 +290,17 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): def lines_relative_load(edisgo_obj, lines=None): """ - Returns relative line load based on specified allowed line load. + Returns relative line load. + + The relative line load is here defined as the apparent power over a line, obtained + from power flow analysis, divided by the allowed load of a line, which is the + nominal apparent power times a security factor (see :py:attr:`~lines_allowed_load` + for more information). Parameters ---------- edisgo_obj : :class:`~.EDisGo` - lines : list(str) + lines : list(str) or None List of line names to get relative loading for. Per default relative loading is returned for all lines included in the power flow analysis. Default: None. From b5b8c64e8f16b4c77664dec2ea967d46d3bf3142 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 15:57:51 +0100 Subject: [PATCH 056/355] Refactor voltage deviation checks --- edisgo/edisgo.py | 6 +- edisgo/flex_opt/check_tech_constraints.py | 714 ++++++++---------- edisgo/flex_opt/storage_positioning.py | 2 +- tests/flex_opt/test_check_tech_constraints.py | 494 ++++++++---- tests/test_edisgo.py | 2 +- 5 files changed, 656 insertions(+), 562 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 04386eaf7..cccb56e6c 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -853,7 +853,7 @@ def reinforce( timesteps_pfa: str | pd.DatetimeIndex | pd.Timestamp | None = None, copy_grid: bool = False, max_while_iterations: int = 20, - combined_analysis: bool = False, + split_voltage_band: bool = True, mode: str | None = None, **kwargs, ) -> Results: @@ -895,7 +895,7 @@ def reinforce( max_while_iterations=max_while_iterations, copy_grid=copy_grid, timesteps_pfa=timesteps_pfa, - combined_analysis=combined_analysis, + split_voltage_band=split_voltage_band, mode=mode, ) @@ -911,7 +911,7 @@ def reinforce( max_while_iterations=max_while_iterations, copy_grid=copy_grid, timesteps_pfa=timesteps_pfa, - combined_analysis=combined_analysis, + split_voltage_band=split_voltage_band, mode=mode, ) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 42d93d5bb..5de20e6a1 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -684,39 +684,36 @@ def components_relative_load(edisgo_obj): return pd.concat([lines_rel_load, stations_rel_load], axis=1) -def mv_voltage_deviation(edisgo_obj, voltage_levels="mv_lv"): +def voltage_issues(edisgo_obj, voltage_level, split_voltage_band=True): """ - Checks for voltage stability issues in MV network. - - Returns buses with voltage issues and their maximum voltage deviation. + Gives buses with voltage issues and their maximum voltage deviation in p.u.. Parameters ---------- edisgo_obj : :class:`~.EDisGo` - voltage_levels : :obj:`str` - Specifies which allowed voltage deviations to use. Possible options - are: - - * 'mv_lv' - This is the default. The allowed voltage deviations for buses in the - MV is the same as for buses in the LV. Further, load and feed-in case - are not distinguished. - * 'mv' - Use this to handle allowed voltage limits in the MV and LV - topology differently. In that case, load and feed-in case are - differentiated. + voltage_level : None or str + Specifies voltage level for which to determine voltage issues. Possible options + are 'mv' to check voltage deviations at MV buses, 'mv_lv' to check voltage + deviations at MV-LV stations, and 'lv' to check voltage deviations at LV buses. + If None voltage deviations in all voltage levels are checked. + split_voltage_band : bool + If True the allowed voltage band of +/-10 percent is allocated to the different + voltage levels MV, MV/LV and LV according to config values set in section + `grid_expansion_allowed_voltage_deviations`. If False, the same voltage limits + are used for all voltage levels. Default: True. Returns ------- - :obj:`dict` - Dictionary with representative of :class:`~.network.grids.MVGrid` as - key and a :pandas:`pandas.DataFrame` with voltage - deviations from allowed lower or upper voltage limits, sorted - descending from highest to lowest voltage deviation, as value. - Index of the dataframe are all buses with voltage issues. - Columns are 'v_diff_max' containing the maximum voltage deviation as - float and 'time_index' containing the corresponding time step the - voltage issue occured in as :pandas:`pandas.Timestamp`. + :pandas:`pandas.DataFrame` + Dataframe with maximum deviations from allowed lower or upper voltage limits + in p.u. sorted descending from highest to lowest voltage deviation + (it is not distinguished between over- or undervoltage). + Columns of the dataframe are 'abs_max_voltage_dev' containing the maximum + absolute voltage deviation as float, 'time_index' containing the + corresponding time step the maximum voltage issue occured in as + :pandas:`pandas.Timestamp`, and 'lv_grid_id' giving the LV grid ID + the bus is in as integer. Index of the dataframe are the + names of all buses with voltage issues. Notes ----- @@ -725,179 +722,194 @@ def mv_voltage_deviation(edisgo_obj, voltage_levels="mv_lv"): 'grid_expansion_allowed_voltage_deviations'. """ - - crit_buses = {} - - # get allowed lower and upper voltage limits - v_limits_upper, v_limits_lower = _mv_allowed_voltage_limits( - edisgo_obj, voltage_levels - ) - - # find buses with voltage issues and their maximum voltage deviation - crit_buses_grid = _voltage_deviation( - edisgo_obj, - edisgo_obj.topology.mv_grid.buses_df.index, - v_limits_upper, - v_limits_lower, - ) - - if not crit_buses_grid.empty: - crit_buses[repr(edisgo_obj.topology.mv_grid)] = crit_buses_grid - logger.debug( - "==> {} bus(es) in MV topology has/have voltage issues.".format( - crit_buses_grid.shape[0] + station_buses = edisgo_obj.topology.transformers_df.bus1.unique() + if voltage_level: + if voltage_level == "mv_lv": + buses = station_buses + elif voltage_level == "lv": + buses = edisgo_obj.topology.buses_df.index + # drop MV buses and buses of stations secondary sides + buses = buses.drop( + edisgo_obj.topology.mv_grid.buses_df.index.append( + pd.Index(station_buses) + ) ) + elif voltage_level == "mv": + buses = edisgo_obj.topology.mv_grid.buses_df.index + else: + raise ValueError( + "{} is not a valid option for input variable 'voltage_level' in " + "function voltage_issue. Possible options are 'mv', 'mv_lv', 'lv', " + "or None.".format(voltage_level) + ) + else: + mv_issues = voltage_issues( + edisgo_obj, voltage_level="mv", split_voltage_band=split_voltage_band + ) + mv_lv_issues = voltage_issues( + edisgo_obj, voltage_level="mv_lv", split_voltage_band=split_voltage_band + ) + lv_issues = voltage_issues( + edisgo_obj, voltage_level="lv", split_voltage_band=split_voltage_band ) + crit_buses = pd.concat([mv_issues, mv_lv_issues, lv_issues]) + if not crit_buses.empty: + crit_buses.sort_values( + by=["abs_max_voltage_dev"], ascending=False, inplace=True + ) + return crit_buses + + crit_buses = _voltage_issues_helper(edisgo_obj, buses, split_voltage_band) + + # join LV grid information + if voltage_level == "mv_lv" or voltage_level == "lv": + crit_buses["lv_grid_id"] = edisgo_obj.topology.buses_df.loc[ + crit_buses.index, "lv_grid_id" + ] else: - logger.debug("==> No voltage issues in MV topology.") + crit_buses["lv_grid_id"] = None + if not crit_buses.empty: + if voltage_level == "mv_lv": + message = "==> {} MV-LV station(s) has/have voltage issues." + elif voltage_level == "lv": + message = "==> {} LV bus(es) has/have voltage issues." + else: + message = "==> {} bus(es) in MV topology has/have voltage issues." + logger.debug(message.format(len(crit_buses))) + else: + if voltage_level == "mv_lv": + message = "==> No voltage issues in MV-LV stations." + elif voltage_level == "lv": + message = "==> No voltage issues in LV grids." + else: + message = "==> No voltage issues in MV topology." + logger.debug(message) return crit_buses -def lv_voltage_deviation(edisgo_obj, mode=None, voltage_levels="mv_lv"): +def _voltage_issues_helper(edisgo_obj, buses, split_voltage_band): """ - Checks for voltage stability issues in LV networks. + Function to detect voltage issues at buses. - Returns buses with voltage issues and their maximum voltage deviation. + The function returns the highest voltage deviation from allowed lower + or upper voltage limit in p.u. for all buses with voltage issues. Parameters ---------- edisgo_obj : :class:`~.EDisGo` - mode : None or str - If None voltage at all buses in LV networks is checked. If mode is set - to 'stations' only voltage at bus bar is checked. Default: None. - voltage_levels : str - Specifies which allowed voltage deviations to use. Possible options - are: - - * 'mv_lv' - This is the default. The allowed voltage deviations for buses in the - LV is the same as for buses in the MV. Further, load and feed-in case - are not distinguished. - * 'lv' - Use this to handle allowed voltage limits in the MV and LV - topology differently. In that case, load and feed-in case are - differentiated. + buses : list(str) + List of buses to check voltage deviation for. + split_voltage_band : bool + If True the allowed voltage band of +/-10 percent is allocated to the different + voltage levels MV, MV/LV and LV according to config values set in section + `grid_expansion_allowed_voltage_deviations`. If False, the same voltage limits + are used for all voltage levels. Returns ------- - dict - Dictionary with representative of :class:`~.network.grids.LVGrid` as - key and a :pandas:`pandas.DataFrame` with voltage - deviations from allowed lower or upper voltage limits, sorted - descending from highest to lowest voltage deviation, as value. - Index of the dataframe are all buses with voltage issues. - Columns are 'v_diff_max' containing the maximum voltage deviation as - float and 'time_index' containing the corresponding time step the - voltage issue occured in as :pandas:`pandas.Timestamp`. + pandas:`pandas.DataFrame` + Dataframe with maximum deviations from allowed lower or upper voltage limits + in p.u. sorted descending from highest to lowest voltage deviation + (it is not distinguished between over- or undervoltage). + Columns of the dataframe are 'abs_max_voltage_dev' containing the maximum + absolute voltage deviation as float and 'time_index' containing the + corresponding time step the maximum voltage issue occured in as + :pandas:`pandas.Timestamp`. Index of the dataframe are the + names of all buses with voltage issues. - Notes - ----- - Voltage issues are determined based on allowed voltage deviations defined - in the config file 'config_grid_expansion' in section - 'grid_expansion_allowed_voltage_deviations'. + """ + crit_buses = pd.DataFrame(dtype=float) + # get voltage deviations + voltage_dev = voltage_deviation_from_allowed_voltage_limits( + edisgo_obj, buses=buses, split_voltage_band=split_voltage_band + ) + # drop buses without voltage issues + voltage_dev = voltage_dev[voltage_dev != 0].dropna(how="all", axis=1).abs() + # determine absolute maximum voltage deviation and time step it occurs + crit_buses["abs_max_voltage_dev"] = voltage_dev.max() + crit_buses["time_index"] = voltage_dev.idxmax() + # sort descending by maximum voltage deviation + if not crit_buses.empty: + crit_buses.sort_values( + by=["abs_max_voltage_dev"], ascending=False, inplace=True + ) + return crit_buses + +def allowed_voltage_limits(edisgo_obj, buses=None, split_voltage_band=True): """ - crit_buses = {} + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + buses : list(str) + List of bus names to get allowed voltage limits for. Per default + allowed voltage limits are returned for all buses in the network. Default: None. + split_voltage_band : bool + If True the allowed voltage band of +/-10 percent is allocated to the different + voltage levels MV, MV/LV and LV according to config values set in section + `grid_expansion_allowed_voltage_deviations`. If False, the same voltage limits + are used for all voltage levels. Default: True. - if voltage_levels == "mv_lv": - v_limits_upper, v_limits_lower = _mv_allowed_voltage_limits(edisgo_obj, "mv_lv") - elif not "lv" == voltage_levels: - raise ValueError( - "{} is not a valid option for input variable 'voltage_levels' in " - "function lv_voltage_deviation. Try 'mv_lv' or " - "'lv'.".format(voltage_levels) - ) + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe containing the maximum allowed apparent power per line and time step + in MVA. Index of the dataframe are all time steps power flow analysis + was conducted for of type :pandas:`pandas.Timestamp`. + Columns are bus names as in index of + :attr:`~.network.topology.Topology.buses_df`. - for lv_grid in edisgo_obj.topology.lv_grids: + """ + if buses is None: + buses = edisgo_obj.topology.buses_df.index - if mode: - if mode == "stations": - buses = lv_grid.station.index - else: - raise ValueError( - "{} is not a valid option for input variable 'mode' in " - "function lv_voltage_deviation. Try 'stations' or " - "None.".format(mode) - ) - else: - buses = lv_grid.buses_df.index + if split_voltage_band: - if voltage_levels == "lv": - v_limits_upper, v_limits_lower = _lv_allowed_voltage_limits( - edisgo_obj, lv_grid, mode - ) + # MV limits + mv_buses = edisgo_obj.topology.mv_grid.buses_df.index + mv_upper, mv_lower = _mv_allowed_voltage_limits(edisgo_obj) + mv_upper = pd.DataFrame( + mv_upper, columns=mv_buses, index=edisgo_obj.results.v_res.index + ) + mv_lower = pd.DataFrame( + mv_lower, columns=mv_buses, index=edisgo_obj.results.v_res.index + ) - crit_buses_grid = _voltage_deviation( - edisgo_obj, buses, v_limits_upper, v_limits_lower + # station limits + stations_upper, stations_lower = _lv_allowed_voltage_limits( + edisgo_obj, mode="stations" ) - if not crit_buses_grid.empty: - crit_buses[str(lv_grid)] = crit_buses_grid + # LV limits + lv_upper, lv_lower = _lv_allowed_voltage_limits(edisgo_obj, mode=None) - if crit_buses: - if mode == "stations": - logger.debug( - "==> {} LV station(s) has/have voltage issues.".format(len(crit_buses)) - ) - else: - logger.debug( - "==> {} LV topology(s) has/have voltage issues.".format(len(crit_buses)) - ) + # concat results and select relevant buses + upper = pd.concat([mv_upper, stations_upper, lv_upper], axis=1) + lower = pd.concat([mv_lower, stations_lower, lv_lower], axis=1) + return upper.loc[:, buses], lower.loc[:, buses] else: - if mode == "stations": - logger.debug("==> No voltage issues in LV stations.") - else: - logger.debug("==> No voltage issues in LV grids.") - - return crit_buses + upper = pd.DataFrame(1.1, columns=buses, index=edisgo_obj.results.v_res.index) + lower = pd.DataFrame(0.9, columns=buses, index=edisgo_obj.results.v_res.index) + return upper, lower -def _mv_allowed_voltage_limits(edisgo_obj, voltage_levels): +def _mv_allowed_voltage_limits(edisgo_obj): """ - Calculates allowed upper and lower MV voltage limits in p.u.. + Calculates allowed lower and upper voltage limits for MV nodes in p.u.. Parameters ---------- edisgo_obj : :class:`~.EDisGo` - voltage_levels : :obj:`str` - Specifies which allowed voltage limits to use. Possible options - are: - - * 'mv_lv' - The allowed voltage deviations for buses in the MV are the same as - for buses in the LV, namely $pm$ 10 %. - * 'mv' - Use this to handle allowed voltage limits in the MV and LV - differently. In that case load and feed-in case are differentiated. Returns ------- - :pandas:`pandas.Series` - Series containing the allowed upper voltage limits in p.u.. - Index of the series are all time steps power flow was last conducted - for of type :pandas:`pandas.Timestamp`. - - :pandas:`pandas.Series` - Series containing the allowed lower voltage limits in p.u.. - Index of the series are all time steps power flow was last conducted - for of type :pandas:`pandas.Timestamp`. + (float, float) + Lower and upper voltage limit for MV nodes. """ - v_allowed_per_case = {} - - # get config values for lower voltage limit in feed-in case and upper - # voltage limit in load case - v_allowed_per_case["feed-in_case_lower"] = edisgo_obj.config[ - "grid_expansion_allowed_voltage_deviations" - ]["feed-in_case_lower"] - v_allowed_per_case["load_case_upper"] = edisgo_obj.config[ - "grid_expansion_allowed_voltage_deviations" - ]["load_case_upper"] - - # calculate upper voltage limit in feed-in case and lower voltage limit in - # load case + # get values from config offset = edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ "hv_mv_trafo_offset" ] @@ -905,49 +917,44 @@ def _mv_allowed_voltage_limits(edisgo_obj, voltage_levels): "hv_mv_trafo_control_deviation" ] - if voltage_levels == "mv_lv" or voltage_levels == "mv": - v_allowed_per_case["feed-in_case_upper"] = ( - 1 - + offset - + control_deviation - + edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ - "{}_feed-in_case_max_v_deviation".format(voltage_levels) - ] - ) - v_allowed_per_case["load_case_lower"] = ( - 1 - + offset - - control_deviation - - edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ - "{}_load_case_max_v_deviation".format(voltage_levels) - ] - ) - else: - raise ValueError( - "Specified mode {} is not a valid option.".format(voltage_levels) - ) - - # create series with upper and lower voltage limits for each time step - v_limits_upper = edisgo_obj.timeseries.timesteps_load_feedin_case.apply( - lambda _: v_allowed_per_case["{}_upper".format(_)] + upper_limit = ( + 1 + + offset + + control_deviation + + edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ + "mv_max_v_rise" + ] ) - v_limits_lower = edisgo_obj.timeseries.timesteps_load_feedin_case.apply( - lambda _: v_allowed_per_case["{}_lower".format(_)] + lower_limit = ( + 1 + + offset + - control_deviation + - edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ + "mv_max_v_drop" + ] ) - return v_limits_upper, v_limits_lower + return upper_limit, lower_limit -def _lv_allowed_voltage_limits(edisgo_obj, lv_grid, mode): +def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): """ - Calculates allowed upper and lower voltage limits for given LV grid. + Calculates allowed lower and upper voltage limits for either buses or transformers + in given LV grids. + + Voltage limits are determined relative to the station's secondary side, in case + limits are determined for buses in the LV grid (default), or relative to the + station's primary side, in case limits are determined for transformers. + + Limits can only be determined for grids included in power flow analysis. Parameters ---------- edisgo_obj : :class:`~.EDisGo` - lv_grid : :class:`~.network.grids.LVGrid` - LV grid to get voltage limits for. - mode : None or :obj:`str` + lv_grids : list(:class:`~.network.grids.LVGrid`) or None + LV grids to get voltage limits for. If None, limits for all LV grids + included in last power flow analysis are returned. + mode : None or str If None, voltage limits for buses in the LV network are returned. In that case the reference bus is the LV stations' secondary side. If mode is set to 'stations', voltage limits for stations' secondary @@ -956,74 +963,101 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grid, mode): Returns ------- - :pandas:`pandas.Series` - Series containing the allowed upper voltage limits in p.u.. - Index of the series are all time steps power flow was last conducted - for of type :pandas:`pandas.Timestamp`. + (:pandas:`pandas.DataFrame`, :pandas:`pandas.DataFrame`) + Dataframe containing the allowed lower and upper voltage limits in p.u.. + Index of the dataframe are all time steps power flow was last conducted + for of type :pandas:`pandas.Timestamp`. Columns are bus names as in + index of :attr:`~.network.topology.Topology.buses_df`. - :pandas:`pandas.Series` - Series containing the allowed lower voltage limits in p.u.. - Index of the series are all time steps power flow was last conducted - for of type :pandas:`pandas.Timestamp`. + If stations columns are stations secondary sides """ - v_allowed_per_case = {} + if lv_grids is None: + lv_grids = list(edisgo_obj.topology.mv_grid.lv_grids) + + upper_limits_df = pd.DataFrame() + lower_limits_df = pd.DataFrame() - # get reference voltages for different modes if mode == "stations": - # reference voltage is voltage at stations' primary side - bus_station_primary = lv_grid.transformers_df.iloc[0].bus0 - voltage_base = edisgo_obj.results.v_res.loc[:, bus_station_primary] + config_string = "mv_lv_station" + + # get all primary and secondary sides + primary_sides = pd.Series() + secondary_sides = pd.Series() + for grid in lv_grids: + primary_sides[grid] = grid.transformers_df.iloc[0].bus0 + secondary_sides[grid] = grid.station.index[0] + + voltage_base = edisgo_obj.results.v_res.loc[:, primary_sides.values] + + upper_limits_df = ( + voltage_base + + edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ + "{}_max_v_rise".format(config_string) + ] + ) + lower_limits_df = ( + voltage_base + - edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ + "{}_max_v_drop".format(config_string) + ] + ) + + # rename columns to secondary side + rename_dict = {primary_sides[g]: secondary_sides[g] for g in lv_grids} + upper_limits_df.rename(columns=rename_dict, inplace=True) + lower_limits_df.rename(columns=rename_dict, inplace=True) + else: - # reference voltage is voltage at stations' secondary side - voltage_base = edisgo_obj.results.v_res.loc[:, lv_grid.station.index.values[0]] config_string = "lv" - # calculate upper voltage limit in feed-in case and lower voltage limit in - # load case - v_allowed_per_case["feed-in_case_upper"] = ( - voltage_base - + edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ - "{}_feed-in_case_max_v_deviation".format(config_string) - ] - ) - v_allowed_per_case["load_case_lower"] = ( - voltage_base - - edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ - "{}_load_case_max_v_deviation".format(config_string) - ] - ) + # get all secondary sides and buses in grids + buses_dict = {} + secondary_sides = pd.Series() + for grid in lv_grids: + secondary_sides[grid] = grid.station.index[0] + buses_dict[grid.station.index[0]] = grid.buses_df.index.drop( + grid.station.index[0] + ) - timeindex = voltage_base.index - v_allowed_per_case["feed-in_case_lower"] = pd.Series( - edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ - "feed-in_case_lower" - ], - index=timeindex, - ) - v_allowed_per_case["load_case_upper"] = pd.Series( - edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ - "load_case_upper" - ], - index=timeindex, - ) + voltage_base = edisgo_obj.results.v_res.loc[:, secondary_sides.values] - # create series with upper and lower voltage limits for each time step - v_limits_upper = [] - v_limits_lower = [] - load_feedin_case = edisgo_obj.timeseries.timesteps_load_feedin_case - for t in timeindex: - case = load_feedin_case.loc[t] - v_limits_upper.append(v_allowed_per_case["{}_upper".format(case)].loc[t]) - v_limits_lower.append(v_allowed_per_case["{}_lower".format(case)].loc[t]) - v_limits_upper = pd.Series(v_limits_upper, index=timeindex) - v_limits_lower = pd.Series(v_limits_lower, index=timeindex) + upper_limits_df_tmp = ( + voltage_base + + edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ + "{}_max_v_rise".format(config_string) + ] + ) + lower_limits_df_tmp = ( + voltage_base + - edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ + "{}_max_v_drop".format(config_string) + ] + ) + + # rename columns to secondary side + for colname, values in upper_limits_df_tmp.iteritems(): + tmp = pd.DataFrame( + data=np.tile(values, (len(buses_dict[colname]), 1)).T, + columns=buses_dict[colname], + index=values.index, + ) + upper_limits_df = pd.concat([upper_limits_df, tmp], axis=1) + for colname, values in lower_limits_df_tmp.iteritems(): + tmp = pd.DataFrame( + data=np.tile(values, (len(buses_dict[colname]), 1)).T, + columns=buses_dict[colname], + index=values.index, + ) + lower_limits_df = pd.concat([lower_limits_df, tmp], axis=1) - return v_limits_upper, v_limits_lower + return upper_limits_df, lower_limits_df -def voltage_diff(edisgo_obj, buses, v_dev_allowed_upper, v_dev_allowed_lower): +def voltage_deviation_from_allowed_voltage_limits( + edisgo_obj, buses=None, split_voltage_band=True +): """ Function to detect under- and overvoltage at buses. @@ -1035,177 +1069,47 @@ def voltage_diff(edisgo_obj, buses, v_dev_allowed_upper, v_dev_allowed_lower): Parameters ---------- edisgo_obj : :class:`~.EDisGo` - buses : list(str) - List of buses to check voltage deviation for. - v_dev_allowed_upper : :pandas:`pandas.Series` - Series with time steps (of type :pandas:`pandas.Timestamp`) - power flow analysis was conducted for and the allowed upper limit of - voltage deviation for each time step as float in p.u.. - v_dev_allowed_lower : :pandas:`pandas.Series` - Series with time steps (of type :pandas:`pandas.Timestamp`) - power flow analysis was conducted for and the allowed lower limit of - voltage deviation for each time step as float in p.u.. + buses : list(str) or None + List of buses to check voltage deviation for. Per default voltage deviation + is returned for all buses included in the power flow analysis. Default: None. + split_voltage_band : bool + If True the allowed voltage band of +/-10 percent is allocated to the different + voltage levels MV, MV/LV and LV according to config values set in section + `grid_expansion_allowed_voltage_deviations`. If False, the same voltage limits + are used for all voltage levels. Default: True. Returns ------- :pandas:`pandas.DataFrame` - Dataframe with deviations from allowed lower voltage level. - Columns of the dataframe are all time steps power flow analysis was - conducted for of type :pandas:`pandas.Timestamp`; in the - index are all buses for which undervoltage was detected. In case of - a higher over- than undervoltage deviation for a bus, the bus does - not appear in this dataframe, but in the dataframe with overvoltage - deviations. - :pandas:`pandas.DataFrame` - Dataframe with deviations from allowed upper voltage level. - Columns of the dataframe are all time steps power flow analysis was - conducted for of type :pandas:`pandas.Timestamp`; in the - index are all buses for which overvoltage was detected. In case of - a higher under- than overvoltage deviation for a bus, the bus does - not appear in this dataframe, but in the dataframe with undervoltage - deviations. + Dataframe with deviations from allowed lower voltage level in p.u.. Positive + values signify an overvoltage whereas negative values signify an undervoltage. + Zero values signify that the voltage is within the allowed limits. + Index of the dataframe are all time steps power flow analysis was conducted for + of type :pandas:`pandas.Timestamp`. Columns are bus names as in index + of :attr:`~.network.topology.Topology.buses_df`. """ - v_mag_pu_pfa = edisgo_obj.results.v_res.loc[:, buses] + if buses is None: + buses = edisgo_obj.results.v_res.columns - v_dev_allowed_upper_format = np.tile( - (v_dev_allowed_upper.loc[v_mag_pu_pfa.index]).values, - (v_mag_pu_pfa.shape[1], 1), - ) - v_dev_allowed_lower_format = np.tile( - (v_dev_allowed_lower.loc[v_mag_pu_pfa.index]).values, - (v_mag_pu_pfa.shape[1], 1), + # get allowed voltage deviations + v_dev_allowed_upper, v_dev_allowed_lower = allowed_voltage_limits( + edisgo_obj, buses=buses, split_voltage_band=split_voltage_band ) - overvoltage = v_mag_pu_pfa.T[v_mag_pu_pfa.T > v_dev_allowed_upper_format].dropna( - how="all" - ) - undervoltage = v_mag_pu_pfa.T[v_mag_pu_pfa.T < v_dev_allowed_lower_format].dropna( - how="all" - ) - # sort buses with under- and overvoltage issues in a way that - # worst case is saved - buses_both = v_mag_pu_pfa[ - overvoltage[overvoltage.index.isin(undervoltage.index)].index - ] - voltage_diff_ov = buses_both.T - v_dev_allowed_upper.loc[v_mag_pu_pfa.index].values - voltage_diff_uv = -buses_both.T + v_dev_allowed_lower.loc[v_mag_pu_pfa.index].values - voltage_diff_ov = voltage_diff_ov.loc[ - voltage_diff_ov.max(axis=1) > voltage_diff_uv.max(axis=1) - ] - voltage_diff_uv = voltage_diff_uv.loc[ - ~voltage_diff_uv.index.isin(voltage_diff_ov.index) - ] - # handle buses with overvoltage issues and append to voltage_diff_ov - buses_ov = v_mag_pu_pfa[ - overvoltage[~overvoltage.index.isin(buses_both.columns)].index - ] - voltage_diff_ov = pd.concat( - [ - voltage_diff_ov, - buses_ov.T - v_dev_allowed_upper.loc[v_mag_pu_pfa.index].values, - ] - ) - - # handle buses with undervoltage issues and append to voltage_diff_uv - buses_uv = v_mag_pu_pfa[ - undervoltage[~undervoltage.index.isin(buses_both.columns)].index - ] - voltage_diff_uv = pd.concat( - [ - voltage_diff_uv, - -buses_uv.T + v_dev_allowed_lower.loc[v_mag_pu_pfa.index].values, - ] - ) - - return voltage_diff_uv, voltage_diff_ov - -def _voltage_deviation(edisgo_obj, buses, v_limits_upper, v_limits_lower): - """ - Function to detect voltage issues at buses. - - The function returns the highest voltage deviation from allowed lower - or upper voltage limit in p.u. for all buses with voltage issues. - - Parameters - ---------- - edisgo_obj : :class:`~.EDisGo` - buses : list(str) - List of buses to check voltage deviation for. - v_limits_upper : :pandas:`pandas.Series` - Series with time steps (of type :pandas:`pandas.Timestamp`) - power flow analysis was conducted for and the allowed upper limit of - voltage deviation for each time step as float in p.u.. - v_limits_lower : :pandas:`pandas.Series` - Series with time steps (of type :pandas:`pandas.Timestamp`) - power flow analysis was conducted for and the allowed lower limit of - voltage deviation for each time step as float in p.u.. - - Returns - ------- - pandas:`pandas.DataFrame` - Dataframe with deviations from allowed lower or upper voltage limits - sorted descending from highest to lowest voltage deviation - (it is not distinguished between over- or undervoltage). - Columns of the dataframe are 'v_diff_max' containing the maximum - absolute voltage deviation as float and 'time_index' containing the - corresponding time step the voltage issue occured in as - :pandas:`pandas.Timestamp`. Index of the dataframe are the - names of all buses with voltage issues. - - """ - - def _append_crit_buses(df): - return pd.DataFrame( - { - "v_diff_max": df.max(axis=1).values, - "time_index": df.idxmax(axis=1).values, - }, - index=df.index, - ) - - crit_buses_grid = pd.DataFrame(dtype=float) - - voltage_diff_uv, voltage_diff_ov = voltage_diff( - edisgo_obj, buses, v_limits_upper, v_limits_lower - ) - - # append to crit buses dataframe - if not voltage_diff_ov.empty: - crit_buses_grid = pd.concat( - [ - crit_buses_grid, - _append_crit_buses(voltage_diff_ov), - ] - ) - if not voltage_diff_uv.empty: - crit_buses_grid = pd.concat( - [ - crit_buses_grid, - _append_crit_buses(voltage_diff_uv), - ] - ) - - if not crit_buses_grid.empty: - crit_buses_grid.sort_values(by=["v_diff_max"], ascending=False, inplace=True) - - return crit_buses_grid - - -def check_ten_percent_voltage_deviation(edisgo_obj): - """ - Checks if 10% criteria is exceeded. + # get voltages from power flow analysis + v_mag_pu_pfa = edisgo_obj.results.v_res.loc[:, buses] - Through the 10% criteria it is ensured that voltage is kept between 0.9 - and 1.1 p.u.. In case of higher or lower voltages a ValueError is raised. + # make all entries without voltage issues NaN values + overvoltage = v_mag_pu_pfa[v_mag_pu_pfa > v_dev_allowed_upper] + undervoltage = v_mag_pu_pfa[v_mag_pu_pfa < v_dev_allowed_lower] - Parameters - ---------- - edisgo_obj : :class:`~.EDisGo` + # determine deviation from allowed voltage limits for times with voltage issues + # overvoltage deviations are positive, undervoltage deviations negative + overvoltage_dev = overvoltage - v_dev_allowed_upper + undervoltage_dev = undervoltage - v_dev_allowed_lower - """ + # combine overvoltage and undervoltage issues and set NaN values to zero + voltage_dev = overvoltage_dev.fillna(0) + undervoltage_dev.fillna(0) - v_mag_pu_pfa = edisgo_obj.results.v_res - if (v_mag_pu_pfa > 1.1).any().any() or (v_mag_pu_pfa < 0.9).any().any(): - message = "Maximum allowed voltage deviation of 10% exceeded." - raise ValueError(message) + return voltage_dev diff --git a/edisgo/flex_opt/storage_positioning.py b/edisgo/flex_opt/storage_positioning.py index 05f8b76b2..43dea8626 100644 --- a/edisgo/flex_opt/storage_positioning.py +++ b/edisgo/flex_opt/storage_positioning.py @@ -278,7 +278,7 @@ def _critical_nodes_feeder(edisgo, feeder): """ # get all nodes with voltage issues in MV network - critical_nodes = check_tech_constraints.mv_voltage_deviation( + critical_nodes = check_tech_constraints.voltage_issues( edisgo.network, voltage_levels="mv" ) if critical_nodes: diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 0d5c4a38d..6968befb1 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -130,7 +130,7 @@ def test_lines_relative_load(self): df.at[self.timesteps[2], "Line_10005"], 7.74132 / 7.27461, atol=1e-5 ) assert np.isclose( - df.at[self.timesteps[2], "Line_50000002"], 0.012644 / 0.08522, atol=1e-5 + df.at[self.timesteps[2], "Line_50000002"], 0.012644 / 0.085216, atol=1e-5 ) # check values (load case) assert np.isclose( @@ -370,163 +370,284 @@ def mv_voltage_issues(self): self.edisgo.results._v_res.loc[self.timesteps[1], bus0] = 0.88 # create overvoltage at bus1 self.edisgo.results._v_res.loc[self.timesteps[0], bus1] = 1.11 - # create undervoltage at bus0 + # create undervoltage at bus2 self.edisgo.results._v_res.loc[self.timesteps[0], bus2] = 0.895 - def test_mv_voltage_deviation(self): + def test_voltage_issues(self): - # check with no voltage issues - voltage_issues = check_tech_constraints.mv_voltage_deviation(self.edisgo) - assert {} == voltage_issues + # ########################## check mv mode ################################# + + # ################### check with no voltage issues + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, voltage_level="mv" + ) + assert voltage_issues.empty # create voltage issues self.mv_voltage_issues() - # check with voltage issues and voltage_levels="mv_lv" (default) - voltage_issues = check_tech_constraints.mv_voltage_deviation(self.edisgo) + # ################ check with voltage issues and default values + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, voltage_level="mv" + ) # check shape of dataframe - assert (3, 2) == voltage_issues["MVGrid_1"].shape + assert (3, 3) == voltage_issues.shape # check under- and overvoltage deviation values - assert list(voltage_issues["MVGrid_1"].index.values) == [ + assert list(voltage_issues.index.values) == [ "Bus_Generator_1", - "Bus_GeneratorFluctuating_2", "Bus_GeneratorFluctuating_3", + "Bus_GeneratorFluctuating_2", ] assert np.isclose( - voltage_issues["MVGrid_1"].at["Bus_GeneratorFluctuating_2", "v_diff_max"], - 0.01, - ) - assert ( - voltage_issues["MVGrid_1"].at["Bus_Generator_1", "time_index"] - == self.timesteps[1] + voltage_issues.at["Bus_GeneratorFluctuating_2", "abs_max_voltage_dev"], + 0.06, ) + assert voltage_issues.at["Bus_Generator_1", "time_index"] == self.timesteps[1] - # check with voltage issues and voltage_levels="mv" - voltage_issues = check_tech_constraints.mv_voltage_deviation(self.edisgo, "mv") + # ############# check with voltage issues and split_voltage_band = False + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, split_voltage_band=False, voltage_level="mv" + ) # check shape of dataframe - assert (3, 2) == voltage_issues["MVGrid_1"].shape + assert (3, 3) == voltage_issues.shape # check under- and overvoltage deviation values - assert list(voltage_issues["MVGrid_1"].index.values) == [ + assert list(voltage_issues.index.values) == [ "Bus_Generator_1", - "Bus_GeneratorFluctuating_3", "Bus_GeneratorFluctuating_2", + "Bus_GeneratorFluctuating_3", ] assert np.isclose( - voltage_issues["MVGrid_1"].at["Bus_GeneratorFluctuating_2", "v_diff_max"], + voltage_issues.at["Bus_GeneratorFluctuating_2", "abs_max_voltage_dev"], 0.01, ) - assert ( - voltage_issues["MVGrid_1"].at["Bus_Generator_1", "time_index"] - == self.timesteps[1] - ) - - def test_lv_voltage_deviation(self): + assert voltage_issues.at["Bus_Generator_1", "time_index"] == self.timesteps[1] - # check with default values that there are no voltage issues - voltage_issues = check_tech_constraints.lv_voltage_deviation(self.edisgo) - assert {} == voltage_issues - - # check with mode "stations" and default value for voltage_level that - # there are no voltage issues - voltage_issues = check_tech_constraints.lv_voltage_deviation( - self.edisgo, mode="stations" - ) - assert {} == voltage_issues + # ########################## check lv mode ################################# - # check that voltage issue in station of LVGrid_6 is detected when - # voltage_levels="lv" - voltage_issues = check_tech_constraints.lv_voltage_deviation( - self.edisgo, voltage_levels="lv", mode="stations" - ) - assert len(voltage_issues) == 1 - assert len(voltage_issues["LVGrid_6"]) == 1 - assert np.isclose( - voltage_issues["LVGrid_6"].loc["BusBar_MVGrid_1_LVGrid_6_LV", "v_diff_max"], - 0.0106225, + # ######## check with default values that there are no voltage issues + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, voltage_level="lv" ) + assert voltage_issues.empty - # check with voltage_levels="lv" and mode=None - # create one voltage issue in LVGrid_6 + # ############### check with default + # create voltage issue in LVGrid_6 self.edisgo.results.v_res.at[ self.timesteps[2], "BusBar_MVGrid_1_LVGrid_6_LV" ] = 1.14 self.edisgo.results.v_res.at[ self.timesteps[2], "Bus_BranchTee_LVGrid_6_1" ] = 1.18 - voltage_issues = check_tech_constraints.lv_voltage_deviation( - self.edisgo, voltage_levels="lv" + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, voltage_level="lv" ) - assert len(voltage_issues) == 1 - assert len(voltage_issues["LVGrid_6"]) == 1 + assert len(voltage_issues) == 2 assert np.isclose( - voltage_issues["LVGrid_6"].loc["Bus_BranchTee_LVGrid_6_1", "v_diff_max"], + voltage_issues.at["Bus_BranchTee_LVGrid_6_1", "abs_max_voltage_dev"], 0.005, ) - # create second voltage issue in LVGrid_6, greater than first issue - self.edisgo.results.v_res.at[ - self.timesteps[2], "Bus_BranchTee_LVGrid_6_2" - ] = 1.19 - voltage_issues = check_tech_constraints.lv_voltage_deviation( - self.edisgo, voltage_levels="lv" + assert voltage_issues.index[0] == "Bus_BranchTee_LVGrid_6_2" + + # ################ check with split_voltage_band = False + # uses same voltage issues as created above + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, voltage_level="lv", split_voltage_band=False ) assert len(voltage_issues) == 1 - assert len(voltage_issues["LVGrid_6"]) == 2 - assert voltage_issues["LVGrid_6"].index[0] == "Bus_BranchTee_LVGrid_6_2" + assert voltage_issues.index[0] == "Bus_BranchTee_LVGrid_6_1" assert np.isclose( - voltage_issues["LVGrid_6"].loc["Bus_BranchTee_LVGrid_6_2", "v_diff_max"], - 0.015, + voltage_issues.at["Bus_BranchTee_LVGrid_6_1", "abs_max_voltage_dev"], + 0.08, ) - # check with voltage_levels="mv_lv" and mode=None + # ########################## check mv_lv mode ############################### + + # ############## check that voltage issue in station of LVGrid_6 is detected # uses same voltage issues as created above - voltage_issues = check_tech_constraints.lv_voltage_deviation(self.edisgo) + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, voltage_level="mv_lv" + ) assert len(voltage_issues) == 1 - assert len(voltage_issues["LVGrid_6"]) == 3 - assert voltage_issues["LVGrid_6"].index[0] == "Bus_BranchTee_LVGrid_6_2" assert np.isclose( - voltage_issues["LVGrid_6"].loc["Bus_BranchTee_LVGrid_6_2", "v_diff_max"], - 0.09, + voltage_issues.at["BusBar_MVGrid_1_LVGrid_6_LV", "abs_max_voltage_dev"], + 0.125027, ) - # check with voltage_levels="mv_lv" and mode="stations" + # ######### check with split_voltage_band = False and mode="stations" # uses same voltage issues as created above - voltage_issues = check_tech_constraints.lv_voltage_deviation( - self.edisgo, mode="stations" + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, voltage_level="mv_lv", split_voltage_band=False ) assert len(voltage_issues) == 1 - assert len(voltage_issues["LVGrid_6"]) == 1 assert np.isclose( - voltage_issues["LVGrid_6"].loc["BusBar_MVGrid_1_LVGrid_6_LV", "v_diff_max"], + voltage_issues.at["BusBar_MVGrid_1_LVGrid_6_LV", "abs_max_voltage_dev"], 0.04, ) - def test__mv_allowed_voltage_limits(self): - # run function with voltage_levels="mv" + # ########################## check mv_lv mode ############################### + + # ################ check with voltage issues and default values + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, voltage_level=None + ) + # check shape of dataframe + assert (6, 3) == voltage_issues.shape + + def test__voltage_issues_helper(self): + + # create voltage issues + self.mv_voltage_issues() + + v_violations = check_tech_constraints._voltage_issues_helper( + self.edisgo, + self.edisgo.topology.mv_grid.buses_df.index, + split_voltage_band=False, + ) + + # check shape of dataframe + assert (3, 2) == v_violations.shape + # check under- and overvoltage deviation values + assert list(v_violations.index.values) == [ + "Bus_Generator_1", + "Bus_GeneratorFluctuating_2", + "Bus_GeneratorFluctuating_3", + ] + assert np.isclose( + v_violations.at["Bus_GeneratorFluctuating_2", "abs_max_voltage_dev"], 0.01 + ) + assert v_violations.at["Bus_Generator_1", "time_index"] == self.timesteps[1] + + def test_allowed_voltage_limits(self): + lv_grid_1 = self.edisgo.topology.get_lv_grid(1) + lv_grid_3 = self.edisgo.topology.get_lv_grid(3) + + # ############## test with default values + # set voltage at stations' primary side to known value + self.edisgo.results._v_res.loc[ + self.timesteps[3], "BusBar_MVGrid_1_LVGrid_1_MV" + ] = 1.03 + self.edisgo.results._v_res.loc[ + self.timesteps[1], "BusBar_MVGrid_1_LVGrid_3_MV" + ] = 0.99 + # set voltage at stations' secondary side to known value + self.edisgo.results._v_res.loc[ + self.timesteps[2], "BusBar_MVGrid_1_LVGrid_1_LV" + ] = 1.05 + self.edisgo.results._v_res.loc[ + self.timesteps[1], "BusBar_MVGrid_1_LVGrid_3_LV" + ] = 0.97 + ( v_limits_upper, v_limits_lower, - ) = check_tech_constraints._mv_allowed_voltage_limits(self.edisgo, "mv") + ) = check_tech_constraints.allowed_voltage_limits(self.edisgo) + + # check shape + assert v_limits_lower.shape == (4, len(self.edisgo.topology.buses_df)) + assert v_limits_upper.shape == (4, len(self.edisgo.topology.buses_df)) - assert 1.05 == v_limits_upper.loc[self.timesteps[2]] - assert 1.10 == v_limits_upper.loc[self.timesteps[0]] - assert 0.90 == v_limits_lower.loc[self.timesteps[2]] - assert 0.985 == v_limits_lower.loc[self.timesteps[0]] + # check values + # mv + assert ( + ( + 1.05 + == v_limits_upper.loc[ + :, ["Bus_GeneratorFluctuating_8", "BusBar_MVGrid_1_LVGrid_1_MV"] + ] + ) + .all() + .all() + ) + assert ( + ( + 0.985 + == v_limits_lower.loc[ + :, ["Bus_GeneratorFluctuating_8", "BusBar_MVGrid_1_LVGrid_1_MV"] + ] + ) + .all() + .all() + ) + # stations + assert ( + 1.03 + 0.015 + == v_limits_upper.at[self.timesteps[3], "BusBar_MVGrid_1_LVGrid_1_LV"] + ) + assert ( + 1.03 - 0.02 + == v_limits_lower.at[self.timesteps[3], "BusBar_MVGrid_1_LVGrid_1_LV"] + ) + assert ( + 0.99 - 0.02 + == v_limits_lower.at[self.timesteps[1], "BusBar_MVGrid_1_LVGrid_3_LV"] + ) + # lv + assert ( + 1.05 + 0.035 + == v_limits_upper.loc[ + self.timesteps[2], + lv_grid_1.buses_df.index.drop(lv_grid_1.station.index[0]), + ] + ).all() + assert ( + 1.05 - 0.065 + == v_limits_lower.loc[ + self.timesteps[2], + lv_grid_1.buses_df.index.drop(lv_grid_1.station.index[0]), + ] + ).all() + assert ( + 0.97 - 0.065 + == v_limits_lower.loc[ + self.timesteps[1], + lv_grid_3.buses_df.index.drop(lv_grid_3.station.index[0]), + ] + ).all() - # run function with voltage_levels="mv_lv" + # ############## test with specifying buses ( v_limits_upper, v_limits_lower, - ) = check_tech_constraints._mv_allowed_voltage_limits(self.edisgo, "mv_lv") + ) = check_tech_constraints.allowed_voltage_limits( + self.edisgo, + buses=["BusBar_MVGrid_1_LVGrid_3_LV", "Bus_GeneratorFluctuating_8"], + ) + + # check shape + assert v_limits_lower.shape == (4, 2) + assert v_limits_upper.shape == (4, 2) + + # ############## test 10 percent + ( + v_limits_upper, + v_limits_lower, + ) = check_tech_constraints.allowed_voltage_limits( + self.edisgo, + buses=["BusBar_MVGrid_1_LVGrid_3_LV", "Bus_GeneratorFluctuating_8"], + split_voltage_band=False, + ) + + # check shape + assert v_limits_lower.shape == (4, 2) + assert v_limits_upper.shape == (4, 2) + + def test__mv_allowed_voltage_limits(self): + + ( + v_limits_upper, + v_limits_lower, + ) = check_tech_constraints._mv_allowed_voltage_limits(self.edisgo) - assert 1.10 == v_limits_upper.loc[self.timesteps[3]] - assert 1.10 == v_limits_upper.loc[self.timesteps[0]] - assert 0.90 == v_limits_lower.loc[self.timesteps[3]] - assert 0.90 == v_limits_lower.loc[self.timesteps[0]] + assert 1.05 == v_limits_upper + assert 0.985 == v_limits_lower def test__lv_allowed_voltage_limits(self): - # get LVGrid_1 object - lv_grid = self.edisgo.topology.get_lv_grid(1) + lv_grid_1 = self.edisgo.topology.get_lv_grid(1) + lv_grid_3 = self.edisgo.topology.get_lv_grid(3) + + # ############## test with default values + # set voltage at stations' secondary side to known value self.edisgo.results._v_res.loc[ self.timesteps[2], "BusBar_MVGrid_1_LVGrid_1_LV" @@ -534,19 +655,58 @@ def test__lv_allowed_voltage_limits(self): self.edisgo.results._v_res.loc[ self.timesteps[0], "BusBar_MVGrid_1_LVGrid_1_LV" ] = 0.98 + self.edisgo.results._v_res.loc[ + self.timesteps[1], "BusBar_MVGrid_1_LVGrid_3_LV" + ] = 0.97 - # run function with mode=None ( v_limits_upper, v_limits_lower, - ) = check_tech_constraints._lv_allowed_voltage_limits( - self.edisgo, lv_grid, mode=None - ) + ) = check_tech_constraints._lv_allowed_voltage_limits(self.edisgo, mode=None) - assert 1.085 == v_limits_upper.loc[self.timesteps[2]] - assert 1.10 == v_limits_upper.loc[self.timesteps[0]] - assert 0.90 == v_limits_lower.loc[self.timesteps[2]] - assert 0.915 == v_limits_lower.loc[self.timesteps[0]] + # check shape + assert v_limits_lower.shape == (4, 99) + assert v_limits_upper.shape == (4, 99) + + # check values + + assert ( + 1.05 + 0.035 + == v_limits_upper.loc[ + self.timesteps[2], + lv_grid_1.buses_df.index.drop(lv_grid_1.station.index[0]), + ] + ).all() + assert ( + 0.98 + 0.035 + == v_limits_upper.loc[ + self.timesteps[0], + lv_grid_1.buses_df.index.drop(lv_grid_1.station.index[0]), + ] + ).all() + assert ( + 1.05 - 0.065 + == v_limits_lower.loc[ + self.timesteps[2], + lv_grid_1.buses_df.index.drop(lv_grid_1.station.index[0]), + ] + ).all() + assert ( + 0.98 - 0.065 + == v_limits_lower.loc[ + self.timesteps[0], + lv_grid_1.buses_df.index.drop(lv_grid_1.station.index[0]), + ] + ).all() + assert ( + 0.97 - 0.065 + == v_limits_lower.loc[ + self.timesteps[1], + lv_grid_3.buses_df.index.drop(lv_grid_3.station.index[0]), + ] + ).all() + + # ############## test with mode stations and providing grids # set voltage at stations' primary side to known value self.edisgo.results._v_res.loc[ @@ -556,78 +716,108 @@ def test__lv_allowed_voltage_limits(self): self.timesteps[1], "BusBar_MVGrid_1_LVGrid_1_MV" ] = 0.99 - # run function with mode='stations' ( v_limits_upper, v_limits_lower, ) = check_tech_constraints._lv_allowed_voltage_limits( - self.edisgo, lv_grid, mode="stations" + self.edisgo, mode="stations", lv_grids=[lv_grid_1] ) - assert 1.045 == v_limits_upper.loc[self.timesteps[3]] - assert 1.10 == v_limits_upper.loc[self.timesteps[1]] - assert 0.90 == v_limits_lower.loc[self.timesteps[3]] - assert 0.97 == v_limits_lower.loc[self.timesteps[1]] - - def test_voltage_diff(self): + # check shape + assert v_limits_lower.shape == (4, 1) + assert v_limits_upper.shape == (4, 1) - # create voltage issues - self.mv_voltage_issues() - - uv_violations, ov_violations = check_tech_constraints.voltage_diff( - self.edisgo, - self.edisgo.topology.mv_grid.buses_df.index, - pd.Series(data=1.1, index=self.timesteps), - pd.Series(data=0.9, index=self.timesteps), + # check values + assert ( + 1.03 + 0.015 + == v_limits_upper.at[self.timesteps[3], "BusBar_MVGrid_1_LVGrid_1_LV"] ) - - # check shapes of under- and overvoltage dataframes - assert (2, 4) == uv_violations.shape - assert (1, 4) == ov_violations.shape - # check under- and overvoltage deviation values - assert np.isclose(uv_violations.at["Bus_Generator_1", self.timesteps[1]], 0.02) - assert np.isclose( - uv_violations.at["Bus_GeneratorFluctuating_3", self.timesteps[0]], - 0.005, + assert ( + 0.99 + 0.015 + == v_limits_upper.at[self.timesteps[1], "BusBar_MVGrid_1_LVGrid_1_LV"] ) - assert np.isclose( - ov_violations.at["Bus_GeneratorFluctuating_2", self.timesteps[0]], - 0.01, + assert ( + 1.03 - 0.02 + == v_limits_lower.at[self.timesteps[3], "BusBar_MVGrid_1_LVGrid_1_LV"] + ) + assert ( + 0.99 - 0.02 + == v_limits_lower.at[self.timesteps[1], "BusBar_MVGrid_1_LVGrid_1_LV"] ) - assert np.isclose(uv_violations.at["Bus_Generator_1", self.timesteps[0]], -0.21) - def test__voltage_deviation(self): + def test_voltage_deviation_from_allowed_voltage_limits(self): - # create voltage issues + # create MV voltage issues self.mv_voltage_issues() - v_violations = check_tech_constraints._voltage_deviation( - self.edisgo, - self.edisgo.topology.mv_grid.buses_df.index, - pd.Series(data=1.1, index=self.timesteps), - pd.Series(data=0.9, index=self.timesteps), + # ############## test with default values + voltage_dev = ( + check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + self.edisgo + ) ) - # check shape of dataframe - assert (3, 2) == v_violations.shape - # check under- and overvoltage deviation values - assert list(v_violations.index.values) == [ + assert voltage_dev.shape == (4, 140) + # check that there are voltage issues created through mv_voltage_issues() and + # at "BusBar_MVGrid_1_LVGrid_6_LV" detected + comps_with_v_issues = ( + voltage_dev[voltage_dev != 0].dropna(how="all", axis=1).columns + ) + comps_with_v_issues_expected = [ + "BusBar_MVGrid_1_LVGrid_6_LV", "Bus_Generator_1", "Bus_GeneratorFluctuating_2", "Bus_GeneratorFluctuating_3", ] + assert len(comps_with_v_issues) == 4 + assert ( + len([_ for _ in comps_with_v_issues_expected if _ in comps_with_v_issues]) + == 4 + ) assert np.isclose( - v_violations.at["Bus_GeneratorFluctuating_2", "v_diff_max"], 0.01 + voltage_dev.at[self.timesteps[0], "BusBar_MVGrid_1_LVGrid_6_LV"], + -0.0106225, + ) + assert np.isclose( + voltage_dev.at[self.timesteps[0], "Bus_Generator_1"], + 1.11 - 1.05, + ) + assert np.isclose( + voltage_dev.at[self.timesteps[1], "Bus_Generator_1"], + 0.88 - 0.985, ) - assert v_violations.at["Bus_Generator_1", "time_index"] == self.timesteps[1] - def test_check_ten_percent_voltage_deviation(self): - # check without voltage issues greater than 10% - check_tech_constraints.check_ten_percent_voltage_deviation(self.edisgo) - # create voltage issues greater 10% and check again - self.edisgo.results.v_res.at[ - self.timesteps[0], "BusBar_MVGrid_1_LVGrid_9_MV" - ] = 1.14 - msg = "Maximum allowed voltage deviation of 10% exceeded." - with pytest.raises(ValueError, match=msg): - check_tech_constraints.check_ten_percent_voltage_deviation(self.edisgo) + # ############## test with split_voltage_band False + voltage_dev = ( + check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + self.edisgo, split_voltage_band=False + ) + ) + + assert voltage_dev.shape == (4, 140) + # check that "BusBar_MVGrid_1_LVGrid_6_LV" does now not have any voltage issues + comps_with_v_issues = ( + voltage_dev[voltage_dev != 0].dropna(how="all", axis=1).columns + ) + assert len(comps_with_v_issues) == 3 + assert "BusBar_MVGrid_1_LVGrid_6_LV" not in comps_with_v_issues + assert np.isclose( + voltage_dev.at[self.timesteps[0], "Bus_GeneratorFluctuating_2"], + 1.11 - 1.1, + ) + + # ############## test with specifying buses + voltage_dev = ( + check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + self.edisgo, + split_voltage_band=False, + buses=["Bus_GeneratorFluctuating_3", "Bus_BranchTee_LVGrid_1_2"], + ) + ) + + assert voltage_dev.shape == (4, 2) + assert (voltage_dev.loc[:, "Bus_BranchTee_LVGrid_1_2"] == 0.0).all() + assert np.isclose( + voltage_dev.at[self.timesteps[0], "Bus_GeneratorFluctuating_3"], + 0.895 - 0.9, + ) diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 5b4d7f0bd..a2ab1e191 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -364,7 +364,7 @@ def test_analyze(self, caplog): def test_reinforce(self): self.setup_worst_case_time_series() - results = self.edisgo.reinforce(combined_analysis=True) + results = self.edisgo.reinforce(split_voltage_band=False) assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 10 assert len(results.equipment_changes) == 10 From 31f09069e3afaf404bae56704a0d795a06c0ef22 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 16:17:45 +0100 Subject: [PATCH 057/355] Adapt reinforce measures --- edisgo/flex_opt/reinforce_measures.py | 34 ++++++++--------------- tests/flex_opt/test_reinforce_measures.py | 13 +++++---- 2 files changed, 19 insertions(+), 28 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 220f70aed..c195ab7cd 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -272,14 +272,10 @@ def reinforce_mv_lv_station_voltage_issues(edisgo_obj, critical_stations): Parameters ---------- edisgo_obj : :class:`~.EDisGo` - critical_stations : :obj:`dict` - Dictionary with representative of :class:`~.network.grids.LVGrid` as - key and a :pandas:`pandas.DataFrame` with station's voltage - deviation from allowed lower or upper voltage limit as value. - Index of the dataframe is the station with voltage issues. - Columns are 'v_diff_max' containing the maximum voltage deviation as - float and 'time_index' containing the corresponding time step the - voltage issue occured in as :pandas:`pandas.Timestamp`. + critical_stations : :pandas:`pandas.DataFrame` + Dataframe with maximum deviations from allowed lower or upper voltage limits + in p.u. for all MV-LV stations with voltage issues. For more information on + dataframe see :attr:`~.flex_opt.check_tech_constraints.voltage_issues`. Returns ------- @@ -306,11 +302,9 @@ def reinforce_mv_lv_station_voltage_issues(edisgo_obj, critical_stations): raise KeyError("Standard MV/LV transformer is not in equipment list.") transformers_changes = {"added": {}} - for grid_name in critical_stations.keys(): - if "MV" in grid_name: - grid = edisgo_obj.topology.mv_grid - else: - grid = edisgo_obj.topology.get_lv_grid(grid_name) + for station in critical_stations.index: + grid_id = critical_stations.at[station, "lv_grid_id"] + grid = edisgo_obj.topology.get_lv_grid(int(grid_id)) # get any transformer to get attributes for new transformer from duplicated_transformer = grid.transformers_df.iloc[[0]] # change transformer parameters @@ -329,7 +323,7 @@ def reinforce_mv_lv_station_voltage_issues(edisgo_obj, critical_stations): duplicated_transformer, ] ) - transformers_changes["added"][grid_name] = duplicated_transformer.index.tolist() + transformers_changes["added"][str(grid)] = duplicated_transformer.index.tolist() if transformers_changes["added"]: logger.debug( @@ -349,15 +343,9 @@ def reinforce_lines_voltage_issues(edisgo_obj, grid, crit_nodes): edisgo_obj : :class:`~.EDisGo` grid : :class:`~.network.grids.MVGrid` or :class:`~.network.grids.LVGrid` crit_nodes : :pandas:`pandas.DataFrame` - Dataframe with all nodes with voltage issues in the grid and - their maximal deviations from allowed lower or upper voltage limits - sorted descending from highest to lowest voltage deviation - (it is not distinguished between over- or undervoltage). - Columns of the dataframe are 'v_diff_max' containing the maximum - absolute voltage deviation as float and 'time_index' containing the - corresponding time step the voltage issue occured in as - :pandas:`pandas.Timestamp`. Index of the dataframe are the - names of all buses with voltage issues. + Dataframe with maximum deviations from allowed lower or upper voltage limits + in p.u. for all buses in specified grid. For more information on dataframe see + :attr:`~.flex_opt.check_tech_constraints.voltage_issues`. Returns ------- diff --git a/tests/flex_opt/test_reinforce_measures.py b/tests/flex_opt/test_reinforce_measures.py index 3f068ddec..40acf4eab 100644 --- a/tests/flex_opt/test_reinforce_measures.py +++ b/tests/flex_opt/test_reinforce_measures.py @@ -160,11 +160,14 @@ def test_reinforce_hv_mv_station_overloading(self): def test_reinforce_mv_lv_station_voltage_issues(self): self.edisgo = copy.deepcopy(self.edisgo_root) - station_9 = pd.DataFrame( - {"v_diff_max": [0.03], "time_index": [self.timesteps[0]]}, + crit_stations = pd.DataFrame( + { + "abs_max_voltage_dev": [0.03], + "time_index": [self.timesteps[0]], + "lv_grid_id": 9.0, + }, index=["Bus_secondary_LVStation_9"], ) - crit_stations = {"LVGrid_9": station_9} trafos_pre = self.edisgo.topology.transformers_df @@ -212,7 +215,7 @@ def test_reinforce_lines_voltage_issues(self): crit_nodes = pd.DataFrame( { - "v_diff_max": [0.08, 0.06, 0.05, 0.04], + "abs_max_voltage_dev": [0.08, 0.06, 0.05, 0.04], "time_index": [ self.timesteps[0], self.timesteps[0], @@ -306,7 +309,7 @@ def test_reinforce_lines_voltage_issues(self): crit_nodes = pd.DataFrame( { - "v_diff_max": [0.08, 0.05], + "abs_max_voltage_dev": [0.08, 0.05], "time_index": [self.timesteps[0], self.timesteps[0]], }, index=["Bus_BranchTee_LVGrid_5_2", "Bus_BranchTee_LVGrid_5_5"], From f00f5b151dd94e6127b532b96ea576bc938d167c Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 16:20:30 +0100 Subject: [PATCH 058/355] Adapt reinforce_grid --- edisgo/flex_opt/reinforce_grid.py | 78 +++++++++++++++++++------------ 1 file changed, 47 insertions(+), 31 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 8900c40ee..d9ed03c1a 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -25,7 +25,7 @@ def reinforce_grid( timesteps_pfa: str | pd.DatetimeIndex | pd.Timestamp | None = None, copy_grid: bool = False, max_while_iterations: int = 20, - combined_analysis: bool = False, + split_voltage_band: bool = True, mode: str | None = None, ) -> Results: """ @@ -64,17 +64,18 @@ def reinforce_grid( :pandas:`pandas.Timestamp` Use this option to explicitly choose which time steps to consider. - copy_grid : :obj:`Boolean` + copy_grid : bool If True reinforcement is conducted on a copied grid and discarded. Default: False. - max_while_iterations : :obj:`int` + max_while_iterations : int Maximum number of times each while loop is conducted. - combined_analysis : :obj:`Boolean` - If True allowed voltage deviations for combined analysis of MV and LV - topology are used. If False different allowed voltage deviations for MV - and LV are used. See also config section - `grid_expansion_allowed_voltage_deviations`. If `mode` is set to 'mv' - `combined_analysis` should be False. Default: False. + split_voltage_band : bool + If True the allowed voltage band of +/-10 percent is allocated to the different + voltage levels MV, MV/LV and LV according to config values set in section + `grid_expansion_allowed_voltage_deviations`. If False, the same voltage limits + are used for all voltage levels. Be aware that this does currently not work + correctly. + Default: True. mode : :obj:`str` Determines network levels reinforcement is conducted for. Specify @@ -140,6 +141,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if provided mode is valid if mode and mode not in ["mv", "mvlv", "lv"]: raise ValueError(f"Provided mode {mode} is not a valid mode.") + # give warning in case split_voltage_band is set to False + if split_voltage_band is False: + logger.warning( + "You called the 'reinforce_grid' grid function with option " + "'split_voltage_band' = False. Be aware that this does " + "currently not work correctly and might lead to infeasible " + "grid reinforcement." + ) # in case reinforcement needs to be conducted on a copied graph the # edisgo object is deep copied @@ -306,13 +315,12 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # solve voltage problems in MV topology logger.debug("==> Check voltage in MV topology.") - voltage_levels = "mv_lv" if combined_analysis else "mv" crit_nodes = ( False if mode == "lv" - else checks.mv_voltage_deviation( - edisgo_reinforce, voltage_levels=voltage_levels + else checks.voltage_issues( + edisgo_reinforce, voltage_level="mv", split_voltage_band=split_voltage_band ) ) @@ -323,7 +331,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): lines_changes = reinforce_measures.reinforce_lines_voltage_issues( edisgo_reinforce, edisgo_reinforce.topology.mv_grid, - crit_nodes[repr(edisgo_reinforce.topology.mv_grid)], + crit_nodes, ) # write changed lines to results.equipment_changes _add_lines_changes_to_equipment_changes() @@ -334,8 +342,8 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) logger.debug("==> Recheck voltage in MV topology.") - crit_nodes = checks.mv_voltage_deviation( - edisgo_reinforce, voltage_levels=voltage_levels + crit_nodes = checks.voltage_issues( + edisgo_reinforce, voltage_level="mv", split_voltage_band=split_voltage_band ) iteration_step += 1 @@ -364,10 +372,10 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if mode != "mv": logger.debug("==> Check voltage at secondary side of LV stations.") - voltage_levels = "mv_lv" if combined_analysis else "lv" - - crit_stations = checks.lv_voltage_deviation( - edisgo_reinforce, mode="stations", voltage_levels=voltage_levels + crit_stations = checks.voltage_issues( + edisgo_reinforce, + voltage_level="mv_lv", + split_voltage_band=split_voltage_band, ) while_counter = 0 @@ -387,10 +395,10 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) logger.debug("==> Recheck voltage at secondary side of LV stations.") - crit_stations = checks.lv_voltage_deviation( + crit_stations = checks.voltage_issues( edisgo_reinforce, - mode="stations", - voltage_levels=voltage_levels, + voltage_level="mv_lv", + split_voltage_band=split_voltage_band, ) iteration_step += 1 @@ -407,7 +415,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) raise exceptions.MaximumIterationError( "Over-voltage issues at busbar could not be solved for the " - f"following LV grids: {crit_stations}" + f"following LV grids: {crit_stations.lv_grid_id.unique()}" ) else: logger.info( @@ -418,19 +426,19 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # solve voltage problems in LV grids if not mode or mode == "lv": logger.debug("==> Check voltage in LV grids.") - crit_nodes = checks.lv_voltage_deviation( - edisgo_reinforce, voltage_levels=voltage_levels + crit_nodes = checks.voltage_issues( + edisgo_reinforce, voltage_level="lv", split_voltage_band=split_voltage_band ) while_counter = 0 while crit_nodes and while_counter < max_while_iterations: # for every topology in crit_nodes do reinforcement - for grid in crit_nodes: + for grid_id in crit_nodes.lv_grid_id.unique(): # reinforce lines lines_changes = reinforce_measures.reinforce_lines_voltage_issues( edisgo_reinforce, - edisgo_reinforce.topology.get_lv_grid(grid), - crit_nodes[grid], + edisgo_reinforce.topology.get_lv_grid(int(grid_id)), + crit_nodes[crit_nodes.lv_grid_id == grid_id], ) # write changed lines to results.equipment_changes _add_lines_changes_to_equipment_changes() @@ -441,8 +449,10 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa) logger.debug("==> Recheck voltage in LV grids.") - crit_nodes = checks.lv_voltage_deviation( - edisgo_reinforce, voltage_levels=voltage_levels + crit_nodes = checks.voltage_issues( + edisgo_reinforce, + voltage_level="lv", + split_voltage_band=split_voltage_band, ) iteration_step += 1 @@ -592,7 +602,13 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) # final check 10% criteria - checks.check_ten_percent_voltage_deviation(edisgo_reinforce) + voltage_dev = checks.voltage_deviation_from_allowed_voltage_limits( + edisgo_reinforce, split_voltage_band=False + ) + voltage_dev = voltage_dev[voltage_dev != 0.0].dropna(how="all").dropna(how="all") + if not voltage_dev.empty: + message = "Maximum allowed voltage deviation of 10% exceeded." + raise ValueError(message) # calculate topology expansion costs edisgo_reinforce.results.grid_expansion_costs = grid_expansion_costs( From b7ec50e8bbb4477d25cbc0c634dfa4d52bf3098d Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 18:58:46 +0100 Subject: [PATCH 059/355] Bug fixes --- edisgo/flex_opt/check_tech_constraints.py | 37 +++++++++++++++---- edisgo/flex_opt/reinforce_grid.py | 8 ++-- tests/flex_opt/test_check_tech_constraints.py | 22 +++++++++++ 3 files changed, 55 insertions(+), 12 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 5de20e6a1..44ee5329a 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -863,7 +863,7 @@ def allowed_voltage_limits(edisgo_obj, buses=None, split_voltage_band=True): """ if buses is None: - buses = edisgo_obj.topology.buses_df.index + buses = edisgo_obj.results.v_res.columns if split_voltage_band: @@ -888,6 +888,20 @@ def allowed_voltage_limits(edisgo_obj, buses=None, split_voltage_band=True): # concat results and select relevant buses upper = pd.concat([mv_upper, stations_upper, lv_upper], axis=1) lower = pd.concat([mv_lower, stations_lower, lv_lower], axis=1) + + # check if allowed voltage limits could be determined for all specified buses + allowed_buses = upper.columns + buses_not_incl = list(set(buses) - set(allowed_buses)) + if buses_not_incl: + logger.debug( + f"Allowed voltage limits cannot be determined for all given buses as " + f"voltage information from power flow analysis is needed to calculate " + f"allowed voltage for the MV/LV and LV level but the buses were not " + f"included in the power flow analysis. " + f"This concerns the following buses: {buses_not_incl}." + ) + buses = list(set(buses) - set(buses_not_incl)) + return upper.loc[:, buses], lower.loc[:, buses] else: upper = pd.DataFrame(1.1, columns=buses, index=edisgo_obj.results.v_res.index) @@ -977,6 +991,7 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): upper_limits_df = pd.DataFrame() lower_limits_df = pd.DataFrame() + buses_in_pfa = edisgo_obj.results.v_res.columns if mode == "stations": @@ -986,8 +1001,10 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): primary_sides = pd.Series() secondary_sides = pd.Series() for grid in lv_grids: - primary_sides[grid] = grid.transformers_df.iloc[0].bus0 - secondary_sides[grid] = grid.station.index[0] + primary_side = grid.transformers_df.iloc[0].bus0 + if primary_side in buses_in_pfa: + primary_sides[grid] = primary_side + secondary_sides[grid] = grid.station.index[0] voltage_base = edisgo_obj.results.v_res.loc[:, primary_sides.values] @@ -1005,7 +1022,9 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): ) # rename columns to secondary side - rename_dict = {primary_sides[g]: secondary_sides[g] for g in lv_grids} + rename_dict = { + primary_sides[g]: secondary_sides[g] for g in primary_sides.keys() + } upper_limits_df.rename(columns=rename_dict, inplace=True) lower_limits_df.rename(columns=rename_dict, inplace=True) @@ -1016,10 +1035,12 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): buses_dict = {} secondary_sides = pd.Series() for grid in lv_grids: - secondary_sides[grid] = grid.station.index[0] - buses_dict[grid.station.index[0]] = grid.buses_df.index.drop( - grid.station.index[0] - ) + secondary_side = grid.station.index[0] + if secondary_side in buses_in_pfa: + secondary_sides[grid] = secondary_side + buses_dict[grid.station.index[0]] = grid.buses_df.index.drop( + grid.station.index[0] + ) voltage_base = edisgo_obj.results.v_res.loc[:, secondary_sides.values] diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index d9ed03c1a..e66d386e9 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -317,7 +317,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Check voltage in MV topology.") crit_nodes = ( - False + pd.DataFrame() if mode == "lv" else checks.voltage_issues( edisgo_reinforce, voltage_level="mv", split_voltage_band=split_voltage_band @@ -325,7 +325,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) while_counter = 0 - while crit_nodes and while_counter < max_while_iterations: + while not crit_nodes.empty and while_counter < max_while_iterations: # reinforce lines lines_changes = reinforce_measures.reinforce_lines_voltage_issues( @@ -379,7 +379,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) while_counter = 0 - while crit_stations and while_counter < max_while_iterations: + while not crit_stations.empty and while_counter < max_while_iterations: # reinforce distribution substations transformer_changes = ( reinforce_measures.reinforce_mv_lv_station_voltage_issues( @@ -431,7 +431,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) while_counter = 0 - while crit_nodes and while_counter < max_while_iterations: + while not crit_nodes.empty and while_counter < max_while_iterations: # for every topology in crit_nodes do reinforcement for grid_id in crit_nodes.lv_grid_id.unique(): # reinforce lines diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 6968befb1..cae2c54bd 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -631,6 +631,28 @@ def test_allowed_voltage_limits(self): assert v_limits_lower.shape == (4, 2) assert v_limits_upper.shape == (4, 2) + # ############### test with missing power flow results + self.edisgo.analyze(mode="lv", lv_grid_id=1) + upper, lower = check_tech_constraints.allowed_voltage_limits( + self.edisgo, buses=self.edisgo.topology.buses_df.index + ) + assert upper.shape == (4, 45) + + self.edisgo.analyze(mode="lv", lv_grid_id=1) + upper, lower = check_tech_constraints.allowed_voltage_limits( + self.edisgo, + buses=self.edisgo.topology.buses_df.index.drop( + self.edisgo.topology.mv_grid.buses_df.index + ), + ) + assert upper.shape == (4, 14) + + self.edisgo.analyze(mode="mv") + upper, lower = check_tech_constraints.allowed_voltage_limits( + self.edisgo, buses=self.edisgo.topology.buses_df.index + ) + assert upper.shape == (4, 41) + def test__mv_allowed_voltage_limits(self): ( From 25e47440b56a97dcf89d26f85588ac936932319e Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 19:23:03 +0100 Subject: [PATCH 060/355] Minor doc changes --- edisgo/flex_opt/check_tech_constraints.py | 12 +++++++----- edisgo/network/timeseries.py | 2 +- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 44ee5329a..aa43fa5a4 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -713,7 +713,8 @@ def voltage_issues(edisgo_obj, voltage_level, split_voltage_band=True): corresponding time step the maximum voltage issue occured in as :pandas:`pandas.Timestamp`, and 'lv_grid_id' giving the LV grid ID the bus is in as integer. Index of the dataframe are the - names of all buses with voltage issues. + names of all buses with voltage issues as in index of + :attr:`~.network.topology.Topology.buses_df`. Notes ----- @@ -816,7 +817,8 @@ def _voltage_issues_helper(edisgo_obj, buses, split_voltage_band): absolute voltage deviation as float and 'time_index' containing the corresponding time step the maximum voltage issue occured in as :pandas:`pandas.Timestamp`. Index of the dataframe are the - names of all buses with voltage issues. + names of all buses with voltage issues as in index of + :attr:`~.network.topology.Topology.buses_df`. """ crit_buses = pd.DataFrame(dtype=float) @@ -981,9 +983,9 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): Dataframe containing the allowed lower and upper voltage limits in p.u.. Index of the dataframe are all time steps power flow was last conducted for of type :pandas:`pandas.Timestamp`. Columns are bus names as in - index of :attr:`~.network.topology.Topology.buses_df`. - - If stations columns are stations secondary sides + index of :attr:`~.network.topology.Topology.buses_df` for all buses power flow + results are available. If mode is 'stations' columns contain bus names + of the stations secondary sides. """ if lv_grids is None: diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index 8f0194fb6..c62df4f1a 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -2117,7 +2117,7 @@ def _check_if_components_exist( """ Checks if all provided components exist in the network. - Raises warning if there any provided components that are not in the network. + Raises warning if there are any provided components that are not in the network. Parameters ---------- From f321b9a41234157f356a47e5b1e66b69690c95c0 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 20:45:28 +0100 Subject: [PATCH 061/355] Fix occurences of old function names in docstrings --- doc/features_in_detail.rst | 16 ++++++++-------- edisgo/flex_opt/storage_positioning.py | 4 ++-- edisgo/network/results.py | 6 +++--- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/doc/features_in_detail.rst b/doc/features_in_detail.rst index afff615be..e0aedb32e 100644 --- a/doc/features_in_detail.rst +++ b/doc/features_in_detail.rst @@ -62,8 +62,8 @@ Identification of overloading and voltage issues is conducted in Voltage issues are determined based on allowed voltage deviations set in the config file :ref:`config_grid_expansion` in section `grid_expansion_allowed_voltage_deviations`. It is possible to set one allowed voltage deviation that is used for MV and LV or define separate allowed voltage deviations. -Which allowed voltage deviation is used is defined through the parameter *combined_analysis* of :py:func:`~edisgo.flex_opt.reinforce_grid.reinforce_grid`. -By default *combined_analysis* is set to false, resulting in separate voltage limits for MV and LV, as a combined limit +Which allowed voltage deviation is used is defined through the parameter *split_voltage_band* of :py:func:`~edisgo.flex_opt.reinforce_grid.reinforce_grid`. +By default *split_voltage_band* is set to True, resulting in separate voltage limits for MV and LV, as a combined limits may currently lead to problems if voltage deviation in MV grid is already close to the allowed limit, in which case the remaining allowed voltage deviation in the LV grids is close to zero. Overloading is determined based on allowed load factors that are also defined in the config file @@ -92,8 +92,8 @@ details and implementation. Check line load """""""""""""""""" - Exceedance of allowed line load of MV and LV lines is checked in :py:func:`~edisgo.flex_opt.check_tech_constraints.mv_line_load` and - :py:func:`~edisgo.flex_opt.check_tech_constraints.lv_line_load`, respectively. + Exceedance of allowed line load of MV and LV lines is checked in :py:func:`~edisgo.flex_opt.check_tech_constraints.mv_line_overload` and + :py:func:`~edisgo.flex_opt.check_tech_constraints.lv_line_oveload`, respectively. The functions use the given load factor and the maximum allowed current given by the manufacturer (see *I_max_th* in tables :ref:`lv_cables_table`, :ref:`mv_cables_table` and :ref:`mv_lines_table`) to calculate the allowed line load of each LV and MV line. If the line load calculated in the power flow analysis exceeds the allowed line @@ -103,8 +103,8 @@ Check line load Check station load """""""""""""""""""" - Exceedance of allowed station load of HV/MV and MV/LV stations is checked in :py:func:`~edisgo.flex_opt.check_tech_constraints.hv_mv_station_load` and - :py:func:`~edisgo.flex_opt.check_tech_constraints.mv_lv_station_load`, respectively. + Exceedance of allowed station load of HV/MV and MV/LV stations is checked in :py:func:`~edisgo.flex_opt.check_tech_constraints.hv_mv_station_overload` and + :py:func:`~edisgo.flex_opt.check_tech_constraints.mv_lv_station_overload`, respectively. The functions use the given load factor and the maximum allowed apparent power given by the manufacturer (see *S_nom* in tables :ref:`lv_transformers_table`, and :ref:`mv_transformers_table`) to calculate the allowed apparent power of the stations. If the apparent power calculated in the power flow analysis exceeds the allowed apparent power the station is reinforced @@ -113,8 +113,8 @@ Check station load Check line and station voltage deviation """""""""""""""""""""""""""""""""""""""""" - Compliance with allowed voltage deviation limits in MV and LV grids is checked in :py:func:`~edisgo.flex_opt.check_tech_constraints.mv_voltage_deviation` and - :py:func:`~edisgo.flex_opt.check_tech_constraints.lv_voltage_deviation`, respectively. + Compliance with allowed voltage deviation limits in MV and LV grids is checked in :py:func:`~edisgo.flex_opt.check_tech_constraints.mv_voltage_issue` and + :py:func:`~edisgo.flex_opt.check_tech_constraints.lv_voltage_issue`, respectively. The functions check if the voltage deviation at a node calculated in the power flow analysis exceeds the allowed voltage deviation. If it does, the line is reinforced (see :ref:`grid-expansion-measure-lv-station-voltage-label` or :ref:`grid-expansion-measure-line-voltage-label`). diff --git a/edisgo/flex_opt/storage_positioning.py b/edisgo/flex_opt/storage_positioning.py index 43dea8626..00a845b19 100644 --- a/edisgo/flex_opt/storage_positioning.py +++ b/edisgo/flex_opt/storage_positioning.py @@ -118,7 +118,7 @@ def _find_battery_node(edisgo, critical_lines_feeder, critical_nodes_feeder): critical_lines_feeder : :pandas:`pandas.DataFrame` Dataframe containing over-loaded lines in MV feeder, their maximum relative over-loading and the corresponding time step. See - :func:`edisgo.flex_opt.check_tech_constraints.mv_line_load` for + :func:`edisgo.flex_opt.check_tech_constraints.mv_line_overload` for more information. critical_nodes_feeder : :obj:`list` List with all nodes in MV feeder with voltage issues. @@ -305,7 +305,7 @@ def _critical_lines_feeder(edisgo, feeder): :pandas:`pandas.DataFrame` Dataframe containing over-loaded lines in MV feeder, their maximum relative over-loading and the corresponding time step. See - :func:`edisgo.flex_opt.check_tech_constraints.mv_line_load` for + :func:`edisgo.flex_opt.check_tech_constraints.mv_line_overload` for more information. """ diff --git a/edisgo/network/results.py b/edisgo/network/results.py index 5f98506da..f39e38a4f 100755 --- a/edisgo/network/results.py +++ b/edisgo/network/results.py @@ -579,11 +579,11 @@ def unresolved_issues(self): Dataframe containing remaining grid issues. Names of remaining critical lines, stations and buses are in the index of the dataframe. Columns depend on the equipment type. See - :func:`~.flex_opt.check_tech_constraints.mv_line_load` for format + :func:`~.flex_opt.check_tech_constraints.mv_line_overload` for format of remaining overloading issues of lines, - :func:`~.flex_opt.check_tech_constraints.hv_mv_station_load` + :func:`~.flex_opt.check_tech_constraints.hv_mv_station_overload` for format of remaining overloading issues of transformers, and - :func:`~.flex_opt.check_tech_constraints.mv_voltage_deviation` + :func:`~.flex_opt.check_tech_constraints.voltage_issues` for format of remaining voltage issues. Provide this if you want to set unresolved_issues. For retrieval From 0ec46d62b1e02e70631a0e8943c88305bbe01846 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 20:46:10 +0100 Subject: [PATCH 062/355] Remove old function --- edisgo/tools/tools.py | 51 +------------------------------------------ 1 file changed, 1 insertion(+), 50 deletions(-) diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index 908349055..92381dc82 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -11,7 +11,7 @@ from sqlalchemy import func -from edisgo.flex_opt import check_tech_constraints, exceptions +from edisgo.flex_opt import exceptions from edisgo.tools import session_scope if "READTHEDOCS" not in os.environ: @@ -62,55 +62,6 @@ def select_worstcase_snapshots(edisgo_obj): return timestamp -def calculate_relative_line_load(edisgo_obj, lines=None, timesteps=None): - """ - Calculates relative line loading for specified lines and time steps. - - Line loading is calculated by dividing the current at the given time step - by the allowed current. - - - Parameters - ---------- - edisgo_obj : :class:`~.EDisGo` - lines : list(str) or None, optional - Line names/representatives of lines to calculate line loading for. If - None, line loading is calculated for all lines in the network. - Default: None. - timesteps : :pandas:`pandas.Timestamp` or \ - list(:pandas:`pandas.Timestamp`) or None, optional - Specifies time steps to calculate line loading for. If timesteps is - None, all time steps power flow analysis was conducted for are used. - Default: None. - - Returns - -------- - :pandas:`pandas.DataFrame` - Dataframe with relative line loading (unitless). Index of - the dataframe is a :pandas:`pandas.DatetimeIndex`, - columns are the line representatives. - - """ - if timesteps is None: - timesteps = edisgo_obj.results.i_res.index - # check if timesteps is array-like, otherwise convert to list - if not hasattr(timesteps, "__len__"): - timesteps = [timesteps] - - if lines is not None: - line_indices = lines - else: - line_indices = edisgo_obj.topology.lines_df.index - - mv_lines_allowed_load = check_tech_constraints.lines_allowed_load(edisgo_obj, "mv") - lv_lines_allowed_load = check_tech_constraints.lines_allowed_load(edisgo_obj, "lv") - lines_allowed_load = pd.concat( - [mv_lines_allowed_load, lv_lines_allowed_load], axis=1, sort=False - ).loc[timesteps, line_indices] - - return check_tech_constraints.lines_relative_load(edisgo_obj, lines_allowed_load) - - def calculate_line_reactance(line_inductance_per_km, line_length, num_parallel): """ Calculates line reactance in Ohm. From 2fbae5eef43eece44baeee409fd223aad19fc0ae Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 20:46:43 +0100 Subject: [PATCH 063/355] Minor doc change --- edisgo/flex_opt/check_tech_constraints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index aa43fa5a4..6145b2b95 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -453,7 +453,7 @@ def _station_overload(edisgo_obj, grid): ] ) - # calculate greatest apparent power missing (residual apparent power is + # calculate the greatest apparent power missing (residual apparent power is # divided by the load factor to account for load factors smaller than # one, which lead to a higher needed additional capacity) s_missing = (s_res.iloc[:, 0] / load_factor).dropna() From c08fa0f4d4e3043ba2f990151d94076b10faadba Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 3 Mar 2023 20:46:57 +0100 Subject: [PATCH 064/355] Fix tests --- tests/flex_opt/test_check_tech_constraints.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 61b369721..6ed27914b 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -56,7 +56,7 @@ def test_lines_allowed_load(self): # check with default value (all lines) df = check_tech_constraints.lines_allowed_load(self.edisgo) # check shape of dataframe - assert (4, 129) == df.shape + assert (4, 131) == df.shape # check values (feed-in case) assert np.isclose( df.at[self.timesteps[2], "Line_10005"], @@ -124,7 +124,7 @@ def test_lines_relative_load(self): # check with default value (all lines) df = check_tech_constraints.lines_relative_load(self.edisgo) # check shape of dataframe - assert (4, 129) == df.shape + assert (4, 131) == df.shape # check values (feed-in case) assert np.isclose( df.at[self.timesteps[2], "Line_10005"], 7.74132 / 7.27461, atol=1e-5 @@ -320,7 +320,7 @@ def test_components_relative_load(self): # check with power flow results available for all components df = check_tech_constraints.components_relative_load(self.edisgo) # check shape of dataframe - assert (4, 140) == df.shape + assert (4, 142) == df.shape # check values load_cases = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") @@ -687,8 +687,8 @@ def test__lv_allowed_voltage_limits(self): ) = check_tech_constraints._lv_allowed_voltage_limits(self.edisgo, mode=None) # check shape - assert v_limits_lower.shape == (4, 99) - assert v_limits_upper.shape == (4, 99) + assert v_limits_lower.shape == (4, 101) + assert v_limits_upper.shape == (4, 101) # check values @@ -779,7 +779,7 @@ def test_voltage_deviation_from_allowed_voltage_limits(self): ) ) - assert voltage_dev.shape == (4, 140) + assert voltage_dev.shape == (4, 142) # check that there are voltage issues created through mv_voltage_issues() and # at "BusBar_MVGrid_1_LVGrid_6_LV" detected comps_with_v_issues = ( @@ -816,7 +816,7 @@ def test_voltage_deviation_from_allowed_voltage_limits(self): ) ) - assert voltage_dev.shape == (4, 140) + assert voltage_dev.shape == (4, 142) # check that "BusBar_MVGrid_1_LVGrid_6_LV" does now not have any voltage issues comps_with_v_issues = ( voltage_dev[voltage_dev != 0].dropna(how="all", axis=1).columns From 178e882942db46ea3ee80198994077d27753703d Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 10:06:27 +0100 Subject: [PATCH 065/355] Adapt timeseries_reduction to new check_tech_constraints methods --- edisgo/opf/timeseries_reduction.py | 72 ++++++++++-------------------- 1 file changed, 24 insertions(+), 48 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index b87645fd7..d856d17d6 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -11,16 +11,15 @@ logger = logging.getLogger(__name__) -def _scored_critical_current(edisgo_obj, grid): - # Get allowed current per line per time step - i_lines_allowed = check_tech_constraints.lines_allowed_load(edisgo_obj, "mv") - i_lines_pfa = edisgo_obj.results.i_res[grid.lines_df.index] +def _scored_critical_loading(edisgo_obj): # Get current relative to allowed current - relative_i_res = i_lines_pfa / i_lines_allowed + relative_s_res = check_tech_constraints.lines_relative_load( + edisgo_obj, lines=edisgo_obj.topology.mv_grid.lines_df.index + ) # Get lines that have violations - crit_lines_score = relative_i_res[relative_i_res > 1] + crit_lines_score = relative_s_res[relative_s_res > 1] # Remove time steps with no violations crit_lines_score = crit_lines_score.dropna(how="all", axis=0) @@ -31,25 +30,18 @@ def _scored_critical_current(edisgo_obj, grid): return crit_lines_score.sort_values(ascending=False) -def _scored_critical_overvoltage(edisgo_obj, grid): - nodes = grid.buses_df.index +def _scored_critical_overvoltage(edisgo_obj): - # Get allowed deviations per time step - ( - v_dev_allowed_upper, - v_dev_allowed_lower, - ) = check_tech_constraints._mv_allowed_voltage_limits( - edisgo_obj, voltage_levels="mv" - ) - _, voltage_diff_ov = check_tech_constraints.voltage_diff( - edisgo_obj, nodes, v_dev_allowed_upper, v_dev_allowed_lower + voltage_dev = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + edisgo_obj, + buses=edisgo_obj.topology.mv_grid.buses_df.index, ) - # Get score for nodes that are over or under the allowed deviations - voltage_diff_ov = ( - voltage_diff_ov[voltage_diff_ov > 0].dropna(axis=1, how="all").sum(axis=0) + # Get score for nodes that are over the allowed deviations + voltage_dev_ov = ( + voltage_dev[voltage_dev > 0.0].dropna(axis=1, how="all").sum(axis=1) ) - return voltage_diff_ov.sort_values(ascending=False) + return voltage_dev_ov.sort_values(ascending=False) def get_steps_curtailment(edisgo_obj, percentage=0.5): @@ -70,34 +62,29 @@ def get_steps_curtailment(edisgo_obj, percentage=0.5): the reduced time index for modeling curtailment """ - # Run power flow if not available if edisgo_obj.results.i_res is None: logger.debug("Running initial power flow") edisgo_obj.analyze(mode="mv") - grid = edisgo_obj.topology.mv_grid - # Select most critical steps based on current violations - current_scores = _scored_critical_current(edisgo_obj, grid) + current_scores = _scored_critical_loading(edisgo_obj) num_steps_current = int(len(current_scores) * percentage) - steps = current_scores[:num_steps_current].index.tolist() + steps = current_scores[:num_steps_current].index # Select most critical steps based on voltage violations - voltage_scores = _scored_critical_overvoltage(edisgo_obj, grid) + voltage_scores = _scored_critical_overvoltage(edisgo_obj) num_steps_voltage = int(len(voltage_scores) * percentage) - steps.extend(voltage_scores[:num_steps_voltage].index.tolist()) + steps = steps.append(voltage_scores[:num_steps_voltage].index) # Always add worst cases - steps.extend(get_steps_storage(edisgo_obj, window=0).tolist()) + steps = steps.append(get_steps_storage(edisgo_obj, window=0)) if len(steps) == 0: logger.warning("No critical steps detected. No network expansion required.") # Strip duplicates - steps = list(dict.fromkeys(steps)) - - return pd.DatetimeIndex(steps) + return pd.DatetimeIndex(steps.unique()) def get_steps_storage(edisgo_obj, window=5): @@ -123,25 +110,14 @@ def get_steps_storage(edisgo_obj, window=5): logger.debug("Running initial power flow") edisgo_obj.analyze(mode="mv") - crit_periods = [] - # Get periods with voltage violations - crit_nodes = check_tech_constraints.mv_voltage_deviation( - edisgo_obj, voltage_levels="mv" + crit_nodes = check_tech_constraints.voltage_issues( + edisgo_obj, voltage_level="mv", split_voltage_band=True ) - for v in crit_nodes.values(): - nodes = pd.DataFrame(v) - if "time_index" in nodes: - for step in nodes["time_index"]: - if step not in crit_periods: - crit_periods.append(step) - # Get periods with current violations crit_lines = check_tech_constraints.mv_line_overload(edisgo_obj) - if "time_index" in crit_lines: - for step in crit_lines["time_index"]: - if step not in crit_periods: - crit_periods.append(step) + + crit_periods = crit_nodes["time_index"].append(crit_lines["time_index"]).unique() reduced = [] window_period = pd.Timedelta(window, unit="h") @@ -153,7 +129,7 @@ def get_steps_storage(edisgo_obj, window=5): ) # strip duplicates - reduced = list(dict.fromkeys(reduced)) + reduced = set(reduced) if len(reduced) == 0: logger.warning("No critical steps detected. No network expansion required.") From 83fd2cf35e0db1f2eb71ed335a015cbff89453aa Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 10:06:35 +0100 Subject: [PATCH 066/355] Minor changes --- edisgo/flex_opt/check_tech_constraints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 6145b2b95..48333d9f6 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -284,7 +284,7 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): ) return edisgo_obj.timeseries.timesteps_load_feedin_case.loc[ - edisgo_obj.results.i_res.index + edisgo_obj.results.s_res.index ].apply(lambda _: allowed_load_per_case[_]) @@ -315,7 +315,7 @@ def lines_relative_load(edisgo_obj, lines=None): """ if lines is None: - lines = edisgo_obj.results.i_res.columns + lines = edisgo_obj.results.s_res.columns # get allowed loading allowed_loading = lines_allowed_load(edisgo_obj, lines) From 6ee747ce8f159c7240be8ebbb54b8a219213075d Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 10:41:33 +0100 Subject: [PATCH 067/355] Remove unnecessary plot input and fix legends --- edisgo/edisgo.py | 2 -- edisgo/tools/plots.py | 39 ++++++++++++++++++--------------------- 2 files changed, 18 insertions(+), 23 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 4c2e10097..88a0dc686 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1809,7 +1809,6 @@ def plot_mv_voltages(self, **kwargs): filename=kwargs.get("filename", None), grid_district_geom=kwargs.get("grid_district_geom", True), background_map=kwargs.get("background_map", True), - voltage=self.results.v_res, limits_cb_nodes=kwargs.get("limits_cb_nodes", None), xlim=kwargs.get("xlim", None), ylim=kwargs.get("ylim", None), @@ -1843,7 +1842,6 @@ def plot_mv_line_loading(self, **kwargs): timestep=kwargs.get("timestep", None), line_color="loading", node_color=kwargs.get("node_color", None), - line_load=self.results.i_res, filename=kwargs.get("filename", None), arrows=kwargs.get("arrows", None), grid_district_geom=kwargs.get("grid_district_geom", True), diff --git a/edisgo/tools/plots.py b/edisgo/tools/plots.py index ed0a2bcc8..26ceab9cb 100644 --- a/edisgo/tools/plots.py +++ b/edisgo/tools/plots.py @@ -226,13 +226,11 @@ def mv_grid_topology( timestep=None, line_color=None, node_color=None, - line_load=None, grid_expansion_costs=None, filename=None, arrows=False, grid_district_geom=True, background_map=True, - voltage=None, limits_cb_lines=None, limits_cb_nodes=None, xlim=None, @@ -280,13 +278,12 @@ def mv_grid_topology( Node color as well as size is set according to type of node (generator, MV station, etc.). * 'voltage' - Node color is set according to maximum voltage at each node. - Voltages of nodes in MV network must be provided by parameter - `voltage`. + Node color is set according to voltage at each node. In case several + time steps are selected the maximum voltage is shown. * 'voltage_deviation' - Node color is set according to voltage deviation from 1 p.u.. - Voltages of nodes in MV network must be provided by parameter - `voltage`. + Node color is set according to voltage deviation from 1 p.u.. In case several + time steps are selected the maximum absolute voltage deviation from 1 p.u. + is shown. * 'storage_integration' Only storage units are plotted. Size of node corresponds to size of storage. @@ -325,11 +322,6 @@ def mv_grid_topology( background_map : :obj:`Boolean` If True map is drawn in the background. This also requires the contextily package to be installed. Default: True. - voltage : :pandas:`pandas.DataFrame` - Dataframe with voltage results from power flow analysis in p.u.. Index - of the dataframe is a :pandas:`pandas.DatetimeIndex`, - columns are the bus representatives. Only needs to be provided when - parameter `node_color` is set to 'voltage'. Default: None. limits_cb_lines : :obj:`tuple` Tuple with limits for colorbar of line color. First entry is the minimum and second entry the maximum value. Only needs to be provided @@ -456,15 +448,12 @@ def nodes_charging_park(buses, edisgo_obj): return bus_sizes, bus_colors def nodes_by_voltage(buses, voltages): - # ToDo: Right now maximum voltage is used. Check if this should be - # changed bus_colors_dict = {} bus_sizes_dict = {} if timestep is not None: bus_colors_dict.update({bus: voltages.loc[timestep, bus] for bus in buses}) else: bus_colors_dict.update({bus: max(voltages.loc[:, bus]) for bus in buses}) - bus_sizes_dict.update({bus: 100000 ^ 2 for bus in buses}) return bus_sizes_dict, bus_colors_dict @@ -473,7 +462,7 @@ def nodes_by_voltage_deviation(buses, voltages): bus_sizes_dict = {} if timestep is not None: bus_colors_dict.update( - {bus: 100 * abs(1 - voltages.loc[timestep, bus]) for bus in buses} + {bus: 100 * (voltages.loc[timestep, bus] - 1) for bus in buses} ) else: bus_colors_dict.update( @@ -600,11 +589,13 @@ def nodes_by_costs(buses, grid_expansion_costs, edisgo_obj): bus_sizes, bus_colors = nodes_by_technology(pypsa_plot.buses.index, edisgo_obj) bus_cmap = None elif node_color == "voltage": - bus_sizes, bus_colors = nodes_by_voltage(pypsa_plot.buses.index, voltage) + bus_sizes, bus_colors = nodes_by_voltage( + pypsa_plot.buses.index, edisgo_obj.results.v_res + ) bus_cmap = plt.cm.Blues elif node_color == "voltage_deviation": bus_sizes, bus_colors = nodes_by_voltage_deviation( - pypsa_plot.buses.index, voltage + pypsa_plot.buses.index, edisgo_obj.results.v_res ) bus_cmap = plt.cm.Blues elif node_color == "storage_integration": @@ -745,9 +736,15 @@ def nodes_by_costs(buses, grid_expansion_costs, edisgo_obj): cb_voltage.norm.vmin = limits_cb_nodes[0] cb_voltage.norm.vmax = limits_cb_nodes[1] if node_color == "voltage": - cb_voltage.set_label("Maximum voltage in p.u.") + if timestep is not None: + cb_voltage.set_label("Voltage in p.u.") + else: + cb_voltage.set_label("Maximum voltage in p.u.") else: - cb_voltage.set_label("Voltage deviation in %") + if timestep is not None: + cb_voltage.set_label("Voltage deviation from 1 p.u.") + else: + cb_voltage.set_label("Maximum absolute voltage deviation from 1 p.u.") # storage_units if node_color == "expansion_costs": From 8ae06fa9834f4f3644e2ccdfc38a3401838ced82 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 11:43:45 +0100 Subject: [PATCH 068/355] Bug fix exclude transformers --- edisgo/flex_opt/check_tech_constraints.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 48333d9f6..cfc6db5e3 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -315,7 +315,9 @@ def lines_relative_load(edisgo_obj, lines=None): """ if lines is None: - lines = edisgo_obj.results.s_res.columns + lines = edisgo_obj.results.s_res.columns.drop( + edisgo_obj.topology.transformers_df.index, errors="ignore" + ) # get allowed loading allowed_loading = lines_allowed_load(edisgo_obj, lines) From 0a2e22abc4b29b72c990dfa674fb43911dd7e7c8 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 11:45:22 +0100 Subject: [PATCH 069/355] Remove unnecessary reindexing --- edisgo/io/pypsa_io.py | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/edisgo/io/pypsa_io.py b/edisgo/io/pypsa_io.py index 815bfae79..fedae71cd 100755 --- a/edisgo/io/pypsa_io.py +++ b/edisgo/io/pypsa_io.py @@ -837,40 +837,36 @@ def process_pfa_results(edisgo, pypsa, timesteps, dtype="float"): abs(pypsa.generators_t["q"].sum(axis=1) - pypsa.loads_t["q"].sum(axis=1)) ), } - edisgo.results.grid_losses = pd.DataFrame(grid_losses, dtype=dtype).reindex( - index=timesteps - ) + edisgo.results.grid_losses = pd.DataFrame(grid_losses, dtype=dtype) # get slack results in MW and Mvar pfa_slack = { "p": (pypsa.generators_t["p"]["Generator_slack"]), "q": (pypsa.generators_t["q"]["Generator_slack"]), } - edisgo.results.pfa_slack = pd.DataFrame(pfa_slack, dtype=dtype).reindex( - index=timesteps - ) + edisgo.results.pfa_slack = pd.DataFrame(pfa_slack, dtype=dtype) # get P and Q of lines and transformers in MW and Mvar q0 = pd.concat( [np.abs(pypsa.lines_t["q0"]), np.abs(pypsa.transformers_t["q0"])], axis=1, sort=False, - ).reindex(index=timesteps) + ) q1 = pd.concat( [np.abs(pypsa.lines_t["q1"]), np.abs(pypsa.transformers_t["q1"])], axis=1, sort=False, - ).reindex(index=timesteps) + ) p0 = pd.concat( [np.abs(pypsa.lines_t["p0"]), np.abs(pypsa.transformers_t["p0"])], axis=1, sort=False, - ).reindex(index=timesteps) + ) p1 = pd.concat( [np.abs(pypsa.lines_t["p1"]), np.abs(pypsa.transformers_t["p1"])], axis=1, sort=False, - ).reindex(index=timesteps) + ) # determine apparent power at line endings/transformer sides s0 = np.hypot(p0, q0) s1 = np.hypot(p1, q1) @@ -888,9 +884,7 @@ def process_pfa_results(edisgo, pypsa, timesteps, dtype="float"): edisgo.results._i_res = current.reindex(index=timesteps) # get voltage results in kV - edisgo.results._v_res = ( - pypsa.buses_t["v_mag_pu"].reindex(index=timesteps).astype(dtype) - ) + edisgo.results._v_res = pypsa.buses_t["v_mag_pu"].astype(dtype) # save seeds edisgo.results.pfa_v_mag_pu_seed = pd.concat( From ad6367028d6e06ccf0d26feaf8e780d9e6558a67 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 11:46:05 +0100 Subject: [PATCH 070/355] Include storage units when calculating grid losses --- edisgo/io/pypsa_io.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/edisgo/io/pypsa_io.py b/edisgo/io/pypsa_io.py index fedae71cd..5924e51ea 100755 --- a/edisgo/io/pypsa_io.py +++ b/edisgo/io/pypsa_io.py @@ -828,13 +828,20 @@ def process_pfa_results(edisgo, pypsa, timesteps, dtype="float"): """ # get the absolute losses in the system (in MW and Mvar) # subtracting total generation (including slack) from total load - # ToDo include storage units grid_losses = { "p": ( - abs(pypsa.generators_t["p"].sum(axis=1) - pypsa.loads_t["p"].sum(axis=1)) + abs( + pypsa.generators_t["p"].sum(axis=1) + + pypsa.storage_units_t["p"].sum(axis=1) + - pypsa.loads_t["p"].sum(axis=1) + ) ), "q": ( - abs(pypsa.generators_t["q"].sum(axis=1) - pypsa.loads_t["q"].sum(axis=1)) + abs( + pypsa.generators_t["q"].sum(axis=1) + + pypsa.storage_units_t["q"].sum(axis=1) + - pypsa.loads_t["q"].sum(axis=1) + ) ), } edisgo.results.grid_losses = pd.DataFrame(grid_losses, dtype=dtype) From 02e72b71d0fb10ace995af3d539aa96cb42fdcfd Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 11:46:38 +0100 Subject: [PATCH 071/355] Bug fix add currents over transformers to i_res --- edisgo/io/pypsa_io.py | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/edisgo/io/pypsa_io.py b/edisgo/io/pypsa_io.py index 5924e51ea..0e797edba 100755 --- a/edisgo/io/pypsa_io.py +++ b/edisgo/io/pypsa_io.py @@ -881,14 +881,21 @@ def process_pfa_results(edisgo, pypsa, timesteps, dtype="float"): edisgo.results.pfa_p = p0.where(s0 > s1, p1).astype(dtype) edisgo.results.pfa_q = q0.where(s0 > s1, q1).astype(dtype) - # calculate line currents in kA - lines_bus0 = pypsa.lines["bus0"].to_dict() - bus0_v_mag_pu = pypsa.buses_t["v_mag_pu"].T.loc[list(lines_bus0.values()), :].copy() - bus0_v_mag_pu.index = list(lines_bus0.keys()) - current = np.hypot(pypsa.lines_t["p0"], pypsa.lines_t["q0"]).truediv( - pypsa.lines["v_nom"] * bus0_v_mag_pu.T, axis="columns" + # calculate line and transformer currents in kA + lines_bus0 = pypsa.lines["bus0"] + bus0_v_mag_pu = pypsa.buses_t["v_mag_pu"].loc[:, lines_bus0.values].copy() + bus0_v_mag_pu.columns = lines_bus0.index + current_lines = np.hypot(pypsa.lines_t["p0"], pypsa.lines_t["q0"]).truediv( + pypsa.lines["v_nom"] * bus0_v_mag_pu, axis="columns" ) / sqrt(3) - edisgo.results._i_res = current.reindex(index=timesteps) + transformers_bus0 = pypsa.transformers["bus0"] + bus0_v_mag_pu = pypsa.buses_t["v_mag_pu"].loc[:, transformers_bus0.values].copy() + bus0_v_mag_abs = pypsa.buses["v_nom"].loc[transformers_bus0.values] * bus0_v_mag_pu + bus0_v_mag_abs.columns = transformers_bus0.index + current_transformers = np.hypot( + pypsa.transformers_t["p0"], pypsa.transformers_t["q0"] + ).truediv(bus0_v_mag_abs, axis="columns") / sqrt(3) + edisgo.results._i_res = pd.concat([current_lines, current_transformers], axis=1) # get voltage results in kV edisgo.results._v_res = pypsa.buses_t["v_mag_pu"].astype(dtype) From ebbc5833728b1ea7f5d80d1b8caf1ce0115454e2 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 11:46:45 +0100 Subject: [PATCH 072/355] Minor typo fix --- edisgo/flex_opt/check_tech_constraints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index cfc6db5e3..d8b939d52 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -268,7 +268,7 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): ] ) - # lines in radial feeders are not n-1 secure anyways + # lines in radial feeders are not n-1 secure anyway allowed_load_per_case[case] = pd.concat( [ allowed_load_per_case[case], From 46475b2ddcc0066069be1cedd9d56beec7870ef7 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 11:46:55 +0100 Subject: [PATCH 073/355] Add test for LV only --- tests/flex_opt/test_check_tech_constraints.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 6ed27914b..e80ffbc96 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -355,6 +355,12 @@ def test_components_relative_load(self): 0.06753, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 ).all() + # check single LV grid + self.edisgo.analyze(mode="lv", lv_grid_id=1) + df = check_tech_constraints.components_relative_load(self.edisgo) + # check shape of dataframe + assert (4, 14) == df.shape + def mv_voltage_issues(self): """ Fixture to create voltage issues in MV grid. From e6f3b2b928f84e776aea550a9457098159445c27 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 4 Mar 2023 11:47:15 +0100 Subject: [PATCH 074/355] Add changes to whatsnew --- doc/whatsnew/v0-3-0.rst | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/whatsnew/v0-3-0.rst diff --git a/doc/whatsnew/v0-3-0.rst b/doc/whatsnew/v0-3-0.rst new file mode 100644 index 000000000..6d4cc7ea6 --- /dev/null +++ b/doc/whatsnew/v0-3-0.rst @@ -0,0 +1,8 @@ +Release v0.3.0 +================ + +Release date: , + +Changes +------- +* Refactoring of check_tech_constraints functions `#290 `_ From cf9b853ae2ec071aa6f078dd36c6627938c8f5cd Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 10 Mar 2023 14:21:55 +0100 Subject: [PATCH 075/355] Remove stuff from autodoc --- doc/api/edisgo.flex_opt.rst | 21 +----------------- doc/api/edisgo.network.rst | 11 ---------- doc/api/edisgo.opf.rst | 43 +++++++++++++------------------------ doc/api/edisgo.tools.rst | 3 --- 4 files changed, 16 insertions(+), 62 deletions(-) diff --git a/doc/api/edisgo.flex_opt.rst b/doc/api/edisgo.flex_opt.rst index 8c55eb17d..f349b8ee9 100644 --- a/doc/api/edisgo.flex_opt.rst +++ b/doc/api/edisgo.flex_opt.rst @@ -1,9 +1,6 @@ edisgo.flex\_opt package ======================== -Submodules ----------- - edisgo.flex\_opt.charging\_strategies module -------------------------------------------- @@ -53,7 +50,7 @@ edisgo.flex\_opt.heat_pump_operation module :show-inheritance: edisgo.flex\_opt.q\_control module ----------------------------------- +----------------------------------- .. automodule:: edisgo.flex_opt.q_control :members: @@ -75,19 +72,3 @@ edisgo.flex\_opt.reinforce\_measures module :members: :undoc-members: :show-inheritance: - -edisgo.flex\_opt.storage\_positioning module --------------------------------------------- - -.. automodule:: edisgo.flex_opt.storage_positioning - :members: - :undoc-members: - :show-inheritance: - -Module contents ---------------- - -.. automodule:: edisgo.flex_opt - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/api/edisgo.network.rst b/doc/api/edisgo.network.rst index d584aef99..437637d4a 100644 --- a/doc/api/edisgo.network.rst +++ b/doc/api/edisgo.network.rst @@ -1,9 +1,6 @@ edisgo.network package ====================== -Submodules ----------- - edisgo.network.components module -------------------------------- @@ -67,11 +64,3 @@ edisgo.network.topology module :members: :undoc-members: :show-inheritance: - -Module contents ---------------- - -.. automodule:: edisgo.network - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/api/edisgo.opf.rst b/doc/api/edisgo.opf.rst index d95540313..c6bf54700 100644 --- a/doc/api/edisgo.opf.rst +++ b/doc/api/edisgo.opf.rst @@ -1,56 +1,43 @@ edisgo.opf package ================== -Subpackages ------------ - -.. toctree:: - :maxdepth: 4 - - edisgo.opf.edisgo_scenario_data - edisgo.opf.opf_solutions - edisgo.opf.results - edisgo.opf.util - -Submodules ----------- - edisgo.opf.run\_mp\_opf module ------------------------------- +---------------------------------- .. automodule:: edisgo.opf.run_mp_opf :members: :undoc-members: :show-inheritance: -edisgo.opf.run\_opf\_test module --------------------------------- +edisgo.opf.timeseries\_reduction module +------------------------------------------- -.. automodule:: edisgo.opf.run_opf_test +.. automodule:: edisgo.opf.timeseries_reduction :members: :undoc-members: :show-inheritance: -edisgo.opf.test\_path module ----------------------------- +edisgo.opf.results package +----------------------------- -.. automodule:: edisgo.opf.test_path +.. automodule:: edisgo.opf.results.opf_expand_network :members: :undoc-members: :show-inheritance: -edisgo.opf.timeseries\_reduction module ---------------------------------------- - -.. automodule:: edisgo.opf.timeseries_reduction +.. automodule:: edisgo.opf.results.opf_result_class :members: :undoc-members: :show-inheritance: -Module contents ---------------- +edisgo.opf.util package +---------------------------------- + +.. automodule:: edisgo.opf.util.plot_solutions + :members: + :undoc-members: + :show-inheritance: -.. automodule:: edisgo.opf :members: :undoc-members: :show-inheritance: diff --git a/doc/api/edisgo.tools.rst b/doc/api/edisgo.tools.rst index c58bbc3ed..09b9316ee 100644 --- a/doc/api/edisgo.tools.rst +++ b/doc/api/edisgo.tools.rst @@ -1,9 +1,6 @@ edisgo.tools package ==================== -Submodules ----------- - edisgo.tools.config module -------------------------- From 6713d979c60bf78e617fc13d783db4ea8456c69e Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 10 Mar 2023 14:22:58 +0100 Subject: [PATCH 076/355] Remove file --- edisgo/io/egon_data_import.md | 69 ----------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 edisgo/io/egon_data_import.md diff --git a/edisgo/io/egon_data_import.md b/edisgo/io/egon_data_import.md deleted file mode 100644 index 0f0fefc35..000000000 --- a/edisgo/io/egon_data_import.md +++ /dev/null @@ -1,69 +0,0 @@ -# Import data from a local or remote [egon-data](https://github.com/openego/eGon-data) database - -To import data from the database the `egon-data.configuration.yaml` generated by -egon-data is used. If access to a remote database via ssh is desired, then an -`ssh-tunnel` section must be added to the (copy of the) `egon-data.configuration.yaml` -with the ssh connection information. For example, this would look like this: - -```yaml -egon-data: - --airflow-database-name: airflow - --airflow-port: 8080 - --compose-project-name: egon-data-db - --database-host: 127.0.0.1 - --database-name: egon-data-db - --database-password: data - --database-port: '59782' - --database-user: egon - --dataset-boundary: Schleswig-Holstein - --docker-container-name: egon-data-db - --jobs: 12 - --processes-per-task: 1 - --random-seed: 42 -ssh-tunnel: - ssh-host: "111.222.33.444" - ssh-user: "user.name" - ssh-pkey: "~/.ssh/path-to-private-key" - pgres-host: "localhost" -``` - -To get data from the database, the database engine has to be instantiated first: - -```python -from pathlib import Path - -from edisgo.io.egon_data_import import engine - -config_path = Path("path/to/egon-data.configuration.yaml") - -engine = engine(path=config_path, ssh=True) # set ssh True if remote else False -``` - -## E-Mobility - -The import of E-Mobility from the database works automatically and just needs the -instantiated database engine. The amount of EVs and potential charging parks is taken -from the database. The import may look like this: - -```python -import pandas as pd - -from pathlib import Path - -from edisgo import EDisGo -from edisgo.io.egon_data_import import engine - -ding0_path = Path("path/to/.ding0/grid") -config_path = Path("path/to/egon-data.configuration.yaml") - -edisgo = EDisGo(ding0_grid=ding0_path) -timeindex = pd.date_range("1/1/2011", periods=365 * 7, freq="H") - -edisgo.set_timeindex(timeindex) -edisgo.resample_timeseries() - -engine = engine(path=config_path, ssh=True) -edisgo.import_electromobility_from_database(engine) - -edisgo.apply_charging_strategy() -``` From 8968102e2840476968746e1ac01d7275c18dc544 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 10 Mar 2023 14:28:08 +0100 Subject: [PATCH 077/355] Use db module instead of egon_data_import --- edisgo/io/dsm_import.py | 9 ++------- edisgo/io/electromobility_import.py | 7 ++----- edisgo/io/generators_import.py | 2 +- edisgo/io/home_batteries_import.py | 2 +- edisgo/tools/tools.py | 2 +- 5 files changed, 7 insertions(+), 15 deletions(-) diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index bc4d8e634..a9c59d72a 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -9,10 +9,7 @@ from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import ( - get_matching_egon_data_bus_id, - session_scope_egon_data, -) +from edisgo.io.db import session_scope_egon_data if TYPE_CHECKING: from edisgo import EDisGo @@ -34,13 +31,11 @@ def dsm_from_database( egon_etrago_store_timeseries, ) - egon_bus_id = get_matching_egon_data_bus_id(edisgo_obj=edisgo_obj, db_engine=engine) - with session_scope_egon_data(engine) as session: query = session.query(egon_etrago_link).filter( egon_etrago_link.scn_name == "eGon2035", egon_etrago_link.carrier == "dsm", - egon_etrago_link.bus0 == egon_bus_id, + egon_etrago_link.bus0 == edisgo_obj.topology.id, ) edisgo_obj.dsm.egon_etrago_link = pd.read_sql( diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 341a95d3d..ffebc2d0b 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -17,8 +17,7 @@ from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import ( - get_matching_egon_data_bus_id, +from edisgo.io.db import ( get_srid_of_db_table, session_scope_egon_data, sql_grid_geom, @@ -1257,12 +1256,10 @@ def charging_processes_from_database( ): from saio.demand import egon_ev_mv_grid_district, egon_ev_trip - egon_bus_id = get_matching_egon_data_bus_id(edisgo_obj=edisgo_obj, db_engine=engine) - with session_scope_egon_data(engine) as session: query = session.query(egon_ev_mv_grid_district.egon_ev_pool_ev_id).filter( egon_ev_mv_grid_district.scenario == scenario, - egon_ev_mv_grid_district.bus_id == egon_bus_id, + egon_ev_mv_grid_district.bus_id == edisgo_obj.topology.id, ) pool = Counter( diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 7629eb7ba..9d673aa51 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -13,7 +13,7 @@ from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import ( +from edisgo.io.db import ( get_srid_of_db_table, session_scope_egon_data, sql_grid_geom, diff --git a/edisgo/io/home_batteries_import.py b/edisgo/io/home_batteries_import.py index ff54fc8bb..9e308f961 100644 --- a/edisgo/io/home_batteries_import.py +++ b/edisgo/io/home_batteries_import.py @@ -11,7 +11,7 @@ from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.egon_data_import import ( +from edisgo.io.db import ( get_srid_of_db_table, session_scope_egon_data, sql_grid_geom, diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index 1719c2805..ea14a9c9a 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -15,7 +15,7 @@ from sqlalchemy.engine.base import Engine from edisgo.flex_opt import check_tech_constraints, exceptions -from edisgo.io.egon_data_import import ( +from edisgo.io.db import ( get_srid_of_db_table, session_scope_egon_data, sql_grid_geom, From c26908d830b89be8af10c2125805c3f2745f7b5f Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 10 Mar 2023 14:30:46 +0100 Subject: [PATCH 078/355] Remove unnecessary lines from doc rst files --- doc/api/edisgo.flex_opt.rst | 8 -------- doc/api/edisgo.opf.rst | 4 ---- 2 files changed, 12 deletions(-) diff --git a/doc/api/edisgo.flex_opt.rst b/doc/api/edisgo.flex_opt.rst index f349b8ee9..f60565a06 100644 --- a/doc/api/edisgo.flex_opt.rst +++ b/doc/api/edisgo.flex_opt.rst @@ -25,14 +25,6 @@ edisgo.flex\_opt.costs module :undoc-members: :show-inheritance: -edisgo.flex\_opt.curtailment module ------------------------------------ - -.. automodule:: edisgo.flex_opt.curtailment - :members: - :undoc-members: - :show-inheritance: - edisgo.flex\_opt.exceptions module ---------------------------------- diff --git a/doc/api/edisgo.opf.rst b/doc/api/edisgo.opf.rst index c6bf54700..5660fe130 100644 --- a/doc/api/edisgo.opf.rst +++ b/doc/api/edisgo.opf.rst @@ -37,7 +37,3 @@ edisgo.opf.util package :members: :undoc-members: :show-inheritance: - - :members: - :undoc-members: - :show-inheritance: From 0ba4d8b8af52304f69c1f9e8939391424ce9c1b8 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 10 Mar 2023 14:33:07 +0100 Subject: [PATCH 079/355] Remove old egon_data_import file --- edisgo/io/egon_data_import.py | 336 ---------------------------------- 1 file changed, 336 deletions(-) delete mode 100644 edisgo/io/egon_data_import.py diff --git a/edisgo/io/egon_data_import.py b/edisgo/io/egon_data_import.py deleted file mode 100644 index ef788b36e..000000000 --- a/edisgo/io/egon_data_import.py +++ /dev/null @@ -1,336 +0,0 @@ -from __future__ import annotations - -import logging - -from contextlib import contextmanager -from pathlib import Path -from typing import TYPE_CHECKING - -import geopandas as gpd -import pandas as pd -import saio -import yaml - -from geoalchemy2.types import Geometry -from sqlalchemy import create_engine, func -from sqlalchemy.engine.base import Engine -from sqlalchemy.orm import sessionmaker -from sqlalchemy.orm.attributes import InstrumentedAttribute -from sqlalchemy.orm.session import Session -from sshtunnel import SSHTunnelForwarder - -if TYPE_CHECKING: - from edisgo import EDisGo - -logger = logging.getLogger(__name__) - - -def config_settings(path: Path | str) -> dict[str, dict[str, str | int | Path]]: - """ - Return a nested dictionary containing the configuration settings. - - It's a nested dictionary because the top level has command names as keys - and dictionaries as values where the second level dictionary has command - line switches applicable to the command as keys and the supplied values - as values. - - So you would obtain the ``--database-name`` configuration setting used - by the current invocation of ``egon-data`` via - - .. code-block:: python - - settings()["egon-data"]["--database-name"] - - Parameters - ---------- - path : pathlib.Path or str - Path to configuration YAML file of egon-data database. - - Returns - ------- - dict - Nested dictionary containing the egon-data and optional ssh tunnel configuration - settings. - - """ - if isinstance(path, str): - path = Path(path) - - if not path.is_file(): - raise ValueError(f"Configuration file {path} not found.") - with open(path) as f: - return yaml.safe_load(f) - - -def credentials(path: Path | str) -> dict[str, str | int | Path]: - """ - Return local database connection parameters. - - Parameters - ---------- - path : pathlib.Path or str - Path to configuration YAML file of egon-data database. - - Returns - ------- - dict - Complete DB connection information. - - """ - translated = { - "--database-name": "POSTGRES_DB", - "--database-password": "POSTGRES_PASSWORD", - "--database-host": "HOST", - "--database-port": "PORT", - "--database-user": "POSTGRES_USER", - } - configuration = config_settings(path=path) - - egon_config = configuration["egon-data"] - - update = { - translated[flag]: egon_config[flag] - for flag in egon_config - if flag in translated - } - - if "PORT" in update.keys(): - update["PORT"] = int(update["PORT"]) - - egon_config.update(update) - - if "ssh-tunnel" in configuration.keys(): - translated = { - "ssh-host": "SSH_HOST", - "ssh-user": "SSH_USER", - "ssh-pkey": "SSH_PKEY", - "pgres-host": "PGRES_HOST", - } - - update = { - translated[flag]: configuration["ssh-tunnel"][flag] - for flag in configuration["ssh-tunnel"] - if flag in translated - } - - egon_config.update(update) - - if "SSH_PKEY" in egon_config.keys(): - egon_config["SSH_PKEY"] = Path(egon_config["SSH_PKEY"]).expanduser() - - if not egon_config["SSH_PKEY"].is_file(): - raise ValueError(f"{egon_config['SSH_PKEY']} is not a file.") - - return egon_config - - -def ssh_tunnel(cred: dict) -> str: - """ - Initialize a SSH tunnel to a remote host according to the input arguments. - See https://sshtunnel.readthedocs.io/en/latest/ for more information. - - Parameters - ---------- - cred : dict - Complete DB connection information. - - Returns - ------- - str - Name of local port. - - """ - server = SSHTunnelForwarder( - ssh_address_or_host=(cred["SSH_HOST"], 22), - ssh_username=cred["SSH_USER"], - ssh_pkey=cred["SSH_PKEY"], - remote_bind_address=(cred["PGRES_HOST"], cred["PORT"]), - ) - server.start() - - return str(server.local_bind_port) - - -def engine(path: Path | str, ssh: bool = False) -> Engine: - """ - Engine for local or remote database. - - Parameters - ---------- - path : dict - Path to configuration YAML file of egon-data database. - ssh : bool - If True try to establish ssh tunnel from given information within the - configuration YAML. If False try to connect to local database. - - Returns - ------- - sqlalchemy.engine.base.Engine - Database engine - - """ - cred = credentials(path=path) - - if not ssh: - return create_engine( - f"postgresql+psycopg2://{cred['POSTGRES_USER']}:" - f"{cred['POSTGRES_PASSWORD']}@{cred['HOST']}:" - f"{cred['PORT']}/{cred['POSTGRES_DB']}", - echo=False, - ) - - local_port = ssh_tunnel(cred) - - return create_engine( - f"postgresql+psycopg2://{cred['POSTGRES_USER']}:" - f"{cred['POSTGRES_PASSWORD']}@{cred['PGRES_HOST']}:" - f"{local_port}/{cred['POSTGRES_DB']}", - echo=False, - ) - - -def select_dataframe(sql, db_engine, index_col=None): - """Select data from local database as pandas.DataFrame - - Parameters - ---------- - sql : str - SQL query to be executed. - db_engine : sqlalchemy.engine.base.Engine - Database engine - index_col : str, optional - Column(s) to set as index(MultiIndex). The default is None. - - Returns - ------- - df : pandas.DataFrame - Data returned from SQL statement. - - """ - - df = pd.read_sql(sql, db_engine, index_col=index_col) - - if df.size == 0: - logger.warning(f"No data returned by statement:\n{sql}") - - return df - - -def select_geodataframe(sql, db_engine, index_col=None, geom_col="geom", epsg=3035): - """Select data from local database as geopandas.GeoDataFrame - - Parameters - ---------- - sql : str - SQL query to be executed. - db_engine : sqlalchemy.engine.base.Engine - Database engine - index_col : str, optional - Column(s) to set as index(MultiIndex). The default is None. - geom_col : str, optional - column name to convert to shapely geometries. The default is 'geom'. - epsg : int, optional - EPSG code specifying output projection. The default is 3035. - - Returns - ------- - gdf : pandas.DataFrame - Data returned from SQL statement. - - """ - - gdf = gpd.read_postgis(sql, db_engine, index_col=index_col, geom_col=geom_col) - - if gdf.size == 0: - logger.warning(f"No data returned by statement:\n{sql}") - - return gdf.to_crs(epsg=epsg) - - -@contextmanager -def session_scope_egon_data(engine: Engine): - """Provide a transactional scope around a series of operations.""" - Session = sessionmaker(bind=engine) - session = Session() - try: - yield session - session.commit() - except: # noqa: E722 - session.rollback() - raise - finally: - session.close() - - -def get_matching_egon_data_bus_id(edisgo_obj: EDisGo, db_engine: Engine) -> int: - saio.register_schema("grid", db_engine) - - from saio.grid import egon_hvmv_substation - - with session_scope_egon_data(db_engine) as session: - srid = get_srid_of_db_table(session, egon_hvmv_substation.point) - - query = session.query(egon_hvmv_substation.bus_id).filter( - func.ST_Within( - func.ST_Transform( - egon_hvmv_substation.point, - srid, - ), - func.ST_Transform( - sql_grid_geom(edisgo_obj), - srid, - ), - ) - ) - - bus_ids = pd.read_sql( - sql=query.statement, con=query.session.bind - ).bus_id.tolist() - - if not bus_ids: - raise ImportError( - f"There is no egon-data substation within the open_ego grid " - f"{edisgo_obj.topology.id}. Cannot import any DSM information." - ) - - # pick one bus id if more than one - return sorted(bus_ids)[0] - - -def sql_grid_geom(edisgo_obj: EDisGo) -> Geometry: - return func.ST_GeomFromText( - str(edisgo_obj.topology.grid_district["geom"]), - edisgo_obj.topology.grid_district["srid"], - ) - - -def get_srid_of_db_table(session: Session, geom_col: InstrumentedAttribute) -> int: - query = session.query(func.ST_SRID(geom_col)).limit(1) - - return pd.read_sql(sql=query.statement, con=query.session.bind).iat[0, 0] - - -def sql_within(geom_col: InstrumentedAttribute, geom_shape: Geometry, srid: int): - return func.ST_Within( - func.ST_Transform( - geom_col, - srid, - ), - func.ST_Transform( - geom_shape, - srid, - ), - ) - - -def sql_intersects(geom_col: InstrumentedAttribute, geom_shape: Geometry, srid: int): - return func.ST_Intersects( - func.ST_Transform( - geom_col, - srid, - ), - func.ST_Transform( - geom_shape, - srid, - ), - ) From 7b9025eb4aa199aa927a5057d8a8a04b0329f770 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 10 Mar 2023 14:48:15 +0100 Subject: [PATCH 080/355] Try fixing rtd compilation --- doc/api/edisgo.io.rst | 22 +++++++++++++++++++--- doc/api/edisgo.network.rst | 8 ++++++++ edisgo/io/home_batteries_import.py | 5 ++++- 3 files changed, 31 insertions(+), 4 deletions(-) diff --git a/doc/api/edisgo.io.rst b/doc/api/edisgo.io.rst index 0e10978ca..fbbb235fe 100644 --- a/doc/api/edisgo.io.rst +++ b/doc/api/edisgo.io.rst @@ -17,6 +17,14 @@ edisgo.io.ding0\_import module :undoc-members: :show-inheritance: +edisgo.io.dsm\_import module +------------------------------ + +.. automodule:: edisgo.io.dsm_import + :members: + :undoc-members: + :show-inheritance: + edisgo.io.electromobility\_import module ---------------------------------------- @@ -25,6 +33,14 @@ edisgo.io.electromobility\_import module :undoc-members: :show-inheritance: +edisgo.io.generators\_import module +----------------------------------- + +.. automodule:: edisgo.io.generators_import + :members: + :undoc-members: + :show-inheritance: + edisgo.io.heat\_pump\_import module ---------------------------------------- @@ -33,10 +49,10 @@ edisgo.io.heat\_pump\_import module :undoc-members: :show-inheritance: -edisgo.io.generators\_import module ------------------------------------ +edisgo.io.home\_batteries\_import module +---------------------------------------- -.. automodule:: edisgo.io.generators_import +.. automodule:: edisgo.io.home_batteries_import :members: :undoc-members: :show-inheritance: diff --git a/doc/api/edisgo.network.rst b/doc/api/edisgo.network.rst index 437637d4a..33e2e29c2 100644 --- a/doc/api/edisgo.network.rst +++ b/doc/api/edisgo.network.rst @@ -9,6 +9,14 @@ edisgo.network.components module :undoc-members: :show-inheritance: +edisgo.network.dsm module +-------------------------------- + +.. automodule:: edisgo.network.dsm + :members: + :undoc-members: + :show-inheritance: + edisgo.network.electromobility module ------------------------------------- diff --git a/edisgo/io/home_batteries_import.py b/edisgo/io/home_batteries_import.py index 9e308f961..e37c97e63 100644 --- a/edisgo/io/home_batteries_import.py +++ b/edisgo/io/home_batteries_import.py @@ -1,10 +1,10 @@ from __future__ import annotations import logging +import os from typing import TYPE_CHECKING -import geopandas as gpd import pandas as pd import saio @@ -19,6 +19,9 @@ ) from edisgo.tools.geo import mv_grid_gdf +if "READTHEDOCS" not in os.environ: + import geopandas as gpd + if TYPE_CHECKING: from edisgo import EDisGo From 9f8b993a07f2907fa6af93edf2a9c4a471842add Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 11:06:46 +0100 Subject: [PATCH 081/355] Adapt functions to get EV data from database and add tests --- edisgo/io/electromobility_import.py | 227 +++++++++++++++--------- tests/io/test_electromobility_import.py | 67 +++++-- 2 files changed, 196 insertions(+), 98 deletions(-) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index ffebc2d0b..5065a7fa7 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -14,15 +14,9 @@ from numpy.random import default_rng from sklearn import preprocessing -from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.db import ( - get_srid_of_db_table, - session_scope_egon_data, - sql_grid_geom, -) -from edisgo.tools.geo import mv_grid_gdf +from edisgo.io.db import get_srid_of_db_table, session_scope_egon_data if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -1160,34 +1154,73 @@ def integrate_charging_parks(edisgo_obj): ) -def import_electromobility_from_database( +def import_electromobility_from_oedb( edisgo_obj: EDisGo, + scenario: str, engine: Engine, - scenario: str = "eGon2035", **kwargs, ): - saio.register_schema("demand", engine) - saio.register_schema("grid", engine) + """ + Gets electromobility data for specified scenario from oedb. + + Electromobility data includes data on standing times, charging demand, + etc. per vehicle, as well as information on potential charging point locations. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + scenario : str + Scenario for which to retrieve electromobility data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. - edisgo_obj.electromobility.charging_processes_df = charging_processes_from_database( + Other Parameters + ---------------- + kwargs : + Possible options are `gc_to_car_rate_home`, `gc_to_car_rate_work`, + `gc_to_car_rate_public` and `gc_to_car_rate_hpc`. See parameter documentation of + `import_electromobility_data_kwds` parameter in + :attr:`~.EDisGo.import_electromobility` for more information. + + """ + edisgo_obj.electromobility.charging_processes_df = charging_processes_from_oedb( edisgo_obj=edisgo_obj, engine=engine, scenario=scenario ) - - edisgo_obj.electromobility.simbev_config_df = simbev_config_from_database( - engine=engine, scenario=scenario + edisgo_obj.electromobility.simbev_config_df = simbev_config_from_oedb( + scenario=scenario, engine=engine ) - edisgo_obj.electromobility.potential_charging_parks_gdf = ( - potential_charging_parks_from_database( + potential_charging_parks_from_oedb( edisgo_obj=edisgo_obj, engine=engine, **kwargs ) ) -def simbev_config_from_database( +def simbev_config_from_oedb( + scenario: str, engine: Engine, - scenario: str = "eGon2035", ): + """ + Gets :attr:`~.network.electromobility.Electromobility.simbev_config_df` + for specified scenario from oedb. + + Parameters + ---------- + scenario : str + Scenario for which to retrieve electromobility data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + Returns + -------- + :pandas:`pandas.DataFrame` + See :attr:`~.network.electromobility.Electromobility.simbev_config_df` for + more information. + + """ + saio.register_schema("demand", engine) from saio.demand import egon_ev_metadata with session_scope_egon_data(engine) as session: @@ -1200,125 +1233,147 @@ def simbev_config_from_database( return df.assign(days=(df.end_date - df.start_date).iat[0].days + 1) -def potential_charging_parks_from_database( +def potential_charging_parks_from_oedb( edisgo_obj: EDisGo, engine: Engine, **kwargs, ): + """ + Gets :attr:`~.network.electromobility.Electromobility.potential_charging_parks_gdf` + data from oedb. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + Other Parameters + ---------------- + kwargs : + Possible options are `gc_to_car_rate_home`, `gc_to_car_rate_work`, + `gc_to_car_rate_public` and `gc_to_car_rate_hpc`. See parameter documentation of + `import_electromobility_data_kwds` parameter in + :attr:`~.EDisGo.import_electromobility` for more information. + + Returns + -------- + :geopandas:`geopandas.GeoDataFrame` + See + :attr:`~.network.electromobility.Electromobility.potential_charging_parks_gdf` + for more information. + + """ + saio.register_schema("grid", engine) from saio.grid import egon_emob_charging_infrastructure - crs = mv_grid_gdf(edisgo_obj).crs - sql_geom = sql_grid_geom(edisgo_obj) + crs = edisgo_obj.topology.grid_district["srid"] with session_scope_egon_data(engine) as session: srid = get_srid_of_db_table(session, egon_emob_charging_infrastructure.geometry) - query = session.query(egon_emob_charging_infrastructure).filter( - func.ST_Within( - func.ST_Transform( - egon_emob_charging_infrastructure.geometry, - srid, - ), - func.ST_Transform( - sql_geom, - srid, - ), - ) - ) + query = session.query( + egon_emob_charging_infrastructure.cp_id, + egon_emob_charging_infrastructure.use_case, + egon_emob_charging_infrastructure.weight.label("user_centric_weight"), + egon_emob_charging_infrastructure.geometry.label("geom"), + ).filter(egon_emob_charging_infrastructure.mv_grid_id == edisgo_obj.topology.id) gdf = gpd.read_postgis( sql=query.statement, con=query.session.bind, - geom_col="geometry", + geom_col="geom", crs=f"EPSG:{srid}", index_col="cp_id", ).to_crs(crs) gdf = gdf.assign(ags=0) - rename = { - "weight": "user_centric_weight", - } - - gdf = gdf.rename(columns=rename, errors="raise")[ - COLUMNS["potential_charging_parks_gdf"] - ] - return assure_minimum_potential_charging_parks( edisgo_obj=edisgo_obj, potential_charging_parks_gdf=gdf, **kwargs ) -def charging_processes_from_database( +def charging_processes_from_oedb( edisgo_obj: EDisGo, engine: Engine, - scenario: str = "eGon2035", + scenario: str, ): + """ + Gets :attr:`~.network.electromobility.Electromobility.charging_processes_df` data + for specified scenario from oedb. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + scenario : str + Scenario for which to retrieve data. Possible options are 'eGon2035' and + 'eGon100RE'. + + Returns + -------- + :pandas:`pandas.DataFrame` + See :attr:`~.network.electromobility.Electromobility.charging_processes_df` for + more information. + + """ + + saio.register_schema("demand", engine) from saio.demand import egon_ev_mv_grid_district, egon_ev_trip + # get EV pool in grid + scenario_variation = {"eGon2035": "NEP C 2035", "eGon100RE": "Reference 2050"} with session_scope_egon_data(engine) as session: query = session.query(egon_ev_mv_grid_district.egon_ev_pool_ev_id).filter( egon_ev_mv_grid_district.scenario == scenario, + egon_ev_mv_grid_district.scenario_variation == scenario_variation[scenario], egon_ev_mv_grid_district.bus_id == edisgo_obj.topology.id, ) - pool = Counter( - pd.read_sql(sql=query.statement, con=query.session.bind).egon_ev_pool_ev_id - ) - - n_max = max(pool.values()) + pool = Counter(pd.read_sql(sql=query.statement, con=engine).egon_ev_pool_ev_id) + # get charging processes for each EV ID with session_scope_egon_data(engine) as session: - query = session.query(egon_ev_trip).filter( + query = session.query( + egon_ev_trip.egon_ev_pool_ev_id.label("car_id"), + egon_ev_trip.use_case, + egon_ev_trip.location.label("destination"), + egon_ev_trip.charging_capacity_nominal.label( + "nominal_charging_capacity_kW" + ), + egon_ev_trip.charging_capacity_grid.label("grid_charging_capacity_kW"), + egon_ev_trip.charging_demand.label("chargingdemand_kWh"), + egon_ev_trip.park_start.label("park_start_timesteps"), + egon_ev_trip.park_end.label("park_end_timesteps"), + ).filter( egon_ev_trip.scenario == scenario, egon_ev_trip.charging_demand > 0, egon_ev_trip.egon_ev_pool_ev_id.in_(pool.keys()), ) + ev_trips_df = pd.read_sql(sql=query.statement, con=engine) - ev_trips_df = pd.read_sql(sql=query.statement, con=query.session.bind) - + # duplicate EVs that were chosen more than once from EV pool df_list = [] - last_id = 0 - + n_max = max(pool.values()) for i in range(n_max, 0, -1): evs = sorted([ev_id for ev_id, count in pool.items() if count >= i]) - - df = ev_trips_df.loc[ev_trips_df.egon_ev_pool_ev_id.isin(evs)] - + df = ev_trips_df.loc[ev_trips_df.car_id.isin(evs)] mapping = {ev: count + last_id for count, ev in enumerate(evs)} - - df.egon_ev_pool_ev_id = df.egon_ev_pool_ev_id.map(mapping) - + df.car_id = df.car_id.map(mapping) last_id = max(mapping.values()) + 1 - df_list.append(df) - df = pd.concat(df_list, ignore_index=True) - rename = { - "egon_ev_pool_ev_id": "car_id", - "location": "destination", - "charging_capacity_nominal": "nominal_charging_capacity_kW", - "charging_capacity_grid": "grid_charging_capacity_kW", - "charging_demand": "chargingdemand_kWh", - "park_start": "park_start_timesteps", - "park_end": "park_end_timesteps", - } - - df = df.rename(columns=rename, errors="raise") - + # make sure count starts at 0 if df.park_start_timesteps.min() == 1: df.loc[:, ["park_start_timesteps", "park_end_timesteps"]] -= 1 - return ( - df.assign( - ags=0, - park_time_timesteps=df.park_end_timesteps - df.park_start_timesteps + 1, - )[COLUMNS["charging_processes_df"]] - .astype(DTYPES["charging_processes_df"]) - .assign( - charging_park_id=np.nan, - charging_point_id=np.nan, - ) - ) + return df.assign( + ags=0, + park_time_timesteps=df.park_end_timesteps - df.park_start_timesteps + 1, + charging_park_id=np.nan, + charging_point_id=np.nan, + ).astype(DTYPES["charging_processes_df"]) diff --git a/tests/io/test_electromobility_import.py b/tests/io/test_electromobility_import.py index 900743e3d..81d91ac20 100644 --- a/tests/io/test_electromobility_import.py +++ b/tests/io/test_electromobility_import.py @@ -1,14 +1,12 @@ import os +import numpy as np import pandas as pd import pytest from edisgo.edisgo import EDisGo -from edisgo.io.electromobility_import import ( - distribute_charging_demand, - import_electromobility, - integrate_charging_parks, -) +from edisgo.io import electromobility_import +from edisgo.tools.geo import mv_grid_gdf class TestElectromobilityImport: @@ -33,7 +31,9 @@ def setup_class(cls): def test_import_electromobility(self): - import_electromobility(self.edisgo_obj, self.simbev_path, self.tracbev_path) + electromobility_import.import_electromobility( + self.edisgo_obj, self.simbev_path, self.tracbev_path + ) electromobility = self.edisgo_obj.electromobility @@ -58,7 +58,7 @@ def test_import_electromobility(self): def test_distribute_charging_demand(self): # test user friendly - distribute_charging_demand(self.edisgo_obj) + electromobility_import.distribute_charging_demand(self.edisgo_obj) electromobility = self.edisgo_obj.electromobility @@ -82,8 +82,12 @@ def test_distribute_charging_demand(self): self.edisgo_obj.set_timeindex(timeindex) self.edisgo_obj.resample_timeseries() - import_electromobility(self.edisgo_obj, self.simbev_path, self.tracbev_path) - distribute_charging_demand(self.edisgo_obj, mode="grid_friendly") + electromobility_import.import_electromobility( + self.edisgo_obj, self.simbev_path, self.tracbev_path + ) + electromobility_import.distribute_charging_demand( + self.edisgo_obj, mode="grid_friendly" + ) electromobility = self.edisgo_obj.electromobility @@ -107,8 +111,10 @@ def test_distribute_charging_demand(self): self.edisgo_obj.set_timeindex(timeindex) self.edisgo_obj.resample_timeseries() - import_electromobility(self.edisgo_obj, self.simbev_path, self.tracbev_path) - distribute_charging_demand( + electromobility_import.import_electromobility( + self.edisgo_obj, self.simbev_path, self.tracbev_path + ) + electromobility_import.distribute_charging_demand( self.edisgo_obj, generators_weight_factor=1 / 3, distance_weight=0.5, @@ -133,7 +139,7 @@ def test_distribute_charging_demand(self): def test_integrate_charging_parks(self): - integrate_charging_parks(self.edisgo_obj) + electromobility_import.integrate_charging_parks(self.edisgo_obj) electromobility = self.edisgo_obj.electromobility @@ -163,3 +169,40 @@ def test_integrate_charging_parks(self): edisgo_ids_topology = sorted(topology.charging_points_df.index.tolist()) assert edisgo_ids_cp == edisgo_ids_topology + + @pytest.mark.local + def test_simbev_config_from_oedb(self): + config_df = electromobility_import.simbev_config_from_oedb( + engine=pytest.engine, scenario="eGon2035" + ) + assert len(config_df) == 1 + assert config_df["eta_cp"][0] == 0.9 + assert config_df["stepsize"][0] == 15 + assert config_df["days"][0] == 365 + + @pytest.mark.local + def test_potential_charging_parks_from_oedb(self): + edisgo_obj = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + potential_parks_df = electromobility_import.potential_charging_parks_from_oedb( + edisgo_obj=edisgo_obj, engine=pytest.engine + ) + assert len(potential_parks_df) == 1083 + # check for random charging points if they are within MV grid district + grid_gdf = mv_grid_gdf(edisgo_obj) + assert all(potential_parks_df.geom[10].within(grid_gdf.geometry)) + assert all(potential_parks_df.geom[100].within(grid_gdf.geometry)) + + @pytest.mark.local + def test_charging_processes_from_oedb(self): + edisgo_obj = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + charging_processes_df = electromobility_import.charging_processes_from_oedb( + edisgo_obj=edisgo_obj, engine=pytest.engine, scenario="eGon2035" + ) + assert len(charging_processes_df.car_id.unique()) == 1604 + assert np.isclose( + charging_processes_df.chargingdemand_kWh.sum() / 1604, 2414.31, atol=1e-3 + ) From 754587d05a86b85e12af9c237aad31d030aae691 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 11:08:14 +0100 Subject: [PATCH 082/355] Minor docstring changes --- edisgo/edisgo.py | 5 ++--- edisgo/io/heat_pump_import.py | 2 +- edisgo/network/electromobility.py | 16 ++++++---------- 3 files changed, 9 insertions(+), 14 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 98d0b5deb..65d62f784 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1115,7 +1115,7 @@ def add_component( No reactive power time series is set. Default: None - **kwargs: dict + **kwargs : dict Attributes of added component. See respective functions for required entries. @@ -1595,7 +1595,7 @@ def import_electromobility( the generators and load factors of the LV grids. Default 1 / 3. user_friendly_weight : float - Weighting factor of the user friendly weight in comparison to the + Weighting factor of the user-friendly weight in comparison to the grid friendly weight. Default 0.5. """ @@ -1870,7 +1870,6 @@ def import_home_batteries( remove_existing=remove_existing, ) - def plot_mv_grid_topology(self, technologies=False, **kwargs): """ Plots plain MV network topology and optionally nodes by technology type diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index 95d045f8f..f9ceab2f4 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -33,7 +33,7 @@ def oedb(edisgo_object, scenario, engine): Scenario for which to retrieve heat pump data. Possible options are 'eGon2035' and 'eGon100RE'. engine : :sqlalchemy:`sqlalchemy.Engine` - Database engine. + Database engine. Returns -------- diff --git a/edisgo/network/electromobility.py b/edisgo/network/electromobility.py index c817c7be0..211608fd3 100644 --- a/edisgo/network/electromobility.py +++ b/edisgo/network/electromobility.py @@ -80,8 +80,7 @@ def __init__(self, **kwargs): @property def charging_processes_df(self): """ - DataFrame with all - `SimBEV `_ + DataFrame with all `SimBEV `_ charging processes. Returns @@ -144,15 +143,14 @@ def charging_processes_df(self, df): @property def potential_charging_parks_gdf(self): """ - GeoDataFrame with all - `TracBEV `_ + GeoDataFrame with all `TracBEV `_ potential charging parks. Returns ------- - :geopandas:`GeoDataFrame` + :geopandas:`geopandas.GeoDataFrame` GeoDataFrame with ID as index, AGS, charging use case (home, work, public or - hpc), user centric weight and geometry. Columns are: + hpc), user-centric weight and geometry. Columns are: index : int Charging park ID. @@ -194,9 +192,7 @@ def potential_charging_parks(self): @property def simbev_config_df(self): """ - Dict with all - `SimBEV `_ - config data. + Dict with all `SimBEV `_ config data. Returns ------- @@ -222,7 +218,7 @@ def simbev_config_df(self): End date of the SimBEV simulation. soc_min : float - Minimum SoC when a HPC event is initialized in SimBEV. + Minimum SoC when an HPC event is initialized in SimBEV. grid_timeseries : bool Setting whether a grid timeseries is generated within the SimBEV From 25cc09ed12dbed6a73f20a9d7c41843c357c5868 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 13:28:44 +0100 Subject: [PATCH 083/355] Allow choosing whether to import all charging processes or only those with charging demand --- edisgo/io/electromobility_import.py | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 5065a7fa7..4d6515e0f 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -1179,13 +1179,13 @@ def import_electromobility_from_oedb( ---------------- kwargs : Possible options are `gc_to_car_rate_home`, `gc_to_car_rate_work`, - `gc_to_car_rate_public` and `gc_to_car_rate_hpc`. See parameter documentation of - `import_electromobility_data_kwds` parameter in + `gc_to_car_rate_public`, `gc_to_car_rate_hpc`, and `mode_parking_times`. See + parameter documentation of `import_electromobility_data_kwds` parameter in :attr:`~.EDisGo.import_electromobility` for more information. """ edisgo_obj.electromobility.charging_processes_df = charging_processes_from_oedb( - edisgo_obj=edisgo_obj, engine=engine, scenario=scenario + edisgo_obj=edisgo_obj, engine=engine, scenario=scenario, **kwargs ) edisgo_obj.electromobility.simbev_config_df = simbev_config_from_oedb( scenario=scenario, engine=engine @@ -1295,9 +1295,7 @@ def potential_charging_parks_from_oedb( def charging_processes_from_oedb( - edisgo_obj: EDisGo, - engine: Engine, - scenario: str, + edisgo_obj: EDisGo, engine: Engine, scenario: str, **kwargs ): """ Gets :attr:`~.network.electromobility.Electromobility.charging_processes_df` data @@ -1312,6 +1310,13 @@ def charging_processes_from_oedb( Scenario for which to retrieve data. Possible options are 'eGon2035' and 'eGon100RE'. + Other Parameters + ---------------- + kwargs : + Possible option is `mode_parking_times`. See parameter documentation of + `import_electromobility_data_kwds` parameter in + :attr:`~.EDisGo.import_electromobility` for more information. + Returns -------- :pandas:`pandas.DataFrame` @@ -1349,9 +1354,10 @@ def charging_processes_from_oedb( egon_ev_trip.park_end.label("park_end_timesteps"), ).filter( egon_ev_trip.scenario == scenario, - egon_ev_trip.charging_demand > 0, egon_ev_trip.egon_ev_pool_ev_id.in_(pool.keys()), ) + if kwargs.get("mode_parking_times", "frugal") == "frugal": + query = query.filter(egon_ev_trip.charging_demand > 0) ev_trips_df = pd.read_sql(sql=query.statement, con=engine) # duplicate EVs that were chosen more than once from EV pool From 39262437759ccb351545849742b64cb5ed5d750f Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 13:30:38 +0100 Subject: [PATCH 084/355] Adapt EDisGo.import_electromobility and its tests --- edisgo/edisgo.py | 146 ++++++++++++++---------- edisgo/io/electromobility_import.py | 10 +- tests/io/test_electromobility_import.py | 4 + tests/test_edisgo.py | 76 +++++++++++- 4 files changed, 165 insertions(+), 71 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 65d62f784..6179b4520 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -24,8 +24,8 @@ from edisgo.io.dsm_import import dsm_from_database from edisgo.io.electromobility_import import ( distribute_charging_demand, - import_electromobility, - import_electromobility_from_database, + import_electromobility_from_dir, + import_electromobility_from_oedb, integrate_charging_parks, ) from edisgo.io.generators_import import generators_from_database @@ -1508,29 +1508,33 @@ def _aggregate_time_series(attribute, groups, naming): def import_electromobility( self, - simbev_directory: PurePath | str, - tracbev_directory: PurePath | str, + data_source: str, + scenario: str = None, + engine: Engine = None, + charging_processes_dir: PurePath | str = None, + potential_charging_points_dir: PurePath | str = None, import_electromobility_data_kwds=None, allocate_charging_demand_kwds=None, ): """ Imports electromobility data and integrates charging points into grid. - So far, this function requires electromobility data from + Electromobility data can be obtained from the `OpenEnergy DataBase + `_ or from self-provided + data. In case you want to use self-provided data, it needs to be generated + using the tools `SimBEV `_ (required version: `3083c5a `_) and `TracBEV `_ (required version: `14d864c `_) to be stored in the - directories specified through the parameters `simbev_directory` and - `tracbev_directory`. SimBEV provides data on standing times, charging demand, - etc. per vehicle, whereas TracBEV provides potential charging point locations. + 03e335655770a377166c05293a966052314d864c>`_). SimBEV provides data on standing + times, charging demand, etc. per vehicle, whereas TracBEV provides potential + charging point locations. - After electromobility data is loaded, the charging demand from SimBEV is - allocated to potential charging points from TracBEV. Afterwards, - all potential charging points with charging demand allocated to them are - integrated into the grid. + After electromobility data is loaded, the charging demand from is allocated to + potential charging points. Afterwards, all potential charging points with + charging demand allocated to them are integrated into the grid. Be aware that this function does not yield charging time series per charging point but only charging processes (see @@ -1541,85 +1545,105 @@ def import_electromobility( Parameters ---------- - simbev_directory : str - SimBEV directory holding SimBEV data. - tracbev_directory : str - TracBEV directory holding TracBEV data. + data_source : str + Specifies source from where to obtain electromobility data. + Possible options are: + + * "oedb" + + Electromobility data is obtained from the `OpenEnergy DataBase + `_. + + This option requires that the parameters `scenario` and `engine` are + provided. + + * "directory" + + Electromobility data is obtained from directories specified through + parameters `charging_processes_dir` and `potential_charging_points_dir`. + + scenario : str + Scenario for which to retrieve electromobility data in case `data_source` is + set to "oedb". Possible options are "eGon2035" and "eGon100RE". + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. Needs to be provided in case `data_source` is set to + "oedb". + charging_processes_dir : str or pathlib.PurePath + Directory holding data on charging processes (standing times, charging + demand, etc. per vehicle), including metadata, from SimBEV. + potential_charging_points_dir : str or pathlib.PurePath + Directory holding data on potential charging point locations from TracBEV. import_electromobility_data_kwds : dict - These may contain any further attributes you want to specify when calling - the function to import electromobility data from SimBEV and TracBEV using - :func:`~.io.electromobility_import.import_electromobility`. + These may contain any further attributes you want to specify when importing + electromobility data. gc_to_car_rate_home : float - Specifies the minimum rate between potential charging parks - points for the use case "home" and the total number of cars. - Default 0.5. + Specifies the minimum rate between potential charging points for the + use case "home" and the total number of cars. Default: 0.5. gc_to_car_rate_work : float - Specifies the minimum rate between potential charging parks - points for the use case "work" and the total number of cars. - Default 0.25. + Specifies the minimum rate between potential charging points for the + use case "work" and the total number of cars. Default: 0.25. gc_to_car_rate_public : float - Specifies the minimum rate between potential charging parks - points for the use case "public" and the total number of cars. - Default 0.1. + Specifies the minimum rate between potential charging points for the + use case "public" and the total number of cars. Default: 0.1. gc_to_car_rate_hpc : float - Specifies the minimum rate between potential charging parks - points for the use case "hpc" and the total number of cars. - Default 0.005. + Specifies the minimum rate between potential charging points for the + use case "hpc" and the total number of cars. Default: 0.005. mode_parking_times : str If the mode_parking_times is set to "frugal" only parking times with any charging demand are imported. Any other input will lead - to all parking and driving events being imported. Default "frugal". + to all parking and driving events being imported. Default: "frugal". charging_processes_dir : str - Charging processes sub-directory. Default None. + Charging processes sub-directory. Only used when `data_source` is + set to "directory". Default: None. simbev_config_file : str - Name of the simbev config file. Default "metadata_simbev_run.json". + Name of the simbev config file. Only used when `data_source` is + set to "directory". Default: "metadata_simbev_run.json". allocate_charging_demand_kwds : These may contain any further attributes you want to specify when calling - the function that allocates charging processes from SimBEV to potential - charging points from TracBEV using - :func:`~.io.electromobility_import.distribute_charging_demand`. + the function :func:`~.io.electromobility_import.distribute_charging_demand` + that allocates charging processes to potential charging points. mode : str Distribution mode. If the mode is set to "user_friendly" only the simbev weights are used for the distribution. If the mode is "grid_friendly" also grid conditions are respected. - Default "user_friendly". + Default: "user_friendly". generators_weight_factor : float Weighting factor of the generators weight within an LV grid in - comparison to the loads weight. Default 0.5. + comparison to the loads weight. Default: 0.5. distance_weight : float Weighting factor for the distance between a potential charging park and its nearest substation in comparison to the combination of - the generators and load factors of the LV grids. - Default 1 / 3. + the generators and load factors of the LV grids. Default: 1 / 3. user_friendly_weight : float Weighting factor of the user-friendly weight in comparison to the - grid friendly weight. Default 0.5. + grid friendly weight. Default: 0.5. """ if import_electromobility_data_kwds is None: import_electromobility_data_kwds = {} - import_electromobility( - self, - simbev_directory, - tracbev_directory, - **import_electromobility_data_kwds, - ) - - if allocate_charging_demand_kwds is None: - allocate_charging_demand_kwds = {} - - distribute_charging_demand(self, **allocate_charging_demand_kwds) - - integrate_charging_parks(self) - - def import_electromobility_from_database( - self, engine: Engine, allocate_charging_demand_kwds: dict = None, **kwargs - ): - import_electromobility_from_database(self, engine=engine, **kwargs) + if data_source == "oedb": + import_electromobility_from_oedb( + self, + scenario=scenario, + engine=engine, + **import_electromobility_data_kwds, + ) + elif data_source == "directory": + import_electromobility_from_dir( + self, + charging_processes_dir, + potential_charging_points_dir, + **import_electromobility_data_kwds, + ) + else: + raise ValueError( + "Invalid input for parameter 'data_source'. Possible options are " + "'oedb' and 'directory'." + ) if allocate_charging_demand_kwds is None: allocate_charging_demand_kwds = {} diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 4d6515e0f..dacc946e3 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -104,7 +104,7 @@ } -def import_electromobility( +def import_electromobility_from_dir( edisgo_obj: EDisGo, simbev_directory: PurePath | str, tracbev_directory: PurePath | str, @@ -113,7 +113,7 @@ def import_electromobility( """ Import electromobility data from `SimBEV `_ and - `TracBEV `_. + `TracBEV `_ from directory. Parameters ---------- @@ -304,14 +304,14 @@ def read_gpkg_potential_charging_parks(path, edisgo_obj, **kwargs): Parameters ---------- path : str - Main path holding SimBEV output data + Main path holding TracBEV data. edisgo_obj : :class:`~.EDisGo` Returns ------- :geopandas:`GeoDataFrame` GeoDataFrame with AGS, charging use case (home, work, public or - hpc), user centric weight and geometry. + hpc), user-centric weight and geometry. """ files = [f for f in os.listdir(path) if f.endswith(".gpkg")] @@ -391,7 +391,7 @@ def assure_minimum_potential_charging_parks( num_gcs = len(use_case_gdf) - # if simbev doesn't provide possible grid connections choose a + # if tracbev doesn't provide possible grid connections choose a # random public potential charging park and duplicate if num_gcs == 0: logger.warning( diff --git a/tests/io/test_electromobility_import.py b/tests/io/test_electromobility_import.py index 81d91ac20..ba01509b4 100644 --- a/tests/io/test_electromobility_import.py +++ b/tests/io/test_electromobility_import.py @@ -203,6 +203,10 @@ def test_charging_processes_from_oedb(self): edisgo_obj=edisgo_obj, engine=pytest.engine, scenario="eGon2035" ) assert len(charging_processes_df.car_id.unique()) == 1604 + assert len(charging_processes_df) == 323507 + assert charging_processes_df[ + charging_processes_df.chargingdemand_kWh == 0 + ].empty assert np.isclose( charging_processes_df.chargingdemand_kWh.sum() / 1604, 2414.31, atol=1e-3 ) diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 46044c51e..62fe28db8 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -1052,12 +1052,19 @@ def test_aggregate_components(self): self.edisgo.analyze() def test_import_electromobility(self): + """ + Test import from directories. + """ self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_2_path) # test with default parameters simbev_path = pytest.simbev_example_scenario_path tracbev_path = pytest.tracbev_example_scenario_path - self.edisgo.import_electromobility(simbev_path, tracbev_path) + self.edisgo.import_electromobility( + data_source="directory", + charging_processes_dir=simbev_path, + potential_charging_points_dir=tracbev_path, + ) assert len(self.edisgo.electromobility.charging_processes_df) == 48 assert len(self.edisgo.electromobility.potential_charging_parks_gdf) == 1621 @@ -1109,10 +1116,11 @@ def test_import_electromobility(self): # test with kwargs self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_2_path) self.edisgo.import_electromobility( - simbev_path, - tracbev_path, - {"mode_parking_times": "not_frugal"}, - {"mode": "grid_friendly"}, + data_source="directory", + charging_processes_dir=simbev_path, + potential_charging_points_dir=tracbev_path, + import_electromobility_data_kwds={"mode_parking_times": "not_frugal"}, + allocate_charging_demand_kwds={"mode": "grid_friendly"}, ) # Length of charging_processes_df, potential_charging_parks_gdf and @@ -1158,6 +1166,64 @@ def test_import_electromobility(self): ) # fmt: on + @pytest.mark.local + def test_import_electromobility_oedb(self): + """ + Test import from oedb. + """ + self.edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + + # test with default parameters + self.edisgo.import_electromobility( + data_source="oedb", scenario="eGon2035", engine=pytest.engine + ) + + assert len(self.edisgo.electromobility.charging_processes_df) == 323507 + assert self.edisgo.electromobility.eta_charging_points == 0.9 + + total_charging_demand_at_charging_parks = sum( + cp.charging_processes_df.chargingdemand_kWh.sum() + for cp in list(self.edisgo.electromobility.potential_charging_parks) + if cp.designated_charging_point_capacity > 0 + ) + total_charging_demand = ( + self.edisgo.electromobility.charging_processes_df.chargingdemand_kWh.sum() + ) + assert np.isclose( + total_charging_demand_at_charging_parks, total_charging_demand + ) + + # fmt: off + charging_park_ids = ( + self.edisgo.electromobility.charging_processes_df.charging_park_id. + sort_values().unique() + ) + potential_charging_parks_with_capacity = np.sort( + [ + cp.id + for cp in list(self.edisgo.electromobility.potential_charging_parks) + if cp.designated_charging_point_capacity > 0.0 + ] + ) + # fmt: on + + assert set(charging_park_ids) == set(potential_charging_parks_with_capacity) + + # fmt: off + assert set( + self.edisgo.electromobility.integrated_charging_parks_df.edisgo_id. + sort_values().values + ) == set( + self.edisgo.topology.loads_df[ + self.edisgo.topology.loads_df.type == "charging_point" + ] + .index.sort_values() + .values + ) + # fmt: on + @pytest.mark.local def test_import_heat_pumps(self): From efa1bfbdac201bb7fe155f1d7df29ab95b0a0c24 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 15:19:29 +0100 Subject: [PATCH 085/355] Move assure_minimum_potential_charging_parks out of functions reading TracBEV data for easier testing --- edisgo/io/electromobility_import.py | 42 ++++++++++++----------------- 1 file changed, 17 insertions(+), 25 deletions(-) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index dacc946e3..f9c204bd1 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -164,10 +164,14 @@ def import_electromobility_from_dir( simbev_config_file=kwargs.pop("simbev_config_file", "metadata_simbev_run.json"), ) + potential_charging_parks_gdf = read_gpkg_potential_charging_parks( + tracbev_directory, + edisgo_obj, + ) edisgo_obj.electromobility.potential_charging_parks_gdf = ( - read_gpkg_potential_charging_parks( - tracbev_directory, - edisgo_obj, + assure_minimum_potential_charging_parks( + edisgo_obj=edisgo_obj, + potential_charging_parks_gdf=potential_charging_parks_gdf, **kwargs, ) ) @@ -296,7 +300,7 @@ def read_simbev_config_df( return pd.DataFrame(data=data, index=[0]) -def read_gpkg_potential_charging_parks(path, edisgo_obj, **kwargs): +def read_gpkg_potential_charging_parks(path, edisgo_obj): """ Get GeoDataFrame with all `TracBEV `_ potential charging parks. @@ -360,11 +364,7 @@ def read_gpkg_potential_charging_parks(path, edisgo_obj, **kwargs): crs=potential_charging_parks_gdf_list[0].crs, ) - return assure_minimum_potential_charging_parks( - edisgo_obj=edisgo_obj, - potential_charging_parks_gdf=potential_charging_parks_gdf, - **kwargs, - ) + return potential_charging_parks_gdf def assure_minimum_potential_charging_parks( @@ -1190,9 +1190,14 @@ def import_electromobility_from_oedb( edisgo_obj.electromobility.simbev_config_df = simbev_config_from_oedb( scenario=scenario, engine=engine ) + potential_charging_parks_gdf = potential_charging_parks_from_oedb( + edisgo_obj=edisgo_obj, engine=engine, **kwargs + ) edisgo_obj.electromobility.potential_charging_parks_gdf = ( - potential_charging_parks_from_oedb( - edisgo_obj=edisgo_obj, engine=engine, **kwargs + assure_minimum_potential_charging_parks( + edisgo_obj=edisgo_obj, + potential_charging_parks_gdf=potential_charging_parks_gdf, + **kwargs, ) ) @@ -1236,7 +1241,6 @@ def simbev_config_from_oedb( def potential_charging_parks_from_oedb( edisgo_obj: EDisGo, engine: Engine, - **kwargs, ): """ Gets :attr:`~.network.electromobility.Electromobility.potential_charging_parks_gdf` @@ -1248,14 +1252,6 @@ def potential_charging_parks_from_oedb( engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. - Other Parameters - ---------------- - kwargs : - Possible options are `gc_to_car_rate_home`, `gc_to_car_rate_work`, - `gc_to_car_rate_public` and `gc_to_car_rate_hpc`. See parameter documentation of - `import_electromobility_data_kwds` parameter in - :attr:`~.EDisGo.import_electromobility` for more information. - Returns -------- :geopandas:`geopandas.GeoDataFrame` @@ -1287,11 +1283,7 @@ def potential_charging_parks_from_oedb( index_col="cp_id", ).to_crs(crs) - gdf = gdf.assign(ags=0) - - return assure_minimum_potential_charging_parks( - edisgo_obj=edisgo_obj, potential_charging_parks_gdf=gdf, **kwargs - ) + return gdf.assign(ags=0) def charging_processes_from_oedb( From 52599cea61aadafaf99874e532b09f19e5b6d705 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 15:20:43 +0100 Subject: [PATCH 086/355] Bug fix concatenating geodataframes and add test --- edisgo/io/electromobility_import.py | 49 +++++++++++-------------- tests/io/test_electromobility_import.py | 24 ++++++++++++ 2 files changed, 46 insertions(+), 27 deletions(-) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index f9c204bd1..11d290205 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -409,16 +409,17 @@ def assure_minimum_potential_charging_parks( random_state=edisgo_obj.topology.mv_grid.id, ).assign(use_case=use_case) - potential_charging_parks_gdf = gpd.GeoDataFrame( - pd.concat( - [ - potential_charging_parks_gdf, - random_gcs, - ], - ignore_index=True, - ), - crs=potential_charging_parks_gdf.crs, + potential_charging_parks_gdf = pd.concat( + [ + potential_charging_parks_gdf, + random_gcs, + ], + ignore_index=True, ) + use_case_gdf = potential_charging_parks_gdf.loc[ + potential_charging_parks_gdf.use_case == use_case + ] + num_gcs = len(use_case_gdf) # escape zero division actual_gc_to_car_rate = np.Infinity if num_cars == 0 else num_gcs / num_cars @@ -435,15 +436,12 @@ def assure_minimum_potential_charging_parks( ) if actual_gc_to_car_rate * 2 < gc_to_car_rate: - potential_charging_parks_gdf = gpd.GeoDataFrame( - pd.concat( - [ - potential_charging_parks_gdf, - use_case_gdf, - ], - ignore_index=True, - ), - crs=potential_charging_parks_gdf.crs, + potential_charging_parks_gdf = pd.concat( + [ + potential_charging_parks_gdf, + use_case_gdf, + ], + ignore_index=True, ) else: @@ -456,15 +454,12 @@ def assure_minimum_potential_charging_parks( n=extra_gcs, random_state=edisgo_obj.topology.mv_grid.id ) - potential_charging_parks_gdf = gpd.GeoDataFrame( - pd.concat( - [ - potential_charging_parks_gdf, - extra_gdf, - ], - ignore_index=True, - ), - crs=potential_charging_parks_gdf.crs, + potential_charging_parks_gdf = pd.concat( + [ + potential_charging_parks_gdf, + extra_gdf, + ], + ignore_index=True, ) use_case_gdf = potential_charging_parks_gdf.loc[ diff --git a/tests/io/test_electromobility_import.py b/tests/io/test_electromobility_import.py index ba01509b4..5141e87b9 100644 --- a/tests/io/test_electromobility_import.py +++ b/tests/io/test_electromobility_import.py @@ -55,6 +55,30 @@ def test_import_electromobility(self): list(electromobility.potential_charging_parks) ) + def test_assure_minimum_potential_charging_parks(self): + self.edisgo_obj.electromobility.charging_processes_df = ( + electromobility_import.read_csvs_charging_processes(self.simbev_path) + ) + pot_cp_gdf_raw = electromobility_import.read_gpkg_potential_charging_parks( + self.tracbev_path, self.edisgo_obj + ) + + # manipulate data in order to catch every case handled in assure_minimum... + # drop hpc charging point to have no hpc points available + hpc_points = pot_cp_gdf_raw[pot_cp_gdf_raw.use_case == "hpc"].index + pot_cp_gdf_raw = pot_cp_gdf_raw.drop(hpc_points) + # drop all but one work charging point + work_points = pot_cp_gdf_raw[pot_cp_gdf_raw.use_case == "work"].index + pot_cp_gdf_raw = pot_cp_gdf_raw.drop(work_points[1:]) + + pot_cp_gdf = electromobility_import.assure_minimum_potential_charging_parks( + self.edisgo_obj, pot_cp_gdf_raw, gc_to_car_rate_work=0.3 + ) + + assert len(pot_cp_gdf_raw) < len(pot_cp_gdf) + assert len(pot_cp_gdf[pot_cp_gdf.use_case == "hpc"]) == 32 + assert len(pot_cp_gdf[pot_cp_gdf.use_case == "work"]) == 4 + def test_distribute_charging_demand(self): # test user friendly From 8ce268996f3f3436c07c2878157b3a1dbbdf11ea Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 15:22:32 +0100 Subject: [PATCH 087/355] Bug fix use new function name --- tests/io/test_electromobility_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/io/test_electromobility_import.py b/tests/io/test_electromobility_import.py index 5141e87b9..1a45b6e38 100644 --- a/tests/io/test_electromobility_import.py +++ b/tests/io/test_electromobility_import.py @@ -31,7 +31,7 @@ def setup_class(cls): def test_import_electromobility(self): - electromobility_import.import_electromobility( + electromobility_import.import_electromobility_from_dir( self.edisgo_obj, self.simbev_path, self.tracbev_path ) From c19585dd911318009df95883ead1a571447d118a Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 18:39:56 +0100 Subject: [PATCH 088/355] Bug fix apply intersect in database --- edisgo/tools/tools.py | 84 ++++++++++--------------------------------- 1 file changed, 18 insertions(+), 66 deletions(-) diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index ea14a9c9a..d35eb41e4 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -11,25 +11,14 @@ import pandas as pd import saio -from sqlalchemy import func from sqlalchemy.engine.base import Engine from edisgo.flex_opt import check_tech_constraints, exceptions -from edisgo.io.db import ( - get_srid_of_db_table, - session_scope_egon_data, - sql_grid_geom, - sql_intersects, -) +from edisgo.io.db import session_scope_egon_data, sql_grid_geom, sql_intersects from edisgo.tools import session_scope if "READTHEDOCS" not in os.environ: - - import geopandas as gpd - from egoio.db_tables import climate - from shapely.geometry.multipolygon import MultiPolygon - from shapely.wkt import loads as wkt_loads if TYPE_CHECKING: from edisgo import EDisGo @@ -652,7 +641,6 @@ def determine_bus_voltage_level(edisgo_object, bus_name): def get_weather_cells_intersecting_with_grid_district( edisgo_obj: EDisGo, - source: str = "oedb", engine: Engine | None = None, ) -> set: """ @@ -661,77 +649,41 @@ def get_weather_cells_intersecting_with_grid_district( Parameters ---------- edisgo_obj : :class:`~.EDisGo` + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. Only needed when using new egon_data data. Returns ------- - set - Set with weather cell IDs + set(int) + Set with weather cell IDs. """ - # Download geometries of weather cells - if source == "oedb": - srid = edisgo_obj.topology.grid_district["srid"] - table = climate.Cosmoclmgrid + sql_geom = sql_grid_geom(edisgo_obj) + srid = edisgo_obj.topology.grid_district["srid"] + if edisgo_obj.legacy_grids is True: + table = climate.Cosmoclmgrid with session_scope() as session: query = session.query( table.gid, - func.ST_AsText(func.ST_Transform(table.geom, srid)).label("geometry"), - ) - - geom_data = pd.read_sql_query(query.statement, query.session.bind) - geom_data.geometry = geom_data.apply(lambda _: wkt_loads(_.geometry), axis=1) - geom_data = gpd.GeoDataFrame(geom_data, crs=f"EPSG:{srid}") - - # Make sure MV Geometry is MultiPolygon - mv_geom = edisgo_obj.topology.grid_district["geom"] - if mv_geom.geom_type == "Polygon": - # Transform Polygon to MultiPolygon and overwrite geometry - p = wkt_loads(str(mv_geom)) - m = MultiPolygon([p]) - edisgo_obj.topology.grid_district["geom"] = m - elif mv_geom.geom_type == "MultiPolygon": - m = mv_geom - else: - raise ValueError( - f"Grid district geometry is of type {type(mv_geom)}." - " Only Shapely Polygon or MultiPolygon are accepted." - ) - mv_geom_gdf = gpd.GeoDataFrame(m, crs=f"EPSG:{srid}", columns=["geometry"]) - - return set( - np.append( - gpd.sjoin( - geom_data, mv_geom_gdf, how="right", op="intersects" - ).gid.unique(), - edisgo_obj.topology.generators_df.weather_cell_id.dropna().unique(), - ) - ) - - elif source == "egon_data": + ).filter(sql_intersects(table.geom, sql_geom, srid)) + weather_cells = pd.read_sql(sql=query.statement, con=query.session.bind).gid + else: saio.register_schema("supply", engine) - from saio.supply import egon_era5_weather_cells - sql_geom = sql_grid_geom(edisgo_obj) - with session_scope_egon_data(engine=engine) as session: - srid = get_srid_of_db_table(session, egon_era5_weather_cells.geom) - query = session.query( egon_era5_weather_cells.w_id, ).filter(sql_intersects(egon_era5_weather_cells.geom, sql_geom, srid)) - - return set( - pd.read_sql(sql=query.statement, con=query.session.bind).w_id - ).union(set(edisgo_obj.topology.generators_df.weather_cell_id.dropna())) - - else: - raise ValueError( - "Please provide a valid source for obtaining weather cells. At the moment" - "'oedb' and 'egon_data' are supported." + weather_cells = pd.read_sql(sql=query.statement, con=engine).w_id + return set( + np.append( + weather_cells, + edisgo_obj.topology.generators_df.weather_cell_id.dropna(), ) + ) def get_directory_size(start_dir): From c63dec3e7e05c8918083a74c19ebf7b398893f27 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 18:40:17 +0100 Subject: [PATCH 089/355] Add test for getting weather cells from egon_data --- tests/tools/test_tools.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/tests/tools/test_tools.py b/tests/tools/test_tools.py index c7b1716ca..9b9ac1035 100644 --- a/tests/tools/test_tools.py +++ b/tests/tools/test_tools.py @@ -336,6 +336,18 @@ def test_get_weather_cells_intersecting_with_grid_district(self): # for some reason.. assert 1122074 in weather_cells + @pytest.mark.local + def test_get_weather_cells_intersecting_with_grid_district_egon(self): + edisgo_obj = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + weather_cells = tools.get_weather_cells_intersecting_with_grid_district( + edisgo_obj, pytest.engine + ) + assert len(weather_cells) == 2 + assert 11051 in weather_cells + assert 11052 in weather_cells + def test_add_line_susceptance(self): assert self.edisgo.topology.lines_df.loc["Line_10006", "b"] == 0 assert self.edisgo.topology.lines_df.loc["Line_50000002", "b"] == 0 From c6d0ebcacd50d1fe76781a4593d423044a3a3358 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 18:57:00 +0100 Subject: [PATCH 090/355] Bug fix handle gens without a geom --- edisgo/io/generators_import.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 9d673aa51..dd5f8bf67 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -704,11 +704,11 @@ def drop_generators(generator_list, gen_type, total_capacity): # iterate over new generators and create them for id in new_gens_lv.index.sort_values(ascending=True): comp_data = dict(new_gens_lv.loc[id, :]) - - nearest_substation, _ = find_nearest_bus(comp_data["geom"], substations) - - comp_data["mvlv_subst_id"] = int(nearest_substation.split("_")[-2]) - + try: + nearest_substation, _ = find_nearest_bus(comp_data["geom"], substations) + comp_data["mvlv_subst_id"] = int(nearest_substation.split("_")[-2]) + except AttributeError: + pass edisgo_object.topology.connect_to_lv( edisgo_object, comp_data, From a83f900864131044080101e338c29a7e2203e554 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 18:57:26 +0100 Subject: [PATCH 091/355] Fix test adapt to changed generator import --- tests/io/test_generators_import.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/io/test_generators_import.py b/tests/io/test_generators_import.py index 43bd1534b..850c8dd9b 100644 --- a/tests/io/test_generators_import.py +++ b/tests/io/test_generators_import.py @@ -113,13 +113,13 @@ def test_update_grids(self): ) assert ( self.edisgo.topology.generators_df.at[ - "Generator_LVGrid_6_solar_456", "p_nom" + "Generator_LVGrid_9_solar_456", "p_nom" ] == 0.3 ) assert ( self.edisgo.topology.generators_df.at[ - "Generator_LVGrid_6_solar_456", "type" + "Generator_LVGrid_9_solar_456", "type" ] == "solar" ) From 8df43dc5abd41309ae1a5b92bf312a16d813bde5 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 19:05:35 +0100 Subject: [PATCH 092/355] Fix tests - adapt to new function names --- edisgo/network/timeseries.py | 4 ++-- examples/electromobility_example.ipynb | 29 +++++++++++++++++------- tests/flex_opt/test_charging_strategy.py | 6 ++++- tests/io/test_electromobility_import.py | 8 +++---- tests/network/test_electromobility.py | 14 +++++------- tests/test_edisgo.py | 6 ++++- 6 files changed, 43 insertions(+), 24 deletions(-) diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index 46b9335bd..a366b92f5 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -1242,7 +1242,7 @@ def predefined_fluctuating_generators_by_technology( # in case time series from oedb are used, retrieve oedb time series if isinstance(ts_generators, str) and ts_generators == "oedb": weather_cell_ids = get_weather_cells_intersecting_with_grid_district( - edisgo_object, source=ts_generators, engine=None + edisgo_object ) ts_generators = timeseries_import.feedin_oedb( edisgo_object.config, weather_cell_ids, self.timeindex @@ -1255,7 +1255,7 @@ def predefined_fluctuating_generators_by_technology( ) weather_cell_ids = get_weather_cells_intersecting_with_grid_district( - edisgo_object, source=ts_generators, engine=engine + edisgo_object, engine=engine ) ts_generators = timeseries_import.feedin_egon_data( weather_cell_ids, self.timeindex, engine=engine diff --git a/examples/electromobility_example.ipynb b/examples/electromobility_example.ipynb index 6dfa189f3..8d4919824 100644 --- a/examples/electromobility_example.ipynb +++ b/examples/electromobility_example.ipynb @@ -37,7 +37,9 @@ "cell_type": "code", "execution_count": null, "id": "6898e8bd", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "import os\n", @@ -63,7 +65,9 @@ "cell_type": "code", "execution_count": null, "id": "6b5c46ca", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# interactive matplotlib\n", @@ -82,7 +86,9 @@ "cell_type": "code", "execution_count": null, "id": "e3b60c43", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# set up logger that streams edisgo logging messages with level info and above \n", @@ -107,7 +113,9 @@ "cell_type": "code", "execution_count": null, "id": "afe44b3f", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "def download_ding0_example_grid():\n", @@ -156,7 +164,9 @@ "cell_type": "code", "execution_count": null, "id": "b8a406ae", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "ding0_grid = os.path.join(os.path.expanduser(\"~\"), \".edisgo\", \"ding0_test_network\")\n", @@ -181,7 +191,9 @@ "cell_type": "code", "execution_count": null, "id": "716fa083-0409-46a4-a55c-07cac583e387", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "# plot feed-in, demand and residual load\n", @@ -485,8 +497,9 @@ "outputs": [], "source": [ "edisgo.import_electromobility(\n", - " simbev_directory=simbev_example_data_path,\n", - " tracbev_directory=tracbev_example_data_path\n", + " data_source=\"directory\",\n", + " charging_processes_dir=simbev_example_data_path,\n", + " potential_charging_points_dir=tracbev_example_data_path\n", ")" ] }, diff --git a/tests/flex_opt/test_charging_strategy.py b/tests/flex_opt/test_charging_strategy.py index 452889934..cc09276e7 100644 --- a/tests/flex_opt/test_charging_strategy.py +++ b/tests/flex_opt/test_charging_strategy.py @@ -23,7 +23,11 @@ def setup_class(cls): timeindex = pd.date_range("1/1/2011", periods=24 * 7, freq="H") cls.edisgo_obj.set_timeindex(timeindex) - cls.edisgo_obj.import_electromobility(cls.simbev_path, cls.tracbev_path) + cls.edisgo_obj.import_electromobility( + data_source="directory", + charging_processes_dir=cls.simbev_path, + potential_charging_points_dir=cls.tracbev_path, + ) def test_charging_strategy(self, caplog): charging_demand_lst = [] diff --git a/tests/io/test_electromobility_import.py b/tests/io/test_electromobility_import.py index 1a45b6e38..eae274613 100644 --- a/tests/io/test_electromobility_import.py +++ b/tests/io/test_electromobility_import.py @@ -106,7 +106,7 @@ def test_distribute_charging_demand(self): self.edisgo_obj.set_timeindex(timeindex) self.edisgo_obj.resample_timeseries() - electromobility_import.import_electromobility( + electromobility_import.import_electromobility_from_dir( self.edisgo_obj, self.simbev_path, self.tracbev_path ) electromobility_import.distribute_charging_demand( @@ -135,7 +135,7 @@ def test_distribute_charging_demand(self): self.edisgo_obj.set_timeindex(timeindex) self.edisgo_obj.resample_timeseries() - electromobility_import.import_electromobility( + electromobility_import.import_electromobility_from_dir( self.edisgo_obj, self.simbev_path, self.tracbev_path ) electromobility_import.distribute_charging_demand( @@ -215,8 +215,8 @@ def test_potential_charging_parks_from_oedb(self): assert len(potential_parks_df) == 1083 # check for random charging points if they are within MV grid district grid_gdf = mv_grid_gdf(edisgo_obj) - assert all(potential_parks_df.geom[10].within(grid_gdf.geometry)) - assert all(potential_parks_df.geom[100].within(grid_gdf.geometry)) + assert all(potential_parks_df.geom.iloc[10].within(grid_gdf.geometry)) + assert all(potential_parks_df.geom.iloc[100].within(grid_gdf.geometry)) @pytest.mark.local def test_charging_processes_from_oedb(self): diff --git a/tests/network/test_electromobility.py b/tests/network/test_electromobility.py index c67522c37..d81f7e22b 100644 --- a/tests/network/test_electromobility.py +++ b/tests/network/test_electromobility.py @@ -11,11 +11,7 @@ from pandas.util.testing import assert_frame_equal from edisgo.edisgo import EDisGo -from edisgo.io.electromobility_import import ( - distribute_charging_demand, - import_electromobility, - integrate_charging_parks, -) +from edisgo.io import electromobility_import from edisgo.network.electromobility import Electromobility from edisgo.network.timeseries import TimeSeries @@ -26,9 +22,11 @@ def setup_class(self): self.edisgo_obj = EDisGo(ding0_grid=pytest.ding0_test_network_2_path) self.simbev_path = pytest.simbev_example_scenario_path self.tracbev_path = pytest.tracbev_example_scenario_path - import_electromobility(self.edisgo_obj, self.simbev_path, self.tracbev_path) - distribute_charging_demand(self.edisgo_obj) - integrate_charging_parks(self.edisgo_obj) + electromobility_import.import_electromobility_from_dir( + self.edisgo_obj, self.simbev_path, self.tracbev_path + ) + electromobility_import.distribute_charging_demand(self.edisgo_obj) + electromobility_import.integrate_charging_parks(self.edisgo_obj) def setup_simple_flex_band_data(self): """ diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 62fe28db8..82402314a 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -1262,7 +1262,11 @@ def test_apply_charging_strategy(self): # test with default parameters simbev_path = pytest.simbev_example_scenario_path tracbev_path = pytest.tracbev_example_scenario_path - self.edisgo_obj.import_electromobility(simbev_path, tracbev_path) + self.edisgo_obj.import_electromobility( + data_source="directory", + charging_processes_dir=simbev_path, + potential_charging_points_dir=tracbev_path, + ) self.edisgo_obj.apply_charging_strategy() # Check if all charging points have a valid chargingdemand_kWh > 0 From 0eaee53d7ad8544f5db63d22be2bab210a78aa49 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 19:06:10 +0100 Subject: [PATCH 093/355] Set legacy_grids attribute in EDisGo to differentiate oedb data sources --- edisgo/edisgo.py | 1 + 1 file changed, 1 insertion(+) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 6179b4520..daf5e5b21 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -156,6 +156,7 @@ def __init__(self, **kwargs): path=kwargs.get("ding0_grid", None), legacy_ding0_grids=kwargs.get("legacy_ding0_grids", True), ) + self.legacy_grids = kwargs.get("legacy_ding0_grids", True) # instantiate other data classes self.results = Results(self) From 8ef5429d713eeb7475e64a83c12a5931a29c1f3b Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 12 Mar 2023 19:18:23 +0100 Subject: [PATCH 094/355] Adapt heat pump import to use helper functions from db module --- edisgo/io/db.py | 22 ++++++++++++++++++---- edisgo/io/heat_pump_import.py | 32 ++++++++++++-------------------- 2 files changed, 30 insertions(+), 24 deletions(-) diff --git a/edisgo/io/db.py b/edisgo/io/db.py index 9f6517cc1..02d1320e8 100644 --- a/edisgo/io/db.py +++ b/edisgo/io/db.py @@ -204,7 +204,7 @@ def session_scope_egon_data(engine: Engine): def sql_grid_geom(edisgo_obj: EDisGo) -> Geometry: return func.ST_GeomFromText( - str(edisgo_obj.topology.grid_district["geom"]), + edisgo_obj.topology.grid_district["geom"].wkt, edisgo_obj.topology.grid_district["srid"], ) @@ -215,14 +215,28 @@ def get_srid_of_db_table(session: Session, geom_col: InstrumentedAttribute) -> i return pd.read_sql(sql=query.statement, con=query.session.bind).iat[0, 0] -def sql_within(geom_col: InstrumentedAttribute, geom_shape: Geometry, srid: int): +def sql_within(geom_a: Geometry, geom_b: Geometry, srid: int): + """ + Checks if geometry a is completely within geometry b. + + Parameters + ---------- + geom_a : Geometry + Geometry within `geom_b`. + geom_b : Geometry + Geometry containing `geom_a`. + srid : int + SRID geometries are transformed to in order to use the same SRID for both + geometries. + + """ return func.ST_Within( func.ST_Transform( - geom_col, + geom_a, srid, ), func.ST_Transform( - geom_shape, + geom_b, srid, ), ) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index f9ceab2f4..611f6a225 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -6,9 +6,7 @@ import pandas as pd import saio -from sqlalchemy import func - -from edisgo.io.db import session_scope_egon_data +from edisgo.io import db from edisgo.tools.tools import ( determine_bus_voltage_level, determine_grid_integration_voltage_level, @@ -31,7 +29,7 @@ def oedb(edisgo_object, scenario, engine): edisgo_object : :class:`~.EDisGo` scenario : str Scenario for which to retrieve heat pump data. Possible options - are 'eGon2035' and 'eGon100RE'. + are "eGon2035" and "eGon100RE". engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. @@ -112,24 +110,19 @@ def _get_central_heat_pumps(): .filter( egon_district_heating.scenario == scenario, egon_district_heating.carrier == "heat_pump", - func.ST_Contains( # filter heat pumps inside MV grid district geometry - func.ST_GeomFromText(mv_grid_geom.wkt, mv_grid_geom_srid), - # transform to same SRID as MV grid district geometry - func.ST_Transform( - egon_district_heating.geometry, - mv_grid_geom_srid, - ), + # filter heat pumps inside MV grid district geometry + db.sql_within( + egon_district_heating.geometry, + db.sql_grid_geom(edisgo_object), + mv_grid_geom_srid, ), ) .outerjoin( # join to obtain weather cell ID egon_era5_weather_cells, - func.ST_Contains( + db.sql_within( + egon_district_heating.geometry, egon_era5_weather_cells.geom, - # transform to same SRID as weather cell geometry - func.ST_Transform( - egon_district_heating.geometry, - egon_era5_weather_cells.geom.expression.type.srid, - ), + mv_grid_geom_srid, ), ) ) @@ -173,16 +166,15 @@ def _get_individual_heat_pump_capacity(): ) building_ids = edisgo_object.topology.loads_df.building_id.unique() - mv_grid_geom = edisgo_object.topology.grid_district["geom"] mv_grid_geom_srid = edisgo_object.topology.grid_district["srid"] # get individual and district heating heat pumps - with session_scope_egon_data(engine) as session: + with db.session_scope_egon_data(engine) as session: hp_individual = _get_individual_heat_pumps() hp_central = _get_central_heat_pumps() # sanity check - with session_scope_egon_data(engine) as session: + with db.session_scope_egon_data(engine) as session: hp_individual_cap = _get_individual_heat_pump_capacity() if not np.isclose(hp_individual_cap, hp_individual.p_set.sum(), atol=1e-3): logger.warning( From fb3f0c0d6083e2691ba6c91dc59cb4067984466c Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 13 Mar 2023 18:19:14 +0100 Subject: [PATCH 095/355] Adapt connect functions to allow for connection of storage units --- edisgo/edisgo.py | 19 ++++---- edisgo/network/topology.py | 79 ++++++++++++++++++++++++++-------- tests/network/test_topology.py | 69 +++++++++++++++++++++++++++++ 3 files changed, 142 insertions(+), 25 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index daf5e5b21..90e8ecf59 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1222,16 +1222,19 @@ def integrate_component_based_on_geolocation( """ Adds single component to topology based on geolocation. - Currently, components can be generators, charging points and heat pumps. + Currently, components can be generators, charging points, heat pumps and + storage units. - See :attr:`~.network.topology.Topology.connect_to_mv` and - :attr:`~.network.topology.Topology.connect_to_lv` for more information. + See :attr:`~.network.topology.Topology.connect_to_mv`, + :attr:`~.network.topology.Topology.connect_to_lv` and + :attr:`~.network.topology.Topology.connect_to_lv_based_on_geolocation` for more + information. Parameters ---------- comp_type : str - Type of added component. Can be 'generator', 'charging_point' or - 'heat_pump'. + Type of added component. Can be 'generator', 'charging_point', 'heat_pump' + or 'storage_unit'. geolocation : :shapely:`shapely.Point` or tuple Geolocation of the new component. In case of tuple, the geolocation must be given in the form (longitude, latitude). @@ -1266,10 +1269,10 @@ def integrate_component_based_on_geolocation( ------------------ kwargs : Attributes of added component. - See :attr:`~.network.topology.Topology.add_generator` respectively + See :attr:`~.network.topology.Topology.add_generator`, + :attr:`~.network.topology.Topology.add_storage_unit` respectively :attr:`~.network.topology.Topology.add_load` methods - for more information on required and optional parameters of - generators respectively charging points and heat pumps. + for more information on required and optional parameters. """ supported_voltage_levels = {4, 5, 6, 7} diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 9df8ca261..b5a061712 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -1788,7 +1788,10 @@ def sort_buses(self): def connect_to_mv(self, edisgo_object, comp_data, comp_type="generator"): """ - Add and connect new generator, charging point or heat pump to MV grid topology. + Add and connect new component. + + Currently, components can be generators, charging points, heat pumps and + storage units. This function creates a new bus the new component is connected to. The new bus is then connected to the grid depending on the specified @@ -1806,7 +1809,8 @@ def connect_to_mv(self, edisgo_object, comp_data, comp_type="generator"): comp_data : dict Dictionary with all information on component. The dictionary must contain all required arguments - of method :attr:`~.network.topology.Topology.add_generator` + of method :attr:`~.network.topology.Topology.add_generator`, + :attr:`~.network.topology.Topology.add_storage_unit` respectively :attr:`~.network.topology.Topology.add_load`, except the `bus` that is assigned in this function, and may contain all other @@ -1819,8 +1823,8 @@ def connect_to_mv(self, edisgo_object, comp_data, comp_type="generator"): geolocation must be provided as :shapely:`Shapely Point object`. comp_type : str - Type of added component. Can be 'generator', 'charging_point' or - 'heat_pump'. + Type of added component. Can be 'generator', 'charging_point', 'heat_pump' + or 'storage_unit'. Default: 'generator'. Returns @@ -1854,10 +1858,12 @@ def connect_to_mv(self, edisgo_object, comp_data, comp_type="generator"): bus = f"Bus_ChargingPoint_{len(self.charging_points_df)}" elif comp_type == "heat_pump": bus = f"Bus_HeatPump_{len(self.loads_df)}" + elif comp_type == "storage_unit": + bus = f"Bus_Storage_{len(self.storage_units_df)}" else: raise ValueError( f"Provided component type {comp_type} is not valid. Must either be" - f"'generator', 'charging_point' or 'heat_pump'." + f"'generator', 'charging_point', 'heat_pump' or 'storage_unit'." ) self.add_bus( @@ -1872,8 +1878,10 @@ def connect_to_mv(self, edisgo_object, comp_data, comp_type="generator"): comp_name = self.add_generator(bus=bus, **comp_data) elif comp_type == "charging_point": comp_name = self.add_load(bus=bus, type="charging_point", **comp_data) - else: + elif comp_type == "heat_pump": comp_name = self.add_load(bus=bus, type="heat_pump", **comp_data) + else: + comp_name = self.add_storage_unit(bus=bus, **comp_data) # ===== voltage level 4: component is connected to MV station ===== if voltage_level == 4: @@ -1968,7 +1976,14 @@ def connect_to_lv( allowed_number_of_comp_per_bus=2, ): """ - Add and connect new generator, charging point or heat pump to LV grid topology. + Add and connect new component to LV grid topology. + + This function is used in case the LV grids are not geo-referenced. In case + LV grids are geo-referenced function + :attr:`~.network.topology.Topology.connect_to_lv_based_on_geolocation` is used. + + Currently, components can be generators, charging points, heat pumps and + storage units. This function connects the new component depending on the voltage level, and information on the MV/LV substation ID, geometry and sector, all @@ -1981,7 +1996,7 @@ def connect_to_lv( which case the new component is connected directly to the substation) - * Generators with specified voltage level 7 + * Generators and storage units with specified voltage level 7 * with a nominal capacity of <=30 kW to LV loads of sector residential, if available * with a nominal capacity of >30 kW to LV loads of sector @@ -2073,12 +2088,14 @@ def connect_to_lv( def _choose_random_substation_id(): """ - Returns a random LV grid to connect component in in case no + Returns a random LV grid to connect component in, in case no substation ID is provided or it does not exist. """ if comp_type == "generator": random.seed(a=comp_data["generator_id"]) + elif comp_type == "storage_unit": + random.seed(a=len(self.storage_units_df)) else: # ToDo: Seed shouldn't depend on number of loads, but # there is currently no better solution @@ -2091,6 +2108,8 @@ def _choose_random_substation_id(): elif comp_type == "charging_point" or comp_type == "heat_pump": add_func = self.add_load comp_data["type"] = comp_type + elif comp_type == "storage_unit": + add_func = self.add_storage_unit else: logger.error(f"Component type {comp_type} is not a valid option.") @@ -2157,7 +2176,7 @@ def _choose_random_substation_id(): # get valid buses to connect new component to lv_loads = lv_grid.loads_df - if comp_type == "generator": + if comp_type == "generator" or comp_type == "storage_unit": if power <= 0.030: tmp = lv_loads[lv_loads.sector == "residential"] target_buses = tmp.bus.values @@ -2197,6 +2216,13 @@ def _choose_random_substation_id(): except Exception: generator_id = int(comp_data["generator_id"].split("_")[-1]) random.seed(a=generator_id) + elif comp_type == "storage_unit": + random.seed( + a="{}_{}".format( + power, + len(lv_grid.storage_units_df), + ) + ) else: random.seed( a="{}_{}_{}".format( @@ -2239,9 +2265,13 @@ def _choose_random_substation_id(): comps_at_bus = self.charging_points_df[ self.charging_points_df.bus == lv_bus ] - else: + elif comp_type == "heat_pump": hp_df = self.loads_df[self.loads_df.type == "heat_pump"] comps_at_bus = hp_df[hp_df.bus == lv_bus] + else: + comps_at_bus = self.storage_units_df[ + self.storage_units_df.bus == lv_bus + ] # ToDo: Increase number of generators/charging points # allowed at one load in case all loads already have one @@ -2276,6 +2306,13 @@ def connect_to_lv_based_on_geolocation( """ Add and connect new component to LV grid topology based on its geolocation. + This function is used in case the LV grids are geo-referenced. In case + LV grids are not geo-referenced function + :attr:`~.network.topology.Topology.connect_to_lv` is used. + + Currently, components can be generators, charging points, heat pumps and + storage units. + In case the component is integrated in voltage level 6 it is connected to the closest MV/LV substation; in case it is integrated in voltage level 7 it is connected to the closest LV bus. In contrast to the connection of components @@ -2292,7 +2329,8 @@ def connect_to_lv_based_on_geolocation( comp_data : dict Dictionary with all information on component. The dictionary must contain all required arguments of method - :attr:`~.network.topology.Topology.add_generator` respectively + :attr:`~.network.topology.Topology.add_generator`, + :attr:`~.network.topology.Topology.add_storage_unit` respectively :attr:`~.network.topology.Topology.add_load`, except the `bus` that is assigned in this function, and may contain all other parameters of those methods. @@ -2304,7 +2342,8 @@ def connect_to_lv_based_on_geolocation( LV grid). The geolocation must be provided as :shapely:`Shapely Point object`. comp_type : str - Type of new component. Can be 'generator', 'charging_point' or 'heat_pump'. + Type of new component. Can be 'generator', 'charging_point', 'heat_pump' + or 'storage_unit'. max_distance_from_target_bus : int Specifies the maximum distance of the component to the target bus in km before a new bus is created. If the new component is closer to the target @@ -2315,8 +2354,9 @@ def connect_to_lv_based_on_geolocation( ------- str The identifier of the newly connected component as in index of - :attr:`~.network.topology.Topology.generators_df` or - :attr:`~.network.topology.Topology.loads_df`, depending on component + :attr:`~.network.topology.Topology.generators_df`, + :attr:`~.network.topology.Topology.loads_df` or + :attr:`~.network.topology.Topology.storage_units_df`, depending on component type. """ @@ -2341,6 +2381,8 @@ def connect_to_lv_based_on_geolocation( elif comp_type == "charging_point" or comp_type == "heat_pump": add_func = self.add_load comp_data["type"] = comp_type + elif comp_type == "storage_unit": + add_func = self.add_storage_unit else: logger.error(f"Component type {comp_type} is not a valid option.") return @@ -2596,7 +2638,8 @@ def _connect_to_lv_bus(self, edisgo_object, target_bus, comp_type, comp_data): Name of bus as in index of :attr:`~.network.topology.Topology.buses_df` to connect new component to. comp_type : str - Type of new component. Can be 'generator', 'charging_point' or 'heat_pump'. + Type of new component. Can be 'generator', 'charging_point', 'heat_pump' + or 'storage_unit'. comp_data : dict Dictionary with all information on new component. See parameter `comp_data` in :attr:`~.network.topology.Topology.connect_to_lv_based_on_geolocation` @@ -2617,8 +2660,10 @@ def _connect_to_lv_bus(self, edisgo_object, target_bus, comp_type, comp_data): b = f"Bus_Generator_{len(self.generators_df)}" elif comp_type == "charging_point": b = f"Bus_ChargingPoint_{len(self.charging_points_df)}" - else: + elif comp_type == "heat_pump": b = f"Bus_HeatPump_{len(self.loads_df)}" + else: + b = f"Bus_Storage_{len(self.storage_units_df)}" if not isinstance(comp_data["geom"], Point): geom = wkt_loads(comp_data["geom"]) diff --git a/tests/network/test_topology.py b/tests/network/test_topology.py index 1b01c2c0c..1851e5723 100644 --- a/tests/network/test_topology.py +++ b/tests/network/test_topology.py @@ -1164,6 +1164,41 @@ def test_connect_to_mv(self): ) assert self.edisgo.topology.loads_df.at[comp_name, "type"] == "heat_pump" + # ######### Storage unit ############# + # add generator + x = self.edisgo.topology.buses_df.at["Bus_GeneratorFluctuating_6", "x"] + y = self.edisgo.topology.buses_df.at["Bus_GeneratorFluctuating_6", "y"] + geom = Point((x, y)) + test_stor = { + "p_nom": 2.5, + "geom": geom, + "voltage_level": 5, + } + num_storage_units_before = len(self.edisgo.topology.storage_units_df) + num_buses_before = len(self.edisgo.topology.buses_df) + num_lines_before = len(self.edisgo.topology.lines_df) + comp_name = self.edisgo.topology.connect_to_mv( + self.edisgo, test_stor, comp_type="storage_unit" + ) + + # check if number of buses increased (by one because closest connection + # object is a bus) + assert num_buses_before + 1 == len(self.edisgo.topology.buses_df) + # check if number of lines increased + assert num_lines_before + 1 == len(self.edisgo.topology.lines_df) + # check if number of storage units increased + assert num_storage_units_before + 1 == len( + self.edisgo.topology.storage_units_df + ) + + # check new storage + assert ( + self.edisgo.topology.storage_units_df.at[comp_name, "p_nom"] + == test_stor["p_nom"] + ) + assert self.edisgo.topology.storage_units_df.at[comp_name, "control"] == "PQ" + assert "Storage" in self.edisgo.topology.storage_units_df.at[comp_name, "bus"] + def test_connect_to_lv(self): # ######### Generator ############# @@ -1650,6 +1685,40 @@ def test_connect_to_lv(self): # check new heat pump assert self.edisgo.topology.loads_df.at[comp_name, "p_set"] == 0.3 + # ############# storage unit ################# + # test existing substation ID (voltage level 7) + # storage can be connected to residential load + + num_lines_before = len(self.edisgo.topology.lines_df) + num_buses_before = len(self.edisgo.topology.buses_df) + num_stores_before = len(self.edisgo.topology.storage_units_df) + + # add generator + test_stor = { + "p_nom": 0.03, + "geom": geom, + "voltage_level": 7, + "mvlv_subst_id": 1, + } + + comp_name = self.edisgo.topology.connect_to_lv( + self.edisgo, test_stor, comp_type="storage_unit" + ) + + # check that number of buses stayed the same + assert num_buses_before == len(self.edisgo.topology.buses_df) + # check that number of lines stayed the same + assert num_lines_before == len(self.edisgo.topology.lines_df) + # check that number of storage units increased + assert num_stores_before + 1 == len(self.edisgo.topology.storage_units_df) + + # check bus + bus = self.edisgo.topology.storage_units_df.at[comp_name, "bus"] + assert bus == "Bus_BranchTee_LVGrid_1_12" + assert self.edisgo.topology.buses_df.at[bus, "lv_grid_id"] == 1 + # check new storage + assert self.edisgo.topology.storage_units_df.at[comp_name, "p_nom"] == 0.03 + def test_check_integrity(self, caplog): """Test of validation of grids.""" comps_dict = { From f47652310cf2250618cbc9019f68630612f65714 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 13 Mar 2023 21:57:02 +0100 Subject: [PATCH 096/355] Implement getting home battery data from database and integrate into grid --- edisgo/io/home_batteries_import.py | 129 --------------- edisgo/io/storage_import.py | 257 +++++++++++++++++++++++++++++ tests/io/test_storage_import.py | 152 +++++++++++++++++ 3 files changed, 409 insertions(+), 129 deletions(-) delete mode 100644 edisgo/io/home_batteries_import.py create mode 100644 edisgo/io/storage_import.py create mode 100644 tests/io/test_storage_import.py diff --git a/edisgo/io/home_batteries_import.py b/edisgo/io/home_batteries_import.py deleted file mode 100644 index e37c97e63..000000000 --- a/edisgo/io/home_batteries_import.py +++ /dev/null @@ -1,129 +0,0 @@ -from __future__ import annotations - -import logging -import os - -from typing import TYPE_CHECKING - -import pandas as pd -import saio - -from sqlalchemy import func -from sqlalchemy.engine.base import Engine - -from edisgo.io.db import ( - get_srid_of_db_table, - session_scope_egon_data, - sql_grid_geom, - sql_within, -) -from edisgo.tools.geo import mv_grid_gdf - -if "READTHEDOCS" not in os.environ: - import geopandas as gpd - -if TYPE_CHECKING: - from edisgo import EDisGo - -logger = logging.getLogger(__name__) - - -def home_batteries_from_database( - edisgo_obj: EDisGo, - engine: Engine, - scenario: str = "eGon2035", - remove_existing: bool = True, -): - batteries_gdf = get_home_batteries_from_database( - edisgo_obj=edisgo_obj, engine=engine, scenario=scenario - ) - - if remove_existing: - remove_existing_storages(edisgo_obj=edisgo_obj) - - generators_df = edisgo_obj.topology.generators_df.copy() - - batteries_gdf = batteries_gdf.merge( - right=generators_df[["bus", "building_id"]], how="left", on="building_id" - ) - - if batteries_gdf.bus.isna().any(): - raise LookupError( - f"The following batteries don't have a matching generator. Please make sure" - f" to import all generators of the scenario first. Batteries missing " - f"generator: {batteries_gdf.loc[batteries_gdf.bus.isna()].index.tolist()}" - ) - - cols_to_iterate = [ - "p_nom", - "bus", - ] - - for index, p_nom, bus in batteries_gdf[cols_to_iterate].itertuples(): - edisgo_obj.add_component( - comp_type="storage_unit", - p_nom=p_nom, - bus=bus, - egon_id=index, - ) - - -def remove_existing_storages(edisgo_obj: EDisGo): - storage_units_df = edisgo_obj.topology.storage_units_df.copy() - - for name in storage_units_df.index: - edisgo_obj.remove_component(comp_type="storage_unit", comp_name=name) - - -def get_home_batteries_from_database( - edisgo_obj: EDisGo, engine: Engine, scenario: str = "eGon2035" -): - saio.register_schema("supply", engine) - saio.register_schema("openstreetmap", engine) - - from saio.openstreetmap import osm_buildings_filtered - from saio.supply import egon_home_batteries - - sql_geom = sql_grid_geom(edisgo_obj) - crs = mv_grid_gdf(edisgo_obj).crs - - with session_scope_egon_data(engine) as session: - srid = get_srid_of_db_table(session, osm_buildings_filtered.geom_point) - - query = session.query( - func.ST_Transform( - osm_buildings_filtered.geom_point, - srid, - ).label("geom"), - osm_buildings_filtered.id, - ).filter( - sql_within(osm_buildings_filtered.geom_point, sql_geom, srid), - ) - - buildings_gdf = gpd.read_postgis( - sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(crs) - - building_ids = buildings_gdf.id - - with session_scope_egon_data(engine) as session: - query = ( - session.query(egon_home_batteries) - .filter( - egon_home_batteries.scenario == scenario, - egon_home_batteries.building_id.in_(building_ids), - ) - .order_by(egon_home_batteries.index) - ) - - batteries_df = pd.read_sql( - sql=query.statement, con=query.session.bind, index_col="index" - ) - - return gpd.GeoDataFrame( - batteries_df.merge( - buildings_gdf, how="left", left_on="building_id", right_on="id" - ).drop(columns=["id"]), - geometry="geom", - crs=buildings_gdf.crs, - ) diff --git a/edisgo/io/storage_import.py b/edisgo/io/storage_import.py new file mode 100644 index 000000000..d14853b7c --- /dev/null +++ b/edisgo/io/storage_import.py @@ -0,0 +1,257 @@ +from __future__ import annotations + +import logging +import random + +from typing import TYPE_CHECKING + +import pandas as pd +import saio + +from sqlalchemy.engine.base import Engine + +from edisgo.io.db import session_scope_egon_data +from edisgo.tools.tools import ( + determine_bus_voltage_level, + determine_grid_integration_voltage_level, +) + +if TYPE_CHECKING: + from edisgo import EDisGo + +logger = logging.getLogger(__name__) + + +def home_batteries_oedb( + edisgo_obj: EDisGo, + scenario: str, + engine: Engine, +): + """ + Gets home battery data from oedb and integrates them into the grid. + + See :attr:`~.edisgo.EDisGo.import_home_batteries` for more information. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + scenario : str + Scenario for which to retrieve home battery data. Possible options + are "eGon2035" and "eGon100RE". + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + Returns + -------- + list(str) + List with names (as in index of + :attr:`~.network.topology.Topology.storage_units_df`) of integrated storage + units. + + """ + saio.register_schema("supply", engine) + from saio.supply import egon_home_batteries + + with session_scope_egon_data(engine) as session: + query = ( + session.query( + egon_home_batteries.building_id, + egon_home_batteries.p_nom, + egon_home_batteries.capacity, + ) + .filter( + egon_home_batteries.scenario == scenario, + egon_home_batteries.building_id.in_( + edisgo_obj.topology.loads_df.building_id.unique() + ), + ) + .order_by(egon_home_batteries.index) + ) + batteries_df = pd.read_sql(sql=query.statement, con=engine, index_col=None) + + return _home_batteries_grid_integration(edisgo_obj, batteries_df) + + +def _home_batteries_grid_integration(edisgo_obj, batteries_df): + """ + Integrates home batteries into the grid. + + See :attr:`~.edisgo.EDisGo.import_home_batteries` for more information on grid + integration. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + batteries_df : :pandas:`pandas.DataFrame` + Dataframe containing data on home storage units to integrate into the grid. + Columns are: + + * p_nom : float + Nominal electric power of storage in MW. + * building_id : int + Building ID of the building the storage is in. + * capacity : float + Storage capacity in MWh. + + Returns + -------- + list(str) + List with names (as in index of + :attr:`~.network.topology.Topology.storage_units_df`) of integrated storage + units. + + """ + + def _integrate(bat_df): + # filter batteries that are too large to be integrated into LV level + batteries_large = bat_df[ + bat_df.p_nom + > edisgo_obj.config["grid_connection"]["upper_limit_voltage_level_7"] + ] + batteries_small = bat_df[ + bat_df.p_nom + <= edisgo_obj.config["grid_connection"]["upper_limit_voltage_level_7"] + ] + + # integrate small batteries at buildings + edisgo_obj.topology.storage_units_df = pd.concat( + [edisgo_obj.topology.storage_units_df, batteries_small] + ) + int_bats = batteries_small.index + + # integrate larger batteries - if generator/load is already connected to + # higher voltage level it can be integrated at same bus, otherwise it is + # integrated based on geolocation + int_bats_own_grid_conn = pd.Index([]) + for bat in batteries_large.index: + # check if building is already connected to a voltage level equal to or + # higher than the voltage level the battery should be connected to + bus = batteries_large.at[bat, "bus"] + voltage_level_bus = determine_bus_voltage_level(edisgo_obj, bus) + voltage_level_bat = determine_grid_integration_voltage_level( + edisgo_obj, batteries_large.at[bat, "p_nom"] + ) + + if voltage_level_bat >= voltage_level_bus: + # integrate at same bus as generator/load + edisgo_obj.topology.storage_units_df = pd.concat( + [ + edisgo_obj.topology.storage_units_df, + batteries_large.loc[[bat], :], + ] + ) + int_bats = int_bats.append(pd.Index([bat])) + else: + # integrate based on geolocation + bat_name = edisgo_obj.integrate_component_based_on_geolocation( + comp_type="storage_unit", + voltage_level=voltage_level_bat, + geolocation=( + edisgo_obj.topology.buses_df.at[bus, "x"], + edisgo_obj.topology.buses_df.at[bus, "y"], + ), + add_ts=False, + p_nom=batteries_large.at[bat, "p_nom"], + max_hours=batteries_large.at[bat, "max_hours"], + building_id=batteries_large.at[bat, "building_id"], + type="home_storage", + ) + int_bats = int_bats.append(pd.Index([bat_name])) + int_bats_own_grid_conn = int_bats_own_grid_conn.append(pd.Index([bat])) + return int_bats, int_bats_own_grid_conn + + # add further information needed in storage_units_df + batteries_df["max_hours"] = batteries_df["capacity"] / batteries_df["p_nom"] + batteries_df.drop("capacity", axis=1, inplace=True) + batteries_df["type"] = "home_storage" + batteries_df["control"] = "PQ" + # add storage name as index + batteries_df["index"] = batteries_df.apply( + lambda _: f"Storage_{_.building_id}", axis=1 + ) + batteries_df.set_index("index", drop=True, inplace=True) + + # check for duplicated storage names and choose random name for duplicates + tmp = batteries_df.index.append(edisgo_obj.topology.storage_units_df.index) + duplicated_indices = tmp[tmp.duplicated()] + for duplicate in duplicated_indices: + # find unique name + random.seed(a=duplicate) + new_name = duplicate + while new_name in tmp: + new_name = f"{duplicate}_{random.randint(10 ** 1, 10 ** 2)}" + # change name in batteries_df + batteries_df.rename(index={duplicate: new_name}, inplace=True) + + # integrate into grid + # first try integrating at same bus as PV rooftop plant + if "building_id" in edisgo_obj.topology.generators_df.columns: + # join bus information for those storage units that are in the same building + # as a generator + generators_df = edisgo_obj.topology.generators_df + building_id_busses = ( + generators_df.drop_duplicates(subset=["building_id"]) + .set_index("building_id") + .loc[:, ["bus"]] + ) + batteries_df = batteries_df.join( + building_id_busses, how="left", on="building_id" + ) + + # differentiate between batteries that can be integrated using generator bus ID + # and those using load bus ID + batteries_gens_df = batteries_df.dropna(subset=["bus"]) + batteries_loads_df = batteries_df[batteries_df.bus.isna()] + batteries_loads_df.drop("bus", axis=1, inplace=True) + + # integrate batteries that can be integrated at generator bus + integrated_batteries, integrated_batteries_own_grid_conn = _integrate( + batteries_gens_df + ) + + else: + batteries_loads_df = batteries_df + integrated_batteries = pd.Index([]) + integrated_batteries_own_grid_conn = pd.Index([]) + + # integrate remaining home batteries at same bus as building + if not batteries_loads_df.empty: + # join busses corresponding to building ID + loads_df = edisgo_obj.topology.loads_df + building_id_busses = ( + loads_df[loads_df.type == "conventional_load"] + .drop_duplicates(subset=["building_id"]) + .set_index("building_id") + .loc[:, ["bus"]] + ) + batteries_loads_df = batteries_loads_df.join( + building_id_busses, how="left", on="building_id" + ) + + # integrate batteries that can be integrated at load bus + integrated_batteries_2, integrated_batteries_own_grid_conn_2 = _integrate( + batteries_loads_df + ) + integrated_batteries = integrated_batteries.append(integrated_batteries_2) + integrated_batteries_own_grid_conn = integrated_batteries_own_grid_conn.append( + integrated_batteries_own_grid_conn_2 + ) + + # check if all storage units were integrated + if not len(batteries_df) == len(integrated_batteries): + raise ValueError("Not all home batteries could be integrated into the grid.") + + # logging messages + logger.debug(f"{sum(batteries_df.p_nom):.2f} MW of home batteries integrated.") + if not batteries_loads_df.empty: + logger.debug( + f"Of this {sum(batteries_loads_df.p_nom):.2f} MW do not have a generator " + f"with the same building ID." + ) + if len(integrated_batteries_own_grid_conn) > 0: + logger.debug( + f"{sum(batteries_df.loc[integrated_batteries_own_grid_conn, 'p_nom']):.2f} " + f"MW of home battery capacity was integrated at a new bus." + ) + + return integrated_batteries diff --git a/tests/io/test_storage_import.py b/tests/io/test_storage_import.py new file mode 100644 index 000000000..569314fee --- /dev/null +++ b/tests/io/test_storage_import.py @@ -0,0 +1,152 @@ +import logging + +import numpy as np +import pandas as pd +import pytest + +from edisgo import EDisGo +from edisgo.io import storage_import + + +class TestStorageImport: + @pytest.fixture(autouse=True) + def setup_class(self): + self.edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + + def setup_home_batteries_data(self): + df = pd.DataFrame( + data={ + "p_nom": [0.005, 0.15, 2.0], + "capacity": [1.0, 1.0, 1.0], + "building_id": [446651, 445710, 446933], + }, + index=[1, 2, 3], + ) + return df + + @pytest.mark.local + def test_oedb(self, caplog): + with caplog.at_level(logging.DEBUG): + integrated_storages = storage_import.home_batteries_oedb( + self.edisgo, scenario="eGon2035", engine=pytest.engine + ) + storage_df = self.edisgo.topology.storage_units_df + assert len(integrated_storages) == 659 + assert len(storage_df) == 659 + assert np.isclose(storage_df.p_nom.sum(), 2.0144, atol=1e-3) + assert "2.01 MW of home batteries integrated." in caplog.text + assert ( + "Of this 2.01 MW do not have a generator with the same building ID." + in caplog.text + ) + + def test__grid_integration(self, caplog): + + # ############### test without PV rooftop ############### + + # manipulate bus of the largest storage to be an MV bus + loads_df = self.edisgo.topology.loads_df + bus_bat_voltage_level_5_building = loads_df[loads_df.building_id == 446933].bus[ + 0 + ] + self.edisgo.topology.buses_df.at[ + bus_bat_voltage_level_5_building, "v_nom" + ] = 20.0 + + with caplog.at_level(logging.DEBUG): + integrated_bat_1 = storage_import._home_batteries_grid_integration( + self.edisgo, self.setup_home_batteries_data() + ) + + storage_df = self.edisgo.topology.storage_units_df + assert len(storage_df) == 3 + # check that smallest storage is integrated at same bus as building + bus_bat_voltage_level_7 = storage_df[storage_df.p_nom == 0.005].bus[0] + assert ( + loads_df[loads_df.building_id == 446651].bus.values + == bus_bat_voltage_level_7 + ).all() + # check that medium storage cannot be integrated at same bus as building + bus_bat_voltage_level_6 = storage_df[storage_df.p_nom == 0.15].bus[0] + line_bat_voltage_level_6 = self.edisgo.topology.lines_df[ + self.edisgo.topology.lines_df.bus1 == bus_bat_voltage_level_6 + ] + assert ( + line_bat_voltage_level_6.bus0[0] + in self.edisgo.topology.transformers_df.bus1.values + ) + # check that largest storage can be connected to building because the building + # is already connected to the MV + bus_bat_voltage_level_5 = storage_df[storage_df.p_nom == 2.0].bus[0] + assert bus_bat_voltage_level_5 == bus_bat_voltage_level_5_building + + assert "2.15 MW of home batteries integrated." in caplog.text + assert ( + "Of this 2.15 MW do not have a generator with the same building ID." + in caplog.text + ) + assert ( + "0.15 MW of home battery capacity was integrated at a new bus." + in caplog.text + ) + + # check of duplicated names + integrated_bat_2 = storage_import._home_batteries_grid_integration( + self.edisgo, self.setup_home_batteries_data() + ) + storage_df = self.edisgo.topology.storage_units_df + assert len(storage_df) == 6 + assert len([_ for _ in integrated_bat_2 if _ not in integrated_bat_1]) == 3 + + caplog.clear() + + # ############### test with PV rooftop ############### + + # set up PV data - first one is at same bus as building, second one at higher + # voltage level + pv_df = pd.DataFrame( + data={ + "bus": [ + "BranchTee_mvgd_33532_lvgd_1163940001_building_446651", + "BusBar_mvgd_33532_lvgd_1163850014_LV", + ], + "p_nom": [0.005, 0.15], + "type": ["solar", "solar"], + "building_id": [446651, 445710], + }, + index=[1, 2], + ) + self.edisgo.topology.generators_df = pd.concat( + [self.edisgo.topology.generators_df, pv_df] + ) + with caplog.at_level(logging.DEBUG): + integrated_bat_3 = storage_import._home_batteries_grid_integration( + self.edisgo, self.setup_home_batteries_data() + ) + storage_df = self.edisgo.topology.storage_units_df.loc[integrated_bat_3, :] + assert len(self.edisgo.topology.storage_units_df) == 9 + + # check that smallest storage is integrated at same bus as PV system + bus_bat_voltage_level_7 = storage_df[storage_df.p_nom == 0.005].bus[0] + assert ( + loads_df[loads_df.building_id == 446651].bus.values + == bus_bat_voltage_level_7 + ).all() + # check that medium storage is integrated at same bus as PV system + bus_bat_voltage_level_6 = storage_df[storage_df.p_nom == 0.15].bus[0] + assert "BusBar_mvgd_33532_lvgd_1163850014_LV" == bus_bat_voltage_level_6 + # check that largest storage can be connected to building because the building + # is already connected to the MV + bus_bat_voltage_level_5 = storage_df[storage_df.p_nom == 2.0].bus[0] + assert bus_bat_voltage_level_5 == bus_bat_voltage_level_5_building + + assert "2.15 MW of home batteries integrated." in caplog.text + assert ( + "Of this 2.00 MW do not have a generator with the same building ID." + in caplog.text + ) + assert ( + "of home battery capacity was integrated at a new bus." not in caplog.text + ) From c4dacb3881586a06c37fc4fbabe6fbc7a06c1db5 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 13 Mar 2023 22:08:48 +0100 Subject: [PATCH 097/355] Adapt EDisGo.import_home_batteries --- edisgo/edisgo.py | 40 ++++++++++++++++++++++++++++++++++------ 1 file changed, 34 insertions(+), 6 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 90e8ecf59..2cce1720f 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -31,7 +31,7 @@ from edisgo.io.generators_import import generators_from_database from edisgo.io.generators_import import oedb as import_generators_oedb from edisgo.io.heat_pump_import import oedb as import_heat_pumps_oedb -from edisgo.io.home_batteries_import import home_batteries_from_database +from edisgo.io.storage_import import home_batteries_oedb from edisgo.network import timeseries from edisgo.network.dsm import DSM from edisgo.network.electromobility import Electromobility @@ -1887,15 +1887,43 @@ def import_dsm(self, engine: Engine, scenario: str = "eGon2035"): def import_home_batteries( self, + scenario: str, engine: Engine, - scenario: str = "eGon2035", - remove_existing: bool = True, ): - home_batteries_from_database( + """ + Gets home battery data for specified scenario and integrates the batteries into + the grid. + + Currently, the only supported data source is scenario data generated + in the research project `eGo^n `_. You can choose + between two scenarios: 'eGon2035' and 'eGon100RE'. + + The data is retrieved from the + `open energy platform `_. + + The batteries are integrated into the grid (added to + :attr:`~.network.topology.Topology.storage_units_df`) based on their building + ID. In case the battery is too large to use the same grid connection point as + the generator or, if no generator is allocated at the same building ID, the + load, they are connected via their own grid connection point, based on their + geolocation and installed capacity. + + Be aware that this function does not yield time series for the batteries. The + actual time series can be determined through a dispatch optimisation. + + Parameters + ---------- + scenario : str + Scenario for which to retrieve home battery data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + """ + home_batteries_oedb( edisgo_obj=self, - engine=engine, scenario=scenario, - remove_existing=remove_existing, + engine=engine, ) def plot_mv_grid_topology(self, technologies=False, **kwargs): From e4d80c98d56edabc51e5b3e3dca6bbb7e80feda1 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 13 Mar 2023 22:10:20 +0100 Subject: [PATCH 098/355] Adapt test to make sure fresh test dataframe is always used --- tests/io/test_heat_pump_import.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/tests/io/test_heat_pump_import.py b/tests/io/test_heat_pump_import.py index aa1d7372e..e22c7deb6 100644 --- a/tests/io/test_heat_pump_import.py +++ b/tests/io/test_heat_pump_import.py @@ -62,12 +62,11 @@ def test_oedb(self, caplog): def test__grid_integration(self, caplog): - hp_individual = self.setup_heat_pump_data_individual_heating() - hp_central = self.setup_heat_pump_data_dh() - # ############# test integration of central heat pumps #################### heat_pump_import._grid_integration( - self.edisgo, hp_individual=pd.DataFrame(), hp_central=hp_central + self.edisgo, + hp_individual=pd.DataFrame(), + hp_central=self.setup_heat_pump_data_dh(), ) loads_df = self.edisgo.topology.loads_df hp_df = loads_df[loads_df.type == "heat_pump"] @@ -99,7 +98,9 @@ def test__grid_integration(self, caplog): bus_hp_voltage_level_5_building, "v_nom" ] = 20.0 heat_pump_import._grid_integration( - self.edisgo, hp_individual=hp_individual, hp_central=pd.DataFrame() + self.edisgo, + hp_individual=self.setup_heat_pump_data_individual_heating(), + hp_central=pd.DataFrame(), ) loads_df = self.edisgo.topology.loads_df @@ -128,7 +129,9 @@ def test__grid_integration(self, caplog): # ######## test check of duplicated names ########### heat_pump_import._grid_integration( - self.edisgo, hp_individual=hp_individual, hp_central=pd.DataFrame() + self.edisgo, + hp_individual=self.setup_heat_pump_data_individual_heating(), + hp_central=pd.DataFrame(), ) loads_df = self.edisgo.topology.loads_df hp_df = loads_df[loads_df.type == "heat_pump"] From 5e4b5bf26c3519405f0a11c0aff180c955899372 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 15 Mar 2023 14:56:39 +0100 Subject: [PATCH 099/355] Add functions to get industrial and residential electricity load profiles --- edisgo/io/timeseries_import.py | 255 +++++++++++++++++++++++++++++ tests/io/test_timeseries_import.py | 24 +++ 2 files changed, 279 insertions(+) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 6b29c2048..3c2b226f1 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -876,3 +876,258 @@ def _get_total_heat_demand_grid(): if not np.isclose(check_sum_profile, check_sum_db, atol=1e-1): logger.warning("Total CTS heat demand does not match.") return building_profiles + + +def get_residential_electricity_profiles_per_building(building_ids, scenario, engine): + """ + Gets residential electricity demand profiles per building. + + Parameters + ---------- + building_ids : list(int) + List of building IDs to retrieve electricity demand profiles for. + scenario : str + Scenario for which to retrieve demand data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + Returns + -------- + :pandas:`pandas.DataFrame` + Dataframe with residential electricity demand profiles per building for one year + in an hourly resolution in MW. Index contains hour of the year (from 0 to 8759) + and column names are building ID as integer. + + """ + + def _get_scaling_factors_of_zensus_cells(zensus_ids): + """ + Get profile scaling factors per zensus cell for specified scenario. + + Parameters + ---------- + zensus_ids : list(int) + List of zensus cell IDs to get scaling factors for. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe with zensus cell ID in index and respective scaling factor in + column factor. + + """ + with session_scope_egon_data(engine) as session: + if scenario == "eGon2035": + query = session.query( + egon_household_electricity_profile_in_census_cell.cell_id, + egon_household_electricity_profile_in_census_cell.factor_2035.label( + "factor" + ), + ).filter( + egon_household_electricity_profile_in_census_cell.cell_id.in_( + zensus_ids + ) + ) + else: + query = session.query( + egon_household_electricity_profile_in_census_cell.cell_id, + egon_household_electricity_profile_in_census_cell.factor_2050.label( + "factor" + ), + ).filter( + egon_household_electricity_profile_in_census_cell.cell_id.in_( + zensus_ids + ) + ) + return pd.read_sql(query.statement, engine, index_col="cell_id") + + def _get_profile_ids_of_buildings(building_ids): + """ + Get profile IDs per building. + + Parameters + ---------- + building_ids : list(int) + List of building IDs to retrieve profile IDs for. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe with building ID in column building_id, zensus cell ID in column + cell_id and corresponding profile IDs in column profile_id. + + """ + with session_scope_egon_data(engine) as session: + query = session.query( + egon_household_electricity_profile_of_buildings.building_id, + egon_household_electricity_profile_of_buildings.cell_id, + egon_household_electricity_profile_of_buildings.profile_id, + ).filter( + egon_household_electricity_profile_of_buildings.building_id.in_( + building_ids + ) + ) + return pd.read_sql(query.statement, engine, index_col=None) + + def _get_profiles(profile_ids): + """ + Get hourly household electricity demand profiles for specified profile IDs. + + Parameters + ---------- + profile_ids: list(str) + (type)a00..(profile number) with number having exactly 4 digits + + Returns + ------- + :pandas:`pandas.DataFrame` + Hourly household demand profiles with profile ID as column name and index + containing hour of the year (from 0 to 8759). + + """ + with session_scope_egon_data(engine) as session: + query = session.query( + iee_household_load_profiles.load_in_wh, iee_household_load_profiles.type + ).filter(iee_household_load_profiles.type.in_(profile_ids)) + df = pd.read_sql(query.statement, engine, index_col="type") + + # convert array to dataframe + df_converted = pd.DataFrame.from_records(df["load_in_wh"], index=df.index).T + + return df_converted + + saio.register_schema("demand", engine) + from saio.demand import ( + egon_household_electricity_profile_in_census_cell, + egon_household_electricity_profile_of_buildings, + iee_household_load_profiles, + ) + + # get zensus cells of buildings + zensus_ids_buildings = _get_zensus_cells_of_buildings(building_ids, engine) + zensus_ids = zensus_ids_buildings.zensus_id.unique() + + # get profile scaling factors per zensus cell + scaling_factors_zensus_cells = _get_scaling_factors_of_zensus_cells(zensus_ids) + + # get profile IDs per building and merge scaling factors + profile_ids_buildings = _get_profile_ids_of_buildings(building_ids) + profile_ids = profile_ids_buildings.profile_id.unique() + profile_ids_buildings = profile_ids_buildings.join( + scaling_factors_zensus_cells, on="cell_id" + ) + if profile_ids_buildings.empty: + logger.info("No residential electricity demand.") + return pd.DataFrame() + + # get hourly profiles per profile ID + profiles_df = _get_profiles(profile_ids) + + # calculate demand profile per building + ts_df = pd.DataFrame() + for building_id, df in profile_ids_buildings.groupby(by=["building_id"]): + load_ts_building = ( + profiles_df.loc[:, df["profile_id"]].sum(axis=1) + * df["factor"].iloc[0] + / 1e6 # from Wh to MWh + ).to_frame(name=building_id) + ts_df = pd.concat([ts_df, load_ts_building], axis=1).dropna(axis=1) + + return ts_df + + +def get_industrial_electricity_profiles_per_site(site_ids, scenario, engine): + """ + Gets industrial electricity demand profiles per site and OSM area. + + Parameters + ---------- + site_ids : list(int) + List of industrial site and OSM IDs to retrieve electricity demand profiles for. + scenario : str + Scenario for which to retrieve demand data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + Returns + -------- + :pandas:`pandas.DataFrame` + Dataframe with industrial electricity demand profiles per site and OSM area for + one year in an hourly resolution in MW. Index contains hour of the year (from 0 + to 8759) and column names are site ID as integer. + + """ + + def _get_load_curves_sites(site_ids): + """ + Get industrial load profiles for sites for specified scenario. + + Parameters + ---------- + site_ids : list(int) + List of industrial site IDs to retrieve electricity demand profiles for. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe with site ID in column site_id and electricity profile as list + in column p_set. + + """ + with session_scope_egon_data(engine) as session: + query = session.query( + egon_sites_ind_load_curves_individual.site_id, + egon_sites_ind_load_curves_individual.p_set, + ).filter( + egon_sites_ind_load_curves_individual.scn_name == scenario, + egon_sites_ind_load_curves_individual.site_id.in_(site_ids), + ) + return pd.read_sql(query.statement, engine, index_col=None) + + def _get_load_curves_areas(site_ids): + """ + Get industrial load profiles for OSM areas for specified scenario. + + Parameters + ---------- + site_ids : list(int) + List of industrial OSM IDs to retrieve electricity demand profiles for. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe with OSM ID in column site_id and electricity profile as list + in column p_set. + + """ + with session_scope_egon_data(engine) as session: + query = session.query( + egon_osm_ind_load_curves_individual.osm_id.label("site_id"), + egon_osm_ind_load_curves_individual.p_set, + ).filter( + egon_osm_ind_load_curves_individual.scn_name == scenario, + egon_osm_ind_load_curves_individual.osm_id.in_(site_ids), + ) + return pd.read_sql(query.statement, engine, index_col=None) + + saio.register_schema("demand", engine) + from saio.demand import ( + egon_osm_ind_load_curves_individual, + egon_sites_ind_load_curves_individual, + ) + + # get profiles of sites and OSM areas + profiles_sites = _get_load_curves_sites(site_ids) + profiles_areas = _get_load_curves_areas(site_ids) + + # concat profiles + profiles_df = pd.concat([profiles_sites, profiles_areas]) + # add time step column + profiles_df["time_step"] = len(profiles_df) * [np.arange(0, 8760)] + # un-nest p_set and pivot so that time_step becomes index and site_id the + # name of the columns + return profiles_df.explode(["p_set", "time_step"]).pivot( + index="time_step", columns="site_id", values="p_set" + ) diff --git a/tests/io/test_timeseries_import.py b/tests/io/test_timeseries_import.py index 1ccdf8ea4..1db7baeb0 100644 --- a/tests/io/test_timeseries_import.py +++ b/tests/io/test_timeseries_import.py @@ -145,3 +145,27 @@ def test_get_cts_profiles_per_building(self): ) assert df.shape == (8760, 85) # ToDo add further tests + + @pytest.mark.local + def test_get_residential_electricity_profiles_per_building(self): + df = timeseries_import.get_residential_electricity_profiles_per_building( + [-1, 442081], "eGon2035", pytest.engine + ) + assert df.shape == (8760, 1) + assert np.isclose(df.loc[:, 442081].sum(), 7.799, atol=1e-3) + + @pytest.mark.local + def test_get_industrial_electricity_profiles_per_site(self): + # test with one site and one OSM area + df = timeseries_import.get_industrial_electricity_profiles_per_site( + [1, 541658], "eGon2035", pytest.engine + ) + assert df.shape == (8760, 2) + assert np.isclose(df.loc[:, 1].sum(), 32417.233, atol=1e-3) + assert np.isclose(df.loc[:, 541658].sum(), 2554.944, atol=1e-3) + + # test without site and only OSM area + df = timeseries_import.get_industrial_electricity_profiles_per_site( + [541658], "eGon2035", pytest.engine + ) + assert df.shape == (8760, 1) From 968d3cb90e1d18c39db8a4295c0dfff5e76743cd Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 15 Mar 2023 17:38:22 +0100 Subject: [PATCH 100/355] Add function to get all electricity demand profiles from database --- edisgo/io/timeseries_import.py | 135 +++++++++++++++++++++++++++++ tests/io/test_timeseries_import.py | 47 ++++++++++ 2 files changed, 182 insertions(+) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 3c2b226f1..02ca77c55 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -393,6 +393,141 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): return pd.concat([individual_heating_df, dh_profile_df], axis=1) +def electricity_demand_oedb(edisgo_obj, scenario, engine, year=None, load_names=None): + """ + Get electricity demand profiles for all conventional loads from the + `OpenEnergy DataBase `_. + + Conventional loads comprise conventional electricity applications in the + residential, CTS and industrial sector. + For more information on how the demand profiles are obtained see functions + :attr:`~.io.timeseries_import.get_residential_electricity_profiles_per_building`, + :attr:`~.io.timeseries_import.get_cts_profiles_per_building` and + :attr:`~.io.timeseries_import.get_industrial_electricity_profiles_per_site`. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + scenario : str + Scenario for which to retrieve demand data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + year : int or None + Year to index electricity demand data by. Per default this is set to 2035 in + case of the 'eGon2035' and to 2045 in case of the 'eGon100RE' scenario. + A leap year can currently not be handled. In case a leap year is given, the + time index is set according to the chosen scenario. + load_names : list(str) or None + Conventional loads (as in index of :attr:`~.network.topology.Topology.loads_df`) + for which to retrieve electricity demand time series. If none are provided, + profiles for all conventional loads are returned. + + Returns + ------- + :pandas:`pandas.DataFrame` + DataFrame with hourly electricity demand for one year in MW per conventional + load. Index of the dataframe is a time index. Columns contain the load name as + in index of :attr:`~.network.topology.Topology.loads_df`. + + """ + # set up time index to index data by + if year is None: + year = tools.get_year_based_on_scenario(scenario) + if year is None: + raise ValueError( + "Invalid input for parameter 'scenario'. Possible options are " + "'eGon2035' and 'eGon100RE'." + ) + else: + if pd.Timestamp(year, 1, 1).is_leap_year: + logger.warning( + "A leap year was given to 'electricity_demand_oedb' function. This is " + "currently not valid. The year the data is indexed by is therefore set " + "to the default value of 2011." + ) + return electricity_demand_oedb( + edisgo_obj, scenario, engine, year=None, load_names=load_names + ) + timeindex = pd.date_range(f"1/1/{year}", periods=8760, freq="H") + + # set loads for which to retrieve electricity profiles + if load_names is None: + conventional_loads = edisgo_obj.topology.loads_df[ + edisgo_obj.topology.loads_df.type == "conventional_load" + ] + else: + loads_df = edisgo_obj.topology.loads_df.loc[load_names, :] + conventional_loads = loads_df[loads_df.type == "conventional_load"] + + # get residential electricity profiles from oedb + residential_loads = conventional_loads[conventional_loads.sector == "residential"] + res_building_ids = residential_loads.building_id.dropna().unique() + if len(res_building_ids) > 0: + residential_profiles_df = get_residential_electricity_profiles_per_building( + res_building_ids, scenario, engine + ) + rename_series = ( + residential_loads.loc[:, ["building_id"]] + .dropna() + .reset_index() + .set_index("building_id") + .iloc[:, 0] + ) + residential_profiles_df.rename(columns=rename_series, inplace=True) + residential_profiles_df.index = timeindex + else: + residential_profiles_df = pd.DataFrame() + + # get CTS electricity profiles from oedb + cts_loads = conventional_loads[conventional_loads.sector == "cts"] + cts_building_ids = cts_loads.building_id.dropna().unique() + if len(cts_building_ids) > 0: + cts_profiles_df = get_cts_profiles_per_building( + edisgo_obj.topology.id, scenario, "electricity", engine + ) + drop_buildings = [ + _ for _ in cts_profiles_df.columns if _ not in cts_building_ids + ] + cts_profiles_df = cts_profiles_df.drop(columns=drop_buildings) + # set column names to be load names instead of building IDs + rename_series = ( + cts_loads.loc[:, ["building_id"]] + .dropna() + .reset_index() + .set_index("building_id") + .iloc[:, 0] + ) + cts_profiles_df.rename(columns=rename_series, inplace=True) + cts_profiles_df.index = timeindex + else: + cts_profiles_df = pd.DataFrame() + + # get industrial electricity profiles from oedb + ind_loads = conventional_loads[conventional_loads.sector == "industrial"] + ind_building_ids = ind_loads.building_id.dropna().unique() + if len(ind_building_ids) > 0: + ind_profiles_df = get_industrial_electricity_profiles_per_site( + ind_building_ids, scenario, engine + ) + # set column names to be load names instead of building IDs + rename_series = ( + ind_loads.loc[:, ["building_id"]] + .dropna() + .reset_index() + .set_index("building_id") + .iloc[:, 0] + ) + ind_profiles_df.rename(columns=rename_series, inplace=True) + ind_profiles_df.index = timeindex + else: + ind_profiles_df = pd.DataFrame() + + return pd.concat( + [residential_profiles_df, cts_profiles_df, ind_profiles_df], axis=1 + ) + + def _get_zensus_cells_of_buildings(building_ids, engine): """ Gets zensus cell ID each building is in from oedb. diff --git a/tests/io/test_timeseries_import.py b/tests/io/test_timeseries_import.py index 1db7baeb0..5dc3b9bba 100644 --- a/tests/io/test_timeseries_import.py +++ b/tests/io/test_timeseries_import.py @@ -118,6 +118,53 @@ def test_heat_demand_oedb(self, caplog): # ToDo add further tests + @pytest.mark.local + def test_electricity_demand_oedb(self, caplog): + # test with one load each and without year + edisgo_object = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + df = timeseries_import.electricity_demand_oedb( + edisgo_object, + "eGon2035", + pytest.engine, + load_names=[ + "Load_mvgd_33532_1_industrial", + "Load_mvgd_33532_lvgd_1140900000_1_residential", + "Load_mvgd_33532_lvgd_1163850001_47_cts", + ], + ) + assert df.shape == (8760, 3) + assert df.index[0].year == 2035 + + # test without CTS and residential and given year + edisgo_object = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + df = timeseries_import.electricity_demand_oedb( + edisgo_object, + "eGon2035", + pytest.engine, + load_names=["Load_mvgd_33532_1_industrial"], + year=2011, + ) + assert df.shape == (8760, 1) + assert df.index[0].year == 2011 + + # test for leap year and all loads in the grid + with caplog.at_level(logging.WARNING): + df = timeseries_import.electricity_demand_oedb( + edisgo_object, "eGon100RE", pytest.engine, year=2020 + ) + assert ( + "A leap year was given to 'electricity_demand_oedb' function." + in caplog.text + ) + assert df.shape == (8760, 2463) + assert df.index[0].year == 2045 + + # ToDo add further tests to check values + @pytest.mark.local def test_get_residential_heat_profiles_per_building(self): df = timeseries_import.get_residential_heat_profiles_per_building( From f7840f0ac9428ca56cccb4daec3d31ddcf4f2693 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 15 Mar 2023 17:39:27 +0100 Subject: [PATCH 101/355] Minor docstring changes --- edisgo/io/heat_pump_import.py | 9 ++------- edisgo/io/timeseries_import.py | 6 +++--- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index 611f6a225..5fc1831f9 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -198,13 +198,8 @@ def _grid_integration( """ Integrates heat pumps for individual and district heating into the grid. - Grid connection points of heat pumps for individual heating are determined based - on the corresponding building ID. - - Grid connection points of heat pumps for district - heating are determined based on their geolocation and installed capacity. See - :attr:`~.network.topology.Topology.connect_to_mv` and - :attr:`~.network.topology.Topology.connect_to_lv` for more information. + See :attr:`~.edisgo.EDisGo.import_heat_pumps` for more information on grid + integration. Parameters ---------- diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 02ca77c55..5d08b49e3 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -304,7 +304,7 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): Scenario for which to retrieve demand data. Possible options are 'eGon2035' and 'eGon100RE'. engine : :sqlalchemy:`sqlalchemy.Engine` - Database engine. + Database engine. year : int or None Year to index heat demand data by. Per default this is set to 2035 in case of the 'eGon2035' and to 2045 in case of the 'eGon100RE' scenario. @@ -574,7 +574,7 @@ def get_residential_heat_profiles_per_building(building_ids, scenario, engine): Scenario for which to retrieve demand data. Possible options are 'eGon2035' and 'eGon100RE'. engine : :sqlalchemy:`sqlalchemy.Engine` - Database engine. + Database engine. Returns -------- @@ -625,7 +625,7 @@ def _get_residential_heat_profile_ids(zensus_ids): Parameters ---------- zensus_ids : list(int) - List of zensus cell IDs to profiles for. + List of zensus cell IDs to get profiles for. Returns ------- From f11b6c6318c1af5e37bb85157bdd3da25a606f05 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 08:05:54 +0100 Subject: [PATCH 102/355] Change logging --- edisgo/io/heat_pump_import.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index 5fc1831f9..50e236bcf 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -287,7 +287,6 @@ def _grid_integration( ) integrated_hps = hp_individual_small.index - integrated_hps_building = hp_individual_small.index # integrate large individual heat pumps - if building is already connected to # higher voltage level it can be integrated at same bus, otherwise it is @@ -310,7 +309,6 @@ def _grid_integration( [edisgo_object.topology.loads_df, hp_individual_large.loc[[hp], :]] ) integrated_hps = integrated_hps.append(pd.Index([hp])) - integrated_hps_building = integrated_hps_building.append(pd.Index([hp])) else: # integrate based on geolocation hp_name = edisgo_object.integrate_component_based_on_geolocation( @@ -330,14 +328,17 @@ def _grid_integration( integrated_hps_own_grid_conn = integrated_hps_own_grid_conn.append( pd.Index([hp]) ) + # logging messages logger.debug( f"{sum(hp_individual.p_set):.2f} MW of heat pumps for individual heating " - f"integrated. Of this " - f"{sum(hp_individual.loc[integrated_hps_building, 'p_set']):.2f} MW are " - f"integrated at same grid connection point as building and " - f"{sum(hp_individual.loc[integrated_hps_own_grid_conn, 'p_set']):.2f} " - f"MW have separate grid connection point." + f"integrated." ) + if len(integrated_hps_own_grid_conn) > 0: + logger.debug( + f"Of this, " + f"{sum(hp_individual.loc[integrated_hps_own_grid_conn, 'p_set']):.2f} " + f"MW have separate grid connection point." + ) else: integrated_hps = pd.Index([]) From 211c5672d0ce0f9f5da1688338bab47ae8787ae9 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 08:08:04 +0100 Subject: [PATCH 103/355] Make more robust in case index name is not index --- edisgo/io/timeseries_import.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 5d08b49e3..5fbdd1f25 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -363,7 +363,8 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): hp_df.loc[:, ["building_id"]] .dropna() .reset_index() - .set_index("building_id")["index"] + .set_index("building_id") + .iloc[:, 0] ) individual_heating_df.rename(columns=rename_series, inplace=True) # set index @@ -382,7 +383,8 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): hp_df.loc[:, ["district_heating_id"]] .dropna() .reset_index() - .set_index("district_heating_id")["index"] + .set_index("district_heating_id") + .iloc[:, 0] ) dh_profile_df.rename(columns=rename_series, inplace=True) # set index From 312cc1b08e43170d46ca6e98eb4d8cb6dd911847 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 13:55:16 +0100 Subject: [PATCH 104/355] Add option to get electricity time series of conventional loads to EDisGo --- edisgo/edisgo.py | 120 ++++++++++++++++++++++++++++------- edisgo/network/timeseries.py | 23 +++---- tests/test_edisgo.py | 22 +++++++ 3 files changed, 128 insertions(+), 37 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 2cce1720f..551114f08 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -19,7 +19,7 @@ operating_strategy as hp_operating_strategy, ) from edisgo.flex_opt.reinforce_grid import reinforce_grid -from edisgo.io import pypsa_io +from edisgo.io import pypsa_io, timeseries_import from edisgo.io.ding0_import import import_ding0_grid from edisgo.io.dsm_import import dsm_from_database from edisgo.io.electromobility_import import ( @@ -382,7 +382,7 @@ def set_time_series_active_power_predefined( conventional_loads_names=None, charging_points_ts=None, charging_points_names=None, - engine: Engine | None = None, + **kwargs, ): """ Uses predefined feed-in or demand profiles. @@ -398,55 +398,114 @@ def set_time_series_active_power_predefined( Parameters ----------- - fluctuating_generators_ts : str or :pandas:`pandas.DataFrame` + fluctuating_generators_ts : str or :pandas:`pandas.DataFrame` or None Defines which technology-specific (or technology and weather cell specific) time series to use to set active power time series of fluctuating generators. See parameter `ts_generators` in :func:`~.network.timeseries.TimeSeries.predefined_fluctuating_generators_by_technology` for more information. If None, no time series of fluctuating generators are set. Default: None. - fluctuating_generators_names : list(str) + fluctuating_generators_names : list(str) or None Defines for which fluctuating generators to apply technology-specific time series. See parameter `generator_names` in :func:`~.network.timeseries.TimeSeries.predefined_dispatchable_generators_by_technology` for more information. Default: None. - dispatchable_generators_ts : :pandas:`pandas.DataFrame` + dispatchable_generators_ts : :pandas:`pandas.DataFrame` or None Defines which technology-specific time series to use to set active power time series of dispatchable generators. See parameter `ts_generators` in :func:`~.network.timeseries.TimeSeries.predefined_dispatchable_generators_by_technology` for more information. If None, no time series of dispatchable generators are set. Default: None. - dispatchable_generators_names : list(str) + dispatchable_generators_names : list(str) or None Defines for which dispatchable generators to apply technology-specific time series. See parameter `generator_names` in :func:`~.network.timeseries.TimeSeries.predefined_dispatchable_generators_by_technology` for more information. Default: None. - conventional_loads_ts : :pandas:`pandas.DataFrame` - Defines which sector-specific time series to use to set active power - time series of conventional loads. - See parameter `ts_loads` in - :func:`~.network.timeseries.TimeSeries.predefined_conventional_loads_by_sector` - for more information. If None, no time series of conventional loads - are set. Default: None. - conventional_loads_names : list(str) - Defines for which conventional loads to apply technology-specific time - series. See parameter `load_names` in + conventional_loads_ts : str or :pandas:`pandas.DataFrame` or None + Defines option to set active power time series of conventional loads. + Possible options are: + + * 'oedb' + + Sets active power demand time series using individual hourly electricity + load time series for one year obtained from the `OpenEnergy DataBase + `_. + + This option requires that the parameters `engine` and `scenario` are + provided as keyword arguments. For further settings, the parameter + `year` can also be provided as keyword argument. + + See parameter `year` in function + :func:`edisgo.io.timeseries_import.electricity_demand_oedb` for more + information on how time series data is indexed. + + * 'demandlib' + + Sets active power demand time series using hourly electricity load time + series for one year obtained using standard electric load profiles from + the oemof `demandlib `_. + The demandlib provides sector-specific time series for the sectors + 'residential', 'cts', 'industrial', and 'agricultural'. + + The time series data is indexed by the year set in + :attr:`edisgo.network.timeseries.TimeSeries.timeindex`. + + * :pandas:`pandas.DataFrame` + + Sets active power demand time series using sector-specific demand + time series provided in this DataFrame. + The load time series per sector need to be normalized to an annual + consumption of 1. Index needs to + be a :pandas:`pandas.DatetimeIndex`. + Columns need to contain the sector as string. + In the current grid existing load types can be retrieved from column + `sector` in :attr:`~.network.topology.Topology.loads_df` (make sure to + select `type` 'conventional_load'). + In ding0 grids the differentiated sectors are 'residential', 'cts', + and 'industrial'. + + * None + + If None, conventional load time series are not set. + + Default: None. + conventional_loads_names : list(str) or None + Defines for which conventional loads to set time series. In case + `conventional_loads_ts` is 'oedb' see parameter `load_names` in + :func:`edisgo.io.timeseries_import.electricity_demand_oedb` for more + information. For other cases see parameter `load_names` in :func:`~.network.timeseries.TimeSeries.predefined_conventional_loads_by_sector` for more information. Default: None. - charging_points_ts : :pandas:`pandas.DataFrame` + charging_points_ts : :pandas:`pandas.DataFrame` or None Defines which use-case-specific time series to use to set active power time series of charging points. See parameter `ts_loads` in :func:`~.network.timeseries.TimeSeries.predefined_charging_points_by_use_case` for more information. If None, no time series of charging points are set. Default: None. - charging_points_names : list(str) + charging_points_names : list(str) or None Defines for which charging points to apply use-case-specific time series. See parameter `load_names` in :func:`~.network.timeseries.TimeSeries.predefined_charging_points_by_use_case` for more information. Default: None. + Other Parameters + ------------------ + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. This parameter is only required in case + `conventional_loads_ts` is 'oedb'. + scenario : str + Scenario for which to retrieve demand data. Possible options are 'eGon2035' + and 'eGon100RE'. This parameter is only required in case + `conventional_loads_ts` is 'oedb'. + year : int or None + This parameter can optionally be provided in case `conventional_loads_ts` + is 'oedb' and is used to determine the year, the data is indexed by. + See parameter `year` in function + :func:`edisgo.io.timeseries_import.electricity_demand_oedb` for more + information. + Notes ------ This function raises a warning in case a time index was not previously set. @@ -472,16 +531,33 @@ def set_time_series_active_power_predefined( self, fluctuating_generators_ts, fluctuating_generators_names, - engine=engine, + engine=kwargs.get("engine"), ) if dispatchable_generators_ts is not None: self.timeseries.predefined_dispatchable_generators_by_technology( self, dispatchable_generators_ts, dispatchable_generators_names ) if conventional_loads_ts is not None: - self.timeseries.predefined_conventional_loads_by_sector( - self, conventional_loads_ts, conventional_loads_names - ) + if ( + isinstance(conventional_loads_ts, str) + and conventional_loads_ts == "oedb" + ): + loads_ts_df = timeseries_import.electricity_demand_oedb( + edisgo_obj=self, + scenario=kwargs.get("scenario"), + engine=kwargs.get("engine"), + year=kwargs.get("year", None), + load_names=conventional_loads_names, + ) + # concat new time series with existing ones and drop any duplicate + # entries + self.timeseries.loads_active_power = tools.drop_duplicated_columns( + pd.concat([self.timeseries.loads_active_power, loads_ts_df], axis=1) + ) + else: + self.timeseries.predefined_conventional_loads_by_sector( + self, conventional_loads_ts, conventional_loads_names + ) if charging_points_ts is not None: self.timeseries.predefined_charging_points_by_use_case( self, charging_points_ts, charging_points_names diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index a366b92f5..5572774a8 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -1399,28 +1399,21 @@ def predefined_conventional_loads_by_sector( * 'demandlib' - Time series for the year specified :py:attr:`~timeindex` are - generated using standard electric load profiles from the oemof - `demandlib `_. - The demandlib provides sector-specific time series for the sectors - 'residential', 'retail', 'industrial', and 'agricultural'. + See parameter `conventional_loads_ts` in + :func:`~.edisgo.EDisGo.set_time_series_active_power_predefined` for + more information. * :pandas:`pandas.DataFrame` - DataFrame with load time series per sector normalized to an annual - consumption of 1. Index needs to - be a :pandas:`pandas.DatetimeIndex`. - Columns contain the sector as string. - In the current grid existing load types can be retrieved from column - `sector` in :attr:`~.network.topology.Topology.loads_df` (make sure to - select `type` 'conventional_load'). - In ding0 grid the differentiated sectors are 'residential', 'retail', - 'industrial', and 'agricultural'. + See parameter `conventional_loads_ts` in + :func:`~.edisgo.EDisGo.set_time_series_active_power_predefined` for + more information. + load_names : list(str) Defines for which conventional loads to use sector-specific time series. If None, all loads of sectors for which sector-specific time series are provided are used. In case the demandlib is used, all loads of sectors - 'residential', 'retail', 'industrial', and 'agricultural' are used. + 'residential', 'cts', 'industrial', and 'agricultural' are used. """ # in case time series from demandlib are used, retrieve demandlib time series diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 82402314a..d75c36868 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -202,6 +202,7 @@ def test_set_time_series_worst_case_analysis(self): ) def test_set_time_series_active_power_predefined(self, caplog): + # options where database connection is needed are tested in separate function # check warning self.edisgo.set_time_series_active_power_predefined( @@ -258,6 +259,27 @@ def test_set_time_series_active_power_predefined(self, caplog): assert self.edisgo.timeseries.storage_units_active_power.shape == (2, 0) assert self.edisgo.timeseries.storage_units_reactive_power.shape == (2, 0) + @pytest.mark.local + def test_set_time_series_active_power_predefined_oedb(self): + + # test conventional_loads_ts="oedb" for all loads in grid + edisgo_object = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + edisgo_object.set_timeindex(pd.date_range("1/1/2035", periods=8760, freq="H")) + + edisgo_object.set_time_series_active_power_predefined( + conventional_loads_ts="oedb", + scenario="eGon2035", + engine=pytest.engine, + year=2020, + ) + + assert edisgo_object.timeseries.loads_active_power.dropna().shape == ( + 8760, + 2463, + ) + def test_set_time_series_reactive_power_control(self): # set active power time series for fixed cosphi timeindex = pd.date_range("1/1/1970", periods=3, freq="H") From 8642cb90a7c56bf916434fb1163a51890d91aefb Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 13:56:31 +0100 Subject: [PATCH 105/355] Rename retail to cts --- doc/quickstart.rst | 2 +- edisgo/io/pypsa_io.py | 2 +- edisgo/io/timeseries_import.py | 4 ++-- edisgo/network/components.py | 2 +- edisgo/network/timeseries.py | 2 +- edisgo/network/topology.py | 16 ++++++++-------- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/doc/quickstart.rst b/doc/quickstart.rst index 4264fae14..21d38303b 100644 --- a/doc/quickstart.rst +++ b/doc/quickstart.rst @@ -243,7 +243,7 @@ time series: # load time series (scaled by annual demand) timeseries_load = pd.DataFrame( {"residential": [0.0001] * len(timeindex), - "retail": [0.0002] * len(timeindex), + "cts": [0.0002] * len(timeindex), "industrial": [0.00015] * len(timeindex), "agricultural": [0.00005] * len(timeindex) }, diff --git a/edisgo/io/pypsa_io.py b/edisgo/io/pypsa_io.py index bee2d978e..88e257946 100755 --- a/edisgo/io/pypsa_io.py +++ b/edisgo/io/pypsa_io.py @@ -538,7 +538,7 @@ def _append_lv_components( components aggregated in that respective key component. An example could look as follows: {'LVGrid_1_loads': - ['Load_agricultural_LVGrid_1_1', 'Load_retail_LVGrid_1_2']} + ['Load_agricultural_LVGrid_1_1', 'Load_cts_LVGrid_1_2']} """ aggregated_elements = {} diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 5fbdd1f25..e4432b5cc 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -114,7 +114,7 @@ def load_time_series_demandlib(config_data, timeindex): `demandlib `_. Resulting electricity load profiles hold time series of hourly conventional - electricity demand for the sectors residential, retail, agricultural + electricity demand for the sectors residential, cts, agricultural and industrial. Time series are normalized to a consumption of 1 MWh per year. @@ -130,7 +130,7 @@ def load_time_series_demandlib(config_data, timeindex): ------- :pandas:`pandas.DataFrame` DataFrame with conventional electricity load time series for sectors - residential, retail, agricultural and industrial. + residential, cts, agricultural and industrial. Index is a :pandas:`pandas.DatetimeIndex`. Columns hold the sector type. diff --git a/edisgo/network/components.py b/edisgo/network/components.py index 980fe58a4..2a5d8c1ea 100644 --- a/edisgo/network/components.py +++ b/edisgo/network/components.py @@ -257,7 +257,7 @@ def sector(self): The sector is e.g. used to assign load time series to a load using the demandlib. The following four sectors are considered: - 'agricultural', 'retail', 'residential', 'industrial'. + 'agricultural', 'cts', 'residential', 'industrial'. Parameters ----------- diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index 5572774a8..4f465dc54 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -2247,7 +2247,7 @@ class TimeSeriesRaw: normalized to an annual consumption of 1. Index needs to be a :pandas:`pandas.DatetimeIndex`. Columns represent load type. In ding0 grids the - differentiated sectors are 'residential', 'retail', 'industrial', and + differentiated sectors are 'residential', 'cts', 'industrial', and 'agricultural'. charging_points_active_power_by_use_case : :pandas:`pandas.DataFrame` DataFrame with charging demand time series per use case normalized to a nominal diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index b5a061712..ea71e1c6f 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -228,11 +228,11 @@ def loads_df(self): used to generate sector-specific time series (see function :attr:`~.network.timeseries.TimeSeries. predefined_conventional_loads_by_sector`). It is further used when new - generators are integrated into the grid, as e.g. smaller PV rooftop - generators are most likely to be located in a household (see function + generators are integrated into the grid in case the LV is not + geo-referenced, as e.g. smaller PV rooftop generators are most likely + to be located in a household (see function :attr:`~.network.topology.Topology.connect_to_lv`). The sector - needs to either be 'agricultural', 'industrial', 'residential' or - 'retail'. + needs to either be 'industrial', 'residential' or 'cts'. In case of charging points this attribute is used to define the charging point use case ('home', 'work', 'public' or 'hpc') to determine whether @@ -2000,14 +2000,14 @@ def connect_to_lv( * with a nominal capacity of <=30 kW to LV loads of sector residential, if available * with a nominal capacity of >30 kW to LV loads of sector - retail, industrial or agricultural, if available + cts, industrial or agricultural, if available * to random bus in the LV grid as fallback if no appropriate load is available * Charging points with specified voltage level 7 * with sector 'home' to LV loads of sector residential, if available * with sector 'work' to LV loads of sector - retail, industrial or agricultural, if available, otherwise + cts, industrial or agricultural, if available, otherwise * with sector 'public' or 'hpc' to some bus in the grid that is not a house connection * to random bus in the LV grid that @@ -2182,7 +2182,7 @@ def _choose_random_substation_id(): target_buses = tmp.bus.values else: tmp = lv_loads[ - lv_loads.sector.isin(["industrial", "agricultural", "retail"]) + lv_loads.sector.isin(["industrial", "agricultural", "cts"]) ] target_buses = tmp.bus.values elif comp_type == "charging_point": @@ -2191,7 +2191,7 @@ def _choose_random_substation_id(): target_buses = tmp.bus.values elif comp_data["sector"] == "work": tmp = lv_loads[ - lv_loads.sector.isin(["industrial", "agricultural", "retail"]) + lv_loads.sector.isin(["industrial", "agricultural", "cts"]) ] target_buses = tmp.bus.values else: From e4dd4b58d94105aa5b48404580e048697f3068c5 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 18:45:05 +0100 Subject: [PATCH 106/355] Adapt function to get feedin time series from egon_data --- edisgo/io/timeseries_import.py | 140 +++++++++++++++++++++-------- tests/io/test_timeseries_import.py | 69 ++++++++++++-- 2 files changed, 169 insertions(+), 40 deletions(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index e4432b5cc..790d58ac2 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import datetime import logging import os @@ -20,7 +22,32 @@ logger = logging.getLogger(__name__) -def feedin_oedb(config_data, weather_cell_ids, timeindex): +def _timeindex_helper_func( + edisgo_object, timeindex, default_year=2011, allow_leap_year=False +): + if timeindex is None: + year = tools.get_year_based_on_timeindex(edisgo_object) + if year is None: + year = default_year + timeindex = pd.date_range(f"1/1/{year}", periods=8760, freq="H") + else: + timeindex = edisgo_object.timeseries.timeindex + timeindex_full = pd.date_range(f"1/1/{year}", periods=8760, freq="H") + else: + year = timeindex.year[0] + if allow_leap_year is False and pd.Timestamp(year, 1, 1).is_leap_year: + year = default_year + logger.warning( + f"A leap year was given. This is currently not valid. The year the " + f"data is indexed by is therefore set to the default value of " + f"{default_year}." + ) + timeindex = pd.date_range(f"1/1/{year}", periods=8760, freq="H") + timeindex_full = pd.date_range(f"1/1/{year}", periods=8760, freq="H") + return timeindex, timeindex_full + + +def feedin_oedb_legacy(config_data, weather_cell_ids, timeindex): """ Import feed-in time series data for wind and solar power plants from the `OpenEnergy DataBase `_. @@ -108,6 +135,83 @@ def _retrieve_timeseries_from_oedb(session, timeindex): return feedin.loc[timeindex] +def feedin_oedb( + edisgo_object, + engine: Engine, + timeindex=None, +): + """ + Import feed-in time series data for wind and solar power plants from the + `OpenEnergy DataBase `_. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to return feed-in data. Leap years can currently + not be handled. In case the given timeindex contains a leap year, the data will + be indexed using the default year 2011 and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year 2011 and returned for the whole year. + + Returns + ------- + :pandas:`pandas.DataFrame` + DataFrame with hourly feed-in time series per generator type (wind or solar, + in column level 0) and weather cell (in column level 1), normalized to a + capacity of 1 MW. Index of the dataframe depends on parameter `timeindex`. + + """ + # get weather cell IDs in grid + weather_cell_ids = tools.get_weather_cells_intersecting_with_grid_district( + edisgo_object, engine=engine + ) + + saio.register_schema("supply", engine) + from saio.supply import egon_era5_renewable_feedin + + with session_scope_egon_data(engine) as session: + query = ( + session.query( + egon_era5_renewable_feedin.w_id.label("weather_cell_id"), + egon_era5_renewable_feedin.carrier, + egon_era5_renewable_feedin.feedin, + ) + .filter( + egon_era5_renewable_feedin.w_id.in_(weather_cell_ids), + egon_era5_renewable_feedin.carrier.in_(["pv", "wind_onshore"]), + ) + .order_by( + egon_era5_renewable_feedin.w_id, egon_era5_renewable_feedin.carrier + ) + ) + feedin_df = pd.read_sql(sql=query.statement, con=engine) + + # rename pv to solar and wind_onshore to wind + feedin_df.carrier = feedin_df.carrier.str.replace("pv", "solar").str.replace( + "_onshore", "" + ) + # add time step column + feedin_df["time_step"] = len(feedin_df) * [np.arange(0, 8760)] + # un-nest feedin and pivot so that time_step becomes index and carrier and + # weather_cell_id column names + feedin_df = feedin_df.explode(["feedin", "time_step"]).pivot( + index="time_step", columns=["carrier", "weather_cell_id"], values="feedin" + ) + + # set time index + timeindex, timeindex_full = _timeindex_helper_func( + edisgo_object, timeindex, default_year=2011, allow_leap_year=False + ) + feedin_df.index = timeindex_full + + return feedin_df.loc[timeindex, :] + + def load_time_series_demandlib(config_data, timeindex): """ Get normalized sectoral electricity load time series using the @@ -192,40 +296,6 @@ def load_time_series_demandlib(config_data, timeindex): return elec_demand.loc[timeindex] -def feedin_egon_data( - weather_cell_ids: set, timeindex: pd.DatetimeIndex, engine: Engine -): - saio.register_schema("supply", engine) - - from saio.supply import egon_era5_renewable_feedin - - with session_scope_egon_data(engine) as session: - query = ( - session.query( - egon_era5_renewable_feedin.w_id.label("weather_cell_id"), - egon_era5_renewable_feedin.carrier, - egon_era5_renewable_feedin.feedin, - ) - .filter(egon_era5_renewable_feedin.w_id.in_(weather_cell_ids)) - .order_by( - egon_era5_renewable_feedin.w_id, egon_era5_renewable_feedin.carrier - ) - ) - - feedin_df = pd.read_sql(sql=query.statement, con=query.session.bind) - - # TODO: gibt es auch MS Netze mit offshore wind? vermutlich nicht - feedin_df.carrier = feedin_df.carrier.str.replace("pv", "solar").str.replace( - "_onshore", "" - ) - - feedin_df = feedin_df.set_index(["carrier", "weather_cell_id"]) - - data = [list(val)[: len(timeindex)] for val in feedin_df.feedin.tolist()] - - return pd.DataFrame(data=data, index=feedin_df.index, columns=timeindex).T - - def cop_oedb(engine, weather_cell_ids, year=None): """ Get COP (coefficient of performance) time series data from the diff --git a/tests/io/test_timeseries_import.py b/tests/io/test_timeseries_import.py index 5dc3b9bba..06997e5bb 100644 --- a/tests/io/test_timeseries_import.py +++ b/tests/io/test_timeseries_import.py @@ -4,6 +4,8 @@ import pandas as pd import pytest +from pandas.testing import assert_index_equal + from edisgo import EDisGo from edisgo.io import timeseries_import from edisgo.tools.config import Config @@ -14,10 +16,55 @@ class TestTimeseriesImport: def setup_class(self): self.config = Config(config_path=None) - def test_feedin_oedb(self): + def test__timeindex_helper_func(self): + # test with timeindex=None and TimeSeries.timeindex not set + edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + ind, ind_full = timeseries_import._timeindex_helper_func(edisgo, timeindex=None) + timeindex = pd.date_range("1/1/2011", periods=8760, freq="H") + assert_index_equal(ind, timeindex) + assert_index_equal(ind_full, timeindex) + + # test with timeindex=None and TimeSeries.timeindex set + edisgo_index = pd.date_range("1/1/2010", periods=5, freq="H") + edisgo.set_timeindex(edisgo_index) + ind, ind_full = timeseries_import._timeindex_helper_func(edisgo, timeindex=None) + timeindex = pd.date_range("1/1/2010", periods=8760, freq="H") + assert_index_equal(ind, edisgo_index) + assert_index_equal(ind_full, timeindex) + + # test with given timeindex and leap year + given_index = pd.date_range("1/1/2012", periods=5, freq="H") + ind, ind_full = timeseries_import._timeindex_helper_func( + edisgo, timeindex=given_index + ) + timeindex = pd.date_range("1/1/2011", periods=8760, freq="H") + assert_index_equal(ind, timeindex) + assert_index_equal(ind_full, timeindex) + + # test with given timeindex and leap year and allowing leap year + ind, ind_full = timeseries_import._timeindex_helper_func( + edisgo, timeindex=given_index, allow_leap_year=True + ) + timeindex = pd.date_range("1/1/2012", periods=8760, freq="H") + assert_index_equal(ind, given_index) + assert_index_equal(ind_full, timeindex) + + # test with given timeindex and no leap year + given_index = pd.date_range("1/1/2013", periods=5, freq="H") + ind, ind_full = timeseries_import._timeindex_helper_func( + edisgo, + timeindex=given_index, + ) + timeindex = pd.date_range("1/1/2013", periods=8760, freq="H") + assert_index_equal(ind, given_index) + assert_index_equal(ind_full, timeindex) + + def test_feedin_oedb_legacy(self): weather_cells = [1122074.0, 1122075.0] timeindex = pd.date_range("1/1/2011", periods=8760, freq="H") - feedin = timeseries_import.feedin_oedb(self.config, weather_cells, timeindex) + feedin = timeseries_import.feedin_oedb_legacy( + self.config, weather_cells, timeindex + ) assert len(feedin["solar"][1122074]) == 8760 assert len(feedin["solar"][1122075]) == 8760 assert len(feedin["wind"][1122074]) == 8760 @@ -35,9 +82,21 @@ def test_feedin_oedb(self): ) timeindex = pd.date_range("1/1/2018", periods=8760, freq="H") with pytest.raises(ValueError, match=msg): - feedin = timeseries_import.feedin_oedb( - self.config, weather_cells, timeindex - ) + timeseries_import.feedin_oedb_legacy(self.config, weather_cells, timeindex) + + @pytest.mark.local + def test_feedin_oedb(self): + edisgo_object = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + timeindex = pd.date_range("1/2/2018", periods=6, freq="H") + edisgo_object.set_timeindex(timeindex) + feedin_df = timeseries_import.feedin_oedb( + edisgo_object, + engine=pytest.engine, + ) + assert feedin_df.shape == (6, 4) + assert_index_equal(feedin_df.index, timeindex) def test_import_load_timeseries(self): timeindex = pd.date_range("1/1/2018", periods=8760, freq="H") From 0a9a8ea2d69e3c770ade1e9bed0fcfe1a60dc6b3 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 19:18:31 +0100 Subject: [PATCH 107/355] Adapt functions to use timeindex helper function --- edisgo/io/timeseries_import.py | 139 ++++++++++++++--------------- edisgo/network/timeseries.py | 76 ++++++++-------- tests/io/test_timeseries_import.py | 34 +++---- 3 files changed, 118 insertions(+), 131 deletions(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 790d58ac2..ff9f4011d 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -47,21 +47,22 @@ def _timeindex_helper_func( return timeindex, timeindex_full -def feedin_oedb_legacy(config_data, weather_cell_ids, timeindex): +def feedin_oedb_legacy(edisgo_object, timeindex): """ Import feed-in time series data for wind and solar power plants from the `OpenEnergy DataBase `_. Parameters ---------- - config_data : :class:`~.tools.config.Config` - Configuration data from config files, relevant for information of - which data base table to retrieve feed-in data from. - weather_cell_ids : list(int) - List of weather cell id's (integers) to obtain feed-in data for. - timeindex : :pandas:`pandas.DatetimeIndex` - Feed-in data is currently only provided for weather year 2011. If - timeindex contains a different year, the data is reindexed. + edisgo_obj : :class:`~.EDisGo` + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to return feed-in data. Leap years can currently + not be handled. In case the given timeindex contains a leap year, the data will + be indexed using the default year 2011 and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year 2011 and returned for the whole year. Returns ------- @@ -72,67 +73,58 @@ def feedin_oedb_legacy(config_data, weather_cell_ids, timeindex): """ - def _retrieve_timeseries_from_oedb(session, timeindex): + def _retrieve_timeseries_from_oedb(session): """Retrieve time series from oedb""" - # ToDo: add option to retrieve subset of time series instead of whole - # year - # ToDo: find the reference power class for mvgrid/w_id and insert - # instead of 4 - feedin_sqla = ( - session.query(orm_feedin.w_id, orm_feedin.source, orm_feedin.feedin) - .filter(orm_feedin.w_id.in_(weather_cell_ids)) - .filter(orm_feedin.power_class.in_([0, 4])) - .filter(orm_feedin_version) - .filter(orm_feedin.weather_year.in_(timeindex.year.unique().values)) + feedin_sqla = session.query( + orm_feedin.w_id.label("weather_cell_id"), + orm_feedin.source.label("carrier"), + orm_feedin.feedin, + ).filter( + orm_feedin.w_id.in_(weather_cell_ids), + orm_feedin.power_class.in_([0, 4]), + orm_feedin_version, + orm_feedin.weather_year == 2011, ) - - feedin = pd.read_sql_query( - feedin_sqla.statement, session.bind, index_col=["source", "w_id"] + return pd.read_sql_query( + feedin_sqla.statement, + session.bind, ) - return feedin - if config_data["data_source"]["oedb_data_source"] == "model_draft": - orm_feedin_name = config_data["model_draft"]["res_feedin_data"] + if edisgo_object.config["data_source"]["oedb_data_source"] == "model_draft": + orm_feedin_name = edisgo_object.config["model_draft"]["res_feedin_data"] orm_feedin = model_draft.__getattribute__(orm_feedin_name) orm_feedin_version = 1 == 1 else: - orm_feedin_name = config_data["versioned"]["res_feedin_data"] + orm_feedin_name = edisgo_object.config["versioned"]["res_feedin_data"] orm_feedin = supply.__getattribute__(orm_feedin_name) - orm_feedin_version = orm_feedin.version == config_data["versioned"]["version"] - - if timeindex is None: - timeindex = pd.date_range("1/1/2011", periods=8760, freq="H") - - with session_scope() as session: - feedin = _retrieve_timeseries_from_oedb(session, timeindex) - - if feedin.empty: - raise ValueError( - "The year you inserted could not be imported from " - "the oedb. So far only 2011 is provided. Please " - "check website for updates." + orm_feedin_version = ( + orm_feedin.version == edisgo_object.config["versioned"]["version"] ) - feedin.sort_index(axis=0, inplace=True) - - recasted_feedin_dict = {} - for type_w_id in feedin.index: - recasted_feedin_dict[type_w_id] = feedin.loc[type_w_id, :].values[0] + weather_cell_ids = tools.get_weather_cells_intersecting_with_grid_district( + edisgo_object + ) - # Todo: change when possibility for other years is given - conversion_timeindex = pd.date_range("1/1/2011", periods=8760, freq="H") - feedin = pd.DataFrame(recasted_feedin_dict, index=conversion_timeindex) + with session_scope() as session: + feedin_df = _retrieve_timeseries_from_oedb(session) - # rename 'wind_onshore' and 'wind_offshore' to 'wind' - new_level = [ - _ if _ not in ["wind_onshore"] else "wind" for _ in feedin.columns.levels[0] - ] - feedin.columns = feedin.columns.set_levels(new_level, level=0) + # rename wind_onshore to wind + feedin_df.carrier = feedin_df.carrier.str.replace("_onshore", "") + # add time step column + feedin_df["time_step"] = len(feedin_df) * [np.arange(0, 8760)] + # un-nest feedin and pivot so that time_step becomes index and carrier and + # weather_cell_id column names + feedin_df = feedin_df.explode(["feedin", "time_step"]).pivot( + index="time_step", columns=["carrier", "weather_cell_id"], values="feedin" + ) - feedin.columns.rename("type", level=0, inplace=True) - feedin.columns.rename("weather_cell_id", level=1, inplace=True) + # set time index + timeindex, timeindex_full = _timeindex_helper_func( + edisgo_object, timeindex, default_year=2011, allow_leap_year=False + ) + feedin_df.index = timeindex_full - return feedin.loc[timeindex] + return feedin_df.loc[timeindex, :] def feedin_oedb( @@ -212,23 +204,24 @@ def feedin_oedb( return feedin_df.loc[timeindex, :] -def load_time_series_demandlib(config_data, timeindex): +def load_time_series_demandlib(edisgo_obj, timeindex): """ Get normalized sectoral electricity load time series using the `demandlib `_. Resulting electricity load profiles hold time series of hourly conventional electricity demand for the sectors residential, cts, agricultural - and industrial. Time series are normalized to a consumption of 1 MWh per - year. + and industrial. Time series are normalized to a consumption of 1 MWh per year. Parameters ---------- - config_data : :class:`~.tools.config.Config` - Configuration data from config files, relevant for industrial load - profiles. + edisgo_obj : :class:`~.EDisGo` timeindex : :pandas:`pandas.DatetimeIndex` - Timesteps for which to generate load time series. + Specifies time steps for which to return feed-in data. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year 2011 and returned for the whole year. Returns ------- @@ -239,6 +232,10 @@ def load_time_series_demandlib(config_data, timeindex): hold the sector type. """ + timeindex, _ = _timeindex_helper_func( + edisgo_obj, timeindex, default_year=2011, allow_leap_year=True + ) + year = timeindex[0].year sectoral_consumption = {"h0": 1, "g0": 1, "i0": 1, "l0": 1} @@ -259,23 +256,23 @@ def load_time_series_demandlib(config_data, timeindex): elec_demand["i0"] = ilp.simple_profile( sectoral_consumption["i0"], am=datetime.time( - config_data["demandlib"]["day_start"].hour, - config_data["demandlib"]["day_start"].minute, + edisgo_obj.config["demandlib"]["day_start"].hour, + edisgo_obj.config["demandlib"]["day_start"].minute, 0, ), pm=datetime.time( - config_data["demandlib"]["day_end"].hour, - config_data["demandlib"]["day_end"].minute, + edisgo_obj.config["demandlib"]["day_end"].hour, + edisgo_obj.config["demandlib"]["day_end"].minute, 0, ), profile_factors={ "week": { - "day": config_data["demandlib"]["week_day"], - "night": config_data["demandlib"]["week_night"], + "day": edisgo_obj.config["demandlib"]["week_day"], + "night": edisgo_obj.config["demandlib"]["week_night"], }, "weekend": { - "day": config_data["demandlib"]["weekend_day"], - "night": config_data["demandlib"]["weekend_night"], + "day": edisgo_obj.config["demandlib"]["weekend_day"], + "night": edisgo_obj.config["demandlib"]["weekend_night"], }, }, ) diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index 4f465dc54..ce3debad9 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -12,11 +12,7 @@ from edisgo.flex_opt import q_control from edisgo.io import timeseries_import -from edisgo.tools.tools import ( - assign_voltage_level_to_component, - get_weather_cells_intersecting_with_grid_district, - resample, -) +from edisgo.tools.tools import assign_voltage_level_to_component, resample if TYPE_CHECKING: from edisgo import EDisGo @@ -1178,7 +1174,12 @@ def _worst_case_storage_units(self, cases, df, configs): return active_power, reactive_power def predefined_fluctuating_generators_by_technology( - self, edisgo_object, ts_generators, generator_names=None, engine=None + self, + edisgo_object, + ts_generators, + generator_names=None, + timeindex=None, + engine=None, ): """ Set active power feed-in time series for fluctuating generators by technology. @@ -1199,15 +1200,12 @@ def predefined_fluctuating_generators_by_technology( Technology and weather cell specific hourly feed-in time series are obtained from the `OpenEnergy DataBase - `_ - for the weather year 2011. See - :func:`edisgo.io.timeseries_import.import_feedin_timeseries` for more - information. + `_. See + :func:`edisgo.io.timeseries_import.feedin_oedb` for more information. - * 'egon_data' - - Technology and weather cell specific hourly feed-in time series are - obtained from an eGon-data instance for the weather year 2011. + This option requires that the parameter `engine` is provided in case + new ding0 grids with geo-referenced LV grids are used. For further + settings, the parameter `timeindex` can also be provided. * :pandas:`pandas.DataFrame` @@ -1234,33 +1232,30 @@ def predefined_fluctuating_generators_by_technology( generator_names : list(str) Defines for which fluctuating generators to use technology-specific time - series. If None, all generators technology (and weather cell) specific time - series are provided for are used. In case the time series are retrieved from - the oedb, all solar and wind generators are used. Default: None. + series. If None, all generators for which technology- (and weather cell-) + specific time series are provided are used. In case the time series are + retrieved from the oedb, all solar and wind generators are used. + Default: None. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to set feed-in time series. This parameter + is only used in case `ts_generators` is 'oedb'. See parameter `timeindex` + in :func:`edisgo.io.timeseries_import.feedin_oedb` for more information. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. This parameter is only required in case + `ts_generators` is 'oedb' and new ding0 grids with geo-referenced LV grids + are used. """ # in case time series from oedb are used, retrieve oedb time series if isinstance(ts_generators, str) and ts_generators == "oedb": - weather_cell_ids = get_weather_cells_intersecting_with_grid_district( - edisgo_object - ) - ts_generators = timeseries_import.feedin_oedb( - edisgo_object.config, weather_cell_ids, self.timeindex - ) - - elif isinstance(ts_generators, str) and ts_generators == "egon_data": - if engine is None: - raise ValueError( - "Please provide a valid engine to your egon-data instance." + if edisgo_object.legacy_grids is True: + ts_generators = timeseries_import.feedin_oedb_legacy( + edisgo_object, timeindex=timeindex + ) + else: + ts_generators = timeseries_import.feedin_oedb( + edisgo_object, engine=engine, timeindex=timeindex ) - - weather_cell_ids = get_weather_cells_intersecting_with_grid_district( - edisgo_object, engine=engine - ) - ts_generators = timeseries_import.feedin_egon_data( - weather_cell_ids, self.timeindex, engine=engine - ) - elif not isinstance(ts_generators, pd.DataFrame): raise ValueError( "'ts_generators' must either be a pandas DataFrame or 'oedb'." @@ -1385,7 +1380,7 @@ def predefined_dispatchable_generators_by_technology( self.add_component_time_series("generators_active_power", ts_scaled) def predefined_conventional_loads_by_sector( - self, edisgo_object, ts_loads, load_names=None + self, edisgo_object, ts_loads, load_names=None, timeindex=None ): """ Set active power demand time series for conventional loads by sector. @@ -1414,12 +1409,17 @@ def predefined_conventional_loads_by_sector( If None, all loads of sectors for which sector-specific time series are provided are used. In case the demandlib is used, all loads of sectors 'residential', 'cts', 'industrial', and 'agricultural' are used. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to set time series. This parameter + is only used in case `ts_loads` is 'demandlib'. See parameter `timeindex` + in :func:`edisgo.io.timeseries_import.load_time_series_demandlib` for + more information. """ # in case time series from demandlib are used, retrieve demandlib time series if isinstance(ts_loads, str) and ts_loads == "demandlib": ts_loads = timeseries_import.load_time_series_demandlib( - edisgo_object.config, timeindex=self.timeindex + edisgo_object, timeindex=timeindex ) elif not isinstance(ts_loads, pd.DataFrame): raise ValueError( diff --git a/tests/io/test_timeseries_import.py b/tests/io/test_timeseries_import.py index 06997e5bb..f3f6a5bfb 100644 --- a/tests/io/test_timeseries_import.py +++ b/tests/io/test_timeseries_import.py @@ -60,30 +60,18 @@ def test__timeindex_helper_func(self): assert_index_equal(ind_full, timeindex) def test_feedin_oedb_legacy(self): - weather_cells = [1122074.0, 1122075.0] - timeindex = pd.date_range("1/1/2011", periods=8760, freq="H") - feedin = timeseries_import.feedin_oedb_legacy( - self.config, weather_cells, timeindex - ) - assert len(feedin["solar"][1122074]) == 8760 - assert len(feedin["solar"][1122075]) == 8760 - assert len(feedin["wind"][1122074]) == 8760 - assert len(feedin["wind"][1122075]) == 8760 + edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + timeindex = pd.date_range("1/1/2010", periods=3000, freq="H") + feedin = timeseries_import.feedin_oedb_legacy(edisgo, timeindex) + assert len(feedin["solar"][1122074]) == 3000 + assert len(feedin["solar"][1122075]) == 3000 + assert len(feedin["wind"][1122074]) == 3000 + assert len(feedin["wind"][1122075]) == 3000 assert np.isclose(feedin["solar"][1122074][timeindex[13]], 0.074941) assert np.isclose(feedin["wind"][1122074][timeindex[37]], 0.039784) assert np.isclose(feedin["solar"][1122075][timeindex[61]], 0.423823) assert np.isclose(feedin["wind"][1122075][timeindex[1356]], 0.106361) - # check trying to import different year - msg = ( - "The year you inserted could not be imported from " - "the oedb. So far only 2011 is provided. Please " - "check website for updates." - ) - timeindex = pd.date_range("1/1/2018", periods=8760, freq="H") - with pytest.raises(ValueError, match=msg): - timeseries_import.feedin_oedb_legacy(self.config, weather_cells, timeindex) - @pytest.mark.local def test_feedin_oedb(self): edisgo_object = EDisGo( @@ -98,12 +86,14 @@ def test_feedin_oedb(self): assert feedin_df.shape == (6, 4) assert_index_equal(feedin_df.index, timeindex) - def test_import_load_timeseries(self): - timeindex = pd.date_range("1/1/2018", periods=8760, freq="H") - load = timeseries_import.load_time_series_demandlib(self.config, timeindex) + def test_load_time_series_demandlib(self): + edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + timeindex = pd.date_range("1/1/2018", periods=7000, freq="H") + load = timeseries_import.load_time_series_demandlib(edisgo, timeindex) assert ( load.columns == ["cts", "residential", "agricultural", "industrial"] ).all() + assert len(load) == 7000 assert np.isclose(load.loc[timeindex[453], "cts"], 8.33507e-05) assert np.isclose(load.loc[timeindex[13], "residential"], 1.73151e-04) assert np.isclose(load.loc[timeindex[6328], "agricultural"], 1.01346e-04) From 667758e7b9abde4579bee49cbc0e1e1557ae01c3 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 21:09:56 +0100 Subject: [PATCH 108/355] Change setting of time index of data imported from oedb --- edisgo/edisgo.py | 146 +++++++++++++++-------- edisgo/io/timeseries_import.py | 182 ++++++++++++++++------------- edisgo/network/heat.py | 58 +++++---- tests/io/test_timeseries_import.py | 33 +++--- tests/network/test_heat.py | 4 +- tests/test_edisgo.py | 2 +- 6 files changed, 244 insertions(+), 181 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 551114f08..34eb249de 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -390,8 +390,7 @@ def set_time_series_active_power_predefined( Predefined profiles comprise i.e. standard electric conventional load profiles for different sectors generated using the oemof `demandlib `_ or feed-in time series of - fluctuating solar and wind generators provided on the OpenEnergy DataBase for - the weather year 2011. + fluctuating solar and wind generators provided on the OpenEnergy DataBase. This function can also be used to provide your own profiles per technology or load sector. @@ -399,12 +398,51 @@ def set_time_series_active_power_predefined( Parameters ----------- fluctuating_generators_ts : str or :pandas:`pandas.DataFrame` or None - Defines which technology-specific (or technology and weather cell specific) - time series to use to set active power time series of fluctuating - generators. See parameter `ts_generators` in - :func:`~.network.timeseries.TimeSeries.predefined_fluctuating_generators_by_technology` - for more information. If None, no time series of fluctuating generators - are set. Default: None. + Defines option to set technology-specific or technology- and weather cell + specific active power time series of wind and solar generators. + Possible options are: + + * 'oedb' + + Technology- and weather cell-specific hourly feed-in time series are + obtained from the + `OpenEnergy DataBase + `_. See + :func:`edisgo.io.timeseries_import.feedin_oedb` for more information. + + This option requires that the parameter `engine` is provided in case + new ding0 grids with geo-referenced LV grids are used. For further + settings, the parameter `timeindex` can also be provided. + + * :pandas:`pandas.DataFrame` + + DataFrame with self-provided feed-in time series per technology or + per technology and weather cell ID normalized to a nominal capacity + of 1. + In case time series are provided only by technology, columns of the + DataFrame contain the technology type as string. + In case time series are provided by technology and weather cell ID + columns need to be a :pandas:`pandas.MultiIndex` with the + first level containing the technology as string and the second level + the weather cell ID as integer. + Index needs to be a :pandas:`pandas.DatetimeIndex`. + + When importing a ding0 grid and/or using predefined scenarios + of the future generator park, + each generator has an assigned weather cell ID that identifies the + weather data cell from the weather data set used in the research + project `open_eGo `_ to + determine feed-in profiles. The weather cell ID can be retrieved + from column `weather_cell_id` in + :attr:`~.network.topology.Topology.generators_df` and could be + overwritten to use own weather cells. + + * None + + If None, time series are not set. + + Default: None. + fluctuating_generators_names : list(str) or None Defines for which fluctuating generators to apply technology-specific time series. See parameter `generator_names` in @@ -433,23 +471,18 @@ def set_time_series_active_power_predefined( `_. This option requires that the parameters `engine` and `scenario` are - provided as keyword arguments. For further settings, the parameter - `year` can also be provided as keyword argument. - - See parameter `year` in function - :func:`edisgo.io.timeseries_import.electricity_demand_oedb` for more - information on how time series data is indexed. + provided. For further settings, the parameter `timeindex` can also be + provided. * 'demandlib' Sets active power demand time series using hourly electricity load time - series for one year obtained using standard electric load profiles from + series obtained using standard electric load profiles from the oemof `demandlib `_. The demandlib provides sector-specific time series for the sectors 'residential', 'cts', 'industrial', and 'agricultural'. - The time series data is indexed by the year set in - :attr:`edisgo.network.timeseries.TimeSeries.timeindex`. + For further settings, the parameter `timeindex` can also be provided. * :pandas:`pandas.DataFrame` @@ -494,17 +527,22 @@ def set_time_series_active_power_predefined( ------------------ engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. This parameter is only required in case - `conventional_loads_ts` is 'oedb'. + `conventional_loads_ts` or `fluctuating_generators_ts` is 'oedb'. scenario : str Scenario for which to retrieve demand data. Possible options are 'eGon2035' and 'eGon100RE'. This parameter is only required in case `conventional_loads_ts` is 'oedb'. - year : int or None + timeindex : :pandas:`pandas.DatetimeIndex` or None This parameter can optionally be provided in case `conventional_loads_ts` - is 'oedb' and is used to determine the year, the data is indexed by. - See parameter `year` in function - :func:`edisgo.io.timeseries_import.electricity_demand_oedb` for more - information. + is 'oedb' or 'demandlib' and in case `fluctuating_generators_ts` is + 'oedb'. It is used to specify time steps for which to set active power data. + Leap years can currently not be handled when data is retrieved from the + oedb. In case the given timeindex contains a leap year, the data will + be indexed using a default year and set for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using a default year and set for the whole year. Notes ------ @@ -518,20 +556,18 @@ def set_time_series_active_power_predefined( """ if self.timeseries.timeindex.empty: logger.warning( - "When setting time series using predefined profiles a time index is " - "not automatically set but needs to be set by the user. In some cases " - "not setting a time index prior to calling this function may lead " - "to errors. You can set the time index upon initialisation of the " - "EDisGo object by providing the input parameter 'timeindex' or using " - "the function EDisGo.set_timeindex()." + "When setting time series using predefined profiles it is safer to " + "set a time index. You can set the time index upon initialisation of " + "the EDisGo object by providing the input parameter 'timeindex' or by " + "using the function EDisGo.set_timeindex()." ) - return if fluctuating_generators_ts is not None: self.timeseries.predefined_fluctuating_generators_by_technology( self, fluctuating_generators_ts, fluctuating_generators_names, engine=kwargs.get("engine"), + timeindex=kwargs.get("timeindex", None), ) if dispatchable_generators_ts is not None: self.timeseries.predefined_dispatchable_generators_by_technology( @@ -546,7 +582,7 @@ def set_time_series_active_power_predefined( edisgo_obj=self, scenario=kwargs.get("scenario"), engine=kwargs.get("engine"), - year=kwargs.get("year", None), + timeindex=kwargs.get("timeindex", None), load_names=conventional_loads_names, ) # concat new time series with existing ones and drop any duplicate @@ -1802,7 +1838,7 @@ def apply_charging_strategy(self, strategy="dumb", **kwargs): """ charging_strategy(self, strategy=strategy, **kwargs) - def import_heat_pumps(self, scenario, engine, year=None): + def import_heat_pumps(self, scenario, engine, timeindex=None): """ Gets heat pump data for specified scenario from oedb and integrates the heat pumps into the grid. @@ -1870,29 +1906,45 @@ def import_heat_pumps(self, scenario, engine, year=None): and 2045 in case of the 'eGon100RE' scenario). A leap year can currently not be handled. In case a leap year is given, the time index is set according to the chosen scenario. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to set COP and heat demand data. Leap years + can currently not be handled. In case the given + timeindex contains a leap year, the data will be indexed using the default + year (2035 in case of the 'eGon2035' and to 2045 in case of the + 'eGon100RE' scenario) and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year and returned for the whole year. """ # set up year to index data by # first try to get index from time index - if year is None: - year = tools.get_year_based_on_timeindex(self) - # if time index is not set get year from scenario - if year is None: - year = tools.get_year_based_on_scenario(scenario) - # if year is still None, scenario is not valid - if year is None: - raise ValueError( - "Invalid input for parameter 'scenario'. Possible options are " - "'eGon2035' and 'eGon100RE'." - ) + if timeindex is None: + timeindex = self.timeseries.timeindex + # if time index is not set get year from scenario + if timeindex.empty: + year = tools.get_year_based_on_scenario(scenario) + # if year is still None, scenario is not valid + if year is None: + raise ValueError( + "Invalid input for parameter 'scenario'. Possible options are " + "'eGon2035' and 'eGon100RE'." + ) + timeindex = pd.date_range(f"1/1/{year}", periods=8760, freq="H") # if year is leap year set year according to scenario - if pd.Timestamp(year, 1, 1).is_leap_year: + if pd.Timestamp(timeindex.year[0], 1, 1).is_leap_year: logger.warning( "A leap year was given to 'heat_demand_oedb' function. This is " "currently not valid. The year the data is indexed by is therefore set " "according to the given scenario." ) - return self.import_heat_pumps(scenario, engine, year=None) + year = tools.get_year_based_on_scenario(scenario) + return self.import_heat_pumps( + scenario, + engine, + timeindex=pd.date_range(f"1/1/{year}", periods=8760, freq="H"), + ) integrated_heat_pumps = import_heat_pumps_oedb( edisgo_object=self, scenario=scenario, engine=engine @@ -1904,14 +1956,14 @@ def import_heat_pumps(self, scenario, engine, year=None): heat_pump_names=integrated_heat_pumps, engine=engine, scenario=scenario, - year=year, + timeindex=timeindex, ) self.heat_pump.set_cop( self, "oedb", heat_pump_names=integrated_heat_pumps, engine=engine, - year=year, + timeindex=timeindex, ) def apply_heat_pump_operating_strategy( diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index ff9f4011d..dafb3be72 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -25,6 +25,30 @@ def _timeindex_helper_func( edisgo_object, timeindex, default_year=2011, allow_leap_year=False ): + """ + Helper function to set up a timeindex for an entire year to initially set an index + on the imported data and timeindex to select certain time steps. + + Parameters + ---------- + edisgo_object : :class:`~.EDisGo` + timeindex : :pandas:`pandas.DatetimeIndex` or None + Timeindex that was provided by the user. + default_year : int + Default year to use in case no timeindex was provided by the user and no + timeindex is set in :py:attr:`~.network.timeseries.TimeSeries.timeindex`. + allow_leap_year : bool + If False and a leap year is given, either in `timeindex` given by the user or + set in :py:attr:`~.network.timeseries.TimeSeries.timeindex`, the default + year is used instead. + + Returns + ------- + (:pandas:`pandas.DatetimeIndex`,\ + :pandas:`pandas.DatetimeIndex`) + Returns timeindex to select certain time steps and timeindex for entire year. + + """ if timeindex is None: year = tools.get_year_based_on_timeindex(edisgo_object) if year is None: @@ -47,7 +71,7 @@ def _timeindex_helper_func( return timeindex, timeindex_full -def feedin_oedb_legacy(edisgo_object, timeindex): +def feedin_oedb_legacy(edisgo_object, timeindex=None): """ Import feed-in time series data for wind and solar power plants from the `OpenEnergy DataBase `_. @@ -204,7 +228,7 @@ def feedin_oedb( return feedin_df.loc[timeindex, :] -def load_time_series_demandlib(edisgo_obj, timeindex): +def load_time_series_demandlib(edisgo_obj, timeindex=None): """ Get normalized sectoral electricity load time series using the `demandlib `_. @@ -216,10 +240,9 @@ def load_time_series_demandlib(edisgo_obj, timeindex): Parameters ---------- edisgo_obj : :class:`~.EDisGo` - timeindex : :pandas:`pandas.DatetimeIndex` - Specifies time steps for which to return feed-in data. - If no timeindex is provided, the timeindex set in - :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to return data. If no timeindex is provided, the + timeindex set in :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data is indexed using the default year 2011 and returned for the whole year. @@ -293,22 +316,27 @@ def load_time_series_demandlib(edisgo_obj, timeindex): return elec_demand.loc[timeindex] -def cop_oedb(engine, weather_cell_ids, year=None): +def cop_oedb(edisgo_object, engine, weather_cell_ids, timeindex=None): """ Get COP (coefficient of performance) time series data from the `OpenEnergy DataBase `_. Parameters ---------- + edisgo_object : :class:`~.EDisGo` engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. weather_cell_ids : list(int) or list(float) List (or array) of weather cell IDs to obtain COP data for. - year : int - COP data is only provided for the weather year 2011. If a different year - is provided through this parameter, the data is reindexed. A leap year can - currently not be handled. In case a leap year is given, the time index is - set for 2011! + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to return data. Leap years can currently + not be handled. In case the given timeindex contains a leap year, the data will + be indexed using the default year 2011 and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year 2011 and returned for the whole year. + Returns ------- @@ -318,17 +346,9 @@ def cop_oedb(engine, weather_cell_ids, year=None): """ # set up time index to index COP data by - if year is None: - timeindex = pd.date_range("1/1/2011", periods=8760, freq="H") - else: - if pd.Timestamp(year, 1, 1).is_leap_year: - year = 2011 - logger.warning( - "A leap year was given to 'cop_oedb' function. This is currently not " - "valid. The year data is indexed by is therefore set to the default " - "value of 2011." - ) - timeindex = pd.date_range(f"1/1/{year}", periods=8760, freq="H") + timeindex, timeindex_full = _timeindex_helper_func( + edisgo_object, timeindex, default_year=2011, allow_leap_year=False + ) saio.register_schema("supply", engine) from saio.supply import egon_era5_renewable_feedin @@ -347,12 +367,14 @@ def cop_oedb(engine, weather_cell_ids, year=None): cop = pd.read_sql(query.statement, engine, index_col="w_id") # convert dataframe to have weather cell ID as column name and time index - cop = pd.DataFrame({w_id: ts.cop for w_id, ts in cop.iterrows()}, index=timeindex) + cop = pd.DataFrame( + {w_id: ts.cop for w_id, ts in cop.iterrows()}, index=timeindex_full + ) - return cop + return cop.loc[timeindex, :] -def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): +def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): """ Get heat demand profiles for heat pumps from the `OpenEnergy DataBase `_. @@ -372,11 +394,15 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): are 'eGon2035' and 'eGon100RE'. engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. - year : int or None - Year to index heat demand data by. Per default this is set to 2035 in case - of the 'eGon2035' and to 2045 in case of the 'eGon100RE' scenario. - A leap year can currently not be handled. In case a leap year is given, the - time index is set according to the chosen scenario. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to return data. Leap years can currently + not be handled. In case the given timeindex contains a leap year, the data will + be indexed using the default year (2035 in case of the 'eGon2035' and to 2045 + in case of the 'eGon100RE' scenario) and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year and returned for the whole year. Returns ------- @@ -386,23 +412,19 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): :attr:`~.network.topology.Topology.loads_df`. """ + if scenario not in ["eGon2035", "eGon100RE"]: + raise ValueError( + "Invalid input for parameter 'scenario'. Possible options are " + "'eGon2035' and 'eGon100RE'." + ) + # set up time index to index data by - if year is None: - year = tools.get_year_based_on_scenario(scenario) - if year is None: - raise ValueError( - "Invalid input for parameter 'scenario'. Possible options are " - "'eGon2035' and 'eGon100RE'." - ) - else: - if pd.Timestamp(year, 1, 1).is_leap_year: - logger.warning( - "A leap year was given to 'heat_demand_oedb' function. This is " - "currently not valid. The year the data is indexed by is therefore set " - "to the default value of 2011." - ) - return heat_demand_oedb(edisgo_obj, scenario, engine, year=None) - timeindex = pd.date_range(f"1/1/{year}", periods=8760, freq="H") + timeindex, timeindex_full = _timeindex_helper_func( + edisgo_obj, + timeindex, + default_year=tools.get_year_based_on_scenario(scenario), + allow_leap_year=False, + ) hp_df = edisgo_obj.topology.loads_df[ edisgo_obj.topology.loads_df.type == "heat_pump" @@ -435,9 +457,9 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): ) individual_heating_df.rename(columns=rename_series, inplace=True) # set index - individual_heating_df.index = timeindex + individual_heating_df.index = timeindex_full else: - individual_heating_df = pd.DataFrame(index=timeindex) + individual_heating_df = pd.DataFrame(index=timeindex_full) # get district heating profiles from oedb dh_ids = hp_df.district_heating_id.dropna().unique() @@ -455,14 +477,16 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, year=None): ) dh_profile_df.rename(columns=rename_series, inplace=True) # set index - dh_profile_df.index = timeindex + dh_profile_df.index = timeindex_full else: - dh_profile_df = pd.DataFrame(index=timeindex) + dh_profile_df = pd.DataFrame(index=timeindex_full) - return pd.concat([individual_heating_df, dh_profile_df], axis=1) + return pd.concat([individual_heating_df, dh_profile_df], axis=1).loc[timeindex, :] -def electricity_demand_oedb(edisgo_obj, scenario, engine, year=None, load_names=None): +def electricity_demand_oedb( + edisgo_obj, scenario, engine, timeindex=None, load_names=None +): """ Get electricity demand profiles for all conventional loads from the `OpenEnergy DataBase `_. @@ -482,11 +506,15 @@ def electricity_demand_oedb(edisgo_obj, scenario, engine, year=None, load_names= are 'eGon2035' and 'eGon100RE'. engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. - year : int or None - Year to index electricity demand data by. Per default this is set to 2035 in - case of the 'eGon2035' and to 2045 in case of the 'eGon100RE' scenario. - A leap year can currently not be handled. In case a leap year is given, the - time index is set according to the chosen scenario. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to return data. Leap years can currently + not be handled. In case the given timeindex contains a leap year, the data will + be indexed using the default year (2035 in case of the 'eGon2035' and to 2045 + in case of the 'eGon100RE' scenario) and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year and returned for the whole year. load_names : list(str) or None Conventional loads (as in index of :attr:`~.network.topology.Topology.loads_df`) for which to retrieve electricity demand time series. If none are provided, @@ -500,25 +528,19 @@ def electricity_demand_oedb(edisgo_obj, scenario, engine, year=None, load_names= in index of :attr:`~.network.topology.Topology.loads_df`. """ + if scenario not in ["eGon2035", "eGon100RE"]: + raise ValueError( + "Invalid input for parameter 'scenario'. Possible options are " + "'eGon2035' and 'eGon100RE'." + ) + # set up time index to index data by - if year is None: - year = tools.get_year_based_on_scenario(scenario) - if year is None: - raise ValueError( - "Invalid input for parameter 'scenario'. Possible options are " - "'eGon2035' and 'eGon100RE'." - ) - else: - if pd.Timestamp(year, 1, 1).is_leap_year: - logger.warning( - "A leap year was given to 'electricity_demand_oedb' function. This is " - "currently not valid. The year the data is indexed by is therefore set " - "to the default value of 2011." - ) - return electricity_demand_oedb( - edisgo_obj, scenario, engine, year=None, load_names=load_names - ) - timeindex = pd.date_range(f"1/1/{year}", periods=8760, freq="H") + timeindex, timeindex_full = _timeindex_helper_func( + edisgo_obj, + timeindex, + default_year=tools.get_year_based_on_scenario(scenario), + allow_leap_year=False, + ) # set loads for which to retrieve electricity profiles if load_names is None: @@ -544,7 +566,7 @@ def electricity_demand_oedb(edisgo_obj, scenario, engine, year=None, load_names= .iloc[:, 0] ) residential_profiles_df.rename(columns=rename_series, inplace=True) - residential_profiles_df.index = timeindex + residential_profiles_df.index = timeindex_full else: residential_profiles_df = pd.DataFrame() @@ -568,7 +590,7 @@ def electricity_demand_oedb(edisgo_obj, scenario, engine, year=None, load_names= .iloc[:, 0] ) cts_profiles_df.rename(columns=rename_series, inplace=True) - cts_profiles_df.index = timeindex + cts_profiles_df.index = timeindex_full else: cts_profiles_df = pd.DataFrame() @@ -588,13 +610,13 @@ def electricity_demand_oedb(edisgo_obj, scenario, engine, year=None, load_names= .iloc[:, 0] ) ind_profiles_df.rename(columns=rename_series, inplace=True) - ind_profiles_df.index = timeindex + ind_profiles_df.index = timeindex_full else: ind_profiles_df = pd.DataFrame() return pd.concat( [residential_profiles_df, cts_profiles_df, ind_profiles_df], axis=1 - ) + ).loc[timeindex, :] def _get_zensus_cells_of_buildings(building_ids, engine): diff --git a/edisgo/network/heat.py b/edisgo/network/heat.py index 549982906..3a20dbc17 100644 --- a/edisgo/network/heat.py +++ b/edisgo/network/heat.py @@ -148,7 +148,7 @@ def set_cop(self, edisgo_object, ts_cop, **kwargs): * 'oedb' - Weather cell specific hourly COP time series for one year are obtained + Weather cell specific hourly COP time series are obtained from the `OpenEnergy DataBase `_ (see :func:`edisgo.io.timeseries_import.cop_oedb` for more information). @@ -163,7 +163,7 @@ def set_cop(self, edisgo_object, ts_cop, **kwargs): information. This option requires that the parameter `engine` is provided as keyword - argument. For further settings, the parameters `year` and + argument. For further settings, the parameters `timeindex` and `heat_pump_names` can also be provided as keyword arguments. * :pandas:`pandas.DataFrame` @@ -180,15 +180,15 @@ def set_cop(self, edisgo_object, ts_cop, **kwargs): 'oedb'. If None, all heat pumps in :attr:`~.network.topology.Topology.loads_df` (type is 'heat_pump') are used. Default: None. - year : int or None - Year to index COP data by in case `ts_heat_demand` is 'oedb'. - If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is already set - COP data is indexed by the same year, otherwise time index will be set - for the year 2011 which is the weather year the data was generated with. - In case :py:attr:`~.network.timeseries.TimeSeries.timeindex` contains a - leap year, the COP data will as well be indexed using the year 2011, as - leap years can currently not be handled. See - :func:`edisgo.io.timeseries_import.cop_oedb` for more information. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to set data in case `ts_cop` is + 'oedb'. Leap years can currently not be handled. In case the given + timeindex contains a leap year, the data will be indexed using the default + year 2011 and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year 2011 and returned for the whole year. """ if isinstance(ts_cop, str) and ts_cop == "oedb": @@ -229,16 +229,12 @@ def set_cop(self, edisgo_object, ts_cop, **kwargs): ] = random_weather_cell_id weather_cells = hp_df.weather_cell_id.dropna().unique() - # set up year to index COP data by - year = kwargs.get("year", None) - if year is None: - year = tools.get_year_based_on_timeindex(edisgo_object) - # get COP per weather cell ts_cop_per_weather_cell = timeseries_import.cop_oedb( + edisgo_object=edisgo_object, engine=kwargs.get("engine", None), weather_cell_ids=weather_cells, - year=year, + timeindex=kwargs.get("timeindex", None), ) # assign COP time series to each heat pump cop_df = pd.DataFrame( @@ -291,7 +287,8 @@ def set_heat_demand(self, edisgo_object, ts_heat_demand, **kwargs): into the grid. This option requires that the parameters `engine` and `scenario` are provided as keyword arguments. For further settings, the parameters - `year` and `heat_pump_names` can also be provided as keyword arguments. + `timeindex` and `heat_pump_names` can also be provided as keyword + arguments. * :pandas:`pandas.DataFrame` @@ -313,14 +310,16 @@ def set_heat_demand(self, edisgo_object, ts_heat_demand, **kwargs): case `ts_heat_demand` is 'oedb'. If None, all heat pumps in :attr:`~.network.topology.Topology.loads_df` (type is 'heat_pump') are used. Default: None. - year : int or None - Year to index heat demand data by in case `ts_heat_demand` is 'oedb'. - If none is provided and :py:attr:`~.network.timeseries.TimeSeries.timeindex` - is already set, data is indexed by the same year. Otherwise, time index will - be set according to the scenario (2035 in case of the 'eGon2035' scenario - and 2045 in case of the 'eGon100RE' scenario). - A leap year can currently not be handled. In case a leap year is given, the - time index is set according to the chosen scenario. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to set data in case `ts_heat_demand` is + 'oedb'. Leap years can currently not be handled. In case the given + timeindex contains a leap year, the data will be indexed using the default + year (2035 in case of the 'eGon2035' and to 2045 in case of the + 'eGon100RE' scenario) and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year and returned for the whole year. """ # in case time series from oedb are used, retrieve oedb time series @@ -333,17 +332,12 @@ def set_heat_demand(self, edisgo_object, ts_heat_demand, **kwargs): ].index if len(heat_pump_names) > 0: - # set up year to index data by - year = kwargs.get("year", None) - if year is None: - year = tools.get_year_based_on_timeindex(edisgo_object) - # get heat demand per heat pump heat_demand_df = timeseries_import.heat_demand_oedb( edisgo_object, scenario=kwargs.get("scenario", ""), engine=kwargs.get("engine", None), - year=year, + timeindex=kwargs.get("timeindex", None), ) heat_pump_names_select = [ _ for _ in heat_demand_df.columns if _ in heat_pump_names diff --git a/tests/io/test_timeseries_import.py b/tests/io/test_timeseries_import.py index f3f6a5bfb..0a16ca82f 100644 --- a/tests/io/test_timeseries_import.py +++ b/tests/io/test_timeseries_import.py @@ -101,22 +101,14 @@ def test_load_time_series_demandlib(self): @pytest.mark.local def test_cop_oedb(self): + edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) cop_df = timeseries_import.cop_oedb( - pytest.engine, weather_cell_ids=[11051, 11052] + edisgo_object=edisgo, engine=pytest.engine, weather_cell_ids=[11051, 11052] ) assert cop_df.shape == (8760, 2) assert (cop_df > 1.0).all().all() assert (cop_df < 10.0).all().all() - # ToDo - # # test with overwriting time index - # cop_df = timeseries_import.cop_oedb( - # pytest.engine, weather_cell_ids=[11051, 11052], year=2010) - # - # # test with leap year - # cop_df = timeseries_import.cop_oedb( - # pytest.engine, weather_cell_ids=[11051, 11052], year=2020) - def setup_egon_heat_pump_data(self): names = [ "HP_442081", @@ -159,9 +151,12 @@ def test_heat_demand_oedb(self, caplog): # test for leap year with caplog.at_level(logging.WARNING): df = timeseries_import.heat_demand_oedb( - edisgo_object, "eGon100RE", pytest.engine, year=2020 + edisgo_object, + "eGon100RE", + pytest.engine, + timeindex=pd.date_range("1/1/2020", periods=8760, freq="H"), ) - assert "A leap year was given to 'heat_demand_oedb' function." in caplog.text + assert "A leap year was given." in caplog.text assert df.shape == (8760, 3) assert df.index[0].year == 2045 @@ -195,20 +190,20 @@ def test_electricity_demand_oedb(self, caplog): "eGon2035", pytest.engine, load_names=["Load_mvgd_33532_1_industrial"], - year=2011, + timeindex=pd.date_range("1/1/2011", periods=4, freq="H"), ) - assert df.shape == (8760, 1) + assert df.shape == (4, 1) assert df.index[0].year == 2011 # test for leap year and all loads in the grid with caplog.at_level(logging.WARNING): df = timeseries_import.electricity_demand_oedb( - edisgo_object, "eGon100RE", pytest.engine, year=2020 + edisgo_object, + "eGon100RE", + pytest.engine, + timeindex=pd.date_range("1/1/2020", periods=4, freq="H"), ) - assert ( - "A leap year was given to 'electricity_demand_oedb' function." - in caplog.text - ) + assert "A leap year was given." in caplog.text assert df.shape == (8760, 2463) assert df.index[0].year == 2045 diff --git a/tests/network/test_heat.py b/tests/network/test_heat.py index 3624b815f..b931c17af 100644 --- a/tests/network/test_heat.py +++ b/tests/network/test_heat.py @@ -218,7 +218,7 @@ def test_set_heat_demand_oedb(self): scenario="eGon2035", heat_pump_names=["HP_442081", "HP_dummy"], ) - assert edisgo_object.heat_pump.heat_demand_df.shape == (8760, 1) + assert edisgo_object.heat_pump.heat_demand_df.shape == (2, 1) assert edisgo_object.heat_pump.heat_demand_df.index[0].year == 2011 # ###### test with empty list for heat pump names ##### @@ -229,7 +229,7 @@ def test_set_heat_demand_oedb(self): scenario="eGon2035", heat_pump_names=[], ) - assert edisgo_object.heat_pump.heat_demand_df.shape == (8760, 1) + assert edisgo_object.heat_pump.heat_demand_df.shape == (2, 1) assert edisgo_object.heat_pump.heat_demand_df.index[0].year == 2011 def test_reduce_memory(self): diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index d75c36868..6216d39d5 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -1264,7 +1264,7 @@ def test_import_heat_pumps(self): edisgo_object.import_heat_pumps( scenario="eGon2035", engine=pytest.engine, - year=2020, + timeindex=pd.date_range("1/1/2020", periods=2, freq="H"), ) loads_df = edisgo_object.topology.loads_df From 5ffdf5873476313797547f970467c4223d70a6e2 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 21:30:39 +0100 Subject: [PATCH 109/355] Add tests for getting feed-in time series from oedb --- tests/network/test_timeseries.py | 48 ++++++++++++++++++++++++++++++++ tests/test_edisgo.py | 23 +++++++++------ 2 files changed, 63 insertions(+), 8 deletions(-) diff --git a/tests/network/test_timeseries.py b/tests/network/test_timeseries.py index 2fd0d5c8a..e3c8e3886 100644 --- a/tests/network/test_timeseries.py +++ b/tests/network/test_timeseries.py @@ -1413,6 +1413,54 @@ def test_predefined_fluctuating_generators_by_technology(self): ) # fmt: on + @pytest.mark.local + def test_predefined_fluctuating_generators_by_technology_oedb(self): + + edisgo_object = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + timeindex = pd.date_range("1/1/2011 12:00", periods=2, freq="H") + edisgo_object.timeseries.timeindex = timeindex + + # ############# oedb, all generators (default) + edisgo_object.timeseries.predefined_fluctuating_generators_by_technology( + edisgo_object, "oedb", engine=pytest.engine + ) + + # check shape + fluctuating_gens = edisgo_object.topology.generators_df[ + edisgo_object.topology.generators_df.type.isin(["wind", "solar"]) + ] + p_ts = edisgo_object.timeseries.generators_active_power + assert p_ts.shape == (2, len(fluctuating_gens)) + # fmt: off + assert ( + edisgo_object.timeseries.time_series_raw. + fluctuating_generators_active_power_by_technology.shape + == (2, 4) + ) + # fmt: on + + # check values + comp = ( + "Generator_mvgd_33532_lvgd_1203710000_pv_rooftop_142" # solar, w_id = 11052 + ) + p_nom = 0.0033 + exp = pd.Series( + data=[0.548044 * p_nom, 0.568356 * p_nom], + name=comp, + index=timeindex, + ) + assert_series_equal(p_ts.loc[:, comp], exp, check_dtype=False, atol=1e-5) + comp = "Generator_mvgd_33532_pv_rooftop_160" # solar, w_id = 11051 + p_nom = 0.08 + exp = pd.Series( + data=[0.505049 * p_nom, 0.555396 * p_nom], + name=comp, + index=timeindex, + ) + assert_series_equal(p_ts.loc[:, comp], exp, check_dtype=False, atol=1e-5) + def test_predefined_dispatchable_generators_by_technology(self): timeindex = pd.date_range("1/1/2011 12:00", periods=2, freq="H") diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 6216d39d5..4284541fe 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -205,11 +205,9 @@ def test_set_time_series_active_power_predefined(self, caplog): # options where database connection is needed are tested in separate function # check warning - self.edisgo.set_time_series_active_power_predefined( - fluctuating_generators_ts="oedb" - ) + self.edisgo.set_time_series_active_power_predefined() assert ( - "When setting time series using predefined profiles a time index is" + "When setting time series using predefined profiles it is better" in caplog.text ) @@ -266,18 +264,27 @@ def test_set_time_series_active_power_predefined_oedb(self): edisgo_object = EDisGo( ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False ) - edisgo_object.set_timeindex(pd.date_range("1/1/2035", periods=8760, freq="H")) + edisgo_object.set_timeindex(pd.date_range("1/1/2011", periods=8760, freq="H")) edisgo_object.set_time_series_active_power_predefined( conventional_loads_ts="oedb", + fluctuating_generators_ts="oedb", scenario="eGon2035", engine=pytest.engine, - year=2020, + timeindex=pd.date_range("1/1/2011 12:00", periods=2, freq="H"), + conventional_loads_names=["Load_mvgd_33532_lvgd_1163850002_9_residential"], ) assert edisgo_object.timeseries.loads_active_power.dropna().shape == ( - 8760, - 2463, + 2, + 1, + ) + fluctuating_gens = edisgo_object.topology.generators_df[ + edisgo_object.topology.generators_df.type.isin(["wind", "solar"]) + ] + assert edisgo_object.timeseries.generators_active_power.dropna().shape == ( + 2, + len(fluctuating_gens), ) def test_set_time_series_reactive_power_control(self): From 75c3abab69762ab3b05d87e74198060ea45d33b7 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 21:31:11 +0100 Subject: [PATCH 110/355] Adapt docstring --- edisgo/edisgo.py | 29 ++++++++++++++++------------- 1 file changed, 16 insertions(+), 13 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 34eb249de..709efb81d 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -385,16 +385,27 @@ def set_time_series_active_power_predefined( **kwargs, ): """ - Uses predefined feed-in or demand profiles. + Uses predefined feed-in or demand profiles to set active power time series. Predefined profiles comprise i.e. standard electric conventional load profiles for different sectors generated using the oemof `demandlib `_ or feed-in time series of fluctuating solar and wind generators provided on the OpenEnergy DataBase. - This function can also be used to provide your own profiles per technology or load sector. + The active power time series are written to + :attr:`~.network.timeseries.TimeSeries.generators_active_power` or + :attr:`~.network.timeseries.TimeSeries.loads_active_power`. + As data in :class:`~.network.timeseries.TimeSeries` is indexed by + :attr:`~.network.timeseries.TimeSeries.timeindex` it is better to set + :attr:`~.network.timeseries.TimeSeries.timeindex` before calling this function. + You can set the time index upon initialisation of the EDisGo object by + providing the input parameter 'timeindex' or using the function + :attr:`~.edisgo.EDisGo.set_timeindex`. + Also make sure that the time steps of self-provided time series include + the set time index. + Parameters ----------- fluctuating_generators_ts : str or :pandas:`pandas.DataFrame` or None @@ -544,20 +555,12 @@ def set_time_series_active_power_predefined( If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data is indexed using a default year and set for the whole year. - Notes - ------ - This function raises a warning in case a time index was not previously set. - You can set the time index upon initialisation of the EDisGo object by - providing the input parameter 'timeindex' or using the function - :attr:`~.edisgo.EDisGo.set_timeindex`. - Also make sure that the time steps for which time series are provided include - the set time index. - """ if self.timeseries.timeindex.empty: logger.warning( - "When setting time series using predefined profiles it is safer to " - "set a time index. You can set the time index upon initialisation of " + "When setting time series using predefined profiles it is better to " + "set a time index as all data in TimeSeries class is indexed by the" + "time index. You can set the time index upon initialisation of " "the EDisGo object by providing the input parameter 'timeindex' or by " "using the function EDisGo.set_timeindex()." ) From 1861de2799c60b4d8b471d6f09988b9c51962c83 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 21:32:22 +0100 Subject: [PATCH 111/355] Minor formatting changes --- tests/network/test_timeseries.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/network/test_timeseries.py b/tests/network/test_timeseries.py index e3c8e3886..471b08318 100644 --- a/tests/network/test_timeseries.py +++ b/tests/network/test_timeseries.py @@ -1262,9 +1262,9 @@ def test_predefined_fluctuating_generators_by_technology(self): assert p_ts.shape == (2, len(fluctuating_gens)) # fmt: off assert ( - self.edisgo.timeseries.time_series_raw. - fluctuating_generators_active_power_by_technology.shape - == (2, 8) + self.edisgo.timeseries.time_series_raw. + fluctuating_generators_active_power_by_technology.shape + == (2, 8) ) # fmt: on @@ -1314,9 +1314,9 @@ def test_predefined_fluctuating_generators_by_technology(self): assert p_ts.shape == (2, len(fluctuating_gens)) # fmt: off assert ( - self.edisgo.timeseries.time_series_raw. - fluctuating_generators_active_power_by_technology.shape - == (2, 10) + self.edisgo.timeseries.time_series_raw. + fluctuating_generators_active_power_by_technology.shape + == (2, 10) ) # fmt: on @@ -1359,9 +1359,9 @@ def test_predefined_fluctuating_generators_by_technology(self): assert p_ts.shape == (2, len(fluctuating_gens)) # fmt: off assert ( - self.edisgo.timeseries.time_series_raw. - fluctuating_generators_active_power_by_technology.shape - == (2, 10) + self.edisgo.timeseries.time_series_raw. + fluctuating_generators_active_power_by_technology.shape + == (2, 10) ) # fmt: on @@ -1407,9 +1407,9 @@ def test_predefined_fluctuating_generators_by_technology(self): assert p_ts.shape == (2, 22) # fmt: off assert ( - self.edisgo.timeseries.time_series_raw. - fluctuating_generators_active_power_by_technology.shape - == (2, 2) + self.edisgo.timeseries.time_series_raw. + fluctuating_generators_active_power_by_technology.shape + == (2, 2) ) # fmt: on From 83d4c8ad2f356f5f0a2e77366be4c4c5c0fe9cda Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 22:23:02 +0100 Subject: [PATCH 112/355] Fix module name --- doc/api/edisgo.io.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/api/edisgo.io.rst b/doc/api/edisgo.io.rst index fbbb235fe..150925c62 100644 --- a/doc/api/edisgo.io.rst +++ b/doc/api/edisgo.io.rst @@ -49,18 +49,18 @@ edisgo.io.heat\_pump\_import module :undoc-members: :show-inheritance: -edisgo.io.home\_batteries\_import module ----------------------------------------- +edisgo.io.pypsa\_io module +-------------------------- -.. automodule:: edisgo.io.home_batteries_import +.. automodule:: edisgo.io.pypsa_io :members: :undoc-members: :show-inheritance: -edisgo.io.pypsa\_io module --------------------------- +edisgo.io.storage\_import module +---------------------------------------- -.. automodule:: edisgo.io.pypsa_io +.. automodule:: edisgo.io.storage_import :members: :undoc-members: :show-inheritance: From b11fad269661ecd5e70ce3c1059926eff8ff7451 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 22:25:04 +0100 Subject: [PATCH 113/355] Simplify import --- tests/io/test_generators_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/io/test_generators_import.py b/tests/io/test_generators_import.py index 850c8dd9b..d49e27bcd 100644 --- a/tests/io/test_generators_import.py +++ b/tests/io/test_generators_import.py @@ -5,7 +5,7 @@ from shapely.geometry import Point from edisgo import EDisGo -from edisgo.io import generators_import as generators_import +from edisgo.io import generators_import class TestGeneratorsImport: From 71842c5e59390f8ededa7e85dbb2200b8796c568 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 23:11:02 +0100 Subject: [PATCH 114/355] Try fixing failing tests --- rtd_requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 927efb1ba..c226501db 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -1,5 +1,5 @@ beautifulsoup4 -dash +dash < 2.9.0 demandlib docutils == 0.16.0 egoio >= 0.4.7 diff --git a/setup.py b/setup.py index 23043c567..eb4626b88 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def read(fname): requirements = [ "beautifulsoup4", "contextily", - "dash", + "dash < 2.9.0", "demandlib", "descartes", "egoio >= 0.4.7", From b508f7d639d84ab21d382df0cb56be626a6ddc62 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 16 Mar 2023 23:56:29 +0100 Subject: [PATCH 115/355] Limit version number due to failing tests --- rtd_requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 927efb1ba..c226501db 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -1,5 +1,5 @@ beautifulsoup4 -dash +dash < 2.9.0 demandlib docutils == 0.16.0 egoio >= 0.4.7 diff --git a/setup.py b/setup.py index 6b0b72da3..6234e2060 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def read(fname): requirements = [ "beautifulsoup4", "contextily", - "dash", + "dash < 2.9.0", "demandlib", "descartes", "egoio >= 0.4.7", From b5c07d4ac2328c9b3765e3030a834e102da8c4dd Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 17 Mar 2023 14:03:31 +0100 Subject: [PATCH 116/355] Fix dtype when time series is imported from database as list --- edisgo/io/timeseries_import.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index dafb3be72..4507ce763 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -148,7 +148,7 @@ def _retrieve_timeseries_from_oedb(session): ) feedin_df.index = timeindex_full - return feedin_df.loc[timeindex, :] + return feedin_df.loc[timeindex, :].astype("float") def feedin_oedb( @@ -225,7 +225,7 @@ def feedin_oedb( ) feedin_df.index = timeindex_full - return feedin_df.loc[timeindex, :] + return feedin_df.loc[timeindex, :].astype("float") def load_time_series_demandlib(edisgo_obj, timeindex=None): @@ -929,7 +929,7 @@ def get_district_heating_heat_demand_profiles(district_heating_ids, scenario, en df["hour_of_year"] = df.groupby("area_id").cumcount() + 1 df = df.pivot(index="hour_of_year", columns="area_id", values="dist_aggregated_mw") - return df + return df.astype("float") def get_cts_profiles_per_building( @@ -1354,6 +1354,8 @@ def _get_load_curves_areas(site_ids): profiles_df["time_step"] = len(profiles_df) * [np.arange(0, 8760)] # un-nest p_set and pivot so that time_step becomes index and site_id the # name of the columns - return profiles_df.explode(["p_set", "time_step"]).pivot( - index="time_step", columns="site_id", values="p_set" + return ( + profiles_df.explode(["p_set", "time_step"]) + .pivot(index="time_step", columns="site_id", values="p_set") + .astype("float") ) From 9ac4da936c77801a76a7a49cdd00eaecad95fc47 Mon Sep 17 00:00:00 2001 From: AnyaHe Date: Fri, 17 Mar 2023 14:36:37 +0100 Subject: [PATCH 117/355] add methods and test for reduced timesteps reinforcement --- edisgo/opf/timeseries_reduction.py | 108 +++++++++++++++++++++++++ tests/opf/test_timeseries_reduction.py | 57 +++++++++++++ 2 files changed, 165 insertions(+) create mode 100644 tests/opf/test_timeseries_reduction.py diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index d856d17d6..356de5134 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -30,6 +30,29 @@ def _scored_critical_loading(edisgo_obj): return crit_lines_score.sort_values(ascending=False) +def _scored_most_critical_loading(edisgo_obj): + """ + Method to get time steps where at least one component + """ + + # Get current relative to allowed current + relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj) + + # Get lines that have violations + crit_lines_score = relative_i_res[relative_i_res > 1] + + # Get most critical timesteps per component + crit_lines_score = ( + (crit_lines_score[crit_lines_score == crit_lines_score.max()]) + .dropna(how="all") + .dropna(how="all", axis=1) + ) + + # Sort according to highest cumulated relative overloading + crit_lines_score = (crit_lines_score - 1).sum(axis=1) + return crit_lines_score.sort_values(ascending=False) + + def _scored_critical_overvoltage(edisgo_obj): voltage_dev = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( @@ -44,6 +67,91 @@ def _scored_critical_overvoltage(edisgo_obj): return voltage_dev_ov.sort_values(ascending=False) +def _scored_most_critical_voltage_issues(edisgo_obj): + voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + edisgo_obj + ) + + # Get score for nodes that are over or under the allowed deviations + voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] + # get only most critical events for component + # Todo: should there be different ones for over and undervoltage? + voltage_diff = ( + (voltage_diff[voltage_diff.abs() == voltage_diff.abs().max()]) + .dropna(how="all") + .dropna(how="all", axis=1) + ) + + voltage_diff = voltage_diff.sum(axis=1) + + return voltage_diff.sort_values(ascending=False) + + +def get_steps_reinforcement( + edisgo_obj, num_steps_loading=None, num_steps_voltage=None, percentage=1.0 +): + """ + Get the time steps with the most critical violations for curtailment + optimization. + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + num_steps_loading: int + The number of most critical overloading events to select, if None percentage + is used + num_steps_voltage: int + The number of most critical voltage issues to select, if None percentage is used + percentage : float + The percentage of most critical time steps to select + Returns + -------- + `pandas.DatetimeIndex` + the reduced time index for modeling curtailment + """ + # Run power flow if not available + if edisgo_obj.results.i_res is None or edisgo_obj.results.i_res.empty: + logger.debug("Running initial power flow") + edisgo_obj.analyze(raise_not_converged=False) # Todo: raise warning? + + # Select most critical steps based on current violations + loading_scores = _scored_most_critical_loading(edisgo_obj) + if num_steps_loading is None: + num_steps_loading = int(len(loading_scores) * percentage) + else: + if num_steps_loading > len(loading_scores): + logger.info( + f"The number of time steps with highest overloading " + f"({len(loading_scores)}) is lower than the defined number of " + f"loading time steps ({num_steps_loading}). Therefore, only " + f"{len(loading_scores)} time steps are exported." + ) + num_steps_loading = len(loading_scores) + steps = loading_scores[:num_steps_loading].index + + # Select most critical steps based on voltage violations + voltage_scores = _scored_most_critical_voltage_issues(edisgo_obj) + if num_steps_voltage is None: + num_steps_voltage = int(len(voltage_scores) * percentage) + else: + if num_steps_voltage > len(voltage_scores): + logger.info( + f"The number of time steps with highest voltage issues " + f"({len(voltage_scores)}) is lower than the defined number of " + f"voltage time steps ({num_steps_voltage}). Therefore, only " + f"{len(voltage_scores)} time steps are exported." + ) + num_steps_voltage = len(voltage_scores) + steps = steps.append( + voltage_scores[:num_steps_voltage].index + ) # Todo: Can this cause duplicated? + + if len(steps) == 0: + logger.warning("No critical steps detected. No network expansion required.") + + return pd.DatetimeIndex(steps.unique()) + + def get_steps_curtailment(edisgo_obj, percentage=0.5): """ Get the time steps with the most critical violations for curtailment diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py new file mode 100644 index 000000000..cd6b42c6f --- /dev/null +++ b/tests/opf/test_timeseries_reduction.py @@ -0,0 +1,57 @@ +import numpy as np +import pytest + +from edisgo import EDisGo +from edisgo.opf.timeseries_reduction import ( + _scored_most_critical_loading, + _scored_most_critical_voltage_issues, + get_steps_reinforcement, +) + + +class TestTimeseriesReduction: + @classmethod + def setup_class(self): + self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + self.edisgo.set_time_series_worst_case_analysis() + self.timesteps = self.edisgo.timeseries.timeindex + + @pytest.fixture(autouse=True) + def run_power_flow(self): + """ + Fixture to run new power flow before each test. + + """ + self.edisgo.analyze() + + def test__scored_most_critical_loading(self): + + ts_crit = _scored_most_critical_loading(self.edisgo) + + assert len(ts_crit) == 3 + + assert (ts_crit.index == self.timesteps[[0, 1, 3]]).all() + + assert ( + np.isclose(ts_crit[self.timesteps[[0, 1, 3]]], [1.45613, 1.45613, 1.14647]) + ).all() + + def test__scored_most_critical_voltage_issues(self): + + ts_crit = _scored_most_critical_voltage_issues(self.edisgo) + + assert len(ts_crit) == 2 + + assert (ts_crit.index == self.timesteps[[0, 1]]).all() + + assert ( + np.isclose(ts_crit[self.timesteps[[0, 1]]], [0.01062258, 0.01062258]) + ).all() + + def test_get_steps_reinforcement(self): + + ts_crit = get_steps_reinforcement(self.edisgo) + + assert len(ts_crit) == 3 + + assert (ts_crit == self.timesteps[[0, 1, 3]]).all() From 2b2baaf27a4dd7c097f0de3d2e76f7e06cae7560 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Fri, 17 Mar 2023 17:02:20 +0100 Subject: [PATCH 118/355] Refactor reinforcement method and tests --- edisgo/edisgo.py | 214 ++++++++---------------------- edisgo/flex_opt/reinforce_grid.py | 116 ++++++++++++++++ tests/test_edisgo.py | 38 +++++- 3 files changed, 202 insertions(+), 166 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 01833a0e1..d0b692224 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -16,7 +16,10 @@ from edisgo.flex_opt.heat_pump_operation import ( operating_strategy as hp_operating_strategy, ) -from edisgo.flex_opt.reinforce_grid import reinforce_grid +from edisgo.flex_opt.reinforce_grid import ( + catch_convergence_reinforce_grid, + reinforce_grid, +) from edisgo.io import pypsa_io from edisgo.io.ding0_import import import_ding0_grid from edisgo.io.electromobility_import import ( @@ -943,195 +946,82 @@ def reinforce( LV grid id to specify the grid to check, if mode is "lv". """ - if kwargs.get("is_worst_case", self.timeseries.is_worst_case): + if copy_grid: + edisgo_obj = copy.deepcopy(self) + else: + edisgo_obj = self + # Build reinforce run settings + if kwargs.get("is_worst_case", self.timeseries.is_worst_case): logger.debug( "Running reinforcement in worst-case mode by differentiating between " "MV and LV load and feed-in cases." ) - - if copy_grid: - edisgo_obj = copy.deepcopy(self) - else: - edisgo_obj = self - timeindex_worst_cases = self.timeseries.timeindex_worst_cases + timesteps_mv = pd.DatetimeIndex( + timeindex_worst_cases.loc[ + timeindex_worst_cases.index.str.contains("mv") + ] + ) + timesteps_lv = pd.DatetimeIndex( + timeindex_worst_cases.loc[ + timeindex_worst_cases.index.str.contains("lv") + ] + ) + # Run everytime the analyze-method at the end, to get a power flow for all + # timesteps for reinforced components + run_analyze_at_the_end = True + if mode is None: + setting_list = [ + {"mode": "mv", "timesteps_pfa": timesteps_mv}, + {"mode": "lv", "timesteps_pfa": timesteps_lv}, + ] + elif mode == "mv": + setting_list = [ + {"mode": "mv", "timesteps_pfa": timesteps_mv}, + ] + elif mode == "mvlv": + setting_list = [{"mode": "mvlv", "timesteps_pfa": timesteps_mv}] + elif mode == "lv": + setting_list = [{"mode": "lv", "timesteps_pfa": timesteps_lv}] - if mode != "lv": + else: + raise ValueError(f"Mode {mode} does not exist.") + else: + setting_list = [{"mode": mode, "timesteps_pfa": timesteps_pfa}] + run_analyze_at_the_end = False - timesteps_pfa = pd.DatetimeIndex( - timeindex_worst_cases.loc[ - timeindex_worst_cases.index.str.contains("mv") - ] - ) + for setting in setting_list: + if not catch_convergence_problems: reinforce_grid( edisgo_obj, max_while_iterations=max_while_iterations, copy_grid=False, - timesteps_pfa=timesteps_pfa, + timesteps_pfa=setting["timesteps_pfa"], combined_analysis=combined_analysis, - mode="mv", + mode=setting["mode"], without_generator_import=without_generator_import, **kwargs, ) - - if mode != "mv": - timesteps_pfa = pd.DatetimeIndex( - timeindex_worst_cases.loc[ - timeindex_worst_cases.index.str.contains("lv") - ] - ) - reinforce_mode = mode if mode == "mvlv" else "lv" - reinforce_grid( + else: + catch_convergence_reinforce_grid( edisgo_obj, max_while_iterations=max_while_iterations, copy_grid=False, - timesteps_pfa=timesteps_pfa, - combined_analysis=combined_analysis, - mode=reinforce_mode, - without_generator_import=without_generator_import, - **kwargs, - ) - - if mode not in ["mv", "lv"]: - edisgo_obj.analyze(mode=mode) - results = edisgo_obj.results - - else: - if not catch_convergence_problems: - results = reinforce_grid( - self, - max_while_iterations=max_while_iterations, - copy_grid=copy_grid, - timesteps_pfa=timesteps_pfa, + timesteps_pfa=setting["timesteps_pfa"], combined_analysis=combined_analysis, - mode=mode, + mode=setting["mode"], without_generator_import=without_generator_import, **kwargs, ) - else: - # Initial try - try: - logger.info("Initial reinforcement try.") - results = reinforce_grid( - self, - max_while_iterations=max_while_iterations, - copy_grid=copy_grid, - timesteps_pfa=timesteps_pfa, - combined_analysis=combined_analysis, - mode=mode, - without_generator_import=without_generator_import, - **kwargs, - ) - converged = True - fully_converged = True - except ValueError: - logger.info("Initial reinforcement doesn't converged.") - converged = False - fully_converged = False - - # traceback.print_exc() - set_scaling_factor = 1 - initial_timerseries = copy.deepcopy(self.timeseries) - minimal_scaling_factor = 0.05 - max_iterations = 10 - iteration = 0 - highest_converged_scaling_factor = 0 - - if not fully_converged: - # Find non converging timesteps - logger.info("Find converging and non converging timesteps.") - converging_timesteps, non_converging_timesteps = self.analyze( - timesteps=timesteps_pfa, raise_not_converged=False - ) - logger.debug( - f"Following timesteps {converging_timesteps} converged." - ) - logger.debug( - f"Following timesteps {non_converging_timesteps} " - f"doesnt't converged." - ) - - def reinforce(): - try: - results = reinforce_grid( - self, - max_while_iterations=max_while_iterations, - copy_grid=copy_grid, - timesteps_pfa=selected_timesteps, - combined_analysis=combined_analysis, - mode=mode, - without_generator_import=without_generator_import, - **kwargs, - ) - converged = True - logger.info( - f"Reinforcement succeeded for {set_scaling_factor=} " - f"at {iteration=}" - ) - except ValueError: - results = self.results - converged = False - logger.info( - f"Reinforcement failed for {set_scaling_factor=} " - f"at {iteration=}" - ) - return converged, results - - if not converged: - logger.info("Reinforce only converged timesteps") - selected_timesteps = converging_timesteps - _, _ = reinforce() - - logger.info("Reinforce only non converged timesteps") - selected_timesteps = non_converging_timesteps - converged, results = reinforce() - - while iteration < max_iterations: - iteration += 1 - if converged: - if set_scaling_factor == 1: - # Initial iteration (0) worked - break - else: - highest_converged_scaling_factor = set_scaling_factor - set_scaling_factor = 1 - else: - if set_scaling_factor == minimal_scaling_factor: - raise ValueError( - f"Not reinforceable with {minimal_scaling_factor=}!" - ) - elif iteration == 1: - set_scaling_factor = minimal_scaling_factor - else: - set_scaling_factor = ( - (set_scaling_factor - highest_converged_scaling_factor) - * 0.25 - ) + highest_converged_scaling_factor - - self.timeseries = copy.deepcopy(initial_timerseries) - self.timeseries.scale_timeseries( - p_scaling_factor=set_scaling_factor, - q_scaling_factor=set_scaling_factor, - ) - logger.info( - f"Try reinforce with {set_scaling_factor=} at {iteration=}" - ) - converged, results = reinforce() - if converged is False and iteration == max_iterations: - raise ValueError( - f"Not reinforceable, max iterations ({max_iterations}) " - f"reached!" - ) + if run_analyze_at_the_end: + edisgo_obj.analyze() - self.timeseries = initial_timerseries - selected_timesteps = timesteps_pfa - converged, results = reinforce() # add measure to Results object if not copy_grid: self.results.measures = "grid_expansion" - return results + return edisgo_obj.results def perform_mp_opf(self, timesteps, storage_series=None, **kwargs): """ diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index a96d938fb..56008ffdd 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -159,6 +159,8 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): else: edisgo_reinforce = edisgo + logger.info("Start reinforcement.") + if timesteps_pfa is not None: if isinstance(timesteps_pfa, str) and timesteps_pfa == "snapshot_analysis": snapshots = tools.select_worstcase_snapshots(edisgo_reinforce) @@ -620,3 +622,117 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) return edisgo_reinforce.results + + +def catch_convergence_reinforce_grid( + edisgo: EDisGo, + timesteps_pfa: str | pd.DatetimeIndex | pd.Timestamp | None = None, + copy_grid: bool = False, + max_while_iterations: int = 20, + combined_analysis: bool = False, + mode: str | None = None, + without_generator_import: bool = False, + **kwargs, +) -> Results: + def reinforce(): + try: + results = reinforce_grid( + edisgo, + max_while_iterations=max_while_iterations, + copy_grid=copy_grid, + timesteps_pfa=selected_timesteps, + combined_analysis=combined_analysis, + mode=mode, + without_generator_import=without_generator_import, + **kwargs, + ) + converged = True + logger.info( + f"Reinforcement succeeded for {set_scaling_factor=} " f"at {iteration=}" + ) + except ValueError: + results = edisgo.results + converged = False + logger.info( + f"Reinforcement failed for {set_scaling_factor=} " f"at {iteration=}" + ) + return converged, results + + # Initial try + logger.info("Start catch convergence reinforcement") + logger.info("Initial reinforcement try.") + selected_timesteps = timesteps_pfa + set_scaling_factor = 1.0 + iteration = 0 + converged = True + fully_converged = True + + converged, results = reinforce() + + if converged is False: + logger.info("Initial reinforcement doesn't converged.") + fully_converged = False + + set_scaling_factor = 1 + initial_timerseries = copy.deepcopy(edisgo.timeseries) + minimal_scaling_factor = 0.05 + max_iterations = 10 + iteration = 0 + highest_converged_scaling_factor = 0 + + if not fully_converged: + # Find non converging timesteps + logger.info("Find converging and non converging timesteps.") + converging_timesteps, non_converging_timesteps = edisgo.analyze( + timesteps=timesteps_pfa, raise_not_converged=False + ) + logger.debug(f"Following timesteps {converging_timesteps} converged.") + logger.debug( + f"Following timesteps {non_converging_timesteps} " f"doesnt't converged." + ) + + if not converged: + logger.info("Reinforce only converged timesteps") + selected_timesteps = converging_timesteps + _, _ = reinforce() + + logger.info("Reinforce only non converged timesteps") + selected_timesteps = non_converging_timesteps + converged, results = reinforce() + + while iteration < max_iterations: + iteration += 1 + if converged: + if set_scaling_factor == 1: + # Initial iteration (0) worked + break + else: + highest_converged_scaling_factor = set_scaling_factor + set_scaling_factor = 1 + else: + if set_scaling_factor == minimal_scaling_factor: + raise ValueError(f"Not reinforceable with {minimal_scaling_factor=}!") + elif iteration == 1: + set_scaling_factor = minimal_scaling_factor + else: + set_scaling_factor = ( + (set_scaling_factor - highest_converged_scaling_factor) * 0.25 + ) + highest_converged_scaling_factor + + edisgo.timeseries = copy.deepcopy(initial_timerseries) + edisgo.timeseries.scale_timeseries( + p_scaling_factor=set_scaling_factor, + q_scaling_factor=set_scaling_factor, + ) + logger.info(f"Try reinforce with {set_scaling_factor=} at {iteration=}") + converged, results = reinforce() + if converged is False and iteration == max_iterations: + raise ValueError( + f"Not reinforceable, max iterations ({max_iterations}) " f"reached!" + ) + + edisgo.timeseries = initial_timerseries + selected_timesteps = timesteps_pfa + converged, results = reinforce() + + return edisgo.results diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 772b24a28..775cc00a5 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -410,14 +410,33 @@ def test_reinforce(self): assert results.v_res.shape == (4, 142) assert self.edisgo.results.v_res.shape == (4, 142) - # ###################### test mode lv and copy grid ########################## + # ###################### test without worst case settings #################### + self.setup_worst_case_time_series() + results = self.edisgo.reinforce(is_worst_case=False) + assert results.unresolved_issues.empty + assert len(results.grid_expansion_costs) == 10 + assert len(results.equipment_changes) == 10 + assert results.v_res.shape == (4, 142) + assert self.edisgo.results.v_res.shape == (4, 142) + + # ###################### test mode mv and copy grid ########################## self.setup_edisgo_object() self.setup_worst_case_time_series() + results = self.edisgo.reinforce(mode="mv", copy_grid=True) + assert results.unresolved_issues.empty + assert len(results.grid_expansion_costs) == 4 + assert len(results.equipment_changes) == 4 + assert results.v_res.shape == (4, 142) + assert self.edisgo.results.v_res.empty + + # ###################### test mode lv and copy grid ########################## + # self.setup_edisgo_object() + # self.setup_worst_case_time_series() results = self.edisgo.reinforce(mode="lv", copy_grid=True) assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 6 assert len(results.equipment_changes) == 6 - assert results.v_res.shape == (2, 142) + assert results.v_res.shape == (4, 142) assert self.edisgo.results.v_res.empty # ################# test mode mvlv and combined analysis #################### @@ -427,7 +446,7 @@ def test_reinforce(self): assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 8 assert len(results.equipment_changes) == 8 - assert results.v_res.shape == (4, 41) + assert results.v_res.shape == (4, 142) def test_reinforce_catch_convergence(self): # ###################### test with catch convergence ########################## @@ -443,6 +462,17 @@ def test_reinforce_catch_convergence(self): assert len(results.equipment_changes) == 186 assert results.v_res.shape == (4, 142) + # ############### test with catch convergence worst case false ################ + self.setup_worst_case_time_series() + self.edisgo.timeseries.scale_timeseries( + p_scaling_factor=10, q_scaling_factor=10 + ) + results = self.edisgo.reinforce(catch_convergence_problems=True) + assert results.unresolved_issues.empty + assert len(results.grid_expansion_costs) == 109 + assert len(results.equipment_changes) == 186 + assert results.v_res.shape == (4, 142) + def test_reinforce_one_lv_grid(self): # ###################### test with only one lv grid ########################## self.setup_worst_case_time_series() @@ -454,7 +484,7 @@ def test_reinforce_one_lv_grid(self): assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 6 assert len(results.equipment_changes) == 6 - assert results.v_res.shape == (2, 142) + assert results.v_res.shape == (4, 142) def test_add_component(self, caplog): self.setup_worst_case_time_series() From eb74a31178f53cdbed255472bed8bf89059f72e9 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 18 Mar 2023 12:18:44 +0100 Subject: [PATCH 119/355] Fix default value --- edisgo/edisgo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 709efb81d..7802dea27 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1439,7 +1439,7 @@ def integrate_component_based_on_geolocation( else: max_distance_from_target_bus = kwargs.pop( - "max_distance_from_target_bus", 0.1 + "max_distance_from_target_bus", 0.02 ) comp_name = self.topology.connect_to_lv_based_on_geolocation( self, kwargs, comp_type, max_distance_from_target_bus From ae002033584fa5cde9ea2ffaeab5be4cfe605253 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 18 Mar 2023 12:57:06 +0100 Subject: [PATCH 120/355] Adapt functions to import new generators and add tests --- edisgo/edisgo.py | 87 ++- edisgo/io/generators_import.py | 854 ++++++++++++++++++++++------- tests/io/test_generators_import.py | 184 ++++++- 3 files changed, 858 insertions(+), 267 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 7802dea27..f2aca4dc0 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -19,7 +19,7 @@ operating_strategy as hp_operating_strategy, ) from edisgo.flex_opt.reinforce_grid import reinforce_grid -from edisgo.io import pypsa_io, timeseries_import +from edisgo.io import generators_import, pypsa_io, timeseries_import from edisgo.io.ding0_import import import_ding0_grid from edisgo.io.dsm_import import dsm_from_database from edisgo.io.electromobility_import import ( @@ -28,8 +28,6 @@ import_electromobility_from_oedb, integrate_charging_parks, ) -from edisgo.io.generators_import import generators_from_database -from edisgo.io.generators_import import oedb as import_generators_oedb from edisgo.io.heat_pump_import import oedb as import_heat_pumps_oedb from edisgo.io.storage_import import home_batteries_oedb from edisgo.network import timeseries @@ -804,79 +802,62 @@ def to_graph(self): def import_generators(self, generator_scenario=None, **kwargs): """ - Gets generator park for specified scenario and integrates them into - the grid. + Gets generator park for specified scenario and integrates generators into grid. - Currently, the only supported data source is scenario data generated - in the research project + The generator data is retrieved from the + `open energy platform `_. Decommissioned + generators are removed from the grid, generators with changed capacity + updated and new generators newly integrated into the grid. + + In case you are using new ding0 grids, where the LV is geo-referenced, the + supported data source is scenario data generated in the research project + `eGo^n `_. You can choose between two scenarios: + 'eGon2035' and 'eGon100RE'. For more information on database tables used and + how generator park is adapted see :func:`~.io.generators_import.oedb`. + + In case you are using old ding0 grids, where the LV is not geo-referenced, + the supported data source is scenario data generated in the research project `open_eGo `_. You can choose between two scenarios: 'nep2035' and 'ego100'. You can get more information on the scenarios in the `final report `_. + .pdf>`_. For more information on database tables used and + how generator park is adapted see :func:`~.io.generators_import.oedb_legacy`. - The generator data is retrieved from the - `open energy platform `_ - from tables for - `conventional power plants `_ and - `renewable power plants `_. - - When the generator data is retrieved, the following steps are - conducted: - - * Step 1: Update capacity of existing generators if ` - update_existing` is True, which it is by default. - * Step 2: Remove decommissioned generators if - `remove_decommissioned` is True, which it is by default. - * Step 3: Integrate new MV generators. - * Step 4: Integrate new LV generators. - - For more information on how generators are integrated, see - :attr:`~.network.topology.Topology.connect_to_mv` and - :attr:`~.network.topology.Topology.connect_to_lv`. - - After the generator park is changed there may be grid issues due to the - additional in-feed. These are not solved automatically. If you want to + After the generator park is adapted there may be grid issues due to the + additional feed-in. These are not solved automatically. If you want to have a stable grid without grid issues you can invoke the automatic grid expansion through the function :attr:`~.EDisGo.reinforce`. Parameters ---------- generator_scenario : str - Scenario for which to retrieve generator data. Possible options - are 'nep2035' and 'ego100'. + Scenario for which to retrieve generator data. In case you are using new + ding0 grids, where the LV is geo-referenced, possible options are + 'eGon2035' and 'eGon100RE'. In case you are using old ding0 grids, where + the LV is not geo-referenced, possible options are 'nep2035' and 'ego100'. Other Parameters ---------------- kwargs : - See :func:`edisgo.io.generators_import.oedb`. + In case you are using new ing0 grids, where the LV is geo-referenced, a + database engine needs to be provided through keyword argument `engine`. + In case you are using old ding0 grids, where the LV is not geo-referenced, + you can check :func:`edisgo.io.generators_import.oedb_legacy` for possible + keyword arguments. """ - if generator_scenario in ["nep2035", "ego100"]: - import_generators_oedb( + if self.legacy_grids is True: + generators_import.oedb_legacy( edisgo_object=self, generator_scenario=generator_scenario, **kwargs ) - elif generator_scenario in ["eGon2035", "eGon100RE"]: - engine = kwargs.pop("engine") - - if not isinstance(engine, Engine): - raise ValueError( - "Please provide a valide sqlalchemy engine when loading scenarios " - "'eGon2035' and 'eGon100RE'." - ) - - generators_from_database( - edisgo_object=self, engine=engine, scenario=generator_scenario, **kwargs - ) else: - raise ValueError( - f"Unknown generator scenario {generator_scenario}. The following " - f"scenarios are currently supported: 'nep2035', 'ego100', 'eGon2035' " - f"and 'eGon100RE'." + generators_import.oedb( + edisgo_object=self, + engine=kwargs.get("engine"), + scenario=generator_scenario, ) def analyze( diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index dd5f8bf67..457b1bb37 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -13,14 +13,13 @@ from sqlalchemy import func from sqlalchemy.engine.base import Engine -from edisgo.io.db import ( - get_srid_of_db_table, - session_scope_egon_data, - sql_grid_geom, - sql_within, -) +from edisgo.io.db import get_srid_of_db_table, session_scope_egon_data from edisgo.tools import session_scope -from edisgo.tools.geo import find_nearest_bus, mv_grid_gdf, proj2equidistant +from edisgo.tools.geo import find_nearest_bus, proj2equidistant +from edisgo.tools.tools import ( + determine_bus_voltage_level, + determine_grid_integration_voltage_level, +) if "READTHEDOCS" not in os.environ: import geopandas as gpd @@ -35,16 +34,31 @@ logger = logging.getLogger(__name__) -def oedb(edisgo_object, generator_scenario, **kwargs): +def oedb_legacy(edisgo_object, generator_scenario, **kwargs): """ - Gets generator park for specified scenario from oedb and integrates them - into the grid. + Gets generator park for specified scenario from oedb and integrates generators into + the grid. - The importer uses SQLAlchemy ORM objects. - These are defined in + The importer uses SQLAlchemy ORM objects. These are defined in `ego.io `_. + The data is imported from the tables + `conventional power plants `_ and + `renewable power plants `_. + + When the generator data is retrieved, the following steps are conducted: + + * Step 1: Update capacity of existing generators if `update_existing` is True, + which it is by default. + * Step 2: Remove decommissioned generators if + `remove_decommissioned` is True, which it is by default. + * Step 3: Integrate new MV generators. + * Step 4: Integrate new LV generators. - For further information see also :attr:`~.EDisGo.import_generators`. + For more information on how generators are integrated, see + :attr:`~.network.topology.Topology.connect_to_mv` and + :attr:`~.network.topology.Topology.connect_to_lv`. Parameters ---------- @@ -71,8 +85,8 @@ def oedb(edisgo_object, generator_scenario, **kwargs): technology types (e.g. 'wind' or 'solar') as keys and corresponding target capacities in MW as values. If a target capacity is given that is smaller than the total capacity - of all generators of that type in the future scenario, only some of - the generators in the future scenario generator park are installed, + of all generators of that type in the future scenario, only some + generators in the future scenario generator park are installed, until the target capacity is reached. If the given target capacity is greater than that of all generators of that type in the future scenario, then each generator capacity is @@ -750,254 +764,672 @@ def scale_generators(gen_type, total_capacity): ) -def generators_from_database( +def oedb( edisgo_object: EDisGo, + scenario: str, engine: Engine, - scenario: str = "eGon2035", - remove_existing: bool = True, ): """ - TODO - :return: + Gets generator park for specified scenario from oedb and integrates generators into + the grid. + + The data is imported from the tables supply.egon_chp_plants, + supply.egon_power_plants and supply.egon_power_plants_pv_roof_building. + + For the grid integration it is distinguished between PV rooftop plants and all + other power plants. + For PV rooftop the following steps are conducted: + + * Removes decommissioned PV rooftop plants (plants whose building ID is not + in pv_rooftop_df.building_id). + * Updates existing PV rooftop plants (plants whose building ID is in + pv_rooftop_df.building_id). The following two cases are distinguished: + + * p_nom increases: It is checked, if plant needs to be connected to a higher + voltage level and if that is the case, the existing plant is removed from the + grid and the new one integrated based on the geolocation. + * p_nom decreases: p_nom of existing plant is overwritten. + * Integrates new PV rooftop plants at corresponding building ID. If the plant needs + to be connected to a higher voltage level than the building, it is integrated + based on the geolocation. + + For all other power plants the following steps are conducted: + + * Removes decommissioned power and CHP plants (all plants that do not have a source + ID or whose source ID can not be matched to a new plant and are not of subtype + pv_rooftop, as these are handled in a separate function) + * Updates existing power plants (plants whose source ID is in + power_plants_gdf.source_id; solar, wind and CHP plants never have a source ID in + the future scenarios and are therefore never updated). The following two cases + are distinguished: + + * p_nom increases: It is checked, if plant needs to be connected to a higher + voltage level and if that is the case, the existing plant is removed from the + grid and the new one integrated based on the geolocation. + * p_nom decreases: p_nom of existing plant is overwritten. + * Integrates new power and CHP plants based on the geolocation. + + Parameters + ---------- + edisgo_object : :class:`~.EDisGo` + scenario : str + Scenario for which to retrieve generator data. Possible options + are "eGon2035" and "eGon100RE". + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + """ - data = get_generators_from_database( - edisgo_object=edisgo_object, engine=engine, scenario=scenario + + def _get_egon_power_plants(): + with session_scope_egon_data(engine) as session: + srid_table = get_srid_of_db_table(session, egon_power_plants.geom) + query = ( + session.query( + egon_power_plants.id.label("generator_id"), + egon_power_plants.source_id, + egon_power_plants.carrier.label("type"), + egon_power_plants.el_capacity.label("p_nom"), + egon_power_plants.voltage_level, + egon_power_plants.weather_cell_id, + egon_power_plants.geom, + ) + .filter( + egon_power_plants.scenario == scenario, + egon_power_plants.voltage_level >= 4, + egon_power_plants.bus_id == edisgo_object.topology.id, + ) + .order_by(egon_power_plants.id) + ) + power_plants_gdf = gpd.read_postgis( + sql=query.statement, con=engine, crs=f"EPSG:{srid_table}" + ).to_crs(srid_edisgo) + # rename wind_onshore to wind + power_plants_gdf["type"] = power_plants_gdf["type"].str.replace("_onshore", "") + # set subtype + mapping = { + "wind": "wind_onshore", + "solar": "solar_ground_mounted", + } + power_plants_gdf = power_plants_gdf.assign( + subtype=power_plants_gdf["type"].map(mapping) + ) + # unwrap source ID + power_plants_gdf["source_id"] = power_plants_gdf.apply( + lambda _: ( + list(_["source_id"].values())[0] + if isinstance(_["source_id"], dict) + else None + ), + axis=1, + ) + return power_plants_gdf + + def _get_egon_pv_rooftop(): + # egon_power_plants_pv_roof_building - queried using building IDs instead of + # grid ID because it can happen that buildings lie outside an MV grid but within + # a zensus cell that is assigned to that MV grid and are therefore sometimes + # mapped to the MV grid they lie within and sometimes to the MV grid the zensus + # cell is mapped to + building_ids = edisgo_object.topology.loads_df.building_id.unique() + with session_scope_egon_data(engine) as session: + query = ( + session.query( + egon_power_plants_pv_roof_building.index.label("generator_id"), + egon_power_plants_pv_roof_building.building_id, + egon_power_plants_pv_roof_building.gens_id.label("source_id"), + egon_power_plants_pv_roof_building.capacity.label("p_nom"), + egon_power_plants_pv_roof_building.voltage_level, + egon_power_plants_pv_roof_building.weather_cell_id, + ) + .filter( + egon_power_plants_pv_roof_building.scenario == scenario, + egon_power_plants_pv_roof_building.building_id.in_(building_ids), + egon_power_plants_pv_roof_building.voltage_level >= 4, + ) + .order_by(egon_power_plants_pv_roof_building.index) + ) + pv_roof_df = pd.read_sql(sql=query.statement, con=engine) + # add type and subtype + pv_roof_df = pv_roof_df.assign( + type="solar", + subtype="pv_rooftop", + ) + return pv_roof_df + + def _get_egon_chp_plants(): + with session_scope_egon_data(engine) as session: + srid_table = get_srid_of_db_table(session, egon_chp_plants.geom) + query = ( + session.query( + egon_chp_plants.id.label("generator_id"), + egon_chp_plants.carrier.label("type"), + egon_chp_plants.district_heating_area_id.label( + "district_heating_id" + ), + egon_chp_plants.el_capacity.label("p_nom"), + egon_chp_plants.th_capacity.label("p_nom_th"), + egon_chp_plants.geom, + egon_chp_plants.voltage_level, + ) + .filter( + egon_chp_plants.scenario == scenario, + egon_chp_plants.voltage_level >= 4, + egon_chp_plants.electrical_bus_id == edisgo_object.topology.id, + ) + .order_by(egon_chp_plants.id) + ) + chp_gdf = gpd.read_postgis( + sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid_table}" + ).to_crs(srid_edisgo) + return chp_gdf + + saio.register_schema("supply", engine) + from saio.supply import ( + egon_chp_plants, + egon_power_plants, + egon_power_plants_pv_roof_building, ) - data = preprocess_data(data=data) + # get generator data from database + srid_edisgo = edisgo_object.topology.grid_district["srid"] + pv_rooftop_df = _get_egon_pv_rooftop() + power_plants_gdf = _get_egon_power_plants() + chp_gdf = _get_egon_chp_plants() - if remove_existing: - remove_existing_gens(edisgo_object=edisgo_object) + # determine number of generators and installed capacity in future scenario + # for validation of grid integration + total_p_nom_scenario = ( + pv_rooftop_df.p_nom.sum() + power_plants_gdf.p_nom.sum() + chp_gdf.p_nom.sum() + ) + total_gen_count_scenario = len(pv_rooftop_df) + len(power_plants_gdf) + len(chp_gdf) + + # integrate into grid (including removal of decommissioned plants and update of + # still existing power plants) + _integrate_pv_rooftop(edisgo_object, pv_rooftop_df) + _integrate_power_and_chp_plants(edisgo_object, power_plants_gdf, chp_gdf) + + # check number of generators and installed capacity in grid + gens_in_grid = edisgo_object.topology.generators_df + if not len(gens_in_grid) == total_gen_count_scenario: + raise ValueError( + f"Number of power plants in future scenario is not correct. Should be " + f"{total_gen_count_scenario} instead of {len(gens_in_grid)}." + ) + if not np.isclose(gens_in_grid.p_nom.sum(), total_p_nom_scenario, atol=1e-4): + raise ValueError( + f"Capacity of power plants in future scenario not correct. Should be " + f"{total_p_nom_scenario} instead of " + f"{gens_in_grid.p_nom.sum()}." + ) - add_generators(edisgo_object=edisgo_object, data=data) + return -def remove_existing_gens(edisgo_object: EDisGo) -> None: - # TODO: check if gens already exists in status quo / previous scenario - generators_df = edisgo_object.topology.generators_df.copy() +def _integrate_pv_rooftop(edisgo_object, pv_rooftop_df): + """ + This function updates generator park for PV rooftop plants. + See function :func:`~.io.generators_import.oedb` for more information. - for name in generators_df.index: - edisgo_object.remove_component(comp_type="generator", comp_name=name) + Parameters + ---------- + edisgo_object : :class:`~.EDisGo` + pv_rooftop_df : :pandas:`pandas.DataFrame` + Dataframe containing data on PV rooftop plants per building. + Columns are: + * p_nom : float + Nominal power in MW. + * building_id : int + Building ID of the building the PV plant is allocated. + * generator_id : int + ID of the PV plant from database. + * type : str + Generator type, which here is always "solar". + * subtype + Further specification of generator type, which here is always + "pv_rooftop". + * weather_cell_id : int + Weather cell the PV plant is in used to obtain the potential feed-in + time series. + * voltage_level : int + Voltage level the PV plant is connected to. + * source_id : int + MaStR ID of the PV plant. -def add_generators(edisgo_object: EDisGo, data: dict[str, gpd.GeoDataFrame]) -> None: - cols_to_iterate = [ - "id", - "type", - "p_nom", - "voltage_level", - "geom", - "subtype", - "weather_cell_id", - "building_id", + """ + # ToDo PV rooftop plants should be matched using the source ID instead of building + # ID + # match building ID to existing solar generators + loads_df = edisgo_object.topology.loads_df + busses_building_id = ( + loads_df[loads_df.type == "conventional_load"] + .drop_duplicates(subset=["building_id"]) + .set_index("bus") + .loc[:, ["building_id"]] + ) + gens_df = edisgo_object.topology.generators_df[ + edisgo_object.topology.generators_df.subtype == "pv_rooftop" + ].copy() + gens_df_building_id = gens_df.loc[:, ["bus"]].join( + busses_building_id, how="left", on="bus" + ) + # using update to make sure to not overwrite existing building ID information + if "building_id" not in gens_df.columns: + gens_df["building_id"] = None + gens_df.update(gens_df_building_id, overwrite=False) + + # remove decommissioned PV rooftop plants + gens_decommissioned = gens_df[ + ~gens_df.building_id.isin(pv_rooftop_df.building_id.unique()) ] - # TODO: integration of LV generators needs to be changed to previously determine the - # closest MV-LV station - # TODO: change to add pv rooftop to specific buildings as soon as building id is - # given - - for gdf in data.values(): - for ( - index, - gen_type, - p_nom, - voltage_level, - geom, - subtype, - weather_cell_id, - building_id, - ) in gdf[cols_to_iterate].itertuples(index=False): - index = f"egon_{subtype}_{index}" + for gen in gens_decommissioned.index: + edisgo_object.remove_component(comp_type="generator", comp_name=gen) + # update existing PV rooftop plants + gens_existing = gens_df[ + gens_df.building_id.isin(pv_rooftop_df.building_id.unique()) + ] + # merge new information + gens_existing.index.name = "gen_name" + pv_rooftop_df.index.name = "gen_index_new" + gens_existing = pd.merge( + gens_existing.reset_index(), + pv_rooftop_df.reset_index(), + how="left", + on="building_id", + suffixes=("_old", ""), + ).set_index("gen_name") + # add building id + edisgo_object.topology.generators_df.loc[ + gens_existing.index, "building_id" + ] = gens_existing.building_id + # update plants where capacity decreased + gens_decreased_cap = gens_existing.query("p_nom < p_nom_old") + if len(gens_decreased_cap) > 0: + edisgo_object.topology.generators_df.loc[ + gens_decreased_cap.index, "p_nom" + ] = gens_decreased_cap.p_nom + # update plants where capacity increased + gens_increased_cap = gens_existing.query("p_nom > p_nom_old") + for gen in gens_increased_cap.index: + voltage_level_new = determine_grid_integration_voltage_level( + edisgo_object, gens_increased_cap.at[gen, "p_nom"] + ) + voltage_level_old = determine_bus_voltage_level( + edisgo_object, gens_increased_cap.at[gen, "bus"] + ) + if voltage_level_new >= voltage_level_old: + # simply update p_nom if plant doesn't need to be connected to higher + # voltage level + edisgo_object.topology.generators_df.at[ + gen, "p_nom" + ] = gens_increased_cap.at[gen, "p_nom"] + else: + # if plant needs to be connected to higher voltage level, remove existing + # plant and integrate new component based on geolocation + bus = gens_increased_cap.at[gen, "bus"] + x_coord = edisgo_object.topology.buses_df.at[bus, "x"] + y_coord = edisgo_object.topology.buses_df.at[bus, "y"] + edisgo_object.remove_component(comp_type="generator", comp_name=gen) edisgo_object.integrate_component_based_on_geolocation( comp_type="generator", - generator_id=index, - geolocation=geom, - voltage_level=voltage_level, + voltage_level=voltage_level_new, + geolocation=( + x_coord, + y_coord, + ), add_ts=False, - p_nom=p_nom, - generator_type=gen_type, - subtype=subtype, - weather_cell_id=weather_cell_id, - building_id=building_id, + generator_id=gens_increased_cap.at[gen, "generator_id"], + p_nom=gens_increased_cap.at[gen, "p_nom"], + building_id=gens_increased_cap.at[gen, "building_id"], + generator_type=gens_increased_cap.at[gen, "type"], + subtype=gens_increased_cap.at[gen, "subtype"], + weather_cell_id=gens_increased_cap.at[gen, "weather_cell_id"], ) + # integrate new PV rooftop plants into grid + new_pv_rooftop_plants = pv_rooftop_df[ + ~pv_rooftop_df.index.isin(gens_existing.gen_index_new) + ] + if len(new_pv_rooftop_plants) > 0: + _integrate_new_pv_rooftop_to_buildings(edisgo_object, new_pv_rooftop_plants) -def preprocess_data(data: dict[str, gpd.GeoDataFrame]) -> dict[str, gpd.GeoDataFrame]: - # 1. firm - rename = { - "el_capacity": "p_nom", - "carrier": "type", - } - - data["firm_gdf"] = ( - data["firm_gdf"] - .assign( - subtype=data["firm_gdf"]["carrier"], - weather_cell_id=np.nan, - building_id=np.nan, + # check number of PV rooftop plants in grid + pv_rooftop_gens_in_grid = edisgo_object.topology.generators_df[ + edisgo_object.topology.generators_df.subtype == "pv_rooftop" + ] + if not len(pv_rooftop_gens_in_grid) == len(pv_rooftop_df): + raise ValueError( + f"Number of PV rooftop plants in future scenario is not correct. Should be " + f"{len(pv_rooftop_df)} instead of {len(pv_rooftop_gens_in_grid)}." ) - .rename(columns=rename, errors="raise") + if not np.isclose( + pv_rooftop_gens_in_grid.p_nom.sum(), pv_rooftop_df.p_nom.sum(), atol=1e-4 + ): + raise ValueError( + f"Capacity of PV rooftop plants in future scenario is not correct. Should " + f"be {pv_rooftop_df.p_nom.sum()} instead of " + f"{pv_rooftop_gens_in_grid.p_nom.sum()}." + ) + + # logging message + logger.debug( + f"{pv_rooftop_gens_in_grid.p_nom.sum():.2f} MW of PV rooftop plants integrated." + f"Of this, {gens_existing.p_nom.sum():.2f} MW could be matched to " + f"an existing PV rooftop plant." ) - # 2. fluc - mapping = {"wind_onshore": "wind", "solar": "solar"} - data["fluc_gdf"] = ( - data["fluc_gdf"] - .assign(carrier=data["fluc_gdf"].carrier.map(mapping), building_id=np.nan) - .rename(columns=rename, errors="raise") - ) +def _integrate_new_pv_rooftop_to_buildings(edisgo_object, pv_rooftop_df): + """ + Integrates new PV rooftop plants based on corresponding building ID. - mapping = { - "wind": "wind_onshore", - "solar": "solar_ground_mounted", - } + Parameters + ---------- + edisgo_object : :class:`~.EDisGo` + pv_rooftop_df : :pandas:`pandas.DataFrame` + See :attr:`~.io.generators_import._integrate_pv_rooftop` for more information. - data["fluc_gdf"] = data["fluc_gdf"].assign( - subtype=data["fluc_gdf"]["type"].map(mapping) + Returns + ------- + list(str) + List with names (as in index of + :attr:`~.network.topology.Topology.generators_df`) of integrated PV rooftop + plants. + + """ + # join busses corresponding to building ID + loads_df = edisgo_object.topology.loads_df + building_id_busses = ( + loads_df[loads_df.type == "conventional_load"] + .drop_duplicates(subset=["building_id"]) + .set_index("building_id") + .loc[:, ["bus"]] ) + pv_rooftop_df = pv_rooftop_df.join(building_id_busses, how="left", on="building_id") - # 3. chp - data["chp_gdf"] = ( - data["chp_gdf"] - .assign( - subtype=data["chp_gdf"].carrier, weather_cell_id=np.nan, building_id=np.nan - ) - .rename(columns=rename, errors="raise") + # add further information needed in generators_df + pv_rooftop_df["control"] = "PQ" + # add generator name as index + pv_rooftop_df["index"] = pv_rooftop_df.apply( + lambda _: f"Generator_pv_rooftop_{_.building_id}", axis=1 + ) + pv_rooftop_df.set_index("index", drop=True, inplace=True) + + # check for duplicated generator names and choose random name for duplicates + tmp = pv_rooftop_df.index.append(edisgo_object.topology.storage_units_df.index) + duplicated_indices = tmp[tmp.duplicated()] + for duplicate in duplicated_indices: + # find unique name + random.seed(a=duplicate) + new_name = duplicate + while new_name in tmp: + new_name = f"{duplicate}_{random.randint(10 ** 1, 10 ** 2)}" + # change name in batteries_df + pv_rooftop_df.rename(index={duplicate: new_name}, inplace=True) + + # filter PV plants that are too large to be integrated into LV + pv_rooftop_large = pv_rooftop_df[pv_rooftop_df.voltage_level < 7] + pv_rooftop_small = pv_rooftop_df[pv_rooftop_df.voltage_level == 7] + + # integrate small batteries at buildings + cols = [ + "bus", + "control", + "p_nom", + "weather_cell_id", + "building_id", + "type", + "subtype", + "source_id", + ] + edisgo_object.topology.generators_df = pd.concat( + [edisgo_object.topology.generators_df, pv_rooftop_small.loc[:, cols]] ) + integrated_plants = pv_rooftop_small.index + + # integrate larger PV rooftop plants - if load is already connected to + # higher voltage level it can be integrated at same bus, otherwise it is + # integrated based on geolocation + integrated_plants_own_grid_conn = pd.Index([]) + for pv_pp in pv_rooftop_large.index: + # check if building is already connected to a voltage level equal to or + # higher than the voltage level the PV plant should be connected to + bus = pv_rooftop_large.at[pv_pp, "bus"] + voltage_level_bus = determine_bus_voltage_level(edisgo_object, bus) + voltage_level_pv = pv_rooftop_large.at[pv_pp, "voltage_level"] + + if voltage_level_pv >= voltage_level_bus: + # integrate at same bus as load + edisgo_object.topology.generators_df = pd.concat( + [ + edisgo_object.topology.generators_df, + pv_rooftop_large.loc[[pv_pp], cols], + ] + ) + integrated_plants = integrated_plants.append(pd.Index([pv_pp])) + else: + # integrate based on geolocation + pv_pp_name = edisgo_object.integrate_component_based_on_geolocation( + comp_type="generator", + voltage_level=voltage_level_pv, + geolocation=( + edisgo_object.topology.buses_df.at[bus, "x"], + edisgo_object.topology.buses_df.at[bus, "y"], + ), + add_ts=False, + generator_id=pv_rooftop_large.at[pv_pp, "generator_id"], + p_nom=pv_rooftop_large.at[pv_pp, "p_nom"], + building_id=pv_rooftop_large.at[pv_pp, "building_id"], + generator_type=pv_rooftop_large.at[pv_pp, "type"], + subtype=pv_rooftop_large.at[pv_pp, "subtype"], + weather_cell_id=pv_rooftop_large.at[pv_pp, "weather_cell_id"], + source_id=pv_rooftop_large.at[pv_pp, "source_id"], + ) + integrated_plants = integrated_plants.append(pd.Index([pv_pp_name])) + integrated_plants_own_grid_conn = integrated_plants_own_grid_conn.append( + pd.Index([pv_pp]) + ) - # 4. pv rooftop - rename = {"capacity": "p_nom", "index": "id"} + # check if all PV plants were integrated + if not len(pv_rooftop_df) == len(integrated_plants): + raise ValueError("Not all PV rooftop plants could be integrated into the grid.") - data["pv_roof_gdf"] = ( - data["pv_roof_gdf"] - .assign( - type="solar", - subtype="solar_roof_mounted", + # logging messages + logger.debug(f"{sum(pv_rooftop_df.p_nom):.2f} MW of PV roof-top plants integrated.") + if len(integrated_plants_own_grid_conn) > 0: + logger.debug( + f"Of this, " + f"{sum(pv_rooftop_df.loc[integrated_plants_own_grid_conn, 'p_nom']):.2f} " + f"MW of PV roof-top capacity was integrated at a new bus." ) - .rename(columns=rename, errors="raise") - ) - return data + return integrated_plants -def get_generators_from_database( - edisgo_object: EDisGo, engine: Engine, scenario: str = "eGon2035" -) -> dict[str, gpd.GeoDataFrame]: - saio.register_schema("supply", engine) - saio.register_schema("openstreetmap", engine) - - from saio.openstreetmap import osm_buildings_filtered - from saio.supply import ( - egon_chp_plants, - egon_power_plants, - egon_power_plants_pv_roof_building, - ) +def _integrate_power_and_chp_plants(edisgo_object, power_plants_gdf, chp_gdf): + """ + This function updates generator park for all power plants except PV rooftop. + See function :func:`~.io.generators_import.oedb` for more information. - fluctuating = ["wind_onshore", "solar"] - firm = ["others", "gas", "oil", "biomass", "run_of_river", "reservoir"] + Parameters + ---------- + edisgo_object : :class:`~.EDisGo` + power_plants_gdf : :geopandas:`geopandas.GeoDataFrame` + Dataframe containing data on power plants. + Columns are: - sql_geom = sql_grid_geom(edisgo_object) - crs = mv_grid_gdf(edisgo_object).crs + * p_nom : float + Nominal power in MW. + * generator_id : int + ID of the power plant from database. + * type : str + Generator type, e.g. "wind". + * subtype + Further specification of generator type, e.g. "wind_onshore". + * weather_cell_id : int + Weather cell the power plant is in used to obtain the potential feed-in + time series. Only given for solar and wind generators. + * voltage_level : int + Voltage level the power plant is connected to. + * source_id : int + MaStR ID of the power plant. + * geom : geometry + Geolocation of power plant. + chp_gdf : :geopandas:`geopandas.GeoDataFrame` + Dataframe containing data on CHP plants. + Columns are: - data = dict() + * p_nom : float + Nominal power in MW. + * p_nom_th : float + Thermal nominal power in MW. + * generator_id : int + ID of the CHP plant from database. + * type : str + Generator type, e.g. "gas". + * district_heating_id : int + ID of district heating network the CHP plant is in. + * voltage_level : int + Voltage level the PV plant is connected to. + * geom : geometry + Geolocation of power plant. - # 1. firm egon_power_plants - with session_scope_egon_data(engine) as session: - srid = get_srid_of_db_table(session, egon_power_plants.geom) + """ - query = ( - session.query(egon_power_plants) - .filter( - egon_power_plants.scenario == scenario, - egon_power_plants.carrier.in_(firm), - egon_power_plants.voltage_level >= 4, - sql_within(egon_power_plants.geom, sql_geom, srid), - ) - .order_by(egon_power_plants.id) + def _integrate_new_chp_plant(edisgo_object, comp_data): + edisgo_object.integrate_component_based_on_geolocation( + comp_type="generator", + generator_id=comp_data.at["generator_id"], + geolocation=comp_data.at["geom"], + voltage_level=comp_data.at["voltage_level"], + add_ts=False, + p_nom=comp_data.at["p_nom"], + p_nom_th=comp_data.at["p_nom_th"], + generator_type=comp_data.at["type"], + district_heating_id=comp_data.at["district_heating_id"], ) - data["firm_gdf"] = gpd.read_postgis( - sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(crs) - - # 2. fluctuating egon_power_plants - with session_scope_egon_data(engine) as session: - srid = get_srid_of_db_table(session, egon_power_plants.geom) - - query = ( - session.query(egon_power_plants) - .filter( - egon_power_plants.scenario == scenario, - egon_power_plants.carrier.in_(fluctuating), - egon_power_plants.voltage_level >= 4, - sql_within(egon_power_plants.geom, sql_geom, srid), - ) - .order_by(egon_power_plants.id) + def _integrate_new_power_plant(edisgo_object, comp_data): + edisgo_object.integrate_component_based_on_geolocation( + comp_type="generator", + generator_id=comp_data.at["generator_id"], + geolocation=comp_data.at["geom"], + voltage_level=comp_data.at["voltage_level"], + add_ts=False, + p_nom=comp_data.at["p_nom"], + generator_type=comp_data.at["type"], + subtype=comp_data.at["subtype"], + weather_cell_id=comp_data.at["weather_cell_id"], + source_id=comp_data.at["source_id"], ) - data["fluc_gdf"] = gpd.read_postgis( - sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(crs) - - # 3. pv rooftop egon_power_plants_pv_roof_building - with session_scope_egon_data(engine) as session: - srid = get_srid_of_db_table(session, osm_buildings_filtered.geom_point) + # determine number of generators and installed capacity in future scenario + # for validation of grid integration + total_p_nom_scenario = power_plants_gdf.p_nom.sum() + chp_gdf.p_nom.sum() + total_gen_count_scenario = len(power_plants_gdf) + len(chp_gdf) + + # remove all power plants that are not PV rooftop and do not have a source ID + gens_df = edisgo_object.topology.generators_df[ + edisgo_object.topology.generators_df.subtype != "pv_rooftop" + ].copy() + if "source_id" not in gens_df.columns: + gens_df["source_id"] = None + gens_decommissioned = gens_df[gens_df.source_id.isna()] + for gen in gens_decommissioned.index: + edisgo_object.remove_component(comp_type="generator", comp_name=gen) + + # try matching power plants with source ID, to update power plants that exist in + # status quo and future scenario + existing_gens_with_source = gens_df[~gens_df.source_id.isna()] + if len(existing_gens_with_source) > 0: + + # join dataframes at source ID + existing_gens_with_source.index.name = "gen_name" + power_plants_gdf.index.name = "gen_index_new" + existing_gens_with_source_matched = pd.merge( + existing_gens_with_source.reset_index(), + power_plants_gdf.reset_index(), + how="inner", + on="source_id", + suffixes=("_old", ""), + ).set_index("gen_name") + + # remove existing gens where source ID could not be matched + existing_gens_without_source_matched = [ + _ + for _ in existing_gens_with_source.index + if _ not in existing_gens_with_source_matched.index + ] + for gen in existing_gens_without_source_matched: + edisgo_object.remove_component(comp_type="generator", comp_name=gen) - query = session.query( - func.ST_Transform( - osm_buildings_filtered.geom_point, - srid, - ).label("geom"), - osm_buildings_filtered.id, - ).filter( - sql_within(osm_buildings_filtered.geom_point, sql_geom, srid), + # where source ID could be matched, check if capacity increased or decreased + # update plants where capacity decreased + gens_decreased_cap = existing_gens_with_source_matched.query( + "p_nom < p_nom_old" ) - - buildings_gdf = gpd.read_postgis( - sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(crs) - - building_ids = buildings_gdf.id - - with session_scope_egon_data(engine) as session: - query = ( - session.query(egon_power_plants_pv_roof_building) - .filter( - egon_power_plants_pv_roof_building.scenario == scenario, - egon_power_plants_pv_roof_building.building_id.in_(building_ids), - egon_power_plants_pv_roof_building.voltage_level >= 4, + if len(gens_decreased_cap) > 0: + edisgo_object.topology.generators_df.loc[ + gens_decreased_cap.index, "p_nom" + ] = gens_decreased_cap.p_nom + # update plants where capacity increased + gens_increased_cap = existing_gens_with_source_matched.query( + "p_nom > p_nom_old" + ) + for gen in gens_increased_cap.index: + voltage_level_new = determine_grid_integration_voltage_level( + edisgo_object, gens_increased_cap.at[gen, "p_nom"] ) - .order_by(egon_power_plants_pv_roof_building.index) + voltage_level_old = determine_bus_voltage_level( + edisgo_object, gens_increased_cap.at[gen, "bus"] + ) + if voltage_level_new >= voltage_level_old: + # simply update p_nom if plant doesn't need to be connected to higher + # voltage level + edisgo_object.topology.generators_df.at[ + gen, "p_nom" + ] = gens_increased_cap.at[gen, "p_nom"] + else: + # if plant needs to be connected to higher voltage level, remove + # existing plant and integrate new component based on geolocation + edisgo_object.remove_component(comp_type="generator", comp_name=gen) + _integrate_new_power_plant(edisgo_object, gens_increased_cap.loc[gen]) + else: + existing_gens_with_source_matched = pd.DataFrame( + columns=["gen_index_new", "p_nom"] ) - pv_roof_df = pd.read_sql(sql=query.statement, con=query.session.bind) - - data["pv_roof_gdf"] = gpd.GeoDataFrame( - pv_roof_df.merge( - buildings_gdf, how="left", left_on="building_id", right_on="id" - ).drop(columns=["id"]), - geometry="geom", - crs=buildings_gdf.crs, - ) + # gens where source ID could not be matched are all new + new_power_plants = power_plants_gdf[ + ~power_plants_gdf.index.isin(existing_gens_with_source_matched.gen_index_new) + ] + for gen in new_power_plants.index: + _integrate_new_power_plant(edisgo_object, new_power_plants.loc[gen]) - # 4. chp plants egon_chp_plants - with session_scope_egon_data(engine) as session: - srid = get_srid_of_db_table(session, egon_chp_plants.geom) + # add all CHP plants based on geolocation + for gen in chp_gdf.index: + _integrate_new_chp_plant(edisgo_object, chp_gdf.loc[gen]) - query = ( - session.query(egon_chp_plants) - .filter( - egon_chp_plants.scenario == scenario, - egon_chp_plants.voltage_level >= 4, - sql_within(egon_chp_plants.geom, sql_geom, srid), - ) - .order_by(egon_chp_plants.id) + # check number of power and CHP plants in grid as well as installed capacity + gens_in_grid = edisgo_object.topology.generators_df[ + edisgo_object.topology.generators_df.subtype != "pv_rooftop" + ] + if not len(gens_in_grid) == total_gen_count_scenario: + raise ValueError( + f"Number of power plants in future scenario is not correct. Should be " + f"{total_gen_count_scenario} instead of {len(gens_in_grid)}." + ) + if not np.isclose(gens_in_grid.p_nom.sum(), total_p_nom_scenario, atol=1e-4): + raise ValueError( + f"Capacity of power plants in future scenario not correct. Should be " + f"{total_p_nom_scenario} instead of " + f"{gens_in_grid.p_nom.sum()}." ) - data["chp_gdf"] = gpd.read_postgis( - sql=query.statement, con=query.session.bind, crs=f"EPSG:{srid}" - ).to_crs(crs) - - return data + # logging messages + cap_matched = existing_gens_with_source_matched.p_nom.sum() + logger.debug( + f"{total_p_nom_scenario:.2f} MW of power and CHP plants integrated. Of this, " + f"{cap_matched:.2f} MW could be matched to existing power plants." + ) diff --git a/tests/io/test_generators_import.py b/tests/io/test_generators_import.py index d49e27bcd..c10d6ca9f 100644 --- a/tests/io/test_generators_import.py +++ b/tests/io/test_generators_import.py @@ -1,3 +1,5 @@ +import logging + import numpy as np import pandas as pd import pytest @@ -243,6 +245,174 @@ def test_update_grids_target_capacity(self): self.edisgo.topology.generators_df.at["Generator_1", "p_nom"] == 0.775 + 1.5 ) + def test__integrate_new_pv_rooftop_to_buildings(self, caplog): + pv_df = pd.DataFrame( + data={ + "p_nom": [0.005, 0.15, 2.0], + "weather_cell_id": [11051, 11051, 11052], + "building_id": [446651, 445710, 446933], + "generator_id": [1, 2, 3], + "type": ["solar", "solar", "solar"], + "subtype": ["pv_rooftop", "pv_rooftop", "pv_rooftop"], + "voltage_level": [7, 6, 5], + "source_id": [None, None, None], + }, + index=[1, 2, 3], + ) + + edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + # manipulate grid so that building 445710 is connected to MV/LV station + edisgo.topology.loads_df.at[ + "Load_mvgd_33532_lvgd_1163850014_103_residential", "bus" + ] = "BusBar_mvgd_33532_lvgd_1163850014_LV" + num_gens_before = len(edisgo.topology.generators_df) + with caplog.at_level(logging.DEBUG): + integrated_pv = generators_import._integrate_new_pv_rooftop_to_buildings( + edisgo, pv_df + ) + + assert num_gens_before + 3 == len(edisgo.topology.generators_df) + gens_df = edisgo.topology.generators_df.loc[integrated_pv, :] + assert len(gens_df) == 3 + # check that smallest PV plant is connected to LV + bus_gen_voltage_level_7 = gens_df[gens_df.p_nom == 0.005].bus[0] + assert edisgo.topology.buses_df.at[bus_gen_voltage_level_7, "v_nom"] == 0.4 + # check that medium PV plant is connected same bus as building + bus_gen_voltage_level_6 = gens_df[gens_df.p_nom == 0.15].bus[0] + assert bus_gen_voltage_level_6 == "BusBar_mvgd_33532_lvgd_1163850014_LV" + # check that largest heat pump is connected to MV + bus_gen_voltage_level_5 = gens_df[gens_df.p_nom == 2.0].bus[0] + assert edisgo.topology.buses_df.at[bus_gen_voltage_level_5, "v_nom"] == 20.0 + + assert "2.15 MW of PV roof-top plants integrated." in caplog.text + assert ( + "Of this, 2.00 MW of PV roof-top capacity was integrated at a new bus." + in caplog.text + ) + + def test__integrate_power_and_chp_plants(self, caplog): + # set up test data + edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + # set up dataframe with: + # * one gen where capacity will increase but voltage level stays the same + # ("SEE95") + # * one gen where capacity will increase and voltage level changes ("SEE96") + # * one where capacity will decrease ("SEE97") + # * one where capacity stayed the same ("SEE98") + # * one with source ID that does not exist in future scenario ("SEE99") + random_bus = "BusBar_mvgd_33532_lvgd_1151750000_MV" + random_lv_bus = "BranchTee_mvgd_33532_lvgd_1151770000_1" + x = edisgo.topology.buses_df.at[random_bus, "x"] + y = edisgo.topology.buses_df.at[random_bus, "y"] + geom = Point((x, y)) + gen_df = pd.DataFrame( + data={ + "bus": [random_bus, random_lv_bus, random_bus, random_bus, random_bus], + "p_nom": [1.9, 0.15, 2.0, 3.0, 1.3], + "type": ["biomass", "biomass", "biomass", "biomass", "biomass"], + "source_id": ["SEE95", "SEE96", "SEE97", "SEE98", "SEE99"], + }, + index=[ + "dummy_gen_1", + "dummy_gen_2", + "dummy_gen_3", + "dummy_gen_4", + "dummy_gen_5", + ], + ) + edisgo.topology.generators_df = pd.concat( + [edisgo.topology.generators_df, gen_df] + ) + # set up dataframes with future generators: + # * one without source ID + # * one with source ID that does not exist in future scenario ("SEE94") + # * one gen where capacity increases but voltage level stays the same ("SEE95") + # * one gen where capacity increases and voltage level changes ("SEE96") + # * one where capacity decreases ("SEE97") + # * one where capacity stayed the same ("SEE98") + new_pp_gdf = pd.DataFrame( + data={ + "generator_id": [2853, 2854, 2855, 2856, 2857, 2858], + "source_id": [None, "SEE94", "SEE95", "SEE96", "SEE97", "SEE98"], + "type": [ + "biomass", + "biomass", + "biomass", + "biomass", + "biomass", + "biomass", + ], + "subtype": [None, None, None, None, None, None], + "p_nom": [0.005, 0.15, 2.0, 1.0, 0.05, 3.0], + "voltage_level": [7, 6, 5, 5, 7, 5], + "weather_cell_id": [None, None, None, None, None, None], + "geom": [geom, geom, None, geom, None, None], + }, + index=[0, 1, 2, 3, 4, 5], + ) + new_chp_gdf = pd.DataFrame( + data={ + "generator_id": [9363], + "type": ["biomass"], + "district_heating_id": [None], + "p_nom": [0.66], + "p_nom_th": [4.66], + "voltage_level": [5], + "geom": [geom], + }, + index=[0], + ) + + gens_before = edisgo.topology.generators_df.copy() + with caplog.at_level(logging.DEBUG): + generators_import._integrate_power_and_chp_plants( + edisgo, new_pp_gdf, new_chp_gdf + ) + + gens_df = edisgo.topology.generators_df[ + edisgo.topology.generators_df.subtype != "pv_rooftop" + ].copy() + + # check new gen without source id + gen_name = gens_df[gens_df.p_nom == 0.005].index[0] + assert gen_name not in gens_before.index + bus_gen = gens_df.at[gen_name, "bus"] + assert edisgo.topology.buses_df.at[bus_gen, "v_nom"] == 0.4 + # check gen with source ID that does not exist in future scenario ("SEE94") + gen_name = gens_df[gens_df.source_id == "SEE94"].index[0] + assert gen_name not in gens_before.index + assert gens_df.at[gen_name, "p_nom"] == 0.15 + # check gen where capacity increases but voltage level stays the same ("SEE95") + gen_name = gens_df[gens_df.source_id == "SEE95"].index[0] + assert gen_name in gens_before.index + assert gens_df.at[gen_name, "p_nom"] == 2.0 + # check gen where capacity increases and voltage level changes ("SEE96") + gen_name = gens_df[gens_df.source_id == "SEE96"].index[0] + assert gen_name not in gens_before.index + bus_gen = gens_df.at[gen_name, "bus"] + assert edisgo.topology.buses_df.at[bus_gen, "v_nom"] == 20.0 + # check gen where capacity decreases ("SEE97") + gen_name = gens_df[gens_df.source_id == "SEE97"].index[0] + assert gen_name in gens_before.index + assert gens_df.at[gen_name, "p_nom"] == 0.05 + # check gen where capacity stayed the same ("SEE98") + gen_name = gens_df[gens_df.source_id == "SEE98"].index[0] + assert gen_name in gens_before.index + assert gens_df.at[gen_name, "bus"] == random_bus + # check CHP + gen_name = gens_df[gens_df.p_nom_th == 4.66].index[0] + assert gen_name not in gens_before.index + assert gens_df.at[gen_name, "p_nom"] == 0.66 + # check logging + assert ( + "6.87 MW of power and CHP plants integrated. Of this, 6.05 MW could be " + "matched to existing power plants." in caplog.text + ) + class TestGeneratorsImportOEDB: """ @@ -252,7 +422,7 @@ class TestGeneratorsImportOEDB: """ @pytest.mark.slow - def test_oedb_without_timeseries(self): + def test_oedb_legacy_without_timeseries(self): edisgo = EDisGo( ding0_grid=pytest.ding0_test_network_2_path, @@ -266,7 +436,7 @@ def test_oedb_without_timeseries(self): assert np.isclose(edisgo.topology.generators_df.p_nom.sum(), 20.18783) @pytest.mark.slow - def test_oedb_with_worst_case_timeseries(self): + def test_oedb_legacy_with_worst_case_timeseries(self): edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_2_path) edisgo.set_time_series_worst_case_analysis() @@ -338,7 +508,7 @@ def test_oedb_with_worst_case_timeseries(self): # :, new_solar_gen.name] / new_solar_gen.p_nom).all() @pytest.mark.slow - def test_oedb_with_timeseries_by_technology(self): + def test_oedb_legacy_with_timeseries_by_technology(self): timeindex = pd.date_range("1/1/2012", periods=3, freq="H") ts_gen_dispatchable = pd.DataFrame( @@ -477,3 +647,11 @@ def test_target_capacity(self): ].p_nom.sum(), p_biomass_before * 1.0, ) + + @pytest.mark.local + def test_oedb(self): + edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + edisgo.import_generators(generator_scenario="eGon2035", engine=pytest.engine) + assert len(edisgo.topology.generators_df) == 670 From 49fdc4760edaceafa6df879d99a33f394f50e7f9 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 18 Mar 2023 12:57:40 +0100 Subject: [PATCH 121/355] Remove links in first line of docstring to fix sphinx API doc --- edisgo/network/electromobility.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/edisgo/network/electromobility.py b/edisgo/network/electromobility.py index 211608fd3..d44ee6cdf 100644 --- a/edisgo/network/electromobility.py +++ b/edisgo/network/electromobility.py @@ -80,8 +80,7 @@ def __init__(self, **kwargs): @property def charging_processes_df(self): """ - DataFrame with all `SimBEV `_ - charging processes. + DataFrame with all charging processes. Returns ------- @@ -143,8 +142,7 @@ def charging_processes_df(self, df): @property def potential_charging_parks_gdf(self): """ - GeoDataFrame with all `TracBEV `_ - potential charging parks. + GeoDataFrame with all potential charging parks. Returns ------- @@ -192,7 +190,7 @@ def potential_charging_parks(self): @property def simbev_config_df(self): """ - Dict with all `SimBEV `_ config data. + Dictionary containing configuration data. Returns ------- From 466b50a2d0e938969623263f876c8c4d01e18e42 Mon Sep 17 00:00:00 2001 From: birgits Date: Sat, 18 Mar 2023 12:57:52 +0100 Subject: [PATCH 122/355] Minor doc change --- edisgo/network/topology.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index ea71e1c6f..e4b4258f6 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -316,7 +316,7 @@ def generators_df(self): subtype : str Further specification of type, e.g. 'solar_roof_mounted'. - Currently not required for any functionality. + Currently, not required for any functionality. Returns -------- From e44aa7a1de08646261243047e5db9d78ece4a99d Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 19 Mar 2023 14:44:07 +0100 Subject: [PATCH 123/355] Add test with previously integrated new PV rooftop plants to assert that storage units are connected at PV rooftop plants --- tests/io/test_storage_import.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/tests/io/test_storage_import.py b/tests/io/test_storage_import.py index 569314fee..b56dc245c 100644 --- a/tests/io/test_storage_import.py +++ b/tests/io/test_storage_import.py @@ -28,6 +28,7 @@ def setup_home_batteries_data(self): @pytest.mark.local def test_oedb(self, caplog): + # test without new PV rooftop plants with caplog.at_level(logging.DEBUG): integrated_storages = storage_import.home_batteries_oedb( self.edisgo, scenario="eGon2035", engine=pytest.engine @@ -41,6 +42,25 @@ def test_oedb(self, caplog): "Of this 2.01 MW do not have a generator with the same building ID." in caplog.text ) + caplog.clear() + + # test with new PV rooftop plants + self.edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + self.edisgo.import_generators( + generator_scenario="eGon2035", engine=pytest.engine + ) + with caplog.at_level(logging.DEBUG): + integrated_storages = storage_import.home_batteries_oedb( + self.edisgo, scenario="eGon2035", engine=pytest.engine + ) + storage_df = self.edisgo.topology.storage_units_df + assert len(integrated_storages) == 659 + assert len(storage_df) == 659 + assert np.isclose(storage_df.p_nom.sum(), 2.0144, atol=1e-3) + assert "2.01 MW of home batteries integrated." in caplog.text + assert "do not have a generator with the same building ID." not in caplog.text def test__grid_integration(self, caplog): From 134f8b7b24bdc2ed83127a78be19250c58f13d65 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 1 Dec 2022 13:36:13 +0100 Subject: [PATCH 124/355] Initial commit of spatial_complexity_reduction.py Adds: - Different spatial complexity reduction methods --- edisgo/tools/spatial_complexity_reduction.py | 2176 ++++++++++++++++++ 1 file changed, 2176 insertions(+) create mode 100644 edisgo/tools/spatial_complexity_reduction.py diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py new file mode 100644 index 000000000..c79de1139 --- /dev/null +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -0,0 +1,2176 @@ +import copy +import logging +import math +import os + +from time import time + +import networkx as nx +import numpy as np +import pandas as pd + +from pyproj import Transformer +from sklearn.cluster import KMeans +from sklearn.metrics import mean_squared_error + +from edisgo.flex_opt import check_tech_constraints as checks +from edisgo.network import timeseries + + +# Preprocessing +def remove_one_meter_lines(edisgo_root): + def apply_busmap_on_buses_df(series): + if series.name in busmap: + series.loc["new_bus"] = busmap[series.name] + else: + series.loc["new_bus"] = series.name + + return series + + def apply_busmap_on_lines_df(series): + if series.bus0 in busmap: + series.loc["bus0"] = busmap[series.bus0] + if series.bus1 in busmap: + series.loc["bus1"] = busmap[series.bus1] + + return series + + def apply_busmap(series): + if series.bus in busmap: + series.loc["bus"] = busmap[series.bus] + + return series + + logger = logging.getLogger("edisgo.cr_remove_one_meter_lines") + start_time = time() + logger.info("Start - Removing 1m lines") + + edisgo_obj = copy.deepcopy(edisgo_root) + G = edisgo_obj.to_graph() + lines_df = edisgo_obj.topology.lines_df.copy() + busmap = {} + unused_lines = [] + for index, row in lines_df.iterrows(): + if row.length < 0.001: + logger.info( + 'Line "{}" is {:.3f}m long and will not be removed.'.format( + index, row.length * 1000 + ) + ) + if row.length == 0.001: + # find lines that have at one bus only one neighbor and at the other more than one + number_of_neighbors_bus0 = G.degree(row.bus0) + number_of_neighbors_bus1 = G.degree(row.bus1) + if ( + (number_of_neighbors_bus0 != number_of_neighbors_bus1) + and (row.bus0.split("_")[0] != "virtual") + and (row.bus1.split("_")[0] != "virtual") + ): + if (number_of_neighbors_bus0 > number_of_neighbors_bus1) and ( + number_of_neighbors_bus1 == 1 + ): + unused_lines.append(index) + busmap[row.bus1] = row.bus0 + elif ( + number_of_neighbors_bus1 > number_of_neighbors_bus0 + ) and number_of_neighbors_bus0 == 1: + unused_lines.append(index) + busmap[row.bus0] = row.bus1 + else: + logger.info( + 'Line "{}" is {:.3f}m long and will not be removed.'.format( + index, row.length * 1000 + ) + ) + logger.info( + "Drop {} of {} short lines ({:.0f}%)".format( + len(unused_lines), + lines_df.shape[0], + (len(unused_lines) / lines_df.shape[0] * 100), + ) + ) + lines_df = lines_df.drop(unused_lines) + lines_df = lines_df.apply(apply_busmap_on_lines_df, axis="columns") + + buses_df = edisgo_obj.topology.buses_df.copy() + buses_df = buses_df.apply(apply_busmap_on_buses_df, axis="columns") + buses_df = buses_df.groupby( + by=["new_bus"], dropna=False, as_index=False, sort=False + ).first() + buses_df = buses_df.set_index("new_bus") + + loads_df = edisgo_obj.topology.loads_df.copy() + loads_df = loads_df.apply(apply_busmap, axis="columns") + + generators_df = edisgo_obj.topology.generators_df.copy() + generators_df = generators_df.apply(apply_busmap, axis="columns") + + charging_points_df = edisgo_obj.topology.charging_points_df.copy() + charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") + + edisgo_obj.topology.lines_df = lines_df + edisgo_obj.topology.buses_df = buses_df + edisgo_obj.topology.loads_df = loads_df + edisgo_obj.topology.generators_df = generators_df + edisgo_obj.topology.charging_points_df = charging_points_df + + logger.info("Finished in {}s".format(time() - start_time)) + return edisgo_obj + + +def remove_lines_under_one_meter(edisgo_root): + def apply_busmap_on_buses_df(series): + if series.name in busmap: + series.loc["new_bus"] = busmap[series.name] + else: + series.loc["new_bus"] = series.name + return series + + def apply_busmap_on_lines_df(series): + if series.bus0 in busmap: + series.loc["bus0"] = busmap[series.bus0] + if series.bus1 in busmap: + series.loc["bus1"] = busmap[series.bus1] + + return series + + def apply_busmap(series): + if series.bus in busmap: + series.loc["bus"] = busmap[series.bus] + + return series + + logger = logging.getLogger("edisgo.cr_remove_lines_under_one_meter") + start_time = time() + logger.info("Start - Removing lines under 1m") + + edisgo_obj = copy.deepcopy(edisgo_root) + + busmap = {} + unused_lines = [] + + grid_list = [edisgo_obj.topology.mv_grid] + grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) + + for grid in grid_list: + G = grid.graph + + transformer_node = grid.transformers_df.bus1.values[0] + + lines_df = grid.lines_df.copy() + + for index, row in lines_df.iterrows(): + if row.length < 0.001: + + distance_bus_0, path = nx.single_source_dijkstra( + G, source=transformer_node, target=row.bus0, weight="length" + ) + distance_bus_1, path = nx.single_source_dijkstra( + G, source=transformer_node, target=row.bus1, weight="length" + ) + + logger.debug( + 'Line "{}" is {:.5f}m long and will be removed.'.format( + index, row.length * 1000 + ) + ) + logger.debug( + "Bus0: {} - Distance0: {}".format(row.bus0, distance_bus_0) + ) + logger.debug( + "Bus1: {} - Distance1: {}".format(row.bus1, distance_bus_1) + ) + + if distance_bus_0 < distance_bus_1: + busmap[row.bus1] = row.bus0 + if distance_bus_0 < 0.001: + busmap[row.bus0] = transformer_node + busmap[row.bus1] = transformer_node + elif distance_bus_0 > distance_bus_1: + busmap[row.bus0] = row.bus1 + if distance_bus_1 < 0.001: + busmap[row.bus0] = transformer_node + busmap[row.bus1] = transformer_node + else: + raise ValueError("ERROR") + + unused_lines.append(index) + + logger.debug("Busmap: {}".format(busmap)) + + transformers_df = edisgo_obj.topology.transformers_df.copy() + transformers_df = transformers_df.apply(apply_busmap_on_lines_df, axis="columns") + edisgo_obj.topology.transformers_df = transformers_df + + lines_df = edisgo_obj.topology.lines_df.copy() + lines_df = lines_df.drop(unused_lines) + lines_df = lines_df.apply(apply_busmap_on_lines_df, axis="columns") + edisgo_obj.topology.lines_df = lines_df + + buses_df = edisgo_obj.topology.buses_df.copy() + buses_df.index.name = "bus" + buses_df = buses_df.apply(apply_busmap_on_buses_df, axis="columns") + buses_df = buses_df.groupby( + by=["new_bus"], dropna=False, as_index=False, sort=False + ).first() + buses_df = buses_df.set_index("new_bus") + edisgo_obj.topology.buses_df = buses_df + + loads_df = edisgo_obj.topology.loads_df.copy() + loads_df = loads_df.apply(apply_busmap, axis="columns") + edisgo_obj.topology.loads_df = loads_df + + generators_df = edisgo_obj.topology.generators_df.copy() + generators_df = generators_df.apply(apply_busmap, axis="columns") + edisgo_obj.topology.generators_df = generators_df + + charging_points_df = edisgo_obj.topology.charging_points_df.copy() + charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") + edisgo_obj.topology.charging_points_df = charging_points_df + + logger.info("Finished in {}s".format(time() - start_time)) + return edisgo_obj + + +def aggregate_to_bus(edisgo_root, aggregate_charging_points_mode=True): + def aggregate_loads(df): + series = pd.Series(index=df.columns, dtype="object") + series.loc["bus"] = df.loc[:, "bus"].values[0] + series.loc["peak_load"] = df.loc[:, "peak_load"].sum() + series.loc["annual_consumption"] = df.loc[:, "annual_consumption"].sum() + if load_aggregation_mode == "sector": + series.loc["sector"] = df.loc[:, "sector"].values[0] + # elif load_aggregation_mode == 'bus': + # series.loc['sector'] = 'aggregated' + series.loc["old_load_name"] = df.index.tolist() + return series + + def aggregate_generators(df): + series = pd.Series(index=df.columns, dtype="object") + series.loc["bus"] = df.loc[:, "bus"].values[0] + series.loc["p_nom"] = df.loc[:, "p_nom"].sum() + series.loc["control"] = df.loc[:, "control"].values[0] + series.loc["subtype"] = df.loc[:, "subtype"].values[0] + series.loc["old_generator_name"] = df.index.tolist() + series.loc["type"] = df.loc[:, "type"].values[0] + series.loc["weather_cell_id"] = df.loc[:, "weather_cell_id"].values[0] + return series + + def extract_weather_cell_id(series): + if pd.isna(series): + series = "NaN" + else: + series = str(int(series)) + return series + + def aggregate_charging_points(df): + series = pd.Series(dtype="object") + series.loc["bus"] = df.loc[:, "bus"].values[0] + series.loc["p_nom"] = df.loc[:, "p_nom"].sum() + series.loc["use_case"] = df.loc[:, "use_case"].values[0] + series.loc["old_charging_point_name"] = df.index.tolist() + return series + + logger = logging.getLogger("edisgo.cr_aggregate_to_bus") + start_time = time() + logger.info("Start - Aggregate to bus") + + edisgo_obj = copy.deepcopy(edisgo_root) + + loads_df = edisgo_obj.topology.loads_df.copy() + generators_df = edisgo_obj.topology.generators_df.copy() + charging_points_df = edisgo_obj.topology.charging_points_df.copy() + + if not loads_df.empty: + load_aggregation_mode = "bus" + + logger.info("Aggregate loads_df") + + if load_aggregation_mode == "sector": + loads_df = loads_df.groupby(by=["bus", "sector"]).apply(aggregate_loads) + loads_df.index = ( + "Load_" + loads_df.loc[:, "bus"] + "_" + loads_df.loc[:, "sector"] + ) + elif load_aggregation_mode == "bus": + loads_df = loads_df.groupby("bus").apply(aggregate_loads) + loads_df.index = "Load_" + loads_df.loc[:, "bus"] + + loads_df.index.name = "name" + edisgo_obj.topology.loads_df = loads_df + + # aggregate load timeseries + logger.info("Aggregate loads timeseries") + + load_name_map_df = edisgo_obj.topology.loads_df.loc[ + :, "old_load_name" + ].to_dict() + load_name_map = {} + for i in range(0, len(load_name_map_df.keys())): + for j in range(0, len(list(load_name_map_df.values())[i])): + load_name_map[list(load_name_map_df.values())[i][j]] = list( + load_name_map_df.keys() + )[i] + + timeseries_loads_p_df = edisgo_obj.timeseries.loads_active_power.T.copy() + timeseries_loads_q_df = edisgo_obj.timeseries.loads_reactive_power.T.copy() + + new_index = [] + for i in range(0, timeseries_loads_p_df.shape[0]): + new_load_name = load_name_map[timeseries_loads_p_df.index[i]] + new_index.append(new_load_name) + + old_index = timeseries_loads_p_df.index.tolist() + rename_index = dict(zip(old_index, new_index)) + + timeseries_loads_p_df = timeseries_loads_p_df.rename(index=rename_index) + timeseries_loads_q_df = timeseries_loads_q_df.rename(index=rename_index) + edisgo_obj.timeseries.loads_active_power = ( + timeseries_loads_p_df.groupby(level=0).sum().T + ) + edisgo_obj.timeseries.loads_reactive_power = ( + timeseries_loads_q_df.groupby(level=0).sum().T + ) + + if not generators_df.empty: + logger.info("Aggregate generators_df") + + generators_df = generators_df.groupby( + by=["bus", "type", "weather_cell_id"], dropna=False + ).apply(aggregate_generators) + generators_df.index = ( + "Generator_" + + generators_df.loc[:, "bus"].values + + "_" + + generators_df.loc[:, "type"].values + + "_weather_cell_id_" + + generators_df.loc[:, "weather_cell_id"] + .apply(extract_weather_cell_id) + .values + ) + + edisgo_obj.topology.generators_df = generators_df + + logger.info("Aggregate generator timeseries") + timeseries_generators_p_df = ( + edisgo_obj.timeseries.generators_active_power.T.copy() + ) + timeseries_generators_q_df = ( + edisgo_obj.timeseries.generators_reactive_power.T.copy() + ) + + generator_name_map_df = edisgo_obj.topology.generators_df.loc[ + :, "old_generator_name" + ].to_dict() + + generator_name_map = {} + for i in range(0, len(generator_name_map_df.keys())): + for j in range(0, len(list(generator_name_map_df.values())[i])): + generator_name_map[list(generator_name_map_df.values())[i][j]] = list( + generator_name_map_df.keys() + )[i] + + new_index = [] + for i in range(0, timeseries_generators_p_df.shape[0]): + new_generator_name = generator_name_map[timeseries_generators_p_df.index[i]] + new_index.append(new_generator_name) + + old_index = timeseries_generators_p_df.index.tolist() + rename_index = dict(zip(old_index, new_index)) + + timeseries_generators_p_df = timeseries_generators_p_df.rename( + index=rename_index + ) + timeseries_generators_q_df = timeseries_generators_q_df.rename( + index=rename_index + ) + + edisgo_obj.timeseries.generators_active_power = ( + timeseries_generators_p_df.groupby(level=0).sum().T + ) + edisgo_obj.timeseries.generators_reactive_power = ( + timeseries_generators_q_df.groupby(level=0).sum().T + ) + + edisgo_obj.topology.generators_df = generators_df + + if not charging_points_df.empty and aggregate_charging_points_mode: + logger.info("Aggregate charging_points_df") + + charging_points_df = charging_points_df.groupby( + by=["bus", "use_case"], dropna=False + ).apply(aggregate_charging_points) + + edisgo_obj.topology.charging_points_df = charging_points_df + + charging_points_df.index = ( + "ChargingPoint_" + + charging_points_df.loc[:, "bus"].values + + "_" + + charging_points_df.loc[:, "use_case"].values + ) + + logger.info("Aggregate charging points timeseries") + timeseries_charging_points_p_df = ( + edisgo_obj.timeseries.charging_points_active_power.T.copy() + ) + timeseries_charging_points_q_df = ( + edisgo_obj.timeseries.charging_points_reactive_power.T.copy() + ) + + charging_point_name_map_df = charging_points_df.loc[ + :, "old_charging_point_name" + ].to_dict() + + charging_point_name_map = {} + for i in range(0, len(charging_point_name_map_df.keys())): + for j in range(0, len(list(charging_point_name_map_df.values())[i])): + charging_point_name_map[ + list(charging_point_name_map_df.values())[i][j] + ] = list(charging_point_name_map_df.keys())[i] + + new_index = [] + for index, row in timeseries_charging_points_p_df.iterrows(): + new_index.append(charging_point_name_map[index]) + old_index = timeseries_charging_points_p_df.index.tolist() + rename_index = dict(zip(old_index, new_index)) + + timeseries_charging_points_p_df = timeseries_charging_points_p_df.rename( + index=rename_index + ) + timeseries_charging_points_q_df = timeseries_charging_points_q_df.rename( + index=rename_index + ) + + timeseries_charging_points_p_df = ( + timeseries_charging_points_p_df.groupby(level=0).sum().T + ) + timeseries_charging_points_q_df = ( + timeseries_charging_points_q_df.groupby(level=0).sum().T + ) + + edisgo_obj.timeseries.charging_points_active_power = ( + timeseries_charging_points_p_df + ) + edisgo_obj.timeseries.charging_points_reactive_power = ( + timeseries_charging_points_q_df + ) + + edisgo_obj.topology.charging_points_df = charging_points_df + + logger.info("Finished in {}s".format(time() - start_time)) + return edisgo_obj + + +# Complexity reduction +def make_busmap_from_clustering( + edisgo_root=None, + grid=None, + mode=None, + reduction_factor=None, + preserve_trafo_bus_coordinates=True, + n_init=10, + random_state=42, +): + def calculate_weighting(series): + p_gen = edisgo_obj.topology.generators_df.loc[ + edisgo_obj.topology.generators_df.bus == series.name, "p_nom" + ].sum() + p_load = edisgo_obj.topology.loads_df.loc[ + edisgo_obj.topology.loads_df.bus == series.name, "peak_load" + ].sum() + p_charge = edisgo_obj.topology.charging_points_df.loc[ + edisgo_obj.topology.charging_points_df.bus == series.name, "p_nom" + ].sum() + if str(grid).split("_")[0] == "MVGrid": + s_tran = edisgo_obj.topology.transformers_df.loc[ + edisgo_obj.topology.transformers_df.bus0 == series.name, "s_nom" + ].sum() + else: + s_tran = 0 + series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran + p_charge) + return series + + def transform_coordinates(series): + x = series.x + y = series.y + x, y = coor_transform.transform(x, y) + series["x"] = x + series["y"] = y + return series + + def transform_coordinates_back(series): + x = series.new_x + y = series.new_y + x, y = coor_transform_back.transform(x, y) + series["new_x"] = x + series["new_y"] = y + return series + + def rename_new_buses(series): + if str(grid).split("_")[0] == "LVGrid": + series["new_bus"] = ( + "Bus_mvgd_" + + str(edisgo_obj.topology.mv_grid.id) + + "_lvgd_" + + str(grid.id) + + "_" + + str(int(series["new_bus"])) + ) + + elif str(grid).split("_")[0] == "MVGrid": + series["new_bus"] = ( + "Bus_mvgd_" + + str(edisgo_obj.topology.mv_grid.id) + + "_" + + str(int(series["new_bus"])) + ) + elif grid is None: + logger.error("Grid is None") + return series + + logger = logging.getLogger("edisgo.cr_make_busmap") + start_time = time() + logger.info("Start - Make busmap from clustering, mode = {}".format(mode)) + + edisgo_obj = copy.deepcopy(edisgo_root) + grid_list = make_grid_list(edisgo_obj, grid) + + busmap_df = pd.DataFrame() + + for grid in grid_list: + grid_id = grid.id + v_grid = grid.nominal_voltage + logger.debug("Make busmap for grid: {}, v_nom={}".format(grid, v_grid)) + + buses_df = grid.buses_df + graph = grid.graph + transformer_bus = grid.transformers_df.bus1[0] + + buses_df = buses_df.apply(transform_coordinates, axis="columns") + buses_df = buses_df.apply(calculate_weighting, axis="columns") + + number_of_distinct_nodes = buses_df.groupby(by=["x", "y"]).first().shape[0] + logger.debug("Number_of_distinct_nodes = " + str(number_of_distinct_nodes)) + n_clusters = math.ceil(number_of_distinct_nodes * reduction_factor) + logger.debug("n_clusters = {}".format(n_clusters)) + + kmeans = KMeans(n_clusters=n_clusters, n_init=n_init, random_state=random_state) + + kmeans.fit(buses_df.loc[:, ["x", "y"]], sample_weight=buses_df.loc[:, "weight"]) + + partial_busmap_df = pd.DataFrame(index=buses_df.index) + + if mode == "kmeans": + partial_busmap_df.loc[:, "new_bus"] = kmeans.labels_ + for index, new_bus in zip( + partial_busmap_df.index, partial_busmap_df.new_bus + ): + partial_busmap_df.loc[ + index, ["new_x", "new_y"] + ] = kmeans.cluster_centers_[new_bus] + + elif mode == "kmeansdijkstra": + dist_to_cluster_center = pd.DataFrame( + data=kmeans.transform(buses_df.loc[:, ["x", "y"]]), index=buses_df.index + ).min(axis="columns") + + buses_df.loc[:, "cluster_number"] = kmeans.labels_ + medoid_bus_name = {} + + for n in range(0, n_clusters): + medoid_bus_name[ + dist_to_cluster_center.loc[ + buses_df.loc[:, "cluster_number"].isin([n]) + ].idxmin() + ] = int(n) + + dijkstra_distances_df = pd.DataFrame( + index=buses_df.index, columns=medoid_bus_name + ) + + for bus in medoid_bus_name: + path_series = pd.Series( + nx.single_source_dijkstra_path_length(graph, bus, weight="length") + ) + dijkstra_distances_df.loc[:, bus] = path_series + + buses_df.loc[:, "medoid"] = dijkstra_distances_df.idxmin(axis=1) + partial_busmap_df = pd.DataFrame(index=buses_df.index) + + for index in buses_df.index: + partial_busmap_df.loc[index, "new_bus"] = int( + medoid_bus_name[buses_df.loc[index, "medoid"]] + ) + partial_busmap_df.loc[index, ["new_x", "new_y"]] = buses_df.loc[ + buses_df.loc[index, "medoid"], ["x", "y"] + ].values + + partial_busmap_df = partial_busmap_df.apply(rename_new_buses, axis="columns") + + partial_busmap_df.loc[ + partial_busmap_df.new_bus.isin( + [partial_busmap_df.loc[transformer_bus, "new_bus"]] + ), + "new_bus", + ] = transformer_bus + + if preserve_trafo_bus_coordinates: + partial_busmap_df.loc[ + partial_busmap_df.new_bus.isin( + [partial_busmap_df.loc[transformer_bus, "new_bus"]] + ), + "new_x", + ] = buses_df.loc[transformer_bus, "x"] + partial_busmap_df.loc[ + partial_busmap_df.new_bus.isin( + [partial_busmap_df.loc[transformer_bus, "new_bus"]] + ), + "new_y", + ] = buses_df.loc[transformer_bus, "y"] + + partial_busmap_df.index.name = "old_bus" + + if str(grid).split("_")[0] == "MVGrid": + partial_busmap_df = rename_virtual_buses( + logger, partial_busmap_df, transformer_bus + ) + + partial_busmap_df = partial_busmap_df.apply( + transform_coordinates_back, axis="columns" + ) + + busmap_df = pd.concat([busmap_df, partial_busmap_df]) + + logger.info("Finished in {}s".format(time() - start_time)) + return busmap_df + + +def make_busmap_from_feeders( + edisgo_root=None, + grid=None, + mode=None, + reduction_factor=None, + focus_mode=False, + reduction_factor_not_focused_feeder=0, +): + def make_name(number_of_feeder_node): + if number_of_feeder_node == 0: + name = transformer_node + elif mvgd_id == grid_id: + name = ( + "Bus_mvgd_" + + str(mvgd_id) + + "_F" + + str(number_of_feeder) + + "_B" + + str(number_of_feeder_node) + ) + else: + name = ( + "Bus_mvgd_" + + str(mvgd_id) + + "_lvgd_" + + str(grid_id) + + "_F" + + str(number_of_feeder) + + "_B" + + str(number_of_feeder_node) + ) + + return name + + def calculate_weighting(series): + buses = partial_busmap_df.loc[ + partial_busmap_df.new_bus.isin([series.name]) + ].index.tolist() + p_gen = edisgo_obj.topology.generators_df.loc[ + edisgo_obj.topology.generators_df.bus.isin(buses), "p_nom" + ].sum() + p_load = edisgo_obj.topology.loads_df.loc[ + edisgo_obj.topology.loads_df.bus.isin(buses), "peak_load" + ].sum() + p_charge = edisgo_obj.topology.charging_points_df.loc[ + edisgo_obj.topology.charging_points_df.bus.isin(buses), "p_nom" + ].sum() + if str(grid).split("_")[0] == "MVGrid": + s_tran = edisgo_obj.topology.transformers_df.loc[ + edisgo_obj.topology.transformers_df.bus0 == series.name, "s_nom" + ].sum() + else: + s_tran = 0 + series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran + p_charge) + return series + + def transform_coordinates(series): + x = series.x + y = series.y + x, y = coor_transform.transform(x, y) + series["x"] = x + series["y"] = y + return series + + def transform_coordinates_back(ser): + x = ser.new_x + y = ser.new_y + x, y = coor_transform_back.transform(x, y) + ser["new_x"] = x + ser["new_y"] = y + return ser + + edisgo_obj = copy.deepcopy(edisgo_root) + logger = logging.getLogger("edisgo.cr_make_busmap") + start_time = time() + logger.info("Start - Make busmap from feeders, mode = {}".format(mode)) + + edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.apply( + transform_coordinates, axis="columns" + ) + + grid_list = make_grid_list(edisgo_obj, grid) + busmap_df = pd.DataFrame() + mvgd_id = edisgo_obj.topology.mv_grid.id + + if focus_mode: + buses_of_interest = find_buses_of_interest(edisgo_obj) + + for grid in grid_list: + grid_id = grid.id + v_grid = grid.nominal_voltage + logger.info("Make busmap for grid: {}, v_nom={}".format(grid, v_grid)) + + graph_root = grid.graph + transformer_node = grid.transformers_df.bus1.values[0] + transformer_coordinates = grid.buses_df.loc[ + transformer_node, ["x", "y"] + ].tolist() + logger.debug("Transformer node: {}".format(transformer_node)) + + neighbors = list(nx.neighbors(graph_root, transformer_node)) + logger.debug( + "Transformer neighbors has {} neighbors: {}".format( + len(neighbors), neighbors + ) + ) + + graph_without_transformer = copy.deepcopy(graph_root) + graph_without_transformer.remove_node(transformer_node) + + partial_busmap_df = pd.DataFrame(index=grid.buses_df.index) + partial_busmap_df.index.name = "old_bus" + for index in partial_busmap_df.index.tolist(): + partial_busmap_df.loc[index, "new_bus"] = index + coordinates = grid.buses_df.loc[index, ["x", "y"]].values + partial_busmap_df.loc[index, ["new_x", "new_y"]] = coordinates + + number_of_feeder = 0 + for feeder_nodes in nx.connected_components(graph_without_transformer): + feeder_buses_df = grid.buses_df.loc[feeder_nodes, :] + # return feeder_buses_df + feeder_buses_df = feeder_buses_df.apply(calculate_weighting, axis="columns") + + if focus_mode: + selected_reduction_factor = reduction_factor_not_focused_feeder + for bus in feeder_nodes: + if bus in buses_of_interest: + selected_reduction_factor = reduction_factor + else: + selected_reduction_factor = reduction_factor + + number_of_distinct_nodes = ( + feeder_buses_df.groupby(by=["x", "y"]).first().shape[0] + ) + logger.debug("Number_of_distinct_nodes = " + str(number_of_distinct_nodes)) + n_clusters = math.ceil(selected_reduction_factor * number_of_distinct_nodes) + logger.debug("n_clusters = {}".format(n_clusters)) + + # Aggregate to transformer bus if there are no clusters + if n_clusters == 0: + for index in feeder_buses_df.index.tolist(): + partial_busmap_df.loc[index, "new_bus"] = transformer_node + partial_busmap_df.loc[ + index, ["new_x", "new_y"] + ] = transformer_coordinates + else: + kmeans = KMeans(n_clusters=n_clusters, n_init=10, random_state=42) + kmeans.fit( + feeder_buses_df.loc[:, ["x", "y"]], + sample_weight=feeder_buses_df.loc[:, "weight"], + ) + + if mode == "kmeans": + n = 0 + for index in feeder_buses_df.index.tolist(): + partial_busmap_df.loc[index, "new_bus"] = make_name( + kmeans.labels_[n] + 1 + ) + partial_busmap_df.loc[ + index, ["new_x", "new_y"] + ] = kmeans.cluster_centers_[kmeans.labels_[n]] + n = n + 1 + elif mode == "kmeansdijkstra": + dist_to_cluster_center = pd.DataFrame( + data=kmeans.transform(feeder_buses_df.loc[:, ["x", "y"]]), + index=feeder_buses_df.index, + ).min(axis="columns") + feeder_buses_df.loc[:, "cluster_number"] = kmeans.labels_ + medoid_bus_name = {} + + for n in range(0, n_clusters): + medoid_bus_name[ + dist_to_cluster_center.loc[ + feeder_buses_df.loc[:, "cluster_number"].isin([n]) + ].idxmin() + ] = int(n) + + dijkstra_distances_df = pd.DataFrame( + index=feeder_buses_df.index, columns=medoid_bus_name + ) + + for bus in medoid_bus_name: + path_series = pd.Series( + nx.single_source_dijkstra_path_length( + graph_root, bus, cutoff=None, weight="length" + ) + ) + dijkstra_distances_df.loc[:, bus] = path_series + + feeder_buses_df.loc[:, "medoid"] = dijkstra_distances_df.idxmin( + axis=1 + ) + + for index in feeder_buses_df.index.tolist(): + partial_busmap_df.loc[index, "new_bus"] = make_name( + medoid_bus_name[feeder_buses_df.loc[index, "medoid"]] + 1 + ) + partial_busmap_df.loc[ + index, ["new_x", "new_y"] + ] = feeder_buses_df.loc[ + feeder_buses_df.loc[index, "medoid"], ["x", "y"] + ].values + number_of_feeder = number_of_feeder + 1 + + if str(grid).split("_")[0] == "MVGrid": + partial_busmap_df = rename_virtual_buses( + logger, partial_busmap_df, transformer_node + ) + + busmap_df = pd.concat([busmap_df, partial_busmap_df]) + + busmap_df = busmap_df.apply(transform_coordinates_back, axis="columns") + + logger.info("Finished in {}s".format(time() - start_time)) + return busmap_df + + +def make_busmap_from_main_feeders( + edisgo_root=None, + grid=None, + mode=None, + reduction_factor=None, + focus_mode=False, + reduction_factor_not_focused_feeder=0, +): + def make_name(number_of_feeder_node): + if number_of_feeder_node == 0: + name = transformer_node + elif mvgd_id == grid_id: + name = ( + "Bus_mvgd_" + + str(mvgd_id) + + "_F" + + str(number_of_feeder) + + "_B" + + str(number_of_feeder_node) + ) + else: + name = ( + "Bus_mvgd_" + + str(mvgd_id) + + "_lvgd_" + + str(grid_id) + + "_F" + + str(number_of_feeder) + + "_B" + + str(number_of_feeder_node) + ) + + return name + + def calculate_weighting(series): + buses = partial_busmap_df.loc[ + partial_busmap_df.new_bus.isin([series.name]) + ].index.tolist() + p_gen = edisgo_obj.topology.generators_df.loc[ + edisgo_obj.topology.generators_df.bus.isin(buses), "p_nom" + ].sum() + p_load = edisgo_obj.topology.loads_df.loc[ + edisgo_obj.topology.loads_df.bus.isin(buses), "peak_load" + ].sum() + p_charge = edisgo_obj.topology.charging_points_df.loc[ + edisgo_obj.topology.charging_points_df.bus.isin(buses), "p_nom" + ].sum() + if str(grid).split("_")[0] == "MVGrid": + s_tran = edisgo_obj.topology.transformers_df.loc[ + edisgo_obj.topology.transformers_df.bus0 == series.name, "s_nom" + ].sum() + else: + s_tran = 0 + series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran + p_charge) + return series + + def transform_coordinates(series): + x = series.x + y = series.y + x, y = coor_transform.transform(x, y) + series["x"] = x + series["y"] = y + return series + + def transform_coordinates_back(ser): + x = ser.new_x + y = ser.new_y + x, y = coor_transform_back.transform(x, y) + ser["new_x"] = x + ser["new_y"] = y + return ser + + def next_main_node(node_to_delete, graph_root, main_feeder_nodes): + for node, predecessor in nx.bfs_predecessors(graph_root, source=node_to_delete): + if node in main_feeder_nodes: + return node + + edisgo_obj = copy.deepcopy(edisgo_root) + logger = logging.getLogger("edisgo.cr_make_busmap") + start_time = time() + logger.info("Start - Make busmap from main feeders, mode = {}".format(mode)) + + if mode != "aggregate_to_longest_feeder": + edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.apply( + transform_coordinates, axis="columns" + ) + + grid_list = make_grid_list(edisgo_obj, grid) + busmap_df = pd.DataFrame() + mvgd_id = edisgo_obj.topology.mv_grid.id + + if focus_mode: + buses_of_interest = find_buses_of_interest(edisgo_obj) + + for grid in grid_list: + grid_id = grid.id + v_grid = grid.nominal_voltage + logger.debug("Make busmap for grid: {}, v_nom={}".format(grid, v_grid)) + + graph_root = grid.graph + transformer_node = grid.transformers_df.bus1.values[0] + transformer_coordinates = grid.buses_df.loc[ + transformer_node, ["x", "y"] + ].tolist() + logger.debug("Transformer node: {}".format(transformer_node)) + + neighbors = list(nx.neighbors(graph_root, transformer_node)) + logger.debug( + "Transformer neighbors has {} neighbors: {}".format( + len(neighbors), neighbors + ) + ) + + graph_without_transformer = copy.deepcopy(graph_root) + graph_without_transformer.remove_node(transformer_node) + + end_nodes = [] + for node in neighbors: + path = nx.single_source_dijkstra_path_length( + graph_without_transformer, node, weight="length" + ) + end_node = max(path, key=path.get) + end_nodes.append(end_node) + + main_feeders_df = pd.DataFrame( + columns=["distance", "number_of_nodes_in_path", "path", "end_node"], + dtype=object, + ) + + i = 0 + main_feeder_nodes = [transformer_node] + for end_node in end_nodes: + distance, path = nx.single_source_dijkstra( + graph_root, source=transformer_node, target=end_node, weight="length" + ) + + main_feeder_nodes = main_feeder_nodes + path + + # Advanced method + if mode != "aggregate_to_longest_feeder": + main_feeders_df.loc[i, "distance"] = distance + main_feeders_df.loc[i, "end_node"] = end_node + # transformer node is not included + main_feeders_df.loc[i, "number_of_nodes_in_path"] = len(path) - 1 + main_feeders_df.loc[i, "path"] = path + i = i + 1 + + # delete duplicates + main_feeder_nodes = list(dict.fromkeys(main_feeder_nodes)) + nodes = list(graph_root.nodes()) + not_main_nodes = [] + for node in nodes: + if node not in main_feeder_nodes: + not_main_nodes.append(node) + partial_busmap_df = pd.DataFrame(index=grid.buses_df.index) + partial_busmap_df.index.name = "old_bus" + for index in partial_busmap_df.index.tolist(): + partial_busmap_df.loc[index, "new_bus"] = index + coordinates = grid.buses_df.loc[index, ["x", "y"]].values + partial_busmap_df.loc[index, ["new_x", "new_y"]] = coordinates + + graph_cleaned = copy.deepcopy(graph_root) + graph_cleaned.remove_nodes_from(not_main_nodes) + + for node_to_delete in not_main_nodes: + node = next_main_node(node_to_delete, graph_root, main_feeder_nodes) + partial_busmap_df.loc[node_to_delete, "new_bus"] = node + coordinates = partial_busmap_df.loc[node, ["new_x", "new_y"]].values + partial_busmap_df.loc[node_to_delete, ["new_x", "new_y"]] = coordinates + + # Advanced method + if mode == "feeder_replacement_with_equidistant_nodes": + + def short_coordinates(root_node, end_node, branch_length, node_number): + angle = math.degrees( + math.atan2(end_node[1] - root_node[1], end_node[0] - root_node[0]) + ) + + branch_length = 1000 * branch_length / 1.3 + + x_new = root_node[0] + branch_length * node_number * math.cos( + math.radians(angle) + ) + y_new = root_node[1] + branch_length * node_number * math.sin( + math.radians(angle) + ) + + return x_new, y_new + + i = 0 + for end_node in end_nodes: + number_of_feeder = end_nodes.index(end_node) + feeder = main_feeders_df.loc[number_of_feeder, :] + + # Calculate nodes per feeder + if focus_mode: + selected_reduction_factor = reduction_factor_not_focused_feeder + for node in feeder.path[1:]: + buses = partial_busmap_df.loc[ + partial_busmap_df.new_bus.isin([node]) + ].index.tolist() + for bus in buses: + if bus in buses_of_interest: + selected_reduction_factor = reduction_factor + else: + selected_reduction_factor = reduction_factor + # Nodes per feeder should be minimum 1 + if selected_reduction_factor < 1: + nodes_per_feeder = math.ceil( + selected_reduction_factor * feeder.number_of_nodes_in_path + ) + else: + nodes_per_feeder = int(selected_reduction_factor) + # Nodes per feeder should not be bigger than nodes in path + if nodes_per_feeder > feeder.number_of_nodes_in_path: + nodes_per_feeder = feeder.number_of_nodes_in_path + + branch_length = feeder.distance / nodes_per_feeder + + # Calculate the assignment of the feeders + new_feeder = np.zeros(nodes_per_feeder + 1) + for n in range(0, new_feeder.shape[0]): + new_feeder[n] = n * branch_length + old_feeder = np.zeros(feeder.number_of_nodes_in_path + 1, dtype=np.int) + node_number = 0 + for node in feeder.path: + distance_from_transformer = nx.shortest_path_length( + graph_cleaned, + source=transformer_node, + target=node, + weight="length", + ) + old_feeder[node_number] = np.abs( + new_feeder - distance_from_transformer + ).argmin() + node_number += 1 + + # Make busmap for feeders + end_coordinates = grid.buses_df.loc[ + end_nodes[number_of_feeder], ["x", "y"] + ].tolist() + for node_number in range(0, old_feeder.shape[0]): + old_bus = feeder.path[node_number] + partial_busmap_df.loc[old_bus, "new_bus"] = make_name( + old_feeder[node_number] + ) + coor = short_coordinates( + transformer_coordinates, + end_coordinates, + branch_length, + old_feeder[node_number], + ) + + partial_busmap_df.loc[old_bus, "new_x"] = coor[0] + partial_busmap_df.loc[old_bus, "new_y"] = coor[1] + i += 1 + + elif (mode == "kmeans") or (mode == "kmeansdijkstra"): + i = 0 + for end_node in end_nodes: + number_of_feeder = end_nodes.index(end_node) + feeder = main_feeders_df.loc[number_of_feeder, :] + feeder.loc["path"].remove(transformer_node) + feeder_buses_df = grid.buses_df.loc[feeder.path, :] + feeder_buses_df = feeder_buses_df.apply( + calculate_weighting, axis="columns" + ) + + if focus_mode: + selected_reduction_factor = reduction_factor_not_focused_feeder + for node in feeder_buses_df.index.to_list(): + buses = partial_busmap_df.loc[ + partial_busmap_df.new_bus.isin([node]) + ].index.tolist() + for bus in buses: + if bus in buses_of_interest: + selected_reduction_factor = reduction_factor + else: + selected_reduction_factor = reduction_factor + + number_of_distinct_nodes = ( + feeder_buses_df.groupby(by=["x", "y"]).first().shape[0] + ) + logger.debug( + "Number_of_distinct_nodes = " + str(number_of_distinct_nodes) + ) + n_clusters = math.ceil( + selected_reduction_factor * number_of_distinct_nodes + ) + logger.debug("n_clusters = {}".format(n_clusters)) + + # Aggregate to transformer bus if there are no clusters + if n_clusters == 0: + for index in feeder_buses_df.index.tolist(): + partial_busmap_df.loc[index, "new_bus"] = transformer_node + partial_busmap_df.loc[ + index, ["new_x", "new_y"] + ] = transformer_coordinates + else: + kmeans = KMeans(n_clusters=n_clusters, n_init=10, random_state=42) + kmeans.fit( + feeder_buses_df.loc[:, ["x", "y"]], + sample_weight=feeder_buses_df.loc[:, "weight"], + ) + + if mode == "kmeans": + n = 0 + for index in feeder_buses_df.index.tolist(): + partial_busmap_df.loc[index, "new_bus"] = make_name( + kmeans.labels_[n] + 1 + ) + partial_busmap_df.loc[ + index, ["new_x", "new_y"] + ] = kmeans.cluster_centers_[kmeans.labels_[n]] + n = n + 1 + elif mode == "kmeansdijkstra": + dist_to_cluster_center = pd.DataFrame( + data=kmeans.transform(feeder_buses_df.loc[:, ["x", "y"]]), + index=feeder_buses_df.index, + ).min(axis="columns") + feeder_buses_df.loc[:, "cluster_number"] = kmeans.labels_ + medoid_bus_name = {} + + for n in range(0, n_clusters): + medoid_bus_name[ + dist_to_cluster_center.loc[ + feeder_buses_df.loc[:, "cluster_number"].isin([n]) + ].idxmin() + ] = int(n) + + dijkstra_distances_df = pd.DataFrame( + index=feeder_buses_df.index, columns=medoid_bus_name + ) + + for bus in medoid_bus_name: + path_series = pd.Series( + nx.single_source_dijkstra_path_length( + graph_root, bus, cutoff=None, weight="length" + ) + ) + dijkstra_distances_df.loc[:, bus] = path_series + + feeder_buses_df.loc[:, "medoid"] = dijkstra_distances_df.idxmin( + axis=1 + ) + + for index in feeder_buses_df.index.tolist(): + partial_busmap_df.loc[index, "new_bus"] = make_name( + medoid_bus_name[feeder_buses_df.loc[index, "medoid"]] + + 1 + ) + partial_busmap_df.loc[ + index, ["new_x", "new_y"] + ] = feeder_buses_df.loc[ + feeder_buses_df.loc[index, "medoid"], ["x", "y"] + ].values + + if mode != "aggregate_to_longest_feeder": + # Backmap + for node in not_main_nodes: + partial_busmap_df.loc[node] = partial_busmap_df.loc[ + partial_busmap_df.loc[node, "new_bus"] + ] + + if str(grid).split("_")[0] == "MVGrid": + partial_busmap_df = rename_virtual_buses( + logger, partial_busmap_df, transformer_node + ) + + busmap_df = pd.concat([busmap_df, partial_busmap_df]) + + if mode != "aggregate_to_longest_feeder": + busmap_df = busmap_df.apply(transform_coordinates_back, axis="columns") + + logger.info("Finished in {}s".format(time() - start_time)) + return busmap_df + + +def make_busmap(edisgo_root=None, mode=None, reduction_factor=None, grid=None): + if mode == "km": + busmap_df = make_busmap_from_clustering( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + mode="kmeans", + grid=grid, + ) + elif mode == "kmd": + busmap_df = make_busmap_from_clustering( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + mode="kmeansdijkstra", + grid=grid, + ) + elif mode == "atmf": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, mode="aggregate_to_longest_feeder", grid=grid + ) + elif mode == "frwen": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + mode="feeder_replacement_with_equidistant_nodes", + grid=grid, + ) + elif mode == "frwenwf0.1": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="feeder_replacement_with_equidistant_nodes", + focus_mode=True, + reduction_factor_not_focused_feeder=0.1, + ) + elif mode == "kmpmf": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + mode="kmeans", + grid=grid, + ) + elif mode == "kmdpmf": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + mode="kmeansdijkstra", + grid=grid, + ) + elif mode == "kmpmfwf0": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeans", + focus_mode=True, + reduction_factor_not_focused_feeder=0, + ) + elif mode == "kmdpmfwf0": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeansdijkstra", + focus_mode=True, + reduction_factor_not_focused_feeder=0, + ) + elif mode == "kmpmfwf0.1": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeans", + focus_mode=True, + reduction_factor_not_focused_feeder=0.1, + ) + elif mode == "kmdpmfwf0.1": + busmap_df = make_busmap_from_main_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeansdijkstra", + focus_mode=True, + reduction_factor_not_focused_feeder=0.1, + ) + elif mode == "kmpf": + busmap_df = make_busmap_from_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeans", + ) + elif mode == "kmdpf": + busmap_df = make_busmap_from_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeansdijkstra", + ) + elif mode == "kmpfwf0": + busmap_df = make_busmap_from_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeans", + focus_mode=True, + reduction_factor_not_focused_feeder=0, + ) + elif mode == "kmdpfwf0": + busmap_df = make_busmap_from_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeansdijkstra", + focus_mode=True, + reduction_factor_not_focused_feeder=0, + ) + elif mode == "kmpfwf0.1": + busmap_df = make_busmap_from_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeans", + focus_mode=True, + reduction_factor_not_focused_feeder=0.1, + ) + elif mode == "kmdpfwf0.1": + busmap_df = make_busmap_from_feeders( + edisgo_root=edisgo_root, + reduction_factor=reduction_factor, + grid=grid, + mode="kmeansdijkstra", + focus_mode=True, + reduction_factor_not_focused_feeder=0.1, + ) + else: + return False + return busmap_df + + +def make_remaining_busmap(busmap_df, edisgo_root): + logger = logging.getLogger("edisgo.cr_make_remaining_busmap") + start_time = time() + logger.info("Start - Make remaining busmap") + + remaining_busmap_df = edisgo_root.topology.buses_df.loc[ + ~edisgo_root.topology.buses_df.index.isin(busmap_df.index) + ].copy() + remaining_busmap_df.loc[ + remaining_busmap_df.index, "new_bus" + ] = remaining_busmap_df.index + remaining_busmap_df.loc[remaining_busmap_df.index, "new_x"] = remaining_busmap_df.x + remaining_busmap_df.loc[remaining_busmap_df.index, "new_y"] = remaining_busmap_df.y + remaining_busmap_df = remaining_busmap_df.drop( + labels=["v_nom", "mv_grid_id", "lv_grid_id", "in_building", "x", "y"], axis=1 + ) + remaining_busmap_df.index.name = "old_bus" + busmap_df = pd.concat([busmap_df, remaining_busmap_df]) + + logger.info("Finished in {}s".format(time() - start_time)) + return busmap_df + + +def reduce_edisgo(edisgo_root, busmap_df, aggregate_charging_points_mode=True): + logger = logging.getLogger("edisgo.cr_reduce_edisgo") + start_time = time() + logger.info("Start - Reducing edisgo object") + + edisgo_obj = copy.deepcopy(edisgo_root) + + def apply_busmap_df(series): + series.loc["bus"] = busmap_df.loc[series.name, "new_bus"] + series.loc["x"] = busmap_df.loc[series.name, "new_x"] + series.loc["y"] = busmap_df.loc[series.name, "new_y"] + return series + + # preserve data + logger.info("Preserve data") + buses_df = edisgo_obj.topology.buses_df + lines_df = edisgo_obj.topology.lines_df + loads_changed_df = edisgo_obj.topology.loads_df + generators_changed_df = edisgo_obj.topology.generators_df + charging_points_df = edisgo_obj.topology.charging_points_df + slack_bus = edisgo_obj.topology.transformers_hvmv_df.bus1[0] + + # manipulate buses_df + logger.info("Manipulate buses_df") + buses_df = buses_df.apply(apply_busmap_df, axis="columns") + buses_df = buses_df.groupby(by=["bus"], dropna=False, as_index=False).first() + + buses_df.loc[:, "in_building"] = False + buses_df = buses_df.set_index("bus") + edisgo_obj.topology.buses_df = buses_df + + # manipulate lines_df + def apply_busmap_df(series): + series.loc["bus0"] = busmap_df.loc[series.bus0, "new_bus"] + series.loc["bus1"] = busmap_df.loc[series.bus1, "new_bus"] + return series + + def remove_lines_with_the_same_bus(series): + if series.bus0 == series.bus1: + return + elif ( + series.bus0.split("_")[0] == "virtual" + and series.bus0.lstrip("virtual_") == slack_bus + ) or ( + series.bus1.split("_")[0] == "virtual" + and series.bus1.lstrip("virtual_") == slack_bus + ): + logger.debug( + "Drop line because it is connected to the virtual_slack bus \n{}".format( + series.name + ) + ) + + return + elif series.bus0.lstrip("virtual_") == series.bus1.lstrip("virtual_"): + logger.debug( + "Drop line because it shorts the circuit breaker \n{}".format( + series.name + ) + ) + + return + else: + return series + + def aggregate_lines_df(df): + series = pd.Series(index=edisgo_obj.topology.lines_df.columns, dtype="object") + + bus0 = df.loc[:, "bus0"].values[0] + bus1 = df.loc[:, "bus1"].values[0] + v_nom = buses_df.loc[bus0, "v_nom"] + + coordinates_bus0 = edisgo_obj.topology.buses_df.loc[ + bus0, ["x", "y"] + ].values.tolist() + coordinates_bus1 = edisgo_obj.topology.buses_df.loc[ + bus1, ["x", "y"] + ].values.tolist() + + coordinates_bus0 = coor_transform.transform( + coordinates_bus0[0], coordinates_bus0[1] + ) + coordinates_bus1 = coor_transform.transform( + coordinates_bus1[0], coordinates_bus1[1] + ) + + length = ( + math.dist(coordinates_bus0, coordinates_bus1) + / 1000 + * edisgo_obj.config["grid_connection"]["branch_detour_factor"] + ) + + if length == 0: + length = 0.001 + logger.warning( + "Length of line between " + + str(bus0) + + " and " + + str(bus1) + + " can't be 0, set to 1m" + ) + if length < 0.001: + logger.warning( + "WARNING: Length of line between " + + str(bus0) + + " and " + + str(bus1) + + " smaller than 1m" + ) + + if np.isnan(edisgo_obj.topology.buses_df.loc[df.bus0, "lv_grid_id"])[0]: + # voltage_level = 'MV' + # type_cable = 'mv_cables' + type_line = "mv_line" + else: + # voltage_level = 'LV' + # type_cable = 'lv_cables' + type_line = "lv_line" + + if len(df["type_info"].values) > 1: + # type_info = 'Combined: ' + # for x in l['type_info'].values: + # type_info = type_info + str(x) + ' ' + type_info = edisgo_obj.config["grid_expansion_standard_equipment"][ + type_line + ] + else: + type_info = df["type_info"].values[0] + + if len(df["kind"].values) > 1: + # kind = 'Combined: ' + # for x in l['kind'].values: + # kind = kind + str(x) + ' ' + kind = df["kind"].values[0] + else: + kind = df["kind"].values[0] + + x_sum = 0 + for line_type in df["type_info"].values: + x_sum = ( + x_sum + + 1 + / line_data_df.loc[line_data_df.U_n.isin([v_nom])].loc[ + line_type, "L_per_km" + ] + ) + x_sum = 1 / x_sum + x = length * 2 * math.pi * 50 * x_sum / 1000 + + r_sum = 0 + for line_type in df["type_info"].values: + r_sum = ( + r_sum + + 1 + / line_data_df.loc[line_data_df.U_n.isin([v_nom])].loc[ + line_type, "R_per_km" + ] + ) + r_sum = 1 / r_sum + r = length * r_sum + + series.loc["length"] = length + series.loc["bus0"] = bus0 + series.loc["bus1"] = bus1 + series.loc["x"] = x + series.loc["r"] = r + series.loc["s_nom"] = df["s_nom"].sum() + series.loc["num_parallel"] = int(df.loc[:, "num_parallel"].sum()) + series.loc["type_info"] = type_info + series.loc["kind"] = kind + series.loc["old_line_name"] = df.index.to_list() + return series + + if not lines_df.empty: + logger.info("Manipulate lines_df") + line_data_df = pd.concat( + [ + edisgo_obj.topology.equipment_data["mv_overhead_lines"], + edisgo_obj.topology.equipment_data["mv_cables"], + edisgo_obj.topology.equipment_data["lv_cables"], + ] + ) + + lines_df = lines_df.apply(apply_busmap_df, axis=1) + + lines_df = lines_df.apply( + remove_lines_with_the_same_bus, axis=1, result_type="broadcast" + ).dropna() + + order = lines_df.bus0 < lines_df.bus1 + lines_df_p = lines_df[order] + lines_df_n = lines_df[~order].rename(columns={"bus0": "bus1", "bus1": "bus0"}) + lines_df = pd.concat([lines_df_p, lines_df_n], sort=True) + + lines_df = lines_df.groupby(by=["bus0", "bus1"]).apply(aggregate_lines_df) + + lines_df.index = ( + "Line_" + lines_df.loc[:, "bus0"] + "_to_" + lines_df.loc[:, "bus1"] + ) + + edisgo_obj.topology.lines_df = lines_df + + load_aggregation_mode = "bus" + + # aggregate loads + def apply_busmap(series): + series.loc["bus"] = busmap_df.loc[series.loc["bus"], "new_bus"] + return series + + def aggregate_loads(df): + series = pd.Series(index=df.columns, dtype="object") # l.values[0], + series.loc["bus"] = df.loc[:, "bus"].values[0] + series.loc["peak_load"] = df.loc[:, "peak_load"].sum() + series.loc["annual_consumption"] = df.loc[:, "annual_consumption"].sum() + if load_aggregation_mode == "sector": + series.loc["sector"] = df.loc[:, "sector"].values[0] + # elif load_aggregation_mode == 'bus': + # series.loc['sector'] = 'aggregated' + series.loc["old_load_name"] = df.index.tolist() + return series + + if not loads_changed_df.empty: + logger.info("Manipulate loads") + loads_changed_df = loads_changed_df.apply(apply_busmap, axis="columns") + + if load_aggregation_mode == "sector": + loads_changed_df = loads_changed_df.groupby(by=["bus", "sector"]).apply( + aggregate_loads + ) + loads_changed_df.index = ( + "Load_" + + loads_changed_df.loc[:, "bus"] + + "_" + + loads_changed_df.loc[:, "sector"] + ) + elif load_aggregation_mode == "bus": + loads_changed_df = loads_changed_df.groupby("bus").apply(aggregate_loads) + loads_changed_df.index = "Load_" + loads_changed_df.loc[:, "bus"] + + edisgo_obj.topology.loads_df = loads_changed_df + edisgo_obj.topology.loads_df.index.name = "name" + + # aggregate load timeseries + load_name_map_df = edisgo_obj.topology.loads_df.loc[ + :, "old_load_name" + ].to_dict() + load_name_map = {} + for i in range(0, len(load_name_map_df.keys())): + for j in range(0, len(list(load_name_map_df.values())[i])): + load_name_map[list(load_name_map_df.values())[i][j]] = list( + load_name_map_df.keys() + )[i] + # return load_name_map + + timeseries_loads_p_df = edisgo_obj.timeseries.loads_active_power.T + timeseries_loads_q_df = edisgo_obj.timeseries.loads_reactive_power.T + + new_index = [] + for i in range(0, timeseries_loads_p_df.shape[0]): + new_load_name = load_name_map[timeseries_loads_p_df.index[i]] + new_index.append(new_load_name) + + old_index = timeseries_loads_p_df.index.tolist() + rename_index = dict(zip(old_index, new_index)) + + timeseries_loads_p_df = timeseries_loads_p_df.rename(index=rename_index) + timeseries_loads_q_df = timeseries_loads_q_df.rename(index=rename_index) + edisgo_obj.timeseries.loads_active_power = ( + timeseries_loads_p_df.groupby(level=0).sum().T + ) + edisgo_obj.timeseries.loads_reactive_power = ( + timeseries_loads_q_df.groupby(level=0).sum().T + ) + + # aggregate generators + generator_aggregation_mode = "type" + + def apply_busmap(series): + series.loc["bus"] = busmap_df.loc[series.loc["bus"], "new_bus"] + return series + + def aggregate_generators_df(df): + series = pd.Series(index=df.columns, dtype="object") + series.loc["bus"] = df.loc[:, "bus"].values[0] + series.loc["p_nom"] = df.loc[:, "p_nom"].sum() + series.loc["control"] = df.loc[:, "control"].values[0] + series.loc["subtype"] = df.loc[:, "subtype"].values[0] + series.loc["old_generator_name"] = df.index.tolist() + if generator_aggregation_mode == "bus": + series.loc["type"] = "aggregated" + series.loc["weather_cell_id"] = "aggregated" + elif generator_aggregation_mode == "type": + series.loc["type"] = df.loc[:, "type"].values[0] + series.loc["weather_cell_id"] = df.loc[:, "weather_cell_id"].values[0] + return series + + def extract_weather_cell_id(series): + if pd.isna(series): + series = "NaN" + else: + series = str(int(series)) + return series + + if not generators_changed_df.empty: + logger.info("Manipulate generators") + generators_changed_df = generators_changed_df.loc[ + generators_changed_df.loc[:, "bus"].isin(busmap_df.index), : + ] + generators_changed_df = generators_changed_df.apply( + apply_busmap, axis="columns" + ) + + if generator_aggregation_mode == "bus": + generators_changed_df = generators_changed_df.groupby("bus").apply( + aggregate_generators_df + ) + generators_changed_df.index = ( + "Generator_" + generators_changed_df.loc[:, "bus"] + ) + elif generator_aggregation_mode == "type": + generators_changed_df = generators_changed_df.groupby( + by=["bus", "type", "weather_cell_id"], dropna=False + ).apply(aggregate_generators_df) + generators_changed_df.index = ( + "Generator_" + + generators_changed_df.loc[:, "bus"].values + + "_" + + generators_changed_df.loc[:, "type"].values + + "_weather_cell_id_" + + generators_changed_df.loc[:, "weather_cell_id"] + .apply(extract_weather_cell_id) + .values + ) + + edisgo_obj.topology.generators_df = generators_changed_df + + timeseries_generators_p_df = edisgo_obj.timeseries.generators_active_power.T + timeseries_generators_q_df = edisgo_obj.timeseries.generators_reactive_power.T + + generator_name_map_df = edisgo_obj.topology.generators_df.loc[ + :, "old_generator_name" + ].to_dict() + # return generator_name_map_df + generator_name_map = {} + for i in range(0, len(generator_name_map_df.keys())): + for j in range(0, len(list(generator_name_map_df.values())[i])): + generator_name_map[list(generator_name_map_df.values())[i][j]] = list( + generator_name_map_df.keys() + )[i] + + # return generator_name_map + new_index = [] + for i in range(0, timeseries_generators_p_df.shape[0]): + new_generator_name = generator_name_map[timeseries_generators_p_df.index[i]] + new_index.append(new_generator_name) + + old_index = timeseries_generators_p_df.index.tolist() + rename_index = dict(zip(old_index, new_index)) + + timeseries_generators_p_df = timeseries_generators_p_df.rename( + index=rename_index + ) + timeseries_generators_q_df = timeseries_generators_q_df.rename( + index=rename_index + ) + + edisgo_obj.timeseries.generators_active_power = ( + timeseries_generators_p_df.groupby(level=0).sum().T + ) + + edisgo_obj.timeseries.generators_reactive_power = ( + timeseries_generators_q_df.groupby(level=0).sum().T + ) + + if not charging_points_df.empty: + logger.info("Manipulate charging points") + + def aggregate_charging_points_df(df): + series = pd.Series(dtype="object") + series.loc["bus"] = df.loc[:, "bus"].values[0] + series.loc["p_nom"] = df.loc[:, "p_nom"].sum() + series.loc["use_case"] = df.loc[:, "use_case"].values[0] + series.loc["old_charging_point_name"] = df.index.tolist() + return series + + charging_points_df = edisgo_obj.topology.charging_points_df + charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") + + if aggregate_charging_points_mode: + charging_points_df = charging_points_df.groupby( + by=["bus", "use_case"], dropna=False + ).apply(aggregate_charging_points_df) + + edisgo_obj.topology.charging_points_df = charging_points_df + + if aggregate_charging_points_mode: + charging_points_df.index = ( + "ChargingPoint_" + + charging_points_df.loc[:, "bus"].values + + "_" + + charging_points_df.loc[:, "use_case"].values + ) + + timeseries_charging_points_p_df = ( + edisgo_obj.timeseries.charging_points_active_power.T + ) + timeseries_charging_points_q_df = ( + edisgo_obj.timeseries.charging_points_reactive_power.T + ) + + charging_point_name_map_df = charging_points_df.loc[ + :, "old_charging_point_name" + ].to_dict() + + charging_point_name_map = {} + for i in range(0, len(charging_point_name_map_df.keys())): + for j in range(0, len(list(charging_point_name_map_df.values())[i])): + charging_point_name_map[ + list(charging_point_name_map_df.values())[i][j] + ] = list(charging_point_name_map_df.keys())[i] + + new_index = [] + for index in timeseries_charging_points_p_df.index.tolist(): + new_index.append(charging_point_name_map[index]) + + old_index = timeseries_charging_points_p_df.index.tolist() + rename_index = dict(zip(old_index, new_index)) + + timeseries_charging_points_p_df = timeseries_charging_points_p_df.rename( + index=rename_index + ) + timeseries_charging_points_q_df = timeseries_charging_points_q_df.rename( + index=rename_index + ) + + timeseries_charging_points_p_df = ( + timeseries_charging_points_p_df.groupby(level=0).sum().T + ) + timeseries_charging_points_q_df = ( + timeseries_charging_points_q_df.groupby(level=0).sum().T + ) + + edisgo_obj.timeseries.charging_points_active_power = ( + timeseries_charging_points_p_df + ) + edisgo_obj.timeseries.charging_points_reactive_power = ( + timeseries_charging_points_q_df + ) + + # apply busmap on transformers_df + logger.info("Manipulate transformers_df") + + def apply_busmap(series): + series.loc["bus0"] = busmap_df.loc[series.loc["bus0"], "new_bus"] + series.loc["bus1"] = busmap_df.loc[series.loc["bus1"], "new_bus"] + return series + + transformers_df = edisgo_obj.topology.transformers_df + transformers_df = transformers_df.apply(apply_busmap, axis="columns") + edisgo_obj.topology.transformers_df = transformers_df + + # manipulate switches_df + logger.info("Manipulate switches_df") + switches_df = edisgo_obj.topology.switches_df + + # drop switches unused switches + switches_to_drop = [] + for index, new_bus in zip(busmap_df.index, busmap_df.new_bus): + if (index.split("_")[0] == "virtual") and (new_bus.split("_")[0] != "virtual"): + switches_to_drop.append( + switches_df.loc[switches_df.bus_open == index].index[0] + ) + + if len(switches_to_drop) > 0: + logger.warning("Drop unused switches: {}".format(switches_to_drop)) + switches_df = switches_df.drop(switches_to_drop) + + # apply busmap + for index, bus_open, bus_closed in zip( + switches_df.index, switches_df.bus_open, switches_df.bus_closed + ): + switches_df.loc[index, "bus_closed"] = busmap_df.loc[bus_closed, "new_bus"] + switches_df.loc[index, "bus_open"] = busmap_df.loc[bus_open, "new_bus"] + + # drop switches which are not connected to any lines + # switches_to_drop = [] + # for index, row in switches_df.iterrows(): + # if ~(lines_df.bus0.isin([row.bus_open]).any() + # or lines_df.bus1.isin([row.bus_open]).any()): + # switches_to_drop.append(index) + # + # if len(switches_to_drop) > 0: + # logger.info('Drop switches which are not connected to any lines: {}'.format(switches_to_drop)) + # switches_df = switches_df.drop(switches_to_drop) + + # update the branches in switches_df + for index, bus_open, bus_closed in zip( + switches_df.index, switches_df.bus_open, switches_df.bus_closed + ): + if lines_df.bus0.isin([bus_open]).any(): + switches_df.loc[index, "branch"] = lines_df.loc[ + lines_df.bus0.isin([bus_open]) + ].index[0] + if lines_df.bus1.isin([bus_open]).any(): + switches_df.loc[index, "branch"] = lines_df.loc[ + lines_df.bus1.isin([bus_open]) + ].index[0] + + # remove duplicate switches_df + switches_df = switches_df.groupby( + by=["bus_closed", "bus_open", "branch"], as_index=False + ).first() + for index in switches_df.index.to_list(): + switches_df.loc[index, "name"] = "circuit_breaker_" + str(index) + if not switches_df.empty: + switches_df = switches_df.set_index("name") + + # write switches_df into object + edisgo_obj.topology.switches_df = switches_df + + # drop isolated nodes + # G = edisgo_obj.topology.mv_grid.graph + # isolated_nodes = list(nx.algorithms.isolate.isolates(G)) + # if len(isolated_nodes) > 0: + # logger.warning('The following isolated nodes are droped: {}'.format(isolated_nodes)) + # edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.drop(isolated_nodes) + + # make line_map_df + logger.info("Make line_map_df") + linemap_df = pd.DataFrame() + for new_line_name, old_line_names in zip(lines_df.index, lines_df.old_line_name): + for old_line_name in old_line_names: + linemap_df.loc[old_line_name, "new_line_name"] = new_line_name + + logger.info("Finished in {}s".format(time() - start_time)) + return edisgo_obj, linemap_df + + +# Postprocessing +def save_results_reduced_to_min_max(edisgo_root, edisgo_object_name): + edisgo_obj = copy.deepcopy(edisgo_root) + + def min_max(df): + min_df = df.min() + min_df.name = "min" + max_df = df.max() + max_df.name = "max" + + df = pd.concat([min_df, max_df], axis=1) + df = df.T + return df + + logger = logging.getLogger("edisgo.cr_reduce_results_to_min_max") + start_time = time() + logger.info("Start - Reduce results to min and max") + + edisgo_obj.results.v_res = min_max(edisgo_obj.results.v_res) + edisgo_obj.results.i_res = min_max(edisgo_obj.results.i_res) + edisgo_obj.results.pfa_p = min_max(edisgo_obj.results.pfa_p) + edisgo_obj.results.pfa_q = min_max(edisgo_obj.results.pfa_q) + + edisgo_obj.save( + edisgo_object_name, save_results=True, save_topology=True, save_timeseries=False + ) + + logger.info("Finished in {}s".format(time() - start_time)) + return edisgo_obj + + +# Analyze results +def length_analysis(edisgo_obj): + logger = logging.getLogger("edisgo.cr_length_analysis") + start_time = time() + logger.info("Start - Length analysis") + + length_total = edisgo_obj.topology.lines_df.length.sum() + mv_grid = edisgo_obj.topology.mv_grid + length_mv = mv_grid.lines_df.length.sum() + length_lv = length_total - length_mv + + logger.info("Total length of lines: {:.2f}km".format(length_total)) + logger.info("Total length of mv lines: {:.2f}km".format(length_mv)) + logger.info("Total length of lv lines: {:.2f}km".format(length_lv)) + + logger.info("Finished in {}s".format(time() - start_time)) + return length_total, length_mv, length_lv + + +def voltage_mapping(edisgo_root, edisgo_reduced, busmap_df, timestep): + logger = logging.getLogger("edisgo.cr_voltage_mapping") + start_time = time() + logger.info("Start - Voltage mapping") + + if timestep == "min": + logger.info("Voltage mapping for the minium values.") + v_root = edisgo_root.results.v_res.min() + v_reduced = edisgo_reduced.results.v_res.min() + elif timestep == "max": + logger.info("Voltage mapping for the maximum values.") + v_root = edisgo_root.results.v_res.max() + v_reduced = edisgo_reduced.results.v_res.max() + else: + logger.info("Voltage mapping for timestep {}.".format(timestep)) + v_root = edisgo_root.results.v_res.loc[timestep] + v_reduced = edisgo_reduced.results.v_res.loc[timestep] + + v_root.name = "v_root" + v_root = v_root.loc[busmap_df.index] + + voltages_df = v_root.to_frame() + + for index, row in voltages_df.iterrows(): + try: + voltages_df.loc[index, "v_reduced"] = v_reduced.loc[ + busmap_df.loc[index, "new_bus"] + ] + voltages_df.loc[index, "new_bus_name"] = busmap_df.loc[index, "new_bus"] + except KeyError: + voltages_df.loc[index, "v_reduced"] = v_reduced.loc[ + busmap_df.loc[index, "new_bus"].lstrip("virtual_") + ] + voltages_df.loc[index, "new_bus_name"] = busmap_df.loc[ + index, "new_bus" + ].lstrip("virtual_") + voltages_df.loc[:, "v_diff"] = ( + voltages_df.loc[:, "v_root"] - voltages_df.loc[:, "v_reduced"] + ) + rms = np.sqrt( + mean_squared_error( + voltages_df.loc[:, "v_root"], voltages_df.loc[:, "v_reduced"] + ) + ) + logger.info( + "Root mean square value between edisgo_root voltages and edisgo_reduced: v_rms = {:.2%}".format( + rms + ) + ) + + logger.info("Finished in {}s".format(time() - start_time)) + return voltages_df, rms + + +def line_apparent_power_mapping(edisgo_root, edisgo_reduced, linemap_df, timestep): + logger = logging.getLogger("edisgo.cr_line_apparent_power_mapping") + start_time = time() + logger.info("Start - Line apparent power mapping") + + if timestep == "min": + logger.info("Apparent power mapping for the minium values.") + s_root = edisgo_root.results.s_res.min() + s_reduced = edisgo_reduced.results.s_res.min() + elif timestep == "max": + logger.info("Apparent power mapping for the maximum values.") + s_root = edisgo_root.results.s_res.max() + s_reduced = edisgo_reduced.results.s_res.max() + else: + logger.info("Apparent power mapping for timestep {}.".format(timestep)) + s_root = edisgo_root.results.s_res.loc[timestep] + s_reduced = edisgo_reduced.results.s_res.loc[timestep] + + s_root.name = "s_root" + s_root = s_root.loc[linemap_df.index] + + s_df = s_root.to_frame() + + for index, row in s_df.iterrows(): + s_df.loc[index, "s_reduced"] = s_reduced.loc[linemap_df.loc[index][0]] + s_df.loc[index, "new_bus_name"] = linemap_df.loc[index][0] + s_df.loc[:, "s_diff"] = s_df.loc[:, "s_root"] - s_df.loc[:, "s_reduced"] + rms = np.sqrt(mean_squared_error(s_df.loc[:, "s_root"], s_df.loc[:, "s_reduced"])) + logger.info( + "Root mean square value between edisgo_root s_res and edisgo_reduced: s_rms = {:.2}".format( + rms + ) + ) + + logger.info("Finished in {}s".format(time() - start_time)) + return s_df, rms + + +# Functions for other functions +coor_transform = Transformer.from_crs("EPSG:4326", "EPSG:3035", always_xy=True) +coor_transform_back = Transformer.from_crs("EPSG:3035", "EPSG:4326", always_xy=True) + + +def make_grid_list(edisgo_obj, grid): + if edisgo_obj is None and grid is None: + raise ValueError("Pass an Grid") + elif grid is not None: + grid_name_list = [str(edisgo_obj.topology.mv_grid)] + grid_name_list = grid_name_list + list( + map(str, edisgo_obj.topology.mv_grid.lv_grids) + ) + grid_list = [edisgo_obj.topology.mv_grid] + grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) + grid_list = [grid_list[grid_name_list.index(str(grid))]] + else: + grid_list = [edisgo_obj.topology.mv_grid] + grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) + + return grid_list + + +def find_buses_of_interest(edisgo_root): + logger = logging.getLogger("edisgo.cr_find_buses_of_interest") + start_time = time() + logger.info("Start - Find buses of interest") + + edisgo_wc = copy.deepcopy(edisgo_root) + edisgo_wc.timeseries = timeseries.TimeSeries() + timeseries.get_component_timeseries(edisgo_obj=edisgo_wc, mode="worst-case") + edisgo_wc.analyze() + + buses_of_interest = set() + mv_lines = checks.mv_line_load(edisgo_wc) + lv_lines = checks.lv_line_load(edisgo_wc) + lines = mv_lines.index.tolist() + lines = lines + lv_lines.index.tolist() + for line in lines: + buses_of_interest.add(edisgo_wc.topology.lines_df.loc[line, "bus0"]) + buses_of_interest.add(edisgo_wc.topology.lines_df.loc[line, "bus1"]) + + mv_buses = checks.mv_voltage_deviation(edisgo_wc, voltage_levels="mv") + for value in mv_buses.values(): + buses_of_interest.update(value.index.tolist()) + + lv_buses = checks.lv_voltage_deviation(edisgo_wc, voltage_levels="lv") + for value in lv_buses.values(): + buses_of_interest.update(value.index.tolist()) + + logger.info("Finished in {}s".format(time() - start_time)) + return buses_of_interest + + +def rename_virtual_buses(logger, partial_busmap_df, transformer_node): + nodes = partial_busmap_df.index.to_list() + pairs = [] + for node in nodes: + if node.split("_")[0] == "virtual": + if ( + partial_busmap_df.loc[node, "new_bus"] + != partial_busmap_df.loc[node.lstrip("virtual_"), "new_bus"] + ): + pairs.append([node, node.lstrip("virtual_")]) + + logger.debug("Pairs: {}".format(pairs)) + logger.debug("Length pairs: {}".format(len(pairs))) + if len(pairs) > 0: + logger.info("Rename virtual buses") + for feeder_virtual, feeder_non_virtual in pairs: + old_name_of_virtual_node = partial_busmap_df.loc[feeder_virtual, "new_bus"] + nodes_in_the_same_cluster_as_virtual_node = partial_busmap_df.loc[ + partial_busmap_df.loc[:, "new_bus"].isin([old_name_of_virtual_node]) + ].index.tolist() + + for nodes_to_add_a_virtual in nodes_in_the_same_cluster_as_virtual_node: + # Stop making a virtual transformer bus + # Stop renaming the transformer bus + if ( + partial_busmap_df.loc[feeder_non_virtual, "new_bus"] + != transformer_node + ) and ( + partial_busmap_df.loc[nodes_to_add_a_virtual, "new_bus"] + != transformer_node + ): + + partial_busmap_df.loc[nodes_to_add_a_virtual, "new_bus"] = ( + "virtual_" + + partial_busmap_df.loc[feeder_non_virtual, "new_bus"] + ) + return partial_busmap_df From 199f84428a107f0dbc8428f3228c7c8a632e0971 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Mon, 5 Dec 2022 09:55:00 +0100 Subject: [PATCH 125/355] Update spatial_complexity_reduction.py to new eDisGo version --- edisgo/tools/spatial_complexity_reduction.py | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index c79de1139..6c8dd6ded 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -224,9 +224,9 @@ def apply_busmap(series): generators_df = generators_df.apply(apply_busmap, axis="columns") edisgo_obj.topology.generators_df = generators_df - charging_points_df = edisgo_obj.topology.charging_points_df.copy() - charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") - edisgo_obj.topology.charging_points_df = charging_points_df + #charging_points_df = edisgo_obj.topology.charging_points_df.copy() + #charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") + #edisgo_obj.topology.charging_points_df = charging_points_df logger.info("Finished in {}s".format(time() - start_time)) return edisgo_obj @@ -904,10 +904,10 @@ def calculate_weighting(series): edisgo_obj.topology.generators_df.bus.isin(buses), "p_nom" ].sum() p_load = edisgo_obj.topology.loads_df.loc[ - edisgo_obj.topology.loads_df.bus.isin(buses), "peak_load" + edisgo_obj.topology.loads_df.bus.isin(buses), "p_set" ].sum() p_charge = edisgo_obj.topology.charging_points_df.loc[ - edisgo_obj.topology.charging_points_df.bus.isin(buses), "p_nom" + edisgo_obj.topology.charging_points_df.bus.isin(buses), "p_set" ].sum() if str(grid).split("_")[0] == "MVGrid": s_tran = edisgo_obj.topology.transformers_df.loc[ @@ -1202,7 +1202,7 @@ def short_coordinates(root_node, end_node, branch_length, node_number): graph_root, bus, cutoff=None, weight="length" ) ) - dijkstra_distances_df.loc[:, bus] = path_series + dijkstra_distances_df[bus] = path_series feeder_buses_df.loc[:, "medoid"] = dijkstra_distances_df.idxmin( axis=1 @@ -1569,6 +1569,7 @@ def aggregate_lines_df(df): series.loc["bus1"] = bus1 series.loc["x"] = x series.loc["r"] = r + series.loc["b"] = 0.0 series.loc["s_nom"] = df["s_nom"].sum() series.loc["num_parallel"] = int(df.loc[:, "num_parallel"].sum()) series.loc["type_info"] = type_info @@ -1615,7 +1616,7 @@ def apply_busmap(series): def aggregate_loads(df): series = pd.Series(index=df.columns, dtype="object") # l.values[0], series.loc["bus"] = df.loc[:, "bus"].values[0] - series.loc["peak_load"] = df.loc[:, "peak_load"].sum() + series.loc["p_set"] = df.loc[:, "p_set"].sum() series.loc["annual_consumption"] = df.loc[:, "annual_consumption"].sum() if load_aggregation_mode == "sector": series.loc["sector"] = df.loc[:, "sector"].values[0] @@ -1783,7 +1784,7 @@ def extract_weather_cell_id(series): def aggregate_charging_points_df(df): series = pd.Series(dtype="object") series.loc["bus"] = df.loc[:, "bus"].values[0] - series.loc["p_nom"] = df.loc[:, "p_nom"].sum() + series.loc["p_set"] = df.loc[:, "p_set"].sum() series.loc["use_case"] = df.loc[:, "use_case"].values[0] series.loc["old_charging_point_name"] = df.index.tolist() return series @@ -2113,7 +2114,7 @@ def find_buses_of_interest(edisgo_root): edisgo_wc = copy.deepcopy(edisgo_root) edisgo_wc.timeseries = timeseries.TimeSeries() - timeseries.get_component_timeseries(edisgo_obj=edisgo_wc, mode="worst-case") + edisgo_wc.timeseries.set_worst_case(edisgo_wc, ['feed-in_case', 'load_case'] ) edisgo_wc.analyze() buses_of_interest = set() From c26a07c2132fd01aa8a7ccb0cf61ccfcc8d2decd Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Mon, 12 Dec 2022 14:55:30 +0100 Subject: [PATCH 126/355] Add option to don't aggregate loads and generators at the bus. --- edisgo/tools/spatial_complexity_reduction.py | 340 ++++++++++--------- 1 file changed, 174 insertions(+), 166 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 6c8dd6ded..96e96f6a6 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -224,9 +224,9 @@ def apply_busmap(series): generators_df = generators_df.apply(apply_busmap, axis="columns") edisgo_obj.topology.generators_df = generators_df - #charging_points_df = edisgo_obj.topology.charging_points_df.copy() - #charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") - #edisgo_obj.topology.charging_points_df = charging_points_df + # charging_points_df = edisgo_obj.topology.charging_points_df.copy() + # charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") + # edisgo_obj.topology.charging_points_df = charging_points_df logger.info("Finished in {}s".format(time() - start_time)) return edisgo_obj @@ -1403,7 +1403,7 @@ def make_remaining_busmap(busmap_df, edisgo_root): return busmap_df -def reduce_edisgo(edisgo_root, busmap_df, aggregate_charging_points_mode=True): +def reduce_edisgo(edisgo_root, busmap_df, aggregation_mode=True): logger = logging.getLogger("edisgo.cr_reduce_edisgo") start_time = time() logger.info("Start - Reducing edisgo object") @@ -1422,7 +1422,7 @@ def apply_busmap_df(series): lines_df = edisgo_obj.topology.lines_df loads_changed_df = edisgo_obj.topology.loads_df generators_changed_df = edisgo_obj.topology.generators_df - charging_points_df = edisgo_obj.topology.charging_points_df + # charging_points_df = edisgo_obj.topology.charging_points_df slack_bus = edisgo_obj.topology.transformers_hvmv_df.bus1[0] # manipulate buses_df @@ -1628,55 +1628,58 @@ def aggregate_loads(df): if not loads_changed_df.empty: logger.info("Manipulate loads") loads_changed_df = loads_changed_df.apply(apply_busmap, axis="columns") - - if load_aggregation_mode == "sector": - loads_changed_df = loads_changed_df.groupby(by=["bus", "sector"]).apply( - aggregate_loads - ) - loads_changed_df.index = ( - "Load_" - + loads_changed_df.loc[:, "bus"] - + "_" - + loads_changed_df.loc[:, "sector"] - ) - elif load_aggregation_mode == "bus": - loads_changed_df = loads_changed_df.groupby("bus").apply(aggregate_loads) - loads_changed_df.index = "Load_" + loads_changed_df.loc[:, "bus"] + if aggregation_mode: + if load_aggregation_mode == "sector": + loads_changed_df = loads_changed_df.groupby(by=["bus", "sector"]).apply( + aggregate_loads + ) + loads_changed_df.index = ( + "Load_" + + loads_changed_df.loc[:, "bus"] + + "_" + + loads_changed_df.loc[:, "sector"] + ) + elif load_aggregation_mode == "bus": + loads_changed_df = loads_changed_df.groupby("bus").apply( + aggregate_loads + ) + loads_changed_df.index = "Load_" + loads_changed_df.loc[:, "bus"] edisgo_obj.topology.loads_df = loads_changed_df - edisgo_obj.topology.loads_df.index.name = "name" + if aggregation_mode: + edisgo_obj.topology.loads_df.index.name = "name" - # aggregate load timeseries - load_name_map_df = edisgo_obj.topology.loads_df.loc[ - :, "old_load_name" - ].to_dict() - load_name_map = {} - for i in range(0, len(load_name_map_df.keys())): - for j in range(0, len(list(load_name_map_df.values())[i])): - load_name_map[list(load_name_map_df.values())[i][j]] = list( - load_name_map_df.keys() - )[i] - # return load_name_map + # aggregate load timeseries + load_name_map_df = edisgo_obj.topology.loads_df.loc[ + :, "old_load_name" + ].to_dict() + load_name_map = {} + for i in range(0, len(load_name_map_df.keys())): + for j in range(0, len(list(load_name_map_df.values())[i])): + load_name_map[list(load_name_map_df.values())[i][j]] = list( + load_name_map_df.keys() + )[i] + # return load_name_map - timeseries_loads_p_df = edisgo_obj.timeseries.loads_active_power.T - timeseries_loads_q_df = edisgo_obj.timeseries.loads_reactive_power.T + timeseries_loads_p_df = edisgo_obj.timeseries.loads_active_power.T + timeseries_loads_q_df = edisgo_obj.timeseries.loads_reactive_power.T - new_index = [] - for i in range(0, timeseries_loads_p_df.shape[0]): - new_load_name = load_name_map[timeseries_loads_p_df.index[i]] - new_index.append(new_load_name) + new_index = [] + for i in range(0, timeseries_loads_p_df.shape[0]): + new_load_name = load_name_map[timeseries_loads_p_df.index[i]] + new_index.append(new_load_name) - old_index = timeseries_loads_p_df.index.tolist() - rename_index = dict(zip(old_index, new_index)) + old_index = timeseries_loads_p_df.index.tolist() + rename_index = dict(zip(old_index, new_index)) - timeseries_loads_p_df = timeseries_loads_p_df.rename(index=rename_index) - timeseries_loads_q_df = timeseries_loads_q_df.rename(index=rename_index) - edisgo_obj.timeseries.loads_active_power = ( - timeseries_loads_p_df.groupby(level=0).sum().T - ) - edisgo_obj.timeseries.loads_reactive_power = ( - timeseries_loads_q_df.groupby(level=0).sum().T - ) + timeseries_loads_p_df = timeseries_loads_p_df.rename(index=rename_index) + timeseries_loads_q_df = timeseries_loads_q_df.rename(index=rename_index) + edisgo_obj.timeseries.loads_active_power = ( + timeseries_loads_p_df.groupby(level=0).sum().T + ) + edisgo_obj.timeseries.loads_reactive_power = ( + timeseries_loads_q_df.groupby(level=0).sum().T + ) # aggregate generators generator_aggregation_mode = "type" @@ -1716,143 +1719,148 @@ def extract_weather_cell_id(series): apply_busmap, axis="columns" ) - if generator_aggregation_mode == "bus": - generators_changed_df = generators_changed_df.groupby("bus").apply( - aggregate_generators_df - ) - generators_changed_df.index = ( - "Generator_" + generators_changed_df.loc[:, "bus"] - ) - elif generator_aggregation_mode == "type": - generators_changed_df = generators_changed_df.groupby( - by=["bus", "type", "weather_cell_id"], dropna=False - ).apply(aggregate_generators_df) - generators_changed_df.index = ( - "Generator_" - + generators_changed_df.loc[:, "bus"].values - + "_" - + generators_changed_df.loc[:, "type"].values - + "_weather_cell_id_" - + generators_changed_df.loc[:, "weather_cell_id"] - .apply(extract_weather_cell_id) - .values - ) + if aggregation_mode: + if generator_aggregation_mode == "bus": + generators_changed_df = generators_changed_df.groupby("bus").apply( + aggregate_generators_df + ) + generators_changed_df.index = ( + "Generator_" + generators_changed_df.loc[:, "bus"] + ) + elif generator_aggregation_mode == "type": + generators_changed_df = generators_changed_df.groupby( + by=["bus", "type", "weather_cell_id"], dropna=False + ).apply(aggregate_generators_df) + generators_changed_df.index = ( + "Generator_" + + generators_changed_df.loc[:, "bus"].values + + "_" + + generators_changed_df.loc[:, "type"].values + + "_weather_cell_id_" + + generators_changed_df.loc[:, "weather_cell_id"] + .apply(extract_weather_cell_id) + .values + ) edisgo_obj.topology.generators_df = generators_changed_df - - timeseries_generators_p_df = edisgo_obj.timeseries.generators_active_power.T - timeseries_generators_q_df = edisgo_obj.timeseries.generators_reactive_power.T - - generator_name_map_df = edisgo_obj.topology.generators_df.loc[ - :, "old_generator_name" - ].to_dict() - # return generator_name_map_df - generator_name_map = {} - for i in range(0, len(generator_name_map_df.keys())): - for j in range(0, len(list(generator_name_map_df.values())[i])): - generator_name_map[list(generator_name_map_df.values())[i][j]] = list( - generator_name_map_df.keys() - )[i] - - # return generator_name_map - new_index = [] - for i in range(0, timeseries_generators_p_df.shape[0]): - new_generator_name = generator_name_map[timeseries_generators_p_df.index[i]] - new_index.append(new_generator_name) - - old_index = timeseries_generators_p_df.index.tolist() - rename_index = dict(zip(old_index, new_index)) - - timeseries_generators_p_df = timeseries_generators_p_df.rename( - index=rename_index - ) - timeseries_generators_q_df = timeseries_generators_q_df.rename( - index=rename_index - ) - - edisgo_obj.timeseries.generators_active_power = ( - timeseries_generators_p_df.groupby(level=0).sum().T - ) - - edisgo_obj.timeseries.generators_reactive_power = ( - timeseries_generators_q_df.groupby(level=0).sum().T - ) - - if not charging_points_df.empty: - logger.info("Manipulate charging points") - - def aggregate_charging_points_df(df): - series = pd.Series(dtype="object") - series.loc["bus"] = df.loc[:, "bus"].values[0] - series.loc["p_set"] = df.loc[:, "p_set"].sum() - series.loc["use_case"] = df.loc[:, "use_case"].values[0] - series.loc["old_charging_point_name"] = df.index.tolist() - return series - - charging_points_df = edisgo_obj.topology.charging_points_df - charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") - - if aggregate_charging_points_mode: - charging_points_df = charging_points_df.groupby( - by=["bus", "use_case"], dropna=False - ).apply(aggregate_charging_points_df) - - edisgo_obj.topology.charging_points_df = charging_points_df - - if aggregate_charging_points_mode: - charging_points_df.index = ( - "ChargingPoint_" - + charging_points_df.loc[:, "bus"].values - + "_" - + charging_points_df.loc[:, "use_case"].values - ) - - timeseries_charging_points_p_df = ( - edisgo_obj.timeseries.charging_points_active_power.T - ) - timeseries_charging_points_q_df = ( - edisgo_obj.timeseries.charging_points_reactive_power.T + if aggregation_mode: + timeseries_generators_p_df = edisgo_obj.timeseries.generators_active_power.T + timeseries_generators_q_df = ( + edisgo_obj.timeseries.generators_reactive_power.T ) - charging_point_name_map_df = charging_points_df.loc[ - :, "old_charging_point_name" + generator_name_map_df = edisgo_obj.topology.generators_df.loc[ + :, "old_generator_name" ].to_dict() - - charging_point_name_map = {} - for i in range(0, len(charging_point_name_map_df.keys())): - for j in range(0, len(list(charging_point_name_map_df.values())[i])): - charging_point_name_map[ - list(charging_point_name_map_df.values())[i][j] - ] = list(charging_point_name_map_df.keys())[i] - + # return generator_name_map_df + generator_name_map = {} + for i in range(0, len(generator_name_map_df.keys())): + for j in range(0, len(list(generator_name_map_df.values())[i])): + generator_name_map[ + list(generator_name_map_df.values())[i][j] + ] = list(generator_name_map_df.keys())[i] + + # return generator_name_map new_index = [] - for index in timeseries_charging_points_p_df.index.tolist(): - new_index.append(charging_point_name_map[index]) + for i in range(0, timeseries_generators_p_df.shape[0]): + new_generator_name = generator_name_map[ + timeseries_generators_p_df.index[i] + ] + new_index.append(new_generator_name) - old_index = timeseries_charging_points_p_df.index.tolist() + old_index = timeseries_generators_p_df.index.tolist() rename_index = dict(zip(old_index, new_index)) - timeseries_charging_points_p_df = timeseries_charging_points_p_df.rename( + timeseries_generators_p_df = timeseries_generators_p_df.rename( index=rename_index ) - timeseries_charging_points_q_df = timeseries_charging_points_q_df.rename( + timeseries_generators_q_df = timeseries_generators_q_df.rename( index=rename_index ) - timeseries_charging_points_p_df = ( - timeseries_charging_points_p_df.groupby(level=0).sum().T - ) - timeseries_charging_points_q_df = ( - timeseries_charging_points_q_df.groupby(level=0).sum().T + edisgo_obj.timeseries.generators_active_power = ( + timeseries_generators_p_df.groupby(level=0).sum().T ) - edisgo_obj.timeseries.charging_points_active_power = ( - timeseries_charging_points_p_df - ) - edisgo_obj.timeseries.charging_points_reactive_power = ( - timeseries_charging_points_q_df + edisgo_obj.timeseries.generators_reactive_power = ( + timeseries_generators_q_df.groupby(level=0).sum().T ) + # if not charging_points_df.empty: + # logger.info("Manipulate charging points") + # + # def aggregate_charging_points_df(df): + # series = pd.Series(dtype="object") + # series.loc["bus"] = df.loc[:, "bus"].values[0] + # series.loc["p_set"] = df.loc[:, "p_set"].sum() + # series.loc["use_case"] = df.loc[:, "use_case"].values[0] + # series.loc["old_charging_point_name"] = df.index.tolist() + # return series + # + # charging_points_df = edisgo_obj.topology.charging_points_df + # charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") + # + # if aggregate_charging_points_mode: + # charging_points_df = charging_points_df.groupby( + # by=["bus", "use_case"], dropna=False + # ).apply(aggregate_charging_points_df) + # + # edisgo_obj.topology.charging_points_df = charging_points_df + # + # if aggregate_charging_points_mode: + # charging_points_df.index = ( + # "ChargingPoint_" + # + charging_points_df.loc[:, "bus"].values + # + "_" + # + charging_points_df.loc[:, "use_case"].values + # ) + # + # timeseries_charging_points_p_df = ( + # edisgo_obj.timeseries.charging_points_active_power.T + # ) + # timeseries_charging_points_q_df = ( + # edisgo_obj.timeseries.charging_points_reactive_power.T + # ) + # + # charging_point_name_map_df = charging_points_df.loc[ + # :, "old_charging_point_name" + # ].to_dict() + # + # charging_point_name_map = {} + # for i in range(0, len(charging_point_name_map_df.keys())): + # for j in range(0, len(list(charging_point_name_map_df.values())[i])): + # charging_point_name_map[ + # list(charging_point_name_map_df.values())[i][j] + # ] = list(charging_point_name_map_df.keys())[i] + # + # new_index = [] + # for index in timeseries_charging_points_p_df.index.tolist(): + # new_index.append(charging_point_name_map[index]) + # + # old_index = timeseries_charging_points_p_df.index.tolist() + # rename_index = dict(zip(old_index, new_index)) + # + # timeseries_charging_points_p_df = timeseries_charging_points_p_df.rename( + # index=rename_index + # ) + # timeseries_charging_points_q_df = timeseries_charging_points_q_df.rename( + # index=rename_index + # ) + # + # timeseries_charging_points_p_df = ( + # timeseries_charging_points_p_df.groupby(level=0).sum().T + # ) + # timeseries_charging_points_q_df = ( + # timeseries_charging_points_q_df.groupby(level=0).sum().T + # ) + # + # edisgo_obj.timeseries.charging_points_active_power = ( + # timeseries_charging_points_p_df + # ) + # edisgo_obj.timeseries.charging_points_reactive_power = ( + # timeseries_charging_points_q_df + # ) + # apply busmap on transformers_df logger.info("Manipulate transformers_df") From bd0c41ae644aa9191fc9ffd4c20c44afe21d4943 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Mon, 12 Dec 2022 14:57:38 +0100 Subject: [PATCH 127/355] Fix flake8 problems --- edisgo/tools/spatial_complexity_reduction.py | 33 ++++++++++---------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 96e96f6a6..1b1672486 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -1,7 +1,6 @@ import copy import logging import math -import os from time import time @@ -58,7 +57,8 @@ def apply_busmap(series): ) ) if row.length == 0.001: - # find lines that have at one bus only one neighbor and at the other more than one + # find lines that have at one bus only one neighbor + # and at the other more than one number_of_neighbors_bus0 = G.degree(row.bus0) number_of_neighbors_bus1 = G.degree(row.bus1) if ( @@ -538,7 +538,6 @@ def rename_new_buses(series): busmap_df = pd.DataFrame() for grid in grid_list: - grid_id = grid.id v_grid = grid.nominal_voltage logger.debug("Make busmap for grid: {}, v_nom={}".format(grid, v_grid)) @@ -1451,9 +1450,8 @@ def remove_lines_with_the_same_bus(series): and series.bus1.lstrip("virtual_") == slack_bus ): logger.debug( - "Drop line because it is connected to the virtual_slack bus \n{}".format( - series.name - ) + "Drop line because it is connected to " + "the virtual_slack bus \n{}".format(series.name) ) return @@ -1904,7 +1902,8 @@ def apply_busmap(series): # switches_to_drop.append(index) # # if len(switches_to_drop) > 0: - # logger.info('Drop switches which are not connected to any lines: {}'.format(switches_to_drop)) + # logger.info('Drop switches which are ' + # 'not connected to any lines: {}'.format(switches_to_drop)) # switches_df = switches_df.drop(switches_to_drop) # update the branches in switches_df @@ -1936,8 +1935,12 @@ def apply_busmap(series): # G = edisgo_obj.topology.mv_grid.graph # isolated_nodes = list(nx.algorithms.isolate.isolates(G)) # if len(isolated_nodes) > 0: - # logger.warning('The following isolated nodes are droped: {}'.format(isolated_nodes)) - # edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.drop(isolated_nodes) + # logger.warning( + # "The following isolated nodes are droped: {}".format(isolated_nodes) + # ) + # edisgo_obj.topology.buses_df = ( + # edisgo_obj.topology.buses_df.drop(isolated_nodes) + # ) # make line_map_df logger.info("Make line_map_df") @@ -2045,9 +2048,8 @@ def voltage_mapping(edisgo_root, edisgo_reduced, busmap_df, timestep): ) ) logger.info( - "Root mean square value between edisgo_root voltages and edisgo_reduced: v_rms = {:.2%}".format( - rms - ) + "Root mean square value between edisgo_root " + "voltages and edisgo_reduced: v_rms = {:.2%}".format(rms) ) logger.info("Finished in {}s".format(time() - start_time)) @@ -2083,9 +2085,8 @@ def line_apparent_power_mapping(edisgo_root, edisgo_reduced, linemap_df, timeste s_df.loc[:, "s_diff"] = s_df.loc[:, "s_root"] - s_df.loc[:, "s_reduced"] rms = np.sqrt(mean_squared_error(s_df.loc[:, "s_root"], s_df.loc[:, "s_reduced"])) logger.info( - "Root mean square value between edisgo_root s_res and edisgo_reduced: s_rms = {:.2}".format( - rms - ) + "Root mean square value between edisgo_root " + "s_res and edisgo_reduced: s_rms = {:.2}".format(rms) ) logger.info("Finished in {}s".format(time() - start_time)) @@ -2122,7 +2123,7 @@ def find_buses_of_interest(edisgo_root): edisgo_wc = copy.deepcopy(edisgo_root) edisgo_wc.timeseries = timeseries.TimeSeries() - edisgo_wc.timeseries.set_worst_case(edisgo_wc, ['feed-in_case', 'load_case'] ) + edisgo_wc.timeseries.set_worst_case(edisgo_wc, ["feed-in_case", "load_case"]) edisgo_wc.analyze() buses_of_interest = set() From 041f54aaf69cf095ca4994b6f976f2c9e3e78688 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 21 Mar 2023 10:45:45 +0100 Subject: [PATCH 128/355] Minor docstring fixes --- edisgo/edisgo.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index f2aca4dc0..0477a9267 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -842,7 +842,7 @@ def import_generators(self, generator_scenario=None, **kwargs): Other Parameters ---------------- kwargs : - In case you are using new ing0 grids, where the LV is geo-referenced, a + In case you are using new ding0 grids, where the LV is geo-referenced, a database engine needs to be provided through keyword argument `engine`. In case you are using old ding0 grids, where the LV is not geo-referenced, you can check :func:`edisgo.io.generators_import.oedb_legacy` for possible @@ -1882,14 +1882,6 @@ def import_heat_pumps(self, scenario, engine, timeindex=None): are 'eGon2035' and 'eGon100RE'. engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. - year : int or None - Year to index COP and heat demand data by. - If none is provided and :py:attr:`~.network.timeseries.TimeSeries.timeindex` - is already set, data is indexed by the same year. Otherwise, time index will - be set according to the scenario (2035 in case of the 'eGon2035' scenario - and 2045 in case of the 'eGon100RE' scenario). - A leap year can currently not be handled. In case a leap year is given, the - time index is set according to the chosen scenario. timeindex : :pandas:`pandas.DatetimeIndex` or None Specifies time steps for which to set COP and heat demand data. Leap years can currently not be handled. In case the given From 11a804c0a1ba00b6be929aca642a61b0c45c5f3e Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Mon, 20 Mar 2023 17:06:27 +0100 Subject: [PATCH 129/355] Fix nondeterministic behaviour and add tests --- edisgo/tools/spatial_complexity_reduction.py | 236 ++++++++---------- .../test_spatial_complexity_reduction.py | 179 +++++++++++++ 2 files changed, 278 insertions(+), 137 deletions(-) create mode 100644 tests/tools/test_spatial_complexity_reduction.py diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 1b1672486..9cc39339f 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -2,6 +2,7 @@ import logging import math +from hashlib import md5 from time import time import networkx as nx @@ -16,6 +17,11 @@ from edisgo.network import timeseries +def hash_df(df): + s = df.to_json() + return md5(s.encode()).hexdigest() + + # Preprocessing def remove_one_meter_lines(edisgo_root): def apply_busmap_on_buses_df(series): @@ -236,7 +242,7 @@ def aggregate_to_bus(edisgo_root, aggregate_charging_points_mode=True): def aggregate_loads(df): series = pd.Series(index=df.columns, dtype="object") series.loc["bus"] = df.loc[:, "bus"].values[0] - series.loc["peak_load"] = df.loc[:, "peak_load"].sum() + series.loc["p_set"] = df.loc[:, "p_set"].sum() series.loc["annual_consumption"] = df.loc[:, "annual_consumption"].sum() if load_aggregation_mode == "sector": series.loc["sector"] = df.loc[:, "sector"].values[0] @@ -476,10 +482,10 @@ def calculate_weighting(series): edisgo_obj.topology.generators_df.bus == series.name, "p_nom" ].sum() p_load = edisgo_obj.topology.loads_df.loc[ - edisgo_obj.topology.loads_df.bus == series.name, "peak_load" + edisgo_obj.topology.loads_df.bus == series.name, "p_set" ].sum() p_charge = edisgo_obj.topology.charging_points_df.loc[ - edisgo_obj.topology.charging_points_df.bus == series.name, "p_nom" + edisgo_obj.topology.charging_points_df.bus == series.name, "p_set" ].sum() if str(grid).split("_")[0] == "MVGrid": s_tran = edisgo_obj.topology.transformers_df.loc[ @@ -649,8 +655,7 @@ def make_busmap_from_feeders( grid=None, mode=None, reduction_factor=None, - focus_mode=False, - reduction_factor_not_focused_feeder=0, + reduction_factor_not_focused=0, ): def make_name(number_of_feeder_node): if number_of_feeder_node == 0: @@ -686,10 +691,10 @@ def calculate_weighting(series): edisgo_obj.topology.generators_df.bus.isin(buses), "p_nom" ].sum() p_load = edisgo_obj.topology.loads_df.loc[ - edisgo_obj.topology.loads_df.bus.isin(buses), "peak_load" + edisgo_obj.topology.loads_df.bus.isin(buses), "p_set" ].sum() p_charge = edisgo_obj.topology.charging_points_df.loc[ - edisgo_obj.topology.charging_points_df.bus.isin(buses), "p_nom" + edisgo_obj.topology.charging_points_df.bus.isin(buses), "p_set" ].sum() if str(grid).split("_")[0] == "MVGrid": s_tran = edisgo_obj.topology.transformers_df.loc[ @@ -729,6 +734,11 @@ def transform_coordinates_back(ser): busmap_df = pd.DataFrame() mvgd_id = edisgo_obj.topology.mv_grid.id + if reduction_factor_not_focused is False: + focus_mode = False + else: + focus_mode = True + if focus_mode: buses_of_interest = find_buses_of_interest(edisgo_obj) @@ -745,6 +755,7 @@ def transform_coordinates_back(ser): logger.debug("Transformer node: {}".format(transformer_node)) neighbors = list(nx.neighbors(graph_root, transformer_node)) + neighbors.sort() logger.debug( "Transformer neighbors has {} neighbors: {}".format( len(neighbors), neighbors @@ -762,13 +773,18 @@ def transform_coordinates_back(ser): partial_busmap_df.loc[index, ["new_x", "new_y"]] = coordinates number_of_feeder = 0 - for feeder_nodes in nx.connected_components(graph_without_transformer): + feeder_graphs = list(nx.connected_components(graph_without_transformer)) + feeder_graphs.sort() + for feeder_nodes in feeder_graphs: + feeder_nodes = list(feeder_nodes) + feeder_nodes.sort() + feeder_buses_df = grid.buses_df.loc[feeder_nodes, :] # return feeder_buses_df feeder_buses_df = feeder_buses_df.apply(calculate_weighting, axis="columns") if focus_mode: - selected_reduction_factor = reduction_factor_not_focused_feeder + selected_reduction_factor = reduction_factor_not_focused for bus in feeder_nodes: if bus in buses_of_interest: selected_reduction_factor = reduction_factor @@ -856,7 +872,7 @@ def transform_coordinates_back(ser): busmap_df = pd.concat([busmap_df, partial_busmap_df]) busmap_df = busmap_df.apply(transform_coordinates_back, axis="columns") - + busmap_df.sort_index(inplace=True) logger.info("Finished in {}s".format(time() - start_time)) return busmap_df @@ -866,8 +882,7 @@ def make_busmap_from_main_feeders( grid=None, mode=None, reduction_factor=None, - focus_mode=False, - reduction_factor_not_focused_feeder=0, + reduction_factor_not_focused=0, ): def make_name(number_of_feeder_node): if number_of_feeder_node == 0: @@ -952,6 +967,11 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): busmap_df = pd.DataFrame() mvgd_id = edisgo_obj.topology.mv_grid.id + if reduction_factor_not_focused is False: + focus_mode = False + else: + focus_mode = True + if focus_mode: buses_of_interest = find_buses_of_interest(edisgo_obj) @@ -968,6 +988,7 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): logger.debug("Transformer node: {}".format(transformer_node)) neighbors = list(nx.neighbors(graph_root, transformer_node)) + neighbors.sort() logger.debug( "Transformer neighbors has {} neighbors: {}".format( len(neighbors), neighbors @@ -1032,7 +1053,7 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): partial_busmap_df.loc[node_to_delete, ["new_x", "new_y"]] = coordinates # Advanced method - if mode == "feeder_replacement_with_equidistant_nodes": + if mode == "equidistant_nodes": def short_coordinates(root_node, end_node, branch_length, node_number): angle = math.degrees( @@ -1057,7 +1078,7 @@ def short_coordinates(root_node, end_node, branch_length, node_number): # Calculate nodes per feeder if focus_mode: - selected_reduction_factor = reduction_factor_not_focused_feeder + selected_reduction_factor = reduction_factor_not_focused for node in feeder.path[1:]: buses = partial_busmap_df.loc[ partial_busmap_df.new_bus.isin([node]) @@ -1084,7 +1105,7 @@ def short_coordinates(root_node, end_node, branch_length, node_number): new_feeder = np.zeros(nodes_per_feeder + 1) for n in range(0, new_feeder.shape[0]): new_feeder[n] = n * branch_length - old_feeder = np.zeros(feeder.number_of_nodes_in_path + 1, dtype=np.int) + old_feeder = np.zeros(feeder.number_of_nodes_in_path + 1, dtype=int) node_number = 0 for node in feeder.path: distance_from_transformer = nx.shortest_path_length( @@ -1130,7 +1151,7 @@ def short_coordinates(root_node, end_node, branch_length, node_number): ) if focus_mode: - selected_reduction_factor = reduction_factor_not_focused_feeder + selected_reduction_factor = reduction_factor_not_focused for node in feeder_buses_df.index.to_list(): buses = partial_busmap_df.loc[ partial_busmap_df.new_bus.isin([node]) @@ -1239,143 +1260,58 @@ def short_coordinates(root_node, end_node, branch_length, node_number): return busmap_df -def make_busmap(edisgo_root=None, mode=None, reduction_factor=None, grid=None): - if mode == "km": - busmap_df = make_busmap_from_clustering( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - mode="kmeans", - grid=grid, +def make_busmap( + edisgo_root, + mode=None, + cluster_area=None, + reduction_factor=None, + reduction_factor_not_focused=None, + grid=None, +): + # Check for false input. + if not 0 < reduction_factor < 1.0: + raise ValueError("Reduction factor must bigger than 0 and smaller than 1.") + if mode not in [ + "aggregate_to_main_feeder", + "kmeans", + "kmeansdijkstra", + "equidistant_nodes", + ]: + raise ValueError(f"Selected false {mode=}.") + if (reduction_factor_not_focused is not False) and not ( + 0 <= reduction_factor_not_focused < 1.0 + ): + raise ValueError( + f"{reduction_factor_not_focused=}, should be 'False' " + f"or 0 or bigger than 0 but smaller than 1." ) - elif mode == "kmd": + + if cluster_area == "grid": busmap_df = make_busmap_from_clustering( edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - mode="kmeansdijkstra", - grid=grid, - ) - elif mode == "atmf": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, mode="aggregate_to_longest_feeder", grid=grid - ) - elif mode == "frwen": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - mode="feeder_replacement_with_equidistant_nodes", - grid=grid, - ) - elif mode == "frwenwf0.1": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - grid=grid, - mode="feeder_replacement_with_equidistant_nodes", - focus_mode=True, - reduction_factor_not_focused_feeder=0.1, - ) - elif mode == "kmpmf": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - mode="kmeans", - grid=grid, - ) - elif mode == "kmdpmf": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - mode="kmeansdijkstra", - grid=grid, - ) - elif mode == "kmpmfwf0": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - grid=grid, - mode="kmeans", - focus_mode=True, - reduction_factor_not_focused_feeder=0, - ) - elif mode == "kmdpmfwf0": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - grid=grid, - mode="kmeansdijkstra", - focus_mode=True, - reduction_factor_not_focused_feeder=0, - ) - elif mode == "kmpmfwf0.1": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - grid=grid, - mode="kmeans", - focus_mode=True, - reduction_factor_not_focused_feeder=0.1, - ) - elif mode == "kmdpmfwf0.1": - busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, - grid=grid, - mode="kmeansdijkstra", - focus_mode=True, - reduction_factor_not_focused_feeder=0.1, - ) - elif mode == "kmpf": - busmap_df = make_busmap_from_feeders( - edisgo_root=edisgo_root, - reduction_factor=reduction_factor, + mode=mode, grid=grid, - mode="kmeans", - ) - elif mode == "kmdpf": - busmap_df = make_busmap_from_feeders( - edisgo_root=edisgo_root, reduction_factor=reduction_factor, - grid=grid, - mode="kmeansdijkstra", ) - elif mode == "kmpfwf0": + elif cluster_area == "feeder": busmap_df = make_busmap_from_feeders( edisgo_root=edisgo_root, - reduction_factor=reduction_factor, grid=grid, - mode="kmeans", - focus_mode=True, - reduction_factor_not_focused_feeder=0, - ) - elif mode == "kmdpfwf0": - busmap_df = make_busmap_from_feeders( - edisgo_root=edisgo_root, + mode=mode, reduction_factor=reduction_factor, - grid=grid, - mode="kmeansdijkstra", - focus_mode=True, - reduction_factor_not_focused_feeder=0, + reduction_factor_not_focused=reduction_factor_not_focused, ) - elif mode == "kmpfwf0.1": - busmap_df = make_busmap_from_feeders( + elif cluster_area == "main_feeder": + busmap_df = make_busmap_from_main_feeders( edisgo_root=edisgo_root, - reduction_factor=reduction_factor, grid=grid, - mode="kmeans", - focus_mode=True, - reduction_factor_not_focused_feeder=0.1, - ) - elif mode == "kmdpfwf0.1": - busmap_df = make_busmap_from_feeders( - edisgo_root=edisgo_root, + mode=mode, reduction_factor=reduction_factor, - grid=grid, - mode="kmeansdijkstra", - focus_mode=True, - reduction_factor_not_focused_feeder=0.1, + reduction_factor_not_focused=reduction_factor_not_focused, ) else: - return False + raise ValueError(f"Selected false {cluster_area=}!") + return busmap_df @@ -2144,6 +2080,9 @@ def find_buses_of_interest(edisgo_root): buses_of_interest.update(value.index.tolist()) logger.info("Finished in {}s".format(time() - start_time)) + # Sort for deterministic reasons + buses_of_interest = list(buses_of_interest) + buses_of_interest.sort() return buses_of_interest @@ -2184,3 +2123,26 @@ def rename_virtual_buses(logger, partial_busmap_df, transformer_node): + partial_busmap_df.loc[feeder_non_virtual, "new_bus"] ) return partial_busmap_df + + +def spatial_complexity_reduction( + edisgo_root, + mode=None, + cluster_area=None, + reduction_factor=None, + reduction_factor_not_focused=None, +): + edisgo_obj = copy.deepcopy(edisgo_root) + # edisgo_obj.results.equipment_changes = pd.DataFrame() + + busmap_df = make_busmap( + mode=mode, + cluster_area=cluster_area, + reduction_factor=reduction_factor, + reduction_factor_not_focused=reduction_factor_not_focused, + ) + edisgo_reduced, linemap_df = reduce_edisgo( + edisgo_obj, busmap_df, aggregation_mode=False + ) + + return edisgo_reduced, busmap_df, linemap_df diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py new file mode 100644 index 000000000..895aff643 --- /dev/null +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -0,0 +1,179 @@ +import copy + +from contextlib import nullcontext as does_not_raise +from hashlib import md5 + +import pytest + +from edisgo import EDisGo +from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates +from edisgo.tools.spatial_complexity_reduction import make_busmap + + +def hash_df(df): + s = df.to_json() + return md5(s.encode()).hexdigest() + + +class TestSpatialComplexityReduction: + @pytest.fixture(scope="class") + def test_grid(self): + """EDisGo-object is set up only once.""" + edisgo_root = EDisGo(ding0_grid=pytest.ding0_test_network_path) + edisgo_root.set_time_series_worst_case_analysis() + edisgo_root = make_pseudo_coordinates(edisgo_root) + return edisgo_root + + @pytest.fixture + def test_grid_copy(self, test_grid): + return copy.deepcopy(test_grid) + + @pytest.mark.parametrize( + "mode,cluster_area,reduction_factor,reduction_factor_not_focused," + "test_exception,expected_remaining_nodes", + [ + # Cluster area: 'grid' + ( + "kmeans", + "grid", + 0.1, + False, + does_not_raise(), + "a840aec08914448c907a482834094d34", + ), + ( + "kmeansdijkstra", + "grid", + 0.1, + False, + does_not_raise(), + "cd0a4ce9ca72e55bfe7353ed32d5af52", + ), + ( + "kmeans", + "grid", + 0.5, + 0, + does_not_raise(), + "3f4b25a25f5ca1c12620e92d855dae0d", + ), + ( + "kmeans", + "grid", + 0.5, + 0.1, + does_not_raise(), + "3f4b25a25f5ca1c12620e92d855dae0d", + ), + # Cluster area: 'feeder' + ( + "kmeans", + "feeder", + 0.1, + False, + does_not_raise(), + "f0126014e807b2ad6776eee6d458cdc1", + ), + ( + "kmeansdijkstra", + "feeder", + 0.1, + False, + does_not_raise(), + "9bcb23df6884cd2b6828676e7d67c525", + ), + ( + "kmeans", + "feeder", + 0.5, + 0, + does_not_raise(), + "02b909b963330d31a8aeb14a23af4291", + ), + ( + "kmeans", + "feeder", + 0.5, + 0.1, + does_not_raise(), + "193713ca9137f68e8eb93f0e369a21dc", + ), + # Cluster area: 'main_feeder' + ( + "kmeans", + "main_feeder", + 0.1, + False, + does_not_raise(), + "fadcdd5531d6f846c3ece76669fecedf", + ), + ( + "kmeansdijkstra", + "main_feeder", + 0.1, + False, + does_not_raise(), + "2f45064275a601a5f4489104521b3d58", + ), + ( + "aggregate_to_main_feeder", + "main_feeder", + 0.1, + False, + does_not_raise(), + "2dd5b8b7ac6f18765fc5e4ccbf330681", + ), + ( + "equidistant_nodes", + "main_feeder", + 0.1, + False, + does_not_raise(), + "3b2c4de8fabe724d551b11b86bffee90", + ), + ( + "kmeans", + "main_feeder", + 0.5, + 0, + does_not_raise(), + "c1e684b0cb671cf2d69de2e765fe5117", + ), + ( + "kmeans", + "main_feeder", + 0.5, + 0.1, + does_not_raise(), + "3d0e7afcb3b9c8e5c9d0838d68113bf3", + ), + # Test raising exceptions + ("kmeans", "grid", 0, False, pytest.raises(ValueError), None), + ("kmeans", "grid", 1, False, pytest.raises(ValueError), None), + ("kmeans", "grid", 0.1, 1, pytest.raises(ValueError), None), + ("MODE", "grid", 0.1, False, pytest.raises(ValueError), None), + ("kmeans", "CLUSTER_AREA", 0.1, False, pytest.raises(ValueError), None), + ], + ) + def test_make_busmap( + self, + test_grid_copy, + mode, + cluster_area, + reduction_factor, + reduction_factor_not_focused, + test_exception, + expected_remaining_nodes, + ): + edisgo_root = test_grid_copy + with test_exception: + busmap_df = make_busmap( + edisgo_root, + mode=mode, + cluster_area=cluster_area, + reduction_factor=reduction_factor, + reduction_factor_not_focused=reduction_factor_not_focused, + ) + # Check that results stay always the same, deterministic behaviour + assert hash_df(busmap_df) == expected_remaining_nodes + print("THE END") From ada3e75274ef6aad13ace8554e2ee7dd0cb70393 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Wed, 22 Mar 2023 14:39:33 +0100 Subject: [PATCH 130/355] Rector spatial_complexity_reduction.py and tests a bit, write some docs --- edisgo/tools/spatial_complexity_reduction.py | 1559 ++++++++--------- .../test_spatial_complexity_reduction.py | 184 +- 2 files changed, 891 insertions(+), 852 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 9cc39339f..084bc37b5 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -4,26 +4,180 @@ from hashlib import md5 from time import time +from typing import Tuple, Union import networkx as nx import numpy as np import pandas as pd +from pandas import DataFrame from pyproj import Transformer from sklearn.cluster import KMeans from sklearn.metrics import mean_squared_error +from edisgo import EDisGo from edisgo.flex_opt import check_tech_constraints as checks from edisgo.network import timeseries +from edisgo.network.grids import Grid +logger = logging.getLogger(__name__) -def hash_df(df): + +# region Used functions +def hash_df(df: DataFrame) -> str: + """Calculate hash from busmap, good to check if dataframe has the same content.""" s = df.to_json() return md5(s.encode()).hexdigest() -# Preprocessing -def remove_one_meter_lines(edisgo_root): +# Transform coordinates between the different coordinates systems +# ToDo: The spatial complexity reduction forces the usage of EPSG:4326 and than +# transforms to other coordinate systems if needed. Maybe write it more dynamically. +coor_transform = Transformer.from_crs("EPSG:4326", "EPSG:3035", always_xy=True) +coor_transform_back = Transformer.from_crs("EPSG:3035", "EPSG:4326", always_xy=True) + + +def make_grid_list(edisgo_obj: EDisGo, grid: object = None) -> list: + """ + Get a list of all grids in the EDisGo object or a list with the specified grid. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + EDisGo object to get the grids from. + grid : :obj:`str` + Name of the grid, if None than all grids of the EDisGo objects are used. + + Returns + ------- + :obj:`list` + List of the Grid objects + """ + if edisgo_obj is None and grid is None: + raise ValueError("Pass an EDisGo object and an grid") + elif grid is not None: + grid_name_list = [str(edisgo_obj.topology.mv_grid)] + grid_name_list = grid_name_list + list( + map(str, edisgo_obj.topology.mv_grid.lv_grids) + ) + grid_list = [edisgo_obj.topology.mv_grid] + grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) + grid_list = [grid_list[grid_name_list.index(str(grid))]] + else: + grid_list = [edisgo_obj.topology.mv_grid] + grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) + + return grid_list + + +def find_buses_of_interest(edisgo_root: EDisGo) -> set: + """ + Find the buses of interest of the EDisGo object. With a worst-case powerflow the + buses with problems are found. Check for line load and voltage deviation. + + Parameters + ---------- + edisgo_root : :class:`~.EDisGo` + The investigated EDisGo object. + + Returns + ------- + :obj:`set` + Set with the names of the buses of interest. + """ + start_time = time() + logger.info("Start - Find buses of interest") + + edisgo_obj = copy.deepcopy(edisgo_root) + edisgo_obj.timeseries = timeseries.TimeSeries() + edisgo_obj.timeseries.set_worst_case(edisgo_obj, ["feed-in_case", "load_case"]) + edisgo_obj.analyze() + + buses_of_interest = set() + mv_lines = checks.mv_line_load(edisgo_obj) + lv_lines = checks.lv_line_load(edisgo_obj) + lines = mv_lines.index.tolist() + lines = lines + lv_lines.index.tolist() + for line in lines: + buses_of_interest.add(edisgo_obj.topology.lines_df.loc[line, "bus0"]) + buses_of_interest.add(edisgo_obj.topology.lines_df.loc[line, "bus1"]) + + mv_buses = checks.mv_voltage_deviation(edisgo_obj, voltage_levels="mv") + for value in mv_buses.values(): + buses_of_interest.update(value.index.tolist()) + + lv_buses = checks.lv_voltage_deviation(edisgo_obj, voltage_levels="lv") + for value in lv_buses.values(): + buses_of_interest.update(value.index.tolist()) + + logger.info("Finished in {}s".format(time() - start_time)) + return buses_of_interest + + +def rename_virtual_buses( + partial_busmap_df: DataFrame, transformer_node: str +) -> DataFrame: + """ + Rename virtual buses so that no virtual transformer bus is created. + + Parameters + ---------- + partial_busmap_df: :obj:`pd.DataFrame` + Busmap to work on. + transformer_node: :obj:`str` + Transformer node name. + Returns + ------- + :obj:`pd.DataFrame` + Busmap with applied changes. + """ + nodes = partial_busmap_df.index.to_list() + pairs = [] + for node in nodes: + if node.split("_")[0] == "virtual": + if ( + partial_busmap_df.loc[node, "new_bus"] + != partial_busmap_df.loc[node.lstrip("virtual_"), "new_bus"] + ): + pairs.append([node, node.lstrip("virtual_")]) + + logger.debug("Pairs: {}".format(pairs)) + logger.debug("Length pairs: {}".format(len(pairs))) + if len(pairs) > 0: + logger.info("Rename virtual buses") + for feeder_virtual, feeder_non_virtual in pairs: + old_name_of_virtual_node = partial_busmap_df.loc[feeder_virtual, "new_bus"] + nodes_in_the_same_cluster_as_virtual_node = partial_busmap_df.loc[ + partial_busmap_df.loc[:, "new_bus"].isin([old_name_of_virtual_node]) + ].index.tolist() + + for nodes_to_add_a_virtual in nodes_in_the_same_cluster_as_virtual_node: + # Stop making a virtual transformer bus + # Stop renaming the transformer bus + if ( + partial_busmap_df.loc[feeder_non_virtual, "new_bus"] + != transformer_node + ) and ( + partial_busmap_df.loc[nodes_to_add_a_virtual, "new_bus"] + != transformer_node + ): + + partial_busmap_df.loc[nodes_to_add_a_virtual, "new_bus"] = ( + "virtual_" + + partial_busmap_df.loc[feeder_non_virtual, "new_bus"] + ) + return partial_busmap_df + + +# endregion + +# region Preprocessing (Currently not tested and probably not working.) +def remove_one_meter_lines(edisgo_root: EDisGo) -> EDisGo: + """ + Remove one meter lines between the feeder and the buildings. This function is + a relict from the legacy ding0 grids. + """ + def apply_busmap_on_buses_df(series): if series.name in busmap: series.loc["new_bus"] = busmap[series.name] @@ -46,7 +200,6 @@ def apply_busmap(series): return series - logger = logging.getLogger("edisgo.cr_remove_one_meter_lines") start_time = time() logger.info("Start - Removing 1m lines") @@ -124,7 +277,13 @@ def apply_busmap(series): return edisgo_obj -def remove_lines_under_one_meter(edisgo_root): +def remove_lines_under_one_meter(edisgo_root: EDisGo) -> EDisGo: + """ + Remove the lines under one meter. Sometimes these line are causing convergence + problems of the power flow calculation or making problems with the clustering + methods. + """ + def apply_busmap_on_buses_df(series): if series.name in busmap: series.loc["new_bus"] = busmap[series.name] @@ -146,7 +305,6 @@ def apply_busmap(series): return series - logger = logging.getLogger("edisgo.cr_remove_lines_under_one_meter") start_time = time() logger.info("Start - Removing lines under 1m") @@ -230,253 +388,51 @@ def apply_busmap(series): generators_df = generators_df.apply(apply_busmap, axis="columns") edisgo_obj.topology.generators_df = generators_df - # charging_points_df = edisgo_obj.topology.charging_points_df.copy() - # charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") - # edisgo_obj.topology.charging_points_df = charging_points_df - logger.info("Finished in {}s".format(time() - start_time)) return edisgo_obj -def aggregate_to_bus(edisgo_root, aggregate_charging_points_mode=True): - def aggregate_loads(df): - series = pd.Series(index=df.columns, dtype="object") - series.loc["bus"] = df.loc[:, "bus"].values[0] - series.loc["p_set"] = df.loc[:, "p_set"].sum() - series.loc["annual_consumption"] = df.loc[:, "annual_consumption"].sum() - if load_aggregation_mode == "sector": - series.loc["sector"] = df.loc[:, "sector"].values[0] - # elif load_aggregation_mode == 'bus': - # series.loc['sector'] = 'aggregated' - series.loc["old_load_name"] = df.index.tolist() - return series +# endregion - def aggregate_generators(df): - series = pd.Series(index=df.columns, dtype="object") - series.loc["bus"] = df.loc[:, "bus"].values[0] - series.loc["p_nom"] = df.loc[:, "p_nom"].sum() - series.loc["control"] = df.loc[:, "control"].values[0] - series.loc["subtype"] = df.loc[:, "subtype"].values[0] - series.loc["old_generator_name"] = df.index.tolist() - series.loc["type"] = df.loc[:, "type"].values[0] - series.loc["weather_cell_id"] = df.loc[:, "weather_cell_id"].values[0] - return series - - def extract_weather_cell_id(series): - if pd.isna(series): - series = "NaN" - else: - series = str(int(series)) - return series - - def aggregate_charging_points(df): - series = pd.Series(dtype="object") - series.loc["bus"] = df.loc[:, "bus"].values[0] - series.loc["p_nom"] = df.loc[:, "p_nom"].sum() - series.loc["use_case"] = df.loc[:, "use_case"].values[0] - series.loc["old_charging_point_name"] = df.index.tolist() - return series - - logger = logging.getLogger("edisgo.cr_aggregate_to_bus") - start_time = time() - logger.info("Start - Aggregate to bus") - - edisgo_obj = copy.deepcopy(edisgo_root) - - loads_df = edisgo_obj.topology.loads_df.copy() - generators_df = edisgo_obj.topology.generators_df.copy() - charging_points_df = edisgo_obj.topology.charging_points_df.copy() - - if not loads_df.empty: - load_aggregation_mode = "bus" - - logger.info("Aggregate loads_df") - - if load_aggregation_mode == "sector": - loads_df = loads_df.groupby(by=["bus", "sector"]).apply(aggregate_loads) - loads_df.index = ( - "Load_" + loads_df.loc[:, "bus"] + "_" + loads_df.loc[:, "sector"] - ) - elif load_aggregation_mode == "bus": - loads_df = loads_df.groupby("bus").apply(aggregate_loads) - loads_df.index = "Load_" + loads_df.loc[:, "bus"] - - loads_df.index.name = "name" - edisgo_obj.topology.loads_df = loads_df - - # aggregate load timeseries - logger.info("Aggregate loads timeseries") - - load_name_map_df = edisgo_obj.topology.loads_df.loc[ - :, "old_load_name" - ].to_dict() - load_name_map = {} - for i in range(0, len(load_name_map_df.keys())): - for j in range(0, len(list(load_name_map_df.values())[i])): - load_name_map[list(load_name_map_df.values())[i][j]] = list( - load_name_map_df.keys() - )[i] - - timeseries_loads_p_df = edisgo_obj.timeseries.loads_active_power.T.copy() - timeseries_loads_q_df = edisgo_obj.timeseries.loads_reactive_power.T.copy() - - new_index = [] - for i in range(0, timeseries_loads_p_df.shape[0]): - new_load_name = load_name_map[timeseries_loads_p_df.index[i]] - new_index.append(new_load_name) - - old_index = timeseries_loads_p_df.index.tolist() - rename_index = dict(zip(old_index, new_index)) - - timeseries_loads_p_df = timeseries_loads_p_df.rename(index=rename_index) - timeseries_loads_q_df = timeseries_loads_q_df.rename(index=rename_index) - edisgo_obj.timeseries.loads_active_power = ( - timeseries_loads_p_df.groupby(level=0).sum().T - ) - edisgo_obj.timeseries.loads_reactive_power = ( - timeseries_loads_q_df.groupby(level=0).sum().T - ) - - if not generators_df.empty: - logger.info("Aggregate generators_df") - - generators_df = generators_df.groupby( - by=["bus", "type", "weather_cell_id"], dropna=False - ).apply(aggregate_generators) - generators_df.index = ( - "Generator_" - + generators_df.loc[:, "bus"].values - + "_" - + generators_df.loc[:, "type"].values - + "_weather_cell_id_" - + generators_df.loc[:, "weather_cell_id"] - .apply(extract_weather_cell_id) - .values - ) - - edisgo_obj.topology.generators_df = generators_df - - logger.info("Aggregate generator timeseries") - timeseries_generators_p_df = ( - edisgo_obj.timeseries.generators_active_power.T.copy() - ) - timeseries_generators_q_df = ( - edisgo_obj.timeseries.generators_reactive_power.T.copy() - ) - - generator_name_map_df = edisgo_obj.topology.generators_df.loc[ - :, "old_generator_name" - ].to_dict() - - generator_name_map = {} - for i in range(0, len(generator_name_map_df.keys())): - for j in range(0, len(list(generator_name_map_df.values())[i])): - generator_name_map[list(generator_name_map_df.values())[i][j]] = list( - generator_name_map_df.keys() - )[i] - - new_index = [] - for i in range(0, timeseries_generators_p_df.shape[0]): - new_generator_name = generator_name_map[timeseries_generators_p_df.index[i]] - new_index.append(new_generator_name) - - old_index = timeseries_generators_p_df.index.tolist() - rename_index = dict(zip(old_index, new_index)) - - timeseries_generators_p_df = timeseries_generators_p_df.rename( - index=rename_index - ) - timeseries_generators_q_df = timeseries_generators_q_df.rename( - index=rename_index - ) - - edisgo_obj.timeseries.generators_active_power = ( - timeseries_generators_p_df.groupby(level=0).sum().T - ) - edisgo_obj.timeseries.generators_reactive_power = ( - timeseries_generators_q_df.groupby(level=0).sum().T - ) - - edisgo_obj.topology.generators_df = generators_df - - if not charging_points_df.empty and aggregate_charging_points_mode: - logger.info("Aggregate charging_points_df") - - charging_points_df = charging_points_df.groupby( - by=["bus", "use_case"], dropna=False - ).apply(aggregate_charging_points) - - edisgo_obj.topology.charging_points_df = charging_points_df - - charging_points_df.index = ( - "ChargingPoint_" - + charging_points_df.loc[:, "bus"].values - + "_" - + charging_points_df.loc[:, "use_case"].values - ) - - logger.info("Aggregate charging points timeseries") - timeseries_charging_points_p_df = ( - edisgo_obj.timeseries.charging_points_active_power.T.copy() - ) - timeseries_charging_points_q_df = ( - edisgo_obj.timeseries.charging_points_reactive_power.T.copy() - ) - - charging_point_name_map_df = charging_points_df.loc[ - :, "old_charging_point_name" - ].to_dict() - - charging_point_name_map = {} - for i in range(0, len(charging_point_name_map_df.keys())): - for j in range(0, len(list(charging_point_name_map_df.values())[i])): - charging_point_name_map[ - list(charging_point_name_map_df.values())[i][j] - ] = list(charging_point_name_map_df.keys())[i] - - new_index = [] - for index, row in timeseries_charging_points_p_df.iterrows(): - new_index.append(charging_point_name_map[index]) - old_index = timeseries_charging_points_p_df.index.tolist() - rename_index = dict(zip(old_index, new_index)) - - timeseries_charging_points_p_df = timeseries_charging_points_p_df.rename( - index=rename_index - ) - timeseries_charging_points_q_df = timeseries_charging_points_q_df.rename( - index=rename_index - ) - - timeseries_charging_points_p_df = ( - timeseries_charging_points_p_df.groupby(level=0).sum().T - ) - timeseries_charging_points_q_df = ( - timeseries_charging_points_q_df.groupby(level=0).sum().T - ) - - edisgo_obj.timeseries.charging_points_active_power = ( - timeseries_charging_points_p_df - ) - edisgo_obj.timeseries.charging_points_reactive_power = ( - timeseries_charging_points_q_df - ) - - edisgo_obj.topology.charging_points_df = charging_points_df - - logger.info("Finished in {}s".format(time() - start_time)) - return edisgo_obj - - -# Complexity reduction +# region Complexity reduction def make_busmap_from_clustering( - edisgo_root=None, - grid=None, - mode=None, - reduction_factor=None, - preserve_trafo_bus_coordinates=True, - n_init=10, - random_state=42, -): + edisgo_root: EDisGo, + grid: Union[None, str] = None, + mode: str = None, + reduction_factor: float = 0.25, + preserve_trafo_bus_coordinates: bool = True, +) -> DataFrame: + """ + See for more information the function + :func:`make_busmap`. + + Making busmap for the cluster area 'grid'. Every grid is clustered individually. + + Parameters + ---------- + edisgo_root: :obj:`EDisGo` + EDisGo object for which the busmap ist created. + grid: :obj:`str` or None + If None, busmap is created for all grids, else only for the selected Grid. + mode: :obj:`str` + "kmeans" or "kmeansdijkstra" as clustering method. + reduction_factor: :obj:`float` + Must bigger than 0 smaller than 1. Nodes are reduced with this factor. + preserve_trafo_bus_coordinates: :obj:`bool` + If true transformators have the same coordinates after the clustering, else + the transformer coordinates are get by the clustering. + + Returns + ------- + :obj:`pd.DataFrame` + Busmap which maps the old bus names to the new bus names with new coordinates. + + References + ---------- + In parts based on PyPSA spatial complexity reduction + `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + """ + def calculate_weighting(series): p_gen = edisgo_obj.topology.generators_df.loc[ edisgo_obj.topology.generators_df.bus == series.name, "p_nom" @@ -484,16 +440,13 @@ def calculate_weighting(series): p_load = edisgo_obj.topology.loads_df.loc[ edisgo_obj.topology.loads_df.bus == series.name, "p_set" ].sum() - p_charge = edisgo_obj.topology.charging_points_df.loc[ - edisgo_obj.topology.charging_points_df.bus == series.name, "p_set" - ].sum() if str(grid).split("_")[0] == "MVGrid": s_tran = edisgo_obj.topology.transformers_df.loc[ edisgo_obj.topology.transformers_df.bus0 == series.name, "s_nom" ].sum() else: s_tran = 0 - series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran + p_charge) + series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran) return series def transform_coordinates(series): @@ -534,12 +487,11 @@ def rename_new_buses(series): logger.error("Grid is None") return series - logger = logging.getLogger("edisgo.cr_make_busmap") start_time = time() logger.info("Start - Make busmap from clustering, mode = {}".format(mode)) edisgo_obj = copy.deepcopy(edisgo_root) - grid_list = make_grid_list(edisgo_obj, grid) + grid_list = make_grid_list(edisgo_obj, grid=grid) busmap_df = pd.DataFrame() @@ -559,7 +511,7 @@ def rename_new_buses(series): n_clusters = math.ceil(number_of_distinct_nodes * reduction_factor) logger.debug("n_clusters = {}".format(n_clusters)) - kmeans = KMeans(n_clusters=n_clusters, n_init=n_init, random_state=random_state) + kmeans = KMeans(n_clusters=n_clusters, n_init=10, random_state=42) kmeans.fit(buses_df.loc[:, ["x", "y"]], sample_weight=buses_df.loc[:, "weight"]) @@ -636,9 +588,7 @@ def rename_new_buses(series): partial_busmap_df.index.name = "old_bus" if str(grid).split("_")[0] == "MVGrid": - partial_busmap_df = rename_virtual_buses( - logger, partial_busmap_df, transformer_bus - ) + partial_busmap_df = rename_virtual_buses(partial_busmap_df, transformer_bus) partial_busmap_df = partial_busmap_df.apply( transform_coordinates_back, axis="columns" @@ -651,12 +601,43 @@ def rename_new_buses(series): def make_busmap_from_feeders( - edisgo_root=None, - grid=None, - mode=None, - reduction_factor=None, - reduction_factor_not_focused=0, -): + edisgo_root: EDisGo = None, + grid: Union[None, Grid] = None, + mode: str = None, + reduction_factor: float = 0.25, + reduction_factor_not_focused: Union[bool, float] = False, +) -> DataFrame: + """ + See for more information the function :func:`make_busmap`. + + Making busmap for the cluster area 'feeder'. Every feeder is clustered individually. + + Parameters + ---------- + edisgo_root: :obj:`EDisGo` + EDisGo object for which the busmap ist created. + grid: :obj:`str` or None + If None, busmap is created for all grids, else only for the selected Grid. + mode: :obj:`str` + "kmeans" or "kmeansdijkstra" as clustering method. + reduction_factor: :obj:`float` + Must bigger than 0 smaller than 1. Nodes are reduced with this factor. + reduction_factor_not_focused: :obj:`bool` or :obj:`floar` + If false the focus method is not used. If 0 or smaller than 1, this sets the + reduction factor for buses not of interest. When selecting 0 the nodes of the + clustering area are aggregated to the transformer bus. + + Returns + ------- + :obj:`pd.DataFrame` + Busmap which maps the old bus names to the new bus names with new coordinates. + + References + ---------- + In parts based on PyPSA spatial complexity reduction + `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + """ + def make_name(number_of_feeder_node): if number_of_feeder_node == 0: name = transformer_node @@ -693,16 +674,13 @@ def calculate_weighting(series): p_load = edisgo_obj.topology.loads_df.loc[ edisgo_obj.topology.loads_df.bus.isin(buses), "p_set" ].sum() - p_charge = edisgo_obj.topology.charging_points_df.loc[ - edisgo_obj.topology.charging_points_df.bus.isin(buses), "p_set" - ].sum() if str(grid).split("_")[0] == "MVGrid": s_tran = edisgo_obj.topology.transformers_df.loc[ edisgo_obj.topology.transformers_df.bus0 == series.name, "s_nom" ].sum() else: s_tran = 0 - series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran + p_charge) + series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran) return series def transform_coordinates(series): @@ -722,7 +700,6 @@ def transform_coordinates_back(ser): return ser edisgo_obj = copy.deepcopy(edisgo_root) - logger = logging.getLogger("edisgo.cr_make_busmap") start_time = time() logger.info("Start - Make busmap from feeders, mode = {}".format(mode)) @@ -730,7 +707,7 @@ def transform_coordinates_back(ser): transform_coordinates, axis="columns" ) - grid_list = make_grid_list(edisgo_obj, grid) + grid_list = make_grid_list(edisgo_obj, grid=grid) busmap_df = pd.DataFrame() mvgd_id = edisgo_obj.topology.mv_grid.id @@ -866,7 +843,7 @@ def transform_coordinates_back(ser): if str(grid).split("_")[0] == "MVGrid": partial_busmap_df = rename_virtual_buses( - logger, partial_busmap_df, transformer_node + partial_busmap_df, transformer_node ) busmap_df = pd.concat([busmap_df, partial_busmap_df]) @@ -878,12 +855,46 @@ def transform_coordinates_back(ser): def make_busmap_from_main_feeders( - edisgo_root=None, - grid=None, - mode=None, - reduction_factor=None, - reduction_factor_not_focused=0, -): + edisgo_root: EDisGo = None, + grid: Union[None, Grid] = None, + mode: str = None, + reduction_factor: float = 0.25, + reduction_factor_not_focused: Union[bool, float] = False, +) -> DataFrame: + """ + See for more information the function :func:`make_busmap`. + + Making busmap for the cluster area 'main_feeder'. Every main feeder is clustered + individually. The main feeder is selected as the longest way in the feeder. All + nodes are aggregated to this main feeder and than the feeder is clustered. + + Parameters + ---------- + edisgo_root: :obj:`EDisGo` + EDisGo object for which the busmap ist created. + grid: :obj:`str` or None + If None, busmap is created for all grids, else only for the selected Grid. + mode: :obj:`str` + "kmeans", "kmeansdijkstra", "aggregate_to_main_feeder" or + "equidistant_nodes" as clustering method. + reduction_factor: :obj:`float` + Must bigger than 0 smaller than 1. Nodes are reduced with this factor. + reduction_factor_not_focused: :obj:`bool` or :obj:`floar` + If false the focus method is not used. If 0 or smaller than 1, this sets the + reduction factor for buses not of interest. When selecting 0 the nodes of the + clustering area are aggregated to the transformer bus. + + Returns + ------- + :obj:`pd.DataFrame` + Busmap which maps the old bus names to the new bus names with new coordinates. + + References + ---------- + In parts based on PyPSA spatial complexity reduction + `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + """ + def make_name(number_of_feeder_node): if number_of_feeder_node == 0: name = transformer_node @@ -920,16 +931,13 @@ def calculate_weighting(series): p_load = edisgo_obj.topology.loads_df.loc[ edisgo_obj.topology.loads_df.bus.isin(buses), "p_set" ].sum() - p_charge = edisgo_obj.topology.charging_points_df.loc[ - edisgo_obj.topology.charging_points_df.bus.isin(buses), "p_set" - ].sum() if str(grid).split("_")[0] == "MVGrid": s_tran = edisgo_obj.topology.transformers_df.loc[ edisgo_obj.topology.transformers_df.bus0 == series.name, "s_nom" ].sum() else: s_tran = 0 - series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran + p_charge) + series.loc["weight"] = 1 + 1000 * (p_gen + p_load + s_tran) return series def transform_coordinates(series): @@ -954,16 +962,15 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): return node edisgo_obj = copy.deepcopy(edisgo_root) - logger = logging.getLogger("edisgo.cr_make_busmap") start_time = time() logger.info("Start - Make busmap from main feeders, mode = {}".format(mode)) - if mode != "aggregate_to_longest_feeder": + if mode != "aggregate_to_main_feeder": edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.apply( transform_coordinates, axis="columns" ) - grid_list = make_grid_list(edisgo_obj, grid) + grid_list = make_grid_list(edisgo_obj, grid=grid) busmap_df = pd.DataFrame() mvgd_id = edisgo_obj.topology.mv_grid.id @@ -1021,7 +1028,7 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): main_feeder_nodes = main_feeder_nodes + path # Advanced method - if mode != "aggregate_to_longest_feeder": + if mode != "aggregate_to_main_feeder": main_feeders_df.loc[i, "distance"] = distance main_feeders_df.loc[i, "end_node"] = end_node # transformer node is not included @@ -1239,7 +1246,7 @@ def short_coordinates(root_node, end_node, branch_length, node_number): feeder_buses_df.loc[index, "medoid"], ["x", "y"] ].values - if mode != "aggregate_to_longest_feeder": + if mode != "aggregate_to_main_feeder": # Backmap for node in not_main_nodes: partial_busmap_df.loc[node] = partial_busmap_df.loc[ @@ -1248,12 +1255,12 @@ def short_coordinates(root_node, end_node, branch_length, node_number): if str(grid).split("_")[0] == "MVGrid": partial_busmap_df = rename_virtual_buses( - logger, partial_busmap_df, transformer_node + partial_busmap_df, transformer_node ) busmap_df = pd.concat([busmap_df, partial_busmap_df]) - if mode != "aggregate_to_longest_feeder": + if mode != "aggregate_to_main_feeder": busmap_df = busmap_df.apply(transform_coordinates_back, axis="columns") logger.info("Finished in {}s".format(time() - start_time)) @@ -1261,41 +1268,96 @@ def short_coordinates(root_node, end_node, branch_length, node_number): def make_busmap( - edisgo_root, - mode=None, - cluster_area=None, - reduction_factor=None, - reduction_factor_not_focused=None, - grid=None, -): + edisgo_root: EDisGo, + mode: str = None, + cluster_area: str = None, + reduction_factor: float = 0.25, + reduction_factor_not_focused: Union[bool, float] = False, + grid: Union[None, Grid] = None, +) -> DataFrame: + """ + Wrapper around the different make_busmap methods for the different cluster areas. + From the EDisGo object a busmap is generated. The bus names are mapped to new bus + names with new coordinates. The busmap can be used with the function + :func:`reduce_edisgo ` to + perform a spatial complexity reduction. + + Parameters + ---------- + edisgo_root: :obj:`EDisGo` + EDisGo object for which the busmap ist created. + mode: :obj:`str` + "kmeans", "kmeansdijkstra", "aggregate_to_main_feeder" or + "equidistant_nodes" as clustering method. "aggregate_to_main_feeder" or + "equidistant_nodes" only work with the cluster area "main_feeder". + - "kmeans": + Perform the k-means algorithm on the cluster area and map then the buses to + the cluster centers. + - "kmeansdijkstra": + Perform the k-mean algorithm but then map the nodes to the cluster centers + through the distance shortest distance in the graph. The distances are + calculated by the dijkstra algorithm. + - "aggregate_to_main_feeder": + Aggregate the nodes in the feeder to the longest path in the feeder, here + named main feeder. + - "equidistant_nodes": + Use the method aggregate to main feeder and then reduce the nodes again. + Through a reduction of the nodes by the reduction factor and then + distributing the remaining nodes on the graph. + + cluster_area: :obj:`str` + Select: 'grid', 'feeder' or 'main_feeder' as the cluster area. The cluster area + is the area on which the different clustering methods are used on. + reduction_factor: :obj:`float` + Must bigger than 0 smaller than 1. Nodes are reduced with this factor. + reduction_factor_not_focused: :obj:`bool` or :obj:`float` + If false the focus method is not used. If 0 or smaller than 1, this sets the + reduction factor for buses not of interest. When selecting 0 the nodes of the + clustering area are aggregated to the transformer bus. + grid: :obj:`str` or None + If None, busmap is created for all grids, else only for the selected Grid. + + Returns + ------- + :obj:`pd.DataFrame` + Busmap which maps the old bus names to the new bus names with new coordinates. + + References + ---------- + In parts based on PyPSA spatial complexity reduction + `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + """ # Check for false input. - if not 0 < reduction_factor < 1.0: - raise ValueError("Reduction factor must bigger than 0 and smaller than 1.") + if mode == "aggregate_to_main_feeder": + pass # Aggregate to the main feeder + elif not 0 < reduction_factor < 1.0: + raise ValueError("Reduction factor must bigger than 0 and smaller than 1") + if mode not in [ "aggregate_to_main_feeder", "kmeans", "kmeansdijkstra", "equidistant_nodes", ]: - raise ValueError(f"Selected false {mode=}.") + raise ValueError(f"Selected false {mode=}") if (reduction_factor_not_focused is not False) and not ( 0 <= reduction_factor_not_focused < 1.0 ): raise ValueError( f"{reduction_factor_not_focused=}, should be 'False' " - f"or 0 or bigger than 0 but smaller than 1." + f"or 0 or bigger than 0 but smaller than 1" ) if cluster_area == "grid": busmap_df = make_busmap_from_clustering( - edisgo_root=edisgo_root, + edisgo_root, mode=mode, grid=grid, reduction_factor=reduction_factor, ) elif cluster_area == "feeder": busmap_df = make_busmap_from_feeders( - edisgo_root=edisgo_root, + edisgo_root, grid=grid, mode=mode, reduction_factor=reduction_factor, @@ -1303,7 +1365,7 @@ def make_busmap( ) elif cluster_area == "main_feeder": busmap_df = make_busmap_from_main_feeders( - edisgo_root=edisgo_root, + edisgo_root, grid=grid, mode=mode, reduction_factor=reduction_factor, @@ -1315,8 +1377,27 @@ def make_busmap( return busmap_df -def make_remaining_busmap(busmap_df, edisgo_root): - logger = logging.getLogger("edisgo.cr_make_remaining_busmap") +def make_remaining_busmap(busmap_df: DataFrame, edisgo_root: EDisGo) -> DataFrame: + """ + Make the remaining busmap out of an existing busmap and the EDisGo object. + If only the busmap for one grid is generated than with this function the remaining + busmap can be generated. Cause the + :func:`reduce_edisgo ` + needs a busmap with all nodes of a bus. + + Parameters + ---------- + busmap_df: :obj:`pd.DataFrame` + Busmap with missing nodes. + edisgo_root: :obj:`EDisGo` + EDisGo object for which the busmap is generated. + + Returns + ------- + :obj:`DataFrame` + Busmap for the full edisgo object. + """ + start_time = time() logger.info("Start - Make remaining busmap") @@ -1338,46 +1419,73 @@ def make_remaining_busmap(busmap_df, edisgo_root): return busmap_df -def reduce_edisgo(edisgo_root, busmap_df, aggregation_mode=True): - logger = logging.getLogger("edisgo.cr_reduce_edisgo") - start_time = time() - logger.info("Start - Reducing edisgo object") - - edisgo_obj = copy.deepcopy(edisgo_root) - - def apply_busmap_df(series): +def reduce_edisgo( + edisgo_root: EDisGo, + busmap_df: DataFrame, + line_naming_convention: str = "standard_lines", + aggregation_mode: bool = True, + load_aggregation_mode: str = "sector", + generator_aggregation_mode: str = "type", +) -> Tuple[EDisGo, DataFrame]: + """ + Function to reduce the EDisGo object with a previously generated busmap. + + Warning: After reducing all attributes 'in_building' of the buses is set to False. + Also, the method only works for lines which length can be calculated with a detour + factor, which has to be set in the config. Else the line length is calculated + false which leads to false results. If the grid doesn't have coordinates or + matches the requirements use the :func:`make_pseudo_coordinates + `. + + Parameters + ---------- + edisgo_root: :obj:`EDisGo` + EDisGo object to reduce. + busmap_df: :obj:`DataFrame` + Busmap, holds the information which nodes are merged together. + aggregation_mode: :obj:`str` + If True loads and generators and their timeseries are aggregated + according to their selected modes. + line_naming_convention: :obj:`str` + Select "standard_lines" or "combined_name". When the lines are aggregated it + can happen that two or more lines are merged. This leads to the problem of + new line types. If "standard_lines" is selected. In the case of a line merge + as line_tipe and kind the values of the standard type of the voltage level is + selected. If "combined_name" is selected the new type and kind is contains the + concated names of the merged lines. + + load_aggregation_mode: :obj:`str` + Choose: "bus" or "sector" if bus is chosen all loads in the loads_df are + aggregated per bus. When sector is chosen its aggregated by bus and sector. + generator_aggregation_mode: :obj:`str` + Choose: "bus" or "type" if bus is chosen all generators in the generators_df + are aggregated per bus. When type is chosen its aggregated by bus and type. + + Returns + ------- + :obj:`EDisGo` + Reduced EDisGo object. + + References + ---------- + In parts based on PyPSA spatial complexity reduction + `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + """ + # region Define local functions + def apply_busmap_on_busmap_df(series): series.loc["bus"] = busmap_df.loc[series.name, "new_bus"] series.loc["x"] = busmap_df.loc[series.name, "new_x"] series.loc["y"] = busmap_df.loc[series.name, "new_y"] return series - # preserve data - logger.info("Preserve data") - buses_df = edisgo_obj.topology.buses_df - lines_df = edisgo_obj.topology.lines_df - loads_changed_df = edisgo_obj.topology.loads_df - generators_changed_df = edisgo_obj.topology.generators_df - # charging_points_df = edisgo_obj.topology.charging_points_df - slack_bus = edisgo_obj.topology.transformers_hvmv_df.bus1[0] - - # manipulate buses_df - logger.info("Manipulate buses_df") - buses_df = buses_df.apply(apply_busmap_df, axis="columns") - buses_df = buses_df.groupby(by=["bus"], dropna=False, as_index=False).first() - - buses_df.loc[:, "in_building"] = False - buses_df = buses_df.set_index("bus") - edisgo_obj.topology.buses_df = buses_df - - # manipulate lines_df - def apply_busmap_df(series): + def apply_busmap_on_lines_df(series): series.loc["bus0"] = busmap_df.loc[series.bus0, "new_bus"] series.loc["bus1"] = busmap_df.loc[series.bus1, "new_bus"] return series def remove_lines_with_the_same_bus(series): if series.bus0 == series.bus1: - return + return # Drop lines which connect to the same bus. elif ( series.bus0.split("_")[0] == "virtual" and series.bus0.lstrip("virtual_") == slack_bus @@ -1386,45 +1494,40 @@ def remove_lines_with_the_same_bus(series): and series.bus1.lstrip("virtual_") == slack_bus ): logger.debug( - "Drop line because it is connected to " - "the virtual_slack bus \n{}".format(series.name) + f"Drop line because connected to virtual_slack bus {series.name}" ) - return elif series.bus0.lstrip("virtual_") == series.bus1.lstrip("virtual_"): logger.debug( - "Drop line because it shorts the circuit breaker \n{}".format( - series.name - ) + f"Drop line because it shorts the circuit breaker {series.name}" ) - return else: return series + def get_ordered_lines_df(lines_df): + """Order lines so that a grouping is possible.""" + order = lines_df.bus0 < lines_df.bus1 + lines_df_p = lines_df[order] + lines_df_n = lines_df[~order].rename(columns={"bus0": "bus1", "bus1": "bus0"}) + lines_df = pd.concat([lines_df_p, lines_df_n], sort=True) + return lines_df + def aggregate_lines_df(df): - series = pd.Series(index=edisgo_obj.topology.lines_df.columns, dtype="object") + series = pd.Series(index=lines_df.columns, dtype="object") bus0 = df.loc[:, "bus0"].values[0] bus1 = df.loc[:, "bus1"].values[0] v_nom = buses_df.loc[bus0, "v_nom"] - coordinates_bus0 = edisgo_obj.topology.buses_df.loc[ - bus0, ["x", "y"] - ].values.tolist() - coordinates_bus1 = edisgo_obj.topology.buses_df.loc[ - bus1, ["x", "y"] - ].values.tolist() + coor_bus0 = buses_df.loc[bus0, ["x", "y"]].values.tolist() + coor_bus1 = buses_df.loc[bus1, ["x", "y"]].values.tolist() - coordinates_bus0 = coor_transform.transform( - coordinates_bus0[0], coordinates_bus0[1] - ) - coordinates_bus1 = coor_transform.transform( - coordinates_bus1[0], coordinates_bus1[1] - ) + coor_bus0 = coor_transform.transform(coor_bus0[0], coor_bus0[1]) + coor_bus1 = coor_transform.transform(coor_bus1[0], coor_bus1[1]) length = ( - math.dist(coordinates_bus0, coordinates_bus1) + math.dist(coor_bus0, coor_bus1) / 1000 * edisgo_obj.config["grid_connection"]["branch_detour_factor"] ) @@ -1432,69 +1535,69 @@ def aggregate_lines_df(df): if length == 0: length = 0.001 logger.warning( - "Length of line between " - + str(bus0) - + " and " - + str(bus1) - + " can't be 0, set to 1m" + f"Length of line between {bus0} and {bus1} can't be 0, set to 1m." ) if length < 0.001: - logger.warning( - "WARNING: Length of line between " - + str(bus0) - + " and " - + str(bus1) - + " smaller than 1m" - ) + logger.warning(f"Length of line between {bus0} and {bus1} smaller than 1m.") - if np.isnan(edisgo_obj.topology.buses_df.loc[df.bus0, "lv_grid_id"])[0]: - # voltage_level = 'MV' - # type_cable = 'mv_cables' - type_line = "mv_line" + # Get type of the line to get the according standard line for the voltage_level + if np.isnan(buses_df.loc[df.bus0, "lv_grid_id"])[0]: + type_line = f"mv_line_{int(v_nom)}kv" else: - # voltage_level = 'LV' - # type_cable = 'lv_cables' type_line = "lv_line" if len(df["type_info"].values) > 1: - # type_info = 'Combined: ' - # for x in l['type_info'].values: - # type_info = type_info + str(x) + ' ' - type_info = edisgo_obj.config["grid_expansion_standard_equipment"][ - type_line - ] + if line_naming_convention == "combined_name": + type_info = "Merged: " + for x in df["type_info"].values: + type_info = type_info + str(x) + " " + elif line_naming_convention == "standard_lines": + type_info = edisgo_obj.config["grid_expansion_standard_equipment"][ + type_line + ] else: type_info = df["type_info"].values[0] if len(df["kind"].values) > 1: - # kind = 'Combined: ' - # for x in l['kind'].values: - # kind = kind + str(x) + ' ' - kind = df["kind"].values[0] + if line_naming_convention == "combined_name": + kind = "Combined: " + for x in df["kind"].values: + kind = kind + str(x) + " " + elif line_naming_convention == "standard_lines": + kind = df["kind"].values[0] else: kind = df["kind"].values[0] x_sum = 0 for line_type in df["type_info"].values: - x_sum = ( - x_sum - + 1 - / line_data_df.loc[line_data_df.U_n.isin([v_nom])].loc[ + try: + x_line = line_data_df.loc[line_data_df.U_n.isin([v_nom])].loc[ line_type, "L_per_km" ] - ) + except KeyError: + x_line = line_data_df.loc[line_type, "L_per_km"] + logger.error( + f"Line type doesn't matches voltage level" + f"{line_type} not in voltage level {v_nom}." + ) + x_sum = x_sum + 1 / x_line x_sum = 1 / x_sum x = length * 2 * math.pi * 50 * x_sum / 1000 r_sum = 0 for line_type in df["type_info"].values: - r_sum = ( - r_sum - + 1 - / line_data_df.loc[line_data_df.U_n.isin([v_nom])].loc[ + try: + r_line = line_data_df.loc[line_data_df.U_n.isin([v_nom])].loc[ line_type, "R_per_km" ] - ) + except KeyError: + r_line = line_data_df.loc[line_type, "R_per_km"] + logger.error( + f"Line type doesn't matches voltage level" + f"{line_type} not in voltage level {v_nom}." + ) + + r_sum = r_sum + 1 / r_line r_sum = 1 / r_sum r = length * r_sum @@ -1511,115 +1614,20 @@ def aggregate_lines_df(df): series.loc["old_line_name"] = df.index.to_list() return series - if not lines_df.empty: - logger.info("Manipulate lines_df") - line_data_df = pd.concat( - [ - edisgo_obj.topology.equipment_data["mv_overhead_lines"], - edisgo_obj.topology.equipment_data["mv_cables"], - edisgo_obj.topology.equipment_data["lv_cables"], - ] - ) - - lines_df = lines_df.apply(apply_busmap_df, axis=1) - - lines_df = lines_df.apply( - remove_lines_with_the_same_bus, axis=1, result_type="broadcast" - ).dropna() - - order = lines_df.bus0 < lines_df.bus1 - lines_df_p = lines_df[order] - lines_df_n = lines_df[~order].rename(columns={"bus0": "bus1", "bus1": "bus0"}) - lines_df = pd.concat([lines_df_p, lines_df_n], sort=True) - - lines_df = lines_df.groupby(by=["bus0", "bus1"]).apply(aggregate_lines_df) - - lines_df.index = ( - "Line_" + lines_df.loc[:, "bus0"] + "_to_" + lines_df.loc[:, "bus1"] - ) - - edisgo_obj.topology.lines_df = lines_df - - load_aggregation_mode = "bus" - - # aggregate loads - def apply_busmap(series): + def apply_busmap_on_components(series): series.loc["bus"] = busmap_df.loc[series.loc["bus"], "new_bus"] return series - def aggregate_loads(df): + def aggregate_loads_df(df): series = pd.Series(index=df.columns, dtype="object") # l.values[0], series.loc["bus"] = df.loc[:, "bus"].values[0] series.loc["p_set"] = df.loc[:, "p_set"].sum() series.loc["annual_consumption"] = df.loc[:, "annual_consumption"].sum() if load_aggregation_mode == "sector": series.loc["sector"] = df.loc[:, "sector"].values[0] - # elif load_aggregation_mode == 'bus': - # series.loc['sector'] = 'aggregated' - series.loc["old_load_name"] = df.index.tolist() - return series - - if not loads_changed_df.empty: - logger.info("Manipulate loads") - loads_changed_df = loads_changed_df.apply(apply_busmap, axis="columns") - if aggregation_mode: - if load_aggregation_mode == "sector": - loads_changed_df = loads_changed_df.groupby(by=["bus", "sector"]).apply( - aggregate_loads - ) - loads_changed_df.index = ( - "Load_" - + loads_changed_df.loc[:, "bus"] - + "_" - + loads_changed_df.loc[:, "sector"] - ) - elif load_aggregation_mode == "bus": - loads_changed_df = loads_changed_df.groupby("bus").apply( - aggregate_loads - ) - loads_changed_df.index = "Load_" + loads_changed_df.loc[:, "bus"] - - edisgo_obj.topology.loads_df = loads_changed_df - if aggregation_mode: - edisgo_obj.topology.loads_df.index.name = "name" - - # aggregate load timeseries - load_name_map_df = edisgo_obj.topology.loads_df.loc[ - :, "old_load_name" - ].to_dict() - load_name_map = {} - for i in range(0, len(load_name_map_df.keys())): - for j in range(0, len(list(load_name_map_df.values())[i])): - load_name_map[list(load_name_map_df.values())[i][j]] = list( - load_name_map_df.keys() - )[i] - # return load_name_map - - timeseries_loads_p_df = edisgo_obj.timeseries.loads_active_power.T - timeseries_loads_q_df = edisgo_obj.timeseries.loads_reactive_power.T - - new_index = [] - for i in range(0, timeseries_loads_p_df.shape[0]): - new_load_name = load_name_map[timeseries_loads_p_df.index[i]] - new_index.append(new_load_name) - - old_index = timeseries_loads_p_df.index.tolist() - rename_index = dict(zip(old_index, new_index)) - - timeseries_loads_p_df = timeseries_loads_p_df.rename(index=rename_index) - timeseries_loads_q_df = timeseries_loads_q_df.rename(index=rename_index) - edisgo_obj.timeseries.loads_active_power = ( - timeseries_loads_p_df.groupby(level=0).sum().T - ) - edisgo_obj.timeseries.loads_reactive_power = ( - timeseries_loads_q_df.groupby(level=0).sum().T - ) - - # aggregate generators - generator_aggregation_mode = "type" - - def apply_busmap(series): - series.loc["bus"] = busmap_df.loc[series.loc["bus"], "new_bus"] + elif load_aggregation_mode == "bus": + series.loc["sector"] = "aggregated" + series.loc["old_name"] = df.index.tolist() return series def aggregate_generators_df(df): @@ -1628,7 +1636,7 @@ def aggregate_generators_df(df): series.loc["p_nom"] = df.loc[:, "p_nom"].sum() series.loc["control"] = df.loc[:, "control"].values[0] series.loc["subtype"] = df.loc[:, "subtype"].values[0] - series.loc["old_generator_name"] = df.index.tolist() + series.loc["old_name"] = df.index.tolist() if generator_aggregation_mode == "bus": series.loc["type"] = "aggregated" series.loc["weather_cell_id"] = "aggregated" @@ -1644,253 +1652,258 @@ def extract_weather_cell_id(series): series = str(int(series)) return series - if not generators_changed_df.empty: - logger.info("Manipulate generators") - generators_changed_df = generators_changed_df.loc[ - generators_changed_df.loc[:, "bus"].isin(busmap_df.index), : - ] - generators_changed_df = generators_changed_df.apply( - apply_busmap, axis="columns" + def aggregate_timeseries( + df: DataFrame, edisgo_obj: EDisGo, timeseries_to_aggregate: list + ) -> None: + # comp = component + # aggregate load timeseries + name_map_df = df.loc[:, "old_name"].to_dict() + name_map = {} + for i in range(0, len(name_map_df.keys())): + for j in range(0, len(list(name_map_df.values())[i])): + name_map[list(name_map_df.values())[i][j]] = list(name_map_df.keys())[i] + + rename_index = [] + for timeseries_name in timeseries_to_aggregate: + timeseries = getattr(edisgo_obj.timeseries, timeseries_name).T + + if len(rename_index) == 0: + new_index = [] + for i in range(0, timeseries.shape[0]): + new_load_name = name_map[timeseries.index[i]] + new_index.append(new_load_name) + + old_index = timeseries.index.tolist() + rename_index = dict(zip(old_index, new_index)) + + timeseries = timeseries.rename(index=rename_index) + timeseries = timeseries.groupby(level=0).sum().T + + setattr(edisgo_obj.timeseries, timeseries_name, timeseries) + + return edisgo_obj + + def apply_busmap_on_transformers_df(series): + series.loc["bus0"] = busmap_df.loc[series.loc["bus0"], "new_bus"] + series.loc["bus1"] = busmap_df.loc[series.loc["bus1"], "new_bus"] + return series + + # endregion + + # region Reduce EDisGO object + start_time = time() + logger.info("Start - Reducing edisgo object") + + edisgo_obj = copy.deepcopy(edisgo_root) # Make deepcopy to preserve root object + + logger.info("Copy dataframes from edisgo object") + buses_df = edisgo_obj.topology.buses_df.copy() + lines_df = edisgo_obj.topology.lines_df.copy() + loads_df = edisgo_obj.topology.loads_df.copy() + generators_df = edisgo_obj.topology.generators_df.copy() + storage_units_df = edisgo_obj.topology.storage_units_df.copy() + switches_df = edisgo_obj.topology.switches_df.copy() + + slack_bus = edisgo_obj.topology.transformers_hvmv_df.bus1[0] + + logger.info("Manipulate buses_df") + buses_df = buses_df.apply(apply_busmap_on_busmap_df, axis="columns") + buses_df = buses_df.groupby(by=["bus"], dropna=False, as_index=False).first() + + buses_df.loc[:, "in_building"] = False + buses_df = buses_df.set_index("bus") + + logger.info("Manipulate lines_df") + if not lines_df.empty: + # Get one dataframe with all data of the line types + line_data_df = pd.concat( + [ + edisgo_obj.topology.equipment_data["mv_overhead_lines"], + edisgo_obj.topology.equipment_data["mv_cables"], + edisgo_obj.topology.equipment_data["lv_cables"], + ] ) + lines_df = lines_df.apply(apply_busmap_on_lines_df, axis=1) + lines_df = lines_df.apply( + remove_lines_with_the_same_bus, axis="columns", result_type="broadcast" + ).dropna() + lines_df = get_ordered_lines_df(lines_df) + lines_df = lines_df.groupby(by=["bus0", "bus1"]).apply(aggregate_lines_df) + lines_df.index = ( + "Line_" + lines_df.loc[:, "bus0"] + "_to_" + lines_df.loc[:, "bus1"] + ) + + logger.info("Manipulate loads_df") + if not loads_df.empty: + loads_df = loads_df.apply(apply_busmap_on_components, axis="columns") + + if aggregation_mode: + if load_aggregation_mode == "sector": + loads_df = loads_df.groupby(by=["bus", "sector"]).apply( + aggregate_loads_df + ) + loads_df.index = ( + "Load_" + loads_df.loc[:, "bus"] + "_" + loads_df.loc[:, "sector"] + ) + elif load_aggregation_mode == "bus": + loads_df = loads_df.groupby(by=["bus"]).apply(aggregate_loads_df) + loads_df.index = "Load_" + loads_df.loc[:, "bus"] + + loads_df.index.name = "name" + + aggregate_timeseries( + loads_df, edisgo_obj, ["loads_active_power", "loads_reactive_power"] + ) + + logger.info("Manipulate generators_df") + if not generators_df.empty: + generators_df = generators_df.loc[ + generators_df.loc[:, "bus"].isin(busmap_df.index), : + ] + generators_df = generators_df.apply(apply_busmap_on_components, axis="columns") + if aggregation_mode: if generator_aggregation_mode == "bus": - generators_changed_df = generators_changed_df.groupby("bus").apply( + generators_df = generators_df.groupby("bus").apply( aggregate_generators_df ) - generators_changed_df.index = ( - "Generator_" + generators_changed_df.loc[:, "bus"] - ) + generators_df.index = "Generator_" + generators_df.loc[:, "bus"] elif generator_aggregation_mode == "type": - generators_changed_df = generators_changed_df.groupby( + generators_df = generators_df.groupby( by=["bus", "type", "weather_cell_id"], dropna=False ).apply(aggregate_generators_df) - generators_changed_df.index = ( + generators_df.index = ( "Generator_" - + generators_changed_df.loc[:, "bus"].values + + generators_df.loc[:, "bus"].values + "_" - + generators_changed_df.loc[:, "type"].values + + generators_df.loc[:, "type"].values + "_weather_cell_id_" - + generators_changed_df.loc[:, "weather_cell_id"] + + generators_df.loc[:, "weather_cell_id"] .apply(extract_weather_cell_id) .values ) - edisgo_obj.topology.generators_df = generators_changed_df - if aggregation_mode: - timeseries_generators_p_df = edisgo_obj.timeseries.generators_active_power.T - timeseries_generators_q_df = ( - edisgo_obj.timeseries.generators_reactive_power.T + aggregate_timeseries( + generators_df, + edisgo_obj, + ["generators_active_power", "generators_reactive_power"], ) - generator_name_map_df = edisgo_obj.topology.generators_df.loc[ - :, "old_generator_name" - ].to_dict() - # return generator_name_map_df - generator_name_map = {} - for i in range(0, len(generator_name_map_df.keys())): - for j in range(0, len(list(generator_name_map_df.values())[i])): - generator_name_map[ - list(generator_name_map_df.values())[i][j] - ] = list(generator_name_map_df.keys())[i] - - # return generator_name_map - new_index = [] - for i in range(0, timeseries_generators_p_df.shape[0]): - new_generator_name = generator_name_map[ - timeseries_generators_p_df.index[i] - ] - new_index.append(new_generator_name) - - old_index = timeseries_generators_p_df.index.tolist() - rename_index = dict(zip(old_index, new_index)) - - timeseries_generators_p_df = timeseries_generators_p_df.rename( - index=rename_index - ) - timeseries_generators_q_df = timeseries_generators_q_df.rename( - index=rename_index - ) + logger.info("Manipulate storage_units_df") - edisgo_obj.timeseries.generators_active_power = ( - timeseries_generators_p_df.groupby(level=0).sum().T - ) - - edisgo_obj.timeseries.generators_reactive_power = ( - timeseries_generators_q_df.groupby(level=0).sum().T - ) + if not storage_units_df.empty: + storage_units_df = storage_units_df.apply( + apply_busmap_on_components, axis="columns" + ) - # if not charging_points_df.empty: - # logger.info("Manipulate charging points") - # - # def aggregate_charging_points_df(df): - # series = pd.Series(dtype="object") - # series.loc["bus"] = df.loc[:, "bus"].values[0] - # series.loc["p_set"] = df.loc[:, "p_set"].sum() - # series.loc["use_case"] = df.loc[:, "use_case"].values[0] - # series.loc["old_charging_point_name"] = df.index.tolist() - # return series - # - # charging_points_df = edisgo_obj.topology.charging_points_df - # charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") - # - # if aggregate_charging_points_mode: - # charging_points_df = charging_points_df.groupby( - # by=["bus", "use_case"], dropna=False - # ).apply(aggregate_charging_points_df) - # - # edisgo_obj.topology.charging_points_df = charging_points_df - # - # if aggregate_charging_points_mode: - # charging_points_df.index = ( - # "ChargingPoint_" - # + charging_points_df.loc[:, "bus"].values - # + "_" - # + charging_points_df.loc[:, "use_case"].values - # ) - # - # timeseries_charging_points_p_df = ( - # edisgo_obj.timeseries.charging_points_active_power.T - # ) - # timeseries_charging_points_q_df = ( - # edisgo_obj.timeseries.charging_points_reactive_power.T - # ) - # - # charging_point_name_map_df = charging_points_df.loc[ - # :, "old_charging_point_name" - # ].to_dict() - # - # charging_point_name_map = {} - # for i in range(0, len(charging_point_name_map_df.keys())): - # for j in range(0, len(list(charging_point_name_map_df.values())[i])): - # charging_point_name_map[ - # list(charging_point_name_map_df.values())[i][j] - # ] = list(charging_point_name_map_df.keys())[i] - # - # new_index = [] - # for index in timeseries_charging_points_p_df.index.tolist(): - # new_index.append(charging_point_name_map[index]) - # - # old_index = timeseries_charging_points_p_df.index.tolist() - # rename_index = dict(zip(old_index, new_index)) - # - # timeseries_charging_points_p_df = timeseries_charging_points_p_df.rename( - # index=rename_index - # ) - # timeseries_charging_points_q_df = timeseries_charging_points_q_df.rename( - # index=rename_index - # ) - # - # timeseries_charging_points_p_df = ( - # timeseries_charging_points_p_df.groupby(level=0).sum().T - # ) - # timeseries_charging_points_q_df = ( - # timeseries_charging_points_q_df.groupby(level=0).sum().T - # ) - # - # edisgo_obj.timeseries.charging_points_active_power = ( - # timeseries_charging_points_p_df - # ) - # edisgo_obj.timeseries.charging_points_reactive_power = ( - # timeseries_charging_points_q_df - # ) - - # apply busmap on transformers_df logger.info("Manipulate transformers_df") - - def apply_busmap(series): - series.loc["bus0"] = busmap_df.loc[series.loc["bus0"], "new_bus"] - series.loc["bus1"] = busmap_df.loc[series.loc["bus1"], "new_bus"] - return series - transformers_df = edisgo_obj.topology.transformers_df - transformers_df = transformers_df.apply(apply_busmap, axis="columns") - edisgo_obj.topology.transformers_df = transformers_df + transformers_df = transformers_df.apply( + apply_busmap_on_transformers_df, axis="columns" + ) - # manipulate switches_df logger.info("Manipulate switches_df") - switches_df = edisgo_obj.topology.switches_df - - # drop switches unused switches - switches_to_drop = [] - for index, new_bus in zip(busmap_df.index, busmap_df.new_bus): - if (index.split("_")[0] == "virtual") and (new_bus.split("_")[0] != "virtual"): - switches_to_drop.append( - switches_df.loc[switches_df.bus_open == index].index[0] - ) + if not switches_df.empty: + # drop switches unused switches + switches_to_drop = [] + for index, new_bus in zip(busmap_df.index, busmap_df.new_bus): + if (index.split("_")[0] == "virtual") and ( + new_bus.split("_")[0] != "virtual" + ): + switches_to_drop.append( + switches_df.loc[switches_df.bus_open == index].index[0] + ) - if len(switches_to_drop) > 0: - logger.warning("Drop unused switches: {}".format(switches_to_drop)) - switches_df = switches_df.drop(switches_to_drop) + if len(switches_to_drop) > 0: + logger.warning("Drop unused switches: {}".format(switches_to_drop)) + switches_df = switches_df.drop(switches_to_drop) - # apply busmap - for index, bus_open, bus_closed in zip( - switches_df.index, switches_df.bus_open, switches_df.bus_closed - ): - switches_df.loc[index, "bus_closed"] = busmap_df.loc[bus_closed, "new_bus"] - switches_df.loc[index, "bus_open"] = busmap_df.loc[bus_open, "new_bus"] - - # drop switches which are not connected to any lines - # switches_to_drop = [] - # for index, row in switches_df.iterrows(): - # if ~(lines_df.bus0.isin([row.bus_open]).any() - # or lines_df.bus1.isin([row.bus_open]).any()): - # switches_to_drop.append(index) - # - # if len(switches_to_drop) > 0: - # logger.info('Drop switches which are ' - # 'not connected to any lines: {}'.format(switches_to_drop)) - # switches_df = switches_df.drop(switches_to_drop) - - # update the branches in switches_df - for index, bus_open, bus_closed in zip( - switches_df.index, switches_df.bus_open, switches_df.bus_closed - ): - if lines_df.bus0.isin([bus_open]).any(): - switches_df.loc[index, "branch"] = lines_df.loc[ - lines_df.bus0.isin([bus_open]) - ].index[0] - if lines_df.bus1.isin([bus_open]).any(): - switches_df.loc[index, "branch"] = lines_df.loc[ - lines_df.bus1.isin([bus_open]) - ].index[0] - - # remove duplicate switches_df - switches_df = switches_df.groupby( - by=["bus_closed", "bus_open", "branch"], as_index=False - ).first() - for index in switches_df.index.to_list(): - switches_df.loc[index, "name"] = "circuit_breaker_" + str(index) - if not switches_df.empty: - switches_df = switches_df.set_index("name") + # apply busmap + for index, bus_open, bus_closed in zip( + switches_df.index, switches_df.bus_open, switches_df.bus_closed + ): + switches_df.loc[index, "bus_closed"] = busmap_df.loc[bus_closed, "new_bus"] + switches_df.loc[index, "bus_open"] = busmap_df.loc[bus_open, "new_bus"] - # write switches_df into object + # update the branches in switches_df + for index, bus_open, bus_closed in zip( + switches_df.index, switches_df.bus_open, switches_df.bus_closed + ): + if lines_df.bus0.isin([bus_open]).any(): + switches_df.loc[index, "branch"] = lines_df.loc[ + lines_df.bus0.isin([bus_open]) + ].index[0] + if lines_df.bus1.isin([bus_open]).any(): + switches_df.loc[index, "branch"] = lines_df.loc[ + lines_df.bus1.isin([bus_open]) + ].index[0] + + # remove duplicate switches_df + switches_df = switches_df.groupby( + by=["bus_closed", "bus_open", "branch"], as_index=False + ).first() + for index in switches_df.index.to_list(): + switches_df.loc[index, "name"] = "circuit_breaker_" + str(index) + if not switches_df.empty: + switches_df = switches_df.set_index("name") + + # Write dataframes back to the edisgo object. + edisgo_obj.topology.buses_df = buses_df + edisgo_obj.topology.lines_df = lines_df + edisgo_obj.topology.loads_df = loads_df + edisgo_obj.topology.generators_df = generators_df + edisgo_obj.topology.storage_units_df = storage_units_df + edisgo_obj.topology.transformers_df = transformers_df edisgo_obj.topology.switches_df = switches_df - # drop isolated nodes - # G = edisgo_obj.topology.mv_grid.graph - # isolated_nodes = list(nx.algorithms.isolate.isolates(G)) - # if len(isolated_nodes) > 0: - # logger.warning( - # "The following isolated nodes are droped: {}".format(isolated_nodes) - # ) - # edisgo_obj.topology.buses_df = ( - # edisgo_obj.topology.buses_df.drop(isolated_nodes) - # ) - - # make line_map_df - logger.info("Make line_map_df") + logger.info("Make linemap_df") linemap_df = pd.DataFrame() for new_line_name, old_line_names in zip(lines_df.index, lines_df.old_line_name): for old_line_name in old_line_names: linemap_df.loc[old_line_name, "new_line_name"] = new_line_name logger.info("Finished in {}s".format(time() - start_time)) + # endregion + return edisgo_obj, linemap_df -# Postprocessing -def save_results_reduced_to_min_max(edisgo_root, edisgo_object_name): +def spatial_complexity_reduction( + edisgo_root: EDisGo, + mode: str = "kmeansdijkstra", + cluster_area: str = "feeder", + reduction_factor: float = 0.5, + reduction_factor_not_focused: Union[float, bool] = 0.2, +) -> Tuple[EDisGo, DataFrame, DataFrame]: + """ + Wrapper around the functions :func:`make_busmap` and + :func:`reduce_edisgo ` + look there for more information. + """ + edisgo_obj = copy.deepcopy(edisgo_root) + # edisgo_obj.results.equipment_changes = pd.DataFrame() + + busmap_df = make_busmap( + edisgo_root, + mode=mode, + cluster_area=cluster_area, + reduction_factor=reduction_factor, + reduction_factor_not_focused=reduction_factor_not_focused, + ) + edisgo_reduced, linemap_df = reduce_edisgo( + edisgo_obj, busmap_df, aggregation_mode=False + ) + + return edisgo_reduced, busmap_df, linemap_df + + +# endregion + +# region Postprocessing/Evaluation (Currently not tested and probably not working.) +def save_results_reduced_to_min_max( + edisgo_root: EDisGo, edisgo_object_name: str +) -> EDisGo: edisgo_obj = copy.deepcopy(edisgo_root) def min_max(df): @@ -1903,7 +1916,6 @@ def min_max(df): df = df.T return df - logger = logging.getLogger("edisgo.cr_reduce_results_to_min_max") start_time = time() logger.info("Start - Reduce results to min and max") @@ -1921,8 +1933,7 @@ def min_max(df): # Analyze results -def length_analysis(edisgo_obj): - logger = logging.getLogger("edisgo.cr_length_analysis") +def length_analysis(edisgo_obj: EDisGo) -> Tuple[float, float, float]: start_time = time() logger.info("Start - Length analysis") @@ -1939,21 +1950,22 @@ def length_analysis(edisgo_obj): return length_total, length_mv, length_lv -def voltage_mapping(edisgo_root, edisgo_reduced, busmap_df, timestep): - logger = logging.getLogger("edisgo.cr_voltage_mapping") +def voltage_mapping( + edisgo_root: EDisGo, edisgo_reduced: EDisGo, busmap_df: DataFrame, timestep: str +) -> Tuple[DataFrame, float]: start_time = time() logger.info("Start - Voltage mapping") if timestep == "min": - logger.info("Voltage mapping for the minium values.") + logger.info("Voltage mapping for the minium values") v_root = edisgo_root.results.v_res.min() v_reduced = edisgo_reduced.results.v_res.min() elif timestep == "max": - logger.info("Voltage mapping for the maximum values.") + logger.info("Voltage mapping for the maximum values") v_root = edisgo_root.results.v_res.max() v_reduced = edisgo_reduced.results.v_res.max() else: - logger.info("Voltage mapping for timestep {}.".format(timestep)) + logger.info("Voltage mapping for timestep {}".format(timestep)) v_root = edisgo_root.results.v_res.loc[timestep] v_reduced = edisgo_reduced.results.v_res.loc[timestep] @@ -1992,21 +2004,22 @@ def voltage_mapping(edisgo_root, edisgo_reduced, busmap_df, timestep): return voltages_df, rms -def line_apparent_power_mapping(edisgo_root, edisgo_reduced, linemap_df, timestep): - logger = logging.getLogger("edisgo.cr_line_apparent_power_mapping") +def line_apparent_power_mapping( + edisgo_root: EDisGo, edisgo_reduced: EDisGo, linemap_df: DataFrame, timestep: str +) -> Tuple[DataFrame, float]: start_time = time() logger.info("Start - Line apparent power mapping") if timestep == "min": - logger.info("Apparent power mapping for the minium values.") + logger.info("Apparent power mapping for the minium values") s_root = edisgo_root.results.s_res.min() s_reduced = edisgo_reduced.results.s_res.min() elif timestep == "max": - logger.info("Apparent power mapping for the maximum values.") + logger.info("Apparent power mapping for the maximum values") s_root = edisgo_root.results.s_res.max() s_reduced = edisgo_reduced.results.s_res.max() else: - logger.info("Apparent power mapping for timestep {}.".format(timestep)) + logger.info("Apparent power mapping for timestep {}".format(timestep)) s_root = edisgo_root.results.s_res.loc[timestep] s_reduced = edisgo_reduced.results.s_res.loc[timestep] @@ -2029,120 +2042,4 @@ def line_apparent_power_mapping(edisgo_root, edisgo_reduced, linemap_df, timeste return s_df, rms -# Functions for other functions -coor_transform = Transformer.from_crs("EPSG:4326", "EPSG:3035", always_xy=True) -coor_transform_back = Transformer.from_crs("EPSG:3035", "EPSG:4326", always_xy=True) - - -def make_grid_list(edisgo_obj, grid): - if edisgo_obj is None and grid is None: - raise ValueError("Pass an Grid") - elif grid is not None: - grid_name_list = [str(edisgo_obj.topology.mv_grid)] - grid_name_list = grid_name_list + list( - map(str, edisgo_obj.topology.mv_grid.lv_grids) - ) - grid_list = [edisgo_obj.topology.mv_grid] - grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) - grid_list = [grid_list[grid_name_list.index(str(grid))]] - else: - grid_list = [edisgo_obj.topology.mv_grid] - grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) - - return grid_list - - -def find_buses_of_interest(edisgo_root): - logger = logging.getLogger("edisgo.cr_find_buses_of_interest") - start_time = time() - logger.info("Start - Find buses of interest") - - edisgo_wc = copy.deepcopy(edisgo_root) - edisgo_wc.timeseries = timeseries.TimeSeries() - edisgo_wc.timeseries.set_worst_case(edisgo_wc, ["feed-in_case", "load_case"]) - edisgo_wc.analyze() - - buses_of_interest = set() - mv_lines = checks.mv_line_load(edisgo_wc) - lv_lines = checks.lv_line_load(edisgo_wc) - lines = mv_lines.index.tolist() - lines = lines + lv_lines.index.tolist() - for line in lines: - buses_of_interest.add(edisgo_wc.topology.lines_df.loc[line, "bus0"]) - buses_of_interest.add(edisgo_wc.topology.lines_df.loc[line, "bus1"]) - - mv_buses = checks.mv_voltage_deviation(edisgo_wc, voltage_levels="mv") - for value in mv_buses.values(): - buses_of_interest.update(value.index.tolist()) - - lv_buses = checks.lv_voltage_deviation(edisgo_wc, voltage_levels="lv") - for value in lv_buses.values(): - buses_of_interest.update(value.index.tolist()) - - logger.info("Finished in {}s".format(time() - start_time)) - # Sort for deterministic reasons - buses_of_interest = list(buses_of_interest) - buses_of_interest.sort() - return buses_of_interest - - -def rename_virtual_buses(logger, partial_busmap_df, transformer_node): - nodes = partial_busmap_df.index.to_list() - pairs = [] - for node in nodes: - if node.split("_")[0] == "virtual": - if ( - partial_busmap_df.loc[node, "new_bus"] - != partial_busmap_df.loc[node.lstrip("virtual_"), "new_bus"] - ): - pairs.append([node, node.lstrip("virtual_")]) - - logger.debug("Pairs: {}".format(pairs)) - logger.debug("Length pairs: {}".format(len(pairs))) - if len(pairs) > 0: - logger.info("Rename virtual buses") - for feeder_virtual, feeder_non_virtual in pairs: - old_name_of_virtual_node = partial_busmap_df.loc[feeder_virtual, "new_bus"] - nodes_in_the_same_cluster_as_virtual_node = partial_busmap_df.loc[ - partial_busmap_df.loc[:, "new_bus"].isin([old_name_of_virtual_node]) - ].index.tolist() - - for nodes_to_add_a_virtual in nodes_in_the_same_cluster_as_virtual_node: - # Stop making a virtual transformer bus - # Stop renaming the transformer bus - if ( - partial_busmap_df.loc[feeder_non_virtual, "new_bus"] - != transformer_node - ) and ( - partial_busmap_df.loc[nodes_to_add_a_virtual, "new_bus"] - != transformer_node - ): - - partial_busmap_df.loc[nodes_to_add_a_virtual, "new_bus"] = ( - "virtual_" - + partial_busmap_df.loc[feeder_non_virtual, "new_bus"] - ) - return partial_busmap_df - - -def spatial_complexity_reduction( - edisgo_root, - mode=None, - cluster_area=None, - reduction_factor=None, - reduction_factor_not_focused=None, -): - edisgo_obj = copy.deepcopy(edisgo_root) - # edisgo_obj.results.equipment_changes = pd.DataFrame() - - busmap_df = make_busmap( - mode=mode, - cluster_area=cluster_area, - reduction_factor=reduction_factor, - reduction_factor_not_focused=reduction_factor_not_focused, - ) - edisgo_reduced, linemap_df = reduce_edisgo( - edisgo_obj, busmap_df, aggregation_mode=False - ) - - return edisgo_reduced, busmap_df, linemap_df +# endregion diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index 895aff643..55cb11d19 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -1,36 +1,43 @@ import copy from contextlib import nullcontext as does_not_raise -from hashlib import md5 import pytest from edisgo import EDisGo from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates -from edisgo.tools.spatial_complexity_reduction import make_busmap - - -def hash_df(df): - s = df.to_json() - return md5(s.encode()).hexdigest() +from edisgo.tools.spatial_complexity_reduction import ( + hash_df, + make_busmap, + make_grid_list, + reduce_edisgo, + spatial_complexity_reduction, +) class TestSpatialComplexityReduction: @pytest.fixture(scope="class") - def test_grid(self): - """EDisGo-object is set up only once.""" + def test_edisgo_obj(self): + """EDisGo-object is set up only once, during class lifetime.""" edisgo_root = EDisGo(ding0_grid=pytest.ding0_test_network_path) edisgo_root.set_time_series_worst_case_analysis() edisgo_root = make_pseudo_coordinates(edisgo_root) return edisgo_root - @pytest.fixture - def test_grid_copy(self, test_grid): - return copy.deepcopy(test_grid) + @pytest.fixture(scope="class") + def test_busmap_df(self, test_edisgo_obj): + busmap_df = make_busmap( + test_edisgo_obj, + mode="kmeansdijkstra", + cluster_area="main_feeder", + reduction_factor=0.25, + reduction_factor_not_focused=False, + ) + return busmap_df @pytest.mark.parametrize( "mode,cluster_area,reduction_factor,reduction_factor_not_focused," - "test_exception,expected_remaining_nodes", + "test_exception,expected_hash", [ # Cluster area: 'grid' ( @@ -118,10 +125,10 @@ def test_grid_copy(self, test_grid): ( "aggregate_to_main_feeder", "main_feeder", - 0.1, + None, False, does_not_raise(), - "2dd5b8b7ac6f18765fc5e4ccbf330681", + "16a375d48227b6af7c716ae5791ec419", ), ( "equidistant_nodes", @@ -157,15 +164,16 @@ def test_grid_copy(self, test_grid): ) def test_make_busmap( self, - test_grid_copy, + test_edisgo_obj, mode, cluster_area, reduction_factor, reduction_factor_not_focused, test_exception, - expected_remaining_nodes, + expected_hash, ): - edisgo_root = test_grid_copy + edisgo_root = copy.deepcopy(test_edisgo_obj) + with test_exception: busmap_df = make_busmap( edisgo_root, @@ -174,6 +182,140 @@ def test_make_busmap( reduction_factor=reduction_factor, reduction_factor_not_focused=reduction_factor_not_focused, ) - # Check that results stay always the same, deterministic behaviour - assert hash_df(busmap_df) == expected_remaining_nodes - print("THE END") + # Check for deterministic behaviour. + assert hash_df(busmap_df) == expected_hash + + @pytest.mark.parametrize( + "cluster_area,grid,expected_hash", + [ + # Cluster area: 'grid' + ("grid", "MVGrid", "f7c55d5a0933816ce2ab5f439c8193fe"), + ("grid", "LVGrid", "fe5dd55a9bb4ed151c06841347cbc869"), + # Cluster area: 'feeder' + ("feeder", "MVGrid", "d23665844d28241cca314f5d4045157d"), + ("feeder", "LVGrid", "f84068fe78e5ffeb2ffdce42e9f8762b"), + # Cluster area: 'main_feeder' + ("main_feeder", "MVGrid", "56913cc22a534f5f8b150b42f389957e"), + ("main_feeder", "LVGrid", "9ce503e790b71ded6dbd30691580b646"), + ], + ) + def test_make_busmap_for_only_one_grid( + self, + test_edisgo_obj, + cluster_area, + grid, + expected_hash, + ): + edisgo_root = copy.deepcopy(test_edisgo_obj) + + if grid == "MVGrid": + grid = make_grid_list(edisgo_root, grid="MVGrid_1")[0] + elif grid == "LVGrid": + grid = make_grid_list(edisgo_root, grid="LVGrid_9")[0] + + busmap_df = make_busmap( + edisgo_root, + mode="kmeans", + grid=grid, + cluster_area=cluster_area, + reduction_factor=0.2, + ) + # Check for deterministic behaviour. + assert hash_df(busmap_df) == expected_hash + + @pytest.mark.parametrize( + "line_naming_convention," + "aggregation_mode," + "load_aggregation_mode, " + "generator_aggregation_mode, " + "n_loads, " + "n_generators,", + [ + ("standard_lines", True, "bus", "bus", 27, 17), + ("standard_lines", True, "sector", "type", 28, 18), + ("combined_name", False, None, None, 50, 28), + ], + ) + def test_reduce_edisgo( + self, + test_edisgo_obj, + test_busmap_df, + line_naming_convention, + aggregation_mode, + load_aggregation_mode, + generator_aggregation_mode, + n_loads, + n_generators, + ): + edisgo_root = copy.deepcopy(test_edisgo_obj) + busmap_df = copy.deepcopy(test_busmap_df) + + # Add second line to test line reduction + edisgo_root.topology.lines_df.loc[ + "Line_10003_2" + ] = edisgo_root.topology.lines_df.loc["Line_10003"] + + assert edisgo_root.topology.buses_df.shape[0] == 142 + assert edisgo_root.topology.lines_df.shape[0] == 132 + assert edisgo_root.topology.loads_df.shape[0] == 50 + assert edisgo_root.topology.generators_df.shape[0] == 28 + assert edisgo_root.topology.storage_units_df.shape[0] == 1 + assert edisgo_root.topology.transformers_df.shape[0] == 14 + assert edisgo_root.topology.switches_df.shape[0] == 2 + + edisgo_reduced, linemap_df = reduce_edisgo( + edisgo_root, + busmap_df, + line_naming_convention=line_naming_convention, + aggregation_mode=aggregation_mode, + load_aggregation_mode=load_aggregation_mode, + generator_aggregation_mode=generator_aggregation_mode, + ) + + assert edisgo_reduced.topology.buses_df.shape[0] == 43 + assert edisgo_reduced.topology.lines_df.shape[0] == 34 + assert edisgo_reduced.topology.loads_df.shape[0] == n_loads + assert edisgo_reduced.topology.generators_df.shape[0] == n_generators + assert edisgo_reduced.topology.storage_units_df.shape[0] == 1 + assert edisgo_reduced.topology.transformers_df.shape[0] == 14 + assert edisgo_reduced.topology.switches_df.shape[0] == 2 + + if line_naming_convention == "standard_lines": + assert ( + edisgo_reduced.topology.lines_df.loc[ + "Line_Bus_MVStation_1_to_Bus_mvgd_1_F0_B2", "type_info" + ] + == "NA2XS2Y 3x1x240" + ) + elif line_naming_convention == "combined_name": + assert ( + edisgo_reduced.topology.lines_df.loc[ + "Line_Bus_MVStation_1_to_Bus_mvgd_1_F0_B2", "type_info" + ] + == "Merged: 48-AL1/8-ST1A 48-AL1/8-ST1A " + ) + timeseries = edisgo_reduced.timeseries + assert timeseries.loads_active_power.shape[1] == n_loads + assert timeseries.loads_reactive_power.shape[1] == n_loads + assert timeseries.generators_active_power.shape[1] == n_generators + assert timeseries.generators_reactive_power.shape[1] == n_generators + + # Check for deterministic behaviour. + assert hash_df(linemap_df) == "e6e50f9042722398e27488b22c9848df" + + def test_spatial_complexity_reduction(self, test_edisgo_obj): + edisgo_root = copy.deepcopy(test_edisgo_obj) + + edisgo_reduced, busmap_df, linemap_df = spatial_complexity_reduction( + edisgo_root, + mode="kmeans", + cluster_area="grid", + reduction_factor=0.2, + reduction_factor_not_focused=False, + ) + # Check for deterministic behaviour. + assert hash_df(busmap_df) == "ce1cf807409fe5e0e9abe3123a18791a" + + # Check that edisgo_object can run power flow and reinforce + edisgo_reduced.analyze() + edisgo_reduced.reinforce() From a583e7de5b0d0f519a0047db7ec4fcae5c576474 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 22 Mar 2023 21:43:20 +0100 Subject: [PATCH 131/355] Adapt DSM class and add tests --- edisgo/network/dsm.py | 194 ++++++++++++++++++++++++++++---------- tests/network/test_dsm.py | 116 +++++++++++++++++++++++ 2 files changed, 261 insertions(+), 49 deletions(-) create mode 100644 tests/network/test_dsm.py diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py index 0fa9e2fb2..8180186bf 100644 --- a/edisgo/network/dsm.py +++ b/edisgo/network/dsm.py @@ -11,55 +11,33 @@ class DSM: - def __init__(self, **kwargs): - self._edisgo_obj = kwargs.get("edisgo_obj") - - @property - def egon_etrago_link(self): - try: - return self._egon_etrago_link - except Exception: - return pd.DataFrame() - - @egon_etrago_link.setter - def egon_etrago_link(self, df: pd.DataFrame): - self._egon_etrago_link = df + """ + Data container for demand side management potential data. - @property - def egon_etrago_link_timeseries(self): - try: - return self._egon_etrago_link_timeseries - except Exception: - return pd.DataFrame() + """ - @egon_etrago_link_timeseries.setter - def egon_etrago_link_timeseries(self, df: pd.DataFrame): - self._egon_etrago_link_timeseries = df - - @property - def egon_etrago_store(self): - try: - return self._egon_etrago_store - except Exception: - return pd.DataFrame() - - @egon_etrago_store.setter - def egon_etrago_store(self, df: pd.DataFrame): - self._egon_etrago_store = df - - @property - def egon_etrago_store_timeseries(self): - try: - return self._egon_etrago_store_timeseries - except Exception: - return pd.DataFrame() - - @egon_etrago_store_timeseries.setter - def egon_etrago_store_timeseries(self, df: pd.DataFrame): - self._egon_etrago_store_timeseries = df + def __init__(self, **kwargs): + pass @property def p_min(self): + """ + Maximum load decrease in MW. + + Parameters + ---------- + df : :pandas:`pandas.DataFrame` + Maximum load decrease in MW. Index of the dataframe is a time index and + column names are names of DSM loads as in + :attr:`~.network.topology.Topology.loads_df`. + + Returns + ------- + :pandas:`pandas.DataFrame` + Maximum load decrease in MW. For more information on the dataframe see + input parameter `df`. + + """ try: return self._p_min except Exception: @@ -71,6 +49,23 @@ def p_min(self, df: pd.DataFrame): @property def p_max(self): + """ + Maximum load increase in MW. + + Parameters + ---------- + df : :pandas:`pandas.DataFrame` + Maximum load increase in MW. Index of the dataframe is a time index and + column names are names of DSM loads as in + :attr:`~.network.topology.Topology.loads_df`. + + Returns + ------- + :pandas:`pandas.DataFrame` + Maximum load decrease in MW. For more information on the dataframe see + input parameter `df`. + + """ try: return self._p_max except Exception: @@ -82,6 +77,23 @@ def p_max(self, df: pd.DataFrame): @property def e_min(self): + """ + Maximum energy preponing in MWh. + + Parameters + ---------- + df : :pandas:`pandas.DataFrame` + Maximum energy preponing in MWh. Index of the dataframe is a time index and + column names are names of DSM loads as in + :attr:`~.network.topology.Topology.loads_df`. + + Returns + ------- + :pandas:`pandas.DataFrame` + Maximum energy preponing in MWh. For more information on the dataframe see + input parameter `df`. + + """ try: return self._e_min except Exception: @@ -93,6 +105,23 @@ def e_min(self, df: pd.DataFrame): @property def e_max(self): + """ + Maximum energy postponing in MWh. + + Parameters + ---------- + df : :pandas:`pandas.DataFrame` + Maximum energy postponing in MWh. Index of the dataframe is a time index and + column names are names of DSM loads as in + :attr:`~.network.topology.Topology.loads_df`. + + Returns + ------- + :pandas:`pandas.DataFrame` + Maximum energy postponing in MWh. For more information on the dataframe see + input parameter `df`. + + """ try: return self._e_max except Exception: @@ -105,17 +134,73 @@ def e_max(self, df: pd.DataFrame): @property def _attributes(self): return [ - "egon_etrago_link", - "egon_etrago_link_timeseries", - "egon_etrago_store", - "egon_etrago_store_timeseries", "p_min", "p_max", "e_min", "e_max", ] - def to_csv(self, directory: str | Path): + def reduce_memory( + self, + attr_to_reduce=None, + to_type="float32", + ): + """ + Reduces size of dataframes to save memory. + + See :attr:`~.edisgo.EDisGo.reduce_memory` for more information. + + Parameters + ----------- + attr_to_reduce : list(str), optional + List of attributes to reduce size for. Per default, all active + and reactive power time series of generators, loads, and storage units + are reduced. + to_type : str, optional + Data type to convert time series data to. This is a tradeoff + between precision and memory. Default: "float32". + + """ + if attr_to_reduce is None: + attr_to_reduce = self._attributes + for attr in attr_to_reduce: + setattr( + self, + attr, + getattr(self, attr).apply(lambda _: _.astype(to_type)), + ) + + def to_csv(self, directory: str | Path, reduce_memory=False, **kwargs): + """ + Exports DSM data to csv files. + + The following attributes are exported: + + * 'p_min' : Attribute :py:attr:`~p_min` is saved to `p_min.csv`. + * 'p_max' : Attribute :py:attr:`~p_max` is saved to `p_max.csv`. + * 'e_min' : Attribute :py:attr:`~e_min` is saved to `e_min.csv`. + * 'e_max' : Attribute :py:attr:`~e_max` is saved to `e_max.csv`. + + Parameters + ---------- + directory : str + Path to save DSM data to. + reduce_memory : bool, optional + If True, size of dataframes is reduced using + :attr:`~.network.dsm.DSM.reduce_memory`. + Optional parameters of :attr:`~.network.dsm.DSM.reduce_memory` + can be passed as kwargs to this function. Default: False. + + Other Parameters + ------------------ + kwargs : + Kwargs may contain arguments of + :attr:`~.network.dsm.DSM.reduce_memory`. + + """ + if reduce_memory is True: + self.reduce_memory(**kwargs) + if not isinstance(directory, Path): directory = Path(directory) @@ -126,6 +211,17 @@ def to_csv(self, directory: str | Path): getattr(self, attr).to_csv(directory / f"{attr}.csv") def from_csv(self, data_path: str | Path, from_zip_archive: bool = False): + """ + Restores DSM data from csv files. + + Parameters + ---------- + data_path : str + Path to DSM csv files or zip archive. + from_zip_archive : bool + Set to True if data is archived in a zip archive. Default: False. + + """ if not isinstance(data_path, Path): data_path = Path(data_path) diff --git a/tests/network/test_dsm.py b/tests/network/test_dsm.py new file mode 100644 index 000000000..adf826d9d --- /dev/null +++ b/tests/network/test_dsm.py @@ -0,0 +1,116 @@ +import os +import shutil + +import pandas as pd +import pytest + +from edisgo.network.dsm import DSM + + +class TestDSM: + @pytest.yield_fixture(autouse=True) + def setup_dsm_test_data(self): + + timeindex = pd.date_range("1/1/2011 12:00", periods=2, freq="H") + self.p_max = pd.DataFrame( + data={ + "load_1": [5.0, 6.0], + "load_2": [7.0, 8.0], + }, + index=timeindex, + ) + self.p_min = pd.DataFrame( + data={ + "load_1": [1.0, 2.0], + "load_2": [3.0, 4.0], + }, + index=timeindex, + ) + self.e_max = pd.DataFrame( + data={ + "load_1": [9.5, 10.5], + "load_2": [0.9, 0.8], + }, + index=timeindex, + ) + self.e_min = pd.DataFrame( + data={ + "load_1": [9.0, 10.0], + "load_2": [0.7, 0.6], + }, + index=timeindex, + ) + self.dsm = DSM() + self.dsm.p_max = self.p_max + self.dsm.p_min = self.p_min + self.dsm.e_max = self.e_max + self.dsm.e_min = self.e_min + + def test_reduce_memory(self): + + # check with default value + assert (self.dsm.p_max.dtypes == "float64").all() + assert (self.dsm.e_max.dtypes == "float64").all() + + self.dsm.reduce_memory() + + assert (self.dsm.p_max.dtypes == "float32").all() + assert (self.dsm.e_max.dtypes == "float32").all() + + # check arguments + self.dsm.reduce_memory(to_type="float16", attr_to_reduce=["p_max"]) + + assert (self.dsm.p_max.dtypes == "float16").all() + assert (self.dsm.e_max.dtypes == "float32").all() + + # check with empty dataframes + self.dsm.e_max = pd.DataFrame() + self.dsm.reduce_memory() + + def test_to_csv(self): + + # test with default values + save_dir = os.path.join(os.getcwd(), "dsm_csv") + self.dsm.to_csv(save_dir) + + files_in_dir = os.listdir(save_dir) + assert len(files_in_dir) == 4 + assert "p_min.csv" in files_in_dir + assert "p_max.csv" in files_in_dir + assert "e_min.csv" in files_in_dir + assert "e_max.csv" in files_in_dir + + shutil.rmtree(save_dir) + + # test with reduce memory True, to_type = float16 + self.dsm.to_csv(save_dir, reduce_memory=True, to_type="float16") + + assert (self.dsm.e_min.dtypes == "float16").all() + files_in_dir = os.listdir(save_dir) + assert len(files_in_dir) == 4 + + shutil.rmtree(save_dir, ignore_errors=True) + + def test_from_csv(self): + + # write to csv + save_dir = os.path.join(os.getcwd(), "dsm_csv") + self.dsm.to_csv(save_dir) + + # reset DSM object + self.dsm = DSM() + + self.dsm.from_csv(save_dir) + + pd.testing.assert_frame_equal( + self.dsm.p_min, + self.p_min, + check_freq=False, + ) + pd.testing.assert_frame_equal( + self.dsm.e_min, + self.e_min, + check_freq=False, + ) + + shutil.rmtree(save_dir) From af993e986c33f61c875af1ec13db31cd7de88770 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 22 Mar 2023 22:11:24 +0100 Subject: [PATCH 132/355] Minor docstring changes --- edisgo/edisgo.py | 44 +++++++++++++++++++++--------------------- edisgo/network/heat.py | 4 ++-- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 0477a9267..6236ddf1c 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2338,7 +2338,7 @@ def save( Main directory to save EDisGo object to. save_topology : bool, optional Indicates whether to save :class:`~.network.topology.Topology` object. - Per default it is saved to sub-directory 'topology'. See + Per default, it is saved to sub-directory 'topology'. See :attr:`~.network.topology.Topology.to_csv` for more information. Default: True. save_timeseries : bool, optional @@ -2351,7 +2351,7 @@ def save( Default: True. save_results : bool, optional Indicates whether to save :class:`~.network.results.Results` - object. Per default it is saved to subdirectory 'results'. + object. Per default, it is saved to subdirectory 'results'. Through the keyword argument `parameters` the results that should be stored can be specified. Further, through the keyword parameters `reduce_memory` and `to_type` it can be chosen if memory should be reduced. @@ -2359,18 +2359,18 @@ def save( Default: True. save_electromobility : bool, optional Indicates whether to save - :class:`~.network.electromobility.Electromobility` object. Per default it is - not saved. If set to True, it is saved to subdirectory 'electromobility'. + :class:`~.network.electromobility.Electromobility` object. Per default, it + is not saved. If set to True, it is saved to subdirectory 'electromobility'. See :attr:`~.network.electromobility.Electromobility.to_csv` for more information. save_heatpump : bool, optional Indicates whether to save - :class:`~.network.heat.HeatPump` object. Per default it is not saved. + :class:`~.network.heat.HeatPump` object. Per default, it is not saved. If set to True, it is saved to subdirectory 'heat_pump'. See :attr:`~.network.heat.HeatPump.to_csv` for more information. save_overlying_grid : bool, optional Indicates whether to save - :class:`~.network.overlying_grid.OverlyingGrid` object. Per default it is + :class:`~.network.overlying_grid.OverlyingGrid` object. Per default, it is not saved. If set to True, it is saved to subdirectory 'overlying_grid'. See :attr:`~.network.overlying_grid.OverlyingGrid.to_csv` for more information. @@ -2392,13 +2392,13 @@ def save( Data type to convert time series data to. This is a trade-off between precision and memory. Default: "float32". parameters : None or dict - Specifies which results to store. By default this is set to None, + Specifies which results to store. By default, this is set to None, in which case all available results are stored. To only store certain results provide a dictionary. See function docstring `parameters` parameter in :func:`~.network.results.Results.to_csv` for more information. electromobility_attributes : None or list(str) - Specifies which electromobility attributes to store. By default this is set + Specifies which electromobility attributes to store. By default, this is set to None, in which case all attributes are stored. See function docstring `attributes` parameter in :attr:`~.network.electromobility.Electromobility.to_csv` for more @@ -2757,28 +2757,28 @@ def import_edisgo_from_files( is the name of the archive. import_topology : bool Indicates whether to import :class:`~.network.topology.Topology` object. - Per default it is set to True, in which case topology data is imported. + Per default, it is set to True, in which case topology data is imported. The default directory topology data is imported from is the sub-directory 'topology'. A different directory can be specified through keyword argument `topology_directory`. Default: True. import_timeseries : bool Indicates whether to import :class:`~.network.timeseries.Timeseries` object. - Per default it is set to False, in which case timeseries data is not imported. + Per default, it is set to False, in which case timeseries data is not imported. The default directory time series data is imported from is the sub-directory 'timeseries'. A different directory can be specified through keyword argument `timeseries_directory`. Default: False. import_results : bool Indicates whether to import :class:`~.network.results.Results` object. - Per default it is set to False, in which case results data is not imported. + Per default, it is set to False, in which case results data is not imported. The default directory results data is imported from is the sub-directory 'results'. A different directory can be specified through keyword argument `results_directory`. Default: False. import_electromobility : bool Indicates whether to import :class:`~.network.electromobility.Electromobility` - object. Per default it is set to False, in which case electromobility data is + object. Per default, it is set to False, in which case electromobility data is not imported. The default directory electromobility data is imported from is the sub-directory 'electromobility'. A different directory can be specified through keyword @@ -2786,7 +2786,7 @@ def import_edisgo_from_files( Default: False. import_heat_pump : bool Indicates whether to import :class:`~.network.heat.HeatPump` object. - Per default it is set to False, in which case heat pump data containing + Per default, it is set to False, in which case heat pump data containing information on COP, heat demand time series, etc. is not imported. The default directory heat pump data is imported from is the sub-directory 'heat_pump'. A different directory can be specified through keyword @@ -2794,7 +2794,7 @@ def import_edisgo_from_files( Default: False. import_overlying_grid : bool Indicates whether to import :class:`~.network.overlying_grid.OverlyingGrid` - object. Per default it is set to False, in which case overlying grid data + object. Per default, it is set to False, in which case overlying grid data containing information on renewables curtailment requirements, generator dispatch, etc. is not imported. The default directory overlying grid data is imported from is the sub-directory @@ -2809,33 +2809,33 @@ def import_edisgo_from_files( ----------------- topology_directory : str Indicates directory :class:`~.network.topology.Topology` object is imported - from. Per default topology data is imported from `edisgo_path` sub-directory + from. Per default, topology data is imported from `edisgo_path` sub-directory 'topology'. timeseries_directory : str Indicates directory :class:`~.network.timeseries.Timeseries` object is imported - from. Per default time series data is imported from `edisgo_path` sub-directory + from. Per default, time series data is imported from `edisgo_path` sub-directory 'timeseries'. results_directory : str Indicates directory :class:`~.network.results.Results` object is imported - from. Per default results data is imported from `edisgo_path` sub-directory + from. Per default, results data is imported from `edisgo_path` sub-directory 'results'. electromobility_directory : str Indicates directory :class:`~.network.electromobility.Electromobility` object is - imported from. Per default electromobility data is imported from `edisgo_path` + imported from. Per default, electromobility data is imported from `edisgo_path` sub-directory 'electromobility'. heat_pump_directory : str Indicates directory :class:`~.network.heat.HeatPump` object is - imported from. Per default heat pump data is imported from `edisgo_path` + imported from. Per default, heat pump data is imported from `edisgo_path` sub-directory 'heat_pump'. overlying_grid_directory : str Indicates directory :class:`~.network.overlying_grid.OverlyingGrid` object is - imported from. Per default overlying grid data is imported from `edisgo_path` + imported from. Per default, overlying grid data is imported from `edisgo_path` sub-directory 'overlying_grid'. dtype : str Numerical data type for time series and results data to be imported, - e.g. "float32". Per default this is None in which case data type is inferred. + e.g. "float32". Per default, this is None in which case data type is inferred. parameters : None or dict - Specifies which results to restore. By default this is set to None, + Specifies which results to restore. By default, this is set to None, in which case all available results are restored. To only restore certain results provide a dictionary. See function docstring `parameters` parameter in :func:`~.network.results.Results.to_csv` diff --git a/edisgo/network/heat.py b/edisgo/network/heat.py index 3a20dbc17..89033fd16 100644 --- a/edisgo/network/heat.py +++ b/edisgo/network/heat.py @@ -17,8 +17,8 @@ class HeatPump: """ Data container for all heat pump data. - This class holds data on heat pump COP, heat demand time series, thermal storage - data... + This class holds data on heat pump COP, heat demand time series, and thermal storage + data. """ From 2b0425a1779d72bdfeebd7d551c5ce3ae5f7940b Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 22 Mar 2023 22:12:21 +0100 Subject: [PATCH 133/355] Add DSM to EDisGo class and add tests --- edisgo/edisgo.py | 43 +++++++++++++++++++++++++++++++---- tests/test_edisgo.py | 53 ++++++++++++++++++++++++++++++++++++++------ 2 files changed, 85 insertions(+), 11 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 6236ddf1c..a8ccc8b75 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -140,6 +140,8 @@ class EDisGo: overlying_grid : :class:`~.network.overlying_grid.OverlyingGrid` This is a container holding data from the overlying grid such as curtailment requirements or power plant dispatch. + dsm : :class:`~.network.dsm.DSM` + This is a container holding data on demand side management potential. """ @@ -164,7 +166,7 @@ def __init__(self, **kwargs): ) self.electromobility = Electromobility(edisgo_obj=self) self.heat_pump = HeatPump() - self.dsm = DSM(edisgo_obj=self) + self.dsm = DSM() self.overlying_grid = OverlyingGrid() # import new generators @@ -2374,6 +2376,10 @@ def save( not saved. If set to True, it is saved to subdirectory 'overlying_grid'. See :attr:`~.network.overlying_grid.OverlyingGrid.to_csv` for more information. + save_dsm : bool, optional + Indicates whether to save :class:`~.network.dsm.DSM` object. Per default, + it is not saved. If set to True, it is saved to subdirectory 'dsm'. See + :attr:`~.network.dsm.DSM.to_csv` for more information. Other Parameters ------------------ @@ -2381,8 +2387,9 @@ def save( If True, size of dataframes containing time series in :class:`~.network.results.Results`, :class:`~.network.timeseries.TimeSeries`, - :class:`~.network.heat.HeatPump` and - :class:`~.network.overlying_grid.OverlyingGrid` + :class:`~.network.heat.HeatPump`, + :class:`~.network.overlying_grid.OverlyingGrid` and + :class:`~.network.dsm.DSM` is reduced. See respective classes `reduce_memory` functions for more information. Type to convert to can be specified by providing `to_type` as keyword argument. Further parameters of reduce_memory @@ -2453,6 +2460,8 @@ def save( if save_dsm: self.dsm.to_csv( os.path.join(directory, "dsm"), + reduce_memory=kwargs.get("reduce_memory", False), + to_type=kwargs.get("to_type", "float32"), ) if save_overlying_grid: @@ -2527,6 +2536,10 @@ def reduce_memory(self, **kwargs): See `attr_to_reduce` parameter in :attr:`~.network.overlying_grid.OverlyingGrid.reduce_memory` for more information. + dsm_attr_to_reduce : list(str), optional + See `attr_to_reduce` parameter in + :attr:`~.network.overlying_grid.OverlyingGrid.reduce_memory` for more + information. """ # time series @@ -2561,6 +2574,12 @@ def check_integrity(self): Further, checks integrity of electromobility object (see :func:`edisgo.network.electromobility.Electromobility.check_integrity`) if there is electromobility data. + Additionally, checks whether time series data in + :class:`~.network.heat.HeatPump`, + :class:`~.network.electromobility.Electromobility`, + :class:`~.network.overlying_grid.OverlyingGrid` and :class:`~.network.dsm.DSM` + contains all time steps in + :attr:`edisgo.network.timeseries.TimeSeries.timeindex`. """ self.topology.check_integrity() @@ -2642,6 +2661,12 @@ def _check_timeindex(check_df, param_name): getattr(self.overlying_grid, param_name), f"OverlyingGrid.{param_name}", ) + # check time index of DSM data + for param_name in self.dsm._attributes: + _check_timeindex( + getattr(self.dsm, param_name), + f"DSM.{param_name}", + ) logging.info("Integrity check finished. Please pay attention to warnings.") @@ -2801,6 +2826,13 @@ def import_edisgo_from_files( 'overlying_grid'. A different directory can be specified through keyword argument `overlying_grid_directory`. Default: False. + import_dsm : bool + Indicates whether to import :class:`~.network.dsm.DSM` + object. Per default, it is set to False, in which case DSM data is not imported. + The default directory DSM data is imported from is the sub-directory + 'dsm'. A different directory can be specified through keyword + argument `dsm_directory`. + Default: False. from_zip_archive : bool Set to True if data needs to be imported from an archive, e.g. a zip archive. Default: False. @@ -2831,6 +2863,9 @@ def import_edisgo_from_files( Indicates directory :class:`~.network.overlying_grid.OverlyingGrid` object is imported from. Per default, overlying grid data is imported from `edisgo_path` sub-directory 'overlying_grid'. + dsm_directory : str + Indicates directory :class:`~.network.dsm.DSM` object is imported from. Per + default, DSM data is imported from `edisgo_path` sub-directory 'dsm'. dtype : str Numerical data type for time series and results data to be imported, e.g. "float32". Per default, this is None in which case data type is inferred. @@ -2953,7 +2988,7 @@ def import_edisgo_from_files( if os.path.exists(directory): edisgo_obj.dsm.from_csv(directory, from_zip_archive=from_zip_archive) else: - logging.warning("No dsm data found. DSM data not imported.") + logging.warning("No DSM data found. DSM data not imported.") if import_overlying_grid: if not from_zip_archive: diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 4284541fe..6dd0a13af 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -1379,7 +1379,7 @@ def test_save(self): self.setup_worst_case_time_series() save_dir = os.path.join(os.getcwd(), "edisgo_network") - # add heat pump, electromobility and overlying grid dummy data + # add heat pump, electromobility, overlying grid and dsm dummy data self.edisgo.heat_pump.cop = pd.DataFrame( data={ "hp1": [5.0, 6.0, 5.0, 6.0], @@ -1410,6 +1410,13 @@ def test_save(self): index=self.edisgo.timeseries.timeindex[0:2], ) ) + self.edisgo.dsm.p_max = pd.DataFrame( + data={ + "load_1": [5.0, 6.0], + "load_2": [7.0, 8.0], + }, + index=self.edisgo.timeseries.timeindex[0:2], + ) # ################### test with default parameters ################### self.edisgo.save(save_dir) @@ -1427,12 +1434,13 @@ def test_save(self): save_electromobility=True, save_heatpump=True, save_overlying_grid=True, + save_dsm=True, electromobility_attributes=["charging_processes_df"], ) # check that sub-directories are created dirs_in_save_dir = os.listdir(save_dir) - assert len(dirs_in_save_dir) == 7 + assert len(dirs_in_save_dir) == 8 assert "electromobility" in dirs_in_save_dir assert "overlying_grid" in dirs_in_save_dir @@ -1732,8 +1740,8 @@ def test_check_integrity(self, caplog): ] = 2.0 # ########################### check time index ########################## - # test heat pump and overlying grid time index not matching (electromobility is - # checked above) + # test heat pump, overlying grid and dsm time index not matching + # (electromobility is checked above) timeindex = pd.date_range("1/1/2011 12:00", periods=2, freq="H") self.edisgo.heat_pump.cop_df = pd.DataFrame( data={"hp1": [5.0, 6.0], "hp2": [7.0, 8.0]}, @@ -1742,6 +1750,10 @@ def test_check_integrity(self, caplog): self.edisgo.overlying_grid.dsm_active_power = pd.DataFrame( {"dh1": [1.4, 2.3], "dh2": [2.4, 1.3]}, index=timeindex ) + self.edisgo.dsm.p_max = pd.DataFrame( + data={"load_1": [5.0, 6.0], "load_2": [7.0, 8.0]}, + index=self.edisgo.timeseries.timeindex[0:2], + ) self.edisgo.check_integrity() assert ( "There are time steps in timeindex of TimeSeries object that are not in " @@ -1751,6 +1763,10 @@ def test_check_integrity(self, caplog): "There are time steps in timeindex of TimeSeries object that are not in " "the index of HeatPump.cop_df" in caplog.text ) + assert ( + "There are time steps in timeindex of TimeSeries object that are not in " + "the index of DSM.p_max" in caplog.text + ) def test_resample_timeseries(self): self.setup_worst_case_time_series() @@ -1776,7 +1792,7 @@ def test_import_edisgo_from_files(self): edisgo_obj.analyze() save_dir = os.path.join(os.getcwd(), "edisgo_network") - # add heat pump, electromobility and overlying grid dummy data + # add heat pump, electromobility, overlying grid dummy data edisgo_obj.heat_pump.cop = pd.DataFrame( data={ "hp1": [5.0, 6.0, 5.0, 6.0], @@ -1803,6 +1819,10 @@ def test_import_edisgo_from_files(self): edisgo_obj.overlying_grid.heat_pump_decentral_active_power = pd.Series( data=[2.4], index=[edisgo_obj.timeseries.timeindex[0]] ) + edisgo_obj.dsm.p_min = pd.DataFrame( + data={"load_1": [5.0, 6.0], "load_2": [7.0, 8.0]}, + index=edisgo_obj.timeseries.timeindex[0:2], + ) # ################ test with non-existing path ###################### @@ -1817,6 +1837,7 @@ def test_import_edisgo_from_files(self): save_electromobility=True, save_heatpump=True, save_overlying_grid=True, + save_dsm=True, ) edisgo_obj_loaded = import_edisgo_from_files(save_dir) @@ -1834,13 +1855,14 @@ def test_import_edisgo_from_files(self): # check results assert edisgo_obj_loaded.results.i_res.empty - # ############ test with loading electromobility and heat pump data ########### + # ############ test with loading other data ########### edisgo_obj_loaded = import_edisgo_from_files( save_dir, import_electromobility=True, import_heat_pump=True, import_overlying_grid=True, + import_dsm=True, ) # check electromobility @@ -1859,13 +1881,23 @@ def test_import_edisgo_from_files(self): check_names=False, check_freq=False, ) + # check dsm + assert_frame_equal( + edisgo_obj_loaded.dsm.p_min, + edisgo_obj.dsm.p_min, + check_freq=False, + ) # delete directory shutil.rmtree(save_dir) # ########### test with loading from zip ########### edisgo_obj.save( - save_dir, archive=True, save_electromobility=True, save_overlying_grid=True + save_dir, + archive=True, + save_electromobility=True, + save_overlying_grid=True, + save_dsm=True, ) zip_file = f"{save_dir}.zip" edisgo_obj_loaded = import_edisgo_from_files( @@ -1874,6 +1906,7 @@ def test_import_edisgo_from_files(self): import_timeseries=True, import_electromobility=True, import_overlying_grid=True, + import_dsm=True, from_zip_archive=True, ) @@ -1915,6 +1948,12 @@ def test_import_edisgo_from_files(self): check_names=False, check_freq=False, ) + # check dsm + assert_frame_equal( + edisgo_obj_loaded.dsm.p_min, + edisgo_obj.dsm.p_min, + check_freq=False, + ) # delete zip file os.remove(zip_file) From 52f1fd0e691d501b88d2364e7381121a7ef08956 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 23 Mar 2023 13:40:14 +0100 Subject: [PATCH 134/355] Exclude some files from the api --- doc/conf.py | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 2b4b44b7f..fe8864d0b 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -56,11 +56,27 @@ "sphinx.ext.napoleon", # enable Napoleon Sphinx v>1.3 "sphinx.ext.extlinks", # enables external links with a key "sphinx_autodoc_typehints", + "sphinx.ext.inheritance_diagram", ] # Autoapi settings autoapi_type = "python" autoapi_dirs = ["../edisgo"] - +autoapi_options = [ + "members", + "undoc-members", + "private-members", + "show-inheritance", + "show-inheritance-diagram", + "show-module-summary", + "special-members", + "imported-members", +] +# Files to ignore when building api documentation +autoapi_ignore = [ + "*/flex_opt/curtailment.py", + "*/flex_opt/storage_positioning.py", + "*/opf/*", +] # Napoleon settings napoleon_google_docstring = True napoleon_numpy_docstring = True From bcdd150b90e3657c607f2a9efce880a0053fec56 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 23 Mar 2023 13:45:43 +0100 Subject: [PATCH 135/355] Transform to autoapi --- doc/api/edisgo.flex_opt.rst | 0 doc/api/edisgo.network.rst | 0 2 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 doc/api/edisgo.flex_opt.rst delete mode 100644 doc/api/edisgo.network.rst diff --git a/doc/api/edisgo.flex_opt.rst b/doc/api/edisgo.flex_opt.rst deleted file mode 100644 index e69de29bb..000000000 diff --git a/doc/api/edisgo.network.rst b/doc/api/edisgo.network.rst deleted file mode 100644 index e69de29bb..000000000 From b6f095fdde9f210cebb6be6ea3510565ed48d2cb Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 23 Mar 2023 13:48:41 +0100 Subject: [PATCH 136/355] Add sphinx-autoapi to rtd_requirements.txt --- rtd_requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index c66544f6d..e74f2f058 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -19,3 +19,4 @@ docutils == 0.16.0 sphinx >= 4.3.0, < 5.1.0 sphinx_rtd_theme >=0.5.2 sphinx-autodoc-typehints +sphinx-autoapi From 2b934d83137e0131edfabb2b30cacc30bff507a0 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Fri, 24 Mar 2023 10:25:57 +0100 Subject: [PATCH 137/355] Add enhanced reinforce wrapper --- edisgo/flex_opt/reinforce_grid.py | 112 ++++++++++++++++++++++++++++++ tests/test_edisgo.py | 15 ++++ 2 files changed, 127 insertions(+) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 56008ffdd..ee1690d8c 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -736,3 +736,115 @@ def reinforce(): converged, results = reinforce() return edisgo.results + + +def enhanced_reinforce_wrapper( + edisgo_obj: EDisGo, activate_cost_results_disturbing_mode: bool = False, **kwargs +) -> EDisGo: + """ + A Wrapper around the reinforce method, to catch exceptions and try to counter them + through reinforcing the grid in small portions: + Reinforcement mode mv, then mvlv mode, then lv powerflow per lv_grid. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo object + activate_cost_results_disturbing_mode: :obj:`bool` + If this option is activated to methods are used to fix the problem. These + methods are currently not reinforcement costs increasing. + If the lv_reinforcement fails all branches of the lv_grid are replaced by the + standard type. Should this not work all lv nodes are aggregated to the station + node. + + Returns + ------- + :class:`~.EDisGo` + The reinforced eDisGo object + + """ + try: + logger.info("Try initial reinforcement.") + edisgo_obj.reinforce(mode=None, **kwargs) + logger.info("Initial succeeded.") + except: # noqa: E722 + logger.info("Initial failed.") + + logger.info("Try mode 'mv' reinforcement.") + try: + edisgo_obj.reinforce(mode="mv", catch_convergence_problems=True, **kwargs) + logger.info("Mode 'mv' succeeded.") + except: # noqa: E722 + logger.info("Mode 'mv' failed.") + + logger.info("Try mode 'mvlv' reinforcement.") + try: + edisgo_obj.reinforce(mode="mvlv", catch_convergence_problems=True, **kwargs) + logger.info("Mode 'mvlv' succeeded.") + except: # noqa: E722 + logger.info("Mode 'mvlv' failed.") + + for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids): + try: + logger.info(f"Try mode 'lv' reinforcement for {lv_grid=}.") + edisgo_obj.reinforce( + mode="lv", + lv_grid_id=lv_grid.id, + catch_convergence_problems=True, + **kwargs, + ) + logger.info(f"Mode 'lv' for {lv_grid} successful.") + except: # noqa: E722 + logger.info(f"Mode 'lv' for {lv_grid} failed.") + if activate_cost_results_disturbing_mode: + try: + logger.warning( + f"Change all lines to standard type in {lv_grid=}." + ) + lv_standard_line_type = edisgo_obj.config.from_cfg()[ + "grid_expansion_standard_equipment" + ]["lv_line"] + edisgo_obj.topology.change_line_type( + lv_grid.lines_df.index.to_list(), lv_standard_line_type + ) + edisgo_obj.reinforce( + mode="lv", + lv_grid_id=lv_grid.id, + catch_convergence_problems=True, + **kwargs, + ) + logger.info( + f"Changed lines mode 'lv' for {lv_grid} successful." + ) + except: # noqa: E722 + logger.info(f"Changed lines mode 'lv' for {lv_grid} failed.") + logger.warning( + f"Aggregate all lines to station bus in {lv_grid=}." + ) + try: + edisgo_obj.topology.aggregate_lv_grid_buses_on_station( + lv_grid_id=lv_grid.id + ) + edisgo_obj.reinforce( + mode="lv", + lv_grid_id=lv_grid.id, + catch_convergence_problems=True, + **kwargs, + ) + logger.info( + f"Aggregate to station mode 'lv' for {lv_grid} " + f"successful." + ) + except: # noqa: E722 + logger.info( + f"Aggregate to station mode 'lv' for {lv_grid} failed." + ) + + try: + edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) + logger.info("Enhanced reinforcement succeeded.") + except Exception as e: # noqa: E722 + logger.info("Enhanced reinforcement failed.") + raise e + + return edisgo_obj diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 775cc00a5..10ca67e8c 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -16,6 +16,7 @@ from edisgo import EDisGo from edisgo.edisgo import import_edisgo_from_files +from edisgo.flex_opt.reinforce_grid import enhanced_reinforce_wrapper class TestEDisGo: @@ -486,6 +487,20 @@ def test_reinforce_one_lv_grid(self): assert len(results.equipment_changes) == 6 assert results.v_res.shape == (4, 142) + def test_enhanced_reinforce(self): + self.setup_edisgo_object() + self.setup_worst_case_time_series() + self.edisgo.timeseries.scale_timeseries( + p_scaling_factor=10, q_scaling_factor=10 + ) + edisgo_obj = copy.deepcopy(self.edisgo) + results = enhanced_reinforce_wrapper(edisgo_obj) + + assert results.unresolved_issues.empty + assert len(results.grid_expansion_costs) == 6 + assert len(results.equipment_changes) == 6 + assert results.v_res.shape == (4, 142) + def test_add_component(self, caplog): self.setup_worst_case_time_series() index = self.edisgo.timeseries.timeindex From 9638bd7d21c633b07f8c54022abb917b9353129f Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Fri, 24 Mar 2023 10:11:32 +0100 Subject: [PATCH 138/355] Fix bug in logging add grid id. - Before: File formatter was overwritten with stream formatter - Now: Add grid_id dynamically through index of the colon of the existing formatter --- edisgo/edisgo.py | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 8384854f8..3767d0323 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -166,26 +166,15 @@ def add_grid_id_filter(record): record.grid_id = self.topology.id return True - file_formatter = logging.Formatter( - "%(asctime)s - %(name)s - %(levelname)s - " - "MVGrid(%(grid_id)s): %(message)s" - ) - stream_formatter = logging.Formatter( - "%(name)s - %(levelname)s - MVGrid(%(grid_id)s): %(message)s" - ) - logger_edisgo = logging.getLogger("edisgo") for handler in logger_edisgo.handlers: - if isinstance(logger_edisgo.handlers[0], logging.StreamHandler): - handler.setFormatter(stream_formatter) - elif isinstance(logger_edisgo.handlers[0], logging.FileHandler): - handler.setFormatter(file_formatter) - else: - raise ValueError( - "Disable the log_grid_id function when using other" - " handlers than StreamHandler or FileHandler" - ) - handler.filters.clear() + fmt = handler.formatter._fmt + colon_idx = fmt.index(":") + formatter_str = ( + f"{fmt[:colon_idx]} - MVGrid(%(grid_id)s){fmt[colon_idx:]}" + ) + formatter = logging.Formatter(formatter_str) + handler.setFormatter(formatter) handler.addFilter(add_grid_id_filter) @property From 91715de8712b3251110215d21a684cfa01910978 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Fri, 24 Mar 2023 11:42:27 +0100 Subject: [PATCH 139/355] Fix bug with broken link --- edisgo/network/topology.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 19df7ada9..e6e79169e 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -2284,7 +2284,7 @@ def _connect_mv_bus_to_target_object( * repr : str Name of line or bus to connect to. * shp : :shapely:`Shapely Point object` or \ - :shapely:`Shapely Line object` + :shapely:`Shapely Line object` Geometry of line or bus to connect to. line_type : str From 7e13fe8365e25a154289b69225d2fdec7dc3bb82 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Fri, 24 Mar 2023 12:23:31 +0100 Subject: [PATCH 140/355] Fix tests --- tests/test_edisgo.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 10ca67e8c..7f3d67ea1 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -494,11 +494,13 @@ def test_enhanced_reinforce(self): p_scaling_factor=10, q_scaling_factor=10 ) edisgo_obj = copy.deepcopy(self.edisgo) - results = enhanced_reinforce_wrapper(edisgo_obj) + edisgo_obj = enhanced_reinforce_wrapper(edisgo_obj) + + results = edisgo_obj.results assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 6 - assert len(results.equipment_changes) == 6 + assert len(results.grid_expansion_costs) == 108 + assert len(results.equipment_changes) == 162 assert results.v_res.shape == (4, 142) def test_add_component(self, caplog): From 50330dd5e765de7ce7fd54dcf6e507926b6dd57a Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 12:43:27 +0100 Subject: [PATCH 141/355] Remove private functions from API doc --- doc/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index 1f38dd319..a15c618cf 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -64,7 +64,6 @@ autoapi_options = [ "members", "undoc-members", - "private-members", "show-inheritance", "show-inheritance-diagram", "show-module-summary", From aa5d032117e0d0b6bba272c6b4e8430f6780f5ce Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 14:33:10 +0100 Subject: [PATCH 142/355] Exclude imported-members so that warning cross-reference 'EDisGo': edisgo.edisgo.EDisGo, edisgo.EDisGo is fixed --- doc/conf.py | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/conf.py b/doc/conf.py index a15c618cf..09b2687a6 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -68,7 +68,6 @@ "show-inheritance-diagram", "show-module-summary", "special-members", - "imported-members", ] # Files to ignore when building api documentation autoapi_ignore = [ From abf879d8f0217c5b0055aa40435f398949c1d009 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 14:33:26 +0100 Subject: [PATCH 143/355] Reference to API does not work anymore --- doc/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/index.rst b/doc/index.rst index e9cd4847d..dfebb4369 100644 --- a/doc/index.rst +++ b/doc/index.rst @@ -45,7 +45,7 @@ See :ref:`quickstart` for the first steps. A deeper guide is provided in :ref:`usage-details`. Methodologies are explained in detail in :ref:`features-in-detail`. For those of you who want to contribute see :ref:`dev-notes` and the -:ref:`api` reference. +API reference. eDisGo was initially developed in the `open_eGo `_ research project as part of From b08d71cff4516559ee395ddee9dac20348252d96 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 14:49:05 +0100 Subject: [PATCH 144/355] Adapt instructions on how to build docs --- doc/dev_notes.rst | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/doc/dev_notes.rst b/doc/dev_notes.rst index c4188f7db..a47df0032 100644 --- a/doc/dev_notes.rst +++ b/doc/dev_notes.rst @@ -70,22 +70,15 @@ Code standards Documentation ------------- -Build the docs locally by first setting up the sphinx environment with (executed -from top-level folder) +You can build the docs locally as follows (executed from top-level eDisGo directory): .. code-block:: bash - sphinx-apidoc -f -o doc/api edisgo + sphinx-build -E -a -b html ./doc/ -And then you build the html docs on your computer with +To manually check if external links in the documentation work, you can run the following command (internal links are not checked by this): .. code-block:: bash - sphinx-build -E -a doc/ doc/_html + sphinx-build ./doc/ -b linkcheck -d _build/doctrees _build/html -To manually check if external links in the documentation work, change into the doc -repository and run the following command (internal links are not checked by this): - -.. code-block:: bash - - sphinx-build . -b linkcheck -d _build/doctrees _build/html From 3338d6334ec1bf30792ccc32d13861ca379b191d Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 15:56:43 +0100 Subject: [PATCH 145/355] Rename function to line_max_overload --- edisgo/flex_opt/check_tech_constraints.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index d8b939d52..929f6e865 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -38,7 +38,7 @@ def mv_line_overload(edisgo_obj): """ - crit_lines = _line_overload(edisgo_obj, voltage_level="mv") + crit_lines = _line_max_overload(edisgo_obj, voltage_level="mv") if not crit_lines.empty: logger.debug( @@ -81,7 +81,7 @@ def lv_line_overload(edisgo_obj): """ - crit_lines = _line_overload(edisgo_obj, voltage_level="lv") + crit_lines = _line_max_overload(edisgo_obj, voltage_level="lv") if not crit_lines.empty: logger.debug( @@ -95,7 +95,7 @@ def lv_line_overload(edisgo_obj): return crit_lines -def _line_overload(edisgo_obj, voltage_level): +def _line_max_overload(edisgo_obj, voltage_level): """ Checks for over-loading issues of lines. From a76116161ffb72236c0ae422ad770d5ef970dacf Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 15:56:55 +0100 Subject: [PATCH 146/355] Minor changes to docstrings --- edisgo/flex_opt/check_tech_constraints.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 929f6e865..7b45ce582 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -11,7 +11,7 @@ def mv_line_overload(edisgo_obj): """ - Checks for over-loading issues in MV network. + Returns time step and value of most severe overloading of lines in MV network. Parameters ---------- @@ -54,7 +54,7 @@ def mv_line_overload(edisgo_obj): def lv_line_overload(edisgo_obj): """ - Checks for over-loading issues in LV networks. + Returns time step and value of most severe overloading of lines in LV networks. Parameters ---------- @@ -97,7 +97,7 @@ def lv_line_overload(edisgo_obj): def _line_max_overload(edisgo_obj, voltage_level): """ - Checks for over-loading issues of lines. + Returns time step and value of most severe overloading of lines. Parameters ---------- From 1a4704107709a21da5801c0e685d15ff06d83b4a Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 16:02:34 +0100 Subject: [PATCH 147/355] Rename function to mv_line_max_overload --- edisgo/flex_opt/check_tech_constraints.py | 2 +- edisgo/flex_opt/reinforce_grid.py | 8 ++++---- edisgo/opf/timeseries_reduction.py | 2 +- tests/flex_opt/test_check_tech_constraints.py | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 7b45ce582..d68a84be3 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -9,7 +9,7 @@ logger = logging.getLogger(__name__) -def mv_line_overload(edisgo_obj): +def mv_line_max_overload(edisgo_obj): """ Returns time step and value of most severe overloading of lines in MV network. diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index c4ce33e59..3c58c9ea1 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -209,7 +209,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_overload(edisgo_reinforce) + else checks.mv_line_max_overload(edisgo_reinforce) ) if not mode or mode == "lv": @@ -277,7 +277,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_overload(edisgo_reinforce) + else checks.mv_line_max_overload(edisgo_reinforce) ) if not mode or mode == "lv": @@ -499,7 +499,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_overload(edisgo_reinforce) + else checks.mv_line_max_overload(edisgo_reinforce) ) if not mode or mode == "lv": @@ -567,7 +567,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_overload(edisgo_reinforce) + else checks.mv_line_max_overload(edisgo_reinforce) ) if not mode or mode == "lv": diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index d856d17d6..d3d2357a5 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -115,7 +115,7 @@ def get_steps_storage(edisgo_obj, window=5): edisgo_obj, voltage_level="mv", split_voltage_band=True ) # Get periods with current violations - crit_lines = check_tech_constraints.mv_line_overload(edisgo_obj) + crit_lines = check_tech_constraints.mv_line_max_overload(edisgo_obj) crit_periods = crit_nodes["time_index"].append(crit_lines["time_index"]).unique() diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index e80ffbc96..283665c86 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -23,10 +23,10 @@ def run_power_flow(self): """ self.edisgo.analyze() - def test_mv_line_overload(self): + def test_mv_line_max_overload(self): # implicitly checks function _line_overload - df = check_tech_constraints.mv_line_overload(self.edisgo) + df = check_tech_constraints.mv_line_max_overload(self.edisgo) # check shape of dataframe assert (4, 3) == df.shape # check relative overload of one line From 29668ef56065db02dee76b2479fe2c4146544ef8 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 16:03:08 +0100 Subject: [PATCH 148/355] Rename function to resample --- edisgo/edisgo.py | 2 +- edisgo/network/timeseries.py | 4 +--- tests/network/test_timeseries.py | 12 ++++++------ 3 files changed, 8 insertions(+), 10 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 05800d6a8..dbc3afe34 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2476,7 +2476,7 @@ def resample_timeseries( Default: '15min'. """ - self.timeseries.resample_timeseries(method=method, freq=freq) + self.timeseries.resample(method=method, freq=freq) self.electromobility.resample(freq=freq) self.heat_pump.resample_timeseries(method=method, freq=freq) self.overlying_grid.resample(method=method, freq=freq) diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index a453b88f7..03a651ccb 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -2140,9 +2140,7 @@ def _check_if_components_exist( return set(component_names) - set(comps_not_in_network) return component_names - def resample_timeseries( - self, method: str = "ffill", freq: str | pd.Timedelta = "15min" - ): + def resample(self, method: str = "ffill", freq: str | pd.Timedelta = "15min"): """ Resamples all generator, load and storage time series to a desired resolution. diff --git a/tests/network/test_timeseries.py b/tests/network/test_timeseries.py index 2fd0d5c8a..da2a84939 100644 --- a/tests/network/test_timeseries.py +++ b/tests/network/test_timeseries.py @@ -2357,7 +2357,7 @@ def test_check_if_components_exist(self): assert len(component_names) == 1 assert "Load_residential_LVGrid_5_3" in component_names - def test_resample_timeseries(self): + def test_resample(self): self.edisgo.set_time_series_worst_case_analysis() @@ -2366,7 +2366,7 @@ def test_resample_timeseries(self): index_orig = self.edisgo.timeseries.timeindex.copy() # test up-sampling - self.edisgo.timeseries.resample_timeseries() + self.edisgo.timeseries.resample() # check if resampled length of time index is 4 times original length of # timeindex assert len(self.edisgo.timeseries.timeindex) == 4 * len_timeindex_orig @@ -2380,11 +2380,11 @@ def test_resample_timeseries(self): ) ).all() # check if index is the same after resampled back - self.edisgo.timeseries.resample_timeseries(freq="1h") + self.edisgo.timeseries.resample(freq="1h") assert_index_equal(self.edisgo.timeseries.timeindex, index_orig) # same tests for down-sampling - self.edisgo.timeseries.resample_timeseries(freq="2h") + self.edisgo.timeseries.resample(freq="2h") assert len(self.edisgo.timeseries.timeindex) == 0.5 * len_timeindex_orig assert ( np.isclose( @@ -2395,7 +2395,7 @@ def test_resample_timeseries(self): ).all() # test bfill - self.edisgo.timeseries.resample_timeseries(method="bfill") + self.edisgo.timeseries.resample(method="bfill") assert len(self.edisgo.timeseries.timeindex) == 4 * len_timeindex_orig assert np.isclose( self.edisgo.timeseries.generators_active_power.iloc[1:, :].loc[ @@ -2412,7 +2412,7 @@ def test_resample_timeseries(self): ts_orig = self.edisgo.timeseries.generators_active_power.loc[ :, "GeneratorFluctuating_3" ] - self.edisgo.timeseries.resample_timeseries(method="interpolate") + self.edisgo.timeseries.resample(method="interpolate") assert len(self.edisgo.timeseries.timeindex) == 4 * len_timeindex_orig assert np.isclose( self.edisgo.timeseries.generators_active_power.at[ From 038faafc64587eff42baf00a7bca68dfb39a6474 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Fri, 24 Mar 2023 16:06:33 +0100 Subject: [PATCH 149/355] Don't show module attributes --- doc/conf.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index 09b2687a6..1b6abf3ff 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -75,6 +75,18 @@ "*/flex_opt/storage_positioning.py", "*/opf/*", ] + + +def skip_autoapi_parts(app, what, name, obj, skip, options): + if obj.type == "data": + skip = True + return skip + + +def setup(sphinx): + sphinx.connect("autoapi-skip-member", skip_autoapi_parts) + + # Napoleon settings napoleon_google_docstring = True napoleon_numpy_docstring = True From a40fddb0901d68622b9434733a05bcea860071d8 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 16:41:53 +0100 Subject: [PATCH 150/355] Minor docstring changes --- edisgo/flex_opt/check_tech_constraints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index d68a84be3..e10d83fed 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -26,7 +26,7 @@ def mv_line_max_overload(edisgo_obj): Index of the dataframe are the names of the over-loaded lines. Columns are 'max_rel_overload' containing the maximum relative over-loading as float, 'time_index' containing the corresponding - time step the over-loading occured in as + time step the over-loading occurred in as :pandas:`pandas.Timestamp`, and 'voltage_level' specifying the voltage level the line is in (either 'mv' or 'lv'). @@ -69,7 +69,7 @@ def lv_line_overload(edisgo_obj): Index of the dataframe are the names of the over-loaded lines. Columns are 'max_rel_overload' containing the maximum relative over-loading as float, 'time_index' containing the corresponding - time step the over-loading occured in as + time step the over-loading occurred in as :pandas:`pandas.Timestamp`, and 'voltage_level' specifying the voltage level the line is in (either 'mv' or 'lv'). From 8d0b19d152e4b70488d1d2d630f1e547491f21f2 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 16:42:32 +0100 Subject: [PATCH 151/355] Rename functions to .._max_overload --- edisgo/flex_opt/check_tech_constraints.py | 12 +++++----- edisgo/flex_opt/reinforce_grid.py | 24 +++++++++---------- tests/flex_opt/test_check_tech_constraints.py | 12 +++++----- 3 files changed, 24 insertions(+), 24 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index e10d83fed..eafa2e9b7 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -52,7 +52,7 @@ def mv_line_max_overload(edisgo_obj): return crit_lines -def lv_line_overload(edisgo_obj): +def lv_line_max_overload(edisgo_obj): """ Returns time step and value of most severe overloading of lines in LV networks. @@ -328,7 +328,7 @@ def lines_relative_load(edisgo_obj, lines=None): return loading / allowed_loading -def hv_mv_station_overload(edisgo_obj): +def hv_mv_station_max_overload(edisgo_obj): """ Checks for over-loading of HV/MV station. @@ -354,7 +354,7 @@ def hv_mv_station_overload(edisgo_obj): section 'grid_expansion_load_factors'. """ - crit_stations = _station_overload(edisgo_obj, edisgo_obj.topology.mv_grid) + crit_stations = _station_max_overload(edisgo_obj, edisgo_obj.topology.mv_grid) if not crit_stations.empty: logger.debug("==> HV/MV station has load issues.") else: @@ -363,7 +363,7 @@ def hv_mv_station_overload(edisgo_obj): return crit_stations -def mv_lv_station_overload(edisgo_obj): +def mv_lv_station_max_overload(edisgo_obj): """ Checks for over-loading of MV/LV stations. @@ -395,7 +395,7 @@ def mv_lv_station_overload(edisgo_obj): crit_stations = pd.concat( [ crit_stations, - _station_overload(edisgo_obj, lv_grid), + _station_max_overload(edisgo_obj, lv_grid), ] ) if not crit_stations.empty: @@ -410,7 +410,7 @@ def mv_lv_station_overload(edisgo_obj): return crit_stations -def _station_overload(edisgo_obj, grid): +def _station_max_overload(edisgo_obj, grid): """ Checks for over-loading of stations. diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 3c58c9ea1..71f26c708 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -196,13 +196,13 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_overload(edisgo_reinforce) + else checks.hv_mv_station_max_overload(edisgo_reinforce) ) overloaded_lv_stations = ( pd.DataFrame(dtype=float) if mode == "mv" - else checks.mv_lv_station_overload(edisgo_reinforce) + else checks.mv_lv_station_max_overload(edisgo_reinforce) ) logger.debug("==> Check line load.") @@ -216,7 +216,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = pd.concat( [ crit_lines, - checks.lv_line_overload(edisgo_reinforce), + checks.lv_line_max_overload(edisgo_reinforce), ] ) @@ -266,11 +266,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_overload(edisgo_reinforce) + else checks.hv_mv_station_max_overload(edisgo_reinforce) ) if mode != "mv": - overloaded_lv_stations = checks.mv_lv_station_overload(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") @@ -284,7 +284,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = pd.concat( [ crit_lines, - checks.lv_line_overload(edisgo_reinforce), + checks.lv_line_max_overload(edisgo_reinforce), ] ) @@ -488,11 +488,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_overload(edisgo_reinforce) + else checks.hv_mv_station_max_overload(edisgo_reinforce) ) if mode != "mv": - overloaded_lv_stations = checks.mv_lv_station_overload(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") @@ -506,7 +506,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = pd.concat( [ crit_lines, - checks.lv_line_overload(edisgo_reinforce), + checks.lv_line_max_overload(edisgo_reinforce), ] ) @@ -556,11 +556,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_overload(edisgo_reinforce) + else checks.hv_mv_station_max_overload(edisgo_reinforce) ) if mode != "mv": - overloaded_lv_stations = checks.mv_lv_station_overload(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") @@ -574,7 +574,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = pd.concat( [ crit_lines, - checks.lv_line_overload(edisgo_reinforce), + checks.lv_line_max_overload(edisgo_reinforce), ] ) diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 283665c86..92b6a0abb 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -37,10 +37,10 @@ def test_mv_line_max_overload(self): ) assert df.at["Line_10005", "time_index"] == self.timesteps[3] - def test_lv_line_overload(self): + def test_lv_line_max_overload(self): # implicitly checks function _line_overload - df = check_tech_constraints.lv_line_overload(self.edisgo) + df = check_tech_constraints.lv_line_max_overload(self.edisgo) # check shape of dataframe assert (2, 3) == df.shape # check relative overload of one line @@ -144,7 +144,7 @@ def test_lines_relative_load(self): # check shape of dataframe assert (4, 2) == df.shape - def test_hv_mv_station_overload(self): + def test_hv_mv_station_max_overload(self): # implicitly checks function _station_overload # create over-load problem with highest over-load in first time step (as it is @@ -153,7 +153,7 @@ def test_hv_mv_station_overload(self): data={"p": [30, 25, 30, 20], "q": [30, 25, 30, 20]}, index=self.timesteps ) - df = check_tech_constraints.hv_mv_station_overload(self.edisgo) + df = check_tech_constraints.hv_mv_station_max_overload(self.edisgo) # check shape of dataframe assert (1, 3) == df.shape # check missing transformer capacity @@ -163,10 +163,10 @@ def test_hv_mv_station_overload(self): ) assert df.at["MVGrid_1_station", "time_index"] == self.timesteps[0] - def test_mv_lv_station_overload(self): + def test_mv_lv_station_max_overload(self): # implicitly checks function _station_overload - df = check_tech_constraints.mv_lv_station_overload(self.edisgo) + df = check_tech_constraints.mv_lv_station_max_overload(self.edisgo) # check shape of dataframe assert (4, 3) == df.shape # check missing transformer capacity of one grid From fdb8c710fff5bf702fc13fa5d5248ec2b04da37e Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 16:52:25 +0100 Subject: [PATCH 152/355] Fix sign of control deviation --- edisgo/flex_opt/check_tech_constraints.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index eafa2e9b7..55e16e6c1 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -938,7 +938,7 @@ def _mv_allowed_voltage_limits(edisgo_obj): upper_limit = ( 1 + offset - + control_deviation + - control_deviation + edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ "mv_max_v_rise" ] @@ -946,7 +946,7 @@ def _mv_allowed_voltage_limits(edisgo_obj): lower_limit = ( 1 + offset - - control_deviation + + control_deviation - edisgo_obj.config["grid_expansion_allowed_voltage_deviations"][ "mv_max_v_drop" ] From 2cfe96a743adb162990c75dbc7715a7ddb0fb0ff Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 24 Mar 2023 17:15:09 +0100 Subject: [PATCH 153/355] Rename function to reinforce_station_overload --- edisgo/flex_opt/reinforce_measures.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index c195ab7cd..122e66775 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -48,7 +48,7 @@ def reinforce_mv_lv_station_overloading(edisgo_obj, critical_stations): } """ - transformers_changes = _station_overloading( + transformers_changes = _reinforce_station_overloading( edisgo_obj, critical_stations, voltage_level="lv" ) @@ -95,7 +95,7 @@ def reinforce_hv_mv_station_overloading(edisgo_obj, critical_stations): } """ - transformers_changes = _station_overloading( + transformers_changes = _reinforce_station_overloading( edisgo_obj, critical_stations, voltage_level="mv" ) @@ -105,7 +105,7 @@ def reinforce_hv_mv_station_overloading(edisgo_obj, critical_stations): return transformers_changes -def _station_overloading(edisgo_obj, critical_stations, voltage_level): +def _reinforce_station_overloading(edisgo_obj, critical_stations, voltage_level): """ Reinforce stations due to overloading issues. From ddfb6fba834f598397f0ad19f12e6d3996856a44 Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Mon, 27 Mar 2023 12:37:47 +0200 Subject: [PATCH 154/355] Fix bug - Reinforcement of LVGrid with only one bus is reasonable --- edisgo/flex_opt/reinforce_grid.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index ee1690d8c..c54ca43f6 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -825,12 +825,6 @@ def enhanced_reinforce_wrapper( edisgo_obj.topology.aggregate_lv_grid_buses_on_station( lv_grid_id=lv_grid.id ) - edisgo_obj.reinforce( - mode="lv", - lv_grid_id=lv_grid.id, - catch_convergence_problems=True, - **kwargs, - ) logger.info( f"Aggregate to station mode 'lv' for {lv_grid} " f"successful." From 699f21e9fe8c86bd847bde37dba84f0317f9cd65 Mon Sep 17 00:00:00 2001 From: mltja Date: Mon, 27 Mar 2023 13:11:21 +0200 Subject: [PATCH 155/355] Change logging message --- edisgo/flex_opt/reinforce_grid.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index c54ca43f6..44a5cbb4e 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -826,12 +826,11 @@ def enhanced_reinforce_wrapper( lv_grid_id=lv_grid.id ) logger.info( - f"Aggregate to station mode 'lv' for {lv_grid} " - f"successful." + f"Aggregate to station for {lv_grid} successful." ) except: # noqa: E722 logger.info( - f"Aggregate to station mode 'lv' for {lv_grid} failed." + f"Aggregate to station for {lv_grid} failed." ) try: From 53a605d472dbfb8e46ae1dd85199a433edad4b39 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 29 Mar 2023 16:40:29 +0200 Subject: [PATCH 156/355] Refactor DSM import from database --- edisgo/io/dsm_import.py | 417 +++++++++++++++++++++++++++++------- tests/io/test_dsm_import.py | 74 +++++++ 2 files changed, 417 insertions(+), 74 deletions(-) create mode 100644 tests/io/test_dsm_import.py diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index a9c59d72a..203f9a380 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -4,12 +4,15 @@ from typing import TYPE_CHECKING +import numpy as np import pandas as pd import saio from sqlalchemy.engine.base import Engine from edisgo.io.db import session_scope_egon_data +from edisgo.io.timeseries_import import _timeindex_helper_func +from edisgo.tools import tools if TYPE_CHECKING: from edisgo import EDisGo @@ -17,103 +20,369 @@ logger = logging.getLogger(__name__) -def dsm_from_database( +def oedb( edisgo_obj: EDisGo, + scenario: str, engine: Engine, - scenario: str = "eGon2035", + timeindex=None, ): - saio.register_schema("grid", engine) + """ + Gets industrial and CTS DSM profiles from the + `OpenEnergy DataBase `_. - from saio.grid import ( - egon_etrago_link, - egon_etrago_link_timeseries, - egon_etrago_store, - egon_etrago_store_timeseries, + Profiles comprise minimum and maximum load increase in MW as well as maximum energy + pre- and postponing in MWh. + + Parameters + ---------- + edisgo_object : :class:`~.EDisGo` + scenario : str + Scenario for which to retrieve DSM data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to return data. Leap years can currently + not be handled. In case the given timeindex contains a leap year, the data will + be indexed using the default year (2035 in case of the 'eGon2035' and to 2045 + in case of the 'eGon100RE' scenario) and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year and returned for the whole year. + + Returns + -------- + dict(str, :pandas:`pandas.DataFrame`) + Dictionary with DSM data with keys `p_min`, `p_max`, `e_min` and `e_max` (see + :class:`~.network.dsm.DSM` for more information). Values contain dataframes with + DSM profiles per load for one year in an hourly resolution in MW. Index of the + dataframes are time indices. Columns contain the load name the DSM profile is + associated with as in index of :attr:`~.network.topology.Topology.loads_df`. + + """ + # get CTS and industrial DSM profiles + dsm_cts = get_profile_cts(edisgo_obj, scenario, engine) + ind_loads = edisgo_obj.topology.loads_df[ + (edisgo_obj.topology.loads_df.type == "conventional_load") + & (edisgo_obj.topology.loads_df.sector == "industry") + ] + dsm_ind = get_profiles_per_industrial_load( + ind_loads.building_id.unique(), scenario, engine ) - with session_scope_egon_data(engine) as session: - query = session.query(egon_etrago_link).filter( - egon_etrago_link.scn_name == "eGon2035", - egon_etrago_link.carrier == "dsm", - egon_etrago_link.bus0 == edisgo_obj.topology.id, + # rename industrial DSM profiles, join with CTS profiles and set time index + rename_series = ( + ind_loads.loc[:, ["building_id"]] + .dropna() + .reset_index() + .set_index("building_id") + .iloc[:, 0] + ) + timeindex, timeindex_full = _timeindex_helper_func( + edisgo_obj, + timeindex, + default_year=tools.get_year_based_on_scenario(scenario), + allow_leap_year=False, + ) + dsm_ind_cts = {} + for dsm_profile in ["e_min", "e_max", "p_min", "p_max"]: + dsm_ind[dsm_profile].rename(columns=rename_series, inplace=True) + dsm_ind_cts_tmp = pd.concat( + [dsm_cts[dsm_profile], dsm_ind[dsm_profile]], axis=1 ) + dsm_ind_cts_tmp.index = timeindex_full + dsm_ind_cts[dsm_profile] = dsm_ind_cts_tmp.loc[timeindex, :] - edisgo_obj.dsm.egon_etrago_link = pd.read_sql( - sql=query.statement, con=query.session.bind - ) + return dsm_ind_cts - link_id = edisgo_obj.dsm.egon_etrago_link.at[0, "link_id"] - store_bus_id = edisgo_obj.dsm.egon_etrago_link.at[0, "bus1"] - p_nom = edisgo_obj.dsm.egon_etrago_link.at[0, "p_nom"] - with session_scope_egon_data(engine) as session: - query = session.query(egon_etrago_link_timeseries).filter( - egon_etrago_link_timeseries.scn_name == scenario, - egon_etrago_link_timeseries.link_id == link_id, - ) +def get_profiles_per_industrial_load( + load_ids, + scenario: str, + engine: Engine, +): + """ + Gets industrial DSM profiles per site and OSM area. - edisgo_obj.dsm.egon_etrago_link_timeseries = pd.read_sql( - sql=query.statement, con=query.session.bind - ) + Parameters + ---------- + load_ids : list(int) + List of industrial site and OSM IDs to retrieve DSM profiles for. + scenario : str + Scenario for which to retrieve DSM data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. - for p in ["p_min_pu", "p_max_pu"]: - name = "_".join(p.split("_")[:-1]) + Returns + -------- + dict(str, :pandas:`pandas.DataFrame`) + Dictionary with DSM data with keys `p_min`, `p_max`, `e_min` and `e_max`. Values + contain dataframes with DSM profiles per site and OSM area for one year in an + hourly resolution in MW. Index contains hour of the year (from 0 to 8759) and + column names are site ID as integer. + + """ + saio.register_schema("demand", engine) + from saio.demand import ( + egon_demandregio_sites_ind_electricity_dsm_timeseries as sites_ind_dsm_ts, + ) + from saio.demand import ( + egon_osm_ind_load_curves_individual_dsm_timeseries, + egon_sites_ind_load_curves_individual_dsm_timeseries, + ) - data = {name: edisgo_obj.dsm.egon_etrago_link_timeseries.at[0, p]} + dsm_dict = {} - if len(edisgo_obj.timeseries.timeindex) != len(data[name]): - raise IndexError( - f"The length of the time series of the edisgo object (" - f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" - f"{len(data[name])}) do not match. Adjust the length of " - f"the time series of the edisgo object accordingly." + if hasattr(egon_sites_ind_load_curves_individual_dsm_timeseries, "p_min_pu"): + with session_scope_egon_data(engine) as session: + query = session.query( + egon_sites_ind_load_curves_individual_dsm_timeseries.site_id, + egon_sites_ind_load_curves_individual_dsm_timeseries.p_nom, + egon_sites_ind_load_curves_individual_dsm_timeseries.p_min_pu, + egon_sites_ind_load_curves_individual_dsm_timeseries.p_max_pu, + egon_sites_ind_load_curves_individual_dsm_timeseries.e_nom, + egon_sites_ind_load_curves_individual_dsm_timeseries.e_min_pu, + egon_sites_ind_load_curves_individual_dsm_timeseries.e_max_pu, + ).filter( + egon_sites_ind_load_curves_individual_dsm_timeseries.scn_name + == scenario, + egon_sites_ind_load_curves_individual_dsm_timeseries.site_id.in_( + load_ids + ), ) - setattr( - edisgo_obj.dsm, - name, - pd.DataFrame(data, index=edisgo_obj.timeseries.timeindex).mul(p_nom), - ) + df_sites_1 = pd.read_sql(sql=query.statement, con=engine) - with session_scope_egon_data(engine) as session: - query = session.query(egon_etrago_store).filter( - egon_etrago_store.scn_name == scenario, - egon_etrago_store.carrier == "dsm", - egon_etrago_store.bus == store_bus_id, - ) + query = session.query( + sites_ind_dsm_ts.industrial_sites_id.label("site_id"), + sites_ind_dsm_ts.p_nom, + sites_ind_dsm_ts.p_min_pu, + sites_ind_dsm_ts.p_max_pu, + sites_ind_dsm_ts.e_nom, + sites_ind_dsm_ts.e_min_pu, + sites_ind_dsm_ts.e_max_pu, + ).filter( + sites_ind_dsm_ts.scn_name == scenario, + sites_ind_dsm_ts.industrial_sites_id.in_(load_ids), + ) - edisgo_obj.dsm.egon_etrago_store = pd.read_sql( - sql=query.statement, con=query.session.bind - ) + df_sites_2 = pd.read_sql(sql=query.statement, con=engine) - store_id = edisgo_obj.dsm.egon_etrago_store.at[0, "store_id"] - e_nom = edisgo_obj.dsm.egon_etrago_store.at[0, "e_nom"] + query = session.query( + egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.label( + "site_id" + ), + egon_osm_ind_load_curves_individual_dsm_timeseries.p_nom, + egon_osm_ind_load_curves_individual_dsm_timeseries.p_min_pu, + egon_osm_ind_load_curves_individual_dsm_timeseries.p_max_pu, + egon_osm_ind_load_curves_individual_dsm_timeseries.e_nom, + egon_osm_ind_load_curves_individual_dsm_timeseries.e_min_pu, + egon_osm_ind_load_curves_individual_dsm_timeseries.e_max_pu, + ).filter( + egon_osm_ind_load_curves_individual_dsm_timeseries.scn_name == scenario, + egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.in_(load_ids), + ) - with session_scope_egon_data(engine) as session: - query = session.query(egon_etrago_store_timeseries).filter( - egon_etrago_store_timeseries.scn_name == scenario, - egon_etrago_store_timeseries.store_id == store_id, - ) + df_areas = pd.read_sql(sql=query.statement, con=engine) - edisgo_obj.dsm.egon_etrago_store_timeseries = pd.read_sql( - sql=query.statement, con=query.session.bind - ) + df = pd.concat([df_sites_1, df_sites_2, df_areas]) + # add time step column + df["time_step"] = len(df) * [np.arange(0, 8760)] + # un-nest time series data and pivot so that time_step becomes index and + # site_id column names + dsm_dict["p_min"] = _pivot_pu_helper(df, "p_min", "p_nom") + dsm_dict["p_max"] = _pivot_pu_helper(df, "p_max", "p_nom") + dsm_dict["e_min"] = _pivot_pu_helper(df, "e_min", "e_nom") + dsm_dict["e_max"] = _pivot_pu_helper(df, "e_max", "e_nom") - for e in ["e_min_pu", "e_max_pu"]: - name = "_".join(e.split("_")[:-1]) + else: + with session_scope_egon_data(engine) as session: + query = session.query( + egon_sites_ind_load_curves_individual_dsm_timeseries.site_id, + egon_sites_ind_load_curves_individual_dsm_timeseries.p_min, + egon_sites_ind_load_curves_individual_dsm_timeseries.p_max, + egon_sites_ind_load_curves_individual_dsm_timeseries.e_min, + egon_sites_ind_load_curves_individual_dsm_timeseries.e_max, + ).filter( + egon_sites_ind_load_curves_individual_dsm_timeseries.scn_name + == scenario, + egon_sites_ind_load_curves_individual_dsm_timeseries.site_id.in_( + load_ids + ), + ) - data = {name: edisgo_obj.dsm.egon_etrago_store_timeseries.at[0, e]} + df_sites_1 = pd.read_sql(sql=query.statement, con=engine) - if len(edisgo_obj.timeseries.timeindex) != len(data[name]): - raise IndexError( - f"The length of the time series of the edisgo object (" - f"{len(edisgo_obj.timeseries.timeindex)}) and the database (" - f"{len(data[name])}) do not match. Adjust the length of " - f"the time series of the edisgo object accordingly." + with session_scope_egon_data(engine) as session: + query = session.query( + sites_ind_dsm_ts.industrial_sites_id.label("site_id"), + sites_ind_dsm_ts.p_min, + sites_ind_dsm_ts.p_max, + sites_ind_dsm_ts.e_min, + sites_ind_dsm_ts.e_max, + ).filter( + sites_ind_dsm_ts.scn_name == scenario, + sites_ind_dsm_ts.industrial_sites_id.in_(load_ids), ) - setattr( - edisgo_obj.dsm, - name, - pd.DataFrame(data, index=edisgo_obj.timeseries.timeindex).mul(e_nom), - ) + df_sites_2 = pd.read_sql(sql=query.statement, con=engine) + + with session_scope_egon_data(engine) as session: + query = session.query( + egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.label( + "site_id" + ), + egon_osm_ind_load_curves_individual_dsm_timeseries.p_min, + egon_osm_ind_load_curves_individual_dsm_timeseries.p_max, + egon_osm_ind_load_curves_individual_dsm_timeseries.e_min, + egon_osm_ind_load_curves_individual_dsm_timeseries.e_max, + ).filter( + egon_osm_ind_load_curves_individual_dsm_timeseries.scn_name == scenario, + egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.in_(load_ids), + ) + + df_areas = pd.read_sql(sql=query.statement, con=engine) + + df = pd.concat([df_sites_1, df_sites_2, df_areas]) + # add time step column + df["time_step"] = len(df) * [np.arange(0, 8760)] + # un-nest time series data and pivot so that time_step becomes index and + # site_id column names + dsm_dict["p_min"] = _pivot_abs_helper(df, "p_min") + dsm_dict["p_max"] = _pivot_abs_helper(df, "p_max") + dsm_dict["e_min"] = _pivot_abs_helper(df, "e_min") + dsm_dict["e_max"] = _pivot_abs_helper(df, "e_max") + + return dsm_dict + + +def get_profile_cts( + edisgo_obj: EDisGo, + scenario: str, + engine: Engine, +): + """ + Gets CTS DSM profiles for all CTS loads in the MV grid. + + Parameters + ---------- + edisgo_object : :class:`~.EDisGo` + scenario : str + Scenario for which to retrieve DSM data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + Returns + -------- + dict(str, :pandas:`pandas.DataFrame`) + Dictionary with DSM data with keys `p_min`, `p_max`, `e_min` and `e_max`. Values + contain dataframes with DSM profiles per CTS load for one year in an + hourly resolution in MW. Index contains hour of the year (from 0 to 8759) and + column names are site ID as integer. + + """ + saio.register_schema("demand", engine) + from saio.demand import egon_etrago_electricity_cts_dsm_timeseries + + # get data + dsm_dict = {} + if hasattr(egon_etrago_electricity_cts_dsm_timeseries, "p_min_pu"): + with session_scope_egon_data(engine) as session: + query = session.query( + egon_etrago_electricity_cts_dsm_timeseries.bus.label("site_id"), + egon_etrago_electricity_cts_dsm_timeseries.p_nom, + egon_etrago_electricity_cts_dsm_timeseries.p_min_pu, + egon_etrago_electricity_cts_dsm_timeseries.p_max_pu, + egon_etrago_electricity_cts_dsm_timeseries.e_nom, + egon_etrago_electricity_cts_dsm_timeseries.e_min_pu, + egon_etrago_electricity_cts_dsm_timeseries.e_max_pu, + ).filter( + egon_etrago_electricity_cts_dsm_timeseries.scn_name == scenario, + egon_etrago_electricity_cts_dsm_timeseries.bus + == edisgo_obj.topology.id, + ) + df = pd.read_sql(sql=query.statement, con=engine) + # add time step column + df["time_step"] = len(df) * [np.arange(0, 8760)] + # un-nest time series data and pivot so that time_step becomes index and + # site_id column names + dsm_dict["p_min"] = _pivot_pu_helper(df, "p_min", "p_nom") + dsm_dict["p_max"] = _pivot_pu_helper(df, "p_max", "p_nom") + dsm_dict["e_min"] = _pivot_pu_helper(df, "e_min", "e_nom") + dsm_dict["e_max"] = _pivot_pu_helper(df, "e_max", "e_nom") + + # temporary! set negative p_max and e_max values and positive p_min and e_min + # values to zero + dsm_dict["p_min"][dsm_dict["p_min"] > 0.0] = 0.0 + dsm_dict["e_min"][dsm_dict["e_min"] > 0.0] = 0.0 + dsm_dict["p_max"][dsm_dict["p_max"] < 0.0] = 0.0 + dsm_dict["e_max"][dsm_dict["e_max"] < 0.0] = 0.0 + + else: + with session_scope_egon_data(engine) as session: + query = session.query( + egon_etrago_electricity_cts_dsm_timeseries.bus.label("site_id"), + egon_etrago_electricity_cts_dsm_timeseries.p_min, + egon_etrago_electricity_cts_dsm_timeseries.p_max, + egon_etrago_electricity_cts_dsm_timeseries.e_min, + egon_etrago_electricity_cts_dsm_timeseries.e_max, + ).filter( + egon_etrago_electricity_cts_dsm_timeseries.scn_name == scenario, + egon_etrago_electricity_cts_dsm_timeseries.bus + == edisgo_obj.topology.id, + ) + df = pd.read_sql(sql=query.statement, con=engine) + # add time step column + df["time_step"] = len(df) * [np.arange(0, 8760)] + # un-nest time series data and pivot so that time_step becomes index and + # site_id column names + dsm_dict["p_min"] = _pivot_abs_helper(df, "p_min") + dsm_dict["p_max"] = _pivot_abs_helper(df, "p_max") + dsm_dict["e_min"] = _pivot_abs_helper(df, "e_min") + dsm_dict["e_max"] = _pivot_abs_helper(df, "e_max") + + # distribute over all CTS loads + cts_loads = edisgo_obj.topology.loads_df[ + (edisgo_obj.topology.loads_df.type == "conventional_load") + & (edisgo_obj.topology.loads_df.sector == "cts") + ] + if not dsm_dict["p_min"].empty: + if len(cts_loads) == 0: + raise ValueError("There is CTS DSM potential but no CTS loads.") + for dsm_ts in ["p_min", "p_max", "e_min", "e_max"]: + dsm_dict[dsm_ts] = pd.DataFrame( + data=( + np.matmul( + dsm_dict[dsm_ts].values, np.matrix(cts_loads["p_set"].values) + ) + / cts_loads["p_set"].sum() + ), + index=dsm_dict[dsm_ts].index, + columns=cts_loads["p_set"].index, + ) + + return dsm_dict + + +def _pivot_pu_helper(df_db, pu_col, scale_col): + df = ( + df_db.loc[:, ["site_id", scale_col, f"{pu_col}_pu", "time_step"]] + .explode([f"{pu_col}_pu", "time_step"]) + .astype({f"{pu_col}_pu": "float"}) + ) + df[pu_col] = df[f"{pu_col}_pu"] * df[scale_col] + df = df.pivot(index="time_step", columns="site_id", values=pu_col) + return df + + +def _pivot_abs_helper(df_db, col): + df = ( + df_db.loc[:, ["site_id", col, "time_step"]] + .explode([col, "time_step"]) + .astype({col: "float"}) + ) + df = df.pivot(index="time_step", columns="site_id", values=col) + return df diff --git a/tests/io/test_dsm_import.py b/tests/io/test_dsm_import.py new file mode 100644 index 000000000..c9ca78fb1 --- /dev/null +++ b/tests/io/test_dsm_import.py @@ -0,0 +1,74 @@ +import pytest + +from edisgo import EDisGo +from edisgo.io import dsm_import + + +class TestDSMImport: + @pytest.mark.local + def test_oedb(self): + # test without industrial load + edisgo_object = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + dsm_profiles = dsm_import.oedb( + edisgo_object, scenario="eGon2035", engine=pytest.engine + ) + for dsm_profile in ["e_max", "e_min", "p_max", "p_min"]: + assert dsm_profiles[dsm_profile].shape == (8760, 85) + assert (dsm_profiles["p_min"] <= 0.0).all().all() + assert (dsm_profiles["e_min"] <= 0.0).all().all() + assert (dsm_profiles["p_max"] >= 0.0).all().all() + assert (dsm_profiles["e_max"] >= 0.0).all().all() + + # test with one industrial load + dsm_load = edisgo_object.topology.loads_df[ + (edisgo_object.topology.loads_df.type == "conventional_load") + & (edisgo_object.topology.loads_df.sector == "cts") + ].index[0] + edisgo_object.topology.loads_df.at[dsm_load, "sector"] = "industry" + edisgo_object.topology.loads_df.at[dsm_load, "building_id"] = 1 + + dsm_profiles = dsm_import.oedb( + edisgo_object, scenario="eGon2035", engine=pytest.engine + ) + for dsm_profile in ["e_max", "e_min", "p_max", "p_min"]: + assert dsm_profiles[dsm_profile].shape == (8760, 85) + assert dsm_load in dsm_profiles[dsm_profile].columns + assert (dsm_profiles["p_min"] <= 0.0).all().all() + assert (dsm_profiles["e_min"] <= 0.0).all().all() + assert (dsm_profiles["p_max"] >= 0.0).all().all() + assert (dsm_profiles["e_max"] >= 0.0).all().all() + + @pytest.mark.local + def test_get_profiles_per_industrial_load(self): + dsm_profiles = dsm_import.get_profiles_per_industrial_load( + load_ids=[15388, 241, 1], scenario="eGon2035", engine=pytest.engine + ) + for dsm_profile in ["e_max", "e_min", "p_max", "p_min"]: + assert dsm_profiles[dsm_profile].shape == (8760, 3) + assert sorted(dsm_profiles[dsm_profile].columns) == [1, 241, 15388] + assert (dsm_profiles["p_min"] <= 0.0).all().all() + assert (dsm_profiles["e_min"] <= 0.0).all().all() + assert (dsm_profiles["p_max"] >= 0.0).all().all() + assert (dsm_profiles["e_max"] >= 0.0).all().all() + + dsm_profiles = dsm_import.get_profiles_per_industrial_load( + load_ids=[], scenario="eGon2035", engine=pytest.engine + ) + assert dsm_profiles["p_min"].empty + + @pytest.mark.local + def test_get_profile_cts(self): + edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + dsm_profiles = dsm_import.get_profile_cts( + edisgo_obj=edisgo, scenario="eGon2035", engine=pytest.engine + ) + for dsm_profile in ["e_max", "e_min", "p_max", "p_min"]: + assert dsm_profiles[dsm_profile].shape == (8760, 85) + assert (dsm_profiles["p_min"] <= 0.0).all().all() + assert (dsm_profiles["e_min"] <= 0.0).all().all() + assert (dsm_profiles["p_max"] >= 0.0).all().all() + assert (dsm_profiles["e_max"] >= 0.0).all().all() From c23486cdf97d6d6a32dd95883b06a2870a9d420e Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 29 Mar 2023 16:41:06 +0200 Subject: [PATCH 157/355] Add import of DSM data to edisgo --- edisgo/edisgo.py | 44 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 40 insertions(+), 4 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index a8ccc8b75..eeb137e6e 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -19,9 +19,8 @@ operating_strategy as hp_operating_strategy, ) from edisgo.flex_opt.reinforce_grid import reinforce_grid -from edisgo.io import generators_import, pypsa_io, timeseries_import +from edisgo.io import dsm_import, generators_import, pypsa_io, timeseries_import from edisgo.io.ding0_import import import_ding0_grid -from edisgo.io.dsm_import import dsm_from_database from edisgo.io.electromobility_import import ( distribute_charging_demand, import_electromobility_from_dir, @@ -1988,8 +1987,45 @@ def apply_heat_pump_operating_strategy( """ hp_operating_strategy(self, strategy=strategy, heat_pump_names=heat_pump_names) - def import_dsm(self, engine: Engine, scenario: str = "eGon2035"): - dsm_from_database(edisgo_obj=self, engine=engine, scenario=scenario) + def import_dsm(self, engine: Engine, scenario: str): + """ + Gets industrial and CTS DSM profiles from the + `OpenEnergy DataBase `_. + + Profiles comprise minimum and maximum load increase in MW as well as maximum + energy pre- and postponing in MWh. The data is written to the + :class:`~.network.dsm.DSM` object. + + Currently, the only supported data source is scenario data generated + in the research project `eGo^n `_. You can choose + between two scenarios: 'eGon2035' and 'eGon100RE'. + + Parameters + ---------- + edisgo_object : :class:`~.EDisGo` + scenario : str + Scenario for which to retrieve DSM data. Possible options + are 'eGon2035' and 'eGon100RE'. + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + timeindex : :pandas:`pandas.DatetimeIndex` or None + Specifies time steps for which to get data. Leap years can currently not be + handled. In case the given timeindex contains a leap year, the data will be + indexed using the default year (2035 in case of the 'eGon2035' and to 2045 + in case of the 'eGon100RE' scenario) and returned for the whole year. + If no timeindex is provided, the timeindex set in + :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. + If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data + is indexed using the default year and returned for the whole year. + + """ + dsm_profiles = dsm_import.oedb( + edisgo_obj=self, engine=engine, scenario=scenario + ) + self.dsm.p_min = dsm_profiles["p_min"] + self.dsm.p_max = dsm_profiles["p_max"] + self.dsm.e_min = dsm_profiles["e_min"] + self.dsm.e_max = dsm_profiles["e_max"] def import_home_batteries( self, From 3777dfcf5abc2f81b5aba10704ba8c249087f76d Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 29 Mar 2023 17:17:20 +0200 Subject: [PATCH 158/355] Change logging of generator import --- edisgo/io/generators_import.py | 43 ++++++++++++++++-------------- tests/io/test_generators_import.py | 15 ++++++----- 2 files changed, 32 insertions(+), 26 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 457b1bb37..408b1177b 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -1092,9 +1092,13 @@ def _integrate_pv_rooftop(edisgo_object, pv_rooftop_df): ~pv_rooftop_df.index.isin(gens_existing.gen_index_new) ] if len(new_pv_rooftop_plants) > 0: - _integrate_new_pv_rooftop_to_buildings(edisgo_object, new_pv_rooftop_plants) + _, new_pv_own_grid_conn = _integrate_new_pv_rooftop_to_buildings( + edisgo_object, new_pv_rooftop_plants + ) + else: + new_pv_own_grid_conn = [] - # check number of PV rooftop plants in grid + # check number and installed capacity of PV rooftop plants in grid pv_rooftop_gens_in_grid = edisgo_object.topology.generators_df[ edisgo_object.topology.generators_df.subtype == "pv_rooftop" ] @@ -1112,12 +1116,19 @@ def _integrate_pv_rooftop(edisgo_object, pv_rooftop_df): f"{pv_rooftop_gens_in_grid.p_nom.sum()}." ) - # logging message + # logging messages logger.debug( - f"{pv_rooftop_gens_in_grid.p_nom.sum():.2f} MW of PV rooftop plants integrated." - f"Of this, {gens_existing.p_nom.sum():.2f} MW could be matched to " + f"{pv_rooftop_gens_in_grid.p_nom.sum():.2f} MW of PV rooftop plants " + f"integrated. Of this, {gens_existing.p_nom.sum():.2f} MW could be matched to " f"an existing PV rooftop plant." ) + if len(new_pv_own_grid_conn) > 0: + logger.debug( + f"Of the PV rooftop plants that could not be matched to an existing PV " + f"plant, " + f"{sum(pv_rooftop_gens_in_grid.loc[new_pv_own_grid_conn, 'p_nom']):.2f} " + f"MW was integrated at a new bus." + ) def _integrate_new_pv_rooftop_to_buildings(edisgo_object, pv_rooftop_df): @@ -1132,10 +1143,11 @@ def _integrate_new_pv_rooftop_to_buildings(edisgo_object, pv_rooftop_df): Returns ------- - list(str) - List with names (as in index of - :attr:`~.network.topology.Topology.generators_df`) of integrated PV rooftop - plants. + (list(str), list(str)) + Two lists with names (as in index of + :attr:`~.network.topology.Topology.generators_df`) of all integrated PV rooftop + plants and PV rooftop plants integrated to a different grid connection point + than the building. """ # join busses corresponding to building ID @@ -1228,23 +1240,14 @@ def _integrate_new_pv_rooftop_to_buildings(edisgo_object, pv_rooftop_df): ) integrated_plants = integrated_plants.append(pd.Index([pv_pp_name])) integrated_plants_own_grid_conn = integrated_plants_own_grid_conn.append( - pd.Index([pv_pp]) + pd.Index([pv_pp_name]) ) # check if all PV plants were integrated if not len(pv_rooftop_df) == len(integrated_plants): raise ValueError("Not all PV rooftop plants could be integrated into the grid.") - # logging messages - logger.debug(f"{sum(pv_rooftop_df.p_nom):.2f} MW of PV roof-top plants integrated.") - if len(integrated_plants_own_grid_conn) > 0: - logger.debug( - f"Of this, " - f"{sum(pv_rooftop_df.loc[integrated_plants_own_grid_conn, 'p_nom']):.2f} " - f"MW of PV roof-top capacity was integrated at a new bus." - ) - - return integrated_plants + return integrated_plants, integrated_plants_own_grid_conn def _integrate_power_and_chp_plants(edisgo_object, power_plants_gdf, chp_gdf): diff --git a/tests/io/test_generators_import.py b/tests/io/test_generators_import.py index c10d6ca9f..bf8b2213c 100644 --- a/tests/io/test_generators_import.py +++ b/tests/io/test_generators_import.py @@ -269,9 +269,10 @@ def test__integrate_new_pv_rooftop_to_buildings(self, caplog): ] = "BusBar_mvgd_33532_lvgd_1163850014_LV" num_gens_before = len(edisgo.topology.generators_df) with caplog.at_level(logging.DEBUG): - integrated_pv = generators_import._integrate_new_pv_rooftop_to_buildings( - edisgo, pv_df - ) + ( + integrated_pv, + integrated_pv_own_grid_conn, + ) = generators_import._integrate_new_pv_rooftop_to_buildings(edisgo, pv_df) assert num_gens_before + 3 == len(edisgo.topology.generators_df) gens_df = edisgo.topology.generators_df.loc[integrated_pv, :] @@ -286,10 +287,12 @@ def test__integrate_new_pv_rooftop_to_buildings(self, caplog): bus_gen_voltage_level_5 = gens_df[gens_df.p_nom == 2.0].bus[0] assert edisgo.topology.buses_df.at[bus_gen_voltage_level_5, "v_nom"] == 20.0 - assert "2.15 MW of PV roof-top plants integrated." in caplog.text + assert edisgo.topology.generators_df.loc[integrated_pv, "p_nom"].sum() == 2.155 assert ( - "Of this, 2.00 MW of PV roof-top capacity was integrated at a new bus." - in caplog.text + edisgo.topology.generators_df.loc[ + integrated_pv_own_grid_conn, "p_nom" + ].sum() + == 2.0 ) def test__integrate_power_and_chp_plants(self, caplog): From f7156a2c06321d7ff1a3b2b59b5d5e2736fe78e4 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 30 Mar 2023 09:14:38 +0200 Subject: [PATCH 159/355] Import source_id of generators in ding0 import --- edisgo/io/ding0_import.py | 3 +++ edisgo/network/topology.py | 1 + 2 files changed, 4 insertions(+) diff --git a/edisgo/io/ding0_import.py b/edisgo/io/ding0_import.py index fac51ed18..25451de2f 100644 --- a/edisgo/io/ding0_import.py +++ b/edisgo/io/ding0_import.py @@ -93,8 +93,10 @@ def sort_hvmv_transformer_buses(transformers_df): # set up columns that are added in new ding0 version grid.loads["building_id"] = None grid.loads["number_households"] = None + grid.generators["source_id"] = None else: edisgo_obj.topology.buses_df["in_building"] = False + grid.generators = grid.generators.rename(columns={"gens_id": "source_id"}) edisgo_obj.topology.loads_df = grid.loads[edisgo_obj.topology.loads_df.columns] # drop slack generator from generators slack = grid.generators.loc[grid.generators.control == "Slack"].index @@ -102,6 +104,7 @@ def sort_hvmv_transformer_buses(transformers_df): edisgo_obj.topology.generators_df = grid.generators[ edisgo_obj.topology.generators_df.columns ] + edisgo_obj.topology.storage_units_df = grid.storage_units[ edisgo_obj.topology.storage_units_df.columns ] diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 7503827fe..958af075d 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -49,6 +49,7 @@ "control", "weather_cell_id", "subtype", + "source_id", ], "storage_units_df": ["bus", "control", "p_nom", "max_hours"], "transformers_df": ["bus0", "bus1", "x_pu", "r_pu", "s_nom", "type_info"], From b2b958db04222c7b7ecf38aa6077cc88c3a75c5c Mon Sep 17 00:00:00 2001 From: Malte Jahn Date: Thu, 17 Nov 2022 14:04:28 +0100 Subject: [PATCH 160/355] Add map to the plot - Add variable height of the plots --- edisgo/tools/plots.py | 81 +++++++++++++++++++++++-------------------- 1 file changed, 43 insertions(+), 38 deletions(-) diff --git a/edisgo/tools/plots.py b/edisgo/tools/plots.py index 168b05cca..69660222a 100644 --- a/edisgo/tools/plots.py +++ b/edisgo/tools/plots.py @@ -881,7 +881,8 @@ def color_map_color( Maximum value on color map cmap_name : str or list Name of color map to use, or the colormap - + height : int + Height of the plot Returns ------- str @@ -910,6 +911,7 @@ def plot_plotly( center_coordinates: bool = False, pseudo_coordinates: bool = False, node_selection: list | bool = False, + height: int = 500, ) -> BaseFigure: """ Draws a plotly html figure. @@ -1046,17 +1048,17 @@ def plot_plotly( logger.warning("No power flow results to show. -> Run power flow.") node_color = None - if center_coordinates: - # Center transformer coordinates on (0,0). - if hasattr(grid, "transformers_df"): - node_root = grid.transformers_df.bus1.iat[0] - x_root, y_root = G.nodes[node_root]["pos"] - else: - node_root = edisgo_obj.topology.transformers_hvmv_df.bus1.iat[0] - x_root, y_root = G.nodes[node_root]["pos"] + + # Center transformer coordinates on (0,0). + if hasattr(grid, "transformers_df"): + node_root = grid.transformers_df.bus1.iat[0] + x_center, y_center = G.nodes[node_root]["pos"] else: - x_root = 0 - y_root = 0 + node_root = edisgo_obj.topology.transformers_hvmv_df.bus1.iat[0] + x_center, y_center = G.nodes[node_root]["pos"] + + x_root = 0 + y_root = 0 if pseudo_coordinates: G = make_pseudo_coordinates_graph( @@ -1096,22 +1098,11 @@ def plot_plotly( f"node_result_selection needs to be one of {result_selection_options}" ) - # initialization coordinate transformation - transformer_4326_to_3035 = Transformer.from_crs( - "EPSG:4326", - "EPSG:3035", - always_xy=True, - ) - def get_coordinates_for_edge(edge): x0, y0 = G.nodes[edge[0]]["pos"] x1, y1 = G.nodes[edge[1]]["pos"] - x0, y0 = transformer_4326_to_3035.transform(x0, y0) - x1, y1 = transformer_4326_to_3035.transform(x1, y1) return x0, y0, x1, y1 - x_root, y_root = transformer_4326_to_3035.transform(x_root, y_root) - def plot_line_text(): middle_node_x = [] middle_node_y = [] @@ -1134,9 +1125,9 @@ def plot_line_text(): middle_node_text.append(text) - middle_node_scatter = go.Scatter( - x=middle_node_x, - y=middle_node_y, + middle_node_scatter = go.Scattermapbox( + lon=middle_node_x, + lat=middle_node_y, text=middle_node_text, mode="markers", hoverinfo="text", @@ -1230,10 +1221,10 @@ def plot_lines(): else: color = "grey" - edge_scatter = go.Scatter( + edge_scatter = go.Scattermapbox( mode="lines", - x=edge_x, - y=edge_y, + lon=edge_x, + lat=edge_y, hoverinfo="none", opacity=0.8, showlegend=False, @@ -1242,6 +1233,7 @@ def plot_lines(): color=color, ), ) + #print(edge_scatter) data_line_plot.append(edge_scatter) if line_color: @@ -1304,7 +1296,6 @@ def plot_buses(): for node in G.nodes(): x, y = G.nodes[node]["pos"] - x, y = transformer_4326_to_3035.transform(x, y) node_x.append(x - x_root) node_y.append(y - y_root) @@ -1369,9 +1360,9 @@ def plot_buses(): node_text.append(text) - node_scatter = go.Scatter( - x=node_x, - y=node_y, + node_scatter = go.Scattermapbox( + lon=node_x, + lat=node_y, mode="markers", hoverinfo="text", text=node_text, @@ -1381,16 +1372,16 @@ def plot_buses(): color=node_colors, size=8, cmid=cmid, - line_width=2, colorbar=colorbar, ), ) + # print(node_scatter) return [node_scatter] fig = go.Figure( - data=plot_line_text() + plot_lines() + plot_buses(), + data=plot_lines() + plot_buses() + plot_line_text(), layout=go.Layout( - height=500, + height=height, showlegend=False, hovermode="closest", margin=dict(b=20, l=5, r=5, t=40), @@ -1406,6 +1397,16 @@ def plot_buses(): scaleanchor="x", scaleratio=1, ), + mapbox=dict( + # bearing=0, + center=dict( + lat=y_center, + lon=x_center, + ), + # pitch=0, + zoom=10, + style = 'open-street-map' + ), ), ) if warning_message: @@ -1470,7 +1471,7 @@ def chosen_graph( def plot_dash_app( - edisgo_objects: EDisGo | dict[str, EDisGo], debug: bool = False + edisgo_objects: EDisGo | dict[str, EDisGo], debug: bool = False, height: int = 500, ) -> JupyterDash: """ Generates a jupyter dash app from given eDisGo object(s). @@ -1848,6 +1849,7 @@ def update_figure_double( selected_timesteps=selected_timesteps, pseudo_coordinates=pseudo_coordinates, center_coordinates=True, + height=height, ) edisgo_obj = edisgo_objects[selected_edisgo_object_2] @@ -1863,6 +1865,7 @@ def update_figure_double( selected_timesteps=selected_timesteps, pseudo_coordinates=pseudo_coordinates, center_coordinates=True, + height=height, ) return fig_1, fig_2 @@ -2099,6 +2102,7 @@ def update_figure_single( selected_timesteps=selected_timesteps, pseudo_coordinates=pseudo_coordinates, center_coordinates=True, + height=height, ) return fig @@ -2111,6 +2115,7 @@ def plot_dash( mode: str = "inline", debug: bool = False, port: int = 8050, + height: int = 820, ): """ Shows the generated jupyter dash app from given eDisGo object(s). @@ -2139,7 +2144,7 @@ def plot_dash( Port which the app uses. Default: 8050. """ - app = plot_dash_app(edisgo_objects, debug=debug) + app = plot_dash_app(edisgo_objects, debug=debug, height=height-200) log = logging.getLogger("werkzeug") log.setLevel(logging.ERROR) - app.run_server(mode=mode, debug=debug, height=820, port=port) + app.run_server(mode=mode, debug=debug, height=height, port=port) From dd0632a50e45c3f945569dcd1e5d2359fec251a2 Mon Sep 17 00:00:00 2001 From: mltja Date: Thu, 30 Mar 2023 14:12:51 +0200 Subject: [PATCH 161/355] Add background map to plotly and dash plotting. --- edisgo/tools/plots.py | 255 +++++++++++++++++++++++++----------- examples/plot_example.ipynb | 35 +++-- tests/tools/test_plots.py | 14 +- 3 files changed, 212 insertions(+), 92 deletions(-) diff --git a/edisgo/tools/plots.py b/edisgo/tools/plots.py index 69660222a..17875fe34 100644 --- a/edisgo/tools/plots.py +++ b/edisgo/tools/plots.py @@ -908,7 +908,7 @@ def plot_plotly( line_result_selection: str = "max", node_result_selection: str = "max", selected_timesteps: pd.Timestamp | list | None = None, - center_coordinates: bool = False, + plot_map: bool = False, pseudo_coordinates: bool = False, node_selection: list | bool = False, height: int = 500, @@ -973,10 +973,8 @@ def plot_plotly( :pandas:`pandas.Timestamp` Selected time steps are used. - center_coordinates : bool - Enables the centering of the coordinates. If True the transformer node is set - to the coordinates x=0 and y=0. Else, the coordinates from the HV/MV-station - of the MV grid are used. Default: False. + plot_map : bool + Enable the plotting of a background map. pseudo_coordinates : bool Enable pseudo coordinates for the plotted grid. Default: False. @@ -984,6 +982,9 @@ def plot_plotly( node_selection : bool or list(str) Only plot selected nodes. Default: False. + height : int + Height of the plotly plot. + Returns ------- :plotly:`plotly.graph_objects.Figure` @@ -1048,8 +1049,6 @@ def plot_plotly( logger.warning("No power flow results to show. -> Run power flow.") node_color = None - - # Center transformer coordinates on (0,0). if hasattr(grid, "transformers_df"): node_root = grid.transformers_df.bus1.iat[0] x_center, y_center = G.nodes[node_root]["pos"] @@ -1120,24 +1119,40 @@ def plot_line_text(): text += "
" + "Loading = " + str(s_res.loc[branch_name]) line_parameters = edisgo_obj.topology.lines_df.loc[branch_name, :] - for index, value in line_parameters.iteritems(): + for index, value in line_parameters.items(): text += "
" + str(index) + " = " + str(value) middle_node_text.append(text) - middle_node_scatter = go.Scattermapbox( - lon=middle_node_x, - lat=middle_node_y, - text=middle_node_text, - mode="markers", - hoverinfo="text", - marker=dict( - opacity=0.0, - size=10, - color="white", - ), - showlegend=False, - ) + if plot_map: + middle_node_scatter = go.Scattermapbox( + lon=middle_node_x, + lat=middle_node_y, + text=middle_node_text, + mode="markers", + hoverinfo="text", + marker=dict( + opacity=0.0, + size=10, + color="white", + ), + showlegend=False, + ) + else: + middle_node_scatter = go.Scatter( + x=middle_node_x, + y=middle_node_y, + text=middle_node_text, + mode="markers", + hoverinfo="text", + marker=dict( + opacity=0.0, + size=10, + color="white", + ), + showlegend=False, + ) + return [middle_node_scatter] def plot_lines(): @@ -1220,20 +1235,33 @@ def plot_lines(): color = "indigo" else: color = "grey" + if plot_map: + edge_scatter = go.Scattermapbox( + mode="lines", + lon=edge_x, + lat=edge_y, + hoverinfo="none", + opacity=0.8, + showlegend=False, + line=dict( + width=2, + color=color, + ), + ) + else: + edge_scatter = go.Scatter( + mode="lines", + x=edge_x, + y=edge_y, + hoverinfo="none", + opacity=0.8, + showlegend=False, + line=dict( + width=2, + color=color, + ), + ) - edge_scatter = go.Scattermapbox( - mode="lines", - lon=edge_x, - lat=edge_y, - hoverinfo="none", - opacity=0.8, - showlegend=False, - line=dict( - width=2, - color=color, - ), - ) - #print(edge_scatter) data_line_plot.append(edge_scatter) if line_color: @@ -1355,27 +1383,44 @@ def plot_buses(): text = text + "
" + "Neighbors = " + str(G.degree(node)) node_parameters = edisgo_obj.topology.buses_df.loc[node] - for index, value in node_parameters.iteritems(): + for index, value in node_parameters.items(): text += "
" + str(index) + " = " + str(value) node_text.append(text) + if plot_map: + node_scatter = go.Scattermapbox( + lon=node_x, + lat=node_y, + mode="markers", + hoverinfo="text", + text=node_text, + marker=dict( + showscale=showscale, + colorscale=colorscale, + color=node_colors, + size=8, + cmid=cmid, + colorbar=colorbar, + ), + ) + else: + node_scatter = go.Scatter( + x=node_x, + y=node_y, + mode="markers", + hoverinfo="text", + text=node_text, + marker=dict( + showscale=showscale, + colorscale=colorscale, + color=node_colors, + size=8, + cmid=cmid, + line_width=2, + colorbar=colorbar, + ), + ) - node_scatter = go.Scattermapbox( - lon=node_x, - lat=node_y, - mode="markers", - hoverinfo="text", - text=node_text, - marker=dict( - showscale=showscale, - colorscale=colorscale, - color=node_colors, - size=8, - cmid=cmid, - colorbar=colorbar, - ), - ) - # print(node_scatter) return [node_scatter] fig = go.Figure( @@ -1404,8 +1449,8 @@ def plot_buses(): lon=x_center, ), # pitch=0, - zoom=10, - style = 'open-street-map' + zoom=11, + style="open-street-map", ), ), ) @@ -1471,7 +1516,9 @@ def chosen_graph( def plot_dash_app( - edisgo_objects: EDisGo | dict[str, EDisGo], debug: bool = False, height: int = 500, + edisgo_objects: EDisGo | dict[str, EDisGo], + debug: bool = False, + height: int = 500, ) -> JupyterDash: """ Generates a jupyter dash app from given eDisGo object(s). @@ -1483,6 +1530,9 @@ def plot_dash_app( objects pass a dictionary with the eDisGo objects as values and the respective eDisGo object names as keys. + height : int + Height in pixels of the plotly plot. + debug : bool Debugging for the dash app: @@ -1547,6 +1597,8 @@ def plot_dash_app( if debug: app.logger.disabled = False app.logger.setLevel(logging.DEBUG) + else: + app.logger.disabled = True if isinstance(edisgo_objects, dict) and len(edisgo_objects) > 1: app.layout = html.Div( @@ -1662,17 +1714,41 @@ def plot_dash_app( [ html.Div( [ - html.Label("Pseudo coordinates"), - dcc.RadioItems( - id="radioitems_pseudo_coordinates", - options=[ - {"label": "False", "value": False}, - {"label": "True", "value": True}, + html.Div( + [ + html.Label("Pseudo coordinates"), + dcc.RadioItems( + id="radioitems_pseudo_coordinates", + options=[ + {"label": "False", "value": False}, + {"label": "True", "value": True}, + ], + value=False, + ), + ], + style={"padding": padding, "flex": 1}, + ), + html.Div( + [ + html.Label("Plot map"), + dcc.RadioItems( + id="radioitems_plot_map", + options=[ + {"label": "False", "value": False}, + {"label": "True", "value": True}, + ], + value=False, + ), ], - value=False, + style={"padding": padding, "flex": 1}, ), ], - style={"padding": padding, "flex": 1}, + style={ + "display": "flex", + "flex-direction": "row", + "padding": 0, + "flex": 1, + }, ), html.Div( [ @@ -1794,6 +1870,7 @@ def update_timestep_components_double(timestep_mode_radio): Input("dropdown_line_plot_mode", "value"), Input("dropdown_node_plot_mode", "value"), Input("radioitems_pseudo_coordinates", "value"), + Input("radioitems_plot_map", "value"), Input("line_result_selection", "value"), Input("node_result_selection", "value"), Input("timestep_mode_radio", "value"), @@ -1808,6 +1885,7 @@ def update_figure_double( selected_line_plot_mode, selected_node_plot_mode, pseudo_coordinates, + plot_map, line_result_selection, node_result_selection, timestep_mode, @@ -1848,7 +1926,7 @@ def update_figure_double( node_result_selection=node_result_selection, selected_timesteps=selected_timesteps, pseudo_coordinates=pseudo_coordinates, - center_coordinates=True, + plot_map=plot_map, height=height, ) @@ -1864,7 +1942,7 @@ def update_figure_double( node_result_selection=node_result_selection, selected_timesteps=selected_timesteps, pseudo_coordinates=pseudo_coordinates, - center_coordinates=True, + plot_map=plot_map, height=height, ) @@ -1928,17 +2006,41 @@ def update_figure_double( [ html.Div( [ - html.Label("Pseudo coordinates"), - dcc.RadioItems( - id="radioitems_pseudo_coordinates", - options=[ - {"label": "False", "value": False}, - {"label": "True", "value": True}, + html.Div( + [ + html.Label("Pseudo coordinates"), + dcc.RadioItems( + id="radioitems_pseudo_coordinates", + options=[ + {"label": "False", "value": False}, + {"label": "True", "value": True}, + ], + value=False, + ), + ], + style={"padding": padding, "flex": 1}, + ), + html.Div( + [ + html.Label("Plot map"), + dcc.RadioItems( + id="radioitems_plot_map", + options=[ + {"label": "False", "value": False}, + {"label": "True", "value": True}, + ], + value=False, + ), ], - value=False, + style={"padding": padding, "flex": 1}, ), ], - style={"padding": padding, "flex": 1}, + style={ + "display": "flex", + "flex-direction": "row", + "padding": 0, + "flex": 1, + }, ), html.Div( [ @@ -2051,6 +2153,7 @@ def update_timestep_components_single(timestep_mode_radio): Input("dropdown_line_plot_mode", "value"), Input("dropdown_node_plot_mode", "value"), Input("radioitems_pseudo_coordinates", "value"), + Input("radioitems_plot_map", "value"), Input("line_result_selection", "value"), Input("node_result_selection", "value"), Input("timestep_mode_radio", "value"), @@ -2063,6 +2166,7 @@ def update_figure_single( selected_line_plot_mode, selected_node_plot_mode, pseudo_coordinates, + plot_map, line_result_selection, node_result_selection, timestep_mode, @@ -2101,7 +2205,7 @@ def update_figure_single( node_result_selection=node_result_selection, selected_timesteps=selected_timesteps, pseudo_coordinates=pseudo_coordinates, - center_coordinates=True, + plot_map=plot_map, height=height, ) @@ -2143,8 +2247,11 @@ def plot_dash( port : int Port which the app uses. Default: 8050. + height : int + Height of the jupyter dash cell. + """ - app = plot_dash_app(edisgo_objects, debug=debug, height=height-200) + app = plot_dash_app(edisgo_objects, debug=debug, height=height - 300) log = logging.getLogger("werkzeug") log.setLevel(logging.ERROR) app.run_server(mode=mode, debug=debug, height=height, port=port) diff --git a/examples/plot_example.ipynb b/examples/plot_example.ipynb index e0058d40b..3e1f9679a 100644 --- a/examples/plot_example.ipynb +++ b/examples/plot_example.ipynb @@ -38,7 +38,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "import logging\n", @@ -48,7 +50,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "import os\n", @@ -73,7 +77,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "import requests\n", @@ -122,7 +128,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "ding0_grid = os.path.join(os.path.expanduser(\"~\"), \".edisgo\", \"ding0_test_network\")" @@ -143,7 +151,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "edisgo_analyzed = copy.deepcopy(edisgo_root)\n", @@ -153,7 +163,9 @@ { "cell_type": "code", "execution_count": null, - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "edisgo_reinforced = copy.deepcopy(edisgo_root)\n", @@ -192,7 +204,7 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### Plotting relative loading and voltage deviation, with grid coordinates modified to have the station in the origin" + "#### Plotting relative loading and voltage deviation, with map in the background." ] }, { @@ -209,8 +221,8 @@ " line_result_selection=\"max\",\n", " node_result_selection=\"max\",\n", " selected_timesteps=None,\n", - " center_coordinates=True,\n", " pseudo_coordinates=False,\n", + " plot_map=True,\n", " node_selection=False\n", ")\n", "\n", @@ -241,7 +253,6 @@ " '1970-01-01 00:00:00', \n", " '1970-01-01 01:00:00',\n", " ],\n", - " center_coordinates=False,\n", " pseudo_coordinates=False,\n", " node_selection=False\n", ")" @@ -268,7 +279,6 @@ " line_result_selection=\"max\",\n", " node_result_selection=\"max\",\n", " selected_timesteps='1970-01-01 03:00:00',\n", - " center_coordinates=True,\n", " pseudo_coordinates=True,\n", " node_selection=False\n", ")" @@ -295,7 +305,6 @@ " line_result_selection=\"max\",\n", " node_result_selection=\"max\",\n", " selected_timesteps=None,\n", - " center_coordinates=True,\n", " pseudo_coordinates=False,\n", " node_selection=[\n", " 'Bus_MVStation_1',\n", @@ -375,7 +384,7 @@ " \"edisgo_root\": edisgo_root,\n", " \"edisgo_analyzed\": edisgo_analyzed,\n", " \"edisgo_reinforced\": edisgo_reinforced\n", - " }\n", + " }, height=1000\n", ")" ] } @@ -396,7 +405,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.13" + "version": "3.8.16" }, "toc": { "base_numbering": 1, diff --git a/tests/tools/test_plots.py b/tests/tools/test_plots.py index c8d855ce8..1c056a253 100644 --- a/tests/tools/test_plots.py +++ b/tests/tools/test_plots.py @@ -20,8 +20,12 @@ def setup_class(cls): ] = "added" @pytest.mark.parametrize( - "line_color, node_color, line_result_selection, node_result_selection" - ", center_coordinates, pseudo_coordinates", + "line_color," + "node_color," + "line_result_selection," + "node_result_selection," + "plot_map," + "pseudo_coordinates", [ ("loading", "voltage_deviation", "min", "min", True, True), ("relative_loading", "adjacencies", "max", "max", False, False), @@ -52,7 +56,7 @@ def test_plot_plotly( line_result_selection, node_result_selection, selected_timesteps, - center_coordinates, + plot_map, pseudo_coordinates, node_selection, ): @@ -79,7 +83,7 @@ def test_plot_plotly( line_result_selection=line_result_selection, node_result_selection=node_result_selection, selected_timesteps=selected_timesteps, - center_coordinates=center_coordinates, + plot_map=plot_map, pseudo_coordinates=pseudo_coordinates, node_selection=node_selection, ) @@ -92,7 +96,7 @@ def test_plot_plotly( line_result_selection=line_result_selection, node_result_selection=node_result_selection, selected_timesteps=selected_timesteps, - center_coordinates=center_coordinates, + plot_map=plot_map, pseudo_coordinates=pseudo_coordinates, node_selection=node_selection, ) From ee9a8e0559dcb49e905c2a32196b4f1e2fea08f8 Mon Sep 17 00:00:00 2001 From: mltja Date: Thu, 30 Mar 2023 14:17:33 +0200 Subject: [PATCH 162/355] Add to whatsnew --- doc/whatsnew/v0-2-1.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/whatsnew/v0-2-1.rst b/doc/whatsnew/v0-2-1.rst index 76386724b..a9a7bf2db 100644 --- a/doc/whatsnew/v0-2-1.rst +++ b/doc/whatsnew/v0-2-1.rst @@ -10,3 +10,4 @@ Changes * Added MV grid ID to logging output `#309 `_ * Added automatic link checking `#297 `_ * Bug fix `#346 `_ +* Add background map to plots `#346 `_ From 5ac0e393e65b57ecec61d7cb7a7645d095c4f9f8 Mon Sep 17 00:00:00 2001 From: mltja Date: Thu, 30 Mar 2023 14:19:24 +0200 Subject: [PATCH 163/355] Add to whatsnew 0.2.1 to whatsnew index --- doc/whatsnew.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index cc3471a19..48f93776e 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -8,6 +8,7 @@ Changelog for each release. :local: :backlinks: top +.. include:: whatsnew/v0-2-1.rst .. include:: whatsnew/v0-2-0.rst .. include:: whatsnew/v0-1-1.rst .. include:: whatsnew/v0-1-0.rst From d44899b0957222b6fc67288a49e0ffb3145f1f9a Mon Sep 17 00:00:00 2001 From: mltja Date: Thu, 30 Mar 2023 15:09:25 +0200 Subject: [PATCH 164/355] Fix docs and add some comments --- doc/whatsnew/v0-2-1.rst | 1 + edisgo/tools/spatial_complexity_reduction.py | 14 +++++++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/doc/whatsnew/v0-2-1.rst b/doc/whatsnew/v0-2-1.rst index 76386724b..80144f3c5 100644 --- a/doc/whatsnew/v0-2-1.rst +++ b/doc/whatsnew/v0-2-1.rst @@ -10,3 +10,4 @@ Changes * Added MV grid ID to logging output `#309 `_ * Added automatic link checking `#297 `_ * Bug fix `#346 `_ +* Add spatial complexity reduction methods `#343 `_ diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 084bc37b5..1e38f0af5 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -248,6 +248,7 @@ def apply_busmap(series): (len(unused_lines) / lines_df.shape[0] * 100), ) ) + # Apply the busmap on the components lines_df = lines_df.drop(unused_lines) lines_df = lines_df.apply(apply_busmap_on_lines_df, axis="columns") @@ -361,7 +362,7 @@ def apply_busmap(series): unused_lines.append(index) logger.debug("Busmap: {}".format(busmap)) - + # Apply the busmap on the components transformers_df = edisgo_obj.topology.transformers_df.copy() transformers_df = transformers_df.apply(apply_busmap_on_lines_df, axis="columns") edisgo_obj.topology.transformers_df = transformers_df @@ -494,7 +495,7 @@ def rename_new_buses(series): grid_list = make_grid_list(edisgo_obj, grid=grid) busmap_df = pd.DataFrame() - + # Cluster every grid for grid in grid_list: v_grid = grid.nominal_voltage logger.debug("Make busmap for grid: {}, v_nom={}".format(grid, v_grid)) @@ -505,12 +506,12 @@ def rename_new_buses(series): buses_df = buses_df.apply(transform_coordinates, axis="columns") buses_df = buses_df.apply(calculate_weighting, axis="columns") - + # Calculate number of clusters number_of_distinct_nodes = buses_df.groupby(by=["x", "y"]).first().shape[0] logger.debug("Number_of_distinct_nodes = " + str(number_of_distinct_nodes)) n_clusters = math.ceil(number_of_distinct_nodes * reduction_factor) logger.debug("n_clusters = {}".format(n_clusters)) - + # Cluster with kmeans kmeans = KMeans(n_clusters=n_clusters, n_init=10, random_state=42) kmeans.fit(buses_df.loc[:, ["x", "y"]], sample_weight=buses_df.loc[:, "weight"]) @@ -527,6 +528,7 @@ def rename_new_buses(series): ] = kmeans.cluster_centers_[new_bus] elif mode == "kmeansdijkstra": + # Use dijkstra to select clusters dist_to_cluster_center = pd.DataFrame( data=kmeans.transform(buses_df.loc[:, ["x", "y"]]), index=buses_df.index ).min(axis="columns") @@ -570,7 +572,7 @@ def rename_new_buses(series): ), "new_bus", ] = transformer_bus - + # Write trafo coordinates back, this helps to get better results if preserve_trafo_bus_coordinates: partial_busmap_df.loc[ partial_busmap_df.new_bus.isin( @@ -1063,6 +1065,7 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): if mode == "equidistant_nodes": def short_coordinates(root_node, end_node, branch_length, node_number): + # Calculate coordinates for the feeder nodes angle = math.degrees( math.atan2(end_node[1] - root_node[1], end_node[0] - root_node[0]) ) @@ -1290,6 +1293,7 @@ def make_busmap( "kmeans", "kmeansdijkstra", "aggregate_to_main_feeder" or "equidistant_nodes" as clustering method. "aggregate_to_main_feeder" or "equidistant_nodes" only work with the cluster area "main_feeder". + - "kmeans": Perform the k-means algorithm on the cluster area and map then the buses to the cluster centers. From d33e85156c9e3d6c6fe27c7f4d6c6b27717caf34 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 30 Mar 2023 16:59:40 +0200 Subject: [PATCH 165/355] Match pv rooftop plants based on source ID and add test --- edisgo/io/generators_import.py | 11 ++---- tests/io/test_generators_import.py | 63 ++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+), 7 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 408b1177b..1519421bd 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -997,8 +997,6 @@ def _integrate_pv_rooftop(edisgo_object, pv_rooftop_df): MaStR ID of the PV plant. """ - # ToDo PV rooftop plants should be matched using the source ID instead of building - # ID # match building ID to existing solar generators loads_df = edisgo_object.topology.loads_df busses_building_id = ( @@ -1020,15 +1018,13 @@ def _integrate_pv_rooftop(edisgo_object, pv_rooftop_df): # remove decommissioned PV rooftop plants gens_decommissioned = gens_df[ - ~gens_df.building_id.isin(pv_rooftop_df.building_id.unique()) + ~gens_df.source_id.isin(pv_rooftop_df.source_id.unique()) ] for gen in gens_decommissioned.index: edisgo_object.remove_component(comp_type="generator", comp_name=gen) # update existing PV rooftop plants - gens_existing = gens_df[ - gens_df.building_id.isin(pv_rooftop_df.building_id.unique()) - ] + gens_existing = gens_df[gens_df.source_id.isin(pv_rooftop_df.source_id.unique())] # merge new information gens_existing.index.name = "gen_name" pv_rooftop_df.index.name = "gen_index_new" @@ -1036,7 +1032,7 @@ def _integrate_pv_rooftop(edisgo_object, pv_rooftop_df): gens_existing.reset_index(), pv_rooftop_df.reset_index(), how="left", - on="building_id", + on="source_id", suffixes=("_old", ""), ).set_index("gen_name") # add building id @@ -1085,6 +1081,7 @@ def _integrate_pv_rooftop(edisgo_object, pv_rooftop_df): generator_type=gens_increased_cap.at[gen, "type"], subtype=gens_increased_cap.at[gen, "subtype"], weather_cell_id=gens_increased_cap.at[gen, "weather_cell_id"], + source_id=gens_increased_cap.at[gen, "source_id"], ) # integrate new PV rooftop plants into grid diff --git a/tests/io/test_generators_import.py b/tests/io/test_generators_import.py index bf8b2213c..464f25034 100644 --- a/tests/io/test_generators_import.py +++ b/tests/io/test_generators_import.py @@ -8,6 +8,7 @@ from edisgo import EDisGo from edisgo.io import generators_import +from edisgo.tools.tools import determine_bus_voltage_level class TestGeneratorsImport: @@ -245,6 +246,68 @@ def test_update_grids_target_capacity(self): self.edisgo.topology.generators_df.at["Generator_1", "p_nom"] == 0.775 + 1.5 ) + def test__integrate_pv_rooftop(self, caplog): + # set up dataframe with: + # * one gen where capacity will increase and voltage level + # changes ("SEE980819686674") + # * one where capacity will decrease ("SEE970362202254") + # * one where capacity stayed the same ("SEE960032475262") + # * one with source ID that does not exist in future scenario ("SEE2") + pv_df = pd.DataFrame( + data={ + "p_nom": [0.005, 0.15, 0.068, 2.0], + "weather_cell_id": [11051, 11051, 11052, 11052], + "building_id": [430903, 445710, 431094, 446933], + "generator_id": [1, 2, 3, 4], + "type": ["solar", "solar", "solar", "solar"], + "subtype": ["pv_rooftop", "pv_rooftop", "pv_rooftop", "pv_rooftop"], + "voltage_level": [7, 6, 7, 5], + "source_id": [ + "SEE970362202254", + "SEE980819686674", + "SEE960032475262", + "SEE2", + ], + }, + index=[1, 2, 3, 4], + ) + + edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + + gens_before = edisgo.topology.generators_df.copy() + with caplog.at_level(logging.DEBUG): + generators_import._integrate_pv_rooftop(edisgo, pv_df) + + gens_df = edisgo.topology.generators_df[ + edisgo.topology.generators_df.subtype == "pv_rooftop" + ].copy() + + assert len(gens_df) == 4 + # check gen where capacity increases and voltage level changes + gen_name = gens_df[gens_df.source_id == "SEE980819686674"].index[0] + assert gen_name not in gens_before.index + bus_gen = gens_df.at[gen_name, "bus"] + assert determine_bus_voltage_level(edisgo, bus_gen) == 6 + # check gen where capacity decreases + gen_name = gens_df[gens_df.source_id == "SEE970362202254"].index[0] + assert gen_name in gens_before.index + assert gens_df.at[gen_name, "p_nom"] == 0.005 + # check gen where capacity stayed the same + gen_name = gens_df[gens_df.source_id == "SEE960032475262"].index[0] + assert gen_name in gens_before.index + assert gens_df.at[gen_name, "p_nom"] == 0.068 + # check new gen + gen_name = gens_df[gens_df.source_id == "SEE2"].index[0] + assert gen_name not in gens_before.index + assert gens_df.at[gen_name, "p_nom"] == 2.0 + # check logging + assert ( + "2.22 MW of PV rooftop plants integrated. Of this, 0.22 MW could be " + "matched to an existing PV rooftop plant." in caplog.text + ) + def test__integrate_new_pv_rooftop_to_buildings(self, caplog): pv_df = pd.DataFrame( data={ From 54784848bb036c4683c61ad56f37a0984a095aa7 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 30 Mar 2023 22:40:59 +0200 Subject: [PATCH 166/355] Adapt tests to new test grid --- tests/io/test_electromobility_import.py | 4 ++-- tests/io/test_generators_import.py | 18 +++++++++-------- tests/io/test_heat_pump_import.py | 12 ++++++------ tests/io/test_storage_import.py | 26 ++++++++++++------------- tests/io/test_timeseries_import.py | 21 ++++++++++---------- tests/network/test_heat.py | 2 +- tests/network/test_timeseries.py | 12 ++++++------ tests/test_edisgo.py | 13 +++++++------ 8 files changed, 56 insertions(+), 52 deletions(-) diff --git a/tests/io/test_electromobility_import.py b/tests/io/test_electromobility_import.py index eae274613..fda05bdce 100644 --- a/tests/io/test_electromobility_import.py +++ b/tests/io/test_electromobility_import.py @@ -227,10 +227,10 @@ def test_charging_processes_from_oedb(self): edisgo_obj=edisgo_obj, engine=pytest.engine, scenario="eGon2035" ) assert len(charging_processes_df.car_id.unique()) == 1604 - assert len(charging_processes_df) == 323507 + assert len(charging_processes_df) == 324117 assert charging_processes_df[ charging_processes_df.chargingdemand_kWh == 0 ].empty assert np.isclose( - charging_processes_df.chargingdemand_kWh.sum() / 1604, 2414.31, atol=1e-3 + charging_processes_df.chargingdemand_kWh.sum() / 1604, 2414.55, atol=1e-3 ) diff --git a/tests/io/test_generators_import.py b/tests/io/test_generators_import.py index 464f25034..7178c8878 100644 --- a/tests/io/test_generators_import.py +++ b/tests/io/test_generators_import.py @@ -313,7 +313,7 @@ def test__integrate_new_pv_rooftop_to_buildings(self, caplog): data={ "p_nom": [0.005, 0.15, 2.0], "weather_cell_id": [11051, 11051, 11052], - "building_id": [446651, 445710, 446933], + "building_id": [430903, 445710, 446933], "generator_id": [1, 2, 3], "type": ["solar", "solar", "solar"], "subtype": ["pv_rooftop", "pv_rooftop", "pv_rooftop"], @@ -327,9 +327,11 @@ def test__integrate_new_pv_rooftop_to_buildings(self, caplog): ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False ) # manipulate grid so that building 445710 is connected to MV/LV station - edisgo.topology.loads_df.at[ - "Load_mvgd_33532_lvgd_1163850014_103_residential", "bus" - ] = "BusBar_mvgd_33532_lvgd_1163850014_LV" + load = edisgo.topology.loads_df[ + edisgo.topology.loads_df.building_id == 445710 + ].index[0] + busbar_bus = "BusBar_mvgd_33535_lvgd_1164120011_LV" + edisgo.topology.loads_df.at[load, "bus"] = busbar_bus num_gens_before = len(edisgo.topology.generators_df) with caplog.at_level(logging.DEBUG): ( @@ -345,7 +347,7 @@ def test__integrate_new_pv_rooftop_to_buildings(self, caplog): assert edisgo.topology.buses_df.at[bus_gen_voltage_level_7, "v_nom"] == 0.4 # check that medium PV plant is connected same bus as building bus_gen_voltage_level_6 = gens_df[gens_df.p_nom == 0.15].bus[0] - assert bus_gen_voltage_level_6 == "BusBar_mvgd_33532_lvgd_1163850014_LV" + assert bus_gen_voltage_level_6 == busbar_bus # check that largest heat pump is connected to MV bus_gen_voltage_level_5 = gens_df[gens_df.p_nom == 2.0].bus[0] assert edisgo.topology.buses_df.at[bus_gen_voltage_level_5, "v_nom"] == 20.0 @@ -370,8 +372,8 @@ def test__integrate_power_and_chp_plants(self, caplog): # * one where capacity will decrease ("SEE97") # * one where capacity stayed the same ("SEE98") # * one with source ID that does not exist in future scenario ("SEE99") - random_bus = "BusBar_mvgd_33532_lvgd_1151750000_MV" - random_lv_bus = "BranchTee_mvgd_33532_lvgd_1151770000_1" + random_bus = "BusBar_mvgd_33535_lvgd_1156570000_MV" + random_lv_bus = "BranchTee_mvgd_33535_lvgd_1150630000_35" x = edisgo.topology.buses_df.at[random_bus, "x"] y = edisgo.topology.buses_df.at[random_bus, "y"] geom = Point((x, y)) @@ -720,4 +722,4 @@ def test_oedb(self): ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False ) edisgo.import_generators(generator_scenario="eGon2035", engine=pytest.engine) - assert len(edisgo.topology.generators_df) == 670 + assert len(edisgo.topology.generators_df) == 677 diff --git a/tests/io/test_heat_pump_import.py b/tests/io/test_heat_pump_import.py index e22c7deb6..a3166c127 100644 --- a/tests/io/test_heat_pump_import.py +++ b/tests/io/test_heat_pump_import.py @@ -22,7 +22,7 @@ def setup_heat_pump_data_individual_heating(self): data={ "p_set": [0.005, 0.15, 2.0], "weather_cell_id": [11051, 11051, 11052], - "building_id": [446651, 445710, 446933], + "building_id": [446963, 445710, 446933], }, index=[1, 2, 3], ) @@ -50,14 +50,14 @@ def test_oedb(self, caplog): loads_df = self.edisgo.topology.loads_df hp_df = loads_df[loads_df.type == "heat_pump"] assert "Capacity of individual heat pumps" not in caplog.text - assert len(hp_df) == 177 - assert len(hp_df[hp_df.sector == "individual_heating"]) == 176 + assert len(hp_df) == 151 + assert len(hp_df[hp_df.sector == "individual_heating"]) == 150 assert np.isclose( - hp_df[hp_df.sector == "individual_heating"].p_set.sum(), 2.97388 + hp_df[hp_df.sector == "individual_heating"].p_set.sum(), 2.97316 ) assert len(hp_df[hp_df.sector == "district_heating"]) == 1 assert np.isclose( - hp_df[hp_df.sector == "district_heating"].p_set.sum(), 0.095348 + hp_df[hp_df.sector == "district_heating"].p_set.sum(), 0.095202 ) def test__grid_integration(self, caplog): @@ -109,7 +109,7 @@ def test__grid_integration(self, caplog): # check that smallest heat pump is integrated at same bus as building bus_hp_voltage_level_7 = hp_df[hp_df.p_set == 0.005].bus[0] assert ( - loads_df[loads_df.building_id == 446651].bus.values + loads_df[loads_df.building_id == 446963].bus.values == bus_hp_voltage_level_7 ).all() # check that medium heat pump cannot be integrated at same bus as building diff --git a/tests/io/test_storage_import.py b/tests/io/test_storage_import.py index b56dc245c..c7453fa8f 100644 --- a/tests/io/test_storage_import.py +++ b/tests/io/test_storage_import.py @@ -34,12 +34,12 @@ def test_oedb(self, caplog): self.edisgo, scenario="eGon2035", engine=pytest.engine ) storage_df = self.edisgo.topology.storage_units_df - assert len(integrated_storages) == 659 - assert len(storage_df) == 659 - assert np.isclose(storage_df.p_nom.sum(), 2.0144, atol=1e-3) - assert "2.01 MW of home batteries integrated." in caplog.text + assert len(integrated_storages) == 666 + assert len(storage_df) == 666 + assert np.isclose(storage_df.p_nom.sum(), 2.02723, atol=1e-3) + assert "2.03 MW of home batteries integrated." in caplog.text assert ( - "Of this 2.01 MW do not have a generator with the same building ID." + "Of this 2.03 MW do not have a generator with the same building ID." in caplog.text ) caplog.clear() @@ -56,10 +56,10 @@ def test_oedb(self, caplog): self.edisgo, scenario="eGon2035", engine=pytest.engine ) storage_df = self.edisgo.topology.storage_units_df - assert len(integrated_storages) == 659 - assert len(storage_df) == 659 - assert np.isclose(storage_df.p_nom.sum(), 2.0144, atol=1e-3) - assert "2.01 MW of home batteries integrated." in caplog.text + assert len(integrated_storages) == 666 + assert len(storage_df) == 666 + assert np.isclose(storage_df.p_nom.sum(), 2.02723, atol=1e-3) + assert "2.03 MW of home batteries integrated." in caplog.text assert "do not have a generator with the same building ID." not in caplog.text def test__grid_integration(self, caplog): @@ -129,12 +129,12 @@ def test__grid_integration(self, caplog): pv_df = pd.DataFrame( data={ "bus": [ - "BranchTee_mvgd_33532_lvgd_1163940001_building_446651", - "BusBar_mvgd_33532_lvgd_1163850014_LV", + "BranchTee_mvgd_33535_lvgd_1164120011_building_442002", + "BusBar_mvgd_33535_lvgd_1164120011_LV", ], "p_nom": [0.005, 0.15], "type": ["solar", "solar"], - "building_id": [446651, 445710], + "building_id": [442002, 445710], }, index=[1, 2], ) @@ -156,7 +156,7 @@ def test__grid_integration(self, caplog): ).all() # check that medium storage is integrated at same bus as PV system bus_bat_voltage_level_6 = storage_df[storage_df.p_nom == 0.15].bus[0] - assert "BusBar_mvgd_33532_lvgd_1163850014_LV" == bus_bat_voltage_level_6 + assert "BusBar_mvgd_33535_lvgd_1164120011_LV" == bus_bat_voltage_level_6 # check that largest storage can be connected to building because the building # is already connected to the MV bus_bat_voltage_level_5 = storage_df[storage_df.p_nom == 2.0].bus[0] diff --git a/tests/io/test_timeseries_import.py b/tests/io/test_timeseries_import.py index 0a16ca82f..133b0db6c 100644 --- a/tests/io/test_timeseries_import.py +++ b/tests/io/test_timeseries_import.py @@ -115,7 +115,7 @@ def setup_egon_heat_pump_data(self): "Heat_Pump_LVGrid_1163850014_district_heating_6", "HP_448156", ] - building_ids = [431821, None, 448156] + building_ids = [431821, None, 430859] sector = ["individual_heating", "district_heating", "individual_heating"] weather_cell_ids = [11051, 11051, 11052] district_heating_ids = [None, 5, None] @@ -173,9 +173,9 @@ def test_electricity_demand_oedb(self, caplog): "eGon2035", pytest.engine, load_names=[ - "Load_mvgd_33532_1_industrial", - "Load_mvgd_33532_lvgd_1140900000_1_residential", - "Load_mvgd_33532_lvgd_1163850001_47_cts", + "Load_mvgd_33535_1_industrial", + "Load_mvgd_33535_lvgd_1141170000_1_residential", + "Load_mvgd_33535_lvgd_1164120005_60_cts", ], ) assert df.shape == (8760, 3) @@ -189,7 +189,7 @@ def test_electricity_demand_oedb(self, caplog): edisgo_object, "eGon2035", pytest.engine, - load_names=["Load_mvgd_33532_1_industrial"], + load_names=["Load_mvgd_33535_1_industrial"], timeindex=pd.date_range("1/1/2011", periods=4, freq="H"), ) assert df.shape == (4, 1) @@ -204,7 +204,7 @@ def test_electricity_demand_oedb(self, caplog): timeindex=pd.date_range("1/1/2020", periods=4, freq="H"), ) assert "A leap year was given." in caplog.text - assert df.shape == (8760, 2463) + assert df.shape == (8760, 2472) assert df.index[0].year == 2045 # ToDo add further tests to check values @@ -212,7 +212,7 @@ def test_electricity_demand_oedb(self, caplog): @pytest.mark.local def test_get_residential_heat_profiles_per_building(self): df = timeseries_import.get_residential_heat_profiles_per_building( - [442081, 448156], "eGon2035", pytest.engine + [442081, 430859], "eGon2035", pytest.engine ) assert df.shape == (8760, 2) # ToDo add further tests @@ -227,12 +227,13 @@ def test_get_district_heating_heat_demand_profiles(self): @pytest.mark.local def test_get_cts_profiles_per_building(self): + df = timeseries_import.get_cts_profiles_per_building( - 33532, "eGon2035", "heat", pytest.engine + 33535, "eGon2035", "heat", pytest.engine ) assert df.shape == (8760, 85) df = timeseries_import.get_cts_profiles_per_building( - 33532, "eGon2035", "electricity", pytest.engine + 33535, "eGon2035", "electricity", pytest.engine ) assert df.shape == (8760, 85) # ToDo add further tests @@ -243,7 +244,7 @@ def test_get_residential_electricity_profiles_per_building(self): [-1, 442081], "eGon2035", pytest.engine ) assert df.shape == (8760, 1) - assert np.isclose(df.loc[:, 442081].sum(), 7.799, atol=1e-3) + assert np.isclose(df.loc[:, 442081].sum(), 3.20688, atol=1e-3) @pytest.mark.local def test_get_industrial_electricity_profiles_per_site(self): diff --git a/tests/network/test_heat.py b/tests/network/test_heat.py index b931c17af..6cc451802 100644 --- a/tests/network/test_heat.py +++ b/tests/network/test_heat.py @@ -43,7 +43,7 @@ def setup_egon_heat_pump_data(self): "Heat_Pump_LVGrid_1163850014_district_heating_6", "HP_448156", ] - building_ids = [442081, None, 448156] + building_ids = [442081, None, 430859] sector = ["individual_heating", "district_heating", "individual_heating"] weather_cell_ids = [11051, 11051, 11052] district_heating_ids = [None, 5, None] diff --git a/tests/network/test_timeseries.py b/tests/network/test_timeseries.py index 471b08318..e785c388f 100644 --- a/tests/network/test_timeseries.py +++ b/tests/network/test_timeseries.py @@ -1442,18 +1442,18 @@ def test_predefined_fluctuating_generators_by_technology_oedb(self): # fmt: on # check values - comp = ( - "Generator_mvgd_33532_lvgd_1203710000_pv_rooftop_142" # solar, w_id = 11052 - ) - p_nom = 0.0033 + # solar, w_id = 11052 + comp = "Generator_mvgd_33535_lvgd_1204030000_pv_rooftop_337" + p_nom = 0.00441 exp = pd.Series( data=[0.548044 * p_nom, 0.568356 * p_nom], name=comp, index=timeindex, ) assert_series_equal(p_ts.loc[:, comp], exp, check_dtype=False, atol=1e-5) - comp = "Generator_mvgd_33532_pv_rooftop_160" # solar, w_id = 11051 - p_nom = 0.08 + # solar, w_id = 11051 + comp = "Generator_mvgd_33535_lvgd_1164120002_pv_rooftop_324" + p_nom = 0.0033 exp = pd.Series( data=[0.505049 * p_nom, 0.555396 * p_nom], name=comp, diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 6dd0a13af..4c5ee592f 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -265,14 +265,15 @@ def test_set_time_series_active_power_predefined_oedb(self): ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False ) edisgo_object.set_timeindex(pd.date_range("1/1/2011", periods=8760, freq="H")) - edisgo_object.set_time_series_active_power_predefined( conventional_loads_ts="oedb", fluctuating_generators_ts="oedb", scenario="eGon2035", engine=pytest.engine, timeindex=pd.date_range("1/1/2011 12:00", periods=2, freq="H"), - conventional_loads_names=["Load_mvgd_33532_lvgd_1163850002_9_residential"], + conventional_loads_names=[ + "Load_mvgd_33535_lvgd_1164210000_244_residential" + ], ) assert edisgo_object.timeseries.loads_active_power.dropna().shape == ( @@ -1209,7 +1210,7 @@ def test_import_electromobility_oedb(self): data_source="oedb", scenario="eGon2035", engine=pytest.engine ) - assert len(self.edisgo.electromobility.charging_processes_df) == 323507 + assert len(self.edisgo.electromobility.charging_processes_df) == 324117 assert self.edisgo.electromobility.eta_charging_points == 0.9 total_charging_demand_at_charging_parks = sum( @@ -1276,10 +1277,10 @@ def test_import_heat_pumps(self): loads_df = edisgo_object.topology.loads_df hp_df = loads_df[loads_df.type == "heat_pump"] - assert len(hp_df) == 177 - assert edisgo_object.heat_pump.heat_demand_df.shape == (8760, 177) + assert len(hp_df) == 151 + assert edisgo_object.heat_pump.heat_demand_df.shape == (8760, 151) assert edisgo_object.heat_pump.heat_demand_df.index[0].year == 2035 - assert edisgo_object.heat_pump.cop_df.shape == (8760, 177) + assert edisgo_object.heat_pump.cop_df.shape == (8760, 151) assert edisgo_object.heat_pump.cop_df.index[0].year == 2035 def test_apply_charging_strategy(self): From 7fbe0eb01c521506b19cc47421eee7d660abebbc Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 30 Mar 2023 22:41:18 +0200 Subject: [PATCH 167/355] Change test grid --- .../Ding0_20230206180147.meta | 63 - tests/data/ding0_test_network_3/buses.csv | 8847 +++++++++-------- .../data/ding0_test_network_3/generators.csv | 803 +- tests/data/ding0_test_network_3/lines.csv | 8604 ++++++++-------- tests/data/ding0_test_network_3/loads.csv | 4935 ++++----- tests/data/ding0_test_network_3/network.csv | 2 +- tests/data/ding0_test_network_3/switches.csv | 6 +- .../ding0_test_network_3/transformers.csv | 248 +- .../transformers_hvmv.csv | 4 +- 9 files changed, 11742 insertions(+), 11770 deletions(-) delete mode 100644 tests/data/ding0_test_network_3/Ding0_20230206180147.meta diff --git a/tests/data/ding0_test_network_3/Ding0_20230206180147.meta b/tests/data/ding0_test_network_3/Ding0_20230206180147.meta deleted file mode 100644 index 58e5eb8f0..000000000 --- a/tests/data/ding0_test_network_3/Ding0_20230206180147.meta +++ /dev/null @@ -1,63 +0,0 @@ -{ - "version": "721823d\n", - "mv_grid_districts": [ - 33532 - ], - "database_tables": "unknown", - "data_version": "unknown", - "assumptions": { - "load_density_threshold": "1", - "voltage_per_km_threshold": "15", - "load_factor_mv_trans_lc_normal": "0.6", - "load_factor_mv_line_lc_normal": "0.6", - "load_factor_mv_cable_lc_normal": "0.6", - "load_factor_mv_trans_lc_malfunc": "1.0", - "load_factor_mv_line_lc_malfunc": "1.0", - "load_factor_mv_cable_lc_malfunc": "1.0", - "load_factor_mv_trans_fc_normal": "1.0", - "load_factor_mv_line_fc_normal": "1.0", - "load_factor_mv_cable_fc_normal": "1.0", - "load_factor_lv_trans_lc_normal": "1.0", - "load_factor_lv_cable_lc_normal": "1.0", - "load_factor_lv_trans_fc_normal": "1.0", - "load_factor_lv_cable_fc_normal": "1.0", - "cos_phi_load": "0.97", - "cos_phi_load_mode": "inductive", - "cos_phi_gen": "1", - "cos_phi_gen_mode": "capacitive", - "frequency": "50", - "lv_nominal_voltage": "400", - "apartment_house_branch_ratio": "1.5", - "population_per_apartment": "2.3", - "branch_line_length_retail_industrial": "400", - "branch_line_length_agricultural": "800", - "max_lv_branch_line": "290", - "lv_ria_branch_connection_distance": "30", - "branch_detour_factor": "1.3", - "load_in_generation_case": "0", - "generation_in_load_case": "0", - "lv_max_v_level_lc_diff_normal": "0.05", - "lv_max_v_level_fc_diff_normal": "0.03", - "load_area_sat_load_threshold": "100", - "load_area_sat_string_load_threshold": "1000", - "load_area_sat_conn_dist_weight": "1", - "load_area_sat_string_length_threshold": "2000", - "load_area_sat_conn_dist_ring_mod": "100", - "load_area_stat_conn_dist_ring_mod": "300", - "load_area_sat_buffer_radius": "2000", - "load_area_sat_buffer_radius_inc": "1000", - "generator_buffer_radius": "2000", - "generator_buffer_radius_inc": "1000", - "operator_diff_round_digits": "3", - "conn_diff_tolerance": "0.0001", - "load_area_threshold": "1", - "load_area_count_per_ring": "20", - "max_half_ring_length": "28", - "mv_half_ring_count_max": "8", - "mv_station_v_level_operation": "1.0", - "mv_max_v_level_lc_diff_normal": "0.05", - "mv_max_v_level_fc_diff_normal": "0.02", - "mv_max_v_level_lc_diff_malfunc": "0.10" - }, - "run_id": "20230206180147" -} diff --git a/tests/data/ding0_test_network_3/buses.csv b/tests/data/ding0_test_network_3/buses.csv index 75cd727f8..7dcd6fac7 100644 --- a/tests/data/ding0_test_network_3/buses.csv +++ b/tests/data/ding0_test_network_3/buses.csv @@ -1,4417 +1,4432 @@ name,x,y,mv_grid_id,lv_grid_id,v_nom,in_building -Busbar_mvgd_33532_MV,10.024504210738641,47.57320970148501,33532,,20,False -BusBar_mvgd_33532_lvgd_1172410000_MV,10.036098400000006,47.5479147962434,33532,,20,False -BusBar_mvgd_33532_lvgd_1157460000_MV,9.992677799999997,47.540107096242714,33532,,20,False -BusBar_mvgd_33532_lvgd_1159590000_MV,10.097126999999995,47.45210599623459,33532,,20,False -BusBar_mvgd_33532_lvgd_1163910000_MV,10.017450000000006,47.57254519624557,33532,,20,False -BusBar_mvgd_33532_lvgd_1164000000_MV,10.058768199999996,47.56576709624502,33532,,20,False -BusBar_mvgd_33532_lvgd_1164650000_MV,10.006545348901419,47.511165158297686,33532,,20,False -BusBar_mvgd_33532_lvgd_1166160000_MV,10.007437925988821,47.52293178918052,33532,,20,False -BusBar_mvgd_33532_lvgd_1170260000_MV,10.023249199999997,47.5739876962457,33532,,20,False -BusBar_mvgd_33532_lvgd_1172500000_MV,10.032533199999994,47.5201094962409,33532,,20,False -BusBar_mvgd_33532_lvgd_1175770000_MV,10.041373199999999,47.5492303962435,33532,,20,False -BusBar_mvgd_33532_lvgd_1176170000_MV,10.040137799999998,47.53328529624212,33532,,20,False -BusBar_mvgd_33532_lvgd_1176270000_MV,10.042503699999997,47.537140996242435,33532,,20,False -BusBar_mvgd_33532_lvgd_1196020000_MV,10.112035199999998,47.46599449623593,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850000_MV,10.008394199999996,47.56682179624508,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850001_MV,10.019700400000003,47.545350696243155,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850002_MV,10.021668099999998,47.54834369624342,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850003_MV,10.026685600000002,47.558041696244295,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850004_MV,10.019570500000002,47.562715596244686,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850005_MV,10.016442899999998,47.560134796244476,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850006_MV,10.018605699999998,47.55718989624418,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850007_MV,10.025241599999998,47.55475769624405,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850008_MV,10.015132399999995,47.54207139624289,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850009_MV,10.021708699999998,47.5685909962452,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850010_MV,10.017486399999996,47.55270169624386,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850011_MV,10.022112600000002,47.55381729624391,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850012_MV,10.021014800000001,47.55935469624443,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850013_MV,10.011309700000002,47.550727096243655,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850014_MV,10.0220596,47.554534796243956,33532,,20,False -BusBar_mvgd_33532_lvgd_1163850015_MV,10.016221000000002,47.56496159624492,33532,,20,False -BusBar_mvgd_33532_lvgd_1152120000_MV,9.979701499999996,47.52925419624172,33532,,20,False -BusBar_mvgd_33532_lvgd_1166640000_MV,10.003053600000003,47.527566196241544,33532,,20,False -BusBar_mvgd_33532_lvgd_1166650000_MV,10.0078172,47.529730996241796,33532,,20,False -BusBar_mvgd_33532_lvgd_1176040000_MV,10.0458033,47.51696909624063,33532,,20,False -BusBar_mvgd_33532_lvgd_1184830000_MV,10.066793690589224,47.496823412565696,33532,,20,False -BusBar_mvgd_33532_lvgd_1191970000_MV,10.106713927889984,47.47333964308403,33532,,20,False -BusBar_mvgd_33532_lvgd_1201300000_MV,10.123861900000003,47.56404329624482,33532,,20,False -BusBar_mvgd_33532_lvgd_1202400000_MV,10.1247248,47.55791649624429,33532,,20,False -BusBar_mvgd_33532_lvgd_1195590000_MV,10.102351329541532,47.46034674424677,33532,,20,False -BusBar_mvgd_33532_lvgd_1140900000_MV,10.040278153522014,47.497236243470454,33532,,20,False -BusBar_mvgd_33532_lvgd_1151850000_MV,9.999182900000005,47.55977909624444,33532,,20,False -BusBar_mvgd_33532_lvgd_1168630000_MV,10.015019600000004,47.51566519624052,33532,,20,False -BusBar_mvgd_33532_lvgd_1172090000_MV,10.010766399999996,47.52779689624157,33532,,20,False -BusBar_mvgd_33532_lvgd_1195310000_MV,10.103981500000007,47.465726496235916,33532,,20,False -BusBar_mvgd_33532_lvgd_1150350000_MV,9.971241399999998,47.521178496241035,33532,,20,False -BusBar_mvgd_33532_lvgd_1151750000_MV,9.973807199999998,47.558039296244296,33532,,20,False -BusBar_mvgd_33532_lvgd_1151760000_MV,9.989380199999992,47.560353496244474,33532,,20,False -BusBar_mvgd_33532_lvgd_1151810000_MV,9.987070699999995,47.55740889624422,33532,,20,False -BusBar_mvgd_33532_lvgd_1152100000_MV,9.974850300000005,47.53157609624192,33532,,20,False -BusBar_mvgd_33532_lvgd_1152110000_MV,9.9758199,47.526846996241524,33532,,20,False -BusBar_mvgd_33532_lvgd_1154980000_MV,9.978123299999996,47.53443409624222,33532,,20,False -BusBar_mvgd_33532_lvgd_1154990000_MV,9.981248,47.53591809624236,33532,,20,False -BusBar_mvgd_33532_lvgd_1156160000_MV,9.981484300000004,47.51426929624038,33532,,20,False -BusBar_mvgd_33532_lvgd_1156170000_MV,9.989299899999995,47.51335609624034,33532,,20,False -BusBar_mvgd_33532_lvgd_1156980000_MV,9.984748999999997,47.54320689624296,33532,,20,False -BusBar_mvgd_33532_lvgd_1163880000_MV,10.009866,47.54102169624281,33532,,20,False -BusBar_mvgd_33532_lvgd_1163890000_MV,10.0977125,47.55219599624379,33532,,20,False -BusBar_mvgd_33532_lvgd_1165560000_MV,10.008001799999994,47.57208949624548,33532,,20,False -BusBar_mvgd_33532_lvgd_1166370000_MV,10.010055050033241,47.51512089628523,33532,,20,False -BusBar_mvgd_33532_lvgd_1167330000_MV,10.010591400000001,47.50410939623945,33532,,20,False -BusBar_mvgd_33532_lvgd_1169820000_MV,10.0221088,47.57779949624604,33532,,20,False -BusBar_mvgd_33532_lvgd_1170760000_MV,10.023486400000003,47.5814837962464,33532,,20,False -BusBar_mvgd_33532_lvgd_1172140000_MV,10.045975599999997,47.52399479624128,33532,,20,False -BusBar_mvgd_33532_lvgd_1172450000_MV,10.029131799999996,47.52199289624106,33532,,20,False -BusBar_mvgd_33532_lvgd_1161030000_MV,9.993239667455976,47.49863028859219,33532,,20,False -BusBar_mvgd_33532_lvgd_1159020000_MV,10.117484600000001,47.55610829624415,33532,,20,False -BusBar_mvgd_33532_lvgd_1150770000_MV,9.967887399999995,47.531961196242015,33532,,20,False -BusBar_mvgd_33532_lvgd_1151790000_MV,9.983414348584231,47.55941549729083,33532,,20,False -BusBar_mvgd_33532_lvgd_1151840000_MV,9.999614600000003,47.56205479624466,33532,,20,False -BusBar_mvgd_33532_lvgd_1152930000_MV,9.973786725536701,47.547339920043285,33532,,20,False -BusBar_mvgd_33532_lvgd_1163050000_MV,10.001415599999998,47.53653109624242,33532,,20,False -BusBar_mvgd_33532_lvgd_1163900000_MV,10.013885199999995,47.53775869624249,33532,,20,False -BusBar_mvgd_33532_lvgd_1163930000_MV,10.0346109,47.54144229624284,33532,,20,False -BusBar_mvgd_33532_lvgd_1165580000_MV,10.00487026241384,47.50392359944945,33532,,20,False -BusBar_mvgd_33532_lvgd_1167770000_MV,10.011235800007439,47.5333865462718,33532,,20,False -Bus_mvgd_33532_mvload_1,10.031116705906797,47.54853468799076,33532,,20,False -BusBar_mvgd_33532_lvgd_1173000000_MV,10.032806700000002,47.54786329624343,33532,,20,False -BusBar_mvgd_33532_lvgd_1176030000_MV,10.0433253,47.51941649624082,33532,,20,False -BusBar_mvgd_33532_lvgd_1186310000_MV,10.076023899999992,47.55100299624363,33532,,20,False -BusBar_mvgd_33532_lvgd_1197330000_MV,10.118035699999993,47.462886696235664,33532,,20,False -BusBar_mvgd_33532_lvgd_1199280000_MV,10.115115900000001,47.54484219624309,33532,,20,False -BusBar_mvgd_33532_lvgd_1197240000_MV,10.111815571053565,47.56507186743076,33532,,20,False -BusBar_mvgd_33532_lvgd_1184350000_MV,10.065379699999998,47.50929659623996,33532,,20,False -BusBar_mvgd_33532_lvgd_1200480000_MV,10.122408699950109,47.458826896343886,33532,,20,False -BusBar_mvgd_33532_lvgd_1150360000_MV,9.974468499999997,47.518003496240745,33532,,20,False -BusBar_mvgd_33532_lvgd_1151720000_MV,9.970474700000002,47.555076396244026,33532,,20,False -BusBar_mvgd_33532_lvgd_1151730000_MV,9.971264899999996,47.56023109624446,33532,,20,False -BusBar_mvgd_33532_lvgd_1151770000_MV,9.977461599999993,47.554935496244006,33532,,20,False -BusBar_mvgd_33532_lvgd_1151780000_MV,9.981826099999992,47.56037039624449,33532,,20,False -BusBar_mvgd_33532_lvgd_1151860000_MV,10.002536000000003,47.56556059624496,33532,,20,False -BusBar_mvgd_33532_lvgd_1157450000_MV,9.991805300000005,47.53730969624246,33532,,20,False -BusBar_mvgd_33532_lvgd_1159620000_MV,9.993023599999997,47.552695996243806,33532,,20,False -BusBar_mvgd_33532_lvgd_1160560000_MV,10.000569899999999,47.52387799624125,33532,,20,False -BusBar_mvgd_33532_lvgd_1161660000_MV,9.983944199999996,47.54876209624351,33532,,20,False -BusBar_mvgd_33532_lvgd_1161700000_MV,9.993773700000006,47.54763269624337,33532,,20,False -BusBar_mvgd_33532_lvgd_1163060000_MV,10.003165199999996,47.54635979624327,33532,,20,False -BusBar_mvgd_33532_lvgd_1163090000_MV,10.003636499999997,47.54303869624298,33532,,20,False -BusBar_mvgd_33532_lvgd_1163860000_MV,10.0088695,47.54693799624336,33532,,20,False -BusBar_mvgd_33532_lvgd_1163980000_MV,10.0513544,47.56223849624466,33532,,20,False -BusBar_mvgd_33532_lvgd_1172130000_MV,10.040297599999995,47.522345496241094,33532,,20,False -BusBar_mvgd_33532_lvgd_1181890000_MV,10.0559142,47.551425396243694,33532,,20,False -BusBar_mvgd_33532_lvgd_1182040000_MV,10.061142999999996,47.5509362962437,33532,,20,False -BusBar_mvgd_33532_lvgd_1185800000_MV,10.0781729,47.4601707962354,33532,,20,False -BusBar_mvgd_33532_lvgd_1185810000_MV,10.093199999999996,47.46412419623574,33532,,20,False -BusBar_mvgd_33532_lvgd_1193200000_MV,10.096039900000005,47.44450929623392,33532,,20,False -BusBar_mvgd_33532_lvgd_1198480000_MV,10.11213156404492,47.45379599917682,33532,,20,False -BusBar_mvgd_33532_lvgd_1198880000_MV,10.114194200000002,47.56238169624468,33532,,20,False -BusBar_mvgd_33532_lvgd_1200510000_MV,10.127972999999997,47.45895099623527,33532,,20,False -BusBar_mvgd_33532_lvgd_1203710000_MV,10.130638155610297,47.53085837400748,33532,,20,False -BusBar_mvgd_33532_lvgd_1205070000_MV,10.134432452294615,47.413320640977645,33532,,20,False -BusBar_mvgd_33532_lvgd_1172110000_MV,10.032254799999993,47.52462569624129,33532,,20,False -BusBar_mvgd_33532_lvgd_1172110001_MV,10.024231499999999,47.53182689624196,33532,,20,False -BusBar_mvgd_33532_lvgd_1172110002_MV,10.024302799999996,47.52916379624174,33532,,20,False -BusBar_mvgd_33532_lvgd_1163940000_MV,10.088636700000006,47.55721959624428,33532,,20,False -BusBar_mvgd_33532_lvgd_1163940001_MV,10.073738500000001,47.55512509624403,33532,,20,False -BusBar_mvgd_33532_lvgd_1163940002_MV,10.045738800000006,47.55576749624408,33532,,20,False -BusBar_mvgd_33532_lvgd_1163940003_MV,10.108337700000003,47.55674169624417,33532,,20,False -BusBar_mvgd_33532_lvgd_1163940004_MV,10.0359923,47.56432909624486,33532,,20,False -BusBar_mvgd_33532_lvgd_1163940005_MV,10.0598717,47.555341996244074,33532,,20,False -BusBar_mvgd_33532_lvgd_1200490000_MV,10.124696899999998,47.46087769623543,33532,,20,False -BusBar_mvgd_33532_lvgd_1156290000_MV,9.9865232,47.54548489624321,33532,,20,False -Bus_mvgd_33532_gen_160,10.020087376466256,47.55435508665868,33532,,20,False -Bus_mvgd_33532_gen_392,10.030784999999998,47.548558996200754,33532,,20,False -Bus_mvgd_33532_gen_393,9.968600000000004,47.52846999619443,33532,,20,False -Bus_mvgd_33532_gen_394,9.968600000000004,47.52846999619443,33532,,20,False -Bus_mvgd_33532_gen_395,9.974219999999999,47.530562996195115,33532,,20,False -Bus_mvgd_33532_gen_396,9.974219999999999,47.530562996195115,33532,,20,False -Bus_mvgd_33532_gen_397,9.974219999999999,47.530562996195115,33532,,20,False -BranchTee_mvgd_33532_1,10.021999200000003,47.55448659624401,33532,,20,False -BranchTee_mvgd_33532_2,10.048219013447918,47.49998981068342,33532,,20,False -BranchTee_mvgd_33532_3,9.97293349523393,47.521518532583286,33532,,20,False -BranchTee_mvgd_33532_4,9.98626414895975,47.54308805548839,33532,,20,False -BranchTee_mvgd_33532_5,9.996294213899032,47.553857279122525,33532,,20,False -BranchTee_mvgd_33532_6,9.98741872382493,47.555508531329956,33532,,20,False -BranchTee_mvgd_33532_7,10.003971291519571,47.564255255361005,33532,,20,False -BranchTee_mvgd_33532_8,9.971478841193234,47.53413638703258,33532,,20,False -BranchTee_mvgd_33532_9,9.969748552299011,47.52597839431304,33532,,20,False -BranchTee_mvgd_33532_10,9.97761393434411,47.549656821675576,33532,,20,False -BranchTee_mvgd_33532_11,9.975393653890615,47.53650708528937,33532,,20,False -BranchTee_mvgd_33532_12,9.984705724901088,47.52388337901873,33532,,20,False -BranchTee_mvgd_33532_13,9.988164556270467,47.54423827196185,33532,,20,False -BranchTee_mvgd_33532_14,9.985114412963808,47.542392139613284,33532,,20,False -BranchTee_mvgd_33532_15,9.990142682681796,47.53857276445044,33532,,20,False -BranchTee_mvgd_33532_16,10.090655150847624,47.46345487403672,33532,,20,False -BranchTee_mvgd_33532_17,9.993690037971223,47.5543418623081,33532,,20,False -BranchTee_mvgd_33532_18,9.999290480345204,47.526811151049166,33532,,20,False -BranchTee_mvgd_33532_19,9.98052636625868,47.54702430740754,33532,,20,False -BranchTee_mvgd_33532_20,9.993952627550263,47.54807462214073,33532,,20,False -BranchTee_mvgd_33532_21,10.098102429617397,47.55685579576007,33532,,20,False -BranchTee_mvgd_33532_22,10.024270358284765,47.537727672646795,33532,,20,False -BranchTee_mvgd_33532_23,10.018499493467326,47.57159047025898,33532,,20,False -BranchTee_mvgd_33532_24,10.037517756901362,47.53593186012843,33532,,20,False -BranchTee_mvgd_33532_25,10.053401567907299,47.56601064602132,33532,,20,False -BranchTee_mvgd_33532_26,10.05824489409215,47.564803105280845,33532,,20,False -BranchTee_mvgd_33532_27,10.012101513617639,47.56836066096543,33532,,20,False -BranchTee_mvgd_33532_28,10.00166124438563,47.52169942153373,33532,,20,False -BranchTee_mvgd_33532_29,10.00828881374074,47.52883784440469,33532,,20,False -BranchTee_mvgd_33532_30,10.013029541383371,47.52998910924647,33532,,20,False -BranchTee_mvgd_33532_31,10.031979783462308,47.52154800983165,33532,,20,False -BranchTee_mvgd_33532_32,10.00999768548903,47.52925286610238,33532,,20,False -BranchTee_mvgd_33532_33,10.0332262990709,47.51989394244498,33532,,20,False -BranchTee_mvgd_33532_34,10.043528913817605,47.55081457659302,33532,,20,False -BranchTee_mvgd_33532_35,10.029987726041217,47.52085725110507,33532,,20,False -BranchTee_mvgd_33532_36,10.04129336854133,47.522634768181014,33532,,20,False -BranchTee_mvgd_33532_37,10.038603153737306,47.53619510290661,33532,,20,False -BranchTee_mvgd_33532_38,10.061576982628472,47.54544659627017,33532,,20,False -BranchTee_mvgd_33532_39,10.057768751732024,47.54946753584907,33532,,20,False -BranchTee_mvgd_33532_40,10.075425097809415,47.5132160861878,33532,,20,False -BranchTee_mvgd_33532_41,10.053952996487785,47.492372806611236,33532,,20,False -BranchTee_mvgd_33532_42,10.108578607521961,47.474066900094186,33532,,20,False -BranchTee_mvgd_33532_43,10.10077133509001,47.46524953733862,33532,,20,False -BranchTee_mvgd_33532_44,10.111272439250325,47.4642535501185,33532,,20,False -BranchTee_mvgd_33532_45,10.116270736669351,47.46324344251759,33532,,20,False -BranchTee_mvgd_33532_46,10.12176727465316,47.45942243316103,33532,,20,False -BranchTee_mvgd_33532_47,9.982421329246263,47.5234245980793,33532,,20,False -BranchTee_mvgd_33532_48,9.995243215231273,47.52599892422051,33532,,20,False -BranchTee_mvgd_33532_49,10.037964404040062,47.51360559372951,33532,,20,False -BranchTee_mvgd_33532_50,10.08594259849519,47.462215219891746,33532,,20,False -BranchTee_mvgd_33532_51,10.019531,47.55962729624444,33532,,20,False -BranchTee_mvgd_33532_52,10.019428900000005,47.55544819624408,33532,,20,False -BranchTee_mvgd_33532_53,10.087345400000006,47.556173096244144,33532,,20,False -BranchTee_mvgd_33532_54,10.020615832570677,47.555004153344306,33532,,20,False -BranchTee_mvgd_33532_55,9.968957591647868,47.52852116688911,33532,,20,False -virtual_BusBar_mvgd_33532_lvgd_1166640000_MV,10.003053600000003,47.527566196241544,33532,,20,False -virtual_BusBar_mvgd_33532_lvgd_1163850014_MV,10.0220596,47.554534796243956,33532,,20,False -virtual_BusBar_mvgd_33532_lvgd_1172500000_MV,10.032533199999994,47.5201094962409,33532,,20,False -BusBar_mvgd_33532_lvgd_1140900000_LV,10.040278153522014,47.497236243470454,33532,1140900000,0.4,False -BranchTee_mvgd_33532_lvgd_1140900000_building_444312,10.040278153522014,47.497236243470454,33532,1140900000,0.4,False -BusBar_mvgd_33532_lvgd_1150350000_LV,9.971241399999998,47.521178496241035,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_1,9.970368399999998,47.52176829624105,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_2,9.9700453,47.52147799624105,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_3,9.970032099999992,47.521443596241035,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_4,9.970153799999997,47.521378296241025,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_5,9.970111800000002,47.52135499624101,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_6,9.9705515,47.52165729624105,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_7,9.970060800000004,47.52135999624103,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_8,9.970484899999994,47.52173719624108,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_9,9.970197099999998,47.521694296241066,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_10,9.9701191,47.52158709624102,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_11,9.970726900000006,47.52153459624104,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_12,9.970167699999996,47.52083969624097,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_13,9.970116699999997,47.52043349624094,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_14,9.969638099999996,47.52083089624099,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_15,9.970979500000006,47.521031696241025,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_16,9.9702251,47.520552296240965,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_17,9.966175400000003,47.522475496241135,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_18,9.970440599999996,47.52069379624093,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_19,9.9698889,47.520193796240925,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_20,9.969476899999997,47.52076109624099,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_21,9.969231100000004,47.51990179624089,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_22,9.969034600000004,47.519302696240864,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_23,9.969169400000004,47.519869096240896,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_24,9.970330900000002,47.520641096240986,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_25,9.968370899999993,47.51925669624083,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_26,9.9690068,47.519596496240865,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_27,9.970043899999999,47.520910096240975,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_28,9.969314900000002,47.52061479624092,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_29,9.972644400000007,47.52273409624117,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_30,9.9715393,47.521388696240976,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_31,9.972703999999997,47.522358096241106,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_32,9.9721154,47.5221472962411,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_33,9.972133999999999,47.522275896241084,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_34,9.972872400000005,47.52298649624117,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_35,9.972123100000001,47.52115509624101,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_36,9.972769799999993,47.52156239624104,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430946,9.96945788478577,47.519812768439344,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430947,9.969526785026844,47.51981468590157,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430948,9.968446691386937,47.51915813102904,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430951,9.969299600008748,47.52046839628749,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430954,9.969686615774135,47.52024223069566,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430957,9.969316424350993,47.5207012562331,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430963,9.969402204927395,47.52093175774248,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430964,9.969602932787037,47.5209755949577,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430965,9.970000750000093,47.521028346262604,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430971,9.969922899997226,47.52125269626275,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430972,9.970024999997237,47.521229146262776,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430980,9.969405329394204,47.51940535694565,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430984,9.970363378782027,47.5205305510549,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430988,9.969316630120437,47.51960032958994,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430998,9.970374755665164,47.520806667380725,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_430999,9.970321960479978,47.5208922272495,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431000,9.970659291858205,47.521012263243065,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431003,9.969748828706814,47.521439182524745,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431004,9.970874658412482,47.52124658961184,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431005,9.969851863164319,47.52167532184271,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431006,9.969956631145854,47.52164555182831,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431007,9.970127099997228,47.52120559626276,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431009,9.971325484498767,47.52105229024077,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431011,9.970463345258592,47.52131032820493,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431012,9.970032824574892,47.52184648178004,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431015,9.970411584182235,47.521545016159685,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431019,9.973605310739845,47.52221863666422,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431021,9.973964933813953,47.522116852602394,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431023,9.970716830739194,47.52168924923195,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431024,9.970576616851584,47.52187806015679,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431025,9.97082950097406,47.521596812909166,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431030,9.97014157289771,47.5220768492788,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431031,9.970283781796239,47.522062776046035,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431033,9.972199907476433,47.52137509046418,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431037,9.972733995263516,47.521369730383626,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431040,9.972677050000714,47.52189704626252,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431046,9.972400366521109,47.522141445189035,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431047,9.972314170254556,47.522295046094946,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431048,9.972274499928666,47.52278699645225,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431049,9.972375965610754,47.521162567064174,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431050,9.972622950001384,47.52295879631017,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431051,9.973001308378954,47.521509299325004,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431054,9.972663589805935,47.521317297625025,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431057,9.973674750650392,47.52199377987923,33532,1150350000,0.4,False -BranchTee_mvgd_33532_lvgd_1150350000_building_431062,9.966321040774659,47.522400584509825,33532,1150350000,0.4,False -BusBar_mvgd_33532_lvgd_1150360000_LV,9.974468499999997,47.518003496240745,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_1,9.975343899999995,47.516390496240604,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_2,9.975092200000002,47.516374196240555,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_3,9.975431899999998,47.51658609624061,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_4,9.9747575,47.51817289624075,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_5,9.974190100000001,47.517856196240714,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_6,9.973848599999997,47.517647596240664,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430960,9.974959055605071,47.51642175305497,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430962,9.97506979999651,47.51651394626477,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430966,9.975261255558733,47.516411361173326,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430978,9.974018753791352,47.517570249576,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430981,9.974139235318887,47.51769492546266,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430986,9.974037316412971,47.51789945823277,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430987,9.974172519941026,47.518170993666466,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430989,9.974036712012856,47.518192238436534,33532,1150360000,0.4,False -BranchTee_mvgd_33532_lvgd_1150360000_building_430995,9.974711564858971,47.5182289175519,33532,1150360000,0.4,False -BusBar_mvgd_33532_lvgd_1150770000_LV,9.967887399999995,47.531961196242015,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_1,9.968172099999999,47.53111149624189,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_2,9.967935300000006,47.53146399624196,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_3,9.967883199999996,47.53172459624193,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_4,9.967819599999995,47.531228096241946,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_5,9.967868000000005,47.53152739624198,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_6,9.9674814,47.53127339624194,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_7,9.969136200000003,47.53134629624191,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_8,9.9694669,47.53101839624197,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_9,9.968471900000004,47.53160539624194,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_10,9.968234499999998,47.531381896241946,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_11,9.969250599999993,47.53087749624188,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_12,9.968745299999995,47.53082809624187,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_13,9.968905899999992,47.53110669624188,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_14,9.968186500000003,47.53167819624195,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_15,9.969635099999998,47.531834396242,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_16,9.9688682,47.532334496242015,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_17,9.968238899999998,47.53308599624204,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_18,9.968977599999995,47.53210129624201,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_19,9.970588499999996,47.53310669624204,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_20,9.968393600000004,47.53213919624199,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_21,9.969276,47.53169279624196,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_22,9.968700699999996,47.53185809624194,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_23,9.968332600000002,47.53193499624201,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_24,9.969434299999996,47.53162759624197,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_25,9.968120000000003,47.53196259624197,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_26,9.969042699999994,47.53176569624193,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_27,9.968197099999998,47.53205729624198,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_28,9.967681199999998,47.53192879624198,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_29,9.967525700000003,47.53189169624198,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_30,9.966754999999997,47.531500396241945,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_31,9.967177699999999,47.531757196242,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_32,9.966637100000003,47.5311734962419,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_33,9.967353999999993,47.53183859624194,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431123,9.967097966867874,47.5319875470213,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431126,9.96803422088661,47.53136043313832,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431128,9.96769799999833,47.53161499626599,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431131,9.968538974215083,47.5308364583259,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431134,9.968158945982315,47.531270178649336,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431141,9.966952625727654,47.53114814128196,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431142,9.96809292867123,47.5316192200072,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431145,9.967297824584548,47.53120994028909,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431146,9.969051363075522,47.53092315843483,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431149,9.96837026859676,47.5315455414615,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431151,9.967473395001045,47.53170759145601,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431152,9.96691045485106,47.53140985830986,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431153,9.967770693323272,47.53188397622914,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431154,9.968026974350897,47.53184374187415,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431157,9.967228992226103,47.53143156944587,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431159,9.967415937475932,47.532157772926034,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431160,9.967077739269005,47.531837934913355,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431161,9.967536637354085,47.53206756446651,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431162,9.967673950001748,47.53211874625073,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431163,9.967641995683623,47.53115371209079,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431164,9.968147924885812,47.532199050723705,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431165,9.967981216800093,47.53108332103482,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431166,9.967587068484555,47.53143282573698,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431167,9.967873424415645,47.53214177183548,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431169,9.968136825648129,47.53184095062582,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431170,9.96824667435089,47.531838141874175,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431171,9.967660299998638,47.531524646244996,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431172,9.968215378913023,47.532285889695416,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431174,9.96845976519999,47.53179116786465,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431175,9.968917047895763,47.53170259654079,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431176,9.96849184999855,47.532063096250354,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431177,9.96901924999665,47.531677096251705,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431178,9.968566099997688,47.5317765462501,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431179,9.968672397998054,47.53176194674095,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431180,9.968600449998549,47.53205449625037,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431181,9.968901899999356,47.53187984624432,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431183,9.968709049998553,47.53204589625037,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431184,9.969139649997787,47.53200194625391,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431186,9.969350849997085,47.53196959625299,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431187,9.968900322889276,47.5320208537421,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431191,9.969029072314262,47.5320142912307,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431193,9.968907483578416,47.530997250554826,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431194,9.969322949977327,47.532222246254,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431198,9.969042056029325,47.53130802554309,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431202,9.969453705911235,47.53195294657583,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431203,9.969350150001029,47.531035396250786,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431215,9.969121452014623,47.53165154606759,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431223,9.969309799998548,47.531555646262355,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431233,9.968213396942975,47.53314171904983,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431234,9.968755582010095,47.53239404480004,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431240,9.968866100002545,47.5324509462524,33532,1150770000,0.4,False -BranchTee_mvgd_33532_lvgd_1150770000_building_431248,9.97043146509101,47.53315274513487,33532,1150770000,0.4,False -BusBar_mvgd_33532_lvgd_1151720000_LV,9.970474700000002,47.555076396244026,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_1,9.9698997,47.555253296244025,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_2,9.970052499999998,47.55510579624407,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_3,9.974103899999998,47.5553170962441,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_4,9.974526599999994,47.55544519624409,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_5,9.974790600000002,47.555677096244096,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_6,9.972842000000002,47.55327479624389,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_7,9.975711999999994,47.552076396243756,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_building_440559,9.97276086242304,47.5531387267972,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_building_440566,9.970171005991746,47.55520278184518,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_building_440570,9.969526569181335,47.5551082459133,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_building_440571,9.969892519824297,47.555401597659134,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_building_440576,9.974279633006514,47.55562372433434,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_building_440578,9.973994800000924,47.5557136462611,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_building_440586,9.974468449997959,47.555793196256914,33532,1151720000,0.4,False -BranchTee_mvgd_33532_lvgd_1151720000_building_441464,9.975760199933712,47.55193564632855,33532,1151720000,0.4,False -BusBar_mvgd_33532_lvgd_1151730000_LV,9.971264899999996,47.56023109624446,33532,1151730000,0.4,False -BranchTee_mvgd_33532_lvgd_1151730000_1,9.9712328,47.560503096244496,33532,1151730000,0.4,False -BranchTee_mvgd_33532_lvgd_1151730000_2,9.9714135,47.56046259624451,33532,1151730000,0.4,False -BranchTee_mvgd_33532_lvgd_1151730000_building_440617,9.971287992681908,47.560659733137925,33532,1151730000,0.4,False -BranchTee_mvgd_33532_lvgd_1151730000_building_440633,9.971480799988445,47.56019839642991,33532,1151730000,0.4,False -BusBar_mvgd_33532_lvgd_1151750000_LV,9.973807199999998,47.558039296244296,33532,1151750000,0.4,False -BranchTee_mvgd_33532_lvgd_1151750000_1,9.973897899999997,47.5577924962443,33532,1151750000,0.4,False -BranchTee_mvgd_33532_lvgd_1151750000_2,9.9737012,47.5580632962443,33532,1151750000,0.4,False -BranchTee_mvgd_33532_lvgd_1151750000_building_440588,9.973622192247024,47.55781365571831,33532,1151750000,0.4,False -BranchTee_mvgd_33532_lvgd_1151750000_building_440589,9.973924862097702,47.55795817728148,33532,1151750000,0.4,False -BusBar_mvgd_33532_lvgd_1151760000_LV,9.989380199999992,47.560353496244474,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_1,9.9922931,47.56021969624447,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_2,9.992245000000004,47.56009639624448,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_3,9.990034999999995,47.56062809624451,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_4,9.988698700000002,47.560161696244435,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_5,9.987921000000002,47.5599447962445,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_6,9.989096600000005,47.56026619624452,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441541,9.988068271631763,47.56011701980426,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441548,9.992145300000516,47.56021139627173,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441553,9.988706850001353,47.56030009627902,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441554,9.988901805538479,47.56046001580582,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441555,9.98910625001029,47.56044804629181,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441563,9.989594340243578,47.56011326486522,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441565,9.989414957579628,47.56027811192803,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441571,9.989333628227945,47.56047854182649,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441574,9.990043475906273,47.560483859192345,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441575,9.990282639690891,47.56038782041818,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441579,9.992055199997786,47.55998504625918,33532,1151760000,0.4,False -BranchTee_mvgd_33532_lvgd_1151760000_building_441580,9.992382700017579,47.55996639639962,33532,1151760000,0.4,False -BusBar_mvgd_33532_lvgd_1151770000_LV,9.977461599999993,47.554935496244006,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_1,9.983624600000004,47.5554595962441,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_2,9.979104599999998,47.55418549624398,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_3,9.980112500000004,47.554236396243994,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_4,9.978643899999991,47.554833596243974,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_5,9.978914599999992,47.5539717962439,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_6,9.978370000000005,47.556368196244144,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_7,9.980228,47.556306596244156,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_8,9.9801671,47.556567296244175,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_9,9.980030799999998,47.55652619624414,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441475,9.978760414355126,47.55404371097065,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441477,9.977471100047387,47.555203796329856,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441479,9.978269121639828,47.55641544928095,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441480,9.978679500001622,47.55636084626644,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441482,9.978480000018394,47.55654944628444,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441487,9.9800136990266,47.55456961098127,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441488,9.983602266995787,47.55536414654065,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441491,9.980219950021066,47.55619279629493,33532,1151770000,0.4,False -BranchTee_mvgd_33532_lvgd_1151770000_building_441492,9.980323200007128,47.55654054627721,33532,1151770000,0.4,False -BusBar_mvgd_33532_lvgd_1151780000_LV,9.981826099999992,47.56037039624449,33532,1151780000,0.4,False -BranchTee_mvgd_33532_lvgd_1151780000_1,9.982011100000003,47.56034499624447,33532,1151780000,0.4,False -BranchTee_mvgd_33532_lvgd_1151780000_building_441533,9.981796550036085,47.56050304630558,33532,1151780000,0.4,False -BranchTee_mvgd_33532_lvgd_1151780000_building_441534,9.982267234780464,47.5606771186253,33532,1151780000,0.4,False -BusBar_mvgd_33532_lvgd_1151790000_LV,9.983414348584231,47.55941549729083,33532,1151790000,0.4,False -BranchTee_mvgd_33532_lvgd_1151790000_1,9.983987399999998,47.559098896244386,33532,1151790000,0.4,False -BranchTee_mvgd_33532_lvgd_1151790000_2,9.983791100000003,47.55904889624434,33532,1151790000,0.4,False -BranchTee_mvgd_33532_lvgd_1151790000_building_441505,9.983584442312688,47.558884795192974,33532,1151790000,0.4,False -BranchTee_mvgd_33532_lvgd_1151790000_building_441512,9.983261614786128,47.55922791272588,33532,1151790000,0.4,False -BusBar_mvgd_33532_lvgd_1151810000_LV,9.987070699999995,47.55740889624422,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_1,9.985985500000005,47.55745089624427,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_2,9.986713500000004,47.55734869624425,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_3,9.987762899999996,47.558001296244306,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_4,9.987867299999996,47.55812329624427,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_building_441490,9.986536717710752,47.557418297658174,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_building_441508,9.987129289878807,47.55732726144942,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_building_441510,9.986763300003824,47.557498246292,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_building_441515,9.98763274999741,47.558110096300325,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_building_441516,9.987761499997418,47.5582163463003,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_building_441518,9.987656576951464,47.55838136460951,33532,1151810000,0.4,False -BranchTee_mvgd_33532_lvgd_1151810000_building_441536,9.985797502147632,47.55750194227753,33532,1151810000,0.4,False -BusBar_mvgd_33532_lvgd_1151840000_LV,9.999614600000003,47.56205479624466,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_1,9.999499099999996,47.56238199624468,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_2,9.998107599999997,47.56381869624477,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_3,9.995790499999995,47.56143549624464,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_4,9.993233700000001,47.56281289624474,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_5,9.996817999999992,47.56285999624469,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_6,9.993293500000002,47.563090596244734,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_7,9.996958999999999,47.562296096244644,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_8,9.996169599999998,47.56210909624463,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_9,9.995943700000005,47.56201939624465,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_10,9.992800447957102,47.56256919711868,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_11,9.999171999999994,47.561228296244565,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_12,9.999586899999995,47.56179499624465,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_13,9.999614399999999,47.56185549624466,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441568,9.993061014925066,47.56249173295226,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441578,10.003010850028604,47.55981124643657,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441581,10.003275587680838,47.55966534143028,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441587,9.993275300005804,47.56262819631159,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441589,9.993050450008276,47.562979996281854,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441601,9.996978351581129,47.5628076301462,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441805,9.999508394594887,47.56205177383183,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441807,9.99975229999396,47.56195044629653,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441813,9.999780299993956,47.562095146296514,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441817,10.00298460800317,47.56083844470108,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441818,10.002905170079334,47.56119409252496,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441824,10.002823849944841,47.5614640963348,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441826,9.99769740506988,47.56342691454632,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441827,9.997853134823067,47.56377050244493,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441840,10.003196811088454,47.56030595269704,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441845,10.00311256933408,47.56100013812176,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441849,10.00306253182676,47.56180359968937,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_441860,10.003818300005426,47.561929496280804,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_34328721,9.996064336421387,47.56125696783934,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_34328722,9.99686852119222,47.56186645747909,33532,1151840000,0.4,False -BranchTee_mvgd_33532_lvgd_1151840000_building_34328723,9.996262115365557,47.56190652840592,33532,1151840000,0.4,False -BusBar_mvgd_33532_lvgd_1151850000_LV,9.999182900000005,47.55977909624444,33532,1151850000,0.4,False -BranchTee_mvgd_33532_lvgd_1151850000_building_441576,9.999303732809716,47.55957965663371,33532,1151850000,0.4,False -BranchTee_mvgd_33532_lvgd_1151850000_building_441577,9.999322236003627,47.559726696088475,33532,1151850000,0.4,False -BusBar_mvgd_33532_lvgd_1151860000_LV,10.002536000000003,47.56556059624496,33532,1151860000,0.4,False -BranchTee_mvgd_33532_lvgd_1151860000_1,10.002517899999997,47.565607196244954,33532,1151860000,0.4,False -BranchTee_mvgd_33532_lvgd_1151860000_2,10.002537000000002,47.565451896244916,33532,1151860000,0.4,False -BranchTee_mvgd_33532_lvgd_1151860000_building_441842,10.002390999997852,47.565464796408506,33532,1151860000,0.4,False -BranchTee_mvgd_33532_lvgd_1151860000_building_441844,10.002622099999392,47.56551624627893,33532,1151860000,0.4,False -BranchTee_mvgd_33532_lvgd_1151860000_building_441851,10.002617949994136,47.56570069628145,33532,1151860000,0.4,False -BusBar_mvgd_33532_lvgd_1152100000_LV,9.974850300000005,47.53157609624192,33532,1152100000,0.4,False -BranchTee_mvgd_33532_lvgd_1152100000_1,9.976169599999997,47.531793496241974,33532,1152100000,0.4,False -BranchTee_mvgd_33532_lvgd_1152100000_building_431219,9.974946581962982,47.53168262874287,33532,1152100000,0.4,False -BranchTee_mvgd_33532_lvgd_1152100000_building_431494,9.976068610556169,47.53166407777434,33532,1152100000,0.4,False -BusBar_mvgd_33532_lvgd_1152110000_LV,9.9758199,47.526846996241524,33532,1152110000,0.4,False -BranchTee_mvgd_33532_lvgd_1152110000_1,9.979300200000006,47.52553259624139,33532,1152110000,0.4,False -BranchTee_mvgd_33532_lvgd_1152110000_2,9.978318800000002,47.5264524962415,33532,1152110000,0.4,False -BranchTee_mvgd_33532_lvgd_1152110000_building_431378,9.975648685553173,47.526806587102634,33532,1152110000,0.4,False -BranchTee_mvgd_33532_lvgd_1152110000_building_431380,9.979080984877024,47.52540715211073,33532,1152110000,0.4,False -BusBar_mvgd_33532_lvgd_1152120000_LV,9.979701499999996,47.52925419624172,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_1,9.9812279,47.52819909624165,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_2,9.9817404,47.52764829624163,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_3,9.983537300000004,47.52870099624169,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_4,9.979984700000003,47.52962359624176,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_5,9.978558300000003,47.529268396241726,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_6,9.978753099999997,47.52913609624173,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_7,9.9781941,47.52907379624172,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_building_431473,9.978088932197652,47.52901259471533,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_building_431480,9.978372129379084,47.5292338943078,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_building_431486,9.98186999997535,47.52772454633524,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_building_431487,9.983734602165184,47.52840490996728,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_building_431489,9.983342489059059,47.528609248051744,33532,1152120000,0.4,False -BranchTee_mvgd_33532_lvgd_1152120000_building_431508,9.979699105985135,47.52969956428302,33532,1152120000,0.4,False -BusBar_mvgd_33532_lvgd_1152930000_LV,9.973786725536701,47.547339920043285,33532,1152930000,0.4,False -BranchTee_mvgd_33532_lvgd_1152930000_building_431286,9.973786725536701,47.547339920043285,33532,1152930000,0.4,False -BusBar_mvgd_33532_lvgd_1154980000_LV,9.978123299999996,47.53443409624222,33532,1154980000,0.4,False -BranchTee_mvgd_33532_lvgd_1154980000_1,9.977849699999993,47.534348096242205,33532,1154980000,0.4,False -BranchTee_mvgd_33532_lvgd_1154980000_2,9.978243999999998,47.53451469624219,33532,1154980000,0.4,False -BranchTee_mvgd_33532_lvgd_1154980000_building_431482,9.977882114122217,47.53428602866848,33532,1154980000,0.4,False -BranchTee_mvgd_33532_lvgd_1154980000_building_431483,9.978031500002471,47.53433644626589,33532,1154980000,0.4,False -BranchTee_mvgd_33532_lvgd_1154980000_building_431490,9.978031493772855,47.53452478103809,33532,1154980000,0.4,False -BusBar_mvgd_33532_lvgd_1154990000_LV,9.981248,47.53591809624236,33532,1154990000,0.4,False -BranchTee_mvgd_33532_lvgd_1154990000_1,9.981031300000003,47.53586989624234,33532,1154990000,0.4,False -BranchTee_mvgd_33532_lvgd_1154990000_building_431502,9.981139695285938,47.53578794897672,33532,1154990000,0.4,False -BranchTee_mvgd_33532_lvgd_1154990000_building_431505,9.981126873670116,47.535951408660544,33532,1154990000,0.4,False -BusBar_mvgd_33532_lvgd_1156160000_LV,9.981484300000004,47.51426929624038,33532,1156160000,0.4,False -BranchTee_mvgd_33532_lvgd_1156160000_1,9.981638099999993,47.514259396240355,33532,1156160000,0.4,False -BranchTee_mvgd_33532_lvgd_1156160000_2,9.983874399999996,47.51519769624048,33532,1156160000,0.4,False -BranchTee_mvgd_33532_lvgd_1156160000_building_431324,9.981492924728387,47.514069300293,33532,1156160000,0.4,False -BranchTee_mvgd_33532_lvgd_1156160000_building_431326,9.981677378630271,47.51409063896152,33532,1156160000,0.4,False -BranchTee_mvgd_33532_lvgd_1156160000_building_431331,9.983846599994347,47.51509439626374,33532,1156160000,0.4,False -BranchTee_mvgd_33532_lvgd_1156160000_building_431333,9.981800728950107,47.51396704326229,33532,1156160000,0.4,False -BranchTee_mvgd_33532_lvgd_1156160000_building_431337,9.983974349996945,47.51506934626244,33532,1156160000,0.4,False -BusBar_mvgd_33532_lvgd_1156170000_LV,9.989299899999995,47.51335609624034,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_1,9.989432199999998,47.51168759624016,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_2,9.989395,47.511406396240105,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_3,9.989169700000003,47.51020759623996,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_4,9.987625100000002,47.51395179624036,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_5,9.987961099999993,47.513714296240295,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_6,9.987962599999998,47.5133012962403,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_7,9.988334699999998,47.51319089624028,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_8,9.988712200000004,47.51337449624028,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_9,9.989088899999999,47.51336849624029,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_10,9.989484699999997,47.5135218962403,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431346,9.98918813832318,47.51142444046303,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431348,9.989150340780386,47.511701691576306,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431349,9.988947795545378,47.510289909224035,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431352,9.987457833458542,47.51405741858817,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431353,9.987018911471736,47.51188653435099,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431354,9.987386800001556,47.51190354626109,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431358,9.988340699977563,47.513095396283795,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431360,9.987298012998888,47.51429771483421,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431363,9.988940836360456,47.513120405441725,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431366,9.988859278575422,47.51350481930654,33532,1156170000,0.4,False -BranchTee_mvgd_33532_lvgd_1156170000_building_431373,9.989761142324323,47.51339690783981,33532,1156170000,0.4,False -BusBar_mvgd_33532_lvgd_1156290000_LV,9.9865232,47.54548489624321,33532,1156290000,0.4,False -BranchTee_mvgd_33532_lvgd_1156290000_building_431538,9.986340299946665,47.54537804632211,33532,1156290000,0.4,False -BusBar_mvgd_33532_lvgd_1156980000_LV,9.984748999999997,47.54320689624296,33532,1156980000,0.4,False -BranchTee_mvgd_33532_lvgd_1156980000_1,9.984369299999992,47.543341996243015,33532,1156980000,0.4,False -BranchTee_mvgd_33532_lvgd_1156980000_2,9.984585300000004,47.54306959624296,33532,1156980000,0.4,False -BranchTee_mvgd_33532_lvgd_1156980000_building_431534,9.984421066239983,47.54316464564148,33532,1156980000,0.4,False -BranchTee_mvgd_33532_lvgd_1156980000_building_431539,9.984388254656555,47.543446411914815,33532,1156980000,0.4,False -BranchTee_mvgd_33532_lvgd_1156980000_building_431542,9.984807963741797,47.543421589172794,33532,1156980000,0.4,False -BusBar_mvgd_33532_lvgd_1157450000_LV,9.991805300000005,47.53730969624246,33532,1157450000,0.4,False -BranchTee_mvgd_33532_lvgd_1157450000_1,9.988297800000005,47.537588596242514,33532,1157450000,0.4,False -BranchTee_mvgd_33532_lvgd_1157450000_building_431512,9.988385961406633,47.5375317765634,33532,1157450000,0.4,False -BranchTee_mvgd_33532_lvgd_1157450000_building_431521,9.991814257559176,47.53711941315987,33532,1157450000,0.4,False -BranchTee_mvgd_33532_lvgd_1157450000_building_431522,9.99171130000827,47.53741064626269,33532,1157450000,0.4,False -BusBar_mvgd_33532_lvgd_1157460000_LV,9.992677799999997,47.540107096242714,33532,1157460000,0.4,False -BranchTee_mvgd_33532_lvgd_1157460000_1,9.9941455,47.5408672962428,33532,1157460000,0.4,False -BranchTee_mvgd_33532_lvgd_1157460000_2,9.992132199999999,47.53983069624266,33532,1157460000,0.4,False -BranchTee_mvgd_33532_lvgd_1157460000_building_431552,9.99475780531541,47.53871363020031,33532,1157460000,0.4,False -BranchTee_mvgd_33532_lvgd_1157460000_building_431558,9.992161416152106,47.539995245386315,33532,1157460000,0.4,False -BranchTee_mvgd_33532_lvgd_1157460000_building_431559,9.994283312164429,47.54082012704494,33532,1157460000,0.4,False -BranchTee_mvgd_33532_lvgd_1157460000_building_431561,9.994908532378346,47.53855589560278,33532,1157460000,0.4,False -BusBar_mvgd_33532_lvgd_1159020000_LV,10.117484600000001,47.55610829624415,33532,1159020000,0.4,False -BranchTee_mvgd_33532_lvgd_1159020000_1,10.117806599999994,47.556177596244076,33532,1159020000,0.4,False -BranchTee_mvgd_33532_lvgd_1159020000_building_448090,10.11749571187476,47.556191766510665,33532,1159020000,0.4,False -BranchTee_mvgd_33532_lvgd_1159020000_building_448092,10.117733869698569,47.55637307896748,33532,1159020000,0.4,False -BusBar_mvgd_33532_lvgd_1159590000_LV,10.097126999999995,47.45210599623459,33532,1159590000,0.4,False -BranchTee_mvgd_33532_lvgd_1159590000_building_422769,10.098051388377712,47.451849654514064,33532,1159590000,0.4,False -BusBar_mvgd_33532_lvgd_1159620000_LV,9.993023599999997,47.552695996243806,33532,1159620000,0.4,False -BranchTee_mvgd_33532_lvgd_1159620000_building_441506,9.99292417162653,47.552834829635195,33532,1159620000,0.4,False -BusBar_mvgd_33532_lvgd_1160560000_LV,10.000569899999999,47.52387799624125,33532,1160560000,0.4,False -BranchTee_mvgd_33532_lvgd_1160560000_building_431444,10.000219429399722,47.524096300441855,33532,1160560000,0.4,False -BranchTee_mvgd_33532_lvgd_1160560000_building_431445,10.000476800001387,47.523715846286585,33532,1160560000,0.4,False -BranchTee_mvgd_33532_lvgd_1160560000_building_431447,10.000528845757842,47.52403937335276,33532,1160560000,0.4,False -BusBar_mvgd_33532_lvgd_1161030000_LV,9.993239667455976,47.49863028859219,33532,1161030000,0.4,False -BranchTee_mvgd_33532_lvgd_1161030000_building_430899,9.993239667455976,47.49863028859219,33532,1161030000,0.4,False -BusBar_mvgd_33532_lvgd_1161660000_LV,9.983944199999996,47.54876209624351,33532,1161660000,0.4,False -BranchTee_mvgd_33532_lvgd_1161660000_building_431557,9.983673350062642,47.548762746437625,33532,1161660000,0.4,False -BusBar_mvgd_33532_lvgd_1161700000_LV,9.993773700000006,47.54763269624337,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_1,9.993052900000002,47.547760696243365,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_2,9.987514299999997,47.55093099624363,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_3,9.992366800000001,47.54703269624337,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_4,9.993352799999998,47.54763879624339,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_5,9.987419699999998,47.548665696243454,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_6,9.989447599999995,47.548700096243486,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_7,9.988096699999994,47.54896899624346,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_8,9.990102300000004,47.54706929624335,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_9,9.989407799999995,47.55036919624366,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_10,9.989867599999998,47.54866319624345,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_11,9.987232899999999,47.54853989624347,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_12,9.987148799999998,47.54854909624345,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_13,9.986670099999996,47.54852369624351,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_14,9.9978763,47.54763559624337,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_15,9.995745399999995,47.54914599624352,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_16,9.998301899999996,47.54775609624339,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_17,9.993883899999998,47.54763339624336,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_18,9.995465400000004,47.54876269624348,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_19,9.996663799999995,47.54763929624339,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_20,9.9955689,47.5489525962435,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_21,9.9959912,47.54715879624336,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_22,9.996853200000004,47.54750219624338,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_23,9.996623199999991,47.54771569624341,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_24,9.996906799999998,47.54777049624341,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_25,9.997034800000002,47.54761049624338,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_26,9.993649599999994,47.547268696243314,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_441496,9.987218600059771,47.550959796444424,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431566,9.986752900007348,47.548401196268365,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431567,9.987083906123187,47.54833365048138,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431573,9.987281954380364,47.548427628249335,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431574,9.992369278865029,47.54681547440393,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431576,9.989967950027587,47.547206846445434,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431577,9.989620936410024,47.548775164657314,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431579,9.99522344999556,47.548781396329304,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431581,9.996459749995502,47.54759669634574,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431583,9.996366654150465,47.54775504698614,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431586,9.993623599991334,47.54718494628041,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431588,9.996788669250055,47.547776755346995,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431590,9.993923981917925,47.54723269806306,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431591,9.997029560220888,47.54781808893003,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431594,9.994001700002158,47.547508246283115,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431607,9.996017057918356,47.54728827047961,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431722,9.997838917257223,47.5477703909251,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431723,9.998165814010001,47.54763496844167,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_431724,9.998391883720398,47.54765900368296,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_441499,9.989810009085227,47.54909013282911,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_441501,9.989343062227706,47.55021583139031,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_441502,9.995846065680917,47.548912790791896,33532,1161700000,0.4,False -BranchTee_mvgd_33532_lvgd_1161700000_building_441503,9.995711100016939,47.54920654629925,33532,1161700000,0.4,False -BusBar_mvgd_33532_lvgd_1163050000_LV,10.001415599999998,47.53653109624242,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_1,10.001901699999998,47.53698829624245,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_2,10.002482800000005,47.53720469624245,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_3,10.002172000000003,47.53654919624235,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_4,10.002619899999997,47.536704896242426,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_5,10.002241699999995,47.53736399624249,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_6,10.001292200000002,47.53662159624241,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_7,10.001335099999997,47.53621599624233,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_8,10.001662400000003,47.53614169624233,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_9,10.001895699999995,47.53621869624238,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_10,10.0001483,47.53597789624237,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_11,10.0010937,47.536185196242364,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431642,10.000276835587673,47.53612661656431,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431649,10.00090277148448,47.53636888734238,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431651,10.001616064791682,47.53626536584043,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431652,10.001970500000334,47.53630134625734,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431653,10.002222100007767,47.53638244636636,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431657,10.001121950009063,47.53649824631096,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431659,10.001710798843712,47.53647123919371,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431665,10.00246770001501,47.53678104630966,33532,1163050000,0.4,False -BranchTee_mvgd_33532_lvgd_1163050000_building_431674,10.00238875014214,47.53757644652685,33532,1163050000,0.4,False -BusBar_mvgd_33532_lvgd_1163060000_LV,10.003165199999996,47.54635979624327,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_1,10.003737799999993,47.54554839624316,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_2,10.0033482,47.54619259624319,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_3,10.003580699999997,47.54608099624326,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_4,10.003748900000001,47.545921896243264,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_5,10.0038155,47.54581689624321,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_6,10.002407500000006,47.5456725962432,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_7,10.002801300000003,47.54582209624321,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_8,10.001686500000002,47.545296496243225,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_9,10.003079399999995,47.54606799624325,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_10,10.002249699999995,47.54609139624322,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_11,10.003316999999992,47.546519096243266,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431708,10.001798090312993,47.545211328826205,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431713,10.002616960629574,47.54551775474078,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431714,10.003531869892766,47.545646362536665,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431715,10.002797832462235,47.54573809583885,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431717,10.0032351500029,47.54600869625098,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431719,10.002632500003953,47.54596734626925,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431721,10.003691500005328,47.54582459625946,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431729,10.0034390000472,47.54592934632893,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431732,10.002128700009285,47.54614689626904,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431733,10.0038046500057,47.54602084626176,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431752,10.0036691800475,47.54635311386926,33532,1163060000,0.4,False -BranchTee_mvgd_33532_lvgd_1163060000_building_431755,10.003537300008615,47.546450346280274,33532,1163060000,0.4,False -BusBar_mvgd_33532_lvgd_1163090000_LV,10.003636499999997,47.54303869624298,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_1,10.0023088,47.54058539624277,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_2,10.0016624,47.542432196242935,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_3,10.0032514,47.54303369624298,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_4,10.002930399999997,47.54313009624294,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_5,10.0031049,47.542517396242935,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_building_431691,10.002463548234774,47.54041032934746,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_building_431697,10.001763333901351,47.54236359760006,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_building_431698,10.002731951017493,47.542593279352346,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_building_431699,10.002947450003482,47.54270789625385,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_building_431704,10.003130898067374,47.54241972017698,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_building_431706,10.002933263986485,47.54320420659557,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_building_431711,10.003273014550103,47.54315729601008,33532,1163090000,0.4,False -BranchTee_mvgd_33532_lvgd_1163090000_building_431712,10.003720660979763,47.54309067248578,33532,1163090000,0.4,False -BusBar_mvgd_33532_lvgd_1163850000_LV,10.008394199999996,47.56682179624508,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_1,10.008087199999997,47.566791196245056,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_2,10.004378000000006,47.56769629624514,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_3,10.0078119,47.56678499624509,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_4,10.008384000000003,47.566120996245004,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_5,10.012655999999996,47.559421196244436,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_6,10.009074499999999,47.566521896245035,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_7,10.009044899999992,47.56690459624507,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_8,10.009179300000001,47.56619329624503,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_9,10.012581599999995,47.55948959624443,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_441674,10.012269980657234,47.55934431148304,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_441684,10.012534861664449,47.55934354486765,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_441843,10.007715250004587,47.566943546279006,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_441847,10.007843050004592,47.56697839627904,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_441862,10.008444803201398,47.56695085984131,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_441863,10.00443066170011,47.567845513171676,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_441868,10.008359726693804,47.56602225321569,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_441869,10.008529217589034,47.56618193095539,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_442020,10.008923200023524,47.56709574631851,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_442028,10.00924156857571,47.56671889816666,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_442086,10.008713500011945,47.566469246308884,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_442096,10.009361891155297,47.56638636531383,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_442099,10.009484568937298,47.56648145068764,33532,1163850000,0.4,False -BranchTee_mvgd_33532_lvgd_1163850000_building_442110,10.008587800005706,47.56698864627876,33532,1163850000,0.4,False -BusBar_mvgd_33532_lvgd_1163850001_LV,10.019700400000003,47.545350696243155,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_1,10.027229200000006,47.544983296243146,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_2,10.021943,47.54424859624311,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_3,10.025639400000003,47.54179939624283,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_4,10.023387400000004,47.54525159624315,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_5,10.021560699999998,47.54513699624317,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_6,10.0216971,47.54515259624312,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_7,10.021879200000004,47.54385189624305,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_8,10.021748599999995,47.54493689624315,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_9,10.021108299999998,47.54497669624315,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_10,10.0225157,47.54496409624314,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_11,10.020590100000005,47.54473059624313,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_12,10.020726300000003,47.54472819624313,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_13,10.020299200000004,47.5448262962431,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_14,10.019288599999996,47.544227496243096,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_15,10.019476100000004,47.54486489624315,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_16,10.0202027,47.544843296243066,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_17,10.019694900000005,47.54481179624312,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_18,10.0193001,47.544527896243125,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_19,10.0240534,47.54445969624309,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_20,10.024505899999998,47.54433579624308,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_21,10.024393200000004,47.54402439624305,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_22,10.025572100000002,47.542445896242896,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_23,10.025462299999994,47.54204079624288,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_24,10.021079000000006,47.544675296243135,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_25,10.021494899999993,47.54458799624309,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_26,10.025848600000003,47.54301069624297,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_27,10.020855599999994,47.54477489624311,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_28,10.023893199999995,47.54428679624306,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_29,10.023836899999994,47.5441783962431,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_30,10.021385500000003,47.5445837962431,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_31,10.028086099999996,47.544584896243116,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_32,10.021715799999996,47.54462609624317,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_33,10.023800200000005,47.54395709624309,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_34,10.019771600000002,47.54450099624305,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_35,10.0218206,47.544617996243126,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_36,10.018635599999994,47.54359839624307,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_37,10.023027999999995,47.54522279624318,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_38,10.019106300000004,47.54537409624323,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_39,10.01808674833744,47.54513854787915,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_40,10.018683499999993,47.545282596243204,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_41,10.019147700000003,47.54622619624327,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_42,10.019214599999994,47.546414296243285,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_43,10.019690600000006,47.54551339624319,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_44,10.020061800000002,47.54535809624316,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_45,10.020440200000005,47.5454724962432,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_46,10.020758000000004,47.545527896243215,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_47,10.020365900000003,47.5455310962432,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431833,10.018701373020676,47.54521296831066,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431834,10.01863909998445,47.543839596295676,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431839,10.018936228313464,47.545285370160144,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431844,10.01948833355186,47.544479505076296,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431857,10.018946115913247,47.54637513182112,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431860,10.019397426385035,47.54623064175421,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431867,10.019302959504953,47.546628740202635,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431868,10.019520807865781,47.54679155446607,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444861,10.025427372202401,47.54179265165128,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444862,10.025390950007557,47.54193449629415,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444869,10.02566006015993,47.54228088996157,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444871,10.019690804810743,47.544685710273995,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444874,10.02155977680074,47.54450227453233,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444875,10.019957375724198,47.54448649213634,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444876,10.020549521263442,47.54449827325138,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444878,10.02566404669125,47.543040811455796,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444881,10.021606450005763,47.544760246296825,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444882,10.020286129417439,47.54463683731063,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444885,10.02162438457654,47.54422070537497,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444887,10.021885850037147,47.54358824629545,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444888,10.021598181736657,47.54498228093213,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444889,10.021992455281143,47.54481006088488,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444890,10.021771005993381,47.544560857456176,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444894,10.022271760331545,47.54363046776418,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444896,10.021982800003633,47.543737596277595,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444898,10.021020750014458,47.545414846310315,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444900,10.020050272935748,47.54472909929467,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444902,10.020976933089704,47.544548268477236,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444904,10.021325795847453,47.54448263772723,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444905,10.024055487223123,47.54418667529091,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444906,10.024294362709664,47.54414601731079,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444907,10.020069250009328,47.54500534630388,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444908,10.023749126641757,47.544445130827974,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444912,10.024688649996639,47.544344996316944,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444913,10.02234105106837,47.544841920436326,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444914,10.023007861665548,47.5450516571174,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444916,10.022457274226714,47.54484520530877,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444918,10.020083476721977,47.54529414409925,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444921,10.020699070321731,47.5449058067372,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444923,10.019615313711057,47.54671886494488,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444943,10.019719026791288,47.5456069381515,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444949,10.027187199998455,47.545088596278376,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444956,10.020430899999946,47.54559184626193,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444957,10.02799979092903,47.54452387229045,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444960,10.021247798236274,47.544881512105185,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_444965,10.021475426520883,47.54497518814503,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431821,10.018007949266716,47.5448636726949,33532,1163850001,0.4,False -BranchTee_mvgd_33532_lvgd_1163850001_building_431829,10.018408412410864,47.544797932674655,33532,1163850001,0.4,False -BusBar_mvgd_33532_lvgd_1163850002_LV,10.021668099999998,47.54834369624342,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_1,10.021361500000001,47.54890949624347,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_2,10.0218863,47.54879209624351,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_3,10.021669499999998,47.54869399624346,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_4,10.021036000000002,47.54929209624356,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_5,10.021055500000001,47.54912709624349,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_6,10.0159465,47.548175696243455,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_7,10.021551499999998,47.549346196243505,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_8,10.022146700000006,47.54919529624351,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_9,10.015748899999995,47.54777699624341,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_10,10.021311299999999,47.54944629624353,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_11,10.021204100000006,47.54901449624347,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_12,10.022899700000002,47.549764696243585,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_13,10.021757899999994,47.549422696243525,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_14,10.014399799999996,47.54768779624335,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_15,10.013737499999996,47.54759299624337,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_16,10.021565799999996,47.54872019624347,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_17,10.021776699999997,47.547313696243336,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_18,10.021567400000006,47.547765096243396,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_19,10.020688600000003,47.54688159624335,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_20,10.021584400000002,47.546878396243315,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_21,10.020872400000005,47.54699559624329,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_22,10.021529399999995,47.54815639624343,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_23,10.021494799999996,47.54798539624339,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_24,10.022628199999998,47.54849089624348,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_25,10.022402399999999,47.54837449624345,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_26,10.021920900000001,47.54828009624339,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_431801,10.013722671997906,47.5477762263596,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_431851,10.014207900043646,47.54790184630209,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444919,10.020985624253827,47.54685676755838,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444926,10.021385976878516,47.54710332795675,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444928,10.021422050791509,47.54735651257184,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444929,10.021226471373295,47.54799193638755,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444931,10.021934316396246,47.54756920401591,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444932,10.020378333861643,47.54695981098453,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444933,10.021819603579655,47.547898744899314,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444934,10.021706792679048,47.54801900835296,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444936,10.020861667317252,47.547311347236196,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444939,10.021210628717306,47.548256911471455,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444941,10.021777221836636,47.54814816327815,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444942,10.02199365001425,47.54866919628533,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444945,10.022748939734386,47.548304975179704,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_444947,10.022191488600628,47.5484404173078,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_445425,10.020991133875444,47.54890217648193,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_445428,10.02158109503761,47.54903121730225,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_445431,10.020987549998775,47.549384296299195,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_445439,10.023021468206807,47.549857860493745,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_445441,10.021367702718388,47.5497809083816,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_445444,10.021731933700032,47.5495340330409,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_445447,10.022344891803272,47.549022496014366,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_34328673,10.01626057067234,47.548103763421345,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_34328674,10.016068037089,47.54812297618069,33532,1163850002,0.4,False -BranchTee_mvgd_33532_lvgd_1163850002_building_34328675,10.017108894734521,47.54819335409153,33532,1163850002,0.4,False -BusBar_mvgd_33532_lvgd_1163850003_LV,10.026685600000002,47.558041696244295,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_1,10.028568899999993,47.559336896244425,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_2,10.028736400000003,47.55926439624442,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_3,10.029089299999997,47.559116896244404,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_4,10.0292964,47.55898329624439,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_5,10.029602099999995,47.558762796244395,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_6,10.028681299999999,47.559493296244476,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_7,10.0305483,47.56013859624447,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_8,10.027179499999999,47.55829809624431,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_9,10.027922999999994,47.55865779624432,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_10,10.028961599999995,47.55993359624442,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_11,10.030610600000003,47.561293096244576,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_12,10.026382000000002,47.56203029624464,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_13,10.0277194,47.55920089624441,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_14,10.027351500000002,47.558375696244305,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_15,10.027826199999994,47.559181496244385,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_16,10.027955400000005,47.5591454962444,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_17,10.026857299999994,47.56204049624463,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_18,10.027752999999997,47.55836499624433,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_19,10.028339699999997,47.55903889624435,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_20,10.027100399999998,47.56210059624466,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_21,10.0288894,47.558251996244344,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_22,10.0278068,47.5579813962443,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_23,10.0281841,47.55839919624432,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_24,10.028234700000004,47.55802399624429,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_25,10.029916499999997,47.56058609624454,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_26,10.023855499999996,47.55834849624433,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_27,10.027136800000003,47.55900079624436,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_28,10.026368600000001,47.55831019624435,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_29,10.025795200000001,47.558581896244334,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_30,10.024425399999997,47.558923796244386,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_31,10.025119000000004,47.55875889624436,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_32,10.024733899999996,47.558491396244335,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_33,10.026180399999996,47.55872959624436,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_34,10.023553999999995,47.558629396244385,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_35,10.02414044841396,47.55863614663664,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_36,10.023731699999997,47.558171296244296,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_37,10.026739999999997,47.55883599624438,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_38,10.024018200000002,47.55903359624444,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_39,10.02851969781653,47.5569817971854,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_40,10.029126599999994,47.557321196244224,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_41,10.028969299999996,47.55723279624424,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_42,10.032179500000005,47.55928679624439,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_43,10.0275955,47.557117396244216,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_44,10.0269114,47.5578079962443,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_45,10.027183799999992,47.556840196244195,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_46,10.027109999999997,47.55758989624428,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_47,10.028070899999998,47.55746119624424,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_48,10.027371600000004,47.556322996244184,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_49,10.027847599999992,47.55659319624417,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_50,10.028070099999999,47.556730796244196,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_51,10.027420699999997,47.557264596244245,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_52,10.0281938,47.55755009624424,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_53,10.027504899999998,47.5578017962443,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_54,10.028365399999998,47.55762679624428,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_55,10.029052899999998,47.55775739624424,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_56,10.024751100000001,47.557332796244225,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_57,10.024188899999999,47.55753859624426,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_58,10.024687800000002,47.557404696244284,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_59,10.024575099999995,47.557635496244274,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_60,10.0240887,47.55743959624426,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_61,10.023899699999998,47.55714439624423,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_62,10.024518,47.5577007962443,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_63,10.025666899999997,47.55729109624426,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_64,10.024131299999997,47.558093996244324,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_65,10.02489540183256,47.55807689669638,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_66,10.024467899999994,47.558390296244326,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_67,10.025201300000004,47.5577671962443,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_68,10.024047499999998,47.55614869624416,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_69,10.024550800000007,47.55646339624417,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_70,10.025136999999997,47.556823996244184,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_71,10.025533599999997,47.55715839624422,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_72,10.026051900000002,47.55762099624429,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_73,10.026395000000003,47.55788369624428,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_74,10.026435899999994,47.55714689624425,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_75,10.025889700000004,47.55748899624425,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_76,10.0253046,47.55694709624423,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445698,10.02350245059801,47.55612520334845,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445709,10.024819767992222,47.556305255194395,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445713,10.024002199999785,47.556946696306134,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445715,10.024498510880477,47.556697711076005,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445716,10.024636029763238,47.556946114515036,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445721,10.024008284528577,47.555961447757525,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445722,10.023827700007786,47.556185746315045,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445723,10.024010951929665,47.55630902973125,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445724,10.02476891370985,47.55683791848544,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445725,10.025009199989256,47.55700329633793,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445770,10.024285981721953,47.55709678184573,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445771,10.023837149996066,47.55745084629986,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445773,10.024155867022028,47.557674282219374,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445774,10.02466054999998,47.55716544626079,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445775,10.024600089516067,47.55728105519465,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445776,10.024945508905164,47.557351271241885,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445777,10.024443976032991,47.55746586720003,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445778,10.024656900004198,47.55773734626187,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445783,10.024856718583854,47.55750312026659,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445785,10.024794858503615,47.55759501071827,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445786,10.024783889369209,47.55771025614639,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445788,10.024130604068914,47.55783995353008,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445789,10.023434199998375,47.55883699627279,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445790,10.023498099998134,47.558863746272564,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445798,10.023921586765255,47.55811075832915,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445799,10.024171056921602,47.55837875830655,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445800,10.024600255398827,47.55779409216512,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445803,10.023823818103759,47.558626975189625,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445804,10.024052100001756,47.55868594624995,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445805,10.024490295958099,47.55796390143021,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445806,10.024364365329994,47.55804930266122,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445808,10.02496079559353,47.557822413629665,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445809,10.024713213477074,47.5580455691762,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445811,10.024007953061089,47.558858429937416,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445814,10.024591946565412,47.559076168489284,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445816,10.024517673779336,47.558256538557075,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445818,10.02496319671748,47.55819896365879,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445819,10.024839400003431,47.558397246320325,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445828,10.023410648359118,47.55856191240129,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445842,10.026728549995465,47.55691374627622,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445852,10.026975200001765,47.557025496305705,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445857,10.027384040556454,47.556644239054386,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445860,10.027309899999922,47.55621604625072,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445861,10.027666652450087,47.55682810981388,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445862,10.027518116875877,47.5561418040267,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445870,10.02583415612227,47.557770777760666,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445876,10.025214186481715,47.55799790323401,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445879,10.026230657301031,47.55815256409423,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445880,10.02627325000588,47.55861104628666,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445881,10.027796138921547,47.55625198368579,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445883,10.026217470636965,47.55890060396487,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445884,10.026499926680287,47.55864880828957,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445885,10.026880367308173,47.558768932569286,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445886,10.026640434406424,47.55721690971184,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445887,10.026460649995435,47.55765219631252,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445888,10.026855315322274,47.55745190346375,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445889,10.027284706802085,47.55712687428465,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445890,10.02764519998501,47.55738019634244,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445894,10.027486975708472,47.55760778397065,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445895,10.028130909584094,47.5569962057022,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445896,10.026659033493535,47.55777120887409,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445899,10.027053985820556,47.55790574120087,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445900,10.028477616759876,47.55677849689877,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445901,10.02703631697442,47.558157946845604,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445905,10.027223228178832,47.557795699004366,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445906,10.027520703416359,47.55803523280937,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445908,10.028817606840635,47.55679461175599,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445910,10.028422157510866,47.557145131247196,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445911,10.029142384401794,47.55700744264123,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445912,10.027877423720458,47.55752865278416,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445913,10.028142043775889,47.55764608429544,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445915,10.025169223579727,47.55717991916024,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445917,10.027683950007996,47.559098846271695,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445918,10.028601918974324,47.557299736474576,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445919,10.028924450008066,47.55747029627699,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445920,10.027086479657136,47.55918957482624,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445921,10.025288858801845,47.557127270379624,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445923,10.02792726624799,47.557129348783086,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445925,10.028875820239879,47.557575250425984,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445926,10.028247882027799,47.55782689552849,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445927,10.028205731570974,47.557902414273954,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445928,10.02852560001784,47.557778346279186,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445930,10.027926823592027,47.55931525851943,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445931,10.025077994754565,47.557313312129494,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445932,10.028153671527438,47.55924286770504,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445933,10.028712276465063,47.55917632961062,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445934,10.028904204107908,47.55943404717719,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445935,10.028912950026658,47.55784759628413,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445937,10.02898974999989,47.55822139625639,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445938,10.025369600005511,47.55738939627152,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445940,10.02808248423081,47.55858109775574,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445942,10.025131234523919,47.557613722639715,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445943,10.029635563937576,47.55865959117405,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445944,10.02919115364592,47.55888819079795,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445948,10.028563033592915,47.558975172080416,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445949,10.025637313108799,47.557533455572035,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445951,10.029717426982687,47.55897028598682,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445957,10.029260708235128,47.55927943214994,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445958,10.029541817062023,47.55974014702137,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_446006,10.026187850013184,47.5620077962772,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_446016,10.026890943904515,47.561905387672205,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_446019,10.027121300010092,47.56197614630811,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_446030,10.03048597104238,47.56149202089914,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_446082,10.030540799985848,47.55999224632222,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_446089,10.03049031248595,47.5618673204251,33532,1163850003,0.4,False -BranchTee_mvgd_33532_lvgd_1163850003_building_445960,10.031830950061316,47.55918219630493,33532,1163850003,0.4,False -BusBar_mvgd_33532_lvgd_1163850004_LV,10.019570500000002,47.562715596244686,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_1,10.018785000000005,47.56278099624472,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_2,10.019442999999997,47.562667496244735,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_3,10.018815599999996,47.56268119624471,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_4,10.018812600000004,47.56361579624483,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_5,10.0186982,47.56345569624476,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_6,10.018907399999998,47.56263989624471,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_7,10.018726899999999,47.56323289624478,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_8,10.018506700000001,47.563736496244786,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_9,10.0189023,47.56374139624481,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_10,10.019065500000002,47.56263989624472,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_11,10.019098399999999,47.56194549624463,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_12,10.0190984,47.56204659624465,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_13,10.019606299999992,47.56197209624462,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_14,10.019165899999999,47.56200269624463,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_15,10.020404899999994,47.562929296244725,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_16,10.020455700000003,47.56250359624466,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_17,10.019019799999995,47.56201209624463,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_18,10.019616499999998,47.56268579624467,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_19,10.019031700000001,47.56202699624467,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_20,10.022442299999994,47.56108589624457,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_21,10.019845999999998,47.562054696244644,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_22,10.019912799999998,47.56191369624464,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_23,10.020395900000004,47.56143569624454,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_24,10.019050200000002,47.562038596244626,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_25,10.019830699999996,47.562546996244684,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_26,10.02017949999999,47.56188799624464,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_27,10.019917399999999,47.56227159624467,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_28,10.019020599999996,47.56197859624466,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_29,10.0235507,47.56162399624465,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_30,10.019805500000002,47.56285079624473,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_31,10.020018299999995,47.5624559962447,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_32,10.023380299999998,47.561433296244594,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_33,10.019946700000007,47.56246689624473,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_34,10.0199197,47.56128269624462,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_35,10.020444300000005,47.56324049624475,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_36,10.019514400000002,47.562990996244686,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_37,10.019577100000003,47.56489219624491,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_38,10.018655200000005,47.56460289624489,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_39,10.018104099999999,47.56547319624496,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_40,10.019442299999993,47.5649232962449,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_41,10.019320300000002,47.56503509624496,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_42,10.018199400000002,47.565036396244906,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_43,10.019886800000004,47.563768996244804,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_44,10.020194999999996,47.564408096244875,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_45,10.018050399999996,47.56513199624492,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_46,10.019825600000003,47.56386189624484,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_47,10.019881700000003,47.56358309624477,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_48,10.0186462,47.56498479624486,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_49,10.018472499999998,47.565300196244976,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_50,10.019502199999998,47.564479896244904,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_51,10.018723700000008,47.56429219624485,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_52,10.0195399,47.56398239624477,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_53,10.0195246,47.563111496244744,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_54,10.019563099999996,47.56462569624487,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_55,10.019209099999994,47.56410789624483,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_56,10.019626700000005,47.56325949624472,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_57,10.019641799999997,47.563278696244744,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441927,10.019467644449682,47.56182579901457,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441928,10.018834852137523,47.561945007635266,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441929,10.018770147177264,47.56204643086369,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441931,10.018666429303744,47.5622412641322,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441934,10.018776483947725,47.56225954417229,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441936,10.018856880546029,47.56254137912732,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441941,10.019105529329764,47.56221605650649,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441944,10.01909536998493,47.56230137275969,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441949,10.019466337590353,47.56225577969231,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441951,10.01920285883408,47.56254733421768,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441966,10.019124258272852,47.56180569033484,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441989,10.01858980172769,47.56267570609085,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441990,10.018595360961536,47.56291113495467,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441995,10.018549169191195,47.563172159489504,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_441997,10.019004591296497,47.56282998558708,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442001,10.019448400000043,47.56259459625623,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442003,10.019328223971979,47.562815963690724,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442007,10.018909530348298,47.563132783861626,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442008,10.019363598149662,47.56303045482338,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442010,10.0191946262031,47.563217890846914,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442015,10.019456697349245,47.56344709410309,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442016,10.018526720079295,47.56356385413874,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442017,10.018492567367003,47.56386549356873,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442018,10.0184788499897,47.56487059626727,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442019,10.01879217455843,47.5638367748532,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442021,10.019018496148966,47.56369903324038,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442022,10.019150287481633,47.563838579417514,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442023,10.019298249993597,47.563736896301535,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442024,10.018520044371256,47.564749323167334,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442025,10.01782484231713,47.56511488608593,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442026,10.018437205011072,47.56418982225757,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442027,10.018717347733268,47.56416230415997,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442033,10.018444228280341,47.56459653615569,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442036,10.018823623739745,47.56453209986355,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442039,10.018987519680772,47.5646627314022,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442041,10.01896816372655,47.56405636887338,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442045,10.019379754605293,47.56393774004528,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442046,10.019324743821509,47.564798879695424,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442047,10.019435721426934,47.564217276390025,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442048,10.018881324679292,47.56443058913273,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442049,10.01916681322055,47.56433947542459,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442050,10.019283148875285,47.56455306350267,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442054,10.018891107111628,47.56523655558496,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442058,10.019498921513698,47.56510838873945,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442081,10.01789725542614,47.5654395238723,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442082,10.018366165560277,47.56544246215887,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_442084,10.018491399996227,47.565404296284036,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_445977,10.019912696501168,47.56119277590862,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_445980,10.019739686577958,47.561839765025184,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_445982,10.020080176803699,47.561804380825016,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_445984,10.020318612835924,47.56185252802967,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_445989,10.019735295598936,47.56219775754492,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_445990,10.020103515210138,47.56205410504267,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_445992,10.019637899988506,47.56253739630612,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446000,10.020020030695042,47.563124852729416,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446003,10.022490876323573,47.56093862168524,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446009,10.019713544317954,47.56357434864717,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446011,10.019692200003751,47.56378434627786,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446013,10.01957365,47.56389394625559,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446020,10.020118959983893,47.5638526380548,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446021,10.020282208076518,47.5633927098738,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446025,10.019683711081795,47.564152977513615,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446026,10.019978414399496,47.56404330982855,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446027,10.019689899986279,47.56443904630662,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446028,10.019975052191404,47.56431384614375,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446032,10.02324428305827,47.561507089863895,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446036,10.020310692725,47.56458679871651,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446037,10.023574104384307,47.56176499154864,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446038,10.019796706487272,47.56470565591331,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446046,10.020078604929848,47.562646584408725,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446051,10.019664999999435,47.56503509625229,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446052,10.019822900004526,47.56497339628609,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446055,10.020018524782284,47.562853398092535,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446059,10.020206899999893,47.56285974625022,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446063,10.019660749468423,47.562948248656966,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446075,10.019775825206183,47.56295194151829,33532,1163850004,0.4,False -BranchTee_mvgd_33532_lvgd_1163850004_building_446079,10.019795894160557,47.56324394580854,33532,1163850004,0.4,False -BusBar_mvgd_33532_lvgd_1163850005_LV,10.016442899999998,47.560134796244476,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_1,10.017263500000006,47.56028519624448,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_2,10.016267800447,47.56213444630848,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_3,10.016318099999996,47.56167479624465,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_4,10.017141900000002,47.56097509624456,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_5,10.017211899999992,47.56017619624451,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_6,10.016011300000004,47.561662596244595,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_7,10.016217500000005,47.5625940962447,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_8,10.0171157,47.56122669624455,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_9,10.016991900000004,47.561526996244595,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_10,10.016720399999999,47.56107179624455,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_11,10.016417199999994,47.56152159624456,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_12,10.016851300000003,47.560971296244574,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_13,10.017129799999996,47.56054839624451,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_14,10.015611,47.5613505962446,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_15,10.016148201872008,47.560463146668724,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_16,10.0154924,47.561807196244665,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_17,10.014629499999998,47.5625160962447,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_18,10.014992199999995,47.56257109624472,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_19,10.014448500000002,47.562468196244666,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_20,10.014451100000002,47.56237309624467,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_21,10.014562500000004,47.56223289624465,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_22,10.014687200000001,47.562230196244705,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_23,10.015126200000005,47.56238779624467,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_24,10.0152591,47.562205796244676,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_25,10.015678699999997,47.562270696244646,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_26,10.015560100000005,47.56154679624465,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_27,10.015853499999999,47.56079149624454,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_28,10.016251899999999,47.56084869624452,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_29,10.016549399999993,47.56092369624456,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_30,10.0160585,47.560817596244554,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_31,10.017814999999997,47.558719396244385,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_32,10.017000502166983,47.55958839677601,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_33,10.017332100000006,47.55925059624438,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_34,10.017842400000003,47.55931669624443,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_35,10.0174205,47.55915869624437,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_36,10.016668900000003,47.559926196244504,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_37,10.016879099999997,47.55865799624437,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_38,10.017909799999996,47.55863449624434,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_39,10.0183418,47.55860729624435,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_40,10.016328900000003,47.559205396244444,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_41,10.016830499780617,47.55922799739646,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_42,10.0164011,47.55882739624436,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_43,10.016160600000003,47.560007896244514,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_44,10.01624475065301,47.55960664631668,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441772,10.016764770431351,47.55938867251558,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441774,10.016362340427458,47.55970536923261,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441775,10.01664341202476,47.55972761259652,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441786,10.016857921707821,47.55939479735697,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441787,10.016951450563235,47.559400835299435,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441791,10.017124715277433,47.5590821404524,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441792,10.017324271263819,47.55881968996005,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441793,10.01805540000238,47.55865479625769,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441794,10.018019317334394,47.558794047241484,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441795,10.016124416204926,47.55891117292165,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441796,10.017878859638884,47.55898821773725,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441797,10.017434614058029,47.559413667080776,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441798,10.017259321939042,47.55959528199448,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441799,10.01662320000585,47.55884429631003,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441800,10.017172128287175,47.559692760446744,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441803,10.01767040001595,47.559138846293465,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441806,10.016642699999508,47.55909919628936,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441808,10.01752140000292,47.5593205962776,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441810,10.016026801439702,47.559745261840014,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441811,10.0179843500015,47.559167646262615,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441812,10.018145250008843,47.5592241963226,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441816,10.016098961319907,47.55928860261183,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441819,10.017943995479328,47.55958851497928,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441821,10.016455362206816,47.55936416451863,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441822,10.01846364278442,47.55869371568935,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441823,10.018323899996318,47.55888804632556,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441830,10.016564999723586,47.5593712855476,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441873,10.016455800003586,47.56107989628411,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441877,10.015701452017199,47.5604684725316,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441878,10.01657729410818,47.56110636604317,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441880,10.015333850006717,47.56131909630437,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441882,10.016004151110504,47.56017574908498,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441883,10.016399173469182,47.559956600963964,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441885,10.016733650001703,47.560105696296915,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441888,10.015257744871985,47.56163562143065,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441889,10.016574905686719,47.56032697906699,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441890,10.015517150002365,47.56053679625313,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441891,10.014451150001396,47.56216104628614,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441894,10.015639500008998,47.56068469628349,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441896,10.016009254193852,47.56103276215662,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441897,10.014588312123964,47.562378625729714,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441900,10.014938545955527,47.56221216435613,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441901,10.015035950002224,47.56224449626998,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441902,10.016334669493252,47.56053685597724,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441903,10.016428930514202,47.56055558659596,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441905,10.016272290141334,47.56073115979552,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441906,10.014788955727521,47.56242327620221,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441907,10.016432436962196,47.56126826456269,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441908,10.014881950001964,47.56244149627045,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441910,10.01652316949325,47.56057435597728,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441911,10.016381000009341,47.56134414626897,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441912,10.016670304349542,47.56081526655022,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441914,10.015879478744306,47.561253282176565,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441918,10.015861600016766,47.56147199628518,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441919,10.01580592997625,47.561689293386884,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441920,10.016334294112607,47.56105341604421,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441924,10.016601698707998,47.561607086495826,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441930,10.016520209410338,47.56183677483584,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441935,10.015689450013415,47.56190144629567,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441942,10.015574321477159,47.56213130019125,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441950,10.016701068344199,47.561952222248664,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441952,10.016878912814052,47.56124805102314,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441953,10.016587950005706,47.562111496276174,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441954,10.016983567409024,47.5612861113111,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441955,10.014312758205776,47.56259062475708,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441956,10.016549094036451,47.562329990605136,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441957,10.014701300009989,47.56260804626671,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441962,10.016935929106833,47.56161469043382,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441963,10.016848000000168,47.56195974625214,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441964,10.016795027725577,47.56219389221588,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441965,10.016553000008926,47.562547596278044,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441968,10.016454274749139,47.56273810018179,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441970,10.01692176824097,47.559936698582156,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441973,10.017364279912774,47.56000223421101,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441978,10.017027031567254,47.56041280463199,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441988,10.017465650004352,47.56037909637001,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441993,10.017770505475104,47.559911926995554,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441996,10.017622337462054,47.56010010818296,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_441999,10.016830100015554,47.56061669630048,33532,1163850005,0.4,False -BranchTee_mvgd_33532_lvgd_1163850005_building_442002,10.017210243389146,47.5607735051982,33532,1163850005,0.4,False -BusBar_mvgd_33532_lvgd_1163850006_LV,10.018605699999998,47.55718989624418,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_1,10.0170793,47.555980596244105,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_2,10.016312199999994,47.55605019624414,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_3,10.015939900000003,47.55595169624409,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_4,10.017532000000001,47.55525869624407,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_5,10.018138799999996,47.55536369624407,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_6,10.016094400000002,47.55494469624402,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_7,10.016049499999994,47.55502799624402,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_8,10.016864999999994,47.55510369624406,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_9,10.017179300000004,47.556195696244174,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_10,10.018702600000003,47.554729396243985,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_11,10.018104199999998,47.55655469624418,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_12,10.018413400000005,47.554979296244035,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_13,10.018424299999994,47.5560336962441,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_14,10.017802300000005,47.55600359624415,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_15,10.015302799999992,47.55480549624401,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_16,10.015939799999995,47.55542309624406,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_17,10.0188285,47.556251096244154,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_18,10.015524700000006,47.555492396244055,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_19,10.015923899999997,47.55565949624408,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_20,10.018620899999993,47.556285496244165,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_21,10.017305651580283,47.55561964651085,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_22,10.016683300000004,47.555580796244094,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_23,10.017970551041193,47.555683646399004,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_24,10.018853399999992,47.556007296244125,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_25,10.016606499999998,47.5560212962441,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_26,10.019770347052184,47.55589439682727,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_27,10.018361300000002,47.555419596244064,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_28,10.019015699999997,47.555763196244065,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_29,10.019290800000002,47.55555619624409,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_30,10.020111799999995,47.55634059624415,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_31,10.019129500000002,47.55547869624405,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_32,10.018712999999995,47.55547319624408,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_33,10.018916399999998,47.55587609624412,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_34,10.020154800000007,47.556396896244195,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_35,10.019428900000005,47.55544819624408,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_36,10.019471600000001,47.55522439624408,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_37,10.018770900000002,47.55824099624432,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_38,10.019727300000005,47.5564475962442,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_39,10.0190778,47.55739689624424,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_40,10.019616200000003,47.556731596244155,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_41,10.022112299999995,47.557258796244234,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_42,10.0226949,47.5569168962442,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_43,10.023161162314413,47.55738283039976,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_44,10.023446428981037,47.557777063733134,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_45,10.021747399999999,47.55733989624424,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_46,10.022875899999999,47.55698859624418,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_47,10.022356999999998,47.55713519624422,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_48,10.021308999999999,47.55699209624424,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_49,10.021117599999998,47.55645639624418,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_50,10.021116400000004,47.55626149624416,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_51,10.020393100000005,47.55702639624422,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_52,10.020238799999996,47.55723839624422,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_53,10.020773901274737,47.557115247558926,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_54,10.020948300000006,47.55758259624427,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_55,10.019281000000001,47.55858869624433,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_56,10.019709300000004,47.557717396244286,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_57,10.020454299999997,47.55764229624422,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_58,10.021445799999995,47.557452996244244,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441697,10.015268906039248,47.55539447167216,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441702,10.015732003954332,47.55535995531994,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441703,10.016083198055824,47.55539345385702,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441704,10.016242501527477,47.555151440891976,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441705,10.015690720234176,47.55465660489145,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441706,10.01656392555423,47.55526816583121,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441710,10.016109825723667,47.55565322679484,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441711,10.015470900002866,47.55470234625694,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441712,10.016460436852665,47.555448007706445,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441714,10.0159399500057,47.55473594632121,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441722,10.016297571985847,47.55480828742032,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441723,10.016983647587685,47.555282273836355,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441724,10.017224386925351,47.555079195649014,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441725,10.016885591536095,47.55546085911525,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441726,10.017044500009343,47.5556464463337,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441727,10.016102188555383,47.55588176804989,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441729,10.016239549998657,47.55634679649959,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441730,10.016664459176559,47.5563459544313,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441731,10.016653191284176,47.55492194927193,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441734,10.01724610498112,47.55535858754628,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441735,10.018048906169785,47.55501859780709,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441737,10.015441757523236,47.5550421802422,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441739,10.018174500005468,47.55557454627664,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441740,10.01788450001798,47.5552035962875,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441741,10.017622620821198,47.55539180937151,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441742,10.017534159752728,47.55550689851215,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441743,10.017503350006882,47.55564339626973,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441744,10.018935230447418,47.55511465450423,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441745,10.019141020685968,47.55502278881879,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441746,10.015534650002667,47.55521949625299,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441747,10.018885670510484,47.555309577768234,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441748,10.017843700006113,47.55556559627591,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441749,10.018238613967851,47.554832322804856,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441750,10.01918520713226,47.55529457015406,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441751,10.015849351480433,47.55504339341218,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441752,10.018701700011627,47.554881346281896,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441753,10.018872881510122,47.55565528444691,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441755,10.017401584904427,47.55588299870372,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441757,10.015549643309072,47.55536872044182,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441758,10.018919878796373,47.5546189715328,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441759,10.017281286630267,47.55633610336494,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441761,10.017703020246008,47.55585400349572,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441762,10.018015042778801,47.555940216434735,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441765,10.018397837480002,47.555295770032025,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441766,10.01867877860428,47.55507459338053,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441767,10.017942189574272,47.55626643256037,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441769,10.017614250000738,47.556422646251015,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441770,10.017839323463026,47.556485287666014,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441771,10.018671126275274,47.55535004192772,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441773,10.019219987084679,47.55667424420849,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441776,10.018225942977441,47.555954067579805,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441777,10.018443725044598,47.55589845021636,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441778,10.018507866375915,47.55620009722253,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441779,10.019445850006363,47.55573154636198,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441781,10.019184891486645,47.55592017802907,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441783,10.019335457208951,47.55633261156691,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441784,10.0183438904445,47.556640781233675,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441785,10.018635813731647,47.556429167249036,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441789,10.01916587484793,47.55830520436879,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441790,10.019467100000291,47.558301846274944,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_441828,10.0191166613545,47.558543375193935,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445598,10.019609138635179,47.554999925126445,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445610,10.020164257026671,47.55611391980729,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445615,10.02024141640205,47.555906846466755,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445620,10.020263121662557,47.556363507344216,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445622,10.020747299969818,47.55604539629556,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445623,10.01998141383558,47.55646786366854,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445630,10.02051131648563,47.556836745138085,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445631,10.020389491100053,47.55689870607069,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445632,10.020634302721058,47.556781754732064,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445633,10.020612563201164,47.557056755002066,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445635,10.020844749996723,47.556965596276946,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445641,10.020916573293347,47.5565953155094,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445642,10.019772800681325,47.5551948422718,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445643,10.02140914998835,47.55644529629924,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445644,10.021413538163905,47.55670476417151,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445645,10.021075049996519,47.556850146273895,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445646,10.021479949991404,47.55693744628283,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445647,10.019664355190672,47.55602691440912,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445648,10.019976326447907,47.555898930912825,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445649,10.019846349993575,47.55620744628194,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445650,10.019776868030338,47.556331443727196,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445651,10.01976712460956,47.55554103984737,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445707,10.02264799999593,47.55678234627964,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445718,10.023141513896123,47.55704657983562,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445720,10.020482712135143,47.557926512479426,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445726,10.020147509926733,47.557121965152554,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445727,10.020010311566514,47.55725867388721,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445728,10.019910159417872,47.55755737788348,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445733,10.020754504970643,47.5574100772317,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445735,10.020394328478506,47.5574699026955,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445736,10.019864549986695,47.55803514628195,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445746,10.022631737465098,47.55732307794864,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445747,10.02232931949321,47.557501618945395,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445752,10.022942813771,47.557732059430194,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445753,10.021112149979604,47.55737824629061,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445754,10.02331673182531,47.55727350534111,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445757,10.02344925927195,47.557465924461795,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445758,10.021294988061353,47.557653922031506,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445761,10.023634128475381,47.557703878340924,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445762,10.021852449985793,47.55721454628002,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445765,10.021599949002887,47.557300291281955,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445772,10.022176869306145,47.55709520826067,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445784,10.021997416469615,47.557565770394866,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445787,10.023748858154226,47.55789407731604,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445793,10.021217646041961,47.557929840919314,33532,1163850006,0.4,False -BranchTee_mvgd_33532_lvgd_1163850006_building_445813,10.021678449972352,47.55777359629814,33532,1163850006,0.4,False -BusBar_mvgd_33532_lvgd_1163850007_LV,10.025241599999998,47.55475769624405,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_1,10.024369299999996,47.55356149624391,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_2,10.024636400000004,47.55350619624392,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_3,10.025177600000006,47.55335889624388,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_4,10.0241459,47.55365629624389,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_5,10.0251294,47.553335396243924,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_6,10.023440351074065,47.55301059815497,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_7,10.024286200000008,47.55292709624385,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_8,10.024803399999994,47.55373479624391,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_9,10.024086099999996,47.552924596243805,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_10,10.024872500000006,47.55381669624389,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_11,10.025481900000008,47.55334769624391,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_12,10.024648400000006,47.554461996244,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_13,10.024753600000006,47.55445769624396,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_14,10.025296699999995,47.554410596244026,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_15,10.025133099999996,47.55455859624398,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_16,10.027180999999995,47.55402789624394,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_17,10.027153199999999,47.55408259624392,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_18,10.027256000000001,47.55373479624391,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_19,10.027194299999994,47.553897196243945,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_20,10.027366000000002,47.55386219624394,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_21,10.025752000000002,47.55430769624396,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_22,10.026511600000005,47.55414159624396,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_23,10.026890599999994,47.55417119624398,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_24,10.027035100000006,47.554197896243956,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_25,10.027117600000004,47.554277796244016,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_26,10.0272275,47.550875396243654,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_27,10.024384500000002,47.55445179624401,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_28,10.026522200000002,47.55390289624394,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_29,10.025684199999999,47.553848596243924,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_30,10.024916199999998,47.55386309624394,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_31,10.024880200000002,47.55406669624398,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_32,10.024829599999995,47.55421989624394,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_33,10.025067200000006,47.55462189624401,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_34,10.026660700000004,47.553677596243894,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_35,10.025169700000003,47.55364839624392,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_36,10.025908300000001,47.5557594962441,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_37,10.026161199999997,47.55558529624407,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_38,10.025977299999996,47.55593779624411,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_39,10.025875200000005,47.5558546962441,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_40,10.027802099999999,47.554856496244014,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_41,10.026800099999999,47.55496679624405,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_42,10.026303600000002,47.55520129624407,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_43,10.025567199999998,47.55510809624401,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_44,10.0254981,47.55517489624406,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_45,10.025914099999996,47.55543049624405,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_46,10.025502099999999,47.555219496244014,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_47,10.025596799999997,47.55533649624408,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_48,10.026433100000006,47.555140196244054,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_49,10.026172600000006,47.55609959624413,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_50,10.026565799999995,47.556399996244146,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_51,10.026737499999998,47.55652169624419,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_52,10.026440099999993,47.55630309624413,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_53,10.026354800000005,47.55471799624396,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_54,10.027741200000001,47.554443996243975,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_55,10.026706900000004,47.55611589624413,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_56,10.026850200000005,47.556008296244116,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_57,10.027784600000004,47.554543796244026,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_58,10.02475150000001,47.55583709624411,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_59,10.025108899999994,47.55594929624414,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_60,10.025511502020063,47.55568989700278,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445516,10.02376603917016,47.55287247428561,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445517,10.024319050000289,47.55286244625214,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445532,10.023465273551556,47.55315182740483,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445536,10.024463519913029,47.553705524165224,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445538,10.024624965710464,47.55391352041802,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445540,10.024612847057535,47.55415206078548,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445541,10.024795609338486,47.55413022158866,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445544,10.027086991614754,47.55084101805383,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445560,10.025350665680419,47.553629957813214,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445562,10.02558598123857,47.553357288855764,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445563,10.02388236403641,47.553446201214335,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445564,10.024167173250929,47.553291217224945,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445567,10.023192768507862,47.552923129323695,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445570,10.024067020265546,47.55389179015372,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445573,10.025072021408802,47.554037153941046,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445575,10.02346224045428,47.552877824480134,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445577,10.025984156374516,47.553672481252086,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445579,10.025771574130582,47.55415898877346,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445580,10.02624779994772,47.554031996341735,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445582,10.02427830000426,47.554260546441185,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445584,10.026828902771829,47.55431845817103,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445585,10.027531567885163,47.55373804303141,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445586,10.02734229287227,47.554015518117794,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445587,10.026339399971096,47.554266046286884,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445590,10.027363155217852,47.55355262762087,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445591,10.026736660898004,47.55376247063167,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445592,10.027304588475495,47.55420666471345,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445594,10.027508799999467,47.554014246274,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445595,10.027595599993935,47.5542087962739,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445597,10.027061800002356,47.55375194634875,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445599,10.02674480000161,47.553952796264774,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445600,10.027018400001554,47.553956596258715,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445607,10.026736600001607,47.55404579626478,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445608,10.026595590352985,47.554256066831975,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445609,10.027012774123213,47.55403485000854,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445663,10.024539850009617,47.55433564630945,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445669,10.024390970999871,47.55459436975509,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445679,10.024999215298525,47.55521244679797,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445686,10.024819284130109,47.555598793754825,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445730,10.025002699997069,47.555762146312055,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445822,10.025311022692835,47.55458697999301,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445823,10.02508494999544,47.554815796289006,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445825,10.025586098262949,47.55481292776933,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445826,10.025926388482445,47.55461833726029,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445832,10.025330741672342,47.55511267888484,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445833,10.025044649990427,47.55537844629749,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445835,10.025325337781313,47.55562528154031,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445836,10.025410175129911,47.556029026950036,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445838,10.0256137524671,47.555904884150294,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445839,10.026220450010433,47.555960046326994,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445840,10.025503845635942,47.55538537117826,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445841,10.025754058166283,47.555114368932834,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445843,10.026044433410677,47.55512696000531,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445844,10.025826849992674,47.55565709630036,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445846,10.026423449991892,47.5545077462758,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445847,10.025913254772737,47.5560911129919,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445848,10.025787204436398,47.55632031250473,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445849,10.026135954647396,47.55635619206001,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445850,10.026269699999068,47.55628949627043,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445851,10.026093416690777,47.556514446944874,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445853,10.026536766082655,47.556112227491525,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445854,10.027238332054209,47.55596941582956,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445855,10.026902910972577,47.5545728738499,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445856,10.026871349999887,47.5548310462658,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445858,10.027427500000003,47.55439689628358,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445859,10.027469161515354,47.554584422118985,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445863,10.026425323176031,47.55646180814449,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445864,10.026410294744784,47.556646705130674,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445865,10.027468388278614,47.554768369875084,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445871,10.026983299178386,47.55643296656751,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445872,10.028183246324483,47.55532169899763,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_445874,10.026568545396062,47.556765530162366,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_34967285,10.025159300000004,47.5533290962439,33532,1163850007,0.4,False -BranchTee_mvgd_33532_lvgd_1163850007_building_34967286,10.02519030000001,47.55333209624385,33532,1163850007,0.4,False -BusBar_mvgd_33532_lvgd_1163850008_LV,10.015132399999995,47.54207139624289,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_1,10.017218400000004,47.539944196242686,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_2,10.019305299999996,47.54103709624282,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_3,10.017249500000002,47.539676896242696,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_4,10.0173661,47.53878199624264,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_5,10.016427300000002,47.53931939624265,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_6,10.017266100000002,47.53935539624265,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_7,10.017150300000004,47.540067996242676,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_8,10.017318999999999,47.539999696242724,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_9,10.020002999999999,47.54029809624275,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_10,10.016011100000002,47.54128209624278,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_11,10.016728299999999,47.53957889624267,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_12,10.016351199999999,47.540909896242745,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_13,10.016676000000002,47.544549596243115,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_14,10.015624599999999,47.543714096243065,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_15,10.0155251,47.54293219624298,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_16,10.017157700000002,47.543827196243,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_17,10.016136399999995,47.5441724962431,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_18,10.017876799999996,47.54399749624309,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_19,10.0164346,47.54290659624298,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_20,10.016564900000004,47.54441039624311,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_21,10.016641500000002,47.5444812962431,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_22,10.016487799999997,47.54435359624312,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_23,10.015767800000006,47.54403819624304,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_24,10.015792099999997,47.54316379624297,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_25,10.016299300000004,47.54348599624301,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_26,10.015469,47.54398379624303,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_27,10.018703600000004,47.54324059624297,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_28,10.0163116,47.5424000962429,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_29,10.018638099999993,47.54113579624278,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_30,10.019359,47.54319359624298,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_31,10.018141199999992,47.54282239624296,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_32,10.018753600000005,47.543071396242965,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_33,10.019151799999996,47.54189559624284,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431753,10.016359050013525,47.53941944630509,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431760,10.016450846092056,47.539678008645794,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431762,10.015362349969742,47.54332264629396,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431763,10.017013542250002,47.53895832868212,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431764,10.017047416999633,47.53940562302424,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431765,10.019425959060763,47.542188718967125,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431766,10.016873383799911,47.539962592232285,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431770,10.018788221274626,47.54104350183877,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431772,10.016366783226434,47.54106854215541,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431775,10.016484600036977,47.541284896340365,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431781,10.019430938298306,47.540956485097,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431784,10.015182849993586,47.54324709625693,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431787,10.017821772448196,47.54323346318367,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431788,10.018953635136464,47.54326086851177,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431793,10.019528126047184,47.54329725830852,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431810,10.016164475947944,47.543849961976726,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431811,10.015329439412746,47.543439050248146,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431814,10.016751999999846,47.544392546246236,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431816,10.01644316020117,47.54457582695017,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431826,10.01748580005081,47.54360549634844,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431827,10.015492014045597,47.54415374741411,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431830,10.016788355701491,47.54409064619765,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431832,10.018217773927606,47.54382725126184,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431835,10.01609000246908,47.54405764512319,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431838,10.015778744980583,47.544267013308236,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431861,10.016352198965679,47.54417314561921,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_431877,10.016722502289078,47.54432422860096,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_444858,10.020065674942101,47.54046964384001,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_34999648,10.016089789614517,47.54258577988101,33532,1163850008,0.4,False -BranchTee_mvgd_33532_lvgd_1163850008_building_34999649,10.016417764738145,47.54303321403075,33532,1163850008,0.4,False -BusBar_mvgd_33532_lvgd_1163850009_LV,10.021708699999998,47.5685909962452,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_1,10.021606200000008,47.5704576962454,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_2,10.022129999999997,47.56905009624528,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_3,10.019881199999999,47.57034369624539,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_4,10.021555500000002,47.56885489624524,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_5,10.021444999999995,47.569708696245335,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_6,10.020627599999997,47.570637096245406,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_7,10.021365099999999,47.56806949624518,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_8,10.021298199999997,47.56782749624517,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_9,10.020510999999994,47.568183696245185,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_10,10.0210743,47.56786609624513,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_11,10.0210917,47.568359496245186,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_12,10.020946099999998,47.56675289624504,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_13,10.021420699999995,47.568354696245194,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_14,10.0209442,47.56832449624518,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_15,10.023984700000003,47.567343996245114,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_16,10.021951700000004,47.5681202962452,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_17,10.022017600000003,47.5683248962452,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_18,10.022049399999997,47.56849329624525,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_19,10.021869099999995,47.56842689624522,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446050,10.021148850003577,47.566839746307046,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446060,10.022193906768402,47.56869143548108,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446062,10.021036349984671,47.567963246275596,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446064,10.024390382668855,47.567585448256516,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446067,10.021919817531863,47.56904091030531,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446068,10.020037282978434,47.570452282225936,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446070,10.020484746587595,47.57066298994864,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446071,10.021841786329297,47.569717295362764,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446072,10.020278950018929,47.568244196353255,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446074,10.020828350045033,47.56846549630336,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446076,10.020871250096205,47.56878994636112,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446077,10.021127311370163,47.56811110366489,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446078,10.021193802526138,47.57030460965121,33532,1163850009,0.4,False -BranchTee_mvgd_33532_lvgd_1163850009_building_446083,10.021665846899634,47.56810623610618,33532,1163850009,0.4,False -BusBar_mvgd_33532_lvgd_1163850010_LV,10.017486399999996,47.55270169624386,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_1,10.017878399999995,47.553541596243896,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_2,10.016183199999999,47.55436269624401,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_3,10.016667749202247,47.55444779732085,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_4,10.017462000000002,47.55327309624392,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_5,10.0175105,47.55382809624396,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_6,10.016626099999998,47.55370769624391,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_7,10.0171523,47.55453289624399,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_8,10.01733140122069,47.554180496421544,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_9,10.015972500000005,47.551578696243745,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_10,10.014889000000002,47.55173109624373,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_11,10.0150086,47.55169009624374,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_12,10.015103599999996,47.55151719624375,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_13,10.015189399999995,47.55112329624372,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_14,10.015207100000005,47.550831196243635,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_15,10.015935800000006,47.55166759624374,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_16,10.016543599999999,47.55155789624372,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_17,10.016573,47.551963996243735,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_18,10.017327899999994,47.552455996243815,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_19,10.015164099999994,47.55123959624371,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_20,10.014887899999994,47.5507848962437,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_21,10.015863799999996,47.55081729624368,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_22,10.016565099999998,47.550928896243676,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_23,10.018063299999996,47.55251419624387,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_24,10.018322800000005,47.552294396243774,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_25,10.017540100000002,47.5525549962438,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_26,10.013357800000003,47.55497919624397,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_27,10.013300200000005,47.555076396244026,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_28,10.017866400000004,47.55158729624378,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_29,10.016112199999997,47.55196449624378,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_30,10.016842800000004,47.55219559624381,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_31,10.015959400000002,47.55179219624376,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_32,10.017091399999996,47.551881796243755,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_33,10.017188199999998,47.55238939624382,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_34,10.0171705,47.5522438962438,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_35,10.019478198173188,47.55319564774409,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_36,10.018637951973709,47.55340944661108,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_37,10.019240499999993,47.55255419624381,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_38,10.018308500000007,47.552825296243846,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_39,10.0189071,47.55303029624385,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_40,10.019716300000008,47.55269189624382,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_41,10.018638099999999,47.55264479624381,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_42,10.018576400000002,47.5527515962438,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_43,10.018929000000004,47.552999196243825,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441611,10.014655350022581,47.55104754631193,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441616,10.015607563250233,47.55149660535948,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441618,10.014961950003055,47.55115699631253,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441619,10.014891071860054,47.551499226390405,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441620,10.01487852913017,47.5515676689278,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441623,10.014943847948409,47.55142628588163,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441625,10.015467962266829,47.551105982611865,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441626,10.015633223621833,47.55171953765845,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441629,10.015893441494558,47.552007098392195,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441630,10.015934900030912,47.55114424628244,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441631,10.015639465753592,47.55132478744489,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441632,10.016518466754023,47.55118871760275,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441634,10.015604705570382,47.5514265432186,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441635,10.016188858642474,47.55170950630483,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441636,10.016255107436523,47.551880909564005,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441638,10.016180219058828,47.55243464160637,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441640,10.017100049985027,47.552024246371836,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441642,10.017431479127715,47.552185206128364,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441644,10.017145250001445,47.552491946251195,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441645,10.01725179999868,47.55260179625177,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441646,10.01483580000251,47.553044146316225,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441647,10.01627024023713,47.55375714026005,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441648,10.01672919702122,47.55385822533983,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441650,10.016395850022526,47.55410949639006,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441651,10.01784978116644,47.552387234831976,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441653,10.018148200005365,47.55261789631416,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441655,10.018452489581707,47.55233893661437,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441656,10.018550299138868,47.55249147967279,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441657,10.017185875934484,47.55338798123624,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441658,10.018036675175498,47.55354088295634,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441660,10.017115325790956,47.55402889892218,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441661,10.016863409934112,47.55429689828939,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441662,10.01712215000244,47.55422334625482,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441663,10.018393400010918,47.55270299631221,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441664,10.019155600014926,47.55241539629727,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441665,10.018937159578778,47.55255862989664,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441666,10.01886583806825,47.55274963666766,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441667,10.01770098259298,47.55138929177925,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441669,10.019340500008843,47.55270664628004,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441670,10.01910249964521,47.553196129854676,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441671,10.017425799293457,47.554261460641136,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441672,10.017621245751656,47.5539551331742,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441673,10.019429100001673,47.55304514632612,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441675,10.019372990827799,47.55329579748566,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441678,10.018474427225726,47.552973159720665,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441679,10.01865491189355,47.55308296876386,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441680,10.01848759446724,47.553303482302226,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441681,10.019012198493302,47.553454329153055,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441683,10.018421450010656,47.55340064628422,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441686,10.018714555283216,47.553605027370516,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441692,10.019156018415394,47.55301049808214,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441699,10.01357844226794,47.55496502133664,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441707,10.013403171432884,47.55519320740453,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441708,10.015871084299667,47.554401638230274,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441713,10.013545858278052,47.55521734659006,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441718,10.016339315157275,47.55452659826779,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441732,10.017397099999279,47.55463869629671,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441733,10.016791889631083,47.55466643265204,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441736,10.017291875821668,47.55483368797807,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441738,10.017478775689362,47.554447002914316,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_445470,10.019543380628205,47.552528392144964,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_445472,10.019644785209564,47.55276221554282,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_445477,10.019859631085087,47.55262139252277,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_445478,10.019561650002483,47.552886146252554,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_445481,10.019717600006544,47.5531130963447,33532,1163850010,0.4,False -BranchTee_mvgd_33532_lvgd_1163850010_building_441693,10.018960556189322,47.553177090433316,33532,1163850010,0.4,False -BusBar_mvgd_33532_lvgd_1163850011_LV,10.022112600000002,47.55381729624391,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_1,10.023082100000003,47.55144219624374,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_2,10.022298899999996,47.55202879624376,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_3,10.022329499999996,47.5520668962438,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_4,10.020913000000002,47.551977696243746,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_5,10.023842700000001,47.55154949624373,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_6,10.022595000000004,47.550775896243664,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_7,10.020433000000006,47.55128029624371,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_8,10.0223371,47.55311849624385,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_9,10.022630600000001,47.55252809624383,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_10,10.0222167,47.55007379624358,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_11,10.0243426,47.55237219624381,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_12,10.023668300000002,47.55187559624374,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_13,10.0213424,47.55198869624373,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_14,10.022005500000002,47.552296796243816,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_15,10.022068299999997,47.5525562962438,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_16,10.0221493,47.55278879624385,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_17,10.022423400000001,47.55291469624389,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_18,10.020785399999998,47.55224729624378,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_19,10.0223704,47.55302559624386,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_20,10.022333199999997,47.55312949624386,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_21,10.023234700000001,47.55219169624379,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_22,10.022794599999996,47.55309659624385,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_23,10.0236035,47.55238269624381,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_24,10.020265448184043,47.55113504752167,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_25,10.022778499999998,47.551732896243706,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_26,10.023688299999995,47.55208539624382,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_27,10.023443400000003,47.551852496243754,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_28,10.023096999999998,47.55183399624375,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_29,10.022555700000003,47.55132589624369,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_30,10.021920299999998,47.55177339624377,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_31,10.022232,47.553459996243916,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_32,10.022587499999997,47.550619596243656,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_33,10.022157899999996,47.55366389624393,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_34,10.023942899999994,47.552382696243804,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_35,10.022451000000004,47.55029399624358,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_36,10.022018999999997,47.54988799624358,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_37,10.021995099999994,47.55354259624388,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_38,10.022601300000005,47.551463296243675,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_39,10.02257179999999,47.55423579624397,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_40,10.023045000000003,47.55412719624392,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_41,10.023118400000007,47.5536185962439,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_42,10.0234022,47.55341249624388,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_43,10.022803000000005,47.55421149624401,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_44,10.022946599999994,47.55390999624394,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_45,10.023351199999999,47.553999896243965,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_46,10.021196799999995,47.55362669624393,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_47,10.021334099999995,47.553696996243914,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_48,10.021399999999995,47.55359749624388,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_49,10.021746599999998,47.55377359624393,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_50,10.021008300000007,47.55379689624394,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_51,10.020554499999994,47.55304019624387,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_52,10.0201424,47.5529631962439,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_53,10.0200493,47.55336099624387,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_54,10.021084400000001,47.553557096243885,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_55,10.020821800000006,47.553493696243876,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_56,10.020420899999996,47.55345399624389,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_57,10.0213449,47.55281929624385,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_58,10.021192799999996,47.553095196243866,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445420,10.02221385000077,47.550127196252106,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445429,10.019953438427883,47.551393514060706,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445436,10.0216674979392,47.550257762807064,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445438,10.022204449991955,47.550347046296366,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445443,10.022332699994815,47.55050854627851,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445449,10.022379239940895,47.55073102569907,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445451,10.023584350003388,47.55139764627037,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445452,10.022007824422916,47.54971600117863,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445453,10.022336289608537,47.55092097186349,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445454,10.021748039363485,47.54999743552938,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445455,10.02226614623613,47.549867581636505,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445458,10.023746827015966,47.55141109111164,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445459,10.022463099999399,47.55091794626844,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445462,10.022198550003996,47.552162846290706,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445463,10.02232790000062,47.551082996276364,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445464,10.020996600010646,47.552680696307995,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445465,10.021225180752275,47.5527208384481,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445466,10.020929600007412,47.55291099630117,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445467,10.02110287950039,47.55294424016143,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445468,10.02000538384263,47.55180500563652,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445469,10.020776000002645,47.55184619629183,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445473,10.021815233197156,47.55254897925105,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445474,10.022761749999473,47.55095099633853,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445475,10.022223262167406,47.55240272011069,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445476,10.022215250024086,47.55271144628236,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445479,10.022807149999998,47.551208146303644,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445482,10.020014419546342,47.55319450015241,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445483,10.020155350011272,47.55280274628679,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445484,10.022305019646039,47.551259598498824,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445485,10.02066915000011,47.55228009625517,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445486,10.01972858426986,47.553420072937186,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445488,10.020468020739207,47.5529041090301,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445489,10.021415326019621,47.55188229980278,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445490,10.02003248045331,47.5534474935108,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445494,10.023188929538392,47.5513113031654,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445498,10.020322450009633,47.553272496337435,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445499,10.020665300004842,47.553120346266425,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445500,10.020717870071513,47.55336033839864,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445501,10.021404433567723,47.55396742073349,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445508,10.02369734999351,47.55199949626529,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445509,10.024108749993141,47.55225179629077,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445510,10.020964167284273,47.553144232942614,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445511,10.021450191332672,47.55304290634059,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445512,10.021566352760862,47.553890744982255,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445513,10.021038822521621,47.55344548150951,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445514,10.020921491769665,47.55360882313541,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445515,10.024258899999896,47.55233599624661,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445518,10.021425700063354,47.55332714636157,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445520,10.021256500012855,47.55351199630807,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445521,10.02151294872901,47.55357605815948,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445522,10.022720068092642,47.552984625731796,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445523,10.021758354243039,47.55364607780043,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445524,10.021800476081063,47.553911749625705,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445525,10.022529886301655,47.55348476795522,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445526,10.021968658713384,47.5532282676065,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445527,10.022224600003504,47.55299264631158,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445528,10.021783674691171,47.55343215812249,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445529,10.021190854960464,47.55385572671068,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445530,10.02302260670826,47.553191883804246,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445534,10.023228654183624,47.553376677222516,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445535,10.022928850003584,47.55370109633069,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445537,10.022973956340891,47.55163801581385,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445539,10.023271457363778,47.551729717345424,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445542,10.023587200001842,47.5517218962653,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445546,10.023237724687553,47.55367923890434,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445547,10.02319184065108,47.553877913368396,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445551,10.02362846266811,47.553728534357745,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445552,10.023319699984262,47.55207864628737,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445553,10.023552003817013,47.55410955011073,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445559,10.02244470963168,47.55254402049148,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445561,10.023571749998592,47.55227799627783,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445571,10.023704847842493,47.55403676661231,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445578,10.023843742591964,47.55174027006508,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445666,10.02300110937446,47.55433332534862,33532,1163850011,0.4,False -BranchTee_mvgd_33532_lvgd_1163850011_building_445545,10.022498225784561,47.55401310696151,33532,1163850011,0.4,False -BusBar_mvgd_33532_lvgd_1163850012_LV,10.021014800000001,47.55935469624443,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_1,10.020290999999999,47.560246296244486,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_2,10.020507199999996,47.56072409624453,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_3,10.020901499999994,47.56121039624458,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_4,10.020202000000003,47.55977139624448,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_5,10.020401199999997,47.56060959624453,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_6,10.021058299999996,47.561224696244565,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_7,10.018890100000004,47.55935129624445,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_8,10.019418700000001,47.561098996244624,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_9,10.018455000000003,47.5599518962445,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_10,10.0195974,47.55999569624451,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_11,10.019531,47.55962729624444,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_12,10.018930900000004,47.5598963962445,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_13,10.0200619,47.55949319624441,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_14,10.019975799999997,47.559055496244355,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_15,10.0200221,47.55878309624441,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_16,10.019080299999997,47.560771396244554,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_17,10.018963999999997,47.56071229624459,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_18,10.020157699999997,47.55948139624441,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_19,10.0200371,47.558699796244376,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_20,10.018002899999995,47.560929796244544,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_21,10.018452599999996,47.560888096244554,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_22,10.018812999999994,47.56087519624456,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_23,10.018952400000002,47.56018829624447,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_24,10.018939299999996,47.560034096244465,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_25,10.018897699999993,47.55968689624447,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_26,10.019056799999994,47.55966339624444,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_27,10.023580199999996,47.55914129624439,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_28,10.023498500000002,47.559164096244366,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_29,10.022601699999996,47.55929779624443,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_30,10.021856399999995,47.559316296244404,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_31,10.0231414,47.559251796244425,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_32,10.0227698,47.56011409624445,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_33,10.022440500000004,47.55930259624443,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_34,10.022683599999997,47.55959999624443,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_35,10.022256699999994,47.558818896244325,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_36,10.022813100000008,47.560083596244525,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_37,10.022791300000002,47.55995919624447,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_38,10.0231357,47.558976996244404,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_39,10.021085199999995,47.55987549624444,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_40,10.023211999999997,47.56095289624458,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_41,10.022821900000002,47.56103589624456,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_42,10.022062050178441,47.559614848013226,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_43,10.021440499999999,47.559629696244485,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_44,10.023194999999998,47.560775496244545,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_45,10.021550300000005,47.56040509624449,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_46,10.021904699999995,47.560693596244555,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_47,10.021071099999999,47.55965759624446,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_48,10.021592500000006,47.56012719624444,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_49,10.023080200000003,47.56065029624457,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_50,10.022351299999999,47.56011869624448,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_51,10.0210937,47.56039419624449,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_52,10.021469199999999,47.56018629624449,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_53,10.021239599999996,47.55962749624448,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_54,10.022027099999997,47.55987989624447,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_55,10.022016399999995,47.56099299624452,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_56,10.021405999999999,47.56115029624452,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_57,10.021322899999998,47.55902809624438,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_58,10.020187599999996,47.55858659624431,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_59,10.022218500000003,47.558743196244336,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_60,10.021638999999999,47.55879649624435,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_61,10.022145699999996,47.558458496244334,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_62,10.020531700000005,47.55850169624434,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_63,10.021191499999995,47.55889099624438,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_64,10.021186600000004,47.5584940962443,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_65,10.021014800000001,47.55849279624441,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_66,10.021014799999996,47.55903109624437,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441801,10.019154295552344,47.55951537465795,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441831,10.018700407973242,47.55942846519647,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441834,10.018716786915554,47.559724331610596,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441836,10.019021880090664,47.559261273614894,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441921,10.018286607692191,47.56011849241002,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441922,10.01872291327215,47.560074559649735,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441923,10.01915443712549,47.55982856485545,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441925,10.019174564714321,47.56006441963017,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441926,10.019243076219206,47.560280910024304,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441932,10.018219335326545,47.56066352821885,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441933,10.018438950000208,47.56073224629599,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441937,10.018664949999437,47.560776696281,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441938,10.018377066082362,47.561037979310115,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441939,10.018679573955561,47.56105701169651,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441945,10.019313465389889,47.56062303696584,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_441948,10.019219000178044,47.56113141549211,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_442009,10.018087071966152,47.56107790355766,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_442014,10.018418764266194,47.55983692002308,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445714,10.020050478606366,47.55838996585205,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445731,10.020255249998753,47.55841134625727,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445734,10.020449442534723,47.55834052138197,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445737,10.020278872225179,47.558727220929654,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445738,10.020818328053805,47.55830095711712,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445739,10.020710219336923,47.55864942109209,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445740,10.020276774405716,47.559021141922805,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445741,10.020710175787341,47.558960822594976,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445742,10.02171420021668,47.55953407237756,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445743,10.021961649046583,47.55952937150432,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445745,10.022226508812174,47.559522044263005,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445748,10.019749648151452,47.559216990643684,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445749,10.019988726688162,47.55980800485247,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445750,10.02029905981057,47.55929989420158,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445751,10.020709649998897,47.5592492462777,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445755,10.020443699985329,47.55974849628339,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445756,10.020870871291622,47.55970491827085,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445759,10.02119081171534,47.55895582690122,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445760,10.021752362650833,47.55870932816875,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445764,10.02195820910474,47.5585920851495,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445766,10.021867089305871,47.5589381418644,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445767,10.022069180208549,47.5589049414723,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445768,10.021229288412332,47.559175122058534,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445779,10.020973333366433,47.55948017954107,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445780,10.021448791214144,47.55953794804345,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445781,10.021296578596955,47.559741053915296,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445782,10.021846058647975,47.55917738820213,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445791,10.023561809595206,47.558890453479115,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445792,10.023607441494878,47.558942542290474,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445794,10.023323397910582,47.559045180335396,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445795,10.02339664382072,47.55906448977143,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445796,10.022484615128239,47.559508444753746,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445801,10.022802966503088,47.55963272440868,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445810,10.023676799998743,47.558971546272105,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445817,10.021637090050856,47.558257804860894,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445820,10.022470102755046,47.55870429999626,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445824,10.019742105647618,47.558609484987755,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445829,10.023257150926078,47.55901561263834,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445830,10.01969021238251,47.558840309819324,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445837,10.019754579107827,47.559044695049884,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445965,10.021072774662846,47.56102926940478,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445966,10.021471030866829,47.56099632739882,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445967,10.021990032330606,47.56054039443621,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445972,10.020005476637603,47.560033248437755,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445973,10.02006831784892,47.56035385627088,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445975,10.020598724518583,47.56015756020467,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445976,10.02176100986877,47.56092762509484,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445978,10.019592310498497,47.5611759189537,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445981,10.020708982796894,47.56055012937247,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445985,10.020357261957153,47.56088068907816,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445986,10.020595566801656,47.561171545864475,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445987,10.021552042896165,47.56002394764968,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445988,10.021347822303216,47.560183687806706,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445993,10.021768702094024,47.56002984577888,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445995,10.022672549998028,47.5602964462519,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445996,10.022445520106485,47.56001912757805,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445997,10.021981021959492,47.5600275762034,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445998,10.022212324189798,47.56002101675581,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_445999,10.02287383622831,47.560475318524716,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_446001,10.022663928443526,47.56000589727473,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_446002,10.02293929999601,47.560119946339285,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_446004,10.022663249998034,47.56018694625184,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_446005,10.022667899998027,47.56024169625183,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_446012,10.022956275699649,47.560890471576634,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_446017,10.023485024589073,47.560572043353915,33532,1163850012,0.4,False -BranchTee_mvgd_33532_lvgd_1163850012_building_446024,10.023495620218796,47.56091560275421,33532,1163850012,0.4,False -BusBar_mvgd_33532_lvgd_1163850013_LV,10.011309700000002,47.550727096243655,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_1,10.008992999999995,47.548526896243445,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_2,10.0113647,47.550618496243615,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_3,10.009395299999994,47.54867729624346,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_4,10.010989900000002,47.55054649624362,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_5,10.011421099999998,47.55049689624366,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_6,10.010967000000004,47.550084196243624,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_7,10.012353699999997,47.550285096243634,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_8,10.011259800000001,47.550951696243665,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_9,10.011226500000006,47.55110319624368,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_10,10.012494899999997,47.551470696243726,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_11,10.0120902,47.55138469624373,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_12,10.012612700000002,47.5515250962437,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_431799,10.008706805201266,47.54870955994722,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441583,10.00925530006519,47.548883046365745,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441588,10.010777779500227,47.55063422275172,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441590,10.011108603957808,47.55069282066604,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441591,10.010997256122629,47.55097858169381,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441593,10.011260168300877,47.5512854683959,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441594,10.011624513595873,47.55059125115963,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441599,10.012433712998028,47.55049428849969,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441603,10.012510018967882,47.5515938501722,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441615,10.012241339444069,47.55133235837812,33532,1163850013,0.4,False -BranchTee_mvgd_33532_lvgd_1163850013_building_441617,10.012315157693441,47.55153951024117,33532,1163850013,0.4,False -BusBar_mvgd_33532_lvgd_1163850014_LV,10.0220596,47.554534796243956,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_1,10.0238513,47.55490619624402,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_2,10.023905899999995,47.55441959624394,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_3,10.022495699999997,47.554654496244005,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_4,10.023752799999999,47.555135196244066,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_5,10.023580199999994,47.55519559624405,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_6,10.023317800000003,47.55428329624398,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_7,10.022971500000006,47.554674596244055,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_8,10.023634200000004,47.554367596244006,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_9,10.023397900000003,47.55475009624399,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_10,10.023369299999995,47.55430489624399,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_11,10.023136700000002,47.55470039624399,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_12,10.023626598440895,47.55684934660727,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_13,10.023353500000002,47.55655429624416,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_14,10.022737400000002,47.55617489624409,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_15,10.022828600000002,47.55620009624414,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_16,10.023052700000006,47.55534659624406,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_17,10.0214995,47.55542509624403,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_18,10.021976700000003,47.5551623962441,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_19,10.022324100000004,47.555069396244036,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_20,10.022528700000004,47.55521999624407,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_21,10.022780400000002,47.55538379624406,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_22,10.022971400000001,47.555347496244075,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_23,10.022840399999993,47.555411196244066,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_24,10.023103499999994,47.55519289624404,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_25,10.023165,47.555302296244086,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_26,10.024363200000002,47.555612696244054,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_27,10.024722799999994,47.554873096244,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_28,10.023142599999995,47.55559599624411,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_29,10.023226799999994,47.55564019624407,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_30,10.024028699999997,47.55546209624404,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_31,10.020968300000003,47.55518889624408,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_32,10.024357099999996,47.55510509624404,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_33,10.0238362,47.55536759624411,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_34,10.022152600000004,47.556355996244186,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_35,10.022150100000003,47.55466109624403,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_36,10.022182299999999,47.554783896244004,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_37,10.022228000000007,47.55493279624405,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_38,10.024312999999994,47.55558639624412,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_39,10.021089199999995,47.55522489624407,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_40,10.021368500000005,47.555090696244065,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_41,10.021347099999998,47.55551609624407,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_42,10.021521700000003,47.5557325962441,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_43,10.022339499999998,47.55667609624421,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_44,10.0211376,47.555272196244076,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_45,10.020861399999998,47.55560269624407,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_46,10.018703499999997,47.55410759624395,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_47,10.018303200000005,47.55408029624393,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_48,10.019223799999997,47.55412769624398,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_49,10.018368799999994,47.55378859624388,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_50,10.019636900000002,47.55414019624395,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_51,10.0192819,47.55412999624396,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_52,10.019194200000003,47.55442859624399,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_53,10.019218500000003,47.554720396244036,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_54,10.019205000000003,47.554580896244005,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_55,10.020525200000005,47.554179096243956,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_56,10.019806899999995,47.553807096243965,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_57,10.022001499999996,47.55425239624398,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_58,10.020641500000002,47.55382649624394,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_59,10.021999200000003,47.55448659624401,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_60,10.020469399999993,47.55394459624394,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_61,10.021654500000002,47.55425919624396,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_62,10.020575399999998,47.553975496243915,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_63,10.020526300000004,47.55432659624396,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_64,10.020622100000002,47.555060296244065,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_65,10.0205356,47.55512049624409,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_66,10.0202216,47.554459896244,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_67,10.0209894,47.55448199624392,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_68,10.020563200000002,47.55537559624404,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_69,10.020208199999994,47.554684396244035,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_70,10.020755600000001,47.55556149624407,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_71,10.021178200000003,47.554805496244015,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_72,10.021613099999998,47.554636996243985,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_73,10.021405400000008,47.55471139624406,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_74,10.020692699999994,47.554944096244,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_75,10.020612100000003,47.554732096244024,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_76,10.022202899999995,47.55450199624395,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441682,10.018577800007925,47.55379124626655,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441685,10.018239000009878,47.55358509628598,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441687,10.01847355824983,47.55398012417744,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441688,10.018772150000652,47.553988596289535,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441689,10.0191226212779,47.553901762119935,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441691,10.01936705807897,47.55389730275858,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441696,10.019451534990433,47.55429714204662,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441756,10.018926279858093,47.554372768609575,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441763,10.019496920040243,47.55455862073315,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_441764,10.0190802999942,47.55486299631051,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445493,10.019778800003495,47.55427989630648,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445495,10.019976510415118,47.554029673614274,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445496,10.020240040744463,47.553797837605174,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445497,10.020542750009726,47.55364264634607,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445502,10.019658601073225,47.55371672102794,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445503,10.019854950005188,47.55371014627573,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445505,10.020308750006752,47.55402554632402,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445506,10.020356999997615,47.55431609631913,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445507,10.019676228674644,47.55394095481283,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445519,10.021551292418087,47.554159854137886,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445531,10.021622421012957,47.55408589123938,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445533,10.021885553700004,47.554114530901614,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445557,10.023409450339539,47.55417562961072,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445558,10.023510606909573,47.55423906137805,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445572,10.023725283513068,47.554194096892395,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445574,10.02383160000469,47.5543008962905,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445576,10.024011231835145,47.55414567498012,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445581,10.024004351437162,47.55430414680295,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445593,10.019548462895969,47.55477849823574,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445602,10.019766851676899,47.554875118386136,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445603,10.019765429962757,47.55455337181453,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445604,10.021329431065032,47.55486655149068,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445605,10.021387968926176,47.55496079105936,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445606,10.021489015566427,47.554850869093315,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445611,10.021840740123599,47.55441653549989,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445612,10.020111712176682,47.55478446821691,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445613,10.021591788113463,47.554523974020015,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445614,10.020515716261157,47.555851064475256,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445616,10.022244891641485,47.55438441917619,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445617,10.020148899992833,47.55496924628116,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445618,10.021733846332248,47.554728726994455,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445619,10.020722760242975,47.55575799388701,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445624,10.02198141174121,47.554679935986016,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445625,10.022056518996525,47.55495244323171,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445626,10.021001500000066,47.55504909632756,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445627,10.021169913955896,47.55501211227773,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445628,10.021497855134967,47.555265312906755,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445629,10.020989334945183,47.55538553335887,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445634,10.020467126543963,47.55466755052218,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445636,10.022266317695712,47.556151493623716,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445637,10.021741225795195,47.555093842100405,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445638,10.021722567205215,47.55559313848922,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445639,10.020791472990854,47.55472828384745,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445640,10.022100758978027,47.55541919667441,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445652,10.023775226432036,47.55455787527229,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445653,10.024048600009099,47.55458079634615,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445654,10.021972082087713,47.55659660215184,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445655,10.022344699998822,47.55457599626703,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445656,10.022864200014153,47.554475046275606,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445657,10.020372542790572,47.55510416482062,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445658,10.022661350010134,47.55457704627522,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445660,10.023962277530133,47.55494290529405,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445661,10.020733532848622,47.55515507945745,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445662,10.024177617462433,47.554822030027445,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445664,10.02248757229429,47.5548855551141,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445665,10.022848994372687,47.55477609834236,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445667,10.023203014993097,47.554401022309435,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445668,10.023061237783795,47.55460947748555,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445670,10.02480491207002,47.55497521398726,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445671,10.024264950000982,47.55534004629268,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445672,10.023885777458718,47.55560077679337,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445673,10.02046321771703,47.55545043707341,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445674,10.024519068541471,47.55518067524143,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445675,10.023365079705846,47.55464195559848,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445676,10.023554491922228,47.554512418366656,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445677,10.020726003761364,47.55534796531496,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445678,10.023072950000957,47.554818246303526,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445680,10.024561349988305,47.55538279628195,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445681,10.02361839922065,47.55492905234511,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445682,10.021180599991164,47.55460614626983,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445683,10.02240498129565,47.5552978799059,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445684,10.022720500001832,47.555213746289326,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445685,10.022875366418825,47.55529354712057,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445687,10.022803183501422,47.55601060204837,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445688,10.022516782562102,47.55606580177423,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445689,10.022621961957208,47.55637440126184,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445690,10.02156407518655,47.55436819329421,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445691,10.023206014959388,47.5557782439617,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445692,10.02258202690074,47.55547558729968,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445693,10.022980915871686,47.55510771524766,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445694,10.0213833999946,47.55457579631122,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445695,10.023036395170665,47.55526727838356,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445696,10.023142596782192,47.55625601236543,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445697,10.023269933178552,47.555260146581446,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445699,10.020991685430545,47.554697723975856,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445700,10.022389050432112,47.55648671319073,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445701,10.023405283179336,47.55513042701925,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445702,10.022686551344247,47.55651888504006,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445703,10.023620550018759,47.555074946272775,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445704,10.022335157159038,47.556812666533204,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445705,10.021231262403823,47.55469021525767,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445708,10.023027452590073,47.556687397839816,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445710,10.023796601675768,47.556706824438585,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445712,10.02351084248783,47.55648490195617,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445719,10.023441699996564,47.55690034636016,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445729,10.024506700013474,47.55571479634618,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_445583,10.020087376466256,47.55435508665868,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_34967277,10.020651000000012,47.55423369624394,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_34967278,10.021399800000005,47.554198996243954,33532,1163850014,0.4,False -BranchTee_mvgd_33532_lvgd_1163850014_building_34967279,10.0222613,47.554714396244016,33532,1163850014,0.4,False -BusBar_mvgd_33532_lvgd_1163850015_LV,10.016221000000002,47.56496159624492,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_1,10.014967099999996,47.56499219624491,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_2,10.0132946,47.5646782962449,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_3,10.015071299999997,47.56499859624491,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_4,10.013522999999998,47.56613259624505,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_5,10.0116363,47.56638549624505,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_6,10.015103699999994,47.56561899624497,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_7,10.012726000000006,47.5652352962449,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_8,10.015064850696046,47.56462409632206,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_9,10.014106400000003,47.56564269624497,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_10,10.015691300000006,47.565036996244906,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_11,10.014091599999992,47.564937996244886,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_12,10.015354000000002,47.56372609624481,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_13,10.0150707,47.56511949624494,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_14,10.013632102720774,47.56426164680915,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_15,10.013010301532027,47.56495679663406,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_16,10.016063700000002,47.5641248962448,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_17,10.016231999999995,47.564830496244916,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_18,10.016100399999997,47.56360659624478,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_19,10.016124899999994,47.56442089624489,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_20,10.01615895057311,47.56310034632374,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_21,10.0165336,47.56539009624491,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_22,10.016331199999994,47.56504319624489,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441874,10.013297062881675,47.56427363453452,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441876,10.013358550093946,47.56513194637359,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441969,10.01641208266153,47.56315137083266,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441971,10.016441478351854,47.5629290209445,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441972,10.01641203097868,47.56449833190423,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441974,10.016696163334329,47.5644435680861,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441975,10.016638964220652,47.56318807751545,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441976,10.015621978995595,47.56377010458204,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441977,10.015571810993347,47.56468808966013,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441979,10.015805059559359,47.56520202576026,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441980,10.01641987416788,47.56335540083622,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441981,10.016358275246061,47.563587841906994,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441982,10.01666950555991,47.563413421637634,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441983,10.016349950005065,47.56380944628616,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441984,10.016636224680754,47.56363688805039,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441985,10.016508175925216,47.56474004244258,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441986,10.016764299999878,47.56487964632448,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441987,10.01653053178998,47.564987631565515,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441991,10.016648973929966,47.563825210149524,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441998,10.014672002555209,47.564593902846624,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442000,10.014687148779336,47.56523685304652,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442004,10.01567790000672,47.564271296271635,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442005,10.016328206794238,47.56403763438171,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442006,10.016200741426195,47.56419912077635,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442012,10.016403665222148,47.564262507678784,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442013,10.016526160386922,47.56426797736834,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442038,10.011960347014963,47.566563620861324,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442044,10.012958763298968,47.56541230665812,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442051,10.013215361811481,47.565648943985686,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442055,10.014584469384088,47.565687248388485,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442056,10.01494819999132,47.56563624633723,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442062,10.015338931327378,47.56563727930237,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442065,10.015930339672607,47.565443074618074,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442067,10.016236370028551,47.56534823309313,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442068,10.016701549998563,47.56531414646183,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_442073,10.01668400723621,47.56554185406673,33532,1163850015,0.4,False -BranchTee_mvgd_33532_lvgd_1163850015_building_441875,10.014030156330795,47.56442787161928,33532,1163850015,0.4,False -BusBar_mvgd_33532_lvgd_1163860000_LV,10.0088695,47.54693799624336,33532,1163860000,0.4,False -BranchTee_mvgd_33532_lvgd_1163860000_1,10.008776600000001,47.546621796243286,33532,1163860000,0.4,False -BranchTee_mvgd_33532_lvgd_1163860000_building_431786,10.00857480004571,47.5463864463555,33532,1163860000,0.4,False -BranchTee_mvgd_33532_lvgd_1163860000_building_431791,10.009015799997325,47.546764796325945,33532,1163860000,0.4,False -BusBar_mvgd_33532_lvgd_1163880000_LV,10.009866,47.54102169624281,33532,1163880000,0.4,False -BranchTee_mvgd_33532_lvgd_1163880000_1,10.009561100000003,47.54148909624284,33532,1163880000,0.4,False -BranchTee_mvgd_33532_lvgd_1163880000_2,10.010761599999995,47.539533896242666,33532,1163880000,0.4,False -BranchTee_mvgd_33532_lvgd_1163880000_building_431734,10.01071480002616,47.53967289632189,33532,1163880000,0.4,False -BranchTee_mvgd_33532_lvgd_1163880000_building_431738,10.00985636748941,47.54082564815172,33532,1163880000,0.4,False -BranchTee_mvgd_33532_lvgd_1163880000_building_431744,10.009644779679162,47.54097700894561,33532,1163880000,0.4,False -BranchTee_mvgd_33532_lvgd_1163880000_building_431750,10.009505000008353,47.5413491962806,33532,1163880000,0.4,False -BusBar_mvgd_33532_lvgd_1163890000_LV,10.0977125,47.55219599624379,33532,1163890000,0.4,False -BranchTee_mvgd_33532_lvgd_1163890000_building_447046,10.09765259885293,47.5523162241268,33532,1163890000,0.4,False -Bus_mvgd_33532_lvgd_1163890000_gen_399,10.098590999999995,47.558323996203825,33532,1163890000,0.4,False -BusBar_mvgd_33532_lvgd_1163900000_LV,10.013885199999995,47.53775869624249,33532,1163900000,0.4,False -BranchTee_mvgd_33532_lvgd_1163900000_1,10.014049,47.537434896242445,33532,1163900000,0.4,False -BranchTee_mvgd_33532_lvgd_1163900000_2,10.017163399999994,47.53640379624241,33532,1163900000,0.4,False -BranchTee_mvgd_33532_lvgd_1163900000_building_431695,10.016893700030344,47.53640254630676,33532,1163900000,0.4,False -BranchTee_mvgd_33532_lvgd_1163900000_building_431736,10.01395314439945,47.537935049765764,33532,1163900000,0.4,False -BusBar_mvgd_33532_lvgd_1163910000_LV,10.017450000000006,47.57254519624557,33532,1163910000,0.4,False -BranchTee_mvgd_33532_lvgd_1163910000_building_442340,10.01757713879938,47.57227366721396,33532,1163910000,0.4,False -BusBar_mvgd_33532_lvgd_1163930000_LV,10.0346109,47.54144229624284,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_1,10.034475199999996,47.54071429624279,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_2,10.034605100000006,47.541339596242864,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_3,10.032083200000004,47.54062869624272,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_4,10.034520800000001,47.540910696242804,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_5,10.036489600000001,47.54210809624289,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_6,10.0346567,47.54190939624289,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_7,10.036699900000007,47.542101796242925,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444961,10.03183886540187,47.54062482932374,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444963,10.034190549999899,47.54080674625411,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444964,10.034353927673617,47.541093935701056,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444966,10.034371399998582,47.54129734630091,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444968,10.034755102179332,47.541634748358206,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444969,10.034925450024284,47.54173994629752,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444980,10.034755250008695,47.54209444627497,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444985,10.036262016799311,47.54225461799286,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444986,10.036633299999492,47.54207124624713,33532,1163930000,0.4,False -BranchTee_mvgd_33532_lvgd_1163930000_building_444993,10.036582381471838,47.54223799278265,33532,1163930000,0.4,False -BusBar_mvgd_33532_lvgd_1163940000_LV,10.088636700000006,47.55721959624428,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_1,10.089952999320053,47.55736944781641,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_2,10.0955113,47.558054396244295,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_3,10.091636400000004,47.55756349624425,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_4,10.094694800000001,47.55789699624432,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_5,10.091151,47.55748379624426,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_6,10.089367200000005,47.557309496244265,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_7,10.095398900000001,47.55773319624432,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_8,10.094902800000002,47.5580439962443,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_9,10.095077500000007,47.557958596244326,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_10,10.094373599999999,47.55787079624427,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_11,10.096249499999997,47.558225496244305,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_12,10.092099100000002,47.55769029624424,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_13,10.096015500000002,47.5581872962443,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_14,10.092488900000005,47.55776789624427,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_15,10.090538800000001,47.557429396244274,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_16,10.093422599999997,47.557816396244306,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_17,10.092942500000001,47.55781229624422,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_18,10.088786199999996,47.557237896244224,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_19,10.096959000000005,47.55870689624438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_20,10.096688799999999,47.55886759624438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_21,10.096498100000007,47.55897729624436,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_22,10.101843600000006,47.55918149624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_23,10.0997905,47.559326296244414,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_24,10.096203800000001,47.55909879624443,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_25,10.097659599999997,47.55790949624431,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_26,10.0980428,47.55918099624446,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_27,10.097600899999994,47.55905739624441,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_28,10.099646299999996,47.55874359624436,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_29,10.096684999999997,47.55929849624439,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_30,10.096591399999992,47.558924296244385,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_31,10.097323999999999,47.55830729624427,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_32,10.097474900000002,47.55839099624433,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_33,10.097087799999995,47.558376796244296,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_34,10.101501499999998,47.55850629624433,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_35,10.101248999999996,47.558506496244355,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_36,10.100366999999997,47.558633196244365,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_37,10.101940499999994,47.558562996244355,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_38,10.099936299999996,47.55872539624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_39,10.100968199999995,47.55854479624434,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_40,10.102131600000005,47.55860099624434,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_41,10.096783199999999,47.55819249624427,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_42,10.096815100000004,47.55801429624429,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_43,10.097160099999996,47.55825319624433,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_44,10.0987411,47.55877459624438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_45,10.088615100000002,47.552956696243875,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_46,10.0890398,47.55311719624388,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_47,10.080590000000003,47.5512231962437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_48,10.087839999999996,47.552741096243786,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_49,10.086470299999997,47.55049029624366,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_50,10.086481700000006,47.55259649624381,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_51,10.086085199999998,47.55228979624379,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_52,10.085896000000002,47.55092699624367,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_53,10.085939099999996,47.550860296243634,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_54,10.088349299999997,47.55245459624379,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_55,10.0862363,47.550704596243676,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_56,10.086028299999997,47.55205319624379,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_57,10.089682400000004,47.552598196243814,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_58,10.085827399999998,47.55301229624391,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_59,10.085709400000004,47.55284939624388,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_60,10.085712099999997,47.55276789624379,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_61,10.091669499999997,47.5521295962438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_62,10.085749599999998,47.552537996243835,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_63,10.085813499999999,47.55237589624381,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_64,10.086131400000001,47.55247949624382,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_65,10.091652299999996,47.552280096243805,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_66,10.089570400000003,47.55285209624383,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_67,10.089417999999995,47.553151296243875,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_68,10.089384700000004,47.55322239624389,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_69,10.086374500000003,47.55060269624367,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_70,10.085672999999998,47.55232599624382,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_71,10.091446400000002,47.55236349624377,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_72,10.085997699999998,47.55159219624372,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_73,10.0912886,47.55243759624381,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_74,10.087085200000006,47.55258119624384,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_75,10.091017500000003,47.55259039624383,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_76,10.089621799999996,47.55225499624385,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_77,10.086318399999994,47.552522196243835,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_78,10.089328600000004,47.552112496243794,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_79,10.089698699999994,47.55319399624388,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_80,10.089090000000002,47.55216399624374,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_81,10.090167799999996,47.552593996243836,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_82,10.086773399999997,47.552750196243835,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_83,10.089823500000003,47.55257039624382,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_84,10.0807098,47.551239996243716,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_85,10.087085200000008,47.552792096243856,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_86,10.087144400000005,47.552791996243876,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_87,10.083899000000002,47.55170649624374,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_88,10.089515899999999,47.55215749624381,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_89,10.090341800000006,47.55261829624383,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_90,10.090861400000003,47.55267539624386,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_91,10.091587599999993,47.55269979624384,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_92,10.088879200000001,47.55440489624399,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_93,10.0867576,47.55487889624399,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_94,10.08629,47.55462149624401,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_95,10.086224500000004,47.55449919624398,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_96,10.086230499999997,47.55423779624396,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_97,10.089772600000003,47.55349769624387,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_98,10.0893239,47.55346999624389,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_99,10.0892608,47.55375249624394,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_100,10.089544,47.55428329624397,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_101,10.089634100000003,47.554681896244006,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_102,10.089736699999996,47.55373409624389,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_103,10.089349499999997,47.55428849624399,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_104,10.088720799999999,47.556742496244176,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_105,10.0892401,47.5539699962439,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_106,10.087211199999997,47.554265196243975,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_107,10.087007999999997,47.554275296243986,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_108,10.086876999999996,47.55405699624394,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_109,10.086868999999998,47.55356299624389,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_110,10.088326002125267,47.554067999093625,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_111,10.08776860212526,47.55416659909366,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_112,10.086150299999996,47.554224796244014,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_113,10.095030900000003,47.55888229624438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_114,10.095187200000007,47.5590265962444,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_115,10.095621499999996,47.559084396244366,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_116,10.095911099999995,47.55910129624443,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_117,10.093666799999996,47.55876089624438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_118,10.095990200000006,47.55910459624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_119,10.090999800000002,47.55934769624441,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_120,10.091346899999996,47.55938879624445,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_121,10.092592599999994,47.558794496244325,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_122,10.091761599999998,47.559464396244415,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_123,10.095320100000002,47.55913569624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_124,10.095043999999996,47.55938499624445,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_125,10.094711000000002,47.55952179624442,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_126,10.094382800000004,47.55962149624447,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_127,10.093943700000002,47.55968629624443,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_128,10.093614900000002,47.559659196244475,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_129,10.093222199999998,47.55955039624441,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_130,10.093010200000005,47.55952769624442,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_131,10.092435800000002,47.559557096244426,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_132,10.090631200000004,47.55930709624441,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_133,10.090082199999996,47.5592708962444,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_134,10.0897216,47.55925609624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_135,10.088930099999995,47.55923649624444,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_136,10.094895400000004,47.55881229624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_137,10.095909099999993,47.55922199624441,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_138,10.094204399999995,47.55886829624438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_139,10.093990099999994,47.55884229624436,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_140,10.093327899999998,47.558712496244354,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_141,10.092940000000006,47.55868389624434,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_142,10.092700699999995,47.55874199624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_143,10.090534200000006,47.55832089624432,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_144,10.0875923,47.55849089624434,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_145,10.087302399999997,47.55849469624436,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_146,10.088773999999995,47.55860279624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_147,10.088606099999993,47.55864289624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_148,10.0874437,47.55794929624432,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_149,10.087897800000002,47.55799239624429,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_150,10.089427199999998,47.55800149624434,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_151,10.088857499999996,47.55767619624423,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_152,10.093855900000007,47.55822409624431,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_153,10.089457,47.558256996244324,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_154,10.088587499999997,47.55754509624424,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_155,10.092308200000005,47.55887019624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_156,10.091827700000003,47.55886059624441,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_157,10.090685599999995,47.55873149624438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_158,10.089914300000006,47.558689296244374,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_159,10.089414000000003,47.55870669624436,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_160,10.088885500000002,47.55858509624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_161,10.089061099999995,47.55835499624432,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_162,10.089231600000005,47.55829439624434,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_163,10.089326300000003,47.55772489624426,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_164,10.0896744,47.558262396244324,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_165,10.091398799999999,47.55844999624435,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_166,10.089151400000004,47.55867089624441,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_167,10.0925115,47.558315096244314,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_168,10.09289899999999,47.55826129624435,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_169,10.094396900000003,47.55815939624434,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_170,10.090358000000002,47.55870619624437,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_171,10.089616400000002,47.558707296244364,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_172,10.091186900000006,47.558786896244385,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_173,10.0862641,47.557044496244224,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_174,10.084748599999996,47.557142096244185,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_175,10.085355299999996,47.55717479624423,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_176,10.086606099999996,47.55678439624422,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_177,10.086598900000006,47.55706309624426,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_178,10.0873888,47.5571268962442,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_179,10.086877800000002,47.557084896244255,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_180,10.085029800000003,47.55717259624419,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_181,10.085715199999997,47.55710829624423,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_182,10.087867,47.55716629624423,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446606,10.080768649972187,47.55042939649964,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446609,10.080739490781117,47.55098708900986,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446662,10.084975760318727,47.557006372997826,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446701,10.086607799996232,47.550666996282516,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446703,10.086535149999994,47.550876946270094,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446704,10.085713549998577,47.551024696285765,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446713,10.084614791989921,47.55725427501334,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446716,10.085619142500834,47.55144094673817,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446717,10.08616324998408,47.55089449631581,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446718,10.086151500000506,47.55119644630824,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446719,10.086596515987848,47.55116843528047,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446720,10.086704121585534,47.55043027010872,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446722,10.085004507059761,47.55728622330785,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446723,10.086788201069938,47.5522025460993,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446725,10.086526563878545,47.55146327750425,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446726,10.087845160187307,47.552878641990894,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446729,10.08556960593225,47.552458566393724,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446730,10.08553380000186,47.55287404630417,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446731,10.085892896517302,47.55276947427094,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446733,10.086025876903584,47.553081532782315,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446734,10.085733700023638,47.55221474629332,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446735,10.08631714999921,47.552293446369355,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446736,10.08621455000791,47.55258919626649,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446737,10.086759550059458,47.55253579634366,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446738,10.085901400000001,47.551922046315234,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446739,10.086150025900997,47.551656500548354,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446741,10.086330751054925,47.551767132556925,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446743,10.086553129145587,47.55289679923568,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446745,10.086466450001282,47.553073396260686,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446746,10.086958109268068,47.55223132670415,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446748,10.086567681594026,47.55197075948647,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446749,10.088737499999812,47.55190529628047,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446750,10.085847749551077,47.55416158827426,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446751,10.08849684999905,47.55225974627088,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446752,10.088837674539333,47.552122392069336,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446754,10.087243643396222,47.55239214056054,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446755,10.088927865804951,47.55189027150333,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446756,10.08597704955107,47.554172088274285,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446757,10.089221712871936,47.5518456768282,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446758,10.089541512426168,47.551800715879374,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446759,10.089266700000058,47.55204834625228,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446761,10.088018495375922,47.55243159315306,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446762,10.089233448507658,47.552249082060044,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446764,10.086390949994884,47.554299596279805,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446765,10.090220076261193,47.55288678885026,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446766,10.09029999999953,47.5522889462662,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446767,10.088240049999573,47.55227074627435,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446768,10.088365375717387,47.55262023297368,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446769,10.086751631597872,47.55421395142205,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446770,10.088738924098303,47.55262482201484,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446771,10.090397732002547,47.552499119892765,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446772,10.090649824481417,47.55235430759575,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446773,10.08885523778855,47.55293021282143,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446775,10.08907367479614,47.55228183661623,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446776,10.090875835450543,47.55238923932633,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446777,10.08713250000073,47.55295264627033,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446778,10.090494123452732,47.552742450219164,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446780,10.088845272401379,47.55323709852685,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446781,10.08949225001386,47.552558146298374,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446782,10.089209752148815,47.55274551830531,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446783,10.090182801616983,47.55190768540705,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446785,10.089766150003362,47.55208509629259,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446786,10.090108349994617,47.55220114628263,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446787,10.089058187953965,47.55357652058412,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446788,10.089552561756355,47.55359780045185,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446792,10.088317179318475,47.55424589978808,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446793,10.088613656338236,47.554172266162176,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446795,10.09085453196767,47.552090897131414,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446796,10.087047474247395,47.55357384344577,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446798,10.089931322228276,47.55247017176123,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446799,10.089031500001672,47.55378064629499,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446800,10.089421934225792,47.553899153611546,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446802,10.088943904354549,47.55428186548566,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446803,10.089676814978608,47.553036777095244,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446804,10.089570620827823,47.553390099225346,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446805,10.087316499999408,47.55330049625954,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446807,10.08929622530733,47.55420038372826,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446813,10.089767932915512,47.553930730061914,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446815,10.085948475584805,47.55439944139583,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446816,10.087037149999684,47.55377674628612,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446817,10.08651784999506,47.554513696285284,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446819,10.087108930074079,47.55410690066683,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446820,10.091293733893187,47.55202662578024,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446821,10.08636375002566,47.554782346328835,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446822,10.08674031703643,47.55476148812982,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446823,10.08698756782213,47.554479318007054,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446824,10.091573193112795,47.55201644965532,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446825,10.091330576505165,47.55220149040226,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446826,10.087412849994218,47.55406294630703,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446827,10.091472500001927,47.552210196268746,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446829,10.087343621468664,47.55441318961573,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446831,10.087773512052234,47.553971670500864,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446832,10.08765834998867,47.55435619628375,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446835,10.088119141961354,47.5539604179521,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446836,10.09128468982551,47.552325870478846,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446838,10.087993364580294,47.55430322903509,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446840,10.0856417433635,47.55701812601092,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446842,10.091596630886118,47.55258616675208,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446843,10.090991899600088,47.552846246301726,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446844,10.086347966094113,47.55667971559361,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446847,10.086366843794098,47.556896674273474,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446848,10.086780326501417,47.55694634176253,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446849,10.087540238895905,47.55678470501278,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446850,10.089370464416106,47.55442737645426,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446851,10.089298203073739,47.554688074681486,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446852,10.086844188115986,47.55671402647332,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446853,10.087792573860265,47.5581714619889,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446854,10.087160665472737,47.556725490070995,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446855,10.087180432764647,47.556977038647894,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446858,10.087572950000729,47.558381496306545,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446859,10.08835086602274,47.55676960654979,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446860,10.089607429577192,47.55715090717404,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446861,10.089914219350883,47.55719590162723,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446863,10.085565197991391,47.55733689262764,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446864,10.086687322529885,47.557340598837314,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446866,10.087585124917183,47.557321463448446,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446867,10.087930200769016,47.55707649284789,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446868,10.089538822870246,47.55753436349146,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446870,10.08668284087476,47.55856331927464,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446871,10.09031967764609,47.557250736685155,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446872,10.088016304809685,47.55738215570128,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446873,10.087882208622089,47.55752358457879,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446874,10.086802100002949,47.55862869625205,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446878,10.09066686117577,47.55730228575534,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446881,10.087529731722977,47.55808214444125,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446882,10.090614579540384,47.5577168815062,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446883,10.090924975542368,47.557627965848106,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446884,10.089755022164866,47.558100983545486,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446886,10.088672371854965,47.558805253840475,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446888,10.087629900003305,47.55868409629699,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446890,10.090715550090685,47.557774373193055,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446891,10.088805100003137,47.558821746284515,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446892,10.089175989152713,47.55852931776002,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446895,10.089456050000427,47.55856974628801,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446896,10.089113600001124,47.55887319627978,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446897,10.090289690405518,47.558147918325304,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446899,10.088866175887688,47.55707558813344,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446900,10.090647782429844,47.55819522062677,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446901,10.08904750000153,47.55909729628006,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446904,10.088559666949914,47.55849067851254,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446905,10.089172641619665,47.559105219708194,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446906,10.089247950001116,47.558878496279824,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446908,10.089563482913295,47.55889827999448,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446909,10.08951860911973,47.55911962231979,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446910,10.090935500007022,47.55861229629303,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446912,10.090555260297053,47.55893372486513,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446913,10.089585400000413,47.558571796288,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446914,10.088229433000357,47.557629370767955,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446915,10.090087523221564,47.55853258262445,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446916,10.090865350004751,47.5589515462862,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446919,10.089964286100468,47.55913173106569,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446920,10.089682050000494,47.55890084627661,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446921,10.089219829759749,47.55709485019887,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446923,10.08965560000118,47.5591251462813,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446924,10.090101200000397,47.55913349628499,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446926,10.08892223985731,47.55747858142719,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446927,10.090527014572872,47.559170522412686,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446928,10.090754610423309,47.55918077524097,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446931,10.090050649999682,47.55887964628329,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446932,10.090175899999661,47.55887799628332,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446933,10.090507686579983,47.558592320768746,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446934,10.091266802702263,47.557833837500716,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446936,10.091326510399638,47.55775826516108,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446938,10.091485250004746,47.557408496262035,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446939,10.088859664809851,47.55825992506309,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446940,10.09103134999701,47.55769987194808,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446941,10.091380171053636,47.55784986605659,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446942,10.091131500011679,47.55823804627607,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446943,10.089196150011661,47.55815899628551,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446945,10.091518548588953,47.55826739378423,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446946,10.091413639407397,47.557661884356946,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446949,10.091725250001016,47.5577310962723,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446952,10.091867682218371,47.557841968485086,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446953,10.09367999749671,47.55794129429055,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446957,10.091997708232698,47.55753250425992,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446958,10.092622522969085,47.55909994182828,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446959,10.093000750000007,47.55901684628886,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446960,10.09338344998497,47.55839054628663,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446961,10.093129806701024,47.55860384598684,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446963,10.092845725470166,47.55768187158693,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446965,10.091260150005125,47.55867864626739,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446966,10.093531076074822,47.5586169477716,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446967,10.093579249602781,47.557630217544755,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446968,10.092480473889188,47.55789780078763,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446973,10.091394840884968,47.558697967821445,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446974,10.092455325767233,47.55827529198487,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446976,10.093367574746955,47.55903399159678,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446978,10.092338924656149,47.55943516955295,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446979,10.092833636214657,47.558429123832404,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446981,10.09311996797122,47.557919521377265,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446982,10.092663573825625,47.559424591137166,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446983,10.092972617374208,47.559395569571436,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446984,10.091309550013534,47.558985646276135,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446987,10.091637100008043,47.558727046281874,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446988,10.093805750006563,47.558375696275796,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446989,10.094368699998038,47.55840089627648,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446990,10.094498800035153,47.557761596300644,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446991,10.094735949998649,47.55841279628323,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446993,10.093238850000136,47.55941369627783,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446994,10.093300450500935,47.55942652918803,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446995,10.09336210000015,47.559439346277884,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446996,10.093470099999996,47.55946307961141,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_446999,10.095387449996064,47.55766109627623,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447000,10.091867733595818,47.55875376835201,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447001,10.095306128783362,47.55822089370891,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447002,10.093527849986895,47.55947641295612,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447003,10.093585599999999,47.55948979627804,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447004,10.095072250005824,47.5584083462908,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447005,10.092222349998131,47.55875319629326,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447006,10.095757100800997,47.55801492456287,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447007,10.09581510001827,47.55831064628728,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447008,10.093722123347218,47.55904945057447,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447010,10.094884400000494,47.55866234628509,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447011,10.095009792020246,47.55866487073735,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447012,10.094034449999992,47.55914444626868,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447013,10.09632830001056,47.55811954628322,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447014,10.096287700002089,47.55833954629983,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447015,10.093854435886145,47.55866891692738,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447016,10.091694450004509,47.55906579627078,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447017,10.094221600001978,47.55872634626591,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447019,10.094327189506881,47.559184908742715,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447021,10.093850463824642,47.55952436091712,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447022,10.095331650003613,47.558954096267655,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447023,10.092255271323882,47.5591207204478,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447024,10.095552050000867,47.558827096255754,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447026,10.093850668350866,47.559783991460726,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447027,10.096111894780172,47.55857896284315,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447028,10.091187237565734,47.55923298523446,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447029,10.096040861037041,47.55893890922967,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447031,10.094267845071013,47.55950499101401,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447032,10.094620722137764,47.55924079096983,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447034,10.096173900003736,47.559000946286055,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447035,10.091570563274612,47.55930877607876,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447037,10.094901200010568,47.55928924628581,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447040,10.095350764691986,47.55846217373598,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447041,10.095202900000778,47.558698796288006,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447042,10.095828099814295,47.559324596277825,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447047,10.095323375933603,47.55870283697212,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447049,10.091978600577134,47.55939040001117,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447066,10.092329149998125,47.55872374629333,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447069,10.092568949987896,47.55865709627189,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447088,10.096907349999942,47.55758094626226,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447090,10.096527088832914,47.55903569171114,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447091,10.096684645109331,47.55800551895903,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447094,10.09689802057323,47.55891766442041,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447095,10.099931999540408,47.5584068409506,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447096,10.10029768110778,47.55824171904739,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447099,10.097000604063584,47.55804662776962,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447100,10.097441600004927,47.55851359626037,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447103,10.10090370302813,47.5583364375631,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447104,10.101214347829096,47.55829926811656,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447106,10.097719200003977,47.55885189628183,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447108,10.096582130022592,47.55920834201451,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447111,10.101460862586155,47.558386365196895,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447112,10.096831144158704,47.55841287012378,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447114,10.101603437416264,47.558391727329536,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447120,10.09864796080848,47.55866446644213,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447121,10.101890161292467,47.55840625801535,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447122,10.099198049999917,47.558640896255596,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447123,10.099843950305665,47.55857494879787,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447124,10.098927201244765,47.55862099211291,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447126,10.098758685022354,47.55887797146843,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447127,10.09808107903001,47.55931319020871,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447128,10.099367923008986,47.558888321755816,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447129,10.100509208504807,47.558756274181285,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447131,10.100026100004436,47.55888874629525,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447135,10.09719713943834,47.558137115431926,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447136,10.100497376565286,47.55884254177232,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447137,10.09992510870922,47.55923759084604,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447138,10.10035360000505,47.559115446268734,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447139,10.097781850014137,47.55836874628869,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447140,10.100489100000988,47.55898574625547,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447141,10.10058668456646,47.558456821693746,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447150,10.101019625068082,47.55877131025488,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447151,10.100746349999325,47.5588183963907,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447152,10.097863680543064,47.5580249442152,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447153,10.100590150000478,47.55899339625534,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447161,10.10131295151154,47.55870360456783,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447167,10.101245458804181,47.55890857429782,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447168,10.101728472658431,47.55892510144836,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447172,10.101783883675163,47.55886972523469,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447182,10.102211438239825,47.55850719211438,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447199,10.097372368489516,47.56025304171057,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447208,10.092982399997963,47.559873496288795,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_447215,10.093540020705785,47.559953309529206,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_34328679,10.084110712864849,47.55100986524256,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_34328680,10.084598016764247,47.55077801375015,33532,1163940000,0.4,False -BranchTee_mvgd_33532_lvgd_1163940000_building_34328681,10.084819705879923,47.55086158633855,33532,1163940000,0.4,False -BusBar_mvgd_33532_lvgd_1163940001_LV,10.073738500000001,47.55512509624403,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_1,10.083510899999999,47.55695179624421,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_2,10.079576100000004,47.55647669624417,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_3,10.077456299999998,47.556109996244125,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_4,10.074133999999999,47.55523779624404,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_5,10.082227899999996,47.55779749624428,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_6,10.082135700000006,47.55685779624423,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_7,10.073823700000004,47.55514659624404,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_8,10.074005799999997,47.55498379624402,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_9,10.0746965637773,47.55537049915125,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_10,10.07525913044398,47.555503199151275,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_11,10.082249399999995,47.55686149624417,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_12,10.082134900000005,47.55753959624426,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_13,10.081878100000003,47.557377696244224,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_14,10.078972300000002,47.55705959624421,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_15,10.073400800000002,47.55420519624397,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_16,10.082952299999997,47.55686279624422,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_17,10.084084000000002,47.55706639624426,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_18,10.079026199999996,47.55734129624424,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_19,10.081996099999998,47.55738479624422,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_20,10.079442599999995,47.55751259624427,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_21,10.078760599999995,47.55636989624412,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_22,10.0822225,47.55710959624421,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_23,10.076952198340157,47.55593984741499,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_24,10.077910900000001,47.55624539624413,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_25,10.073011599999996,47.55502169624404,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_26,10.072091199999996,47.55496609624402,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_27,10.073531200000005,47.55505929624403,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_28,10.0727017,47.555703796244124,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_29,10.073206899999995,47.55542369624405,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_30,10.068851600000004,47.55574219624414,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_31,10.069603900000004,47.55552409624406,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_32,10.072456500000003,47.555901496244125,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_33,10.070178900000005,47.55560979624411,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_34,10.070702300000002,47.55562579624413,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_35,10.066482400000002,47.555341196244015,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_36,10.069231200000004,47.55550659624411,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_37,10.071305099999998,47.55564719624407,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_38,10.071544599999998,47.55787059624429,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_39,10.074123099999994,47.55804989624432,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_40,10.074846500000003,47.558294896244306,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_41,10.073434300000004,47.55583389624414,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_42,10.072059600000003,47.555908796244104,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_43,10.069961799999996,47.55559229624411,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_44,10.06829249880725,47.55541064881588,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_45,10.067202299999998,47.55530259624405,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_46,10.073534000000004,47.55529579624407,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_47,10.073476599999994,47.55544009624411,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_48,10.071452799999992,47.555633596244114,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_49,10.072649599999998,47.55576389624412,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446537,10.06796143046414,47.55526426832248,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446546,10.068566988816972,47.5555688203869,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446547,10.068837735741512,47.555580169961694,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446549,10.066601082457804,47.55543881950901,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446550,10.067276074383276,47.55541569237405,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446557,10.071158824481357,47.55578714043297,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446558,10.071472999999408,47.55584269628261,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446560,10.071941752096235,47.554852196160574,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446565,10.072518775634562,47.55491394316578,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446566,10.074338807570967,47.55491838440514,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446567,10.073249100026237,47.55522389630129,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446568,10.0694887483368,47.55557814631675,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446570,10.072838982531668,47.554704407289286,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446571,10.07181491382594,47.555119563994666,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446574,10.07366118388892,47.55535631950126,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446575,10.072093559270403,47.55516827339009,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446576,10.06968276262692,47.55536789667981,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446578,10.072426920141087,47.55520823824326,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446579,10.072756400010483,47.5552235963011,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446580,10.073678200003346,47.555551796283765,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446583,10.074056984273376,47.555600812480876,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446584,10.073062062661583,47.5554921718727,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446585,10.073159320616039,47.55490152242526,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446586,10.074391141980696,47.55558767144102,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446593,10.072025171335529,47.55576236867613,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446595,10.072463207372634,47.55577497353816,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446596,10.073924138099521,47.554891768367305,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446598,10.072489550008507,47.55601934626313,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446599,10.070192700000565,47.555357996272505,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446600,10.072713712233904,47.55588162265798,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446601,10.071359917461445,47.55793497235676,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446605,10.073227314895396,47.555925023114824,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446608,10.070488214447158,47.555470148935,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446615,10.071099260242736,47.5555076457382,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446616,10.07449480606352,47.55523424071875,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446619,10.074811042429099,47.55564067233315,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446621,10.074976630185178,47.555819493595855,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446622,10.071409455344149,47.55548999512413,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446624,10.076589200011417,47.55609624628604,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446625,10.07699407039192,47.55613415668962,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446627,10.077562459402824,47.55598244760424,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446638,10.07002393978689,47.555816021012646,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446641,10.077845693942935,47.55610511580702,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446642,10.077559534990685,47.556318328301856,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446643,10.070293249998683,47.55582394629178,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446644,10.078439400007168,47.55619944627449,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446645,10.077826416056277,47.55682953336446,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446647,10.07790617245357,47.557082499346734,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446648,10.07820892534397,47.55719217517891,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446649,10.078528350018656,47.55728749631246,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446651,10.078795121801338,47.55625490027986,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446652,10.070659971606265,47.55583154903441,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446653,10.079048794350761,47.55628086755709,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446654,10.079439918680006,47.55632519756574,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446656,10.07947672391829,47.557384567622485,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446657,10.070832515244188,47.555770490235425,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446659,10.078670173559287,47.55690853486878,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446660,10.074472824437052,47.55801654200746,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446666,10.075115053296377,47.558191557923294,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446668,10.081937800001816,47.5570237962851,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446669,10.08212870000109,47.55693564625293,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446670,10.08210550104398,47.55703035220815,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446676,10.082431798258193,47.556737271650945,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446678,10.082239264398963,47.5574551641709,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446682,10.082759274231307,47.5569648521462,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446683,10.082435609489178,47.55763937430145,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446684,10.083390732275316,47.55682006645944,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446689,10.0840601793442,47.55690532053557,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446690,10.084277915858713,47.55693964065865,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446691,10.082504029954366,47.55775724113754,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_446707,10.084028079030507,47.557206195100306,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_34328706,10.073164085351653,47.55480651604067,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_34328707,10.07351868746349,47.554694424439866,33532,1163940001,0.4,False -BranchTee_mvgd_33532_lvgd_1163940001_building_34328708,10.07338565660911,47.5544677896241,33532,1163940001,0.4,False -BusBar_mvgd_33532_lvgd_1163940002_LV,10.045738800000006,47.55576749624408,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_1,10.042569400000001,47.557253696244274,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_2,10.0369243,47.561687096244604,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_3,10.042168700000003,47.55910599624441,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_4,10.036742699999998,47.560687696244564,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_5,10.039770400000005,47.55953429624445,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_6,10.037650199999995,47.55997669624451,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_7,10.0423408,47.55909869624441,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_8,10.040132800000002,47.56002289624449,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_9,10.044588600000003,47.556768496244196,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_10,10.037695399999995,47.55978019624444,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_11,10.040280999999995,47.55967379624447,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_12,10.040838200000003,47.55992239624447,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_13,10.043461499999996,47.556279396244186,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_14,10.039993899999994,47.55944579624444,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_15,10.043902399999997,47.55633619624416,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_16,10.044440799999993,47.55662239624418,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_17,10.043195099999995,47.556740296244186,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_18,10.042996200000003,47.55663029624417,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_19,10.044077099999997,47.55626309624415,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_20,10.043001299999993,47.55687729624422,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_21,10.042816699999992,47.55678729624419,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_22,10.044340599999996,47.55615509624412,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_23,10.040872,47.5588478962444,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_24,10.036922600000004,47.561478196244565,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_25,10.042692900000004,47.557347496244205,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_26,10.046556900000004,47.55557269624411,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_27,10.048445048156292,47.55262199761081,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_28,10.045973800000002,47.551795296243725,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_29,10.045567799999995,47.55206199624372,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_30,10.049259499999998,47.55505869624402,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_31,10.047344500000003,47.55539119624403,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_32,10.048386799999996,47.55518159624408,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_33,10.050092199999998,47.554653496244,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_34,10.046281299999999,47.5519025962438,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_35,10.045794199999992,47.55161769624372,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_36,10.048989900000004,47.55279689624379,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_37,10.048871799999999,47.55512049624408,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_38,10.049938699999995,47.55166459624376,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_39,10.050303200000004,47.554750996244,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_40,10.049247799999991,47.55286839624383,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_41,10.044943299999998,47.55115859624372,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_42,10.051282900000004,47.553457896243906,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_43,10.044839000000003,47.55228289624382,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_44,10.050936200000004,47.554923196244005,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_45,10.049626700000005,47.55293029624381,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_46,10.047926600000004,47.55525249624406,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_47,10.044794399999994,47.5522886962438,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_445968,10.039707531741417,47.55941128039511,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_445971,10.040427743416819,47.5596571072602,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446134,10.037028945626535,47.56068031588594,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446135,10.036652060998449,47.56165437522361,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446138,10.04018752057953,47.55987017826217,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446141,10.03777978410901,47.56005169431776,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446143,10.040829203007458,47.559828535538394,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446148,10.036690678951661,47.56155079158211,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446233,10.045257399984736,47.551108246285,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446242,10.044610474668453,47.55259615243734,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446244,10.04505537666393,47.552576132507454,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446245,10.04532498164639,47.551207798263796,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446248,10.04577245000267,47.55167409624876,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446251,10.045555867406962,47.55117904964621,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446254,10.045772104372965,47.552102502418066,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446258,10.050101289991883,47.55147067995778,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446259,10.045650800010499,47.55155224627197,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446264,10.048255497856806,47.55246466855344,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446269,10.049808499996905,47.55265224625901,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446270,10.048870918886877,47.552632898033906,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446271,10.043341150018097,47.55688939636051,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446272,10.049091105466301,47.552677451442996,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446273,10.049228801510337,47.55271655251758,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446283,10.042851667668897,47.556642784611604,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446284,10.042741863844075,47.55685620773599,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446286,10.043262199996585,47.55633774625791,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446287,10.04293149863782,47.557238865938025,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446289,10.042089166480066,47.5589424634241,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446290,10.04240530533267,47.5589451645064,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446291,10.048366494697342,47.55534612494023,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446293,10.048027382440393,47.55541644942294,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446299,10.044511584902057,47.556224330553874,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446300,10.048750373216153,47.55542996398187,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446305,10.049331299996151,47.55527584627673,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446308,10.047076349974859,47.55577054629387,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446310,10.047502746853844,47.55577047905872,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446311,10.05019119472053,47.5549787683731,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446312,10.05088690223002,47.55465926213196,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446333,10.044463059712017,47.55640563476481,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446342,10.04470355000195,47.55667439625796,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446347,10.044417699984105,47.55681834629733,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446350,10.045964115864534,47.55583316548142,33532,1163940002,0.4,False -BranchTee_mvgd_33532_lvgd_1163940002_building_446356,10.045849649969528,47.55602104630231,33532,1163940002,0.4,False -BusBar_mvgd_33532_lvgd_1163940003_LV,10.108337700000003,47.55674169624417,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_1,10.107289,47.56078499624455,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_2,10.104873600000003,47.55911799624436,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_3,10.102466200000007,47.558154496244306,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_4,10.105110299999998,47.55929529624442,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_5,10.104386000000005,47.559529196244426,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_6,10.104237800000005,47.559694796244436,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_7,10.111216499999998,47.555036496244014,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_8,10.112203500000005,47.55512919624402,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_9,10.108502700000003,47.5568001962442,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_10,10.109281,47.55713849624423,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_11,10.1106401,47.555257296244015,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_12,10.109052899999996,47.55704109624421,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_13,10.10887589999999,47.55696559624419,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_14,10.110386800000002,47.55548129624408,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_15,10.107401199999996,47.56060769624451,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_16,10.109596299999994,47.55645399624417,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_17,10.109334199999997,47.55683129624419,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_18,10.103497100000002,47.559449996244446,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_19,10.108659899999996,47.55687349624423,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_20,10.1101772,47.55581739624412,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_21,10.106152699999996,47.558896696244354,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_22,10.101957800000001,47.55803309624427,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_23,10.1059175,47.55883549624442,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_24,10.105505599999994,47.55897419624437,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_25,10.108341299999998,47.55710039624423,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_26,10.110054900000002,47.5559764962441,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_27,10.107237800000005,47.56042569624451,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_28,10.1073785,47.560520696244524,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_29,10.112649099999997,47.554440896243996,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_30,10.105361600000005,47.55503319624405,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_31,10.102865500000007,47.55334449624389,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_32,10.1063184,47.555883996244106,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_33,10.102578500000005,47.55336029624387,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_34,10.108894499999998,47.553365996243855,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_35,10.105604899999996,47.55474479624397,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_36,10.105725100000006,47.55454969624397,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_37,10.102521500000003,47.55354649624393,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_38,10.102770900000007,47.5537115962439,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_39,10.1016323,47.55293419624386,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_40,10.101955399999994,47.55318679624383,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_41,10.1066321,47.55610039624415,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_42,10.103061200000003,47.55343799624387,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_43,10.102408799999994,47.55345309624388,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_44,10.1031839,47.55388859624395,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_45,10.103577400000002,47.55404149624392,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_46,10.106731499999999,47.556604796244144,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_47,10.106633499999996,47.556628396244186,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_48,10.107390899999999,47.55705569624421,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_49,10.107613700000002,47.55663719624416,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_50,10.107986899999998,47.556643896244175,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_51,10.107394500000007,47.5571990962442,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_52,10.106493699999994,47.55678709624421,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_53,10.107231899999995,47.55645049624415,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_54,10.106372100000002,47.55714659624419,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_55,10.107363900000005,47.557342396244245,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_56,10.106453500000004,47.557292296244256,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_57,10.1063544,47.55684239624419,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_58,10.106548,47.5568637962442,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_59,10.107302700000002,47.55742559624426,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_60,10.107495599999995,47.55684409624425,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_61,10.106369500000003,47.556883096244235,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_62,10.107007000000001,47.55650039624417,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_63,10.1077097,47.55657899624414,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_64,10.1070859,47.55638549624417,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_65,10.108928099999996,47.556459896244135,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_66,10.109337799999999,47.5558717962441,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_67,10.109152000000003,47.55626419624409,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_68,10.109062900000003,47.556364496244115,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_69,10.108731499999994,47.55650119624411,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_70,10.1093281,47.5559905962441,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_71,10.109329799999996,47.55596939624412,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_72,10.108974200000004,47.555857496244144,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_73,10.108421399999997,47.55661019624414,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447052,10.102721915275861,47.55350804277406,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447053,10.103187820474597,47.55341938902018,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447054,10.1029891000013,47.553576246249165,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447056,10.10268426535609,47.55375606283197,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447057,10.10162175002308,47.55309709629373,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447063,10.102921461677271,47.553946284012454,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447064,10.10319895042677,47.554062837504326,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447065,10.10193940000805,47.552962096309784,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447067,10.102269957186184,47.55324431903717,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447070,10.103321509829462,47.553391487933595,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447071,10.103303100003153,47.55359409625453,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447072,10.101978366813555,47.55333615082549,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447073,10.102391450942498,47.553296429334594,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447075,10.102282099996414,47.55354244626269,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447076,10.103461100000196,47.553693096246505,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447078,10.103333133037603,47.55383789594533,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447079,10.102883841689934,47.553146763816706,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447081,10.103346700255129,47.5541117128138,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447083,10.103442053706004,47.55414427833497,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447084,10.105699900007409,47.55428419625943,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447086,10.103045954986985,47.55321222864538,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447110,10.101844868731098,47.55787485749006,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447157,10.106006350009233,47.55698384626885,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447162,10.106342449930647,47.55600926291439,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447163,10.106434511520495,47.55623883221237,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447170,10.107390058964079,47.55681657746444,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447171,10.10657356949514,47.55651932619361,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447174,10.10615341141052,47.556816991788715,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447175,10.102379625071794,47.55795856540067,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447176,10.10672630633457,47.5569003753518,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447177,10.1053039826529,47.554591696282046,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447179,10.105359379220463,47.55473658852412,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447180,10.10684224998824,47.556451546284265,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447181,10.107360565461574,47.55668241742235,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447183,10.10678146895104,47.55672839025856,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447184,10.106616896054627,47.55713164423666,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447186,10.106746413328404,47.557170587587414,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447187,10.107127150004441,47.557105246269124,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447188,10.10722156225207,47.556884375881374,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447189,10.107417532255745,47.55677497156472,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447193,10.107104737923489,47.557324981033375,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447194,10.107253074535596,47.557244155508506,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447200,10.105903809551123,47.55911997644994,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447204,10.104475531196366,47.55986340595176,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447207,10.103741600034075,47.55947959634955,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447212,10.107074017990493,47.560502345464,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447221,10.104506566257148,47.55966613987383,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447225,10.10627007263388,47.5570809610737,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447229,10.10648480304534,47.55709838272817,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_447999,10.109018935715214,47.55329731597324,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448003,10.112560206729276,47.55429942672013,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448011,10.109044835196004,47.55568356527599,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448015,10.109232071153041,47.55562677010016,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448017,10.107705549087449,47.5568249072474,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448019,10.107670894289253,47.55700563496373,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448022,10.107982633936063,47.55674761906583,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448023,10.108041480898109,47.556781908064,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448024,10.109937052263138,47.555353927868445,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448027,10.108212750001748,47.55652804627018,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448029,10.108301718604528,47.55655220348384,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448030,10.10820335000166,47.5566249962535,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448031,10.108686326581985,47.55637272978782,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448033,10.107485224247345,47.556395666727305,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448034,10.107869164926214,47.55650422447865,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448035,10.108611800711214,47.556678501207735,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448037,10.108246422566296,47.5568352837247,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448038,10.108427040363244,47.55686456186561,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448039,10.10797610984361,47.55649595131686,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448041,10.10807180000044,47.55656789624642,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448042,10.108264734688618,47.55694388806785,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448044,10.108650105990138,47.55706189029663,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448045,10.107762987215516,47.55676612792825,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448047,10.109418844207793,47.556229337035006,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448048,10.109542909063189,47.55587518114626,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448049,10.1096116006321,47.556005188629754,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448051,10.10888201817159,47.555778040283144,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448052,10.109063284928473,47.55584983696682,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448053,10.109013926115514,47.55602972536714,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448054,10.109148644809343,47.55580892431244,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448055,10.10987210001439,47.555779846286654,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448057,10.110160015679586,47.555989755493776,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448058,10.109553136183333,47.55625285884161,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448060,10.108934345174712,47.556236123407785,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448061,10.110763272149836,47.55548905387773,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448062,10.109384200001784,47.55608274625117,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448063,10.109269840495811,47.556247715931775,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448064,10.11000034951025,47.55612157976656,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448065,10.110090560989107,47.55622306503902,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448067,10.109000150000414,47.5566178962699,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448069,10.109086300000437,47.5566210462699,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448070,10.109259376522902,47.556446916308474,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448071,10.109349731615355,47.55737654395808,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448072,10.110576700000323,47.55555309624532,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448075,10.109178049999912,47.556808146265496,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448076,10.109467300002514,47.556802996255534,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448078,10.109143050014476,47.556974296272024,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448080,10.112205052548722,47.55500751918485,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448082,10.109694572905944,47.556555772281065,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448083,10.10989030001335,47.556438096291735,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448085,10.112199217290106,47.55532429709501,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448087,10.109855452872905,47.55665306244038,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448088,10.110348467219099,47.55591804708257,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448089,10.109665780188726,47.55680579252332,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448091,10.110328250005997,47.556136296258984,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448095,10.109507493393465,47.55703074810997,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448096,10.110402367935176,47.55515988398954,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448099,10.110370350005999,47.556083796258946,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448105,10.107612232558498,47.55729137560904,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448108,10.10775785000708,47.557334596272234,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448113,10.108006839322742,47.557097722285036,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448122,10.107514971850057,47.55753066991113,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448123,10.107491246782383,47.560819804192626,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_448131,10.108590405689664,47.55716569498034,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_34328718,10.107828964592349,47.56050333646587,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_34328719,10.108512581628188,47.56099844897529,33532,1163940003,0.4,False -BranchTee_mvgd_33532_lvgd_1163940003_building_34328720,10.107939893667151,47.56059633127986,33532,1163940003,0.4,False -BusBar_mvgd_33532_lvgd_1163940004_LV,10.0359923,47.56432909624486,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_1,10.035012500000002,47.56581889624501,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_2,10.034151900000003,47.56516459624495,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_3,10.042632599999997,47.56494639624488,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_4,10.0341349,47.56499189624492,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_5,10.0359819,47.56444529624484,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_6,10.035423100000004,47.565631496244976,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_7,10.039929699999995,47.56496129624493,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_8,10.036464200000005,47.56541549624494,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_9,10.038921100000003,47.56492829624491,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_10,10.0355049,47.56707179624508,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_11,10.036457499999996,47.56547579624494,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_12,10.036900800000007,47.56763349624518,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_13,10.037932700000006,47.56771719624515,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_14,10.037613499999996,47.56509959624491,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_15,10.036929000000004,47.56514299624492,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_16,10.035144299999999,47.56622419624501,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_17,10.035986099999999,47.565582996244956,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_18,10.035747099999996,47.565493696244914,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_19,10.035831599999996,47.56515429624495,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_20,10.037754699999995,47.56769729624512,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_21,10.036679500000005,47.56526469624499,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_22,10.035086800000002,47.56528279624492,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_23,10.0348695,47.565176696244954,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_24,10.039204400000001,47.566001096244975,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_25,10.0355656,47.565290696244936,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_26,10.0351969,47.56635989624506,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_27,10.0396704,47.56571899624502,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_28,10.033244799999999,47.56511159624493,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_29,10.035319899999998,47.56661759624504,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_30,10.036043800000005,47.56472589624488,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_31,10.035643599999997,47.567457396245146,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_32,10.038968300000008,47.565642296244945,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_33,10.035062200000004,47.56568229624497,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_34,10.039375101086927,47.563654797712736,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_35,10.038203800000002,47.56378289624483,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_36,10.041935999999998,47.56279989624472,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_37,10.036154999999995,47.56436919624487,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_38,10.036610400000004,47.56447809624487,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_39,10.0367969,47.56450809624488,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_40,10.038809300000006,47.56375409624482,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_41,10.0397919,47.562734496244715,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_42,10.041720599999998,47.56183469624462,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_43,10.0386644,47.56341379624475,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_44,10.0375262,47.56422759624481,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_45,10.040129099999996,47.56221009624467,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_46,10.039890400000004,47.561237496244566,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_47,10.0395286,47.56291959624471,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_48,10.0436935,47.56164059624463,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_49,10.041059099999996,47.56189979624467,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_50,10.0325245,47.56394789624484,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_51,10.036035099999998,47.563757496244826,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_52,10.036173899999994,47.564060396244855,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_53,10.031838599999995,47.563916396244764,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_54,10.034792500000004,47.562779396244714,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_55,10.035869399999997,47.56421759624487,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_56,10.0280832,47.56454249624488,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_57,10.034941899999998,47.562877296244764,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_58,10.0350965,47.5629514962447,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_59,10.035301600000002,47.56389669624484,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_60,10.036427800000002,47.56366789624479,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_61,10.035586100000007,47.564043596244844,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_62,10.0341981,47.56349039624475,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_63,10.034756400000003,47.56359659624476,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_64,10.034274199999997,47.563472396244784,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_65,10.031048600000002,47.56387919624479,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_66,10.0323076,47.563954496244826,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_67,10.031477000000004,47.56388309624484,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_68,10.0320594,47.56393649624482,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_69,10.032718300000004,47.56389569624482,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_70,10.033139199999995,47.56376069624482,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_71,10.0339786,47.563537496244784,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446033,10.028287150038915,47.564488796333045,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446093,10.031190850007004,47.56365969625965,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446096,10.032237800009334,47.56372094629816,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446097,10.032648389715108,47.56373253524524,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446098,10.033015436587327,47.56364417467077,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446099,10.031307077873834,47.5641046600747,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446103,10.031447867273084,47.56366748022721,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446104,10.031868300009624,47.563688796292574,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446106,10.031618062231892,47.564144975430615,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446107,10.031823221501503,47.56419787149373,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446108,10.033352747040837,47.56355136737869,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446110,10.03190593014434,47.56421513864123,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446111,10.033775331012029,47.565100814834366,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446112,10.034450105908736,47.564916023700796,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446113,10.034437707780526,47.56521877707248,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446114,10.032122264506805,47.56416624036618,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446115,10.032216200001065,47.5641739962659,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446116,10.032449350002246,47.56416854626538,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446117,10.03366990912328,47.56342201518372,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446118,10.032324151244445,47.56434674519825,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446119,10.03533260216576,47.5641164193125,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446120,10.035658734147315,47.564327942444365,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446121,10.033333097609855,47.56385804749884,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446122,10.03577708384403,47.56447882093662,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446123,10.03241835000041,47.56434979626591,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446124,10.032789800476383,47.56410837478585,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446125,10.034808780951716,47.5649081809939,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446126,10.033518468620805,47.56388208859298,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446127,10.034894322241328,47.565040305286765,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446128,10.03313685819382,47.56399966504848,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446132,10.035109571624568,47.565087358677026,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446133,10.035457805795206,47.56513408188496,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446137,10.039990299021438,47.56104027662786,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446147,10.034118846458512,47.563656831776306,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446150,10.0410742002529,47.562009420325055,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446151,10.033966163096206,47.56380186285808,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446153,10.036684373490958,47.56356072087208,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446154,10.036119075190765,47.56365063985645,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446156,10.038713349990688,47.563542046282784,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446157,10.038129452652298,47.563623730189775,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446158,10.038756109270743,47.56390766716081,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446159,10.036267678337241,47.56425438754369,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446160,10.034092183890916,47.56383580213031,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446161,10.036392200010827,47.564085996291816,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446162,10.036434836402485,47.56385001807506,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446163,10.037613257758736,47.56366886281832,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446164,10.036639228680176,47.56434027611946,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446165,10.034231272043478,47.56379307723874,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446166,10.036508350008276,47.56457659632062,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446168,10.037789256369908,47.563853125510384,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446169,10.034556976714862,47.56377731071136,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446170,10.038284549985692,47.56394679629565,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446171,10.03955960002893,47.562688746286184,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446173,10.036178054145722,47.564671164387555,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446174,10.03603263577148,47.56528097152551,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446175,10.03651704021272,47.565193311873145,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446176,10.036746344053114,47.56464070784881,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446177,10.036783303811502,47.565085979670734,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446178,10.039507549981323,47.56307749630973,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446181,10.03465567564528,47.56288595114171,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446187,10.035024266798494,47.56282729734361,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446189,10.035018150013736,47.565374446284906,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446191,10.037658149997089,47.56434219628682,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446193,10.038064344175282,47.564338023094486,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446194,10.034777845707458,47.56588578368532,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446195,10.034983850037838,47.56356704635459,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446196,10.035403736786884,47.565469773128555,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446197,10.03532467669164,47.565570901356296,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446198,10.036015967545527,47.56546527916919,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446201,10.035376524864667,47.5658299929314,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446202,10.03532520212923,47.563718879511754,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446203,10.034914300004274,47.56613839629134,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446204,10.03522177115898,47.56600443786831,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446205,10.036406513878743,47.56536996456823,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446207,10.03574965001483,47.563616246297855,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446208,10.037780627112872,47.56775214307458,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446209,10.037917524049167,47.56782365191671,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446210,10.035000026610899,47.56646919078349,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446211,10.035690505667157,47.56379369873778,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446212,10.035398783116923,47.566213519791965,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446213,10.03582630000163,47.56609084626773,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446214,10.039394631169788,47.56596409460104,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446215,10.033344650000139,47.565193096285256,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446216,10.03977334379636,47.565831820766725,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446218,10.035805737672984,47.56629402743356,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446219,10.035435595684177,47.56647815743607,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446221,10.039053890681835,47.56601569739644,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446223,10.036760524535952,47.5685073030315,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446227,10.035272710823415,47.566977604714275,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446236,10.035833900005288,47.5670797462763,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446237,10.035810386720128,47.56731995884946,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446360,10.041760681263957,47.561691968988136,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446362,10.043965928458926,47.56157584423986,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446365,10.041789856680623,47.56310430986495,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446367,10.042364077564775,47.56283257691557,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_446368,10.042687596718674,47.56480549729363,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_34328730,10.039082867589793,47.56437261489198,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_34328731,10.039780144483865,47.564460413899624,33532,1163940004,0.4,False -BranchTee_mvgd_33532_lvgd_1163940004_building_34328732,10.039775819403019,47.563946466089135,33532,1163940004,0.4,False -BusBar_mvgd_33532_lvgd_1163940005_LV,10.0598717,47.555341996244074,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_1,10.057419099999997,47.55517239624403,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_2,10.0555555,47.55495679624407,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_3,10.0547098,47.55494989624404,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_4,10.055227500000004,47.55455289624404,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_5,10.057793599999997,47.55521889624405,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_6,10.059024100000006,47.555202696244024,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_7,10.055109199999995,47.55493099624401,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_8,10.059203400000005,47.55480259624399,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_9,10.0583608,47.555289396244085,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_10,10.053874399999994,47.55504379624405,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_11,10.058998599999997,47.55537339624407,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_12,10.059543399999999,47.55535609624408,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_13,10.060875799999998,47.55525019624408,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_14,10.062109800000005,47.555700996244106,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_15,10.06142950054595,47.55519919764838,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_16,10.061983199999995,47.55514819624401,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_17,10.062371500000003,47.55511939624407,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_18,10.063004500000005,47.55513119624405,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_19,10.063628699999999,47.554826196243994,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_20,10.065043500000003,47.554483396244,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_21,10.0650152,47.554742696244,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446313,10.057220111636385,47.555413076251234,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446314,10.057657165195662,47.55551383112688,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446317,10.0590708927205,47.554956166703654,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446318,10.058257821332921,47.55541247457989,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446328,10.05441067341645,47.55463857156333,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446329,10.053976974385096,47.5547510496373,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446331,10.054428156915955,47.55486475797469,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446332,10.058979515717029,47.555511720055605,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446335,10.059224740733612,47.55553300830566,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446337,10.059357388163612,47.55515942669589,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446338,10.055148671147556,47.55451470176916,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446339,10.0553327000053,47.55459014627812,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446341,10.055514072994447,47.55484702927649,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446343,10.06250540000004,47.555027446255046,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446344,10.059694911382431,47.555196181355655,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446345,10.06002627901912,47.555205623993814,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446346,10.062183726925081,47.555548753320146,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446349,10.059508095502018,47.55548952227469,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446352,10.061120699992303,47.555065296305344,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446353,10.062892999997608,47.55502744629373,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446355,10.0614845531753,47.555051559707984,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446357,10.0617298466666,47.55503593864708,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446358,10.063353578336207,47.55464998407479,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446535,10.063597122780603,47.55459790143124,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446539,10.065151800000038,47.55455374626567,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446541,10.065189773390424,47.55466169949057,33532,1163940005,0.4,False -BranchTee_mvgd_33532_lvgd_1163940005_building_446542,10.065099650000118,47.55471369625027,33532,1163940005,0.4,False -Bus_mvgd_33532_lvgd_1163940005_gen_246,10.059508095502018,47.55548952227469,33532,1163940005,0.4,False -BusBar_mvgd_33532_lvgd_1163980000_LV,10.0513544,47.56223849624466,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_1,10.050635599999998,47.56250449624471,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_2,10.051416600000003,47.56269649624471,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_3,10.053771199999998,47.563268396244794,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_4,10.048245999999999,47.56059759624454,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_5,10.047407499999998,47.55988819624449,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_building_446370,10.0506767124009,47.56232077281203,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_building_446371,10.047406519612409,47.559971548687116,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_building_446378,10.053573063348413,47.5631925713402,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_building_446384,10.051528823722016,47.56216229695371,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_building_446394,10.051180172690168,47.56272375272389,33532,1163980000,0.4,False -BranchTee_mvgd_33532_lvgd_1163980000_building_446375,10.048170400007438,47.560735396268655,33532,1163980000,0.4,False -BusBar_mvgd_33532_lvgd_1164000000_LV,10.058768199999996,47.56576709624502,33532,1164000000,0.4,False -BranchTee_mvgd_33532_lvgd_1164000000_building_446387,10.058863726561917,47.565628434212776,33532,1164000000,0.4,False -BusBar_mvgd_33532_lvgd_1164650000_LV,10.006545348901419,47.511165158297686,33532,1164650000,0.4,False -BranchTee_mvgd_33532_lvgd_1164650000_building_431401,10.006545348901419,47.511165158297686,33532,1164650000,0.4,False -BusBar_mvgd_33532_lvgd_1165560000_LV,10.008001799999994,47.57208949624548,33532,1165560000,0.4,False -BranchTee_mvgd_33532_lvgd_1165560000_building_442271,10.008300057214763,47.57223794176855,33532,1165560000,0.4,False -BusBar_mvgd_33532_lvgd_1165580000_LV,10.00487026241384,47.50392359944945,33532,1165580000,0.4,False -BranchTee_mvgd_33532_lvgd_1165580000_building_430919,10.00497080004529,47.50384399629569,33532,1165580000,0.4,False -BranchTee_mvgd_33532_lvgd_1165580000_building_430922,10.004835850003975,47.50395084624699,33532,1165580000,0.4,False -BusBar_mvgd_33532_lvgd_1166160000_LV,10.007437925988821,47.52293178918052,33532,1166160000,0.4,False -BranchTee_mvgd_33532_lvgd_1166160000_building_431459,10.007413250026959,47.52283874630099,33532,1166160000,0.4,False -BranchTee_mvgd_33532_lvgd_1166160000_building_431460,10.007459856262065,47.52301447891101,33532,1166160000,0.4,False -BusBar_mvgd_33532_lvgd_1166370000_LV,10.010055050033241,47.51512089628523,33532,1166370000,0.4,False -BranchTee_mvgd_33532_lvgd_1166370000_building_431436,10.010055050033241,47.51512089628523,33532,1166370000,0.4,False -BusBar_mvgd_33532_lvgd_1166640000_LV,10.003053600000003,47.527566196241544,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_1,10.006528100000002,47.52836679624166,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_2,10.003101400000004,47.52798599624161,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_3,10.003195399999994,47.528068096241654,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_4,10.005604700000001,47.52833659624167,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_5,10.000547499999998,47.52753119624159,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_6,10.002593900000004,47.52808699624162,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_7,10.001090599999996,47.52765079624159,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_8,10.001601100000006,47.5277102962416,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_9,10.002059399999993,47.52795519624159,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_10,10.0017151,47.5278922962416,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_11,10.000840899999996,47.52756649624161,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_12,10.0015165,47.527848896241615,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_13,10.000305600000006,47.52884329624169,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_14,10.002924500000002,47.52634719624145,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_15,10.002958299999998,47.526453296241485,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_16,10.0031976,47.526873296241526,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_17,10.003275099999996,47.527145596241546,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_18,10.002270099999999,47.5265710962415,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_19,10.005959700000002,47.525792696241425,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_20,10.003095299999995,47.527486896241584,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_21,10.003119600000002,47.52673489624151,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_22,10.002681100000002,47.52669719624153,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_23,10.006094099999995,47.52584889624143,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431440,10.001669780825766,47.526155641524056,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431441,10.002372449974104,47.52641199630945,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431450,10.003109172948914,47.52635379219151,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431451,10.002588831559741,47.52685209970552,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431453,10.006208420901238,47.52570314285222,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431454,10.003291278574475,47.52639674911151,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431455,10.005875515514706,47.52588415573355,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431462,10.003307249996766,47.52662274632496,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431592,10.001661464944748,47.5280093447294,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431595,10.003036879541833,47.526892248828574,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431596,10.000195525626594,47.52764001469639,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431608,10.000856320247514,47.52773689997258,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431609,10.002217250003524,47.52793224624926,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431611,10.001195764079513,47.527597341408864,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431614,10.000598500029314,47.528915546293646,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431616,10.002869920429045,47.52804075344283,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431618,10.002733216197905,47.5281721718628,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431620,10.003045916441627,47.52812252589443,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431621,10.003395266060705,47.52716452059647,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431623,10.005823945100627,47.528509351646115,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431626,10.006428500835318,47.52874233042319,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431628,10.006519188640201,47.52855713434549,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431631,10.0034957723341,47.527556444213474,33532,1166640000,0.4,False -BranchTee_mvgd_33532_lvgd_1166640000_building_431636,10.003295455370742,47.527905627090206,33532,1166640000,0.4,False -BusBar_mvgd_33532_lvgd_1166650000_LV,10.0078172,47.529730996241796,33532,1166650000,0.4,False -BranchTee_mvgd_33532_lvgd_1166650000_building_431655,10.008596767676996,47.52992093596578,33532,1166650000,0.4,False -BusBar_mvgd_33532_lvgd_1167330000_LV,10.010591400000001,47.50410939623945,33532,1167330000,0.4,False -BranchTee_mvgd_33532_lvgd_1167330000_building_430932,10.010642098111346,47.50397985325051,33532,1167330000,0.4,False -BusBar_mvgd_33532_lvgd_1167770000_LV,10.011235800007439,47.5333865462718,33532,1167770000,0.4,False -BranchTee_mvgd_33532_lvgd_1167770000_building_431696,10.011235800007439,47.5333865462718,33532,1167770000,0.4,False -BusBar_mvgd_33532_lvgd_1168630000_LV,10.015019600000004,47.51566519624052,33532,1168630000,0.4,False -BranchTee_mvgd_33532_lvgd_1168630000_building_431433,10.014781542056882,47.51553041471124,33532,1168630000,0.4,False -BusBar_mvgd_33532_lvgd_1169820000_LV,10.0221088,47.57779949624604,33532,1169820000,0.4,False -BranchTee_mvgd_33532_lvgd_1169820000_building_446412,10.022265418993758,47.57801400474753,33532,1169820000,0.4,False -BusBar_mvgd_33532_lvgd_1170260000_LV,10.023249199999997,47.5739876962457,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_1,10.023604699999996,47.57456979624575,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_2,10.023556100000004,47.57454199624575,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_3,10.023372900000004,47.57436649624571,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_4,10.022937099999996,47.574735096245796,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_5,10.022897200000001,47.574960196245804,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_6,10.022330599999995,47.575294696245805,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_7,10.023480199999996,47.574918396245806,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_8,10.022086699999996,47.5747097962458,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_9,10.022356099999993,47.57479059624579,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_10,10.023310899999997,47.5741007962457,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_11,10.023356900000003,47.57425589624573,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_12,10.0232206,47.57454719624577,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_13,10.023088500000002,47.57465659624575,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_14,10.022430099999994,47.57477729624575,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_15,10.022348799999996,47.574931896245815,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446398,10.023052599998683,47.574566996262334,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446399,10.021957219162381,47.57464599142411,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446400,10.023498024673627,47.57427239077096,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446402,10.023348934062797,47.574610685973255,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446403,10.023590788656378,47.57474382940575,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446404,10.02365314999654,47.57409254625976,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446406,10.022108379928019,47.57490527395065,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446407,10.022105339850702,47.57516652269757,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446408,10.023613900001354,47.57419414625325,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446411,10.022490799425304,47.574701144983386,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446413,10.023714625094115,47.57443753418937,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446417,10.022934944026103,47.575114507620846,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_446421,10.023410535182032,47.57513819361646,33532,1170260000,0.4,False -BranchTee_mvgd_33532_lvgd_1170260000_building_544076,10.02451185766711,47.573175998773344,33532,1170260000,0.4,False -BusBar_mvgd_33532_lvgd_1170760000_LV,10.023486400000003,47.5814837962464,33532,1170760000,0.4,False -BranchTee_mvgd_33532_lvgd_1170760000_1,10.022954499999999,47.58148859624634,33532,1170760000,0.4,False -BranchTee_mvgd_33532_lvgd_1170760000_2,10.026040800000002,47.58119209624628,33532,1170760000,0.4,False -BranchTee_mvgd_33532_lvgd_1170760000_building_446459,10.026444980277402,47.581395902843724,33532,1170760000,0.4,False -BranchTee_mvgd_33532_lvgd_1170760000_building_446463,10.023258122721703,47.58229120372857,33532,1170760000,0.4,False -BranchTee_mvgd_33532_lvgd_1170760000_building_446483,10.023144644663516,47.582013216614584,33532,1170760000,0.4,False -BranchTee_mvgd_33532_lvgd_1170760000_building_446484,10.023403780321006,47.58195202710066,33532,1170760000,0.4,False -BusBar_mvgd_33532_lvgd_1172090000_LV,10.010766399999996,47.52779689624157,33532,1172090000,0.4,False -BranchTee_mvgd_33532_lvgd_1172090000_building_431650,10.010723982805679,47.527551416924844,33532,1172090000,0.4,False -BusBar_mvgd_33532_lvgd_1172110000_LV,10.032254799999993,47.52462569624129,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_1,10.033529499999995,47.523841896241244,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_2,10.032867599999998,47.52434969624131,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_3,10.034949799999998,47.52481399624134,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_4,10.034172499999999,47.52362069624127,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_5,10.033919100000006,47.5234658962412,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_6,10.033466598382274,47.524433546718235,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_7,10.033783299999996,47.524697796241355,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_8,10.034601899999997,47.52371849624124,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_9,10.034070800000004,47.52474699624133,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_10,10.034440799999999,47.52476549624135,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_11,10.0350068,47.524733996241345,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_12,10.033149899999996,47.52416929624127,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_13,10.035133700000001,47.524364096241264,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_14,10.0348261,47.52394509624123,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_15,10.0340222,47.52379929624127,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_16,10.034494499999994,47.52380929624129,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_17,10.024439400000004,47.526408896241485,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_18,10.025367999999995,47.52428469624127,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_19,10.025312400000006,47.52461929624132,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_20,10.024299800000003,47.52642169624149,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_21,10.021498799999996,47.520076796240915,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_22,10.026327499999995,47.523213296241195,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_23,10.026218999999994,47.52286519624119,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_24,10.023671000000006,47.519744296240916,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_25,10.023601200000003,47.51949849624084,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_26,10.022711699999993,47.520253996240946,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_27,10.024096799999995,47.52168429624103,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_28,10.0257736,47.522570596241145,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_29,10.0232785,47.52052099624092,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_30,10.026458100000003,47.52311929624116,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_31,10.027287300000003,47.52633449624147,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_32,10.026457499999998,47.52738559624154,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_33,10.030532800000001,47.526200396241435,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_34,10.026050599999998,47.527639896241574,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_35,10.026677200000005,47.52723899624155,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_36,10.027246399999996,47.52681299624154,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_37,10.028110300000003,47.52582399624143,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_38,10.027849200000004,47.5264322962415,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_39,10.028094099999993,47.52600379624145,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_40,10.028436500000005,47.52590709624144,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_41,10.027667700000007,47.52590009624144,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_42,10.028019099999993,47.52566639624141,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_43,10.028997700000003,47.52598629624144,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_44,10.028951300000003,47.52600219624145,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_45,10.0326915,47.52484589624131,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_46,10.033040199999999,47.52515569624133,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_47,10.033305800000003,47.52512669624137,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444465,10.021462950028885,47.520225246281335,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444466,10.021327700002148,47.52045424625069,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444471,10.023102949994994,47.51912389626371,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444473,10.023533716644982,47.52180764606426,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444475,10.022431927813656,47.52067975061542,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444476,10.023342518103442,47.519521400758755,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444477,10.023745450022174,47.5216879463493,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444483,10.023760450001218,47.519703296261106,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444479,10.02451843962586,47.524065452050756,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444493,10.026145824403994,47.522589790464515,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444494,10.026327400002206,47.52260419627613,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444500,10.02622680455863,47.52276307997224,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444503,10.026111752115085,47.52319911213816,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444507,10.024273249989422,47.5263197962767,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444510,10.02445932031406,47.52627154028251,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444517,10.025466304211081,47.524518440661154,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444518,10.025439900002892,47.524618596262684,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444520,10.025172450005174,47.52423829629817,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444525,10.033829126223912,47.523353430212,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444526,10.027481467219946,47.526111794470765,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444527,10.026852705239474,47.526407633097485,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444529,10.028105983326274,47.526136296283944,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444530,10.028508124872255,47.52578924411839,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444533,10.027283750000063,47.52619289627068,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444534,10.033882375434116,47.52395874925365,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444536,10.02764664998287,47.5263719963076,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444537,10.02712449998683,47.52662804628386,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444541,10.034273932575509,47.523549394451315,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444542,10.032700100013498,47.52468279628957,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444543,10.027859331576414,47.5257772300425,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444544,10.034010247547863,47.52364286369428,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444546,10.033094900001633,47.52445274627274,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444547,10.033059195027278,47.52492676373816,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444548,10.03496458808668,47.52436996456396,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444549,10.034116380010143,47.5241031707734,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444550,10.034700765694119,47.52471597259204,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444551,10.030713830594937,47.526312774943825,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444554,10.034875959808176,47.52469869694947,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444555,10.035265850000572,47.52465529626661,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444557,10.033458349993984,47.524177946290635,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444558,10.033787262085756,47.524194532182854,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444559,10.035399489569297,47.5242692644978,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444560,10.035445700003072,47.52455724630228,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444562,10.034891650002276,47.5249377462482,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444563,10.03469265000355,47.52504754627692,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444564,10.033768722899676,47.52444409959984,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444565,10.033300713830638,47.524645721101834,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444568,10.03444378497286,47.52426027078301,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444569,10.034138750000842,47.524640346260945,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444570,10.035090415394713,47.52507677248538,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444571,10.035384509630363,47.52483402339261,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444576,10.033390854599727,47.52502124193437,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444577,10.033611285273818,47.52485317875184,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444578,10.034183283780319,47.52488057054176,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444579,10.033994100004797,47.52498014628227,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444582,10.034744431048573,47.52379075853212,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444585,10.03437863405351,47.52500832097543,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444731,10.025973083732529,47.5270324954913,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444732,10.02600866697833,47.52744253767572,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444743,10.026533583246453,47.52702839655046,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444744,10.026902599992246,47.52687294628459,33532,1172110000,0.4,False -BranchTee_mvgd_33532_lvgd_1172110000_building_444524,10.026318849962545,47.5268243463918,33532,1172110000,0.4,False -BusBar_mvgd_33532_lvgd_1172110001_LV,10.024231499999999,47.53182689624196,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_1,10.023838999999994,47.53290729624206,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_2,10.026436499999999,47.532600696242,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_3,10.024205299999998,47.532322896242036,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_4,10.026011699999996,47.532519496242045,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_5,10.026534700000001,47.53266149624205,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_6,10.0238945,47.53277949624208,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_7,10.025053999999999,47.532622496242034,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_8,10.024242799999993,47.53221619624197,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_9,10.025568799999995,47.532395296242015,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_10,10.021829100000007,47.535703796242295,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_11,10.021285399999998,47.53544639624225,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_12,10.021285599999999,47.53580619624231,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_13,10.021602099999997,47.53596029624237,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_14,10.02333,47.53489319624225,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_15,10.024402000000002,47.533196796242116,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_16,10.024060699999993,47.53582199624235,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_17,10.0243162,47.53315879624212,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_18,10.023826400000004,47.53314339624206,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_19,10.024422800000005,47.53338349624211,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_20,10.0247528,47.53346429624213,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_21,10.022354700000003,47.53279569624204,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_22,10.0219546,47.53278799624207,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_23,10.023815600000006,47.533037196242084,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_24,10.023837999999998,47.533277196242096,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_25,10.023213999999996,47.533089896242096,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_26,10.021507600000001,47.53277469624206,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_27,10.022984999999997,47.53305289624206,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_28,10.022577099999998,47.5328417962421,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_29,10.0176755,47.532138396242,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_30,10.016207400000006,47.53135999624193,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_31,10.022702400000004,47.530412696241854,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_32,10.021962399999994,47.53094039624191,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_33,10.023287500000004,47.53034639624186,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_34,10.022908600000001,47.53041019624186,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_35,10.022485800000002,47.5305375962419,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_36,10.022594599999998,47.53041069624181,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_37,10.022656499999995,47.53017199624183,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_38,10.023773699999994,47.53036299624181,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_39,10.023284700000001,47.53079769624187,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_40,10.024279300000002,47.53165939624193,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_41,10.024199900000001,47.530313296241815,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_42,10.023910000000003,47.5308746962419,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_43,10.024401999999995,47.5308071962419,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_44,10.024173499999998,47.530246096241804,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_45,10.024182600000003,47.53003709624181,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_46,10.024203400000001,47.52990609624178,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_47,10.023164299999998,47.53062749624187,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_48,10.023149500000004,47.53056679624188,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_49,10.023615300000007,47.532360496242035,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_50,10.023494099999992,47.53229669624199,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_51,10.023212400000004,47.531939496241954,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_52,10.022481800000001,47.53187309624199,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_53,10.023000999999999,47.53193709624198,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_54,10.023491000000002,47.53191239624197,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_55,10.023905600000003,47.53184559624199,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_56,10.022746651437075,47.53161619785081,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_57,10.020810600000003,47.531340596241954,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_58,10.015860399999998,47.52965049624177,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_59,10.014662900000001,47.5287874962417,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_60,10.020552900000006,47.531431296241905,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_61,10.021325800000003,47.53131449624192,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_62,10.021521199999997,47.53122779624197,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_63,10.015117599999996,47.52975139624182,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_64,10.022056,47.53181259624192,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_65,10.023338599999995,47.53149059624197,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_66,10.017622799999994,47.530330696241876,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_67,10.016088699999994,47.5297256962418,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_68,10.021742700000006,47.53177379624194,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_69,10.024650599999996,47.53187649624198,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_70,10.024545800000004,47.531833496241966,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_431662,10.014746584009893,47.528656397278574,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_431663,10.016183047684585,47.531478553805414,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_431664,10.015370842357775,47.52977997859128,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_431669,10.01575770002679,47.529839746314465,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_431670,10.01582730655904,47.53002527699182,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_431671,10.017291455678388,47.53045157764012,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_431677,10.017458737006324,47.53050187247534,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_431689,10.017716706421114,47.53233016764943,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444676,10.022313884404612,47.53028333195213,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444677,10.022920018948575,47.53016320000133,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444679,10.022028099996175,47.530208296275156,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444680,10.02361737482702,47.529998788886545,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444681,10.023338359923805,47.530223916606225,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444684,10.021503468793822,47.53096574887492,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444686,10.022339299999864,47.530451246287384,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444687,10.022818742452642,47.53033996650974,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444689,10.022746265472223,47.53057184138532,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444690,10.022380840490921,47.53095859185789,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444692,10.023711000017734,47.52981508846211,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444693,10.024095249999997,47.52977924626325,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444695,10.021744137328747,47.53066746888636,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444698,10.023974247567843,47.53000025216932,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444699,10.023839850000005,47.53020779629402,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444700,10.024334011198608,47.530209696523535,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444701,10.02190179124684,47.530710551341215,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444703,10.02340487560998,47.53051070075466,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444704,10.023060559499,47.53074594496927,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444705,10.022163302913699,47.53095864914782,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444707,10.024508579159939,47.53025332867372,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444713,10.023718119901742,47.53088194320358,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444714,10.023253432621287,47.53103536268353,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444715,10.020849999999394,47.53119019626213,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444717,10.023003349992196,47.53137869627116,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444718,10.02384589999854,47.5308205962468,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444719,10.024471849987346,47.53042014626693,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444720,10.021336117077402,47.531181114543585,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444721,10.024693000000003,47.53034814624642,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444722,10.024839099996356,47.53049389625418,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444724,10.023364237138502,47.531410913883064,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444725,10.021793588957202,47.531290675889196,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444726,10.022955269117233,47.53174886725565,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444727,10.022363149991198,47.53204399629724,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444728,10.022514640290195,47.531471628086614,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444734,10.022760072021288,47.53213466016088,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444735,10.023498092499572,47.53166946129472,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444736,10.023149985419394,47.532215938451266,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444737,10.021501829636671,47.5319035434206,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444738,10.02358013246757,47.53207925049404,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444739,10.023968693346138,47.53155244230253,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444742,10.021945053749237,47.53197873388065,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444745,10.024601532891785,47.53165550606462,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444746,10.023907084979776,47.53201457080159,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444748,10.023920531161512,47.53233576442544,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444749,10.024846706316426,47.53183561394735,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444750,10.0245324925101,47.532108144954805,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444751,10.024889778260391,47.5320822125205,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444765,10.021763569566577,47.53290758982045,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444775,10.02151552483215,47.53319694858947,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444776,10.021768545601912,47.533161118006184,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444777,10.02215733649573,47.53318807873259,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444779,10.022449493074342,47.53299048450487,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444780,10.02171985000221,47.53262454627628,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444783,10.023191150010735,47.53331004628796,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444785,10.022910708342154,47.53286141899801,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444786,10.023563765051982,47.53337332217882,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444788,10.02368100187096,47.53257500104364,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444789,10.024434744391764,47.53253345677438,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444790,10.023292889402807,47.532531295423325,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444791,10.023008665640344,47.53285366443409,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444793,10.023260251408209,47.53287470238051,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444794,10.023594730660419,47.53282669055229,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444796,10.024876792416991,47.532376063817566,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444800,10.022818978555131,47.53323828346944,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444802,10.024428969563576,47.53293072879283,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444806,10.024064050001455,47.53303694630505,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444808,10.024665514511092,47.53316048899566,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444809,10.024570450000095,47.53330179630573,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444810,10.021625466868333,47.535757647507715,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444814,10.024878725191941,47.53304962653271,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444815,10.024885782661695,47.533306290296686,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444817,10.021348811599877,47.53593451009363,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444818,10.023825650017939,47.53587934628145,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444820,10.021459292485511,47.535990812025574,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444822,10.02580835806804,47.532752439202774,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444827,10.02608086790615,47.532717341387986,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444829,10.026228582946596,47.532788744721394,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444830,10.026376283423089,47.532860176047116,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444836,10.02520106155439,47.53316998948653,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444848,10.025512962372984,47.53260960894123,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444851,10.02566063774941,47.53268100349012,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444855,10.025128888734445,47.53281068586293,33532,1172110001,0.4,False -BranchTee_mvgd_33532_lvgd_1172110001_building_444867,10.02630066737157,47.53245484764815,33532,1172110001,0.4,False -BusBar_mvgd_33532_lvgd_1172110002_LV,10.024302799999996,47.52916379624174,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_1,10.025328999999996,47.52971699624175,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_2,10.025788700000001,47.52975949624179,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_3,10.024922799999993,47.52945199624177,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_4,10.025041899999994,47.52905869624173,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_5,10.031248600000005,47.52747019624157,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_6,10.0327695,47.526963496241514,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_7,10.031991499999995,47.52698489624154,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_8,10.0245203,47.52951009624173,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_9,10.026377,47.52926149624172,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_10,10.024225299999996,47.52951849624174,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_11,10.0253432,47.52937409624175,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_12,10.0260792,47.5299344962418,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_13,10.029204200000004,47.53042249624183,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_14,10.0257714,47.52996059624182,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_15,10.024218699999997,47.5296346962418,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_16,10.0246961,47.5299004962418,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_17,10.025097300000006,47.52975079624178,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_18,10.029700799999997,47.53024779624184,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_19,10.024880899999996,47.52955129624174,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_20,10.032528100000002,47.527017696241565,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_21,10.026959600000003,47.52917999624173,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_22,10.027160799999995,47.52908579624174,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_23,10.026295300000003,47.52927039624172,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_24,10.024839400000001,47.52982949624178,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_25,10.021810500000003,47.52923449624171,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_26,10.0228568,47.52930879624177,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_27,10.022259800000002,47.52798889624158,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_28,10.022422099999993,47.528074796241626,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_29,10.021199099999999,47.52750879624162,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_30,10.0224777,47.528447596241655,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_31,10.022529299999995,47.52827019624167,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_32,10.022427199999992,47.528600796241705,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_33,10.021878100000006,47.52603269624145,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_34,10.023231000000004,47.52820609624163,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_35,10.022774399999996,47.52981959624182,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_36,10.022878999999998,47.52959759624177,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_37,10.022885899999995,47.52943599624173,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_38,10.022853499999995,47.52906929624168,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_39,10.0228955,47.52890599624167,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_40,10.023074999999999,47.52896149624171,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_41,10.023292699999997,47.528455996241675,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_42,10.023795299999993,47.52910259624178,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_43,10.023467199999995,47.52905489624168,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_44,10.022584500000002,47.52879829624168,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_45,10.022431699999995,47.52907899624171,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_46,10.022333649624223,47.529271647495754,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_47,10.020913299999995,47.52756609624161,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_48,10.023311800000007,47.52838089624168,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_49,10.024743999999997,47.5286991962417,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_50,10.025489800000004,47.528292596241656,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_51,10.025064800000003,47.528391796241664,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_52,10.025590300000005,47.52823729624167,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_53,10.024360699999997,47.52908759624173,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444487,10.021877499979716,47.52616024628516,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444625,10.021004800000389,47.52747194624771,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444635,10.020775125484871,47.52761669303924,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444787,10.029672407422868,47.5273371947566,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444797,10.029827639886632,47.527306677384416,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444831,10.032553749997145,47.52706174625524,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444833,10.032968899990385,47.5270308462695,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444844,10.032133129908537,47.527066967881424,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444627,10.022250373836036,47.52827365033013,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444632,10.022210600000536,47.528484346273196,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444633,10.02156473497653,47.528969222079304,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444636,10.021599350007229,47.52926599628307,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444638,10.021870932719386,47.52937726839517,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444640,10.022030677915012,47.52936147498267,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444641,10.023531388808145,47.52864814567167,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444644,10.02228845000017,47.52907429637833,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444645,10.02242994999966,47.52786944626754,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444646,10.022755274836603,47.52799964143594,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444647,10.023323099999994,47.52806324626409,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444648,10.022722999991117,47.52828284627241,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444649,10.022591034185261,47.52920242596224,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444650,10.022662970140262,47.52902201040693,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444651,10.024774424784976,47.529054919073445,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444652,10.022484245100356,47.52938192196093,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444653,10.022620950905434,47.5294836068547,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444654,10.022631759840523,47.52958548539707,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444655,10.023012332244901,47.52907581216953,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444656,10.022718955173774,47.528569882146414,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444657,10.022334200000202,47.52858469624793,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444658,10.02305028012091,47.528251188098615,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444659,10.024528338687684,47.52935878517968,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444660,10.023499160413548,47.5283566568211,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444661,10.023251767961936,47.528684220974874,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444663,10.0233955000003,47.52896594624842,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444664,10.023588200000935,47.52893874627124,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444665,10.023449067342643,47.529210819762746,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444667,10.02303755000337,47.5292775962598,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444669,10.023292112642055,47.5288791265546,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444670,10.022350050000975,47.52979724636293,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444671,10.022938781326152,47.52991531469116,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444672,10.023097825434373,47.52955777749231,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444674,10.024032285387158,47.52889941748253,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444675,10.024768949995089,47.52854704628559,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444678,10.023475850000741,47.52967344625063,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444682,10.024392114312713,47.528763697889104,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444683,10.024955183924748,47.52882069740989,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444685,10.024006912492728,47.52899752861861,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444691,10.02458155000628,47.52911834629005,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444702,10.024735100007943,47.529655246273414,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444708,10.02479961994012,47.530078363785776,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444710,10.023783443951293,47.52961865689981,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444711,10.024893708969861,47.52997434148755,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444741,10.025636031684037,47.52815424998782,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444747,10.026310800005843,47.528930046287414,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444755,10.025145711456144,47.528580656891734,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444756,10.025452523458352,47.52881803893619,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444757,10.025816043168374,47.5287675983847,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444758,10.025312599899186,47.52923224633825,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444759,10.026111975278717,47.529164141209804,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444760,10.025896400000857,47.52916169628283,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444763,10.026763773564355,47.52881350059622,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444764,10.02988893551011,47.53025026600378,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444766,10.026517876331,47.52913957022339,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444768,10.02943061765898,47.530506426426506,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444770,10.026725010813951,47.52910074681912,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444778,10.02704058316756,47.52903659673736,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444804,10.025648731815034,47.53000494623114,33532,1172110002,0.4,False -BranchTee_mvgd_33532_lvgd_1172110002_building_444807,10.026195909175113,47.529823961557156,33532,1172110002,0.4,False -BusBar_mvgd_33532_lvgd_1172130000_LV,10.040297599999995,47.522345496241094,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_1,10.0411737,47.522446996241115,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_2,10.040536699999999,47.52226849624113,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_3,10.0410797,47.52206519624106,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_4,10.039417400000005,47.522368396241106,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_5,10.039540199999996,47.52277189624116,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_6,10.038031700000007,47.52167859624104,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_building_444574,10.038022831644493,47.521586494878775,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_building_444575,10.040700902597791,47.52196696232094,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_building_444580,10.040370300005193,47.522433046265725,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_building_444583,10.041102630615764,47.52233819319688,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_building_444596,10.039899748014024,47.52278719177581,33532,1172130000,0.4,False -BranchTee_mvgd_33532_lvgd_1172130000_building_444598,10.041016959043139,47.52333406589539,33532,1172130000,0.4,False -BusBar_mvgd_33532_lvgd_1172140000_LV,10.045975599999997,47.52399479624128,33532,1172140000,0.4,False -BranchTee_mvgd_33532_lvgd_1172140000_1,10.046000599999996,47.52409139624131,33532,1172140000,0.4,False -BranchTee_mvgd_33532_lvgd_1172140000_building_444617,10.04586895827317,47.524112767798755,33532,1172140000,0.4,False -BranchTee_mvgd_33532_lvgd_1172140000_building_444618,10.04596457672215,47.523833847140395,33532,1172140000,0.4,False -BranchTee_mvgd_33532_lvgd_1172140000_building_444619,10.046066294381768,47.52394187363385,33532,1172140000,0.4,False -BusBar_mvgd_33532_lvgd_1172410000_LV,10.036098400000006,47.5479147962434,33532,1172410000,0.4,False -BranchTee_mvgd_33532_lvgd_1172410000_1,10.036733600000005,47.547742396243365,33532,1172410000,0.4,False -BranchTee_mvgd_33532_lvgd_1172410000_building_444988,10.036075699999557,47.547843446249765,33532,1172410000,0.4,False -BranchTee_mvgd_33532_lvgd_1172410000_building_444990,10.036358226693853,47.547964142025236,33532,1172410000,0.4,False -BranchTee_mvgd_33532_lvgd_1172410000_building_444991,10.036708296535181,47.547895968438084,33532,1172410000,0.4,False -BusBar_mvgd_33532_lvgd_1172450000_LV,10.029131799999996,47.52199289624106,33532,1172450000,0.4,False -BranchTee_mvgd_33532_lvgd_1172450000_building_444513,10.029424200021836,47.52213244629488,33532,1172450000,0.4,False -BusBar_mvgd_33532_lvgd_1172500000_LV,10.032533199999994,47.5201094962409,33532,1172500000,0.4,False -BranchTee_mvgd_33532_lvgd_1172500000_building_444532,10.032539424906318,47.51981720167042,33532,1172500000,0.4,False -BranchTee_mvgd_33532_lvgd_1172500000_building_444538,10.032385631534533,47.519984896394725,33532,1172500000,0.4,False -BusBar_mvgd_33532_lvgd_1173000000_LV,10.032806700000002,47.54786329624343,33532,1173000000,0.4,False -BranchTee_mvgd_33532_lvgd_1173000000_building_444976,10.033094871681627,47.54788727096989,33532,1173000000,0.4,False -BusBar_mvgd_33532_lvgd_1175770000_LV,10.041373199999999,47.5492303962435,33532,1175770000,0.4,False -BranchTee_mvgd_33532_lvgd_1175770000_building_445955,10.041225318939833,47.54934303783623,33532,1175770000,0.4,False -BranchTee_mvgd_33532_lvgd_1175770000_building_446232,10.041548768597277,47.54909061181894,33532,1175770000,0.4,False -BusBar_mvgd_33532_lvgd_1176030000_LV,10.0433253,47.51941649624082,33532,1176030000,0.4,False -BranchTee_mvgd_33532_lvgd_1176030000_1,10.043629599999994,47.519076496240814,33532,1176030000,0.4,False -BranchTee_mvgd_33532_lvgd_1176030000_2,10.043900303550402,47.519096897780706,33532,1176030000,0.4,False -BranchTee_mvgd_33532_lvgd_1176030000_building_444612,10.043510500001982,47.51905109625182,33532,1176030000,0.4,False -BranchTee_mvgd_33532_lvgd_1176030000_building_34328622,10.044273288172517,47.52003432301617,33532,1176030000,0.4,False -BranchTee_mvgd_33532_lvgd_1176030000_building_34328623,10.045060002523103,47.51998398147169,33532,1176030000,0.4,False -BranchTee_mvgd_33532_lvgd_1176030000_building_34328624,10.045048120618564,47.52020725732455,33532,1176030000,0.4,False -BusBar_mvgd_33532_lvgd_1176040000_LV,10.0458033,47.51696909624063,33532,1176040000,0.4,False -BranchTee_mvgd_33532_lvgd_1176040000_building_444610,10.045760447689958,47.51740787622341,33532,1176040000,0.4,False -BusBar_mvgd_33532_lvgd_1176170000_LV,10.040137799999998,47.53328529624212,33532,1176170000,0.4,False -BranchTee_mvgd_33532_lvgd_1176170000_1,10.042069299999998,47.53118829624196,33532,1176170000,0.4,False -BranchTee_mvgd_33532_lvgd_1176170000_building_444839,10.037626799994149,47.53304354633651,33532,1176170000,0.4,False -BranchTee_mvgd_33532_lvgd_1176170000_building_444847,10.039897974412513,47.533291827955765,33532,1176170000,0.4,False -BranchTee_mvgd_33532_lvgd_1176170000_building_445006,10.04190014998923,47.53133199636196,33532,1176170000,0.4,False -BusBar_mvgd_33532_lvgd_1176270000_LV,10.042503699999997,47.537140996242435,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_1,10.042870899999995,47.53668409624241,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_2,10.043892200000004,47.5366046962424,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_3,10.044170600000003,47.536747496242405,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_4,10.044868999999997,47.53701069624246,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_5,10.0440461,47.53695019624244,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_6,10.044979500000002,47.53720389624246,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_7,10.045081400000008,47.53746649624248,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_8,10.045623200000001,47.53777139624254,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_9,10.044628100000002,47.53740489624244,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_10,10.0428453,47.53876969624257,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_11,10.043044899999991,47.53875739624261,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_12,10.041452799999995,47.538151896242546,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_13,10.0424287,47.537548696242524,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_14,10.041673000000005,47.538092596242514,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_15,10.041793299999998,47.53854309624258,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_16,10.040532200000003,47.536307796242376,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_17,10.039934800000001,47.53597799624236,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_18,10.040022499999992,47.536024796242394,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_444849,10.03969852034931,47.53594982441468,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_444853,10.04006238736667,47.53623526902197,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_444983,10.041417181820865,47.53828181609229,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_445017,10.043556399990953,47.536721496274566,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_445027,10.04371820685196,47.53664934542272,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_445031,10.04389519784497,47.537030446760255,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_445051,10.044657921553679,47.537300711277254,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_445056,10.045144799994493,47.53723749627302,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_445061,10.045176849994494,47.53734554627292,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_445065,10.045439803406266,47.53776337565402,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_445019,10.04206669960398,47.53850602997704,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_34328652,10.041214680154853,47.53607734556965,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_34328653,10.041926615420305,47.536120540616416,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_34328654,10.042038750178303,47.53608893817889,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_34328658,10.043325792000617,47.53810694274424,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_34328659,10.04271659751244,47.53822049173024,33532,1176270000,0.4,False -BranchTee_mvgd_33532_lvgd_1176270000_building_34328660,10.043384822583384,47.537873808057206,33532,1176270000,0.4,False -BusBar_mvgd_33532_lvgd_1181890000_LV,10.0559142,47.551425396243694,33532,1181890000,0.4,False -BranchTee_mvgd_33532_lvgd_1181890000_1,10.055750299999996,47.551668196243746,33532,1181890000,0.4,False -BranchTee_mvgd_33532_lvgd_1181890000_building_34328685,10.055887305887195,47.55139465912342,33532,1181890000,0.4,False -BranchTee_mvgd_33532_lvgd_1181890000_building_34328686,10.055987955138754,47.55171078520471,33532,1181890000,0.4,False -BranchTee_mvgd_33532_lvgd_1181890000_building_34328687,10.056941896860488,47.55171768968559,33532,1181890000,0.4,False -BusBar_mvgd_33532_lvgd_1182040000_LV,10.061142999999996,47.5509362962437,33532,1182040000,0.4,False -BranchTee_mvgd_33532_lvgd_1182040000_1,10.060847100000002,47.55115819624369,33532,1182040000,0.4,False -BranchTee_mvgd_33532_lvgd_1182040000_2,10.061261999999997,47.55077909624365,33532,1182040000,0.4,False -BranchTee_mvgd_33532_lvgd_1182040000_building_446320,10.0605918789901,47.55082229963759,33532,1182040000,0.4,False -BranchTee_mvgd_33532_lvgd_1182040000_building_446321,10.060666766945138,47.551122431537664,33532,1182040000,0.4,False -BranchTee_mvgd_33532_lvgd_1182040000_building_446324,10.061474533859258,47.55086795747276,33532,1182040000,0.4,False -BranchTee_mvgd_33532_lvgd_1182040000_building_446325,10.06090809999781,47.5509781462554,33532,1182040000,0.4,False -BusBar_mvgd_33532_lvgd_1184350000_LV,10.065379699999998,47.50929659623996,33532,1184350000,0.4,False -BranchTee_mvgd_33532_lvgd_1184350000_building_445053,10.065421500002595,47.50913729628133,33532,1184350000,0.4,False -BranchTee_mvgd_33532_lvgd_1184350000_building_445054,10.065171372422327,47.50938641432082,33532,1184350000,0.4,False -BusBar_mvgd_33532_lvgd_1184830000_LV,10.066793690589224,47.496823412565696,33532,1184830000,0.4,False -BranchTee_mvgd_33532_lvgd_1184830000_building_444439,10.066793690589224,47.496823412565696,33532,1184830000,0.4,False -BusBar_mvgd_33532_lvgd_1185800000_LV,10.0781729,47.4601707962354,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_1,10.075233700000004,47.46016419623538,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_2,10.075614099999996,47.460173696235366,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_3,10.077101800000001,47.46030229623538,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_4,10.077554000000008,47.46033149623539,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_5,10.077770300000001,47.46036909623536,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_6,10.078043499999993,47.460513996235456,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_7,10.080368300000004,47.46116889623547,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_8,10.080873399999998,47.461422796235524,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_9,10.081013399999996,47.46147979623551,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_10,10.0780289,47.46020019623542,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_11,10.074820499999996,47.46005289623538,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_12,10.078357000000002,47.460046296235426,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_13,10.078551200000003,47.45992399623537,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_14,10.078772199999998,47.45952329623531,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_15,10.0788333,47.45941519623528,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_16,10.078886000000006,47.45932189623534,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_17,10.0789731,47.45925389623529,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_18,10.079314599999998,47.45919509623528,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_19,10.079636099999998,47.45900039623526,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_20,10.078798999999997,47.45992399623537,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_21,10.079451900000006,47.45971349623531,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_22,10.079336400000008,47.4595264962353,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_23,10.079023500000003,47.459463696235325,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422706,10.07500087533002,47.45990087202393,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422707,10.074599950011214,47.46015469625085,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422708,10.078029088294167,47.460018199860365,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422709,10.078680057347183,47.45941859727809,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422710,10.07846711761433,47.460205212225645,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422713,10.075296654808081,47.460039047182285,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422714,10.078173794099834,47.460363288492225,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422715,10.079133260525836,47.45939101585434,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422716,10.078784279302987,47.459821015538786,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422717,10.075787060071402,47.45996645871115,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422719,10.078578697836855,47.459155546621496,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422720,10.078896610529696,47.45981472920969,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422721,10.079249778228498,47.459414368751084,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422723,10.078452413762895,47.45941756872113,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422725,10.07927017917089,47.458998788936896,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422726,10.079391001238083,47.459627163075524,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422727,10.078567846235504,47.45941767170683,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422728,10.079209903541027,47.4587026229123,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422729,10.079370618513785,47.45900980582938,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422730,10.079325197217791,47.458693097638644,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422734,10.079426491866341,47.45868637160157,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422740,10.078692863257478,47.4591698155983,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422743,10.078792480021814,47.45918395283947,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422747,10.079454103315241,47.45944264608317,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422756,10.077558718005715,47.4598699799227,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422765,10.077301850001898,47.46021954624326,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422768,10.077502874360945,47.46014889862081,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422771,10.077616090451436,47.46024476651535,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_422774,10.078503818487986,47.4597659852931,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_444323,10.08018690521597,47.46130074476384,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_444345,10.080571400001068,47.4616041962422,33532,1185800000,0.4,False -BranchTee_mvgd_33532_lvgd_1185800000_building_444348,10.080945793564062,47.4616164236589,33532,1185800000,0.4,False -BusBar_mvgd_33532_lvgd_1185810000_LV,10.093199999999996,47.46412419623574,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_1,10.08738439999999,47.46308379623566,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_2,10.085768499999995,47.462260596235595,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_3,10.088912700000002,47.463470196235676,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_4,10.090274699999995,47.463520896235686,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_5,10.0907845,47.46357379623574,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_6,10.091154099999994,47.463629796235686,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_7,10.089460099999995,47.46341929623569,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_8,10.089762900000006,47.463394496235665,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_9,10.090521100000005,47.46331209623572,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_10,10.086533000000006,47.462401996235606,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_11,10.093333000000003,47.46417889623579,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_12,10.0929535,47.46485509623582,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_13,10.093683599999997,47.46483239623579,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_14,10.093985299999998,47.46443349623581,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_15,10.092557500000002,47.46394879623571,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_16,10.092850600000006,47.464065496235754,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_17,10.093143700000004,47.46419319623573,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_18,10.091823600000003,47.465258696235885,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_19,10.093445399999993,47.46408099623573,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444349,10.086776284213798,47.46237336617522,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444350,10.087221795881588,47.46323078951298,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444352,10.086322964693032,47.46229152506687,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444353,10.086451815987887,47.46249577626584,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444356,10.088877364169344,47.46366671414624,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444358,10.089478950000002,47.46335204623836,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444359,10.089747096230699,47.46324359087242,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444360,10.090733600079071,47.46323379633528,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444361,10.09351994760257,47.463883064812606,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444362,10.093134284260698,47.46429514742613,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444363,10.09261355001072,47.46464329626896,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444367,10.085107021344212,47.46215543343433,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444368,10.089758775274063,47.46376334233826,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444371,10.09198651952527,47.46532214972314,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444374,10.09017280415298,47.46386286094757,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444375,10.091869306614386,47.46541003146964,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444378,10.090659150000794,47.463844296279134,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444380,10.093819332946795,47.464735495944225,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444410,10.092399500011089,47.46405919631745,33532,1185810000,0.4,False -BranchTee_mvgd_33532_lvgd_1185810000_building_444411,10.092741217152966,47.46414184961644,33532,1185810000,0.4,False -BusBar_mvgd_33532_lvgd_1186310000_LV,10.076023899999992,47.55100299624363,33532,1186310000,0.4,False -BranchTee_mvgd_33532_lvgd_1186310000_1,10.076089100000003,47.55102819624371,33532,1186310000,0.4,False -BranchTee_mvgd_33532_lvgd_1186310000_2,10.075905799999992,47.550973996243656,33532,1186310000,0.4,False -BranchTee_mvgd_33532_lvgd_1186310000_building_446604,10.075898699998548,47.551036796255545,33532,1186310000,0.4,False -BranchTee_mvgd_33532_lvgd_1186310000_building_446610,10.0760660755606,47.55092495040676,33532,1186310000,0.4,False -BranchTee_mvgd_33532_lvgd_1186310000_building_446612,10.07614243768055,47.551225037325246,33532,1186310000,0.4,False -BusBar_mvgd_33532_lvgd_1191970000_LV,10.106713927889984,47.47333964308403,33532,1191970000,0.4,False -BranchTee_mvgd_33532_lvgd_1191970000_building_444419,10.106713927889984,47.47333964308403,33532,1191970000,0.4,False -BusBar_mvgd_33532_lvgd_1193200000_LV,10.096039900000005,47.44450929623392,33532,1193200000,0.4,False -BranchTee_mvgd_33532_lvgd_1193200000_building_422741,10.095888600002286,47.44466084629291,33532,1193200000,0.4,False -BusBar_mvgd_33532_lvgd_1195310000_LV,10.103981500000007,47.465726496235916,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_1,10.105004100000004,47.46589949623591,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_2,10.104228700000004,47.465940496235945,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_3,10.105089399999999,47.46590719623588,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_4,10.1042315,47.46572099623589,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_5,10.104069599999994,47.46598739623591,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_6,10.103849300000004,47.46618079623597,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_7,10.1040912,47.46537619623589,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_8,10.1035863,47.465278396235895,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_9,10.104228800000003,47.46534289623588,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_10,10.104703199999998,47.46532629623588,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_11,10.104512000000009,47.4653293962359,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_12,10.103995600000003,47.46556929623591,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_13,10.102818999999997,47.46577789623593,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_14,10.102365499999994,47.46579099623594,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_15,10.102485799999998,47.46578749623589,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_16,10.102639000000002,47.46547129623587,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_17,10.103256000000005,47.46575189623597,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444390,10.104264930490427,47.46560796441886,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444398,10.104544184648642,47.46543297106308,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444403,10.103772075179121,47.46591666454188,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444416,10.10227799705324,47.46557892932345,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444417,10.104430930509778,47.465989933640394,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444418,10.102842470407381,47.4654737387463,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444420,10.10414319998546,47.46619869627238,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444423,10.10291980130821,47.46588381727913,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444424,10.102644349996698,47.46595884631719,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444425,10.104682399996461,47.465239146246,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444426,10.10322317563022,47.465903628532054,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444428,10.103753986842701,47.46517196812243,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444429,10.10377002481007,47.465552891482616,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444437,10.104249661187405,47.4652378406293,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444442,10.104758284706216,47.466193719614765,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444446,10.10491990644027,47.466080988659726,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_444450,10.105285602933648,47.466155552217415,33532,1195310000,0.4,False -BranchTee_mvgd_33532_lvgd_1195310000_building_34967312,10.104664599999989,47.4652735962359,33532,1195310000,0.4,False -BusBar_mvgd_33532_lvgd_1195590000_LV,10.102351329541532,47.46034674424677,33532,1195590000,0.4,False -BranchTee_mvgd_33532_lvgd_1195590000_building_422770,10.102351329541532,47.46034674424677,33532,1195590000,0.4,False -BusBar_mvgd_33532_lvgd_1196020000_LV,10.112035199999998,47.46599449623593,33532,1196020000,0.4,False -BranchTee_mvgd_33532_lvgd_1196020000_1,10.111527199999996,47.466134796235956,33532,1196020000,0.4,False -BranchTee_mvgd_33532_lvgd_1196020000_building_445119,10.111593381761631,47.46592273950936,33532,1196020000,0.4,False -BranchTee_mvgd_33532_lvgd_1196020000_building_445122,10.11217055000584,47.46608429624739,33532,1196020000,0.4,False -BusBar_mvgd_33532_lvgd_1197240000_LV,10.111815571053565,47.56507186743076,33532,1197240000,0.4,False -BranchTee_mvgd_33532_lvgd_1197240000_building_448110,10.111815571053565,47.56507186743076,33532,1197240000,0.4,False -BusBar_mvgd_33532_lvgd_1197330000_LV,10.118035699999993,47.462886696235664,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_1,10.119308200000003,47.46660619623599,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_2,10.114228000000006,47.46410099623573,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_3,10.115602099999998,47.46366259623573,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_4,10.116079600000006,47.463572496235734,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_5,10.115757299999997,47.46269649623565,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_6,10.116300300000004,47.462514596235636,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_7,10.117135999999999,47.46466209623581,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_8,10.117206000000001,47.46323349623563,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_9,10.117242900000004,47.46345509623571,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_10,10.117060999999996,47.46351269623568,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_11,10.116009099999996,47.46554279623589,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_12,10.116468299999994,47.46528079623588,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_13,10.1167729,47.465044796235865,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_14,10.1169223,47.46485209623584,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_15,10.116823699999998,47.46365049623573,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_16,10.116944299999993,47.46390979623574,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_17,10.119006699999996,47.4624933962356,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_18,10.119298,47.46274059623562,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_19,10.119574299999996,47.46282869623566,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_20,10.120358800000004,47.461705696235526,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_21,10.120413900000008,47.46175889623552,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_22,10.120027599999993,47.461627596235545,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_23,10.119233600000006,47.46162579623556,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_24,10.120315599999998,47.46295479623563,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_25,10.119276599999997,47.461609496235546,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_26,10.119304800000004,47.46302459623565,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_27,10.119045900000001,47.46179629623554,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_28,10.118898399999997,47.46182529623556,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_29,10.118616700000004,47.46187429623556,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445202,10.120350874626563,47.46281931189227,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_422862,10.118209127698204,47.46025117323171,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445118,10.114618399922895,47.464335296341964,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445120,10.114776349960751,47.46473654633261,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445123,10.116671808765307,47.46371854575953,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445129,10.115518699994519,47.46262204627483,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445132,10.116819799987825,47.46410999627713,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445133,10.116591149989969,47.464975946334924,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445134,10.116764167338369,47.4647909816416,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445136,10.117189765872267,47.463748197870274,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445137,10.117369080605979,47.463715298921684,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445139,10.116275180954979,47.4626062485222,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445141,10.116571649987012,47.46248954627517,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445142,10.116989640547672,47.46361852320798,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445146,10.115886954419837,47.465367663011286,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445147,10.116271236727554,47.46521943049519,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445148,10.11799390700176,47.463177501508035,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445150,10.116321550000992,47.46562069629359,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445153,10.118894244251416,47.46150571966894,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445154,10.118798920264743,47.461561620103545,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445158,10.118547868251207,47.461736584625335,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445164,10.118970200007569,47.4666964962862,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445165,10.119044949983367,47.46193554626137,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445167,10.118634017662497,47.46201406113009,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445174,10.119991679203343,47.46150796157359,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445175,10.120550099571446,47.46160432526521,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445177,10.120244252107334,47.46183436275846,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445184,10.119683068777768,47.462614441502886,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445185,10.119763552924478,47.46271721807158,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445186,10.118507520957008,47.46335916158485,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445193,10.118432994575295,47.46362146851073,33532,1197330000,0.4,False -BranchTee_mvgd_33532_lvgd_1197330000_building_445194,10.11925133537995,47.46312652772999,33532,1197330000,0.4,False -BusBar_mvgd_33532_lvgd_1198480000_LV,10.11213156404492,47.45379599917682,33532,1198480000,0.4,False -BranchTee_mvgd_33532_lvgd_1198480000_building_422867,10.111907712108756,47.453830925585656,33532,1198480000,0.4,False -BranchTee_mvgd_33532_lvgd_1198480000_building_422873,10.112258431752162,47.453776204468355,33532,1198480000,0.4,False -BusBar_mvgd_33532_lvgd_1198880000_LV,10.114194200000002,47.56238169624468,33532,1198880000,0.4,False -BranchTee_mvgd_33532_lvgd_1198880000_1,10.113524900000002,47.5624878962447,33532,1198880000,0.4,False -BranchTee_mvgd_33532_lvgd_1198880000_2,10.114723399999995,47.56262329624471,33532,1198880000,0.4,False -BranchTee_mvgd_33532_lvgd_1198880000_building_448117,10.113344745368533,47.56236098842158,33532,1198880000,0.4,False -BranchTee_mvgd_33532_lvgd_1198880000_building_448118,10.113470354985399,47.562351462339635,33532,1198880000,0.4,False -BranchTee_mvgd_33532_lvgd_1198880000_building_448126,10.114429565771463,47.5623104679432,33532,1198880000,0.4,False -BranchTee_mvgd_33532_lvgd_1198880000_building_448128,10.114865250023545,47.562520846335985,33532,1198880000,0.4,False -BranchTee_mvgd_33532_lvgd_1198880000_building_448135,10.114769147424523,47.56285851450456,33532,1198880000,0.4,False -BusBar_mvgd_33532_lvgd_1199280000_LV,10.115115900000001,47.54484219624309,33532,1199280000,0.4,False -BranchTee_mvgd_33532_lvgd_1199280000_1,10.1154002,47.54473719624311,33532,1199280000,0.4,False -BranchTee_mvgd_33532_lvgd_1199280000_building_34328667,10.11531565868121,47.544410366811114,33532,1199280000,0.4,False -BranchTee_mvgd_33532_lvgd_1199280000_building_34328668,10.114515064480992,47.54490275153684,33532,1199280000,0.4,False -BranchTee_mvgd_33532_lvgd_1199280000_building_34328669,10.115035290719899,47.54483936567325,33532,1199280000,0.4,False -BusBar_mvgd_33532_lvgd_1200480000_LV,10.122408699950109,47.458826896343886,33532,1200480000,0.4,False -BranchTee_mvgd_33532_lvgd_1200480000_building_422872,10.122408699950109,47.458826896343886,33532,1200480000,0.4,False -BusBar_mvgd_33532_lvgd_1200490000_LV,10.124696899999998,47.46087769623543,33532,1200490000,0.4,False -BranchTee_mvgd_33532_lvgd_1200490000_1,10.125139699999995,47.46060769623539,33532,1200490000,0.4,False -BranchTee_mvgd_33532_lvgd_1200490000_building_422893,10.12487492890233,47.46093080052908,33532,1200490000,0.4,False -BranchTee_mvgd_33532_lvgd_1200490000_building_445205,10.125125749992383,47.461038946318034,33532,1200490000,0.4,False -BusBar_mvgd_33532_lvgd_1200510000_LV,10.127972999999997,47.45895099623527,33532,1200510000,0.4,False -BranchTee_mvgd_33532_lvgd_1200510000_1,10.129566900000006,47.45754389623515,33532,1200510000,0.4,False -BranchTee_mvgd_33532_lvgd_1200510000_2,10.1277503,47.459092496235286,33532,1200510000,0.4,False -BranchTee_mvgd_33532_lvgd_1200510000_building_422885,10.129188585115726,47.45755947628894,33532,1200510000,0.4,False -BranchTee_mvgd_33532_lvgd_1200510000_building_422894,10.128018214759912,47.45934069940668,33532,1200510000,0.4,False -BranchTee_mvgd_33532_lvgd_1200510000_building_422898,10.128267755814575,47.459216574551625,33532,1200510000,0.4,False -BranchTee_mvgd_33532_lvgd_1200510000_building_422905,10.129039649951231,47.460088146305914,33532,1200510000,0.4,False -BusBar_mvgd_33532_lvgd_1201300000_LV,10.123861900000003,47.56404329624482,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_1,10.122491599999998,47.564615896244874,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_2,10.122310099999998,47.564518696244875,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_3,10.1251533,47.56434429624487,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_4,10.125348400000002,47.56456799624485,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_building_448132,10.122328757626581,47.56433169829944,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_building_448137,10.12250440002198,47.56472704629207,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_building_448139,10.122670973343965,47.56451227891304,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_building_448141,10.12370390093763,47.56402673793879,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_building_448142,10.123724449999637,47.56414059624916,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_building_448153,10.125025400002528,47.56427759634103,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_building_448154,10.125394362553495,47.56435816466374,33532,1201300000,0.4,False -BranchTee_mvgd_33532_lvgd_1201300000_building_448156,10.125462121075056,47.56453140199108,33532,1201300000,0.4,False -BusBar_mvgd_33532_lvgd_1202400000_LV,10.1247248,47.55791649624429,33532,1202400000,0.4,False -BranchTee_mvgd_33532_lvgd_1202400000_1,10.126657900000005,47.558414096244356,33532,1202400000,0.4,False -BranchTee_mvgd_33532_lvgd_1202400000_building_448097,10.121290297394095,47.55763573678401,33532,1202400000,0.4,False -BranchTee_mvgd_33532_lvgd_1202400000_building_448102,10.122014716728541,47.55769477441065,33532,1202400000,0.4,False -BranchTee_mvgd_33532_lvgd_1202400000_building_448103,10.122029150004703,47.557891146270755,33532,1202400000,0.4,False -BranchTee_mvgd_33532_lvgd_1202400000_building_448107,10.12086877085475,47.55755205513024,33532,1202400000,0.4,False -BranchTee_mvgd_33532_lvgd_1202400000_building_34328715,10.126813273385709,47.558775571636325,33532,1202400000,0.4,False -BranchTee_mvgd_33532_lvgd_1202400000_building_34328716,10.126910302710456,47.55913368540695,33532,1202400000,0.4,False -BusBar_mvgd_33532_lvgd_1203710000_LV,10.130638155610297,47.53085837400748,33532,1203710000,0.4,False -BranchTee_mvgd_33532_lvgd_1203710000_building_34328646,10.13089554839512,47.53083521499085,33532,1203710000,0.4,False -BranchTee_mvgd_33532_lvgd_1203710000_building_34328647,10.130768712916122,47.53069889531684,33532,1203710000,0.4,False -BranchTee_mvgd_33532_lvgd_1203710000_building_34328648,10.13019318268463,47.53105926781657,33532,1203710000,0.4,False -BusBar_mvgd_33532_lvgd_1205070000_LV,10.134432452294615,47.413320640977645,33532,1205070000,0.4,False -BranchTee_mvgd_33532_lvgd_1205070000_building_34328494,10.133780497141077,47.41346099314214,33532,1205070000,0.4,False -BranchTee_mvgd_33532_lvgd_1205070000_building_34328495,10.135005272949286,47.413140894895456,33532,1205070000,0.4,False -BranchTee_mvgd_33532_lvgd_1205070000_building_34328496,10.134828127629966,47.41326718954183,33532,1205070000,0.4,False +Busbar_mvgd_33535_MV,10.024504210738641,47.57320970148501,33535,,20,False +BusBar_mvgd_33535_lvgd_1156570000_MV,9.9865232,47.54548489624321,33535,,20,False +BusBar_mvgd_33535_lvgd_1172710000_MV,10.036098400000006,47.5479147962434,33535,,20,False +BusBar_mvgd_33535_lvgd_1159870000_MV,10.097126999999995,47.45210599623459,33535,,20,False +BusBar_mvgd_33535_lvgd_1195900000_MV,10.102351329541532,47.46034674424677,33535,,20,False +BusBar_mvgd_33535_lvgd_1164190000_MV,10.017450000000006,47.57254519624557,33535,,20,False +BusBar_mvgd_33535_lvgd_1166430000_MV,10.007437925988821,47.52293178918052,33535,,20,False +BusBar_mvgd_33535_lvgd_1193510000_MV,10.096039900000005,47.44450929623392,33535,,20,False +BusBar_mvgd_33535_lvgd_1170090000_MV,10.0221088,47.57779949624604,33535,,20,False +BusBar_mvgd_33535_lvgd_1182190000_MV,10.0559142,47.551425396243694,33535,,20,False +BusBar_mvgd_33535_lvgd_1161950000_MV,9.983944199999996,47.54876209624351,33535,,20,False +BusBar_mvgd_33535_lvgd_1197640000_MV,10.118035699999993,47.462886696235664,33535,,20,False +BusBar_mvgd_33535_lvgd_1204030000_MV,10.130638155610297,47.53085837400748,33535,,20,False +BusBar_mvgd_33535_lvgd_1163360000_MV,10.003636499999997,47.54303869624298,33535,,20,False +BusBar_mvgd_33535_lvgd_1168040000_MV,10.011235800007439,47.5333865462718,33535,,20,False +BusBar_mvgd_33535_lvgd_1182340000_MV,10.061261999999997,47.55077909624365,33535,,20,False +BusBar_mvgd_33535_lvgd_1205360000_MV,10.134432452294615,47.413320640977645,33535,,20,False +BusBar_mvgd_33535_lvgd_1166920000_MV,10.0078172,47.529730996241796,33535,,20,False +BusBar_mvgd_33535_lvgd_1152130000_MV,9.999182900000005,47.55977909624444,33535,,20,False +BusBar_mvgd_33535_lvgd_1166640000_MV,10.010055050033241,47.51512089628523,33535,,20,False +BusBar_mvgd_33535_lvgd_1202720000_MV,10.1247248,47.55791649624429,33535,,20,False +BusBar_mvgd_33535_lvgd_1150630000_MV,9.971241399999998,47.521178496241035,33535,,20,False +BusBar_mvgd_33535_lvgd_1152050000_MV,9.977461599999993,47.554935496244006,33535,,20,False +BusBar_mvgd_33535_lvgd_1155260000_MV,9.977849699999993,47.534348096242205,33535,,20,False +BusBar_mvgd_33535_lvgd_1163320000_MV,10.001292200000002,47.53662159624241,33535,,20,False +BusBar_mvgd_33535_lvgd_1163330000_MV,10.003165199999996,47.54635979624327,33535,,20,False +BusBar_mvgd_33535_lvgd_1167600000_MV,10.010591400000001,47.50410939623945,33535,,20,False +BusBar_mvgd_33535_lvgd_1155780000_MV,9.981439909960994,47.51787453129527,33535,,20,False +BusBar_mvgd_33535_lvgd_1152120000_MV,9.999614600000003,47.56205479624466,33535,,20,False +BusBar_mvgd_33535_lvgd_1164160000_MV,10.0977125,47.55219599624379,33535,,20,False +BusBar_mvgd_33535_lvgd_1164250000_MV,10.0513544,47.56223849624466,33535,,20,False +Bus_mvgd_33535_mvload_1,10.031116705906797,47.54853468799076,33535,,20,False +BusBar_mvgd_33535_lvgd_1173300000_MV,10.032806700000002,47.54786329624343,33535,,20,False +BusBar_mvgd_33535_lvgd_1155270000_MV,9.981248,47.53591809624236,33535,,20,False +BusBar_mvgd_33535_lvgd_1179290000_MV,10.052457218059649,47.50353283407351,33535,,20,False +BusBar_mvgd_33535_lvgd_1157740000_MV,9.992445600000002,47.53997049624272,33535,,20,False +BusBar_mvgd_33535_lvgd_1201610000_MV,10.123861900000003,47.56404329624482,33535,,20,False +BusBar_mvgd_33535_lvgd_1152040000_MV,9.989380199999992,47.560353496244474,33535,,20,False +BusBar_mvgd_33535_lvgd_1152140000_MV,10.002536000000003,47.56556059624496,33535,,20,False +BusBar_mvgd_33535_lvgd_1161990000_MV,9.993773700000006,47.54763269624337,33535,,20,False +BusBar_mvgd_33535_lvgd_1176320000_MV,10.044431200000002,47.520851296240956,33535,,20,False +BusBar_mvgd_33535_lvgd_1185140000_MV,10.066793690589224,47.496823412565696,33535,,20,False +BusBar_mvgd_33535_lvgd_1165830000_MV,10.008001799999994,47.57208949624548,33535,,20,False +BusBar_mvgd_33535_lvgd_1150640000_MV,9.9747575,47.51817289624075,33535,,20,False +BusBar_mvgd_33535_lvgd_1152390000_MV,9.9758199,47.526846996241524,33535,,20,False +BusBar_mvgd_33535_lvgd_1161320000_MV,9.993239667455976,47.49863028859219,33535,,20,False +BusBar_mvgd_33535_lvgd_1171050000_MV,10.023486400000003,47.5814837962464,33535,,20,False +BusBar_mvgd_33535_lvgd_1186110000_MV,10.0781729,47.4601707962354,33535,,20,False +BusBar_mvgd_33535_lvgd_1200820000_MV,10.127972999999997,47.45895099623527,33535,,20,False +BusBar_mvgd_33535_lvgd_1141170000_MV,10.040278153522014,47.497236243470454,33535,,20,False +BusBar_mvgd_33535_lvgd_1176560000_MV,10.042503699999997,47.537140996242435,33535,,20,False +BusBar_mvgd_33535_lvgd_1153210000_MV,9.973786725536701,47.547339920043285,33535,,20,False +BusBar_mvgd_33535_lvgd_1164200000_MV,10.0346109,47.54144229624284,33535,,20,False +BusBar_mvgd_33535_lvgd_1195620000_MV,10.103981500000007,47.465726496235916,33535,,20,False +BusBar_mvgd_33535_lvgd_1156450000_MV,9.989299899999995,47.51335609624034,33535,,20,False +BusBar_mvgd_33535_lvgd_1159900000_MV,9.993023599999997,47.552695996243806,33535,,20,False +BusBar_mvgd_33535_lvgd_1164150000_MV,10.009866,47.54102169624281,33535,,20,False +BusBar_mvgd_33535_lvgd_1176460000_MV,10.040137799999998,47.53328529624212,33535,,20,False +BusBar_mvgd_33535_lvgd_1186620000_MV,10.076023899999992,47.55100299624363,33535,,20,False +BusBar_mvgd_33535_lvgd_1165850000_MV,10.00487026241384,47.50392359944945,33535,,20,False +BusBar_mvgd_33535_lvgd_1164170000_MV,10.013885199999995,47.53775869624249,33535,,20,False +BusBar_mvgd_33535_lvgd_1164920000_MV,10.006545348901419,47.511165158297686,33535,,20,False +BusBar_mvgd_33535_lvgd_1170540000_MV,10.023249199999997,47.5739876962457,33535,,20,False +BusBar_mvgd_33535_lvgd_1196330000_MV,10.112035199999998,47.46599449623593,33535,,20,False +BusBar_mvgd_33535_lvgd_1152010000_MV,9.971264899999996,47.56023109624446,33535,,20,False +BusBar_mvgd_33535_lvgd_1152030000_MV,9.973807199999998,47.558039296244296,33535,,20,False +BusBar_mvgd_33535_lvgd_1172800000_MV,10.032533199999994,47.5201094962409,33535,,20,False +BusBar_mvgd_33535_lvgd_1184650000_MV,10.065379699999998,47.50929659623996,33535,,20,False +BusBar_mvgd_33535_lvgd_1152400000_MV,9.979701499999996,47.52925419624172,33535,,20,False +BusBar_mvgd_33535_lvgd_1164130000_MV,10.0088695,47.54693799624336,33535,,20,False +BusBar_mvgd_33535_lvgd_1199190000_MV,10.114194200000002,47.56238169624468,33535,,20,False +BusBar_mvgd_33535_lvgd_1172390000_MV,10.010766399999996,47.52779689624157,33535,,20,False +BusBar_mvgd_33535_lvgd_1168900000_MV,10.015019600000004,47.51566519624052,33535,,20,False +BusBar_mvgd_33535_lvgd_1152060000_MV,9.981826099999992,47.56037039624449,33535,,20,False +BusBar_mvgd_33535_lvgd_1157260000_MV,9.984748999999997,47.54320689624296,33535,,20,False +BusBar_mvgd_33535_lvgd_1159300000_MV,10.117484600000001,47.55610829624415,33535,,20,False +BusBar_mvgd_33535_lvgd_1172440000_MV,10.045975599999997,47.52399479624128,33535,,20,False +BusBar_mvgd_33535_lvgd_1164210000_MV,10.088636700000006,47.55721959624428,33535,,20,False +BusBar_mvgd_33535_lvgd_1164210001_MV,10.073738500000001,47.55512509624403,33535,,20,False +BusBar_mvgd_33535_lvgd_1164210002_MV,10.045738800000006,47.55576749624408,33535,,20,False +BusBar_mvgd_33535_lvgd_1164210003_MV,10.107986899999998,47.556643896244175,33535,,20,False +BusBar_mvgd_33535_lvgd_1164210004_MV,10.0359923,47.56432909624486,33535,,20,False +BusBar_mvgd_33535_lvgd_1164210005_MV,10.0598717,47.555341996244074,33535,,20,False +BusBar_mvgd_33535_lvgd_1176060000_MV,10.041373199999999,47.5492303962435,33535,,20,False +BusBar_mvgd_33535_lvgd_1152000000_MV,9.970474700000002,47.555076396244026,33535,,20,False +BusBar_mvgd_33535_lvgd_1152090000_MV,9.987070699999995,47.55740889624422,33535,,20,False +BusBar_mvgd_33535_lvgd_1172750000_MV,10.029131799999996,47.52199289624106,33535,,20,False +BusBar_mvgd_33535_lvgd_1186120000_MV,10.093199999999996,47.46412419623574,33535,,20,False +BusBar_mvgd_33535_lvgd_1198790000_MV,10.11213156404492,47.45379599917682,33535,,20,False +BusBar_mvgd_33535_lvgd_1200800000_MV,10.124696899999998,47.46087769623543,33535,,20,False +BusBar_mvgd_33535_lvgd_1160950000_MV,9.995877763531064,47.522992575696975,33535,,20,False +BusBar_mvgd_33535_lvgd_1166910000_MV,10.003053600000003,47.527566196241544,33535,,20,False +BusBar_mvgd_33535_lvgd_1176330000_MV,10.0458033,47.51696909624063,33535,,20,False +BusBar_mvgd_33535_lvgd_1199590000_MV,10.115115900000001,47.54484219624309,33535,,20,False +BusBar_mvgd_33535_lvgd_1160850000_MV,10.000569899999999,47.52387799624125,33535,,20,False +BusBar_mvgd_33535_lvgd_1164270000_MV,10.058768199999996,47.56576709624502,33535,,20,False +BusBar_mvgd_33535_lvgd_1200790000_MV,10.122408699950109,47.458826896343886,33535,,20,False +BusBar_mvgd_33535_lvgd_1152070000_MV,9.983414348584231,47.55941549729083,33535,,20,False +BusBar_mvgd_33535_lvgd_1156440000_MV,9.981484300000004,47.51426929624038,33535,,20,False +BusBar_mvgd_33535_lvgd_1157730000_MV,9.991805300000005,47.53730969624246,33535,,20,False +BusBar_mvgd_33535_lvgd_1192280000_MV,10.106713927889984,47.47333964308403,33535,,20,False +BusBar_mvgd_33535_lvgd_1163060000_MV,10.002348298468702,47.496085412927414,33535,,20,False +BusBar_mvgd_33535_lvgd_1172430000_MV,10.040297599999995,47.522345496241094,33535,,20,False +BusBar_mvgd_33535_lvgd_1151050000_MV,9.967887399999995,47.531961196242015,33535,,20,False +BusBar_mvgd_33535_lvgd_1152380000_MV,9.974850300000005,47.53157609624192,33535,,20,False +BusBar_mvgd_33535_lvgd_1197550000_MV,10.111815571053565,47.56507186743076,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120000_MV,10.019700400000003,47.545350696243155,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120001_MV,10.021668099999998,47.54834369624342,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120002_MV,10.008394199999996,47.56682179624508,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120003_MV,10.026685600000002,47.558041696244295,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120004_MV,10.021746599999998,47.55377359624393,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120005_MV,10.018368799999994,47.55378859624388,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120006_MV,10.025067200000006,47.55462189624401,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120007_MV,10.018853399999992,47.556007296244125,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120008_MV,10.016442899999998,47.560134796244476,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120009_MV,10.021708699999998,47.5685909962452,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120010_MV,10.019570500000002,47.562715596244686,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120011_MV,10.021014800000001,47.55935469624443,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120012_MV,10.019305299999996,47.54103709624282,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120013_MV,10.011309700000002,47.550727096243655,33535,,20,False +BusBar_mvgd_33535_lvgd_1164120014_MV,10.016221000000002,47.56496159624492,33535,,20,False +BusBar_mvgd_33535_lvgd_1172410000_MV,10.032254799999993,47.52462569624129,33535,,20,False +BusBar_mvgd_33535_lvgd_1172410001_MV,10.024231499999999,47.53182689624196,33535,,20,False +BusBar_mvgd_33535_lvgd_1172410002_MV,10.024302799999996,47.52916379624174,33535,,20,False +Bus_mvgd_33535_gen_3,10.092982399997963,47.559873496288795,33535,,20,False +Bus_mvgd_33535_gen_380,10.030784999999998,47.548558996200754,33535,,20,False +Bus_mvgd_33535_gen_382,9.968600000000004,47.52846999619443,33535,,20,False +Bus_mvgd_33535_gen_383,9.968600000000004,47.52846999619443,33535,,20,False +Bus_mvgd_33535_gen_384,9.974219999999999,47.530562996195115,33535,,20,False +Bus_mvgd_33535_gen_385,9.974219999999999,47.530562996195115,33535,,20,False +Bus_mvgd_33535_gen_386,9.974219999999999,47.530562996195115,33535,,20,False +Bus_mvgd_33535_gen_22,10.002585999999999,47.545480996199785,33535,,20,False +Bus_mvgd_33535_gen_26,9.973540999999994,47.530462996195006,33535,,20,False +BranchTee_mvgd_33535_1,10.018916399999998,47.55587609624412,33535,,20,False +BranchTee_mvgd_33535_2,10.048219013447918,47.49998981068342,33535,,20,False +BranchTee_mvgd_33535_3,9.973267206707693,47.52158559020645,33535,,20,False +BranchTee_mvgd_33535_4,9.98626414895975,47.54308805548839,33535,,20,False +BranchTee_mvgd_33535_5,9.996294213899032,47.553857279122525,33535,,20,False +BranchTee_mvgd_33535_6,9.98741872382493,47.555508531329956,33535,,20,False +BranchTee_mvgd_33535_7,10.003971291519571,47.564255255361005,33535,,20,False +BranchTee_mvgd_33535_8,9.971478841193234,47.53413638703258,33535,,20,False +BranchTee_mvgd_33535_9,9.969748552299011,47.52597839431304,33535,,20,False +BranchTee_mvgd_33535_10,9.97761393434411,47.549656821675576,33535,,20,False +BranchTee_mvgd_33535_11,9.97517841701417,47.53637675337577,33535,,20,False +BranchTee_mvgd_33535_12,9.984705724901088,47.52388337901873,33535,,20,False +BranchTee_mvgd_33535_13,9.988164556270467,47.54423827196185,33535,,20,False +BranchTee_mvgd_33535_14,9.985114412963808,47.542392139613284,33535,,20,False +BranchTee_mvgd_33535_15,9.990139804507564,47.53857495088489,33535,,20,False +BranchTee_mvgd_33535_16,10.090655150847624,47.46345487403672,33535,,20,False +BranchTee_mvgd_33535_17,9.993690037971223,47.5543418623081,33535,,20,False +BranchTee_mvgd_33535_18,9.999290480345204,47.526811151049166,33535,,20,False +BranchTee_mvgd_33535_19,9.994620659573224,47.52587397080866,33535,,20,False +BranchTee_mvgd_33535_20,9.98052636625868,47.54702430740754,33535,,20,False +BranchTee_mvgd_33535_21,9.993952627550263,47.54807462214073,33535,,20,False +BranchTee_mvgd_33535_22,10.098102429617397,47.55685579576007,33535,,20,False +BranchTee_mvgd_33535_23,10.024270358284765,47.537727672646795,33535,,20,False +BranchTee_mvgd_33535_24,10.018499493467326,47.57159047025898,33535,,20,False +BranchTee_mvgd_33535_25,10.037517756901362,47.53593186012843,33535,,20,False +BranchTee_mvgd_33535_26,10.053401567907299,47.56601064602132,33535,,20,False +BranchTee_mvgd_33535_27,10.05824489409215,47.564803105280845,33535,,20,False +BranchTee_mvgd_33535_28,10.012101513617639,47.56836066096543,33535,,20,False +BranchTee_mvgd_33535_29,10.00166124438563,47.52169942153373,33535,,20,False +BranchTee_mvgd_33535_30,10.00828881374074,47.52883784440469,33535,,20,False +BranchTee_mvgd_33535_31,10.013029541383371,47.52998910924647,33535,,20,False +BranchTee_mvgd_33535_32,10.031979783462308,47.52154800983165,33535,,20,False +BranchTee_mvgd_33535_33,10.00999768548903,47.52925286610238,33535,,20,False +BranchTee_mvgd_33535_34,10.0332262990709,47.51989394244498,33535,,20,False +BranchTee_mvgd_33535_35,10.043528913817605,47.55081457659302,33535,,20,False +BranchTee_mvgd_33535_36,10.029987726041217,47.52085725110507,33535,,20,False +BranchTee_mvgd_33535_37,10.042993413799627,47.523128604772296,33535,,20,False +BranchTee_mvgd_33535_38,10.038603153737306,47.53619510290661,33535,,20,False +BranchTee_mvgd_33535_39,10.046980790033027,47.501634325184725,33535,,20,False +BranchTee_mvgd_33535_40,10.061576982628472,47.54544659627017,33535,,20,False +BranchTee_mvgd_33535_41,10.05790892055359,47.54931955147629,33535,,20,False +BranchTee_mvgd_33535_42,10.075425097809415,47.5132160861878,33535,,20,False +BranchTee_mvgd_33535_43,10.053952996487785,47.492372806611236,33535,,20,False +BranchTee_mvgd_33535_44,10.108578607521961,47.474066900094186,33535,,20,False +BranchTee_mvgd_33535_45,10.10077133509001,47.46524953733862,33535,,20,False +BranchTee_mvgd_33535_46,10.111272439250325,47.4642535501185,33535,,20,False +BranchTee_mvgd_33535_47,10.116270736669351,47.46324344251759,33535,,20,False +BranchTee_mvgd_33535_48,10.12176727465316,47.45942243316103,33535,,20,False +BranchTee_mvgd_33535_49,9.982421329246263,47.5234245980793,33535,,20,False +BranchTee_mvgd_33535_50,10.041047006337893,47.509513464348174,33535,,20,False +BranchTee_mvgd_33535_51,10.037964404040062,47.5136055937295,33535,,20,False +BranchTee_mvgd_33535_52,10.08594259849519,47.462215219891746,33535,,20,False +BranchTee_mvgd_33535_53,10.019531,47.55962729624444,33535,,20,False +BranchTee_mvgd_33535_54,10.0220596,47.554534796243956,33535,,20,False +BranchTee_mvgd_33535_55,10.087345400000006,47.556173096244144,33535,,20,False +BranchTee_mvgd_33535_56,10.003283460145301,47.54552649570513,33535,,20,False +BranchTee_mvgd_33535_57,10.09367943116541,47.55892853927181,33535,,20,False +BranchTee_mvgd_33535_58,9.968957591647868,47.52852116688911,33535,,20,False +BranchTee_mvgd_33535_59,9.973876932636836,47.53074859510434,33535,,20,False +virtual_BusBar_mvgd_33535_lvgd_1166910000_MV,10.003053600000003,47.527566196241544,33535,,20,False +virtual_BusBar_mvgd_33535_lvgd_1164120007_MV,10.018853399999992,47.556007296244125,33535,,20,False +virtual_BusBar_mvgd_33535_lvgd_1172800000_MV,10.032533199999994,47.5201094962409,33535,,20,False +BusBar_mvgd_33535_lvgd_1141170000_LV,10.040278153522014,47.497236243470454,33535,1141170000,0.4,False +BranchTee_mvgd_33535_lvgd_1141170000_building_444312,10.040278153522014,47.497236243470454,33535,1141170000,0.4,False +BusBar_mvgd_33535_lvgd_1150630000_LV,9.971241399999998,47.521178496241035,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_1,9.970440599999996,47.52069379624093,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_2,9.9705766,47.52022539624088,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_3,9.970330900000002,47.520641096240986,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_4,9.970167699999996,47.52083969624097,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_5,9.970043899999999,47.520910096240975,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_6,9.969638099999996,47.52083089624099,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_7,9.969476899999997,47.52076109624099,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_8,9.969169400000004,47.519869096240896,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_9,9.968370899999993,47.51925669624083,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_10,9.970116699999997,47.52043349624094,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_11,9.969314900000002,47.52061479624092,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_12,9.966175400000003,47.522475496241135,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_13,9.969034600000004,47.519302696240864,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_14,9.9690068,47.519596496240865,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_15,9.969231100000004,47.51990179624089,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_16,9.9698889,47.520193796240925,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_17,9.970979500000006,47.521031696241025,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_18,9.970368399999998,47.52176829624105,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_19,9.9700453,47.52147799624105,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_20,9.970153799999997,47.521378296241025,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_21,9.9705515,47.52165729624105,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_22,9.970060800000004,47.52135999624103,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_23,9.970484899999994,47.52173719624108,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_24,9.970197099999998,47.521694296241066,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_25,9.9701191,47.52158709624102,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_26,9.970726900000006,47.52153459624104,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_27,9.972644400000007,47.52273409624117,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_28,9.9715393,47.521388696240976,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_29,9.972703999999997,47.522358096241106,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_30,9.9721154,47.5221472962411,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_31,9.972133999999999,47.522275896241084,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_32,9.972872400000005,47.52298649624117,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_33,9.971881199999995,47.52118069624103,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_34,9.972123100000001,47.52115509624101,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_35,9.972769799999993,47.52156239624104,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430853,9.968446691386937,47.51915813102904,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430859,9.969405329394204,47.51940535694565,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430861,9.969316630120437,47.51960032958994,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430881,9.971325484498767,47.52105229024077,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430882,9.971450212987715,47.52103080558409,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430885,9.971577986938435,47.52110008679293,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430890,9.972375965610754,47.521162567064174,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430891,9.972663589805935,47.521317297625025,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430893,9.966321040774659,47.522400584509825,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430894,9.970502515816394,47.5215001763709,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430895,9.970716830739194,47.52168924923195,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430896,9.970576616851584,47.52187806015679,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430898,9.97014157289771,47.5220768492788,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430899,9.970283781796239,47.522062776046035,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430900,9.972199907476433,47.52137509046418,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430901,9.972733995263516,47.521369730383626,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430903,9.972677050000714,47.52189704626252,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430904,9.972400366521109,47.522141445189035,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430905,9.972314170254556,47.522295046094946,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430906,9.972274499928666,47.52278699645225,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430907,9.972622950001384,47.52295879631017,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430908,9.973001308378954,47.521509299325004,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_430909,9.973674750650392,47.52199377987923,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431068,9.96945788478577,47.519812768439344,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431069,9.969526785026844,47.51981468590157,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431071,9.969299600008748,47.52046839628749,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431072,9.969686615774135,47.52024223069566,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431074,9.969316424350993,47.5207012562331,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431075,9.969402204927395,47.52093175774248,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431076,9.969602932787037,47.5209755949577,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431077,9.970000750000093,47.521028346262604,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431078,9.969922899997226,47.52125269626275,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431079,9.970024999997237,47.521229146262776,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431085,9.970436772826124,47.52036736813905,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431090,9.970374755665164,47.520806667380725,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431091,9.970321960479978,47.5208922272495,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431092,9.970659291858205,47.521012263243065,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431094,9.970367899997623,47.52134364626206,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431095,9.970561986084927,47.52106280985678,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431100,9.969851863164319,47.52167532184271,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431101,9.969956631145854,47.52164555182831,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431102,9.970032824574892,47.52184648178004,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431104,9.970411584182235,47.521545016159685,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431105,9.973605310739845,47.52221863666422,33535,1150630000,0.4,False +BranchTee_mvgd_33535_lvgd_1150630000_building_431106,9.973964933813953,47.522116852602394,33535,1150630000,0.4,False +BusBar_mvgd_33535_lvgd_1150640000_LV,9.9747575,47.51817289624075,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_1,9.975343899999995,47.516390496240604,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_2,9.975092200000002,47.516374196240555,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_3,9.975431899999998,47.51658609624061,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_4,9.974190100000001,47.517856196240714,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_5,9.974468499999997,47.518003496240745,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_6,9.973848599999997,47.517647596240664,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430863,9.974959055605071,47.51642175305497,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430864,9.97506979999651,47.51651394626477,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430865,9.975261255558733,47.516411361173326,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430870,9.974018753791352,47.517570249576,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430871,9.973821383636556,47.51772004172094,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430873,9.974037316412971,47.51789945823277,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430874,9.974172519941026,47.518170993666466,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430876,9.974552849999489,47.51826374624467,33535,1150640000,0.4,False +BranchTee_mvgd_33535_lvgd_1150640000_building_430877,9.974711564858971,47.5182289175519,33535,1150640000,0.4,False +BusBar_mvgd_33535_lvgd_1151050000_LV,9.967887399999995,47.531961196242015,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_1,9.968172099999999,47.53111149624189,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_2,9.967935300000006,47.53146399624196,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_3,9.967883199999996,47.53172459624193,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_4,9.968800400000001,47.53148549624198,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_5,9.967819599999995,47.531228096241946,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_6,9.968637300000005,47.53123459624188,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_7,9.967868000000005,47.53152739624198,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_8,9.9674814,47.53127339624194,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_9,9.9694669,47.53101839624197,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_10,9.968471900000004,47.53160539624194,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_11,9.968234499999998,47.531381896241946,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_12,9.968186500000003,47.53167819624195,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_13,9.969635099999998,47.531834396242,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_14,9.9688682,47.532334496242015,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_15,9.968238899999998,47.53308599624204,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_16,9.968977599999995,47.53210129624201,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_17,9.970588499999996,47.53310669624204,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_18,9.968393600000004,47.53213919624199,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_19,9.969276,47.53169279624196,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_20,9.968700699999996,47.53185809624194,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_21,9.968332600000002,47.53193499624201,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_22,9.969434299999996,47.53162759624197,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_23,9.968120000000003,47.53196259624197,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_24,9.969042699999994,47.53176569624193,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_25,9.968197099999998,47.53205729624198,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_26,9.967681199999998,47.53192879624198,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_27,9.967525700000003,47.53189169624198,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_28,9.966754999999997,47.531500396241945,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_29,9.967177699999999,47.531757196242,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_30,9.966637100000003,47.5311734962419,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_31,9.967353999999993,47.53183859624194,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430941,9.967097966867874,47.5319875470213,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430956,9.967641995683623,47.53115371209079,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430957,9.967981216800093,47.53108332103482,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430958,9.967587068484555,47.53143282573698,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430959,9.967660299998638,47.531524646244996,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430960,9.968147924885812,47.532199050723705,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430961,9.968215378913023,47.532285889695416,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430962,9.96849184999855,47.532063096250354,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430963,9.968600449998549,47.53205449625037,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430964,9.968709049998553,47.53204589625037,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430970,9.969121452014623,47.53165154606759,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431158,9.966952625727654,47.53114814128196,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431159,9.967297824584548,47.53120994028909,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431160,9.96691045485106,47.53140985830986,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431161,9.967228992226103,47.53143156944587,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431162,9.967077739269005,47.531837934913355,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431163,9.96803422088661,47.53136043313832,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431164,9.96769799999833,47.53161499626599,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431165,9.968256281474845,47.53098058268284,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431166,9.968158945982315,47.531270178649336,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431168,9.968604652603982,47.53116051335735,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431169,9.96809292867123,47.5316192200072,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431170,9.96837026859676,47.5315455414615,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431171,9.968702382394303,47.531434349608425,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431172,9.967473395001045,47.53170759145601,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431173,9.967770693323272,47.53188397622914,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431181,9.968917047895763,47.53170259654079,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431182,9.96901924999665,47.531677096251705,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431183,9.968901899999356,47.53187984624432,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431184,9.969139649997787,47.53200194625391,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431186,9.968900322889276,47.5320208537421,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431187,9.968026974350897,47.53184374187415,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431189,9.967415937475932,47.532157772926034,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431190,9.969029072314262,47.5320142912307,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431195,9.967536637354085,47.53206756446651,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431199,9.967673950001748,47.53211874625073,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431201,9.967873424415645,47.53214177183548,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431208,9.968136825648129,47.53184095062582,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431210,9.96824667435089,47.531838141874175,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431215,9.96845976519999,47.53179116786465,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431219,9.968566099997688,47.5317765462501,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431221,9.968672397998054,47.53176194674095,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431228,9.968866100002545,47.5324509462524,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431253,9.968213396942975,47.53314171904983,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431258,9.968755582010095,47.53239404480004,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430968,9.969350150001029,47.531035396250786,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430969,9.969337825752724,47.53115200616218,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_430972,9.969309799998548,47.531555646262355,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431185,9.969350849997085,47.53196959625299,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431194,9.969322949977327,47.532222246254,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431203,9.969453705911235,47.53195294657583,33535,1151050000,0.4,False +BranchTee_mvgd_33535_lvgd_1151050000_building_431239,9.97043146509101,47.53315274513487,33535,1151050000,0.4,False +BusBar_mvgd_33535_lvgd_1152000000_LV,9.970474700000002,47.555076396244026,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_1,9.9698997,47.555253296244025,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_2,9.970052499999998,47.55510579624407,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_3,9.973592500000006,47.555283196244055,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_4,9.974103899999998,47.5553170962441,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_5,9.974790600000002,47.555677096244096,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_6,9.972842000000002,47.55327479624389,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_7,9.975711999999994,47.552076396243756,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_building_440560,9.970171005991746,47.55520278184518,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_building_440574,9.973798677231855,47.555571822224216,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_building_440577,9.973994800000924,47.5557136462611,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_building_440579,9.974468449997959,47.555793196256914,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_building_440580,9.969526569181335,47.5551082459133,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_building_440581,9.969892519824297,47.555401597659134,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_building_440564,9.97276086242304,47.5531387267972,33535,1152000000,0.4,False +BranchTee_mvgd_33535_lvgd_1152000000_building_441458,9.975760199933712,47.55193564632855,33535,1152000000,0.4,False +BusBar_mvgd_33535_lvgd_1152010000_LV,9.971264899999996,47.56023109624446,33535,1152010000,0.4,False +BranchTee_mvgd_33535_lvgd_1152010000_1,9.9712328,47.560503096244496,33535,1152010000,0.4,False +BranchTee_mvgd_33535_lvgd_1152010000_2,9.9714135,47.56046259624451,33535,1152010000,0.4,False +BranchTee_mvgd_33535_lvgd_1152010000_building_440624,9.971287992681908,47.560659733137925,33535,1152010000,0.4,False +BranchTee_mvgd_33535_lvgd_1152010000_building_440630,9.971480799988445,47.56019839642991,33535,1152010000,0.4,False +BusBar_mvgd_33535_lvgd_1152030000_LV,9.973807199999998,47.558039296244296,33535,1152030000,0.4,False +BranchTee_mvgd_33535_lvgd_1152030000_1,9.9737012,47.5580632962443,33535,1152030000,0.4,False +BranchTee_mvgd_33535_lvgd_1152030000_2,9.973897899999997,47.5577924962443,33535,1152030000,0.4,False +BranchTee_mvgd_33535_lvgd_1152030000_building_440586,9.973622192247024,47.55781365571831,33535,1152030000,0.4,False +BranchTee_mvgd_33535_lvgd_1152030000_building_440587,9.973924862097702,47.55795817728148,33535,1152030000,0.4,False +BusBar_mvgd_33535_lvgd_1152040000_LV,9.989380199999992,47.560353496244474,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_1,9.9922931,47.56021969624447,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_2,9.992245000000004,47.56009639624448,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_3,9.990034999999995,47.56062809624451,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_4,9.988698700000002,47.560161696244435,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_5,9.987921000000002,47.5599447962445,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_6,9.989096600000005,47.56026619624452,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441544,9.988068271631763,47.56011701980426,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441547,9.988706850001353,47.56030009627902,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441549,9.988901805538479,47.56046001580582,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441550,9.992145300000516,47.56021139627173,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441556,9.988813176412483,47.56060732752983,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441560,9.989594340243578,47.56011326486522,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441565,9.989414957579628,47.56027811192803,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441566,9.989333628227945,47.56047854182649,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441569,9.990043475906273,47.560483859192345,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441570,9.990282639690891,47.56038782041818,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441571,9.992055199997786,47.55998504625918,33535,1152040000,0.4,False +BranchTee_mvgd_33535_lvgd_1152040000_building_441578,9.992382700017579,47.55996639639962,33535,1152040000,0.4,False +BusBar_mvgd_33535_lvgd_1152050000_LV,9.977461599999993,47.554935496244006,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_1,9.983624600000004,47.5554595962441,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_2,9.979104599999998,47.55418549624398,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_3,9.980112500000004,47.554236396243994,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_4,9.978643899999991,47.554833596243974,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_5,9.978914599999992,47.5539717962439,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_6,9.978370000000005,47.556368196244144,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_7,9.980228,47.556306596244156,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_8,9.9801671,47.556567296244175,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_9,9.980030799999998,47.55652619624414,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441469,9.977471100047387,47.555203796329856,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441471,9.978269121639828,47.55641544928095,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441472,9.978679500001622,47.55636084626644,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441475,9.978480000018394,47.55654944628444,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441483,9.980219950021066,47.55619279629493,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441488,9.980323200007128,47.55654054627721,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441466,9.978760414355126,47.55404371097065,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441477,9.9800136990266,47.55456961098127,33535,1152050000,0.4,False +BranchTee_mvgd_33535_lvgd_1152050000_building_441484,9.983602266995787,47.55536414654065,33535,1152050000,0.4,False +BusBar_mvgd_33535_lvgd_1152060000_LV,9.981826099999992,47.56037039624449,33535,1152060000,0.4,False +BranchTee_mvgd_33535_lvgd_1152060000_1,9.982011100000003,47.56034499624447,33535,1152060000,0.4,False +BranchTee_mvgd_33535_lvgd_1152060000_building_441548,9.981796550036085,47.56050304630558,33535,1152060000,0.4,False +BranchTee_mvgd_33535_lvgd_1152060000_building_441552,9.982267234780464,47.5606771186253,33535,1152060000,0.4,False +BusBar_mvgd_33535_lvgd_1152070000_LV,9.983414348584231,47.55941549729083,33535,1152070000,0.4,False +BranchTee_mvgd_33535_lvgd_1152070000_1,9.983987399999998,47.559098896244386,33535,1152070000,0.4,False +BranchTee_mvgd_33535_lvgd_1152070000_2,9.983791100000003,47.55904889624434,33535,1152070000,0.4,False +BranchTee_mvgd_33535_lvgd_1152070000_building_441492,9.983584442312688,47.558884795192974,33535,1152070000,0.4,False +BranchTee_mvgd_33535_lvgd_1152070000_building_441495,9.983261614786128,47.55922791272588,33535,1152070000,0.4,False +BusBar_mvgd_33535_lvgd_1152090000_LV,9.987070699999995,47.55740889624422,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_1,9.985985500000005,47.55745089624427,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_2,9.986713500000004,47.55734869624425,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_3,9.987762899999996,47.558001296244306,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_4,9.987867299999996,47.55812329624427,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_building_441498,9.986536717710752,47.557418297658174,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_building_441505,9.985797502147632,47.55750194227753,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_building_441512,9.987129289878807,47.55732726144942,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_building_441516,9.986763300003824,47.557498246292,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_building_441518,9.98763274999741,47.558110096300325,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_building_441519,9.987761499997418,47.5582163463003,33535,1152090000,0.4,False +BranchTee_mvgd_33535_lvgd_1152090000_building_441520,9.987656576951464,47.55838136460951,33535,1152090000,0.4,False +BusBar_mvgd_33535_lvgd_1152120000_LV,9.999614600000003,47.56205479624466,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_1,9.999499099999996,47.56238199624468,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_2,9.998107599999997,47.56381869624477,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_3,9.992238299999999,47.56223509624467,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_4,9.995790499999995,47.56143549624464,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_5,9.996817999999992,47.56285999624469,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_6,9.993293500000002,47.563090596244734,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_7,9.9926025,47.56223869624467,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_8,9.996958999999999,47.562296096244644,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_9,9.996169599999998,47.56210909624463,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_10,9.995943700000005,47.56201939624465,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_11,9.999171999999994,47.561228296244565,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_12,9.999586899999995,47.56179499624465,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_13,9.999614399999999,47.56185549624466,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441584,10.003010850028604,47.55981124643657,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441585,10.003275587680838,47.55966534143028,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441807,9.999508394594887,47.56205177383183,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441809,9.99975229999396,47.56195044629653,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441813,9.999780299993956,47.562095146296514,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441822,10.00298460800317,47.56083844470108,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441823,10.002905170079334,47.56119409252496,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441824,10.002823849944841,47.5614640963348,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441846,10.003196811088454,47.56030595269704,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441847,10.00311256933408,47.56100013812176,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441855,10.00306253182676,47.56180359968937,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441864,10.003818300005426,47.561929496280804,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441553,9.992634050021643,47.5623644963102,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441557,9.992931087558036,47.562258971243665,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441573,9.993050450008276,47.562979996281854,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441575,9.996978351581129,47.5628076301462,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441828,9.99769740506988,47.56342691454632,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_441831,9.997853134823067,47.56377050244493,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_34328721,9.996064336421387,47.56125696783934,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_34328722,9.99686852119222,47.56186645747909,33535,1152120000,0.4,False +BranchTee_mvgd_33535_lvgd_1152120000_building_34328723,9.996262115365557,47.56190652840592,33535,1152120000,0.4,False +BusBar_mvgd_33535_lvgd_1152130000_LV,9.999182900000005,47.55977909624444,33535,1152130000,0.4,False +BranchTee_mvgd_33535_lvgd_1152130000_building_441580,9.999322236003627,47.559726696088475,33535,1152130000,0.4,False +BranchTee_mvgd_33535_lvgd_1152130000_building_441597,9.999303732809716,47.55957965663371,33535,1152130000,0.4,False +BusBar_mvgd_33535_lvgd_1152140000_LV,10.002536000000003,47.56556059624496,33535,1152140000,0.4,False +BranchTee_mvgd_33535_lvgd_1152140000_1,10.002517899999997,47.565607196244954,33535,1152140000,0.4,False +BranchTee_mvgd_33535_lvgd_1152140000_2,10.002537000000002,47.565451896244916,33535,1152140000,0.4,False +BranchTee_mvgd_33535_lvgd_1152140000_building_441836,10.002390999997852,47.565464796408506,33535,1152140000,0.4,False +BranchTee_mvgd_33535_lvgd_1152140000_building_441838,10.002622099999392,47.56551624627893,33535,1152140000,0.4,False +BranchTee_mvgd_33535_lvgd_1152140000_building_441842,10.002617949994136,47.56570069628145,33535,1152140000,0.4,False +BusBar_mvgd_33535_lvgd_1152380000_LV,9.974850300000005,47.53157609624192,33535,1152380000,0.4,False +BranchTee_mvgd_33535_lvgd_1152380000_1,9.974778600000006,47.53132289624191,33535,1152380000,0.4,False +BranchTee_mvgd_33535_lvgd_1152380000_2,9.976169599999997,47.531793496241974,33535,1152380000,0.4,False +BranchTee_mvgd_33535_lvgd_1152380000_building_431235,9.974946581962982,47.53168262874287,33535,1152380000,0.4,False +BranchTee_mvgd_33535_lvgd_1152380000_building_431479,9.976068610556169,47.53166407777434,33535,1152380000,0.4,False +BusBar_mvgd_33535_lvgd_1152390000_LV,9.9758199,47.526846996241524,33535,1152390000,0.4,False +BranchTee_mvgd_33535_lvgd_1152390000_1,9.979300200000006,47.52553259624139,33535,1152390000,0.4,False +BranchTee_mvgd_33535_lvgd_1152390000_2,9.978318800000002,47.5264524962415,33535,1152390000,0.4,False +BranchTee_mvgd_33535_lvgd_1152390000_building_431374,9.975648685553173,47.526806587102634,33535,1152390000,0.4,False +BranchTee_mvgd_33535_lvgd_1152390000_building_431380,9.979080984877024,47.52540715211073,33535,1152390000,0.4,False +BusBar_mvgd_33535_lvgd_1152400000_LV,9.979701499999996,47.52925419624172,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_1,9.9812279,47.52819909624165,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_2,9.9817404,47.52764829624163,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_3,9.983537300000004,47.52870099624169,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_4,9.978753099999997,47.52913609624173,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_5,9.978558300000003,47.529268396241726,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_6,9.9781941,47.52907379624172,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_7,9.979984700000003,47.52962359624176,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_building_431468,9.978088932197652,47.52901259471533,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_building_431474,9.978372129379084,47.5292338943078,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_building_431485,9.979699105985135,47.52969956428302,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_building_431497,9.98186999997535,47.52772454633524,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_building_431498,9.983734602165184,47.52840490996728,33535,1152400000,0.4,False +BranchTee_mvgd_33535_lvgd_1152400000_building_431502,9.983342489059059,47.528609248051744,33535,1152400000,0.4,False +BusBar_mvgd_33535_lvgd_1153210000_LV,9.973786725536701,47.547339920043285,33535,1153210000,0.4,False +BranchTee_mvgd_33535_lvgd_1153210000_building_431287,9.973786725536701,47.547339920043285,33535,1153210000,0.4,False +BusBar_mvgd_33535_lvgd_1155260000_LV,9.977849699999993,47.534348096242205,33535,1155260000,0.4,False +BranchTee_mvgd_33535_lvgd_1155260000_1,9.978123299999996,47.53443409624222,33535,1155260000,0.4,False +BranchTee_mvgd_33535_lvgd_1155260000_2,9.977604900000003,47.5342583962422,33535,1155260000,0.4,False +BranchTee_mvgd_33535_lvgd_1155260000_building_431482,9.977548432186579,47.534328494410296,33535,1155260000,0.4,False +BranchTee_mvgd_33535_lvgd_1155260000_building_431492,9.978031500002471,47.53433644626589,33535,1155260000,0.4,False +BranchTee_mvgd_33535_lvgd_1155260000_building_431494,9.977880271259915,47.534474208615016,33535,1155260000,0.4,False +BusBar_mvgd_33535_lvgd_1155270000_LV,9.981248,47.53591809624236,33535,1155270000,0.4,False +BranchTee_mvgd_33535_lvgd_1155270000_1,9.980810600000005,47.535807796242295,33535,1155270000,0.4,False +BranchTee_mvgd_33535_lvgd_1155270000_building_431490,9.980912275599302,47.53577585938846,33535,1155270000,0.4,False +BranchTee_mvgd_33535_lvgd_1155270000_building_431509,9.981126873670116,47.535951408660544,33535,1155270000,0.4,False +BusBar_mvgd_33535_lvgd_1155780000_LV,9.981439909960994,47.51787453129527,33535,1155780000,0.4,False +BranchTee_mvgd_33535_lvgd_1155780000_building_431366,9.980119449996396,47.51801354635576,33535,1155780000,0.4,False +BranchTee_mvgd_33535_lvgd_1155780000_building_431370,9.981305604293407,47.51808293024844,33535,1155780000,0.4,False +BranchTee_mvgd_33535_lvgd_1155780000_building_431375,9.982510206096112,47.51770621632055,33535,1155780000,0.4,False +BusBar_mvgd_33535_lvgd_1156440000_LV,9.981484300000004,47.51426929624038,33535,1156440000,0.4,False +BranchTee_mvgd_33535_lvgd_1156440000_1,9.981638099999993,47.514259396240355,33535,1156440000,0.4,False +BranchTee_mvgd_33535_lvgd_1156440000_2,9.983874399999996,47.51519769624048,33535,1156440000,0.4,False +BranchTee_mvgd_33535_lvgd_1156440000_building_431323,9.981492924728387,47.514069300293,33535,1156440000,0.4,False +BranchTee_mvgd_33535_lvgd_1156440000_building_431327,9.981677378630271,47.51409063896152,33535,1156440000,0.4,False +BranchTee_mvgd_33535_lvgd_1156440000_building_431335,9.981800728950107,47.51396704326229,33535,1156440000,0.4,False +BranchTee_mvgd_33535_lvgd_1156440000_building_431338,9.983846599994347,47.51509439626374,33535,1156440000,0.4,False +BranchTee_mvgd_33535_lvgd_1156440000_building_431340,9.983974349996945,47.51506934626244,33535,1156440000,0.4,False +BusBar_mvgd_33535_lvgd_1156450000_LV,9.989299899999995,47.51335609624034,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_1,9.989169700000003,47.51020759623996,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_2,9.989566499999999,47.51309989624025,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_3,9.989395,47.511406396240105,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_4,9.989432199999998,47.51168759624016,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_5,9.987625100000002,47.51395179624036,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_6,9.987961099999993,47.513714296240295,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_7,9.987962599999998,47.5133012962403,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_8,9.988334699999998,47.51319089624028,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_9,9.989088899999999,47.51336849624029,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_10,9.989484699999997,47.5135218962403,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431336,9.98918813832318,47.51142444046303,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431339,9.989150340780386,47.511701691576306,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431342,9.987018911471736,47.51188653435099,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431347,9.987386800001556,47.51190354626109,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431348,9.988340699977563,47.513095396283795,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431351,9.989277535010302,47.51300606031426,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431352,9.988940836360456,47.513120405441725,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431357,9.988947795545378,47.510289909224035,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431361,9.987457833458542,47.51405741858817,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431364,9.987298012998888,47.51429771483421,33535,1156450000,0.4,False +BranchTee_mvgd_33535_lvgd_1156450000_building_431381,9.989761142324323,47.51339690783981,33535,1156450000,0.4,False +BusBar_mvgd_33535_lvgd_1156570000_LV,9.9865232,47.54548489624321,33535,1156570000,0.4,False +BranchTee_mvgd_33535_lvgd_1156570000_building_431540,9.986340299946665,47.54537804632211,33535,1156570000,0.4,False +BusBar_mvgd_33535_lvgd_1157260000_LV,9.984748999999997,47.54320689624296,33535,1157260000,0.4,False +BranchTee_mvgd_33535_lvgd_1157260000_1,9.984585300000004,47.54306959624296,33535,1157260000,0.4,False +BranchTee_mvgd_33535_lvgd_1157260000_2,9.984369299999992,47.543341996243015,33535,1157260000,0.4,False +BranchTee_mvgd_33535_lvgd_1157260000_building_431530,9.984421066239983,47.54316464564148,33535,1157260000,0.4,False +BranchTee_mvgd_33535_lvgd_1157260000_building_431535,9.984388254656555,47.543446411914815,33535,1157260000,0.4,False +BranchTee_mvgd_33535_lvgd_1157260000_building_431538,9.984807963741797,47.543421589172794,33535,1157260000,0.4,False +BusBar_mvgd_33535_lvgd_1157730000_LV,9.991805300000005,47.53730969624246,33535,1157730000,0.4,False +BranchTee_mvgd_33535_lvgd_1157730000_1,9.988297800000005,47.537588596242514,33535,1157730000,0.4,False +BranchTee_mvgd_33535_lvgd_1157730000_building_431515,9.988385961406633,47.5375317765634,33535,1157730000,0.4,False +BranchTee_mvgd_33535_lvgd_1157730000_building_431523,9.991814257559176,47.53711941315987,33535,1157730000,0.4,False +BranchTee_mvgd_33535_lvgd_1157730000_building_431525,9.99171130000827,47.53741064626269,33535,1157730000,0.4,False +BusBar_mvgd_33535_lvgd_1157740000_LV,9.992445600000002,47.53997049624272,33535,1157740000,0.4,False +BranchTee_mvgd_33535_lvgd_1157740000_1,9.9941455,47.5408672962428,33535,1157740000,0.4,False +BranchTee_mvgd_33535_lvgd_1157740000_2,9.992132199999999,47.53983069624266,33535,1157740000,0.4,False +BranchTee_mvgd_33535_lvgd_1157740000_3,9.994873700000001,47.53867859624256,33535,1157740000,0.4,False +BranchTee_mvgd_33535_lvgd_1157740000_building_431550,9.994283312164429,47.54082012704494,33535,1157740000,0.4,False +BranchTee_mvgd_33535_lvgd_1157740000_building_431558,9.99475780531541,47.53871363020031,33535,1157740000,0.4,False +BranchTee_mvgd_33535_lvgd_1157740000_building_431560,9.992161416152106,47.539995245386315,33535,1157740000,0.4,False +BranchTee_mvgd_33535_lvgd_1157740000_building_431562,9.994908532378346,47.53855589560278,33535,1157740000,0.4,False +BusBar_mvgd_33535_lvgd_1159300000_LV,10.117484600000001,47.55610829624415,33535,1159300000,0.4,False +BranchTee_mvgd_33535_lvgd_1159300000_1,10.117806599999994,47.556177596244076,33535,1159300000,0.4,False +BranchTee_mvgd_33535_lvgd_1159300000_building_448089,10.11749571187476,47.556191766510665,33535,1159300000,0.4,False +BranchTee_mvgd_33535_lvgd_1159300000_building_448093,10.117733869698569,47.55637307896748,33535,1159300000,0.4,False +BusBar_mvgd_33535_lvgd_1159870000_LV,10.097126999999995,47.45210599623459,33535,1159870000,0.4,False +BranchTee_mvgd_33535_lvgd_1159870000_building_422766,10.098051388377712,47.451849654514064,33535,1159870000,0.4,False +BusBar_mvgd_33535_lvgd_1159900000_LV,9.993023599999997,47.552695996243806,33535,1159900000,0.4,False +BranchTee_mvgd_33535_lvgd_1159900000_building_441521,9.99292417162653,47.552834829635195,33535,1159900000,0.4,False +BusBar_mvgd_33535_lvgd_1160850000_LV,10.000569899999999,47.52387799624125,33535,1160850000,0.4,False +BranchTee_mvgd_33535_lvgd_1160850000_building_431431,10.000375360502472,47.524219371303104,33535,1160850000,0.4,False +BranchTee_mvgd_33535_lvgd_1160850000_building_431457,10.000476800001387,47.523715846286585,33535,1160850000,0.4,False +BranchTee_mvgd_33535_lvgd_1160850000_building_431462,10.000528845757842,47.52403937335276,33535,1160850000,0.4,False +BusBar_mvgd_33535_lvgd_1160950000_LV,9.995877763531064,47.522992575696975,33535,1160950000,0.4,False +BranchTee_mvgd_33535_lvgd_1160950000_building_431392,9.994777681017593,47.52404954102437,33535,1160950000,0.4,False +BranchTee_mvgd_33535_lvgd_1160950000_building_431395,9.996177396529509,47.52249893017187,33535,1160950000,0.4,False +BranchTee_mvgd_33535_lvgd_1160950000_building_431403,9.996551518678375,47.522509006179554,33535,1160950000,0.4,False +BusBar_mvgd_33535_lvgd_1161320000_LV,9.993239667455976,47.49863028859219,33535,1161320000,0.4,False +BranchTee_mvgd_33535_lvgd_1161320000_building_431035,9.993239667455976,47.49863028859219,33535,1161320000,0.4,False +BusBar_mvgd_33535_lvgd_1161950000_LV,9.983944199999996,47.54876209624351,33535,1161950000,0.4,False +BranchTee_mvgd_33535_lvgd_1161950000_building_431567,9.983673350062642,47.548762746437625,33535,1161950000,0.4,False +BusBar_mvgd_33535_lvgd_1161990000_LV,9.993773700000006,47.54763269624337,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_1,9.993052900000002,47.547760696243365,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_2,9.992366800000001,47.54703269624337,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_3,9.993352799999998,47.54763879624339,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_4,9.988096699999994,47.54896899624346,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_5,9.989447599999995,47.548700096243486,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_6,9.989867599999998,47.54866319624345,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_7,9.987419699999998,47.548665696243454,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_8,9.987232899999999,47.54853989624347,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_9,9.987148799999998,47.54854909624345,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_10,9.986670099999996,47.54852369624351,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_11,9.987514299999997,47.55093099624363,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_12,9.990102300000004,47.54706929624335,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_13,9.989407799999995,47.55036919624366,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_14,9.9978763,47.54763559624337,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_15,9.995745399999995,47.54914599624352,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_16,9.998301899999996,47.54775609624339,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_17,9.993883899999998,47.54763339624336,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_18,9.995465400000004,47.54876269624348,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_19,9.996663799999995,47.54763929624339,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_20,9.9955689,47.5489525962435,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_21,9.9959912,47.54715879624336,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_22,9.996853200000004,47.54750219624338,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_23,9.996623199999991,47.54771569624341,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_24,9.996906799999998,47.54777049624341,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_25,9.997034800000002,47.54761049624338,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_26,9.993649599999994,47.547268696243314,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431566,9.986752900007348,47.548401196268365,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431569,9.987083906123187,47.54833365048138,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431573,9.987281954380364,47.548427628249335,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431576,9.992369278865029,47.54681547440393,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431577,9.989967950027587,47.547206846445434,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431578,9.989620936410024,47.548775164657314,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431580,9.99522344999556,47.548781396329304,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431584,9.993623599991334,47.54718494628041,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431586,9.993923981917925,47.54723269806306,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431587,9.996459749995502,47.54759669634574,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431590,9.996366654150465,47.54775504698614,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431591,9.996788669250055,47.547776755346995,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431592,9.994001700002158,47.547508246283115,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431600,9.996017057918356,47.54728827047961,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431602,9.997029560220888,47.54781808893003,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431723,9.997838917257223,47.5477703909251,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431726,9.998165814010001,47.54763496844167,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_431729,9.998391883720398,47.54765900368296,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_441499,9.987218600059771,47.550959796444424,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_441502,9.989810009085227,47.54909013282911,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_441509,9.989343062227706,47.55021583139031,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_441513,9.995846065680917,47.548912790791896,33535,1161990000,0.4,False +BranchTee_mvgd_33535_lvgd_1161990000_building_441514,9.995711100016939,47.54920654629925,33535,1161990000,0.4,False +BusBar_mvgd_33535_lvgd_1163060000_LV,10.002348298468702,47.496085412927414,33535,1163060000,0.4,False +BranchTee_mvgd_33535_lvgd_1163060000_building_430839,10.002257800004706,47.49610629625729,33535,1163060000,0.4,False +BranchTee_mvgd_33535_lvgd_1163060000_building_430840,10.002527538814418,47.4960440513428,33535,1163060000,0.4,False +BusBar_mvgd_33535_lvgd_1163320000_LV,10.001292200000002,47.53662159624241,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_1,10.001901699999998,47.53698829624245,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_2,10.002482800000005,47.53720469624245,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_3,10.002619899999997,47.536704896242426,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_4,10.002241699999995,47.53736399624249,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_5,10.002172000000003,47.53654919624235,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_6,10.001335099999997,47.53621599624233,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_7,10.001662400000003,47.53614169624233,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_8,10.001895699999995,47.53621869624238,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_9,10.0001483,47.53597789624237,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_10,10.0010937,47.536185196242364,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_11,10.001415599999998,47.53653109624242,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431646,10.00090277148448,47.53636888734238,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431651,10.001616064791682,47.53626536584043,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431654,10.001970500000334,47.53630134625734,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431656,10.000276835587673,47.53612661656431,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431658,10.002222100007767,47.53638244636636,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431661,10.001121950009063,47.53649824631096,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431664,10.001710798843712,47.53647123919371,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431670,10.00246770001501,47.53678104630966,33535,1163320000,0.4,False +BranchTee_mvgd_33535_lvgd_1163320000_building_431689,10.00238875014214,47.53757644652685,33535,1163320000,0.4,False +BusBar_mvgd_33535_lvgd_1163330000_LV,10.003165199999996,47.54635979624327,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_1,10.003737799999993,47.54554839624316,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_2,10.0033482,47.54619259624319,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_3,10.003580699999997,47.54608099624326,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_4,10.003748900000001,47.545921896243264,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_5,10.0038155,47.54581689624321,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_6,10.002407500000006,47.5456725962432,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_7,10.002801300000003,47.54582209624321,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_8,10.001686500000002,47.545296496243225,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_9,10.003079399999995,47.54606799624325,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_10,10.002249699999995,47.54609139624322,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431712,10.002616960629574,47.54551775474078,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431714,10.001798090312993,47.545211328826205,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431717,10.002797832462235,47.54573809583885,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431718,10.003531869892766,47.545646362536665,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431719,10.002632500003953,47.54596734626925,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431720,10.002756163123316,47.54600964031175,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431721,10.0032351500029,47.54600869625098,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431725,10.003691500005328,47.54582459625946,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431731,10.0038046500057,47.54602084626176,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431733,10.002128700009285,47.54614689626904,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431739,10.003399569255244,47.54632524368912,33535,1163330000,0.4,False +BranchTee_mvgd_33535_lvgd_1163330000_building_431758,10.003899050010949,47.546175696261145,33535,1163330000,0.4,False +BusBar_mvgd_33535_lvgd_1163360000_LV,10.003636499999997,47.54303869624298,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_1,10.0023088,47.54058539624277,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_2,10.0016624,47.542432196242935,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_3,10.0032514,47.54303369624298,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_4,10.002930399999997,47.54313009624294,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_5,10.0031049,47.542517396242935,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_building_431694,10.003130898067374,47.54241972017698,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_building_431695,10.002463548234774,47.54041032934746,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_building_431696,10.001763333901351,47.54236359760006,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_building_431698,10.002731951017493,47.542593279352346,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_building_431701,10.003273014550103,47.54315729601008,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_building_431703,10.002947450003482,47.54270789625385,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_building_431704,10.003720660979763,47.54309067248578,33535,1163360000,0.4,False +BranchTee_mvgd_33535_lvgd_1163360000_building_431706,10.002933263986485,47.54320420659557,33535,1163360000,0.4,False +BusBar_mvgd_33535_lvgd_1164120000_LV,10.019700400000003,47.545350696243155,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_1,10.027229200000006,47.544983296243146,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_2,10.021943,47.54424859624311,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_3,10.023893199999995,47.54428679624306,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_4,10.025639400000003,47.54179939624283,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_5,10.015792099999997,47.54316379624297,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_6,10.023387400000004,47.54525159624315,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_7,10.021560699999998,47.54513699624317,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_8,10.0216971,47.54515259624312,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_9,10.016800800000002,47.54299349624296,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_10,10.016234799999992,47.542901996242946,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_11,10.021108299999998,47.54497669624315,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_12,10.021879200000004,47.54385189624305,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_13,10.021748599999995,47.54493689624315,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_14,10.020590100000005,47.54473059624313,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_15,10.021494899999993,47.54458799624309,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_16,10.020726300000003,47.54472819624313,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_17,10.020299200000004,47.5448262962431,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_18,10.019476100000004,47.54486489624315,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_19,10.0202027,47.544843296243066,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_20,10.019694900000005,47.54481179624312,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_21,10.019288599999996,47.544227496243096,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_22,10.0193001,47.544527896243125,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_23,10.0240534,47.54445969624309,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_24,10.0225157,47.54496409624314,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_25,10.024505899999998,47.54433579624308,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_26,10.024393200000004,47.54402439624305,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_27,10.025572100000002,47.542445896242896,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_28,10.025462299999994,47.54204079624288,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_29,10.021079000000006,47.544675296243135,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_30,10.017876799999996,47.54399749624309,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_31,10.025848600000003,47.54301069624297,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_32,10.020855599999994,47.54477489624311,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_33,10.017157700000002,47.543827196243,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_34,10.028086099999996,47.544584896243116,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_35,10.023836899999994,47.5441783962431,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_36,10.021385500000003,47.5445837962431,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_37,10.021715799999996,47.54462609624317,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_38,10.023800200000005,47.54395709624309,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_39,10.0155251,47.54293219624298,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_40,10.019771600000002,47.54450099624305,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_41,10.0218206,47.544617996243126,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_42,10.018635599999994,47.54359839624307,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_43,10.023027999999995,47.54522279624318,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_44,10.019367600000004,47.5453435962432,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_45,10.016676000000002,47.544549596243115,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_46,10.019106300000004,47.54537409624323,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_47,10.01808674833744,47.54513854787915,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_48,10.016136399999995,47.5441724962431,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_49,10.016641500000002,47.5444812962431,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_50,10.015356900000004,47.543849396243075,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_51,10.015767800000006,47.54403819624304,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_52,10.016487799999997,47.54435359624312,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_53,10.015469,47.54398379624303,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_54,10.019147700000003,47.54622619624327,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_55,10.019214599999994,47.546414296243285,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_56,10.019690600000006,47.54551339624319,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_57,10.020061800000002,47.54535809624316,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_58,10.020440200000005,47.5454724962432,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_59,10.020758000000004,47.545527896243215,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_60,10.020365900000003,47.5455310962432,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431855,10.018946115913247,47.54637513182112,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431860,10.019397426385035,47.54623064175421,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431865,10.019302959504953,47.546628740202635,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431868,10.019520807865781,47.54679155446607,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444927,10.019615313711057,47.54671886494488,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431776,10.015182849993586,47.54324709625693,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431790,10.017540599997933,47.54332774627277,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431801,10.016751999999846,47.544392546246236,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431803,10.015869293767597,47.543869305929164,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431804,10.01644316020117,47.54457582695017,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431810,10.016164475947944,47.543849961976726,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431818,10.016788355701491,47.54409064619765,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431820,10.018217773927606,47.54382725126184,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431821,10.015492014045597,47.54415374741411,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431822,10.01863909998445,47.543839596295676,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431827,10.01492183564308,47.54363647154005,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431829,10.01609000246908,47.54405764512319,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431830,10.01948833355186,47.544479505076296,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431834,10.015778744980583,47.544267013308236,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431841,10.015989430840802,47.54437528213193,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431849,10.018936228313464,47.545285370160144,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431851,10.019398350951889,47.54553107827005,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431866,10.016253367923085,47.54449381781828,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444859,10.02566006015993,47.54228088996157,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444862,10.025427372202401,47.54179265165128,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444864,10.025390950007557,47.54193449629415,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444870,10.019690804810743,47.544685710273995,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444872,10.02566404669125,47.543040811455796,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444876,10.019957375724198,47.54448649213634,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444878,10.020549521263442,47.54449827325138,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444879,10.020286129417439,47.54463683731063,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444880,10.02155977680074,47.54450227453233,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444881,10.02162438457654,47.54422070537497,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444885,10.021771005993381,47.544560857456176,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444887,10.021606450005763,47.544760246296825,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444888,10.020050272935748,47.54472909929467,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444889,10.020069250009328,47.54500534630388,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444891,10.021885850037147,47.54358824629545,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444892,10.021598181736657,47.54498228093213,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444894,10.022271760331545,47.54363046776418,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444896,10.021992455281143,47.54481006088488,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444897,10.020083476721977,47.54529414409925,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444898,10.020699070321731,47.5449058067372,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444899,10.021982800003633,47.543737596277595,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444901,10.020976933089704,47.544548268477236,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444907,10.021325795847453,47.54448263772723,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444910,10.019719026791288,47.5456069381515,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444912,10.021020750014458,47.545414846310315,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444913,10.020430899999946,47.54559184626193,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444916,10.023007861665548,47.5450516571174,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444918,10.021247798236274,47.544881512105185,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444919,10.021475426520883,47.54497518814503,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444923,10.024055487223123,47.54418667529091,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444930,10.024294362709664,47.54414601731079,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444932,10.023749126641757,47.544445130827974,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444935,10.024688649996639,47.544344996316944,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444941,10.02234105106837,47.544841920436326,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444944,10.022457274226714,47.54484520530877,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444956,10.027187199998455,47.545088596278376,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_444960,10.02799979092903,47.54452387229045,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431838,10.018007949266716,47.5448636726949,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_431842,10.018408412410864,47.544797932674655,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_34999666,10.01626146861365,47.54304077232443,33535,1164120000,0.4,False +BranchTee_mvgd_33535_lvgd_1164120000_building_34999667,10.016632275421353,47.54311604291023,33535,1164120000,0.4,False +BusBar_mvgd_33535_lvgd_1164120001_LV,10.021668099999998,47.54834369624342,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_1,10.021361500000001,47.54890949624347,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_2,10.0218863,47.54879209624351,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_3,10.021669499999998,47.54869399624346,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_4,10.021036000000002,47.54929209624356,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_5,10.021055500000001,47.54912709624349,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_6,10.0159465,47.548175696243455,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_7,10.021551499999998,47.549346196243505,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_8,10.022146700000006,47.54919529624351,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_9,10.015748899999995,47.54777699624341,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_10,10.021311299999999,47.54944629624353,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_11,10.022899700000002,47.549764696243585,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_12,10.021757899999994,47.549422696243525,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_13,10.021204100000006,47.54901449624347,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_14,10.014399799999996,47.54768779624335,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_15,10.013737499999996,47.54759299624337,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_16,10.021565799999996,47.54872019624347,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_17,10.021776699999997,47.547313696243336,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_18,10.021567400000006,47.547765096243396,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_19,10.020688600000003,47.54688159624335,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_20,10.021584400000002,47.546878396243315,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_21,10.020872400000005,47.54699559624329,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_22,10.021529399999995,47.54815639624343,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_23,10.021494799999996,47.54798539624339,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_24,10.022628199999998,47.54849089624348,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_25,10.022402399999999,47.54837449624345,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_26,10.021920900000001,47.54828009624339,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_431815,10.013722671997906,47.5477762263596,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_431861,10.014207900043646,47.54790184630209,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444946,10.022191488600628,47.5484404173078,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444950,10.022748939734386,47.548304975179704,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_445420,10.023021468206807,47.549857860493745,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_445448,10.022344891803272,47.549022496014366,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444922,10.020985624253827,47.54685676755838,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444924,10.021385976878516,47.54710332795675,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444929,10.021422050791509,47.54735651257184,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444933,10.021226471373295,47.54799193638755,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444934,10.021934316396246,47.54756920401591,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444936,10.021819603579655,47.547898744899314,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444937,10.021706792679048,47.54801900835296,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444938,10.020378333861643,47.54695981098453,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444940,10.020861667317252,47.547311347236196,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444943,10.021210628717306,47.548256911471455,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444945,10.021777221836636,47.54814816327815,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_444947,10.02199365001425,47.54866919628533,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_445438,10.020991133875444,47.54890217648193,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_445447,10.02158109503761,47.54903121730225,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_445450,10.020987549998775,47.549384296299195,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_445469,10.021367702718388,47.5497809083816,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_445475,10.021731933700032,47.5495340330409,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_34328673,10.01626057067234,47.548103763421345,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_34328674,10.016068037089,47.54812297618069,33535,1164120001,0.4,False +BranchTee_mvgd_33535_lvgd_1164120001_building_34328675,10.017108894734521,47.54819335409153,33535,1164120001,0.4,False +BusBar_mvgd_33535_lvgd_1164120002_LV,10.008394199999996,47.56682179624508,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_1,10.012655999999996,47.559421196244436,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_2,10.009074499999999,47.566521896245035,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_3,10.009044899999992,47.56690459624507,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_4,10.009179300000001,47.56619329624503,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_5,10.012581599999995,47.55948959624443,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_6,10.008087199999997,47.566791196245056,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_7,10.004378000000006,47.56769629624514,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_8,10.0078119,47.56678499624509,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_9,10.008384000000003,47.566120996245004,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_10,10.008261099999999,47.56617599624502,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_441675,10.012269980657234,47.55934431148304,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_441679,10.012534861664449,47.55934354486765,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_441853,10.007715250004587,47.566943546279006,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_441854,10.00443066170011,47.567845513171676,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_441856,10.007843050004592,47.56697839627904,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_441866,10.00848233524557,47.566239110481774,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_441867,10.00843690000322,47.56627804625394,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_441869,10.008444803201398,47.56695085984131,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_442028,10.008923200023524,47.56709574631851,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_442029,10.00924156857571,47.56671889816666,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_442051,10.008713500011945,47.566469246308884,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_442055,10.009361891155297,47.56638636531383,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_442059,10.009484568937298,47.56648145068764,33535,1164120002,0.4,False +BranchTee_mvgd_33535_lvgd_1164120002_building_442064,10.008587800005706,47.56698864627876,33535,1164120002,0.4,False +BusBar_mvgd_33535_lvgd_1164120003_LV,10.026685600000002,47.558041696244295,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_1,10.028568899999993,47.559336896244425,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_2,10.029089299999997,47.559116896244404,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_3,10.0292964,47.55898329624439,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_4,10.029602099999995,47.558762796244395,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_5,10.0299445,47.558774096244335,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_6,10.028778500000005,47.558439096244335,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_7,10.028681299999999,47.559493296244476,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_8,10.0305483,47.56013859624447,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_9,10.027179499999999,47.55829809624431,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_10,10.028961599999995,47.55993359624442,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_11,10.030610600000003,47.561293096244576,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_12,10.026382000000002,47.56203029624464,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_13,10.027351500000002,47.558375696244305,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_14,10.027826199999994,47.559181496244385,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_15,10.027955400000005,47.5591454962444,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_16,10.026857299999994,47.56204049624463,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_17,10.027752999999997,47.55836499624433,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_18,10.028339699999997,47.55903889624435,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_19,10.027100399999998,47.56210059624466,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_20,10.0288894,47.558251996244344,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_21,10.0278068,47.5579813962443,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_22,10.0281841,47.55839919624432,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_23,10.028234700000004,47.55802399624429,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_24,10.029916499999997,47.56058609624454,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_25,10.023855499999996,47.55834849624433,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_26,10.025927300000003,47.55868119624436,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_27,10.027136800000003,47.55900079624436,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_28,10.025795200000001,47.558581896244334,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_29,10.024425399999997,47.558923796244386,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_30,10.025119000000004,47.55875889624436,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_31,10.024733899999996,47.558491396244335,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_32,10.026180399999996,47.55872959624436,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_33,10.023553999999995,47.558629396244385,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_34,10.02414044841396,47.55863614663664,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_35,10.023731699999997,47.558171296244296,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_36,10.026739999999997,47.55883599624438,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_37,10.024018200000002,47.55903359624444,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_38,10.02851969781653,47.5569817971854,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_39,10.029126599999994,47.557321196244224,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_40,10.028969299999996,47.55723279624424,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_41,10.032179500000005,47.55928679624439,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_42,10.0275955,47.557117396244216,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_43,10.0269114,47.5578079962443,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_44,10.027183799999992,47.556840196244195,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_45,10.027109999999997,47.55758989624428,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_46,10.028070899999998,47.55746119624424,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_47,10.027371600000004,47.556322996244184,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_48,10.027847599999992,47.55659319624417,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_49,10.028070099999999,47.556730796244196,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_50,10.027420699999997,47.557264596244245,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_51,10.0281938,47.55755009624424,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_52,10.027504899999998,47.5578017962443,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_53,10.028365399999998,47.55762679624428,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_54,10.029052899999998,47.55775739624424,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_55,10.024751100000001,47.557332796244225,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_56,10.024188899999999,47.55753859624426,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_57,10.024687800000002,47.557404696244284,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_58,10.024575099999995,47.557635496244274,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_59,10.0240887,47.55743959624426,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_60,10.023899699999998,47.55714439624423,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_61,10.024518,47.5577007962443,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_62,10.025666899999997,47.55729109624426,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_63,10.024131299999997,47.558093996244324,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_64,10.02489540183256,47.55807689669638,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_65,10.024467899999994,47.558390296244326,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_66,10.025201300000004,47.5577671962443,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_67,10.025136999999997,47.556823996244184,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_68,10.025533599999997,47.55715839624422,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_69,10.026051900000002,47.55762099624429,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_70,10.026395000000003,47.55788369624428,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_71,10.026435899999994,47.55714689624425,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_72,10.025889700000004,47.55748899624425,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_73,10.0253046,47.55694709624423,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445791,10.023434199998375,47.55883699627279,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445792,10.023498099998134,47.558863746272564,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445809,10.023823818103759,47.558626975189625,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445812,10.023410648359118,47.55856191240129,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445814,10.024052100001756,47.55868594624995,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445816,10.024007953061089,47.558858429937416,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445820,10.024591946565412,47.559076168489284,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445880,10.025914394178333,47.5588331172091,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445886,10.026217470636965,47.55890060396487,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445888,10.026880367308173,47.558768932569286,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445890,10.026434629610739,47.55898767513755,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445912,10.027401081134006,47.55900136527599,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445920,10.027086479657136,47.55918957482624,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445926,10.028974099986389,47.559018246310465,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445933,10.027926823592027,47.55931525851943,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445934,10.028153671527438,47.55924286770504,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445941,10.028904204107908,47.55943404717719,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445944,10.029635563937576,47.55865959117405,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445948,10.02919115364592,47.55888819079795,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445951,10.028805595006565,47.55871289249568,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445953,10.028563033592915,47.558975172080416,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445955,10.029921849999845,47.55866289626842,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445957,10.029260708235128,47.55927943214994,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445961,10.029541817062023,47.55974014702137,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_446016,10.026187850013184,47.5620077962772,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_446024,10.026890943904515,47.561905387672205,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_446030,10.027121300010092,47.56197614630811,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_446037,10.03048597104238,47.56149202089914,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_446079,10.030540799985848,47.55999224632222,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_446083,10.03049031248595,47.5618673204251,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445712,10.024002199999785,47.556946696306134,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445719,10.024636029763238,47.556946114515036,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445723,10.02476891370985,47.55683791848544,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445731,10.025009199989256,47.55700329633793,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445766,10.024856718583854,47.55750312026659,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445767,10.024794858503615,47.55759501071827,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445768,10.024783889369209,47.55771025614639,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445775,10.024130604068914,47.55783995353008,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445778,10.023921586765255,47.55811075832915,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445779,10.024171056921602,47.55837875830655,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445785,10.024600255398827,47.55779409216512,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445786,10.024490295958099,47.55796390143021,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445787,10.024364365329994,47.55804930266122,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445793,10.02496079559353,47.557822413629665,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445794,10.024713213477074,47.5580455691762,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445799,10.024517673779336,47.558256538557075,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445801,10.02496319671748,47.55819896365879,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445804,10.024839400003431,47.558397246320325,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445817,10.024285981721953,47.55709678184573,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445821,10.023837149996066,47.55745084629986,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445824,10.024155867022028,47.557674282219374,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445829,10.02466054999998,47.55716544626079,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445833,10.024600089516067,47.55728105519465,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445836,10.024945508905164,47.557351271241885,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445839,10.024443976032991,47.55746586720003,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445843,10.024656900004198,47.55773734626187,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445853,10.026728549995465,47.55691374627622,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445857,10.027309899999922,47.55621604625072,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445858,10.026975200001765,47.557025496305705,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445859,10.027518116875877,47.5561418040267,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445861,10.027384040556454,47.556644239054386,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445867,10.025444850004513,47.55774444632723,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445868,10.027666652450087,47.55682810981388,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445869,10.02583415612227,47.557770777760666,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445876,10.025214186481715,47.55799790323401,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445882,10.027796138921547,47.55625198368579,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445883,10.026640434406424,47.55721690971184,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445884,10.026460649995435,47.55765219631252,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445885,10.026855315322274,47.55745190346375,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445891,10.027284706802085,47.55712687428465,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445892,10.028130909584094,47.5569962057022,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445893,10.02764519998501,47.55738019634244,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445895,10.028477616759876,47.55677849689877,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445898,10.027486975708472,47.55760778397065,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445899,10.028817606840635,47.55679461175599,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445900,10.026659033493535,47.55777120887409,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445901,10.027053985820556,47.55790574120087,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445903,10.029142384401794,47.55700744264123,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445907,10.02703631697442,47.558157946845604,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445908,10.027223228178832,47.557795699004366,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445909,10.027520703416359,47.55803523280937,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445911,10.025169223579727,47.55717991916024,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445913,10.028422157510866,47.557145131247196,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445914,10.025288858801845,47.557127270379624,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445915,10.027877423720458,47.55752865278416,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445916,10.028142043775889,47.55764608429544,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445919,10.025077994754565,47.557313312129494,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445921,10.028601918974324,47.557299736474576,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445922,10.028924450008066,47.55747029627699,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445924,10.025369600005511,47.55738939627152,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445925,10.02792726624799,47.557129348783086,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445927,10.028875820239879,47.557575250425984,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445928,10.028247882027799,47.55782689552849,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445929,10.028205731570974,47.557902414273954,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445930,10.025131234523919,47.557613722639715,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445931,10.02852560001784,47.557778346279186,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445935,10.025637313108799,47.557533455572035,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445937,10.028912950026658,47.55784759628413,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445940,10.02898974999989,47.55822139625639,33535,1164120003,0.4,False +BranchTee_mvgd_33535_lvgd_1164120003_building_445960,10.031830950061316,47.55918219630493,33535,1164120003,0.4,False +BusBar_mvgd_33535_lvgd_1164120004_LV,10.021746599999998,47.55377359624393,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_1,10.021196799999995,47.55362669624393,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_2,10.021334099999995,47.553696996243914,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_3,10.021399999999995,47.55359749624388,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_4,10.021084400000001,47.553557096243885,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_5,10.021008300000007,47.55379689624394,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_6,10.020906299999993,47.554191096243976,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_7,10.0202216,47.554459896244,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_8,10.020208199999994,47.554684396244035,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_9,10.020525200000005,47.554179096243956,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_10,10.020526300000004,47.55432659624396,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_11,10.020821800000006,47.553493696243876,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_12,10.0200493,47.55336099624387,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_13,10.020469399999993,47.55394459624394,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_14,10.020420899999996,47.55345399624389,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_15,10.020554499999994,47.55304019624387,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_16,10.019806899999995,47.553807096243965,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_17,10.0201424,47.5529631962439,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_18,10.020641500000002,47.55382649624394,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_19,10.020575399999998,47.553975496243915,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_20,10.0213449,47.55281929624385,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_21,10.021192799999996,47.553095196243866,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_22,10.023668300000002,47.55187559624374,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_23,10.0213424,47.55198869624373,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_24,10.022005500000002,47.552296796243816,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_25,10.022068299999997,47.5525562962438,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_26,10.0221493,47.55278879624385,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_27,10.022423400000001,47.55291469624389,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_28,10.020785399999998,47.55224729624378,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_29,10.0223704,47.55302559624386,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_30,10.022794599999996,47.55309659624385,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_31,10.021920299999998,47.55177339624377,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_32,10.0236035,47.55238269624381,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_33,10.023443400000003,47.551852496243754,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_34,10.023096999999998,47.55183399624375,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_35,10.022555700000003,47.55132589624369,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_36,10.022587499999997,47.550619596243656,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_37,10.022451000000004,47.55029399624358,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_38,10.022018999999997,47.54988799624358,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_39,10.0222167,47.55007379624358,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_40,10.022595000000004,47.550775896243664,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_41,10.020433000000006,47.55128029624371,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_42,10.022601300000005,47.551463296243675,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_43,10.023082100000003,47.55144219624374,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_44,10.022298899999996,47.55202879624376,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_45,10.022329499999996,47.5520668962438,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_46,10.020913000000002,47.551977696243746,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_47,10.023842700000001,47.55154949624373,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_48,10.0223371,47.55311849624385,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_49,10.022630600000001,47.55252809624383,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_50,10.0243426,47.55237219624381,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_51,10.023234700000001,47.55219169624379,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_52,10.020265448184043,47.55113504752167,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_53,10.022778499999998,47.551732896243706,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_54,10.023688299999995,47.55208539624382,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_55,10.023942899999994,47.552382696243804,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_56,10.022232,47.553459996243916,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_57,10.023045000000003,47.55412719624392,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_58,10.023118400000007,47.5536185962439,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_59,10.0234022,47.55341249624388,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_60,10.022157899999996,47.55366389624393,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_61,10.022803000000005,47.55421149624401,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_62,10.02257179999999,47.55423579624397,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_63,10.022112600000002,47.55381729624391,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_64,10.021995099999994,47.55354259624388,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_65,10.022946599999994,47.55390999624394,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_66,10.022333199999997,47.55312949624386,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_67,10.023351199999999,47.553999896243965,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445422,10.02221385000077,47.550127196252106,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445427,10.022332699994815,47.55050854627851,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445428,10.022379239940895,47.55073102569907,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445432,10.022463099999399,47.55091794626844,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445434,10.02232790000062,47.551082996276364,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445436,10.022446174248676,47.55108635449293,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445440,10.022204449991955,47.550347046296366,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445442,10.022761749999473,47.55095099633853,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445443,10.022807149999998,47.551208146303644,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445444,10.022305019646039,47.551259598498824,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445449,10.023188929538392,47.5513113031654,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445451,10.023584350003388,47.55139764627037,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445458,10.023746827015966,47.55141109111164,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445461,10.022198550003996,47.552162846290706,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445474,10.022223262167406,47.55240272011069,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445476,10.022215250024086,47.55271144628236,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445500,10.02226614623613,47.549867581636505,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445508,10.02369734999351,47.55199949626529,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445513,10.024108749993141,47.55225179629077,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445516,10.024258899999896,47.55233599624661,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445525,10.022720068092642,47.552984625731796,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445527,10.022224600003504,47.55299264631158,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445530,10.022973956340891,47.55163801581385,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445531,10.023271457363778,47.551729717345424,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445532,10.023587200001842,47.5517218962653,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445534,10.022529886301655,47.55348476795522,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445535,10.023319699984262,47.55207864628737,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445537,10.02244470963168,47.55254402049148,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445538,10.023571749998592,47.55227799627783,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445539,10.02302260670826,47.553191883804246,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445543,10.023843742591964,47.55174027006508,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445544,10.023228654183624,47.553376677222516,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445549,10.023237724687553,47.55367923890434,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445550,10.022928850003584,47.55370109633069,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445551,10.02319184065108,47.553877913368396,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445556,10.02362846266811,47.553728534357745,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445558,10.023552003817013,47.55410955011073,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445574,10.023704847842493,47.55403676661231,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445667,10.02300110937446,47.55433332534862,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445433,10.019953438427883,47.551393514060706,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445437,10.020042464045154,47.55139124821769,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445481,10.020014419546342,47.55319450015241,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445486,10.01972858426986,47.553420072937186,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445488,10.02003248045331,47.5534474935108,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445495,10.019976510415118,47.554029673614274,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445497,10.020240040744463,47.553797837605174,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445501,10.019658601073225,47.55371672102794,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445502,10.019854950005188,47.55371014627573,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445504,10.020308750006752,47.55402554632402,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445505,10.020356999997615,47.55431609631913,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445507,10.019676228674644,47.55394095481283,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445618,10.020148899992833,47.55496924628116,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445439,10.0216674979392,47.550257762807064,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445464,10.020996600010646,47.552680696307995,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445465,10.021225180752275,47.5527208384481,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445466,10.020929600007412,47.55291099630117,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445467,10.02110287950039,47.55294424016143,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445468,10.020776000002645,47.55184619629183,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445473,10.021815233197156,47.55254897925105,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445482,10.020155350011272,47.55280274628679,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445484,10.02066915000011,47.55228009625517,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445485,10.020468020739207,47.5529041090301,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445490,10.021415326019621,47.55188229980278,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445491,10.022007824422916,47.54971600117863,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445493,10.020322450009633,47.553272496337435,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445494,10.020665300004842,47.553120346266425,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445496,10.021748039363485,47.54999743552938,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445498,10.020542750009726,47.55364264634607,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445499,10.020717870071513,47.55336033839864,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445506,10.020964167284273,47.553144232942614,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445509,10.021404433567723,47.55396742073349,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445510,10.021566352760862,47.553890744982255,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445511,10.021450191332672,47.55304290634059,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445512,10.021038822521621,47.55344548150951,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445514,10.020921491769665,47.55360882313541,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445517,10.021758354243039,47.55364607780043,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445518,10.021425700063354,47.55332714636157,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445520,10.021256500012855,47.55351199630807,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445521,10.021800476081063,47.553911749625705,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445524,10.02151294872901,47.55357605815948,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445526,10.021968658713384,47.5532282676065,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445528,10.021783674691171,47.55343215812249,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445533,10.021190854960464,47.55385572671068,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445608,10.019765429962757,47.55455337181453,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445609,10.019766851676899,47.554875118386136,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445622,10.020822850920856,47.55432594613078,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445548,10.022498225784561,47.55401310696151,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_445592,10.020087376466256,47.55435508665868,33535,1164120004,0.4,False +BranchTee_mvgd_33535_lvgd_1164120004_building_34967288,10.020651000000012,47.55423369624394,33535,1164120004,0.4,False +BusBar_mvgd_33535_lvgd_1164120005_LV,10.018368799999994,47.55378859624388,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_1,10.017878399999995,47.553541596243896,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_2,10.015972500000005,47.551578696243745,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_3,10.017815099999998,47.55365039624394,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_4,10.014889000000002,47.55173109624373,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_5,10.0150086,47.55169009624374,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_6,10.015103599999996,47.55151719624375,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_7,10.015189399999995,47.55112329624372,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_8,10.015207100000005,47.550831196243635,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_9,10.015935800000006,47.55166759624374,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_10,10.016543599999999,47.55155789624372,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_11,10.016573,47.551963996243735,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_12,10.015164099999994,47.55123959624371,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_13,10.017462000000002,47.55327309624392,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_14,10.017327899999994,47.552455996243815,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_15,10.014887899999994,47.5507848962437,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_16,10.015863799999996,47.55081729624368,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_17,10.016565099999998,47.550928896243676,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_18,10.013357800000003,47.55497919624397,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_19,10.013300200000005,47.555076396244026,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_20,10.017866400000004,47.55158729624378,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_21,10.016112199999997,47.55196449624378,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_22,10.017091399999996,47.551881796243755,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_23,10.016842800000004,47.55219559624381,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_24,10.015959400000002,47.55179219624376,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_25,10.017188199999998,47.55238939624382,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_26,10.0171705,47.5522438962438,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_27,10.016183199999999,47.55436269624401,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_28,10.016667749202247,47.55444779732085,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_29,10.0175105,47.55382809624396,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_30,10.016626099999998,47.55370769624391,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_31,10.0171523,47.55453289624399,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_32,10.01733140122069,47.554180496421544,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_33,10.019478198173188,47.55319564774409,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_34,10.018637951973709,47.55340944661108,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_35,10.019240499999993,47.55255419624381,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_36,10.018063299999996,47.55251419624387,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_37,10.018322800000005,47.552294396243774,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_38,10.018308500000007,47.552825296243846,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_39,10.0189071,47.55303029624385,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_40,10.019716300000008,47.55269189624382,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_41,10.018638099999999,47.55264479624381,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_42,10.018576400000002,47.5527515962438,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_43,10.018929000000004,47.552999196243825,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_44,10.018703499999997,47.55410759624395,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_45,10.018303200000005,47.55408029624393,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_46,10.019223799999997,47.55412769624398,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_47,10.019636900000002,47.55414019624395,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_48,10.0192819,47.55412999624396,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_49,10.019194200000003,47.55442859624399,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_50,10.019218500000003,47.554720396244036,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_51,10.019205000000003,47.554580896244005,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441605,10.014655350022581,47.55104754631193,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441613,10.015607563250233,47.55149660535948,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441619,10.014961950003055,47.55115699631253,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441621,10.016518466754023,47.55118871760275,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441622,10.014891071860054,47.551499226390405,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441627,10.01487852913017,47.5515676689278,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441628,10.015633223621833,47.55171953765845,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441631,10.014943847948409,47.55142628588163,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441634,10.015467962266829,47.551105982611865,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441635,10.015893441494558,47.552007098392195,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441636,10.016188858642474,47.55170950630483,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441637,10.016255107436523,47.551880909564005,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441640,10.016180219058828,47.55243464160637,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441641,10.015934900030912,47.55114424628244,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441643,10.017100049985027,47.552024246371836,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441644,10.015639465753592,47.55132478744489,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441645,10.017431479127715,47.552185206128364,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441646,10.01483580000251,47.553044146316225,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441647,10.01627024023713,47.55375714026005,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441650,10.017145250001445,47.552491946251195,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441651,10.01672919702122,47.55385822533983,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441652,10.015604705570382,47.5514265432186,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441653,10.016395850022526,47.55410949639006,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441654,10.01725179999868,47.55260179625177,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441662,10.017185875934484,47.55338798123624,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441665,10.017115325790956,47.55402889892218,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441670,10.016863409934112,47.55429689828939,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441672,10.01712215000244,47.55422334625482,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441676,10.017425799293457,47.554261460641136,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441691,10.015871084299667,47.554401638230274,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441695,10.016339315157275,47.55452659826779,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441709,10.01357844226794,47.55496502133664,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441720,10.013403171432884,47.55519320740453,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441729,10.013545858278052,47.55521734659006,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441739,10.017397099999279,47.55463869629671,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441745,10.016791889631083,47.55466643265204,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441746,10.017291875821668,47.55483368797807,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441748,10.017478775689362,47.554447002914316,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441639,10.01770098259298,47.55138929177925,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441655,10.01910249964521,47.553196129854676,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441656,10.01784978116644,47.552387234831976,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441657,10.018148200005365,47.55261789631416,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441658,10.018452489581707,47.55233893661437,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441659,10.018550299138868,47.55249147967279,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441660,10.019429100001673,47.55304514632612,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441661,10.018393400010918,47.55270299631221,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441663,10.019372990827799,47.55329579748566,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441664,10.018036675175498,47.55354088295634,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441666,10.019155600014926,47.55241539629727,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441667,10.018937159578778,47.55255862989664,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441669,10.01886583806825,47.55274963666766,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441671,10.019012198493302,47.553454329153055,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441674,10.019340500008843,47.55270664628004,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441677,10.017621245751656,47.5539551331742,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441678,10.018577800007925,47.55379124626655,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441680,10.01847355824983,47.55398012417744,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441684,10.018772150000652,47.553988596289535,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441686,10.018474427225726,47.552973159720665,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441687,10.01865491189355,47.55308296876386,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441688,10.0191226212779,47.553901762119935,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441689,10.01848759446724,47.553303482302226,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441692,10.01936705807897,47.55389730275858,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441696,10.018421450010656,47.55340064628422,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441697,10.018239000009878,47.55358509628598,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441698,10.018714555283216,47.553605027370516,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441699,10.019156018415394,47.55301049808214,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441700,10.019451534990433,47.55429714204662,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441754,10.018926279858093,47.554372768609575,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441758,10.019496920040243,47.55455862073315,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441759,10.0190802999942,47.55486299631051,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_445470,10.019543380628205,47.552528392144964,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_445472,10.019859631085087,47.55262139252277,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_445477,10.019717600006544,47.5531130963447,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_445492,10.019778800003495,47.55427989630648,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_445596,10.019548462895969,47.55477849823574,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_445471,10.019644785209564,47.55276221554282,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_445478,10.019561650002483,47.552886146252554,33535,1164120005,0.4,False +BranchTee_mvgd_33535_lvgd_1164120005_building_441701,10.018960556189322,47.553177090433316,33535,1164120005,0.4,False +BusBar_mvgd_33535_lvgd_1164120006_LV,10.025067200000006,47.55462189624401,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_1,10.023626598440895,47.55684934660727,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_2,10.023353500000002,47.55655429624416,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_3,10.022828600000002,47.55620009624414,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_4,10.022737400000002,47.55617489624409,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_5,10.024357099999996,47.55510509624404,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_6,10.023052700000006,47.55534659624406,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_7,10.021976700000003,47.5551623962441,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_8,10.022528700000004,47.55521999624407,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_9,10.022780400000002,47.55538379624406,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_10,10.024047499999998,47.55614869624416,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_11,10.024550800000007,47.55646339624417,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_12,10.022971400000001,47.555347496244075,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_13,10.022840399999993,47.555411196244066,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_14,10.022339499999998,47.55667609624421,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_15,10.023103499999994,47.55519289624404,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_16,10.024312999999994,47.55558639624412,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_17,10.0238362,47.55536759624411,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_18,10.023165,47.555302296244086,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_19,10.024463699999998,47.55641139624418,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_20,10.022152600000004,47.556355996244186,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_21,10.024363200000002,47.555612696244054,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_22,10.023142599999995,47.55559599624411,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_23,10.023226799999994,47.55564019624407,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_24,10.024722799999994,47.554873096244,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_25,10.024028699999997,47.55546209624404,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_26,10.0238513,47.55490619624402,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_27,10.023905899999995,47.55441959624394,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_28,10.022495699999997,47.554654496244005,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_29,10.023752799999999,47.555135196244066,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_30,10.022001499999996,47.55425239624398,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_31,10.021999200000003,47.55448659624401,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_32,10.023580199999994,47.55519559624405,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_33,10.023317800000003,47.55428329624398,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_34,10.022150100000003,47.55466109624403,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_35,10.022971500000006,47.554674596244055,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_36,10.023634200000004,47.554367596244006,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_37,10.022202899999995,47.55450199624395,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_38,10.022182299999999,47.554783896244004,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_39,10.022228000000007,47.55493279624405,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_40,10.021654500000002,47.55425919624396,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_41,10.023397900000003,47.55475009624399,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_42,10.023369299999995,47.55430489624399,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_43,10.023136700000002,47.55470039624399,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_44,10.024916199999998,47.55386309624394,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_45,10.024880200000002,47.55406669624398,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_46,10.024829599999995,47.55421989624394,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_47,10.024369299999996,47.55356149624391,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_48,10.024636400000004,47.55350619624392,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_49,10.025481900000008,47.55334769624391,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_50,10.0241459,47.55365629624389,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_51,10.024648400000006,47.554461996244,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_52,10.024753600000006,47.55445769624396,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_53,10.024086099999996,47.552924596243805,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_54,10.025177600000006,47.55335889624388,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_55,10.023440351074065,47.55301059815497,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_56,10.025169700000003,47.55364839624392,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_57,10.024286200000008,47.55292709624385,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_58,10.0251294,47.553335396243924,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_59,10.024803399999994,47.55373479624391,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_60,10.0272275,47.550875396243654,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_61,10.024384500000002,47.55445179624401,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_62,10.024872500000006,47.55381669624389,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_63,10.025296699999995,47.554410596244026,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_64,10.025133099999996,47.55455859624398,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_65,10.025684199999999,47.553848596243924,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_66,10.026511600000005,47.55414159624396,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_67,10.026660700000004,47.553677596243894,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_68,10.027117600000004,47.554277796244016,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_69,10.027366000000002,47.55386219624394,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_70,10.026890599999994,47.55417119624398,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_71,10.027035100000006,47.554197896243956,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_72,10.026522200000002,47.55390289624394,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_73,10.027180999999995,47.55402789624394,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_74,10.027153199999999,47.55408259624392,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_75,10.027256000000001,47.55373479624391,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_76,10.027194299999994,47.553897196243945,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_77,10.025752000000002,47.55430769624396,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_78,10.025241599999998,47.55475769624405,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_79,10.025908300000001,47.5557594962441,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_80,10.026161199999997,47.55558529624407,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_81,10.025977299999996,47.55593779624411,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_82,10.025875200000005,47.5558546962441,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_83,10.027802099999999,47.554856496244014,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_84,10.02475150000001,47.55583709624411,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_85,10.025108899999994,47.55594929624414,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_86,10.025511502020063,47.55568989700278,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_87,10.026800099999999,47.55496679624405,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_88,10.026303600000002,47.55520129624407,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_89,10.025567199999998,47.55510809624401,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_90,10.0254981,47.55517489624406,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_91,10.025914099999996,47.55543049624405,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_92,10.025502099999999,47.555219496244014,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_93,10.025596799999997,47.55533649624408,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_94,10.026433100000006,47.555140196244054,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_95,10.026172600000006,47.55609959624413,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_96,10.026565799999995,47.556399996244146,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_97,10.026737499999998,47.55652169624419,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_98,10.026440099999993,47.55630309624413,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_99,10.026354800000005,47.55471799624396,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_100,10.027741200000001,47.554443996243975,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_101,10.026706900000004,47.55611589624413,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_102,10.026850200000005,47.556008296244116,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_103,10.027784600000004,47.554543796244026,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445519,10.02376603917016,47.55287247428561,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445522,10.024319050000289,47.55286244625214,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445540,10.023192768507862,47.552923129323695,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445541,10.023465273551556,47.55315182740483,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445542,10.02346224045428,47.552877824480134,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445545,10.024463519913029,47.553705524165224,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445546,10.024624965710464,47.55391352041802,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445547,10.024612847057535,47.55415206078548,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445552,10.024795609338486,47.55413022158866,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445555,10.027086991614754,47.55084101805383,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445559,10.023409450339539,47.55417562961072,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445563,10.025072021408802,47.554037153941046,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445564,10.023510606909573,47.55423906137805,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445565,10.02388236403641,47.553446201214335,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445567,10.024167173250929,47.553291217224945,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445568,10.025984156374516,47.553672481252086,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445570,10.025771574130582,47.55415898877346,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445571,10.02624779994772,47.554031996341735,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445572,10.024067020265546,47.55389179015372,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445575,10.026339399971096,47.554266046286884,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445576,10.023725283513068,47.554194096892395,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445577,10.025350665680419,47.553629957813214,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445578,10.02383160000469,47.5543008962905,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445581,10.02558598123857,47.553357288855764,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445582,10.027363155217852,47.55355262762087,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445583,10.024011231835145,47.55414567498012,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445584,10.024004351437162,47.55430414680295,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445585,10.02427830000426,47.554260546441185,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445586,10.026736660898004,47.55376247063167,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445589,10.027061800002356,47.55375194634875,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445590,10.02674480000161,47.553952796264774,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445591,10.026828902771829,47.55431845817103,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445593,10.027531567885163,47.55373804303141,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445594,10.027018400001554,47.553956596258715,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445595,10.026736600001607,47.55404579626478,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445597,10.026595590352985,47.554256066831975,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445598,10.02734229287227,47.554015518117794,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445599,10.027304588475495,47.55420666471345,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445600,10.027508799999467,47.554014246274,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445601,10.027012774123213,47.55403485000854,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445606,10.027595599993935,47.5542087962739,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445615,10.022244891641485,47.55438441917619,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445654,10.022344699998822,47.55457599626703,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445655,10.023775226432036,47.55455787527229,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445657,10.024048600009099,47.55458079634615,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445659,10.022864200014153,47.554475046275606,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445660,10.022661350010134,47.55457704627522,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445665,10.024539850009617,47.55433564630945,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445669,10.023203014993097,47.554401022309435,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445670,10.024390970999871,47.55459436975509,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445672,10.023061237783795,47.55460947748555,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445676,10.023365079705846,47.55464195559848,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445678,10.023554491922228,47.554512418366656,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445825,10.025311022692835,47.55458697999301,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445827,10.025926388482445,47.55461833726029,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445847,10.026423449991892,47.5545077462758,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445852,10.026902910972577,47.5545728738499,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445855,10.027427500000003,47.55439689628358,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445860,10.027469161515354,47.554584422118985,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445515,10.021551292418087,47.554159854137886,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445523,10.021622421012957,47.55408589123938,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445529,10.021885553700004,47.554114530901614,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445612,10.021840740123599,47.55441653549989,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445619,10.02198141174121,47.554679935986016,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445626,10.022056518996525,47.55495244323171,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445635,10.021741225795195,47.555093842100405,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445642,10.022100758978027,47.55541919667441,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445653,10.021972082087713,47.55659660215184,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445677,10.02156407518655,47.55436819329421,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445640,10.022266317695712,47.556151493623716,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445662,10.02248757229429,47.5548855551141,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445663,10.023962277530133,47.55494290529405,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445664,10.024177617462433,47.554822030027445,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445666,10.022848994372687,47.55477609834236,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445671,10.02480491207002,47.55497521398726,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445673,10.024264950000982,47.55534004629268,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445675,10.023885777458718,47.55560077679337,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445679,10.024519068541471,47.55518067524143,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445680,10.023072950000957,47.554818246303526,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445682,10.024999215298525,47.55521244679797,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445684,10.024561349988305,47.55538279628195,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445685,10.024819284130109,47.555598793754825,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445686,10.022803183501422,47.55601060204837,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445687,10.02361839922065,47.55492905234511,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445688,10.02240498129565,47.5552978799059,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445689,10.022720500001832,47.555213746289326,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445690,10.022875366418825,47.55529354712057,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445691,10.022516782562102,47.55606580177423,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445693,10.022621961957208,47.55637440126184,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445694,10.02258202690074,47.55547558729968,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445695,10.024819767992222,47.556305255194395,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445696,10.022980915871686,47.55510771524766,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445697,10.023036395170665,47.55526727838356,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445698,10.023269933178552,47.555260146581446,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445699,10.023206014959388,47.5557782439617,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445700,10.023142596782192,47.55625601236543,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445701,10.02350245059801,47.55612520334845,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445702,10.023796601675768,47.556706824438585,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445703,10.022389050432112,47.55648671319073,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445704,10.023405283179336,47.55513042701925,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445705,10.023620550018759,47.555074946272775,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445706,10.022686551344247,47.55651888504006,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445707,10.022335157159038,47.556812666533204,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445708,10.02419379999647,47.55645524629705,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445714,10.023027452590073,47.556687397839816,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445716,10.02351084248783,47.55648490195617,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445724,10.023441699996564,47.55690034636016,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445728,10.024008284528577,47.555961447757525,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445729,10.023827700007786,47.556185746315045,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445734,10.024506700013474,47.55571479634618,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445736,10.025002699997069,47.555762146312055,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445739,10.024444053866851,47.55612584592093,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445819,10.02508494999544,47.554815796289006,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445823,10.025586098262949,47.55481292776933,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445828,10.025330741672342,47.55511267888484,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445830,10.025044649990427,47.55537844629749,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445832,10.025410175129911,47.556029026950036,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445834,10.0256137524671,47.555904884150294,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445835,10.025325337781313,47.55562528154031,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445837,10.025503845635942,47.55538537117826,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445838,10.026220450010433,47.555960046326994,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445840,10.025913254772737,47.5560911129919,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445841,10.025787204436398,47.55632031250473,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445842,10.025754058166283,47.555114368932834,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445844,10.026044433410677,47.55512696000531,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445845,10.025826849992674,47.55565709630036,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445848,10.026135954647396,47.55635619206001,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445849,10.026269699999068,47.55628949627043,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445850,10.026093416690777,47.556514446944874,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445851,10.026536766082655,47.556112227491525,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445854,10.026871349999887,47.5548310462658,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445856,10.027238332054209,47.55596941582956,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445862,10.027468388278614,47.554768369875084,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445864,10.026425323176031,47.55646180814449,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445865,10.026410294744784,47.556646705130674,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445870,10.026983299178386,47.55643296656751,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445873,10.026568545396062,47.556765530162366,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_445875,10.028183246324483,47.55532169899763,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_34967289,10.021399800000005,47.554198996243954,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_34967290,10.0222613,47.554714396244016,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_34967293,10.025159300000004,47.5533290962439,33535,1164120006,0.4,False +BranchTee_mvgd_33535_lvgd_1164120006_building_34967294,10.02519030000001,47.55333209624385,33535,1164120006,0.4,False +BusBar_mvgd_33535_lvgd_1164120007_LV,10.018853399999992,47.556007296244125,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_1,10.019770347052184,47.55589439682727,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_2,10.018361300000002,47.555419596244064,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_3,10.020111799999995,47.55634059624415,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_4,10.019129500000002,47.55547869624405,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_5,10.018712999999995,47.55547319624408,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_6,10.021521700000003,47.5557325962441,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_7,10.021347099999998,47.55551609624407,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_8,10.019428900000005,47.55544819624408,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_9,10.019015699999997,47.555763196244065,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_10,10.019290800000002,47.55555619624409,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_11,10.018916399999998,47.55587609624412,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_12,10.020563200000002,47.55537559624404,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_13,10.020154800000007,47.556396896244195,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_14,10.020755600000001,47.55556149624407,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_15,10.0214995,47.55542509624403,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_16,10.020420000000001,47.555256696244044,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_17,10.020861399999998,47.55560269624407,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_18,10.019471600000001,47.55522439624408,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_19,10.020968300000003,47.55518889624408,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_20,10.020622100000002,47.555060296244065,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_21,10.020752200000004,47.554933796244015,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_22,10.021089199999995,47.55522489624407,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_23,10.0209894,47.55448199624392,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_24,10.0205356,47.55512049624409,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_25,10.021368500000005,47.555090696244065,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_26,10.021178200000003,47.554805496244015,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_27,10.0211376,47.555272196244076,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_28,10.021613099999998,47.554636996243985,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_29,10.021405400000008,47.55471139624406,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_30,10.020692699999994,47.554944096244,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_31,10.020612100000003,47.554732096244024,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_32,10.018104199999998,47.55655469624418,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_33,10.018770900000002,47.55824099624432,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_34,10.0188285,47.556251096244154,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_35,10.019727300000005,47.5564475962442,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_36,10.020948300000006,47.55758259624427,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_37,10.018620899999993,47.556285496244165,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_38,10.0190778,47.55739689624424,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_39,10.019281000000001,47.55858869624433,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_40,10.019709300000004,47.557717396244286,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_41,10.020454299999997,47.55764229624422,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_42,10.018605699999998,47.55718989624418,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_43,10.022112299999995,47.557258796244234,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_44,10.021308999999999,47.55699209624424,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_45,10.021117599999998,47.55645639624418,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_46,10.021116400000004,47.55626149624416,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_47,10.020393100000005,47.55702639624422,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_48,10.021747399999999,47.55733989624424,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_49,10.022875899999999,47.55698859624418,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_50,10.022356999999998,47.55713519624422,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_51,10.0226949,47.5569168962442,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_52,10.020238799999996,47.55723839624422,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_53,10.020773901274737,47.557115247558926,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_54,10.023161162314413,47.55738283039976,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_55,10.023446428981037,47.557777063733134,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_56,10.021445799999995,47.557452996244244,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_57,10.0170793,47.555980596244105,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_58,10.016312199999994,47.55605019624414,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_59,10.015939900000003,47.55595169624409,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_60,10.016049499999994,47.55502799624402,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_61,10.016094400000002,47.55494469624402,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_62,10.017532000000001,47.55525869624407,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_63,10.018138799999996,47.55536369624407,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_64,10.016864999999994,47.55510369624406,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_65,10.017179300000004,47.556195696244174,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_66,10.018702600000003,47.554729396243985,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_67,10.018413400000005,47.554979296244035,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_68,10.017802300000005,47.55600359624415,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_69,10.015302799999992,47.55480549624401,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_70,10.015939799999995,47.55542309624406,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_71,10.015524700000006,47.555492396244055,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_72,10.015923899999997,47.55565949624408,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_73,10.017305651580283,47.55561964651085,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_74,10.016683300000004,47.555580796244094,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_75,10.017970551041193,47.555683646399004,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_76,10.016606499999998,47.5560212962441,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_77,10.018424299999994,47.5560336962441,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441685,10.015268906039248,47.55539447167216,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441690,10.015690720234176,47.55465660489145,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441693,10.015470900002866,47.55470234625694,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441694,10.0159399500057,47.55473594632121,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441703,10.016297571985847,47.55480828742032,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441704,10.016653191284176,47.55492194927193,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441706,10.015441757523236,47.5550421802422,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441707,10.015732003954332,47.55535995531994,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441708,10.015534650002667,47.55521949625299,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441710,10.015849351480433,47.55504339341218,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441711,10.016083198055824,47.55539345385702,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441713,10.016242501527477,47.555151440891976,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441715,10.015549643309072,47.55536872044182,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441716,10.01656392555423,47.55526816583121,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441717,10.016109825723667,47.55565322679484,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441719,10.016983647587685,47.555282273836355,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441721,10.017224386925351,47.555079195649014,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441722,10.016885591536095,47.55546085911525,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441723,10.016460436852665,47.555448007706445,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441728,10.017044500009343,47.5556464463337,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441730,10.01724610498112,47.55535858754628,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441731,10.016102188555383,47.55588176804989,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441737,10.016239549998657,47.55634679649959,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441738,10.016664459176559,47.5563459544313,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441741,10.017534159752728,47.55550689851215,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441743,10.017503350006882,47.55564339626973,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441773,10.017401584904427,47.55588299870372,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441776,10.017281286630267,47.55633610336494,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441732,10.018048906169785,47.55501859780709,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441734,10.01788450001798,47.5552035962875,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441740,10.017622620821198,47.55539180937151,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441744,10.017843700006113,47.55556559627591,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441747,10.018174500005468,47.55557454627664,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441749,10.018238613967851,47.554832322804856,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441750,10.018701700011627,47.554881346281896,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441752,10.018935230447418,47.55511465450423,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441755,10.019141020685968,47.55502278881879,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441756,10.018919878796373,47.5546189715328,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441757,10.018885670510484,47.555309577768234,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441760,10.018397837480002,47.555295770032025,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441763,10.01867877860428,47.55507459338053,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441764,10.01918520713226,47.55529457015406,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441765,10.018671126275274,47.55535004192772,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441768,10.018872881510122,47.55565528444691,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441781,10.01916587484793,47.55830520436879,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441782,10.017703020246008,47.55585400349572,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441783,10.019467100000291,47.558301846274944,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441785,10.018015042778801,47.555940216434735,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441791,10.017942189574272,47.55626643256037,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441796,10.017614250000738,47.556422646251015,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441803,10.017839323463026,47.556485287666014,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441808,10.018225942977441,47.555954067579805,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441811,10.018443725044598,47.55589845021636,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441814,10.018507866375915,47.55620009722253,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441819,10.019445850006363,47.55573154636198,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441820,10.0191166613545,47.558543375193935,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441827,10.019184891486645,47.55592017802907,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441832,10.019335457208951,47.55633261156691,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441837,10.0183438904445,47.556640781233675,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441840,10.018635813731647,47.556429167249036,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445602,10.019609138635179,47.554999925126445,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445610,10.020164257026671,47.55611391980729,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445611,10.020515716261157,47.555851064475256,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445616,10.02024141640205,47.555906846466755,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445620,10.020722760242975,47.55575799388701,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445621,10.020263121662557,47.556363507344216,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445623,10.020747299969818,47.55604539629556,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445624,10.01998141383558,47.55646786366854,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445625,10.02051131648563,47.556836745138085,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445630,10.020389491100053,47.55689870607069,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445632,10.020634302721058,47.556781754732064,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445637,10.020612563201164,47.557056755002066,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445638,10.020844749996723,47.556965596276946,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445641,10.020916573293347,47.5565953155094,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445645,10.019846349993575,47.55620744628194,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445648,10.01976712460956,47.55554103984737,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445652,10.020372542790572,47.55510416482062,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445668,10.020726003761364,47.55534796531496,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445713,10.020482712135143,47.557926512479426,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445750,10.020394328478506,47.5574699026955,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445754,10.019864549986695,47.55803514628195,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445603,10.021329431065032,47.55486655149068,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445604,10.021387968926176,47.55496079105936,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445605,10.021489015566427,47.554850869093315,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445613,10.021591788113463,47.554523974020015,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445617,10.021733846332248,47.554728726994455,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445627,10.021001500000066,47.55504909632756,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445628,10.021169913955896,47.55501211227773,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445629,10.021497855134967,47.555265312906755,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445631,10.020467126543963,47.55466755052218,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445633,10.020989334945183,47.55538553335887,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445634,10.020791472990854,47.55472828384745,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445636,10.021722567205215,47.55559313848922,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445639,10.019772800681325,47.5551948422718,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445643,10.019664355190672,47.55602691440912,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445644,10.019976326447907,47.555898930912825,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445646,10.02140914998835,47.55644529629924,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445647,10.021413538163905,47.55670476417151,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445649,10.021075049996519,47.556850146273895,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445650,10.021479949991404,47.55693744628283,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445651,10.019776868030338,47.556331443727196,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445656,10.020733532848622,47.55515507945745,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445661,10.02046321771703,47.55545043707341,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445674,10.021180599991164,47.55460614626983,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445681,10.0213833999946,47.55457579631122,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445683,10.020991685430545,47.554697723975856,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445692,10.021231262403823,47.55469021525767,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445726,10.021112149979604,47.55737824629061,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445727,10.021294988061353,47.557653922031506,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445730,10.021852449985793,47.55721454628002,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445732,10.021599949002887,47.557300291281955,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445735,10.020147509926733,47.557121965152554,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445737,10.022176869306145,47.55709520826067,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445738,10.021997416469615,47.557565770394866,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445740,10.020010311566514,47.55725867388721,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445741,10.019910159417872,47.55755737788348,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445743,10.021217646041961,47.557929840919314,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445744,10.020754504970643,47.5574100772317,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445746,10.021678449972352,47.55777359629814,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445711,10.02264799999593,47.55678234627964,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445722,10.023141513896123,47.55704657983562,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445770,10.023748858154226,47.55789407731604,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445773,10.022631737465098,47.55732307794864,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445777,10.02232931949321,47.557501618945395,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445782,10.022942813771,47.557732059430194,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445790,10.02331673182531,47.55727350534111,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445796,10.02344925927195,47.557465924461795,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_445805,10.02279526691945,47.557920696058396,33535,1164120007,0.4,False +BranchTee_mvgd_33535_lvgd_1164120007_building_441761,10.019219987084679,47.55667424420849,33535,1164120007,0.4,False +BusBar_mvgd_33535_lvgd_1164120008_LV,10.016442899999998,47.560134796244476,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_1,10.017263500000006,47.56028519624448,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_2,10.016267800447,47.56213444630848,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_3,10.016318099999996,47.56167479624465,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_4,10.017141900000002,47.56097509624456,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_5,10.017211899999992,47.56017619624451,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_6,10.016011300000004,47.561662596244595,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_7,10.016217500000005,47.5625940962447,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_8,10.0171157,47.56122669624455,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_9,10.016991900000004,47.561526996244595,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_10,10.016720399999999,47.56107179624455,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_11,10.016417199999994,47.56152159624456,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_12,10.016851300000003,47.560971296244574,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_13,10.017129799999996,47.56054839624451,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_14,10.015611,47.5613505962446,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_15,10.016148201872008,47.560463146668724,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_16,10.0154924,47.561807196244665,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_17,10.014992199999995,47.56257109624472,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_18,10.014629499999998,47.5625160962447,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_19,10.014448500000002,47.562468196244666,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_20,10.014451100000002,47.56237309624467,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_21,10.014562500000004,47.56223289624465,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_22,10.014687200000001,47.562230196244705,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_23,10.015126200000005,47.56238779624467,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_24,10.0152591,47.562205796244676,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_25,10.015560100000005,47.56154679624465,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_26,10.015853499999999,47.56079149624454,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_27,10.016251899999999,47.56084869624452,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_28,10.016549399999993,47.56092369624456,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_29,10.0160585,47.560817596244554,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_30,10.017814999999997,47.558719396244385,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_31,10.017000502166983,47.55958839677601,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_32,10.017332100000006,47.55925059624438,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_33,10.017842400000003,47.55931669624443,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_34,10.0174205,47.55915869624437,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_35,10.016668900000003,47.559926196244504,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_36,10.016879099999997,47.55865799624437,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_37,10.017909799999996,47.55863449624434,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_38,10.0183418,47.55860729624435,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_39,10.016328900000003,47.559205396244444,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_40,10.016830499780617,47.55922799739646,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_41,10.0164011,47.55882739624436,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_42,10.016160600000003,47.560007896244514,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_43,10.01624475065301,47.55960664631668,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441767,10.016124416204926,47.55891117292165,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441769,10.01662320000585,47.55884429631003,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441770,10.016764770431351,47.55938867251558,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441771,10.016362340427458,47.55970536923261,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441772,10.016642699999508,47.55909919628936,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441774,10.01664341202476,47.55972761259652,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441775,10.016026801439702,47.559745261840014,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441777,10.016098961319907,47.55928860261183,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441778,10.016455362206816,47.55936416451863,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441779,10.016564999723586,47.5593712855476,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441786,10.016857921707821,47.55939479735697,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441787,10.016951450563235,47.559400835299435,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441788,10.017434614058029,47.559413667080776,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441789,10.017124715277433,47.5590821404524,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441790,10.017324271263819,47.55881968996005,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441793,10.017259321939042,47.55959528199448,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441794,10.017172128287175,47.559692760446744,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441800,10.01752140000292,47.5593205962776,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441876,10.016455800003586,47.56107989628411,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441877,10.01657729410818,47.56110636604317,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441878,10.015701452017199,47.5604684725316,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441879,10.016004151110504,47.56017574908498,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441881,10.016399173469182,47.559956600963964,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441882,10.015333850006717,47.56131909630437,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441886,10.016733650001703,47.560105696296915,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441888,10.016574905686719,47.56032697906699,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441889,10.015517150002365,47.56053679625313,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441890,10.015639500008998,47.56068469628349,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441892,10.015257744871985,47.56163562143065,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441897,10.016009254193852,47.56103276215662,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441899,10.016334669493252,47.56053685597724,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441902,10.016428930514202,47.56055558659596,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441905,10.016272290141334,47.56073115979552,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441906,10.016432436962196,47.56126826456269,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441907,10.01652316949325,47.56057435597728,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441911,10.015879478744306,47.561253282176565,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441912,10.016670304349542,47.56081526655022,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441914,10.016381000009341,47.56134414626897,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441915,10.016334294112607,47.56105341604421,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441919,10.015861600016766,47.56147199628518,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441921,10.016601698707998,47.561607086495826,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441924,10.01580592997625,47.561689293386884,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441925,10.016520209410338,47.56183677483584,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441928,10.015689450013415,47.56190144629567,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441940,10.015427326642229,47.56235472506659,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441943,10.016701068344199,47.561952222248664,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441946,10.016587950005706,47.562111496276174,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441950,10.016549094036451,47.562329990605136,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441952,10.016878912814052,47.56124805102314,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441956,10.016983567409024,47.5612861113111,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441958,10.016553000008926,47.562547596278044,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441959,10.016935929106833,47.56161469043382,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441962,10.01692176824097,47.559936698582156,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441964,10.016848000000168,47.56195974625214,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441965,10.016795027725577,47.56219389221588,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441966,10.017364279912774,47.56000223421101,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441970,10.017027031567254,47.56041280463199,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441971,10.016454274749139,47.56273810018179,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441973,10.017465650004352,47.56037909637001,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441987,10.016830100015554,47.56061669630048,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441992,10.017210243389146,47.5607735051982,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441893,10.014451150001396,47.56216104628614,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441894,10.014708350002405,47.56212429626897,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441896,10.014588312123964,47.562378625729714,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441901,10.014938545955527,47.56221216435613,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441908,10.014788955727521,47.56242327620221,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441909,10.014881950001964,47.56244149627045,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441955,10.014312758205776,47.56259062475708,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441961,10.014658750009977,47.56268304626675,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441792,10.01805540000238,47.55865479625769,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441795,10.018019317334394,47.558794047241484,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441797,10.017878859638884,47.55898821773725,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441799,10.01767040001595,47.559138846293465,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441805,10.0179843500015,47.559167646262615,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441806,10.018145250008843,47.5592241963226,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441810,10.017943995479328,47.55958851497928,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441817,10.01846364278442,47.55869371568935,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441818,10.018323899996318,47.55888804632556,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441980,10.017770505475104,47.559911926995554,33535,1164120008,0.4,False +BranchTee_mvgd_33535_lvgd_1164120008_building_441984,10.017622337462054,47.56010010818296,33535,1164120008,0.4,False +BusBar_mvgd_33535_lvgd_1164120009_LV,10.021708699999998,47.5685909962452,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_1,10.021606200000008,47.5704576962454,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_2,10.022129999999997,47.56905009624528,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_3,10.019881199999999,47.57034369624539,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_4,10.021555500000002,47.56885489624524,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_5,10.021444999999995,47.569708696245335,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_6,10.020627599999997,47.570637096245406,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_7,10.021365099999999,47.56806949624518,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_8,10.021298199999997,47.56782749624517,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_9,10.020510999999994,47.568183696245185,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_10,10.0210743,47.56786609624513,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_11,10.0210917,47.568359496245186,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_12,10.020946099999998,47.56675289624504,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_13,10.021420699999995,47.568354696245194,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_14,10.0209442,47.56832449624518,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_15,10.020142499999995,47.56476609624489,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_16,10.023984700000003,47.567343996245114,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_17,10.021951700000004,47.5681202962452,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_18,10.022017600000003,47.5683248962452,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_19,10.022049399999997,47.56849329624525,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_20,10.021869099999995,47.56842689624522,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446050,10.020944528328036,47.56778620249208,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446056,10.019922349997616,47.56465969627255,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446063,10.020415835646231,47.567970015439144,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446068,10.020828350045033,47.56846549630336,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446069,10.020871250096205,47.56878994636112,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446071,10.021148850003577,47.566839746307046,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446072,10.021127311370163,47.56811110366489,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446074,10.021665846899634,47.56810623610618,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446075,10.022193906768402,47.56869143548108,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446076,10.021919817531863,47.56904091030531,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446078,10.020037282978434,47.570452282225936,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446081,10.020484746587595,47.57066298994864,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446084,10.021841786329297,47.569717295362764,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446090,10.021193802526138,47.57030460965121,33535,1164120009,0.4,False +BranchTee_mvgd_33535_lvgd_1164120009_building_446057,10.024390382668855,47.567585448256516,33535,1164120009,0.4,False +BusBar_mvgd_33535_lvgd_1164120010_LV,10.019570500000002,47.562715596244686,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_1,10.018785000000005,47.56278099624472,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_2,10.019442999999997,47.562667496244735,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_3,10.018815599999996,47.56268119624471,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_4,10.018812600000004,47.56361579624483,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_5,10.0186982,47.56345569624476,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_6,10.018907399999998,47.56263989624471,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_7,10.018726899999999,47.56323289624478,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_8,10.018506700000001,47.563736496244786,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_9,10.0189023,47.56374139624481,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_10,10.019065500000002,47.56263989624472,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_11,10.019098399999999,47.56194549624463,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_12,10.0190984,47.56204659624465,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_13,10.019606299999992,47.56197209624462,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_14,10.019165899999999,47.56200269624463,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_15,10.020455700000003,47.56250359624466,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_16,10.019019799999995,47.56201209624463,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_17,10.019616499999998,47.56268579624467,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_18,10.019031700000001,47.56202699624467,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_19,10.022442299999994,47.56108589624457,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_20,10.019845999999998,47.562054696244644,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_21,10.019912799999998,47.56191369624464,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_22,10.020223500000004,47.56246089624471,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_23,10.020395900000004,47.56143569624454,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_24,10.019050200000002,47.562038596244626,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_25,10.019830699999996,47.562546996244684,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_26,10.02017949999999,47.56188799624464,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_27,10.019917399999999,47.56227159624467,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_28,10.019020599999996,47.56197859624466,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_29,10.0235507,47.56162399624465,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_30,10.019805500000002,47.56285079624473,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_31,10.020018299999995,47.5624559962447,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_32,10.023380299999998,47.561433296244594,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_33,10.019946700000007,47.56246689624473,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_34,10.0199197,47.56128269624462,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_35,10.020444300000005,47.56324049624475,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_36,10.019514400000002,47.562990996244686,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_37,10.019577100000003,47.56489219624491,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_38,10.018655200000005,47.56460289624489,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_39,10.018104099999999,47.56547319624496,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_40,10.019442299999993,47.5649232962449,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_41,10.019320300000002,47.56503509624496,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_42,10.018199400000002,47.565036396244906,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_43,10.019886800000004,47.563768996244804,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_44,10.020194999999996,47.564408096244875,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_45,10.018050399999996,47.56513199624492,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_46,10.019825600000003,47.56386189624484,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_47,10.019881700000003,47.56358309624477,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_48,10.0186462,47.56498479624486,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_49,10.018472499999998,47.565300196244976,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_50,10.019502199999998,47.564479896244904,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_51,10.018723700000008,47.56429219624485,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_52,10.0195399,47.56398239624477,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_53,10.0195246,47.563111496244744,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_54,10.019563099999996,47.56462569624487,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_55,10.019209099999994,47.56410789624483,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_56,10.019641799999997,47.563278696244744,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441926,10.019467644449682,47.56182579901457,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441931,10.018834852137523,47.561945007635266,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441932,10.018770147177264,47.56204643086369,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441933,10.018666429303744,47.5622412641322,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441934,10.018776483947725,47.56225954417229,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441939,10.018856880546029,47.56254137912732,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441945,10.019105529329764,47.56221605650649,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441948,10.01909536998493,47.56230137275969,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441953,10.019466337590353,47.56225577969231,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441954,10.01920285883408,47.56254733421768,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441967,10.019124258272852,47.56180569033484,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441995,10.01858980172769,47.56267570609085,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_441996,10.018595360961536,47.56291113495467,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442000,10.018549169191195,47.563172159489504,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442001,10.019004591296497,47.56282998558708,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442003,10.019448400000043,47.56259459625623,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442005,10.019456697349245,47.56344709410309,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442008,10.019328223971979,47.562815963690724,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442009,10.018909530348298,47.563132783861626,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442010,10.019018496148966,47.56369903324038,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442011,10.019363598149662,47.56303045482338,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442012,10.0191946262031,47.563217890846914,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442017,10.019150287481633,47.563838579417514,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442018,10.018526720079295,47.56356385413874,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442019,10.0184788499897,47.56487059626727,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442020,10.018520044371256,47.564749323167334,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442021,10.018492567367003,47.56386549356873,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442022,10.019298249993597,47.563736896301535,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442023,10.01879217455843,47.5638367748532,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442025,10.01782484231713,47.56511488608593,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442026,10.018987519680772,47.5646627314022,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442027,10.018931576938218,47.56491995208421,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442030,10.018437205011072,47.56418982225757,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442032,10.018717347733268,47.56416230415997,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442036,10.019324743821509,47.564798879695424,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442038,10.018444228280341,47.56459653615569,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442039,10.019498921513698,47.56510838873945,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442050,10.018823623739745,47.56453209986355,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442054,10.01896816372655,47.56405636887338,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442057,10.019379754605293,47.56393774004528,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442065,10.019435721426934,47.564217276390025,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442068,10.018881324679292,47.56443058913273,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442073,10.01916681322055,47.56433947542459,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442078,10.019283148875285,47.56455306350267,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442084,10.01789725542614,47.5654395238723,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442091,10.018366165560277,47.56544246215887,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_442092,10.018491399996227,47.565404296284036,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445985,10.019739686577958,47.561839765025184,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445987,10.020080176803699,47.561804380825016,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445988,10.020318612835924,47.56185252802967,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445993,10.019735295598936,47.56219775754492,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445994,10.020103515210138,47.56205410504267,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445996,10.019637899988506,47.56253739630612,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445999,10.020078604929848,47.562646584408725,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446000,10.020018524782284,47.562853398092535,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446001,10.020175023474636,47.562324297613856,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446006,10.019660749468423,47.562948248656966,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446009,10.019775825206183,47.56295194151829,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446010,10.019795894160557,47.56324394580854,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446021,10.019713544317954,47.56357434864717,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446026,10.019692200003751,47.56378434627786,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446027,10.01957365,47.56389394625559,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446032,10.020064309813005,47.563634320181784,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446033,10.020118959983893,47.5638526380548,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446035,10.020282208076518,47.5633927098738,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446040,10.019683711081795,47.564152977513615,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446042,10.019978414399496,47.56404330982855,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446044,10.019689899986279,47.56443904630662,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446053,10.020310692725,47.56458679871651,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446054,10.019796706487272,47.56470565591331,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446062,10.019664999999435,47.56503509625229,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_446064,10.019822900004526,47.56497339628609,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445981,10.019912696501168,47.56119277590862,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445978,10.022490876323573,47.56093862168524,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445990,10.02324428305827,47.561507089863895,33535,1164120010,0.4,False +BranchTee_mvgd_33535_lvgd_1164120010_building_445992,10.023574104384307,47.56176499154864,33535,1164120010,0.4,False +BusBar_mvgd_33535_lvgd_1164120011_LV,10.021014800000001,47.55935469624443,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_1,10.020290999999999,47.560246296244486,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_2,10.020507199999996,47.56072409624453,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_3,10.020901499999994,47.56121039624458,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_4,10.020202000000003,47.55977139624448,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_5,10.020401199999997,47.56060959624453,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_6,10.021058299999996,47.561224696244565,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_7,10.018890100000004,47.55935129624445,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_8,10.019418700000001,47.561098996244624,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_9,10.018455000000003,47.5599518962445,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_10,10.0195974,47.55999569624451,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_11,10.019531,47.55962729624444,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_12,10.018930900000004,47.5598963962445,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_13,10.0200619,47.55949319624441,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_14,10.019975799999997,47.559055496244355,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_15,10.0200221,47.55878309624441,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_16,10.019080299999997,47.560771396244554,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_17,10.018963999999997,47.56071229624459,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_18,10.020157699999997,47.55948139624441,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_19,10.0200371,47.558699796244376,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_20,10.018002899999995,47.560929796244544,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_21,10.018452599999996,47.560888096244554,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_22,10.018812999999994,47.56087519624456,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_23,10.018952400000002,47.56018829624447,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_24,10.018939299999996,47.560034096244465,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_25,10.018897699999993,47.55968689624447,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_26,10.019056799999994,47.55966339624444,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_27,10.023580199999996,47.55914129624439,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_28,10.023498500000002,47.559164096244366,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_29,10.022601699999996,47.55929779624443,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_30,10.021856399999995,47.559316296244404,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_31,10.0231414,47.559251796244425,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_32,10.0227698,47.56011409624445,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_33,10.022440500000004,47.55930259624443,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_34,10.022683599999997,47.55959999624443,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_35,10.022256699999994,47.558818896244325,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_36,10.022813100000008,47.560083596244525,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_37,10.022791300000002,47.55995919624447,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_38,10.0231357,47.558976996244404,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_39,10.021085199999995,47.55987549624444,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_40,10.023211999999997,47.56095289624458,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_41,10.022821900000002,47.56103589624456,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_42,10.022062050178441,47.559614848013226,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_43,10.021440499999999,47.559629696244485,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_44,10.023194999999998,47.560775496244545,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_45,10.021550300000005,47.56040509624449,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_46,10.021904699999995,47.560693596244555,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_47,10.021071099999999,47.55965759624446,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_48,10.021592500000006,47.56012719624444,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_49,10.023080200000003,47.56065029624457,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_50,10.022351299999999,47.56011869624448,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_51,10.0210937,47.56039419624449,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_52,10.021469199999999,47.56018629624449,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_53,10.021239599999996,47.55962749624448,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_54,10.022027099999997,47.55987989624447,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_55,10.022016399999995,47.56099299624452,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_56,10.021405999999999,47.56115029624452,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_57,10.021322899999998,47.55902809624438,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_58,10.020187599999996,47.55858659624431,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_59,10.022218500000003,47.558743196244336,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_60,10.021638999999999,47.55879649624435,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_61,10.022145699999996,47.558458496244334,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_62,10.020531700000005,47.55850169624434,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_63,10.021191499999995,47.55889099624438,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_64,10.021186600000004,47.5584940962443,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_65,10.021014800000001,47.55849279624441,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_66,10.021014799999996,47.55903109624437,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441802,10.019154295552344,47.55951537465795,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441825,10.018700407973242,47.55942846519647,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441829,10.018716786915554,47.559724331610596,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441830,10.019021880090664,47.559261273614894,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441920,10.018286607692191,47.56011849241002,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441922,10.01872291327215,47.560074559649735,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441923,10.01915443712549,47.55982856485545,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441927,10.019174564714321,47.56006441963017,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441929,10.019243076219206,47.560280910024304,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441930,10.018219335326545,47.56066352821885,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441935,10.018438950000208,47.56073224629599,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441936,10.018664949999437,47.560776696281,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441938,10.018377066082362,47.561037979310115,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441942,10.018679573955561,47.56105701169651,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441944,10.019313465389889,47.56062303696584,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441951,10.019219000178044,47.56113141549211,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_441997,10.018087071966152,47.56107790355766,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_442002,10.018418764266194,47.55983692002308,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445710,10.020050478606366,47.55838996585205,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445717,10.020255249998753,47.55841134625727,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445718,10.020449442534723,47.55834052138197,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445720,10.020818328053805,47.55830095711712,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445742,10.020278872225179,47.558727220929654,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445747,10.020710219336923,47.55864942109209,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445748,10.020276774405716,47.559021141922805,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445749,10.020710175787341,47.558960822594976,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445751,10.019749648151452,47.559216990643684,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445752,10.019988726688162,47.55980800485247,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445755,10.019742105647618,47.558609484987755,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445756,10.02029905981057,47.55929989420158,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445757,10.01969021238251,47.558840309819324,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445761,10.020443699985329,47.55974849628339,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445763,10.020870871291622,47.55970491827085,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445969,10.021072774662846,47.56102926940478,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445980,10.020005476637603,47.560033248437755,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445983,10.02006831784892,47.56035385627088,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445991,10.020598724518583,47.56015756020467,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446007,10.020595566801656,47.561171545864475,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445795,10.023561809595206,47.558890453479115,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445797,10.023607441494878,47.558942542290474,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445802,10.023323397910582,47.559045180335396,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445803,10.02339664382072,47.55906448977143,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445806,10.022470102755046,47.55870429999626,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445813,10.023257150926078,47.55901561263834,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445815,10.023676799998743,47.558971546272105,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445745,10.021556598354222,47.5580394317071,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445758,10.02171420021668,47.55953407237756,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445759,10.019754579107827,47.559044695049884,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445760,10.020709649998897,47.5592492462777,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445762,10.021961649046583,47.55952937150432,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445764,10.02119081171534,47.55895582690122,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445765,10.021752362650833,47.55870932816875,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445769,10.022226508812174,47.559522044263005,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445771,10.02195820910474,47.5585920851495,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445772,10.021867089305871,47.5589381418644,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445774,10.022069180208549,47.5589049414723,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445780,10.021229288412332,47.559175122058534,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445781,10.020973333366433,47.55948017954107,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445783,10.021448791214144,47.55953794804345,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445784,10.021296578596955,47.559741053915296,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445789,10.021846058647975,47.55917738820213,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445807,10.022484615128239,47.559508444753746,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445808,10.022802966503088,47.55963272440868,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445971,10.021471030866829,47.56099632739882,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445974,10.022672549998028,47.5602964462519,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445975,10.021990032330606,47.56054039443621,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445976,10.02287383622831,47.560475318524716,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445979,10.02176100986877,47.56092762509484,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445982,10.022956275699649,47.560890471576634,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445984,10.023485024589073,47.560572043353915,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445989,10.023495620218796,47.56091560275421,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445995,10.019592310498497,47.5611759189537,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_445998,10.020708982796894,47.56055012937247,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446002,10.020357261957153,47.56088068907816,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446003,10.022445520106485,47.56001912757805,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446004,10.022663928443526,47.56000589727473,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446011,10.02293929999601,47.560119946339285,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446012,10.022663249998034,47.56018694625184,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446013,10.022667899998027,47.56024169625183,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446014,10.021552042896165,47.56002394764968,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446017,10.021347822303216,47.560183687806706,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446020,10.021768702094024,47.56002984577888,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446023,10.021981021959492,47.5600275762034,33535,1164120011,0.4,False +BranchTee_mvgd_33535_lvgd_1164120011_building_446029,10.022212324189798,47.56002101675581,33535,1164120011,0.4,False +BusBar_mvgd_33535_lvgd_1164120012_LV,10.019305299999996,47.54103709624282,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_1,10.019244999999993,47.541325196242774,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_2,10.019151799999996,47.54189559624284,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_3,10.018638099999993,47.54113579624278,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_4,10.019359,47.54319359624298,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_5,10.018141199999992,47.54282239624296,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_6,10.018753600000005,47.543071396242965,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_7,10.018703600000004,47.54324059624297,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_8,10.019179799999996,47.54067939624272,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_9,10.017218400000004,47.539944196242686,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_10,10.0160984,47.53916829624261,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_11,10.0173661,47.53878199624264,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_12,10.017266100000002,47.53935539624265,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_13,10.017150300000004,47.540067996242676,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_14,10.016728299999999,47.53957889624267,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_15,10.017249500000002,47.539676896242696,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_16,10.020002999999999,47.54029809624275,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_17,10.016351199999999,47.540909896242745,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_18,10.016011100000002,47.54128209624278,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431757,10.017013542250002,47.53895832868212,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431759,10.017047416999633,47.53940562302424,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431760,10.016158081907808,47.53934789350321,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431761,10.016873383799911,47.539962592232285,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431767,10.016366783226434,47.54106854215541,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431770,10.016450846092056,47.539678008645794,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431771,10.016484600036977,47.541284896340365,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431773,10.018788221274626,47.54104350183877,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431775,10.019425959060763,47.542188718967125,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431786,10.019430938298306,47.540956485097,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431793,10.017821772448196,47.54323346318367,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431794,10.018953635136464,47.54326086851177,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_431797,10.019528126047184,47.54329725830852,33535,1164120012,0.4,False +BranchTee_mvgd_33535_lvgd_1164120012_building_444869,10.020065674942101,47.54046964384001,33535,1164120012,0.4,False +BusBar_mvgd_33535_lvgd_1164120013_LV,10.011309700000002,47.550727096243655,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_1,10.008992999999995,47.548526896243445,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_2,10.009395299999994,47.54867729624346,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_3,10.0113647,47.550618496243615,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_4,10.010989900000002,47.55054649624362,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_5,10.011421099999998,47.55049689624366,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_6,10.010967000000004,47.550084196243624,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_7,10.012353699999997,47.550285096243634,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_8,10.011259800000001,47.550951696243665,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_9,10.011226500000006,47.55110319624368,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_10,10.012494899999997,47.551470696243726,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_11,10.0120902,47.55138469624373,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_12,10.012612700000002,47.5515250962437,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441592,10.010777779500227,47.55063422275172,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441594,10.011108603957808,47.55069282066604,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441595,10.010997256122629,47.55097858169381,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441596,10.011260168300877,47.5512854683959,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441598,10.011624513595873,47.55059125115963,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441603,10.012433712998028,47.55049428849969,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441608,10.012510018967882,47.5515938501722,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441618,10.012241339444069,47.55133235837812,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441620,10.012315157693441,47.55153951024117,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_431791,10.008706805201266,47.54870955994722,33535,1164120013,0.4,False +BranchTee_mvgd_33535_lvgd_1164120013_building_441589,10.00925530006519,47.548883046365745,33535,1164120013,0.4,False +BusBar_mvgd_33535_lvgd_1164120014_LV,10.016221000000002,47.56496159624492,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_1,10.014967099999996,47.56499219624491,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_2,10.0132946,47.5646782962449,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_3,10.015071299999997,47.56499859624491,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_4,10.013522999999998,47.56613259624505,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_5,10.0116363,47.56638549624505,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_6,10.015103699999994,47.56561899624497,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_7,10.012726000000006,47.5652352962449,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_8,10.015064850696046,47.56462409632206,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_9,10.014106400000003,47.56564269624497,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_10,10.015691300000006,47.565036996244906,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_11,10.014091599999992,47.564937996244886,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_12,10.015354000000002,47.56372609624481,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_13,10.0150707,47.56511949624494,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_14,10.013632102720774,47.56426164680915,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_15,10.013010301532027,47.56495679663406,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_16,10.016063700000002,47.5641248962448,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_17,10.016231999999995,47.564830496244916,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_18,10.016100399999997,47.56360659624478,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_19,10.016124899999994,47.56442089624489,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_20,10.01615895057311,47.56310034632374,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_21,10.0165336,47.56539009624491,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_22,10.016331199999994,47.56504319624489,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441972,10.01641208266153,47.56315137083266,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441974,10.016441478351854,47.5629290209445,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441975,10.016638964220652,47.56318807751545,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441873,10.013358550093946,47.56513194637359,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441874,10.013297062881675,47.56427363453452,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441976,10.015621978995595,47.56377010458204,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441977,10.01641203097868,47.56449833190423,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441978,10.016696163334329,47.5644435680861,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441979,10.015571810993347,47.56468808966013,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441981,10.015805059559359,47.56520202576026,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441982,10.01641987416788,47.56335540083622,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441983,10.016358275246061,47.563587841906994,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441985,10.01666950555991,47.563413421637634,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441986,10.016508175925216,47.56474004244258,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441988,10.016764299999878,47.56487964632448,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441989,10.01653053178998,47.564987631565515,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441990,10.016349950005065,47.56380944628616,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441991,10.016636224680754,47.56363688805039,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441993,10.016648973929966,47.563825210149524,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441999,10.014672002555209,47.564593902846624,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442004,10.014687148779336,47.56523685304652,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442006,10.01567790000672,47.564271296271635,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442007,10.016328206794238,47.56403763438171,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442013,10.016200741426195,47.56419912077635,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442014,10.016403665222148,47.564262507678784,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442015,10.016526160386922,47.56426797736834,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442043,10.011960347014963,47.566563620861324,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442049,10.012958763298968,47.56541230665812,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442052,10.013215361811481,47.565648943985686,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442062,10.014584469384088,47.565687248388485,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442063,10.01494819999132,47.56563624633723,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442067,10.015338931327378,47.56563727930237,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442072,10.015930339672607,47.565443074618074,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442075,10.016236370028551,47.56534823309313,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442080,10.016701549998563,47.56531414646183,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_442081,10.01668400723621,47.56554185406673,33535,1164120014,0.4,False +BranchTee_mvgd_33535_lvgd_1164120014_building_441871,10.014030156330795,47.56442787161928,33535,1164120014,0.4,False +BusBar_mvgd_33535_lvgd_1164130000_LV,10.0088695,47.54693799624336,33535,1164130000,0.4,False +BranchTee_mvgd_33535_lvgd_1164130000_1,10.008776600000001,47.546621796243286,33535,1164130000,0.4,False +BranchTee_mvgd_33535_lvgd_1164130000_building_431778,10.00857480004571,47.5463864463555,33535,1164130000,0.4,False +BranchTee_mvgd_33535_lvgd_1164130000_building_431783,10.009015799997325,47.546764796325945,33535,1164130000,0.4,False +BusBar_mvgd_33535_lvgd_1164150000_LV,10.009866,47.54102169624281,33535,1164150000,0.4,False +BranchTee_mvgd_33535_lvgd_1164150000_1,10.009561100000003,47.54148909624284,33535,1164150000,0.4,False +BranchTee_mvgd_33535_lvgd_1164150000_2,10.010761599999995,47.539533896242666,33535,1164150000,0.4,False +BranchTee_mvgd_33535_lvgd_1164150000_building_431735,10.01071480002616,47.53967289632189,33535,1164150000,0.4,False +BranchTee_mvgd_33535_lvgd_1164150000_building_431736,10.00985636748941,47.54082564815172,33535,1164150000,0.4,False +BranchTee_mvgd_33535_lvgd_1164150000_building_431742,10.009644779679162,47.54097700894561,33535,1164150000,0.4,False +BranchTee_mvgd_33535_lvgd_1164150000_building_431748,10.009505000008353,47.5413491962806,33535,1164150000,0.4,False +BusBar_mvgd_33535_lvgd_1164160000_LV,10.0977125,47.55219599624379,33535,1164160000,0.4,False +BranchTee_mvgd_33535_lvgd_1164160000_building_447059,10.09765259885293,47.5523162241268,33535,1164160000,0.4,False +Bus_mvgd_33535_lvgd_1164160000_gen_391,10.098590999999995,47.558323996203825,33535,1164160000,0.4,False +BusBar_mvgd_33535_lvgd_1164170000_LV,10.013885199999995,47.53775869624249,33535,1164170000,0.4,False +BranchTee_mvgd_33535_lvgd_1164170000_1,10.014049,47.537434896242445,33535,1164170000,0.4,False +BranchTee_mvgd_33535_lvgd_1164170000_2,10.017163399999994,47.53640379624241,33535,1164170000,0.4,False +BranchTee_mvgd_33535_lvgd_1164170000_building_431693,10.016893700030344,47.53640254630676,33535,1164170000,0.4,False +BranchTee_mvgd_33535_lvgd_1164170000_building_431737,10.01395314439945,47.537935049765764,33535,1164170000,0.4,False +BusBar_mvgd_33535_lvgd_1164190000_LV,10.017450000000006,47.57254519624557,33535,1164190000,0.4,False +BranchTee_mvgd_33535_lvgd_1164190000_building_442332,10.01757713879938,47.57227366721396,33535,1164190000,0.4,False +BusBar_mvgd_33535_lvgd_1164200000_LV,10.0346109,47.54144229624284,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_1,10.034475199999996,47.54071429624279,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_2,10.034605100000006,47.541339596242864,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_3,10.032083200000004,47.54062869624272,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_4,10.034520800000001,47.540910696242804,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_5,10.036489600000001,47.54210809624289,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_6,10.0346567,47.54190939624289,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_7,10.036966300000001,47.542240996242896,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444959,10.03183886540187,47.54062482932374,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444963,10.034190549999899,47.54080674625411,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444966,10.036746000008662,47.54229049628515,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444968,10.034353927673617,47.541093935701056,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444969,10.034371399998582,47.54129734630091,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444974,10.034755102179332,47.541634748358206,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444975,10.034925450024284,47.54173994629752,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444980,10.034755250008695,47.54209444627497,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444989,10.036262016799311,47.54225461799286,33535,1164200000,0.4,False +BranchTee_mvgd_33535_lvgd_1164200000_building_444995,10.036582381471838,47.54223799278265,33535,1164200000,0.4,False +BusBar_mvgd_33535_lvgd_1164210000_LV,10.088636700000006,47.55721959624428,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_1,10.096959000000005,47.55870689624438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_2,10.096688799999999,47.55886759624438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_3,10.096498100000007,47.55897729624436,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_4,10.101843600000006,47.55918149624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_5,10.0997905,47.559326296244414,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_6,10.096203800000001,47.55909879624443,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_7,10.097659599999997,47.55790949624431,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_8,10.0980428,47.55918099624446,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_9,10.097864399999995,47.55916149624441,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_10,10.099646299999996,47.55874359624436,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_11,10.096684999999997,47.55929849624439,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_12,10.096591399999992,47.558924296244385,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_13,10.097323999999999,47.55830729624427,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_14,10.097474900000002,47.55839099624433,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_15,10.097087799999995,47.558376796244296,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_16,10.101501499999998,47.55850629624433,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_17,10.101248999999996,47.558506496244355,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_18,10.100366999999997,47.558633196244365,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_19,10.101940499999994,47.558562996244355,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_20,10.099936299999996,47.55872539624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_21,10.100968199999995,47.55854479624434,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_22,10.102131600000005,47.55860099624434,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_23,10.096783199999999,47.55819249624427,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_24,10.096815100000004,47.55801429624429,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_25,10.097160099999996,47.55825319624433,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_26,10.0987411,47.55877459624438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_27,10.089952999320053,47.55736944781641,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_28,10.0955113,47.558054396244295,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_29,10.091636400000004,47.55756349624425,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_30,10.094694800000001,47.55789699624432,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_31,10.091151,47.55748379624426,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_32,10.089367200000005,47.557309496244265,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_33,10.095398900000001,47.55773319624432,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_34,10.094902800000002,47.5580439962443,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_35,10.095077500000007,47.557958596244326,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_36,10.094373599999999,47.55787079624427,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_37,10.096249499999997,47.558225496244305,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_38,10.092099100000002,47.55769029624424,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_39,10.096015500000002,47.5581872962443,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_40,10.092488900000005,47.55776789624427,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_41,10.090538800000001,47.557429396244274,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_42,10.093422599999997,47.557816396244306,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_43,10.092942500000001,47.55781229624422,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_44,10.088786199999996,47.557237896244224,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_45,10.088879200000001,47.55440489624399,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_46,10.0867576,47.55487889624399,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_47,10.08629,47.55462149624401,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_48,10.086224500000004,47.55449919624398,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_49,10.086230499999997,47.55423779624396,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_50,10.089772600000003,47.55349769624387,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_51,10.0893239,47.55346999624389,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_52,10.0892608,47.55375249624394,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_53,10.089544,47.55428329624397,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_54,10.089634100000003,47.554681896244006,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_55,10.089736699999996,47.55373409624389,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_56,10.089349499999997,47.55428849624399,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_57,10.088720799999999,47.556742496244176,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_58,10.0892401,47.5539699962439,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_59,10.087211199999997,47.554265196243975,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_60,10.087007999999997,47.554275296243986,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_61,10.086876999999996,47.55405699624394,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_62,10.086868999999998,47.55356299624389,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_63,10.088326002125267,47.554067999093625,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_64,10.08776860212526,47.55416659909366,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_65,10.086150299999996,47.554224796244014,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_66,10.088615100000002,47.552956696243875,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_67,10.0890398,47.55311719624388,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_68,10.080590000000003,47.5512231962437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_69,10.087839999999996,47.552741096243786,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_70,10.086470299999997,47.55049029624366,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_71,10.086481700000006,47.55259649624381,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_72,10.086085199999998,47.55228979624379,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_73,10.085896000000002,47.55092699624367,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_74,10.088349299999997,47.55245459624379,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_75,10.0862363,47.550704596243676,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_76,10.086028299999997,47.55205319624379,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_77,10.089682400000004,47.552598196243814,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_78,10.085827399999998,47.55301229624391,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_79,10.085709400000004,47.55284939624388,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_80,10.085712099999997,47.55276789624379,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_81,10.091669499999997,47.5521295962438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_82,10.085749599999998,47.552537996243835,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_83,10.085813499999999,47.55237589624381,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_84,10.086131400000001,47.55247949624382,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_85,10.091652299999996,47.552280096243805,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_86,10.089570400000003,47.55285209624383,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_87,10.089417999999995,47.553151296243875,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_88,10.089384700000004,47.55322239624389,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_89,10.086374500000003,47.55060269624367,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_90,10.085672999999998,47.55232599624382,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_91,10.091446400000002,47.55236349624377,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_92,10.085997699999998,47.55159219624372,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_93,10.0912886,47.55243759624381,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_94,10.087085200000006,47.55258119624384,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_95,10.091017500000003,47.55259039624383,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_96,10.089621799999996,47.55225499624385,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_97,10.086318399999994,47.552522196243835,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_98,10.089328600000004,47.552112496243794,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_99,10.089698699999994,47.55319399624388,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_100,10.089090000000002,47.55216399624374,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_101,10.090167799999996,47.552593996243836,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_102,10.086773399999997,47.552750196243835,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_103,10.089823500000003,47.55257039624382,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_104,10.0807098,47.551239996243716,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_105,10.087085200000008,47.552792096243856,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_106,10.087144400000005,47.552791996243876,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_107,10.083899000000002,47.55170649624374,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_108,10.089515899999999,47.55215749624381,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_109,10.090341800000006,47.55261829624383,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_110,10.090861400000003,47.55267539624386,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_111,10.091587599999993,47.55269979624384,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_112,10.090534200000006,47.55832089624432,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_113,10.0875923,47.55849089624434,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_114,10.087302399999997,47.55849469624436,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_115,10.088773999999995,47.55860279624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_116,10.088606099999993,47.55864289624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_117,10.0874437,47.55794929624432,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_118,10.087897800000002,47.55799239624429,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_119,10.089427199999998,47.55800149624434,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_120,10.088857499999996,47.55767619624423,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_121,10.093855900000007,47.55822409624431,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_122,10.089457,47.558256996244324,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_123,10.088587499999997,47.55754509624424,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_124,10.092308200000005,47.55887019624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_125,10.091827700000003,47.55886059624441,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_126,10.090685599999995,47.55873149624438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_127,10.089914300000006,47.558689296244374,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_128,10.089414000000003,47.55870669624436,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_129,10.088885500000002,47.55858509624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_130,10.089061099999995,47.55835499624432,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_131,10.089326300000003,47.55772489624426,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_132,10.089231600000005,47.55829439624434,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_133,10.0896744,47.558262396244324,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_134,10.091398799999999,47.55844999624435,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_135,10.089151400000004,47.55867089624441,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_136,10.091917700000005,47.55850929624432,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_137,10.0925115,47.558315096244314,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_138,10.09289899999999,47.55826129624435,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_139,10.090358000000002,47.55870619624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_140,10.094396900000003,47.55815939624434,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_141,10.089616400000002,47.558707296244364,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_142,10.091186900000006,47.558786896244385,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_143,10.095030900000003,47.55888229624438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_144,10.095187200000007,47.5590265962444,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_145,10.095621499999996,47.559084396244366,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_146,10.095911099999995,47.55910129624443,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_147,10.093666799999996,47.55876089624438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_148,10.095990200000006,47.55910459624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_149,10.090999800000002,47.55934769624441,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_150,10.091346899999996,47.55938879624445,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_151,10.092592599999994,47.558794496244325,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_152,10.091761599999998,47.559464396244415,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_153,10.095320100000002,47.55913569624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_154,10.095043999999996,47.55938499624445,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_155,10.094711000000002,47.55952179624442,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_156,10.094382800000004,47.55962149624447,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_157,10.093943700000002,47.55968629624443,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_158,10.093614900000002,47.559659196244475,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_159,10.093222199999998,47.55955039624441,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_160,10.093010200000005,47.55952769624442,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_161,10.092435800000002,47.559557096244426,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_162,10.090631200000004,47.55930709624441,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_163,10.090082199999996,47.5592708962444,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_164,10.0897216,47.55925609624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_165,10.088930099999995,47.55923649624444,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_166,10.094895400000004,47.55881229624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_167,10.095909099999993,47.55922199624441,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_168,10.094204399999995,47.55886829624438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_169,10.093990099999994,47.55884229624436,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_170,10.093327899999998,47.558712496244354,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_171,10.092940000000006,47.55868389624434,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_172,10.092700699999995,47.55874199624437,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_173,10.0862641,47.557044496244224,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_174,10.084748599999996,47.557142096244185,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_175,10.085355299999996,47.55717479624423,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_176,10.086606099999996,47.55678439624422,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_177,10.086598900000006,47.55706309624426,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_178,10.0873888,47.5571268962442,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_179,10.086877800000002,47.557084896244255,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_180,10.085029800000003,47.55717259624419,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_181,10.085715199999997,47.55710829624423,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_182,10.087867,47.55716629624423,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446605,10.080768649972187,47.55042939649964,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446612,10.080739490781117,47.55098708900986,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446704,10.086607799996232,47.550666996282516,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446708,10.086535149999994,47.550876946270094,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446710,10.085713549998577,47.551024696285765,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446711,10.086788201069938,47.5522025460993,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446712,10.085621999999766,47.55119814629138,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446715,10.08556960593225,47.552458566393724,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446716,10.08553380000186,47.55287404630417,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446718,10.085892896517302,47.55276947427094,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446721,10.086151500000506,47.55119644630824,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446722,10.08631714999921,47.552293446369355,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446723,10.08621455000791,47.55258919626649,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446724,10.086759550059458,47.55253579634366,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446726,10.086553129145587,47.55289679923568,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446727,10.086596515987848,47.55116843528047,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446728,10.08620519080575,47.5514991215893,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446731,10.086997658662945,47.552041021834725,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446733,10.086958109268068,47.55223132670415,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446735,10.086704121585534,47.55043027010872,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446737,10.087193650000577,47.55214044627488,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446739,10.087845160187307,47.552878641990894,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446740,10.087243643396222,47.55239214056054,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446742,10.088018495375922,47.55243159315306,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446744,10.085733700023638,47.55221474629332,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446746,10.086150025900997,47.551656500548354,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446748,10.086025876903584,47.553081532782315,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446749,10.086140699999994,47.55193909626657,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446750,10.086567681594026,47.55197075948647,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446751,10.088737499999812,47.55190529628047,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446752,10.08849684999905,47.55225974627088,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446754,10.088837674539333,47.552122392069336,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446755,10.086466450001282,47.553073396260686,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446756,10.088927865804951,47.55189027150333,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446757,10.089221712871936,47.5518456768282,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446758,10.085847749551077,47.55416158827426,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446759,10.089541512426168,47.551800715879374,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446761,10.090220076261193,47.55288678885026,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446762,10.09029999999953,47.5522889462662,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446763,10.090397732002547,47.552499119892765,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446764,10.089266700000058,47.55204834625228,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446765,10.089233448507658,47.552249082060044,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446766,10.08597704955107,47.554172088274285,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446767,10.088240049999573,47.55227074627435,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446768,10.088365375717387,47.55262023297368,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446769,10.090649824481417,47.55235430759575,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446770,10.086390949994884,47.554299596279805,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446771,10.090875835450543,47.55238923932633,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446772,10.088738924098303,47.55262482201484,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446773,10.090494123452732,47.552742450219164,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446774,10.086751631597872,47.55421395142205,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446776,10.08885523778855,47.55293021282143,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446778,10.08907367479614,47.55228183661623,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446779,10.088845272401379,47.55323709852685,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446780,10.08949225001386,47.552558146298374,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446781,10.08713250000073,47.55295264627033,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446782,10.089209752148815,47.55274551830531,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446783,10.090182801616983,47.55190768540705,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446784,10.089766150003362,47.55208509629259,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446785,10.089058187953965,47.55357652058412,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446786,10.089552561756355,47.55359780045185,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446788,10.088317179318475,47.55424589978808,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446790,10.088613656338236,47.554172266162176,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446791,10.090108349994617,47.55220114628263,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446795,10.089031500001672,47.55378064629499,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446796,10.089421934225792,47.553899153611546,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446797,10.087047474247395,47.55357384344577,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446800,10.090822349944062,47.552149696284104,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446801,10.087316499999408,47.55330049625954,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446802,10.089931322228276,47.55247017176123,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446803,10.088943904354549,47.55428186548566,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446804,10.08929622530733,47.55420038372826,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446807,10.089676814978608,47.553036777095244,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446808,10.089570620827823,47.553390099225346,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446812,10.087037149999684,47.55377674628612,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446814,10.085948475584805,47.55439944139583,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446815,10.08651784999506,47.554513696285284,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446816,10.087108930074079,47.55410690066683,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446818,10.089767932915512,47.553930730061914,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446819,10.087412849994218,47.55406294630703,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446823,10.08698756782213,47.554479318007054,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446824,10.087773512052234,47.553971670500864,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446825,10.087343621468664,47.55441318961573,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446827,10.091293733893187,47.55202662578024,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446828,10.091573193112795,47.55201644965532,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446829,10.091330576505165,47.55220149040226,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446830,10.088119141961354,47.5539604179521,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446831,10.091472500001927,47.552210196268746,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446832,10.08765834998867,47.55435619628375,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446833,10.087993364580294,47.55430322903509,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446842,10.09128468982551,47.552325870478846,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446844,10.091596630886118,47.55258616675208,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446849,10.090991899600088,47.552846246301726,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446850,10.089370464416106,47.55442737645426,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446855,10.089298203073739,47.554688074681486,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446999,10.094368699998038,47.55840089627648,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447001,10.094498800035153,47.557761596300644,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447004,10.094735949998649,47.55841279628323,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447011,10.095387449996064,47.55766109627623,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447012,10.095306128783362,47.55822089370891,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447014,10.095072250005824,47.5584083462908,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447017,10.095757100800997,47.55801492456287,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447018,10.09581510001827,47.55831064628728,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447019,10.094884400000494,47.55866234628509,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447021,10.095009792020246,47.55866487073735,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447022,10.09632830001056,47.55811954628322,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447023,10.096287700002089,47.55833954629983,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447026,10.094327189506881,47.559184908742715,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447028,10.094221600001978,47.55872634626591,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447035,10.095331650003613,47.558954096267655,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447036,10.095552050000867,47.558827096255754,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447037,10.096111894780172,47.55857896284315,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447038,10.096040861037041,47.55893890922967,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447039,10.094267845071013,47.55950499101401,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447040,10.094620722137764,47.55924079096983,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447043,10.094901200010568,47.55928924628581,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447045,10.096173900003736,47.559000946286055,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447050,10.095350764691986,47.55846217373598,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447051,10.095202900000778,47.558698796288006,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447052,10.095828099814295,47.559324596277825,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447056,10.095323375933603,47.55870283697212,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447065,10.096907349999942,47.55758094626226,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447066,10.096684645109331,47.55800551895903,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447068,10.097000604063584,47.55804662776962,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447074,10.096831144158704,47.55841287012378,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447083,10.09719713943834,47.558137115431926,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447084,10.097781850014137,47.55836874628869,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447089,10.097863680543064,47.5580249442152,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447099,10.096527088832914,47.55903569171114,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447102,10.099931999540408,47.5584068409506,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447104,10.10029768110778,47.55824171904739,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447107,10.09689802057323,47.55891766442041,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447109,10.097441600004927,47.55851359626037,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447110,10.10090370302813,47.5583364375631,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447112,10.101214347829096,47.55829926811656,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447114,10.09992510870922,47.55923759084604,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447117,10.096582130022592,47.55920834201451,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447120,10.10058668456646,47.558456821693746,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447121,10.101460862586155,47.558386365196895,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447127,10.097793486414009,47.559297729224255,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447128,10.09864796080848,47.55866446644213,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447129,10.101603437416264,47.558391727329536,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447131,10.101890161292467,47.55840625801535,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447132,10.099198049999917,47.558640896255596,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447134,10.099843950305665,47.55857494879787,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447135,10.098927201244765,47.55862099211291,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447137,10.098758685022354,47.55887797146843,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447138,10.09808107903001,47.55931319020871,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447139,10.099367923008986,47.558888321755816,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447140,10.100509208504807,47.558756274181285,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447141,10.101019625068082,47.55877131025488,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447142,10.100026100004436,47.55888874629525,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447145,10.100746349999325,47.5588183963907,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447147,10.100497376565286,47.55884254177232,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447148,10.10035360000505,47.559115446268734,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447149,10.100489100000988,47.55898574625547,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447153,10.100590150000478,47.55899339625534,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447162,10.102211438239825,47.55850719211438,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447167,10.10131295151154,47.55870360456783,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447178,10.101245458804181,47.55890857429782,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447181,10.101728472658431,47.55892510144836,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447184,10.101783883675163,47.55886972523469,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447210,10.097372368489516,47.56025304171057,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446663,10.084975760318727,47.557006372997826,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446685,10.084614791989921,47.55725427501334,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446687,10.085004507059761,47.55728622330785,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446817,10.08636375002566,47.554782346328835,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446822,10.08674031703643,47.55476148812982,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446839,10.0856417433635,47.55701812601092,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446841,10.087540238895905,47.55678470501278,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446845,10.086347966094113,47.55667971559361,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446847,10.086366843794098,47.556896674273474,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446848,10.086780326501417,47.55694634176253,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446852,10.086844188115986,47.55671402647332,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446853,10.087572950000729,47.558381496306545,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446854,10.087160665472737,47.556725490070995,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446856,10.088043100002855,47.558201796280656,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446857,10.087180432764647,47.556977038647894,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446859,10.089607429577192,47.55715090717404,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446860,10.08668284087476,47.55856331927464,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446861,10.086802100002949,47.55862869625205,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446862,10.08691143534492,47.558544786241015,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446863,10.089914219350883,47.55719590162723,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446866,10.089538822870246,47.55753436349146,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446870,10.088866175887688,47.55707558813344,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446872,10.08835086602274,47.55676960654979,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446873,10.09031967764609,47.557250736685155,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446875,10.085565197991391,47.55733689262764,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446876,10.088229433000357,47.557629370767955,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446879,10.086687322529885,47.557340598837314,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446880,10.09066686117577,47.55730228575534,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446881,10.089219829759749,47.55709485019887,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446882,10.090614579540384,47.5577168815062,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446883,10.087585124917183,47.557321463448446,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446884,10.090924975542368,47.557627965848106,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446885,10.08892223985731,47.55747858142719,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446887,10.088859664809851,47.55825992506309,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446888,10.089755022164866,47.558100983545486,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446890,10.089196150011661,47.55815899628551,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446891,10.087930200769016,47.55707649284789,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446893,10.088672371854965,47.558805253840475,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446894,10.090715550090685,47.557774373193055,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446895,10.088016304809685,47.55738215570128,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446896,10.090289690405518,47.558147918325304,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446897,10.088805100003137,47.558821746284515,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446898,10.087882208622089,47.55752358457879,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446899,10.089175989152713,47.55852931776002,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446902,10.090647782429844,47.55819522062677,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446903,10.089456050000427,47.55856974628801,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446905,10.089113600001124,47.55887319627978,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446907,10.088559666949914,47.55849067851254,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446908,10.090935500007022,47.55861229629303,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446909,10.08904750000153,47.55909729628006,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446910,10.089172641619665,47.559105219708194,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446912,10.089247950001116,47.558878496279824,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446914,10.090555260297053,47.55893372486513,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446915,10.087529731722977,47.55808214444125,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446916,10.090865350004751,47.5589515462862,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446918,10.089563482913295,47.55889827999448,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446920,10.08951860911973,47.55911962231979,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446922,10.089585400000413,47.558571796288,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446923,10.089964286100468,47.55913173106569,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446924,10.091266802702263,47.557833837500716,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446925,10.090101200000397,47.55913349628499,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446927,10.090087523221564,47.55853258262445,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446928,10.089682050000494,47.55890084627661,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446929,10.091326510399638,47.55775826516108,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446931,10.08965560000118,47.5591251462813,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446932,10.090050649999682,47.55887964628329,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446933,10.090527014572872,47.559170522412686,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446934,10.090754610423309,47.55918077524097,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446937,10.090175899999661,47.55887799628332,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446938,10.091380171053636,47.55784986605659,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446939,10.090507686579983,47.558592320768746,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446941,10.091131500011679,47.55823804627607,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446942,10.091485250004746,47.557408496262035,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446943,10.09103134999701,47.55769987194808,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446944,10.09367999749671,47.55794129429055,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446946,10.09338344998497,47.55839054628663,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446947,10.091260150005125,47.55867864626739,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446948,10.091413639407397,47.557661884356946,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446949,10.091518548588953,47.55826739378423,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446952,10.091725250001016,47.5577310962723,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446953,10.091394840884968,47.558697967821445,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446956,10.091309550013534,47.558985646276135,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446958,10.091637100008043,47.558727046281874,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446959,10.091997708232698,47.55753250425992,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446961,10.092622522969085,47.55909994182828,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446962,10.091867733595818,47.55875376835201,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446963,10.092222349998131,47.55875319629326,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446964,10.093000750000007,47.55901684628886,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446966,10.093129806701024,47.55860384598684,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446967,10.091694450004509,47.55906579627078,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446970,10.092255271323882,47.5591207204478,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446972,10.091830810240316,47.55835342147828,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446973,10.093531076074822,47.5586169477716,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446976,10.091187237565734,47.55923298523446,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446977,10.091570563274612,47.55930877607876,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446982,10.093367574746955,47.55903399159678,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446984,10.092338924656149,47.55943516955295,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446985,10.092663573825625,47.559424591137166,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446986,10.091978600577134,47.55939040001117,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446988,10.092845725470166,47.55768187158693,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446989,10.092329149998125,47.55872374629333,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446990,10.092972617374208,47.559395569571436,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446991,10.092568949987896,47.55865709627189,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446993,10.093579249602781,47.557630217544755,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446994,10.093238850000136,47.55941369627783,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446995,10.093300450500935,47.55942652918803,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446996,10.09336210000015,47.559439346277884,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_446998,10.093805750006563,47.558375696275796,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447000,10.092480473889188,47.55789780078763,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447002,10.093470099999996,47.55946307961141,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447009,10.093527849986895,47.55947641295612,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447010,10.093585599999999,47.55948979627804,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447013,10.092455325767233,47.55827529198487,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447015,10.093722123347218,47.55904945057447,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447020,10.092833636214657,47.558429123832404,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447024,10.094034449999992,47.55914444626868,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447025,10.09311996797122,47.557919521377265,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447027,10.093854435886145,47.55866891692738,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447031,10.093850463824642,47.55952436091712,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447034,10.093850668350866,47.559783991460726,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447216,10.092982399997963,47.559873496288795,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_447221,10.093540020705785,47.559953309529206,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_34328679,10.084110712864849,47.55100986524256,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_34328680,10.084598016764247,47.55077801375015,33535,1164210000,0.4,False +BranchTee_mvgd_33535_lvgd_1164210000_building_34328681,10.084819705879923,47.55086158633855,33535,1164210000,0.4,False +BusBar_mvgd_33535_lvgd_1164210001_LV,10.073738500000001,47.55512509624403,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_1,10.083510899999999,47.55695179624421,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_2,10.079576100000004,47.55647669624417,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_3,10.077456299999998,47.556109996244125,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_4,10.074133999999999,47.55523779624404,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_5,10.082227899999996,47.55779749624428,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_6,10.082135700000006,47.55685779624423,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_7,10.073823700000004,47.55514659624404,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_8,10.074005799999997,47.55498379624402,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_9,10.0746965637773,47.55537049915125,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_10,10.07525913044398,47.555503199151275,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_11,10.082249399999995,47.55686149624417,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_12,10.082134900000005,47.55753959624426,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_13,10.081878100000003,47.557377696244224,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_14,10.078972300000002,47.55705959624421,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_15,10.073400800000002,47.55420519624397,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_16,10.082952299999997,47.55686279624422,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_17,10.084084000000002,47.55706639624426,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_18,10.079026199999996,47.55734129624424,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_19,10.081996099999998,47.55738479624422,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_20,10.079442599999995,47.55751259624427,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_21,10.078760599999995,47.55636989624412,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_22,10.0822225,47.55710959624421,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_23,10.076952198340157,47.55593984741499,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_24,10.077910900000001,47.55624539624413,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_25,10.073011599999996,47.55502169624404,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_26,10.072091199999996,47.55496609624402,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_27,10.073531200000005,47.55505929624403,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_28,10.0727017,47.555703796244124,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_29,10.073206899999995,47.55542369624405,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_30,10.068851600000004,47.55574219624414,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_31,10.069603900000004,47.55552409624406,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_32,10.072456500000003,47.555901496244125,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_33,10.070178900000005,47.55560979624411,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_34,10.070702300000002,47.55562579624413,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_35,10.066482400000002,47.555341196244015,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_36,10.069231200000004,47.55550659624411,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_37,10.071305099999998,47.55564719624407,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_38,10.071544599999998,47.55787059624429,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_39,10.074123099999994,47.55804989624432,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_40,10.074846500000003,47.558294896244306,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_41,10.073434300000004,47.55583389624414,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_42,10.072059600000003,47.555908796244104,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_43,10.069961799999996,47.55559229624411,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_44,10.06829249880725,47.55541064881588,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_45,10.067202299999998,47.55530259624405,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_46,10.073534000000004,47.55529579624407,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_47,10.073476599999994,47.55544009624411,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_48,10.071452799999992,47.555633596244114,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_49,10.072649599999998,47.55576389624412,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446538,10.06796143046414,47.55526426832248,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446544,10.068566988816972,47.5555688203869,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446546,10.068837735741512,47.555580169961694,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446549,10.066601082457804,47.55543881950901,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446551,10.067276074383276,47.55541569237405,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446556,10.071158824481357,47.55578714043297,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446557,10.071472999999408,47.55584269628261,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446562,10.074338807570967,47.55491838440514,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446563,10.071941752096235,47.554852196160574,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446564,10.0694887483368,47.55557814631675,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446571,10.072518775634562,47.55491394316578,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446572,10.072838982531668,47.554704407289286,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446574,10.07181491382594,47.555119563994666,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446575,10.07366118388892,47.55535631950126,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446576,10.073678200003346,47.555551796283765,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446579,10.072093559270403,47.55516827339009,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446582,10.072426920141087,47.55520823824326,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446583,10.072756400010483,47.5552235963011,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446585,10.074056984273376,47.555600812480876,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446586,10.074391141980696,47.55558767144102,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446587,10.073062062661583,47.5554921718727,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446589,10.073159320616039,47.55490152242526,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446592,10.070192700000565,47.555357996272505,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446593,10.073508750002068,47.554929646282595,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446594,10.072025171335529,47.55576236867613,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446595,10.072463207372634,47.55577497353816,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446596,10.070488214447158,47.555470148935,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446597,10.072489550008507,47.55601934626313,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446599,10.073924138099521,47.554891768367305,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446602,10.072713712233904,47.55588162265798,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446603,10.073227314895396,47.555925023114824,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446604,10.071099260242736,47.5555076457382,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446607,10.071359917461445,47.55793497235676,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446613,10.071409455344149,47.55548999512413,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446617,10.069791325329954,47.55577900544374,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446619,10.07002393978689,47.555816021012646,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446620,10.070293249998683,47.55582394629178,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446621,10.07449480606352,47.55523424071875,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446624,10.070659971606265,47.55583154903441,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446628,10.074811042429099,47.55564067233315,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446629,10.074976630185178,47.555819493595855,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446631,10.070832515244188,47.555770490235425,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446632,10.076589200011417,47.55609624628604,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446633,10.07699407039192,47.55613415668962,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446640,10.077562459402824,47.55598244760424,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446644,10.078439400007168,47.55619944627449,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446645,10.07790617245357,47.557082499346734,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446647,10.077826416056277,47.55682953336446,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446649,10.077559534990685,47.556318328301856,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446652,10.07820892534397,47.55719217517891,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446653,10.078528350018656,47.55728749631246,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446655,10.07947672391829,47.557384567622485,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446658,10.078127327701344,47.55639156234382,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446662,10.078795121801338,47.55625490027986,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446666,10.079048794350761,47.55628086755709,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446669,10.079439918680006,47.55632519756574,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446676,10.078670173559287,47.55690853486878,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446683,10.074472824437052,47.55801654200746,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446689,10.075115053296377,47.558191557923294,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446657,10.081937800001816,47.5570237962851,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446659,10.08212870000109,47.55693564625293,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446660,10.08210550104398,47.55703035220815,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446665,10.082431798258193,47.556737271650945,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446668,10.082239264398963,47.5574551641709,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446670,10.082435609489178,47.55763937430145,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446672,10.082759274231307,47.5569648521462,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446673,10.083390732275316,47.55682006645944,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446675,10.082504029954366,47.55775724113754,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446679,10.0840601793442,47.55690532053557,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446680,10.084277915858713,47.55693964065865,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_446681,10.084028079030507,47.557206195100306,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_34328706,10.073164085351653,47.55480651604067,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_34328707,10.07351868746349,47.554694424439866,33535,1164210001,0.4,False +BranchTee_mvgd_33535_lvgd_1164210001_building_34328708,10.07338565660911,47.5544677896241,33535,1164210001,0.4,False +BusBar_mvgd_33535_lvgd_1164210002_LV,10.045738800000006,47.55576749624408,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_1,10.042569400000001,47.557253696244274,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_2,10.04371489999999,47.55642649624413,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_3,10.0369243,47.561687096244604,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_4,10.042168700000003,47.55910599624441,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_5,10.036742699999998,47.560687696244564,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_6,10.039770400000005,47.55953429624445,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_7,10.037650199999995,47.55997669624451,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_8,10.0423408,47.55909869624441,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_9,10.040132800000002,47.56002289624449,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_10,10.042996200000003,47.55663029624417,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_11,10.044588600000003,47.556768496244196,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_12,10.037695399999995,47.55978019624444,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_13,10.040838200000003,47.55992239624447,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_14,10.043461499999996,47.556279396244186,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_15,10.039993899999994,47.55944579624444,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_16,10.043902399999997,47.55633619624416,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_17,10.040280999999995,47.55967379624447,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_18,10.044440799999993,47.55662239624418,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_19,10.042816699999992,47.55678729624419,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_20,10.044077099999997,47.55626309624415,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_21,10.043001299999993,47.55687729624422,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_22,10.043195099999995,47.556740296244186,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_23,10.044340599999996,47.55615509624412,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_24,10.040872,47.5588478962444,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_25,10.036922600000004,47.561478196244565,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_26,10.042692900000004,47.557347496244205,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_27,10.046556900000004,47.55557269624411,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_28,10.048445048156292,47.55262199761081,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_29,10.045973800000002,47.551795296243725,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_30,10.045567799999995,47.55206199624372,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_31,10.049259499999998,47.55505869624402,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_32,10.047344500000003,47.55539119624403,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_33,10.048386799999996,47.55518159624408,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_34,10.050092199999998,47.554653496244,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_35,10.046281299999999,47.5519025962438,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_36,10.045794199999992,47.55161769624372,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_37,10.048989900000004,47.55279689624379,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_38,10.049938699999995,47.55166459624376,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_39,10.050303200000004,47.554750996244,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_40,10.049247799999991,47.55286839624383,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_41,10.044943299999998,47.55115859624372,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_42,10.051282900000004,47.553457896243906,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_43,10.044839000000003,47.55228289624382,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_44,10.050936200000004,47.554923196244005,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_45,10.049626700000005,47.55293029624381,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_46,10.047926600000004,47.55525249624406,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_47,10.044794399999994,47.5522886962438,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446230,10.045257399984736,47.551108246285,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446235,10.04532498164639,47.551207798263796,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446239,10.045555867406962,47.55117904964621,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446240,10.044610474668453,47.55259615243734,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446243,10.045650800010499,47.55155224627197,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446250,10.04505537666393,47.552576132507454,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446255,10.050101289991883,47.55147067995778,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446258,10.049808499996905,47.55265224625901,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446261,10.04577245000267,47.55167409624876,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446262,10.048255497856806,47.55246466855344,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446264,10.045772104372965,47.552102502418066,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446267,10.048423437731644,47.55247114316342,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446268,10.048870918886877,47.552632898033906,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446271,10.042851667668897,47.556642784611604,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446272,10.042741863844075,47.55685620773599,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446273,10.049228801510337,47.55271655251758,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446275,10.043341150018097,47.55688939636051,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446276,10.043262199996585,47.55633774625791,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446279,10.043828949992049,47.55667759628607,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446287,10.04293149863782,47.557238865938025,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446288,10.044511584902057,47.556224330553874,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446291,10.048366494697342,47.55534612494023,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446297,10.044463059712017,47.55640563476481,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446300,10.044417699984105,47.55681834629733,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446303,10.048027382440393,47.55541644942294,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446305,10.045964115864534,47.55583316548142,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446306,10.048538272708964,47.555325239922475,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446307,10.045849649969528,47.55602104630231,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446321,10.049331299996151,47.55527584627673,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446327,10.047076349974859,47.55577054629387,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446334,10.047502746853844,47.55577047905872,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446338,10.05019119472053,47.5549787683731,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446346,10.05088690223002,47.55465926213196,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_445963,10.039707531741417,47.55941128039511,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_445977,10.040427743416819,47.5596571072602,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446129,10.036652060998449,47.56165437522361,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446136,10.04018752057953,47.55987017826217,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446139,10.040829203007458,47.559828535538394,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446180,10.037028945626535,47.56068031588594,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446188,10.03777978410901,47.56005169431776,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446201,10.036690678951661,47.56155079158211,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446292,10.042089166480066,47.5589424634241,33535,1164210002,0.4,False +BranchTee_mvgd_33535_lvgd_1164210002_building_446293,10.04240530533267,47.5589451645064,33535,1164210002,0.4,False +BusBar_mvgd_33535_lvgd_1164210003_LV,10.107986899999998,47.556643896244175,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_1,10.107289,47.56078499624455,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_2,10.102466200000007,47.558154496244306,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_3,10.109281,47.55713849624423,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_4,10.109329799999996,47.55596939624412,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_5,10.108974200000004,47.555857496244144,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_6,10.106152699999996,47.558896696244354,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_7,10.101957800000001,47.55803309624427,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_8,10.1059175,47.55883549624442,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_9,10.105505599999994,47.55897419624437,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_10,10.105110299999998,47.55929529624442,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_11,10.108502700000003,47.5568001962442,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_12,10.109052899999996,47.55704109624421,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_13,10.10887589999999,47.55696559624419,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_14,10.108659899999996,47.55687349624423,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_15,10.109337799999999,47.5558717962441,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_16,10.108341299999998,47.55710039624423,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_17,10.1093281,47.5559905962441,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_18,10.104386000000005,47.559529196244426,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_19,10.104237800000005,47.559694796244436,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_20,10.109062900000003,47.556364496244115,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_21,10.108928099999996,47.556459896244135,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_22,10.108731499999994,47.55650119624411,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_23,10.108421399999997,47.55661019624414,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_24,10.108337700000003,47.55674169624417,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_25,10.109152000000003,47.55626419624409,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_26,10.107237800000005,47.56042569624451,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_27,10.1073785,47.560520696244524,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_28,10.107401199999996,47.56060769624451,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_29,10.111216499999998,47.555036496244014,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_30,10.1101772,47.55581739624412,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_31,10.112203500000005,47.55512919624402,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_32,10.110386800000002,47.55548129624408,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_33,10.1106401,47.555257296244015,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_34,10.110054900000002,47.5559764962441,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_35,10.110233900000003,47.55567589624409,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_36,10.109596299999994,47.55645399624417,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_37,10.109334199999997,47.55683129624419,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_38,10.112649099999997,47.554440896243996,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_39,10.106402599999994,47.55679019624421,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_40,10.106731499999999,47.556604796244144,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_41,10.1016323,47.55293419624386,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_42,10.101955399999994,47.55318679624383,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_43,10.102408799999994,47.55345309624388,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_44,10.1031839,47.55388859624395,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_45,10.107390899999999,47.55705569624421,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_46,10.107613700000002,47.55663719624416,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_47,10.103577400000002,47.55404149624392,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_48,10.105361600000005,47.55503319624405,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_49,10.102865500000007,47.55334449624389,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_50,10.106559200000001,47.55666959624417,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_51,10.102578500000005,47.55336029624387,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_52,10.105604899999996,47.55474479624397,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_53,10.105725100000006,47.55454969624397,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_54,10.107394500000007,47.5571990962442,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_55,10.108894499999998,47.553365996243855,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_56,10.106493699999994,47.55678709624421,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_57,10.107231899999995,47.55645049624415,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_58,10.106372100000002,47.55714659624419,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_59,10.107363900000005,47.557342396244245,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_60,10.106453500000004,47.557292296244256,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_61,10.102770900000007,47.5537115962439,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_62,10.1063544,47.55684239624419,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_63,10.103061200000003,47.55343799624387,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_64,10.106548,47.5568637962442,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_65,10.107302700000002,47.55742559624426,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_66,10.107495599999995,47.55684409624425,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_67,10.106369500000003,47.556883096244235,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_68,10.102521500000003,47.55354649624393,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_69,10.1066321,47.55610039624415,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_70,10.106873000000009,47.556257196244154,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_71,10.1077097,47.55657899624414,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_72,10.1070859,47.55638549624417,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447049,10.10162175002308,47.55309709629373,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447058,10.102721915275861,47.55350804277406,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447061,10.103187820474597,47.55341938902018,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447063,10.1029891000013,47.553576246249165,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447064,10.102372400001114,47.55370224625173,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447070,10.10268426535609,47.55375606283197,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447071,10.102921461677271,47.553946284012454,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447072,10.10193940000805,47.552962096309784,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447073,10.10319895042677,47.554062837504326,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447075,10.102269957186184,47.55324431903717,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447078,10.101978366813555,47.55333615082549,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447079,10.103321509829462,47.553391487933595,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447080,10.103303100003153,47.55359409625453,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447085,10.103461100000196,47.553693096246505,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447088,10.102391450942498,47.553296429334594,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447090,10.103333133037603,47.55383789594533,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447091,10.103346700255129,47.5541117128138,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447093,10.103442053706004,47.55414427833497,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447094,10.102883841689934,47.553146763816706,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447095,10.105699900007409,47.55428419625943,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447103,10.103045954986985,47.55321222864538,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447151,10.105499998092771,47.55465064913679,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447155,10.107390058964079,47.55681657746444,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447165,10.106006350009233,47.55698384626885,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447168,10.106434511520495,47.55623883221237,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447175,10.10665882112635,47.55633482247577,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447176,10.106328635520246,47.55644198583151,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447177,10.106269549225043,47.556643110649944,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447182,10.10627007263388,47.5570809610737,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447183,10.10615341141052,47.556816991788715,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447185,10.10672630633457,47.5569003753518,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447187,10.10648480304534,47.55709838272817,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447189,10.106616896054627,47.55713164423666,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447190,10.107360565461574,47.55668241742235,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447192,10.10678146895104,47.55672839025856,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447193,10.10722156225207,47.556884375881374,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447194,10.107417532255745,47.55677497156472,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447196,10.106746413328404,47.557170587587414,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447197,10.107127150004441,47.557105246269124,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447198,10.105359379220463,47.55473658852412,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447199,10.107104737923489,47.557324981033375,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447200,10.107253074535596,47.557244155508506,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447996,10.109018935715214,47.55329731597324,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448005,10.112560206729276,47.55429942672013,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448012,10.109044835196004,47.55568356527599,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448019,10.107705549087449,47.5568249072474,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448020,10.107670894289253,47.55700563496373,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448022,10.107982633936063,47.55674761906583,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448024,10.10975525000524,47.55550514628352,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448027,10.108041480898109,47.556781908064,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448028,10.110144081296829,47.55539283021923,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448029,10.108212750001748,47.55652804627018,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448031,10.108301718604528,47.55655220348384,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448033,10.108686326581985,47.55637272978782,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448034,10.10820335000166,47.5566249962535,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448036,10.108611800711214,47.556678501207735,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448037,10.108246422566296,47.5568352837247,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448038,10.107485224247345,47.556395666727305,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448039,10.109418844207793,47.556229337035006,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448040,10.107869164926214,47.55650422447865,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448041,10.10797610984361,47.55649595131686,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448042,10.108427040363244,47.55686456186561,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448043,10.108264734688618,47.55694388806785,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448044,10.10807180000044,47.55656789624642,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448045,10.108650105990138,47.55706189029663,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448046,10.109542909063189,47.55587518114626,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448048,10.107762987215516,47.55676612792825,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448049,10.1096116006321,47.556005188629754,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448051,10.10888201817159,47.555778040283144,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448052,10.109063284928473,47.55584983696682,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448053,10.10987210001439,47.555779846286654,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448054,10.110488504629934,47.5555592601103,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448055,10.109013926115514,47.55602972536714,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448056,10.109148644809343,47.55580892431244,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448060,10.110160015679586,47.555989755493776,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448061,10.108934345174712,47.556236123407785,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448062,10.110614050002773,47.5556658962689,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448063,10.112205052548722,47.55500751918485,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448064,10.109384200001784,47.55608274625117,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448065,10.109553136183333,47.55625285884161,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448066,10.109269840495811,47.556247715931775,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448068,10.112199217290106,47.55532429709501,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448069,10.110348467219099,47.55591804708257,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448070,10.110328250005997,47.556136296258984,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448071,10.110370350005999,47.556083796258946,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448072,10.107612232558498,47.55729137560904,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448073,10.11000034951025,47.55612157976656,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448074,10.10775785000708,47.557334596272234,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448075,10.108006839322742,47.557097722285036,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448076,10.109349731615355,47.55737654395808,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448080,10.107514971850057,47.55753066991113,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448083,10.110090560989107,47.55622306503902,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448085,10.108590405689664,47.55716569498034,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448091,10.109000150000414,47.5566178962699,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448094,10.109086300000437,47.5566210462699,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448097,10.109259376522902,47.556446916308474,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448109,10.109467300002514,47.556802996255534,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448112,10.109143050014476,47.556974296272024,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448120,10.10989030001335,47.556438096291735,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448123,10.109855452872905,47.55665306244038,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448130,10.109665780188726,47.55680579252332,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448132,10.109507493393465,47.55703074810997,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448137,10.110402367935176,47.55515988398954,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447119,10.101844868731098,47.55787485749006,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447157,10.102379625071794,47.55795856540067,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447174,10.104165774755504,47.55978318535392,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447180,10.104506566257148,47.55966613987383,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447207,10.105903809551123,47.55911997644994,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447211,10.107074017990493,47.560502345464,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_447217,10.104475531196366,47.55986340595176,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448105,10.109178049999912,47.556808146265496,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448116,10.109694572905944,47.556555772281065,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_448124,10.107491246782383,47.560819804192626,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_34328718,10.107828964592349,47.56050333646587,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_34328719,10.108512581628188,47.56099844897529,33535,1164210003,0.4,False +BranchTee_mvgd_33535_lvgd_1164210003_building_34328720,10.107939893667151,47.56059633127986,33535,1164210003,0.4,False +BusBar_mvgd_33535_lvgd_1164210004_LV,10.0359923,47.56432909624486,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_1,10.035012500000002,47.56581889624501,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_2,10.034151900000003,47.56516459624495,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_3,10.042632599999997,47.56494639624488,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_4,10.0341349,47.56499189624492,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_5,10.0359819,47.56444529624484,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_6,10.035423100000004,47.565631496244976,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_7,10.039929699999995,47.56496129624493,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_8,10.036464200000005,47.56541549624494,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_9,10.038921100000003,47.56492829624491,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_10,10.0355049,47.56707179624508,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_11,10.036457499999996,47.56547579624494,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_12,10.036900800000007,47.56763349624518,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_13,10.037932700000006,47.56771719624515,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_14,10.037613499999996,47.56509959624491,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_15,10.036929000000004,47.56514299624492,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_16,10.035144299999999,47.56622419624501,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_17,10.035986099999999,47.565582996244956,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_18,10.035747099999996,47.565493696244914,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_19,10.035831599999996,47.56515429624495,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_20,10.037754699999995,47.56769729624512,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_21,10.036679500000005,47.56526469624499,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_22,10.035086800000002,47.56528279624492,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_23,10.0348695,47.565176696244954,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_24,10.039204400000001,47.566001096244975,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_25,10.0355656,47.565290696244936,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_26,10.0351969,47.56635989624506,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_27,10.0396704,47.56571899624502,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_28,10.035319899999998,47.56661759624504,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_29,10.036043800000005,47.56472589624488,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_30,10.035643599999997,47.567457396245146,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_31,10.038968300000008,47.565642296244945,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_32,10.035062200000004,47.56568229624497,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_33,10.034198900000003,47.56553199624499,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_34,10.039375101086927,47.563654797712736,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_35,10.038203800000002,47.56378289624483,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_36,10.041935999999998,47.56279989624472,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_37,10.036154999999995,47.56436919624487,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_38,10.036610400000004,47.56447809624487,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_39,10.0367969,47.56450809624488,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_40,10.038809300000006,47.56375409624482,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_41,10.0397919,47.562734496244715,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_42,10.041720599999998,47.56183469624462,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_43,10.0386644,47.56341379624475,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_44,10.0375262,47.56422759624481,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_45,10.040129099999996,47.56221009624467,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_46,10.039890400000004,47.561237496244566,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_47,10.0395286,47.56291959624471,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_48,10.0436935,47.56164059624463,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_49,10.041059099999996,47.56189979624467,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_50,10.0325245,47.56394789624484,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_51,10.036035099999998,47.563757496244826,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_52,10.036173899999994,47.564060396244855,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_53,10.031838599999995,47.563916396244764,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_54,10.034792500000004,47.562779396244714,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_55,10.035869399999997,47.56421759624487,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_56,10.0280832,47.56454249624488,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_57,10.034941899999998,47.562877296244764,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_58,10.035301600000002,47.56389669624484,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_59,10.0350965,47.5629514962447,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_60,10.036427800000002,47.56366789624479,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_61,10.035586100000007,47.564043596244844,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_62,10.0341981,47.56349039624475,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_63,10.034756400000003,47.56359659624476,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_64,10.034274199999997,47.563472396244784,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_65,10.031048600000002,47.56387919624479,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_66,10.034557499999998,47.56339239624475,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_67,10.0323076,47.563954496244826,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_68,10.031477000000004,47.56388309624484,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_69,10.0320594,47.56393649624482,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_70,10.032718300000004,47.56389569624482,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_71,10.033139199999995,47.56376069624482,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_72,10.0339786,47.563537496244784,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446034,10.028287150038915,47.564488796333045,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446086,10.032237800009334,47.56372094629816,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446088,10.032648389715108,47.56373253524524,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446089,10.033015436587327,47.56364417467077,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446092,10.031133539043415,47.563522300404244,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446097,10.031406508136541,47.564099619922104,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446098,10.031805970407495,47.56399933278904,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446099,10.031618062231892,47.564144975430615,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446100,10.031190850007004,47.56365969625965,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446107,10.03190593014434,47.56421513864123,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446108,10.033352747040837,47.56355136737869,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446109,10.031447867273084,47.56366748022721,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446110,10.03366990912328,47.56342201518372,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446112,10.032122264506805,47.56416624036618,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446113,10.032216200001065,47.5641739962659,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446114,10.032449350002246,47.56416854626538,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446115,10.032324151244445,47.56434674519825,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446116,10.033518468620805,47.56388208859298,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446119,10.034384773053961,47.563272899610865,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446120,10.03241835000041,47.56434979626591,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446121,10.033775331012029,47.565100814834366,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446122,10.032789800476383,47.56410837478585,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446123,10.03313685819382,47.56399966504848,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446125,10.034118846458512,47.563656831776306,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446126,10.033966163096206,47.56380186285808,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446127,10.034450105908736,47.564916023700796,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446128,10.034092183890916,47.56383580213031,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446130,10.034437707780526,47.56521877707248,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446132,10.039990299021438,47.56104027662786,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446133,10.034231272043478,47.56379307723874,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446134,10.034556976714862,47.56377731071136,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446135,10.03465567564528,47.56288595114171,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446138,10.03533260216576,47.5641164193125,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446140,10.035024266798494,47.56282729734361,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446142,10.035658734147315,47.564327942444365,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446143,10.034983850037838,47.56356704635459,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446146,10.03532520212923,47.563718879511754,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446147,10.03577708384403,47.56447882093662,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446148,10.03574965001483,47.563616246297855,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446149,10.035690505667157,47.56379369873778,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446150,10.0410742002529,47.562009420325055,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446152,10.034808780951716,47.5649081809939,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446153,10.036684373490958,47.56356072087208,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446155,10.036119075190765,47.56365063985645,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446157,10.038713349990688,47.563542046282784,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446158,10.036434836402485,47.56385001807506,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446159,10.038129452652298,47.563623730189775,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446160,10.034894322241328,47.565040305286765,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446161,10.038756109270743,47.56390766716081,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446162,10.037613257758736,47.56366886281832,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446164,10.037789256369908,47.563853125510384,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446165,10.036267678337241,47.56425438754369,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446166,10.035109571624568,47.565087358677026,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446167,10.036392200010827,47.564085996291816,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446168,10.036639228680176,47.56434027611946,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446169,10.038284549985692,47.56394679629565,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446170,10.03955960002893,47.562688746286184,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446171,10.035457805795206,47.56513408188496,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446173,10.036508350008276,47.56457659632062,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446175,10.039507549981323,47.56307749630973,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446177,10.036178054145722,47.564671164387555,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446178,10.03603263577148,47.56528097152551,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446182,10.03651704021272,47.565193311873145,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446183,10.036746344053114,47.56464070784881,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446185,10.036783303811502,47.565085979670734,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446187,10.0338403353926,47.565709595672736,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446190,10.035018150013736,47.565374446284906,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446195,10.037658149997089,47.56434219628682,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446196,10.034777845707458,47.56588578368532,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446198,10.035403736786884,47.565469773128555,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446199,10.03532467669164,47.565570901356296,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446200,10.038064344175282,47.564338023094486,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446203,10.036015967545527,47.56546527916919,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446205,10.035376524864667,47.5658299929314,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446206,10.039053890681835,47.56601569739644,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446207,10.034914300004274,47.56613839629134,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446208,10.03522177115898,47.56600443786831,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446209,10.036406513878743,47.56536996456823,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446211,10.035000026610899,47.56646919078349,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446212,10.037780627112872,47.56775214307458,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446213,10.036760524535952,47.5685073030315,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446214,10.037917524049167,47.56782365191671,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446215,10.035398783116923,47.566213519791965,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446217,10.03582630000163,47.56609084626773,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446218,10.039394631169788,47.56596409460104,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446220,10.03977334379636,47.565831820766725,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446222,10.035805737672984,47.56629402743356,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446223,10.035435595684177,47.56647815743607,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446231,10.035272710823415,47.566977604714275,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446238,10.035833900005288,47.5670797462763,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446242,10.035810386720128,47.56731995884946,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446354,10.042364077564775,47.56283257691557,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446357,10.041760681263957,47.561691968988136,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446359,10.042687596718674,47.56480549729363,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446360,10.043965928458926,47.56157584423986,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_446362,10.041789856680623,47.56310430986495,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_34328730,10.039082867589793,47.56437261489198,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_34328731,10.039780144483865,47.564460413899624,33535,1164210004,0.4,False +BranchTee_mvgd_33535_lvgd_1164210004_building_34328732,10.039775819403019,47.563946466089135,33535,1164210004,0.4,False +BusBar_mvgd_33535_lvgd_1164210005_LV,10.0598717,47.555341996244074,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_1,10.057419099999997,47.55517239624403,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_2,10.0555555,47.55495679624407,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_3,10.0547098,47.55494989624404,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_4,10.055227500000004,47.55455289624404,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_5,10.057793599999997,47.55521889624405,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_6,10.059024100000006,47.555202696244024,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_7,10.055109199999995,47.55493099624401,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_8,10.059203400000005,47.55480259624399,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_9,10.0583608,47.555289396244085,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_10,10.053874399999994,47.55504379624405,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_11,10.058998599999997,47.55537339624407,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_12,10.059543399999999,47.55535609624408,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_13,10.060875799999998,47.55525019624408,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_14,10.062109800000005,47.555700996244106,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_15,10.06142950054595,47.55519919764838,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_16,10.061983199999995,47.55514819624401,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_17,10.062371500000003,47.55511939624407,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_18,10.063004500000005,47.55513119624405,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_19,10.063628699999999,47.554826196243994,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_20,10.065043500000003,47.554483396244,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_21,10.0650152,47.554742696244,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446320,10.05441067341645,47.55463857156333,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446322,10.053976974385096,47.5547510496373,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446323,10.057220111636385,47.555413076251234,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446326,10.057657165195662,47.55551383112688,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446329,10.054428156915955,47.55486475797469,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446330,10.055148671147556,47.55451470176916,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446332,10.0553327000053,47.55459014627812,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446335,10.0590708927205,47.554956166703654,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446336,10.058257821332921,47.55541247457989,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446339,10.055514072994447,47.55484702927649,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446341,10.059224740733612,47.55553300830566,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446342,10.058979515717029,47.555511720055605,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446343,10.06250540000004,47.555027446255046,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446344,10.062183726925081,47.555548753320146,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446347,10.059357388163612,47.55515942669589,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446349,10.062892999997608,47.55502744629373,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446352,10.059694911382431,47.555196181355655,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446353,10.06002627901912,47.555205623993814,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446355,10.059508095502018,47.55548952227469,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446363,10.061120699992303,47.555065296305344,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446364,10.0614845531753,47.555051559707984,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446365,10.0617298466666,47.55503593864708,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446366,10.063353578336207,47.55464998407479,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446533,10.063597122780603,47.55459790143124,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446537,10.065151800000038,47.55455374626567,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446541,10.065189773390424,47.55466169949057,33535,1164210005,0.4,False +BranchTee_mvgd_33535_lvgd_1164210005_building_446543,10.065099650000118,47.55471369625027,33535,1164210005,0.4,False +BusBar_mvgd_33535_lvgd_1164250000_LV,10.0513544,47.56223849624466,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_1,10.051416600000003,47.56269649624471,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_2,10.053771199999998,47.563268396244794,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_3,10.048245999999999,47.56059759624454,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_4,10.047407499999998,47.55988819624449,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_5,10.050635599999998,47.56250449624471,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_building_446376,10.048170400007438,47.560735396268655,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_building_446369,10.047406519612409,47.559971548687116,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_building_446370,10.0506767124009,47.56232077281203,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_building_446377,10.051528823722016,47.56216229695371,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_building_446380,10.053573063348413,47.5631925713402,33535,1164250000,0.4,False +BranchTee_mvgd_33535_lvgd_1164250000_building_446385,10.051180172690168,47.56272375272389,33535,1164250000,0.4,False +BusBar_mvgd_33535_lvgd_1164270000_LV,10.058768199999996,47.56576709624502,33535,1164270000,0.4,False +BranchTee_mvgd_33535_lvgd_1164270000_building_446395,10.058863726561917,47.565628434212776,33535,1164270000,0.4,False +BusBar_mvgd_33535_lvgd_1164920000_LV,10.006545348901419,47.511165158297686,33535,1164920000,0.4,False +BranchTee_mvgd_33535_lvgd_1164920000_building_431409,10.006545348901419,47.511165158297686,33535,1164920000,0.4,False +BusBar_mvgd_33535_lvgd_1165830000_LV,10.008001799999994,47.57208949624548,33535,1165830000,0.4,False +BranchTee_mvgd_33535_lvgd_1165830000_building_442272,10.008300057214763,47.57223794176855,33535,1165830000,0.4,False +BusBar_mvgd_33535_lvgd_1165850000_LV,10.00487026241384,47.50392359944945,33535,1165850000,0.4,False +BranchTee_mvgd_33535_lvgd_1165850000_building_431049,10.00497080004529,47.50384399629569,33535,1165850000,0.4,False +BranchTee_mvgd_33535_lvgd_1165850000_building_431050,10.004835850003975,47.50395084624699,33535,1165850000,0.4,False +BusBar_mvgd_33535_lvgd_1166430000_LV,10.007437925988821,47.52293178918052,33535,1166430000,0.4,False +BranchTee_mvgd_33535_lvgd_1166430000_building_431450,10.007413250026959,47.52283874630099,33535,1166430000,0.4,False +BranchTee_mvgd_33535_lvgd_1166430000_building_431451,10.007459856262065,47.52301447891101,33535,1166430000,0.4,False +BusBar_mvgd_33535_lvgd_1166640000_LV,10.010055050033241,47.51512089628523,33535,1166640000,0.4,False +BranchTee_mvgd_33535_lvgd_1166640000_building_431424,10.010055050033241,47.51512089628523,33535,1166640000,0.4,False +BusBar_mvgd_33535_lvgd_1166910000_LV,10.003053600000003,47.527566196241544,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_1,10.006528100000002,47.52836679624166,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_2,10.003101400000004,47.52798599624161,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_3,10.003195399999994,47.528068096241654,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_4,10.005604700000001,47.52833659624167,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_5,10.001219600000002,47.52771489624163,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_6,10.000547499999998,47.52753119624159,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_7,10.002593900000004,47.52808699624162,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_8,10.001601100000006,47.5277102962416,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_9,10.0017151,47.5278922962416,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_10,10.002059399999993,47.52795519624159,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_11,10.000840899999996,47.52756649624161,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_12,10.0015165,47.527848896241615,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_13,10.002854999999997,47.52755749624156,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_14,10.000305600000006,47.52884329624169,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_15,10.002924500000002,47.52634719624145,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_16,10.0031976,47.526873296241526,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_17,10.002270099999999,47.5265710962415,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_18,10.005959700000002,47.525792696241425,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_19,10.003095299999995,47.527486896241584,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_20,10.003119600000002,47.52673489624151,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_21,10.002681100000002,47.52669719624153,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_22,10.006094099999995,47.52584889624143,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431434,10.001669780825766,47.526155641524056,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431435,10.002372449974104,47.52641199630945,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431442,10.002588831559741,47.52685209970552,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431446,10.002719373350626,47.52674931982209,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431452,10.003109172948914,47.52635379219151,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431459,10.003307249996766,47.52662274632496,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431460,10.006208420901238,47.52570314285222,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431463,10.005875515514706,47.52588415573355,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431581,10.001185500001585,47.527846046250374,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431588,10.001661464944748,47.5280093447294,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431594,10.003036879541833,47.526892248828574,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431601,10.002773674409687,47.52740050032532,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431603,10.002217250003524,47.52793224624926,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431605,10.000195525626594,47.52764001469639,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431608,10.000598500029314,47.528915546293646,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431610,10.002869920429045,47.52804075344283,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431611,10.002733216197905,47.5281721718628,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431614,10.003045916441627,47.52812252589443,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431616,10.000811382993684,47.52748251741519,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431617,10.005823945100627,47.528509351646115,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431621,10.006428500835318,47.52874233042319,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431624,10.006519188640201,47.52855713434549,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431632,10.0034957723341,47.527556444213474,33535,1166910000,0.4,False +BranchTee_mvgd_33535_lvgd_1166910000_building_431636,10.003295455370742,47.527905627090206,33535,1166910000,0.4,False +BusBar_mvgd_33535_lvgd_1166920000_LV,10.0078172,47.529730996241796,33535,1166920000,0.4,False +BranchTee_mvgd_33535_lvgd_1166920000_building_431653,10.008596767676996,47.52992093596578,33535,1166920000,0.4,False +BusBar_mvgd_33535_lvgd_1167600000_LV,10.010591400000001,47.50410939623945,33535,1167600000,0.4,False +BranchTee_mvgd_33535_lvgd_1167600000_building_430847,10.010642098111346,47.50397985325051,33535,1167600000,0.4,False +BusBar_mvgd_33535_lvgd_1168040000_LV,10.011235800007439,47.5333865462718,33535,1168040000,0.4,False +BranchTee_mvgd_33535_lvgd_1168040000_building_431679,10.011235800007439,47.5333865462718,33535,1168040000,0.4,False +BusBar_mvgd_33535_lvgd_1168900000_LV,10.015019600000004,47.51566519624052,33535,1168900000,0.4,False +BranchTee_mvgd_33535_lvgd_1168900000_building_431444,10.014781542056882,47.51553041471124,33535,1168900000,0.4,False +BusBar_mvgd_33535_lvgd_1170090000_LV,10.0221088,47.57779949624604,33535,1170090000,0.4,False +BranchTee_mvgd_33535_lvgd_1170090000_building_446407,10.022265418993758,47.57801400474753,33535,1170090000,0.4,False +BusBar_mvgd_33535_lvgd_1170540000_LV,10.023249199999997,47.5739876962457,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_1,10.023604699999996,47.57456979624575,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_2,10.023556100000004,47.57454199624575,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_3,10.023372900000004,47.57436649624571,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_4,10.022086699999996,47.5747097962458,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_5,10.022356099999993,47.57479059624579,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_6,10.023356900000003,47.57425589624573,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_7,10.0232206,47.57454719624577,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_8,10.023088500000002,47.57465659624575,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_9,10.022937099999996,47.574735096245796,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_10,10.0227041,47.57474269624579,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_11,10.022430099999994,47.57477729624575,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_12,10.022348799999996,47.574931896245815,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_13,10.022330599999995,47.575294696245805,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_14,10.022897200000001,47.574960196245804,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_15,10.023480199999996,47.574918396245806,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446402,10.021957219162381,47.57464599142411,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446403,10.023052599998683,47.574566996262334,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446404,10.023498024673627,47.57427239077096,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446405,10.022108379928019,47.57490527395065,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446406,10.023348934062797,47.574610685973255,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446408,10.023590788656378,47.57474382940575,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446411,10.022105339850702,47.57516652269757,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446412,10.023613900001354,47.57419414625325,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446413,10.022780176676955,47.57455348227748,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446415,10.022490799425304,47.574701144983386,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446416,10.023714625094115,47.57443753418937,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446424,10.022934944026103,47.575114507620846,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_446426,10.023410535182032,47.57513819361646,33535,1170540000,0.4,False +BranchTee_mvgd_33535_lvgd_1170540000_building_544076,10.02451185766711,47.573175998773344,33535,1170540000,0.4,False +BusBar_mvgd_33535_lvgd_1171050000_LV,10.023486400000003,47.5814837962464,33535,1171050000,0.4,False +BranchTee_mvgd_33535_lvgd_1171050000_1,10.022954499999999,47.58148859624634,33535,1171050000,0.4,False +BranchTee_mvgd_33535_lvgd_1171050000_2,10.026040800000002,47.58119209624628,33535,1171050000,0.4,False +BranchTee_mvgd_33535_lvgd_1171050000_building_446434,10.026444980277402,47.581395902843724,33535,1171050000,0.4,False +BranchTee_mvgd_33535_lvgd_1171050000_building_446469,10.023258122721703,47.58229120372857,33535,1171050000,0.4,False +BranchTee_mvgd_33535_lvgd_1171050000_building_446481,10.023144644663516,47.582013216614584,33535,1171050000,0.4,False +BranchTee_mvgd_33535_lvgd_1171050000_building_446487,10.023403780321006,47.58195202710066,33535,1171050000,0.4,False +BusBar_mvgd_33535_lvgd_1172390000_LV,10.010766399999996,47.52779689624157,33535,1172390000,0.4,False +BranchTee_mvgd_33535_lvgd_1172390000_building_431648,10.010723982805679,47.527551416924844,33535,1172390000,0.4,False +BusBar_mvgd_33535_lvgd_1172410000_LV,10.032254799999993,47.52462569624129,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_1,10.033529499999995,47.523841896241244,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_2,10.032867599999998,47.52434969624131,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_3,10.034949799999998,47.52481399624134,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_4,10.034172499999999,47.52362069624127,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_5,10.033919100000006,47.5234658962412,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_6,10.033466598382274,47.524433546718235,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_7,10.033783299999996,47.524697796241355,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_8,10.034601899999997,47.52371849624124,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_9,10.034070800000004,47.52474699624133,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_10,10.034440799999999,47.52476549624135,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_11,10.0350068,47.524733996241345,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_12,10.033149899999996,47.52416929624127,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_13,10.035133700000001,47.524364096241264,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_14,10.0348261,47.52394509624123,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_15,10.0340222,47.52379929624127,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_16,10.034494499999994,47.52380929624129,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_17,10.024439400000004,47.526408896241485,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_18,10.025367999999995,47.52428469624127,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_19,10.025312400000006,47.52461929624132,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_20,10.024299800000003,47.52642169624149,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_21,10.021498799999996,47.520076796240915,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_22,10.026327499999995,47.523213296241195,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_23,10.026218999999994,47.52286519624119,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_24,10.023671000000006,47.519744296240916,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_25,10.023584700000008,47.51991329624091,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_26,10.023601200000003,47.51949849624084,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_27,10.022711699999993,47.520253996240946,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_28,10.024096799999995,47.52168429624103,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_29,10.0257736,47.522570596241145,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_30,10.0232785,47.52052099624092,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_31,10.026458100000003,47.52311929624116,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_32,10.027287300000003,47.52633449624147,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_33,10.030532800000001,47.526200396241435,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_34,10.026050599999998,47.527639896241574,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_35,10.026677200000005,47.52723899624155,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_36,10.027246399999996,47.52681299624154,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_37,10.028110300000003,47.52582399624143,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_38,10.027849200000004,47.5264322962415,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_39,10.028094099999993,47.52600379624145,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_40,10.028436500000005,47.52590709624144,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_41,10.027667700000007,47.52590009624144,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_42,10.028019099999993,47.52566639624141,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_43,10.028997700000003,47.52598629624144,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_44,10.028951300000003,47.52600219624145,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_45,10.0326915,47.52484589624131,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_46,10.033040199999999,47.52515569624133,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_47,10.033305800000003,47.52512669624137,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444482,10.02451843962586,47.524065452050756,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444500,10.026145824403994,47.522589790464515,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444502,10.026327400002206,47.52260419627613,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444503,10.02622680455863,47.52276307997224,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444506,10.024273249989422,47.5263197962767,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444508,10.02445932031406,47.52627154028251,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444510,10.026111752115085,47.52319911213816,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444512,10.025466304211081,47.524518440661154,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444516,10.025439900002892,47.524618596262684,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444517,10.028105983326274,47.526136296283944,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444522,10.028508124872255,47.52578924411839,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444527,10.025172450005174,47.52423829629817,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444528,10.027481467219946,47.526111794470765,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444539,10.027193500000049,47.52623459627073,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444543,10.030713830594937,47.526312774943825,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444544,10.027283750000063,47.52619289627068,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444551,10.02764664998287,47.5263719963076,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444557,10.02712449998683,47.52662804628386,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444560,10.027859331576414,47.5257772300425,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444724,10.02600866697833,47.52744253767572,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444736,10.026533583246453,47.52702839655046,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444737,10.026902599992246,47.52687294628459,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444464,10.021462950028885,47.520225246281335,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444466,10.021327700002148,47.52045424625069,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444469,10.022431927813656,47.52067975061542,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444473,10.023605084494255,47.519357907261956,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444478,10.023533716644982,47.52180764606426,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444479,10.023411399395997,47.51979851550516,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444480,10.023745450022174,47.5216879463493,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444485,10.023760450001218,47.519703296261106,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444533,10.033829126223912,47.523353430212,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444535,10.033882375434116,47.52395874925365,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444536,10.034273932575509,47.523549394451315,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444537,10.032700100013498,47.52468279628957,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444538,10.033094900001633,47.52445274627274,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444540,10.033059195027278,47.52492676373816,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444541,10.034010247547863,47.52364286369428,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444542,10.034116380010143,47.5241031707734,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444552,10.033458349993984,47.524177946290635,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444553,10.033787262085756,47.524194532182854,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444554,10.033768722899676,47.52444409959984,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444556,10.034744431048573,47.52379075853212,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444559,10.033300713830638,47.524645721101834,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444562,10.03444378497286,47.52426027078301,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444564,10.03496458808668,47.52436996456396,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444565,10.034138750000842,47.524640346260945,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444567,10.033390854599727,47.52502124193437,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444568,10.034700765694119,47.52471597259204,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444569,10.034875959808176,47.52469869694947,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444571,10.035265850000572,47.52465529626661,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444572,10.033611285273818,47.52485317875184,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444573,10.034183283780319,47.52488057054176,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444574,10.033994100004797,47.52498014628227,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444575,10.035399489569297,47.5242692644978,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444576,10.035445700003072,47.52455724630228,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444577,10.03437863405351,47.52500832097543,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444579,10.034891650002276,47.5249377462482,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444580,10.03469265000355,47.52504754627692,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444582,10.035090415394713,47.52507677248538,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444583,10.035384509630363,47.52483402339261,33535,1172410000,0.4,False +BranchTee_mvgd_33535_lvgd_1172410000_building_444524,10.026318849962545,47.5268243463918,33535,1172410000,0.4,False +BusBar_mvgd_33535_lvgd_1172410001_LV,10.024231499999999,47.53182689624196,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_1,10.021285399999998,47.53544639624225,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_2,10.022188299999998,47.535589096242326,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_3,10.021285599999999,47.53580619624231,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_4,10.021602099999997,47.53596029624237,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_5,10.02333,47.53489319624225,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_6,10.024402000000002,47.533196796242116,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_7,10.024060699999993,47.53582199624235,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_8,10.0243162,47.53315879624212,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_9,10.023826400000004,47.53314339624206,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_10,10.024422800000005,47.53338349624211,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_11,10.0247528,47.53346429624213,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_12,10.022354700000003,47.53279569624204,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_13,10.0219546,47.53278799624207,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_14,10.023815600000006,47.533037196242084,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_15,10.023837999999998,47.533277196242096,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_16,10.023213999999996,47.533089896242096,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_17,10.021507600000001,47.53277469624206,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_18,10.022984999999997,47.53305289624206,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_19,10.022577099999998,47.5328417962421,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_20,10.0176755,47.532138396242,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_21,10.016207400000006,47.53135999624193,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_22,10.023838999999994,47.53290729624206,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_23,10.026436499999999,47.532600696242,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_24,10.024205299999998,47.532322896242036,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_25,10.026011699999996,47.532519496242045,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_26,10.026534700000001,47.53266149624205,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_27,10.0238945,47.53277949624208,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_28,10.025053999999999,47.532622496242034,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_29,10.024242799999993,47.53221619624197,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_30,10.025568799999995,47.532395296242015,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_31,10.022702400000004,47.530412696241854,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_32,10.021962399999994,47.53094039624191,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_33,10.023287500000004,47.53034639624186,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_34,10.022908600000001,47.53041019624186,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_35,10.022485800000002,47.5305375962419,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_36,10.022594599999998,47.53041069624181,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_37,10.022656499999995,47.53017199624183,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_38,10.023773699999994,47.53036299624181,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_39,10.022406499999997,47.53060909624184,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_40,10.023284700000001,47.53079769624187,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_41,10.024279300000002,47.53165939624193,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_42,10.024199900000001,47.530313296241815,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_43,10.023910000000003,47.5308746962419,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_44,10.024401999999995,47.5308071962419,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_45,10.024173499999998,47.530246096241804,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_46,10.024182600000003,47.53003709624181,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_47,10.024203400000001,47.52990609624178,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_48,10.023149500000004,47.53056679624188,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_49,10.022746651437075,47.53161619785081,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_50,10.020810600000003,47.531340596241954,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_51,10.015860399999998,47.52965049624177,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_52,10.014662900000001,47.5287874962417,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_53,10.020552900000006,47.531431296241905,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_54,10.021325800000003,47.53131449624192,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_55,10.021521199999997,47.53122779624197,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_56,10.015117599999996,47.52975139624182,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_57,10.022056,47.53181259624192,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_58,10.023338599999995,47.53149059624197,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_59,10.017622799999994,47.530330696241876,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_60,10.016088699999994,47.5297256962418,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_61,10.021742700000006,47.53177379624194,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_62,10.022481800000001,47.53187309624199,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_63,10.023615300000007,47.532360496242035,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_64,10.023494099999992,47.53229669624199,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_65,10.023212400000004,47.531939496241954,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_66,10.023000999999999,47.53193709624198,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_67,10.023491000000002,47.53191239624197,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_68,10.023905600000003,47.53184559624199,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_69,10.024650599999996,47.53187649624198,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_70,10.024545800000004,47.531833496241966,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_431659,10.014746584009893,47.528656397278574,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_431660,10.016183047684585,47.531478553805414,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_431662,10.015370842357775,47.52977997859128,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_431665,10.01575770002679,47.529839746314465,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_431667,10.017291455678388,47.53045157764012,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_431668,10.01582730655904,47.53002527699182,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_431669,10.017458737006324,47.53050187247534,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_431675,10.017716706421114,47.53233016764943,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444706,10.024334011198608,47.530209696523535,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444713,10.024508579159939,47.53025332867372,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444727,10.024471849987346,47.53042014626693,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444728,10.024693000000003,47.53034814624642,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444729,10.024839099996356,47.53049389625418,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444771,10.024601532891785,47.53165550606462,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444783,10.024846706316426,47.53183561394735,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444786,10.0245324925101,47.532108144954805,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444791,10.024434744391764,47.53253345677438,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444793,10.024876792416991,47.532376063817566,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444794,10.024889778260391,47.5320822125205,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444803,10.024428969563576,47.53293072879283,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444809,10.024665514511092,47.53316048899566,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444810,10.024570450000095,47.53330179630573,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444811,10.024878725191941,47.53304962653271,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444816,10.024885782661695,47.533306290296686,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444824,10.025512962372984,47.53260960894123,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444825,10.02580835806804,47.532752439202774,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444828,10.02608086790615,47.532717341387986,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444829,10.02566063774941,47.53268100349012,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444830,10.025128888734445,47.53281068586293,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444831,10.026228582946596,47.532788744721394,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444832,10.026376283423089,47.532860176047116,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444834,10.02630066737157,47.53245484764815,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444836,10.02520106155439,47.53316998948653,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444802,10.021388740363877,47.53567750148069,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444835,10.021459292485511,47.535990812025574,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444658,10.022028099996175,47.530208296275156,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444661,10.021503468793822,47.53096574887492,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444672,10.021744137328747,47.53066746888636,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444676,10.02190179124684,47.530710551341215,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444677,10.022313884404612,47.53028333195213,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444680,10.022163302913699,47.53095864914782,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444682,10.022920018948575,47.53016320000133,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444683,10.020849999999394,47.53119019626213,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444688,10.02361737482702,47.529998788886545,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444689,10.023338359923805,47.530223916606225,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444690,10.022339299999864,47.530451246287384,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444692,10.021336117077402,47.531181114543585,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444694,10.022818742452642,47.53033996650974,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444695,10.022746265472223,47.53057184138532,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444696,10.021793588957202,47.531290675889196,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444697,10.022380840490921,47.53095859185789,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444698,10.023711000017734,47.52981508846211,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444699,10.024095249999997,47.52977924626325,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444700,10.022564585355173,47.53081775283588,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444703,10.023974247567843,47.53000025216932,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444704,10.021501829636671,47.5319035434206,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444705,10.023839850000005,47.53020779629402,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444709,10.02340487560998,47.53051070075466,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444711,10.021945053749237,47.53197873388065,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444715,10.023177349995459,47.53085514625857,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444716,10.023253432621287,47.53103536268353,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444720,10.023483099995358,47.53129199625759,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444721,10.023718119901742,47.53088194320358,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444723,10.023003349992196,47.53137869627116,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444733,10.022514640290195,47.531471628086614,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444738,10.022955269117233,47.53174886725565,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444741,10.022363149991198,47.53204399629724,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444746,10.022760072021288,47.53213466016088,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444753,10.023498092499572,47.53166946129472,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444756,10.023149985419394,47.532215938451266,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444760,10.02358013246757,47.53207925049404,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444763,10.023968693346138,47.53155244230253,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444774,10.021763569566577,47.53290758982045,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444776,10.023907084979776,47.53201457080159,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444777,10.02171985000221,47.53262454627628,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444779,10.023920531161512,47.53233576442544,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444780,10.023191150010735,47.53331004628796,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444782,10.02151552483215,47.53319694858947,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444784,10.021768545601912,47.533161118006184,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444785,10.023563765051982,47.53337332217882,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444787,10.02368100187096,47.53257500104364,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444788,10.02215733649573,47.53318807873259,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444789,10.022449493074342,47.53299048450487,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444792,10.022910708342154,47.53286141899801,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444795,10.023292889402807,47.532531295423325,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444797,10.023008665640344,47.53285366443409,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444800,10.023260251408209,47.53287470238051,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444804,10.024064050001455,47.53303694630505,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444805,10.023594730660419,47.53282669055229,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444812,10.022818978555131,47.53323828346944,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444813,10.023825650017939,47.53587934628145,33535,1172410001,0.4,False +BranchTee_mvgd_33535_lvgd_1172410001_building_444814,10.022185956188512,47.53574478042795,33535,1172410001,0.4,False +BusBar_mvgd_33535_lvgd_1172410002_LV,10.024302799999996,47.52916379624174,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_1,10.025328999999996,47.52971699624175,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_2,10.025788700000001,47.52975949624179,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_3,10.024922799999993,47.52945199624177,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_4,10.025041899999994,47.52905869624173,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_5,10.031248600000005,47.52747019624157,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_6,10.0327695,47.526963496241514,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_7,10.031991499999995,47.52698489624154,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_8,10.0245203,47.52951009624173,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_9,10.026377,47.52926149624172,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_10,10.024225299999996,47.52951849624174,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_11,10.0253432,47.52937409624175,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_12,10.0260792,47.5299344962418,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_13,10.029204200000004,47.53042249624183,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_14,10.0257714,47.52996059624182,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_15,10.024218699999997,47.5296346962418,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_16,10.0246961,47.5299004962418,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_17,10.025097300000006,47.52975079624178,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_18,10.029700799999997,47.53024779624184,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_19,10.024880899999996,47.52955129624174,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_20,10.032528100000002,47.527017696241565,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_21,10.026959600000003,47.52917999624173,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_22,10.027160799999995,47.52908579624174,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_23,10.026295300000003,47.52927039624172,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_24,10.024839400000001,47.52982949624178,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_25,10.024743999999997,47.5286991962417,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_26,10.025489800000004,47.528292596241656,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_27,10.025064800000003,47.528391796241664,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_28,10.025590300000005,47.52823729624167,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_29,10.024360699999997,47.52908759624173,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_30,10.025007199999992,47.5278445962416,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_31,10.021810500000003,47.52923449624171,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_32,10.0228568,47.52930879624177,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_33,10.022259800000002,47.52798889624158,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_34,10.022422099999993,47.528074796241626,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_35,10.021199099999999,47.52750879624162,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_36,10.0224777,47.528447596241655,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_37,10.022529299999995,47.52827019624167,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_38,10.022427199999992,47.528600796241705,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_39,10.021878100000006,47.52603269624145,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_40,10.023231000000004,47.52820609624163,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_41,10.022774399999996,47.52981959624182,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_42,10.022878999999998,47.52959759624177,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_43,10.022885899999995,47.52943599624173,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_44,10.022853499999995,47.52906929624168,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_45,10.0228955,47.52890599624167,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_46,10.023074999999999,47.52896149624171,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_47,10.023292699999997,47.528455996241675,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_48,10.023795299999993,47.52910259624178,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_49,10.023467199999995,47.52905489624168,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_50,10.022584500000002,47.52879829624168,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_51,10.022431699999995,47.52907899624171,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_52,10.022333649624223,47.529271647495754,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_53,10.020913299999995,47.52756609624161,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_54,10.023311800000007,47.52838089624168,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444641,10.024774424784976,47.529054919073445,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444650,10.024528338687684,47.52935878517968,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444685,10.024768949995089,47.52854704628559,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444686,10.024392114312713,47.528763697889104,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444687,10.024955183924748,47.52882069740989,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444693,10.02458155000628,47.52911834629005,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444707,10.024735100007943,47.529655246273414,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444714,10.02479961994012,47.530078363785776,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444718,10.024893708969861,47.52997434148755,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444731,10.02525874609794,47.52787449670661,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444732,10.025636031684037,47.52815424998782,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444740,10.026310800005843,47.528930046287414,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444742,10.026111975278717,47.529164141209804,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444743,10.026763773564355,47.52881350059622,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444745,10.025145711456144,47.528580656891734,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444747,10.025452523458352,47.52881803893619,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444748,10.025816043168374,47.5287675983847,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444749,10.025312599899186,47.52923224633825,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444750,10.026517876331,47.52913957022339,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444751,10.026725010813951,47.52910074681912,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444752,10.02704058316756,47.52903659673736,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444755,10.025896400000857,47.52916169628283,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444758,10.029672407422868,47.5273371947566,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444759,10.029827639886632,47.527306677384416,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444764,10.02988893551011,47.53025026600378,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444765,10.02943061765898,47.530506426426506,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444766,10.025648731815034,47.53000494623114,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444767,10.026195909175113,47.529823961557156,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444838,10.032553749997145,47.52706174625524,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444842,10.032968899990385,47.5270308462695,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444845,10.032133129908537,47.527066967881424,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444487,10.021877499979716,47.52616024628516,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444629,10.021004800000389,47.52747194624771,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444630,10.022250373836036,47.52827365033013,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444632,10.022210600000536,47.528484346273196,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444636,10.02156473497653,47.528969222079304,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444638,10.021599350007229,47.52926599628307,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444639,10.021870932719386,47.52937726839517,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444640,10.020775125484871,47.52761669303924,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444642,10.023531388808145,47.52864814567167,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444644,10.02228845000017,47.52907429637833,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444645,10.022030677915012,47.52936147498267,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444646,10.02242994999966,47.52786944626754,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444647,10.022755274836603,47.52799964143594,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444648,10.023323099999994,47.52806324626409,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444649,10.022591034185261,47.52920242596224,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444651,10.022662970140262,47.52902201040693,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444652,10.022484245100356,47.52938192196093,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444653,10.022722999991117,47.52828284627241,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444654,10.022718955173774,47.528569882146414,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444656,10.022334200000202,47.52858469624793,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444657,10.022620950905434,47.5294836068547,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444659,10.022631759840523,47.52958548539707,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444660,10.02305028012091,47.528251188098615,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444662,10.023499160413548,47.5283566568211,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444663,10.023012332244901,47.52907581216953,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444664,10.0233955000003,47.52896594624842,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444665,10.023588200000935,47.52893874627124,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444666,10.023251767961936,47.528684220974874,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444669,10.023292112642055,47.5288791265546,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444670,10.023449067342643,47.529210819762746,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444671,10.02303755000337,47.5292775962598,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444674,10.022350050000975,47.52979724636293,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444675,10.022938781326152,47.52991531469116,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444678,10.023097825434373,47.52955777749231,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444681,10.024032285387158,47.52889941748253,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444684,10.023475850000741,47.52967344625063,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444691,10.024006912492728,47.52899752861861,33535,1172410002,0.4,False +BranchTee_mvgd_33535_lvgd_1172410002_building_444717,10.023783443951293,47.52961865689981,33535,1172410002,0.4,False +BusBar_mvgd_33535_lvgd_1172430000_LV,10.040297599999995,47.522345496241094,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_1,10.0411737,47.522446996241115,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_2,10.040536699999999,47.52226849624113,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_3,10.0410797,47.52206519624106,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_4,10.039417400000005,47.522368396241106,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_5,10.038031700000007,47.52167859624104,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_6,10.039540199999996,47.52277189624116,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_building_444566,10.040370300005193,47.522433046265725,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_building_444578,10.041102630615764,47.52233819319688,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_building_444591,10.038022831644493,47.521586494878775,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_building_444597,10.040700902597791,47.52196696232094,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_building_444600,10.039899748014024,47.52278719177581,33535,1172430000,0.4,False +BranchTee_mvgd_33535_lvgd_1172430000_building_444604,10.041016959043139,47.52333406589539,33535,1172430000,0.4,False +BusBar_mvgd_33535_lvgd_1172440000_LV,10.045975599999997,47.52399479624128,33535,1172440000,0.4,False +BranchTee_mvgd_33535_lvgd_1172440000_1,10.046000599999996,47.52409139624131,33535,1172440000,0.4,False +BranchTee_mvgd_33535_lvgd_1172440000_building_444615,10.04586895827317,47.524112767798755,33535,1172440000,0.4,False +BranchTee_mvgd_33535_lvgd_1172440000_building_444619,10.04596457672215,47.523833847140395,33535,1172440000,0.4,False +BranchTee_mvgd_33535_lvgd_1172440000_building_444620,10.046066294381768,47.52394187363385,33535,1172440000,0.4,False +BusBar_mvgd_33535_lvgd_1172710000_LV,10.036098400000006,47.5479147962434,33535,1172710000,0.4,False +BranchTee_mvgd_33535_lvgd_1172710000_1,10.036733600000005,47.547742396243365,33535,1172710000,0.4,False +BranchTee_mvgd_33535_lvgd_1172710000_building_444985,10.036075699999557,47.547843446249765,33535,1172710000,0.4,False +BranchTee_mvgd_33535_lvgd_1172710000_building_444987,10.036358226693853,47.547964142025236,33535,1172710000,0.4,False +BranchTee_mvgd_33535_lvgd_1172710000_building_444990,10.036708296535181,47.547895968438084,33535,1172710000,0.4,False +BusBar_mvgd_33535_lvgd_1172750000_LV,10.029131799999996,47.52199289624106,33535,1172750000,0.4,False +BranchTee_mvgd_33535_lvgd_1172750000_building_444519,10.029424200021836,47.52213244629488,33535,1172750000,0.4,False +BusBar_mvgd_33535_lvgd_1172800000_LV,10.032533199999994,47.5201094962409,33535,1172800000,0.4,False +BranchTee_mvgd_33535_lvgd_1172800000_building_444525,10.032539424906318,47.51981720167042,33535,1172800000,0.4,False +BranchTee_mvgd_33535_lvgd_1172800000_building_444530,10.032385631534533,47.519984896394725,33535,1172800000,0.4,False +BusBar_mvgd_33535_lvgd_1173300000_LV,10.032806700000002,47.54786329624343,33535,1173300000,0.4,False +BranchTee_mvgd_33535_lvgd_1173300000_building_444973,10.033094871681627,47.54788727096989,33535,1173300000,0.4,False +BusBar_mvgd_33535_lvgd_1176060000_LV,10.041373199999999,47.5492303962435,33535,1176060000,0.4,False +BranchTee_mvgd_33535_lvgd_1176060000_building_445950,10.041225318939833,47.54934303783623,33535,1176060000,0.4,False +BranchTee_mvgd_33535_lvgd_1176060000_building_446228,10.041548768597277,47.54909061181894,33535,1176060000,0.4,False +BusBar_mvgd_33535_lvgd_1176320000_LV,10.044431200000002,47.520851296240956,33535,1176320000,0.4,False +BranchTee_mvgd_33535_lvgd_1176320000_1,10.041816399999998,47.52007819624095,33535,1176320000,0.4,False +BranchTee_mvgd_33535_lvgd_1176320000_2,10.043629599999994,47.519076496240814,33535,1176320000,0.4,False +BranchTee_mvgd_33535_lvgd_1176320000_building_444616,10.043510500001982,47.51905109625182,33535,1176320000,0.4,False +BranchTee_mvgd_33535_lvgd_1176320000_building_34328622,10.044273288172517,47.52003432301617,33535,1176320000,0.4,False +BranchTee_mvgd_33535_lvgd_1176320000_building_34328623,10.045060002523103,47.51998398147169,33535,1176320000,0.4,False +BranchTee_mvgd_33535_lvgd_1176320000_building_34328624,10.045048120618564,47.52020725732455,33535,1176320000,0.4,False +BusBar_mvgd_33535_lvgd_1176330000_LV,10.0458033,47.51696909624063,33535,1176330000,0.4,False +BranchTee_mvgd_33535_lvgd_1176330000_building_444613,10.045760447689958,47.51740787622341,33535,1176330000,0.4,False +BusBar_mvgd_33535_lvgd_1176460000_LV,10.040137799999998,47.53328529624212,33535,1176460000,0.4,False +BranchTee_mvgd_33535_lvgd_1176460000_1,10.042069299999998,47.53118829624196,33535,1176460000,0.4,False +BranchTee_mvgd_33535_lvgd_1176460000_building_444849,10.037626799994149,47.53304354633651,33535,1176460000,0.4,False +BranchTee_mvgd_33535_lvgd_1176460000_building_444857,10.039897974412513,47.533291827955765,33535,1176460000,0.4,False +BranchTee_mvgd_33535_lvgd_1176460000_building_445003,10.04190014998923,47.53133199636196,33535,1176460000,0.4,False +BusBar_mvgd_33535_lvgd_1176560000_LV,10.042503699999997,47.537140996242435,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_1,10.040532200000003,47.536307796242376,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_2,10.039934800000001,47.53597799624236,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_3,10.040022499999992,47.536024796242394,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_4,10.045623200000001,47.53777139624254,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_5,10.044868999999997,47.53701069624246,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_6,10.044979500000002,47.53720389624246,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_7,10.044628100000002,47.53740489624244,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_8,10.045081400000008,47.53746649624248,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_9,10.042870899999995,47.53668409624241,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_10,10.043892200000004,47.5366046962424,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_11,10.044170600000003,47.536747496242405,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_12,10.0440461,47.53695019624244,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_13,10.0428453,47.53876969624257,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_14,10.043044899999991,47.53875739624261,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_15,10.041793299999998,47.53854309624258,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_16,10.0424287,47.537548696242524,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_17,10.041673000000005,47.538092596242514,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_18,10.041452799999995,47.538151896242546,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_444847,10.03969852034931,47.53594982441468,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_444853,10.04006238736667,47.53623526902197,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_444988,10.041417181820865,47.53828181609229,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_445010,10.043556399990953,47.536721496274566,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_445013,10.04371820685196,47.53664934542272,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_445017,10.04389519784497,47.537030446760255,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_445019,10.04206669960398,47.53850602997704,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_445036,10.044657921553679,47.537300711277254,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_445039,10.045144799994493,47.53723749627302,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_445042,10.045176849994494,47.53734554627292,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_445048,10.045439803406266,47.53776337565402,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_34328652,10.041214680154853,47.53607734556965,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_34328653,10.041926615420305,47.536120540616416,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_34328654,10.042038750178303,47.53608893817889,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_34328658,10.043325792000617,47.53810694274424,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_34328659,10.04271659751244,47.53822049173024,33535,1176560000,0.4,False +BranchTee_mvgd_33535_lvgd_1176560000_building_34328660,10.043384822583384,47.537873808057206,33535,1176560000,0.4,False +BusBar_mvgd_33535_lvgd_1179290000_LV,10.052457218059649,47.50353283407351,33535,1179290000,0.4,False +BranchTee_mvgd_33535_lvgd_1179290000_building_444339,10.052457218059649,47.50353283407351,33535,1179290000,0.4,False +BusBar_mvgd_33535_lvgd_1182190000_LV,10.0559142,47.551425396243694,33535,1182190000,0.4,False +BranchTee_mvgd_33535_lvgd_1182190000_1,10.055750299999996,47.551668196243746,33535,1182190000,0.4,False +BranchTee_mvgd_33535_lvgd_1182190000_building_34328685,10.055887305887195,47.55139465912342,33535,1182190000,0.4,False +BranchTee_mvgd_33535_lvgd_1182190000_building_34328686,10.055987955138754,47.55171078520471,33535,1182190000,0.4,False +BranchTee_mvgd_33535_lvgd_1182190000_building_34328687,10.056941896860488,47.55171768968559,33535,1182190000,0.4,False +BusBar_mvgd_33535_lvgd_1182340000_LV,10.061261999999997,47.55077909624365,33535,1182340000,0.4,False +BranchTee_mvgd_33535_lvgd_1182340000_1,10.060847100000002,47.55115819624369,33535,1182340000,0.4,False +BranchTee_mvgd_33535_lvgd_1182340000_2,10.061142999999996,47.5509362962437,33535,1182340000,0.4,False +BranchTee_mvgd_33535_lvgd_1182340000_building_446311,10.061474533859258,47.55086795747276,33535,1182340000,0.4,False +BranchTee_mvgd_33535_lvgd_1182340000_building_446312,10.0605918789901,47.55082229963759,33535,1182340000,0.4,False +BranchTee_mvgd_33535_lvgd_1182340000_building_446313,10.06090809999781,47.5509781462554,33535,1182340000,0.4,False +BranchTee_mvgd_33535_lvgd_1182340000_building_446318,10.061002178327964,47.55072120271452,33535,1182340000,0.4,False +BusBar_mvgd_33535_lvgd_1184650000_LV,10.065379699999998,47.50929659623996,33535,1184650000,0.4,False +BranchTee_mvgd_33535_lvgd_1184650000_building_445056,10.065421500002595,47.50913729628133,33535,1184650000,0.4,False +BranchTee_mvgd_33535_lvgd_1184650000_building_445057,10.065171372422327,47.50938641432082,33535,1184650000,0.4,False +BusBar_mvgd_33535_lvgd_1185140000_LV,10.066793690589224,47.496823412565696,33535,1185140000,0.4,False +BranchTee_mvgd_33535_lvgd_1185140000_building_444438,10.066793690589224,47.496823412565696,33535,1185140000,0.4,False +BusBar_mvgd_33535_lvgd_1186110000_LV,10.0781729,47.4601707962354,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_1,10.075233700000004,47.46016419623538,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_2,10.075614099999996,47.460173696235366,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_3,10.077101800000001,47.46030229623538,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_4,10.077554000000008,47.46033149623539,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_5,10.077770300000001,47.46036909623536,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_6,10.078043499999993,47.460513996235456,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_7,10.080368300000004,47.46116889623547,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_8,10.080873399999998,47.461422796235524,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_9,10.081013399999996,47.46147979623551,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_10,10.0780289,47.46020019623542,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_11,10.074820499999996,47.46005289623538,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_12,10.078551200000003,47.45992399623537,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_13,10.078772199999998,47.45952329623531,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_14,10.0788333,47.45941519623528,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_15,10.078886000000006,47.45932189623534,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_16,10.0789731,47.45925389623529,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_17,10.079314599999998,47.45919509623528,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_18,10.079636099999998,47.45900039623526,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_19,10.078798999999997,47.45992399623537,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_20,10.079321299999998,47.459785896235346,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_21,10.079451900000006,47.45971349623531,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_22,10.079336400000008,47.4595264962353,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_23,10.079023500000003,47.459463696235325,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422699,10.07500087533002,47.45990087202393,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422700,10.074599950011214,47.46015469625085,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422706,10.078680057347183,47.45941859727809,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422707,10.075296654808081,47.460039047182285,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422709,10.07903580780688,47.45936867618302,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422711,10.075787060071402,47.45996645871115,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422712,10.079133260525836,47.45939101585434,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422716,10.079249778228498,47.459414368751084,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422717,10.078029088294167,47.460018199860365,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422718,10.07927017917089,47.458998788936896,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422719,10.079370618513785,47.45900980582938,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422722,10.078452413762895,47.45941756872113,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422723,10.078567846235504,47.45941767170683,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422724,10.079209903541027,47.4587026229123,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422725,10.079325197217791,47.458693097638644,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422728,10.079454103315241,47.45944264608317,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422729,10.079426491866341,47.45868637160157,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422733,10.078173794099834,47.460363288492225,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422734,10.078692863257478,47.4591698155983,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422736,10.078784279302987,47.459821015538786,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422737,10.077558718005715,47.4598699799227,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422738,10.077301850001898,47.46021954624326,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422739,10.077502874360945,47.46014889862081,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422740,10.077616090451436,47.46024476651535,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422741,10.078792480021814,47.45918395283947,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422744,10.078896610529696,47.45981472920969,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422748,10.07922175181123,47.45971866335773,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422757,10.079391001238083,47.459627163075524,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_422765,10.079319409494373,47.45968125588785,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_444330,10.08018690521597,47.46130074476384,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_444334,10.080571400001068,47.4616041962422,33535,1186110000,0.4,False +BranchTee_mvgd_33535_lvgd_1186110000_building_444338,10.080945793564062,47.4616164236589,33535,1186110000,0.4,False +BusBar_mvgd_33535_lvgd_1186120000_LV,10.093199999999996,47.46412419623574,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_1,10.08738439999999,47.46308379623566,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_2,10.085768499999995,47.462260596235595,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_3,10.088912700000002,47.463470196235676,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_4,10.090274699999995,47.463520896235686,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_5,10.0907845,47.46357379623574,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_6,10.091154099999994,47.463629796235686,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_7,10.089460099999995,47.46341929623569,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_8,10.089762900000006,47.463394496235665,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_9,10.090521100000005,47.46331209623572,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_10,10.086533000000006,47.462401996235606,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_11,10.093333000000003,47.46417889623579,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_12,10.0929535,47.46485509623582,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_13,10.093683599999997,47.46483239623579,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_14,10.093985299999998,47.46443349623581,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_15,10.092557500000002,47.46394879623571,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_16,10.092850600000006,47.464065496235754,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_17,10.093143700000004,47.46419319623573,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_18,10.091823600000003,47.465258696235885,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_19,10.093445399999993,47.46408099623573,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444346,10.085107021344212,47.46215543343433,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444353,10.086776284213798,47.46237336617522,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444358,10.09351994760257,47.463883064812606,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444359,10.087221795881588,47.46323078951298,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444360,10.086322964693032,47.46229152506687,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444362,10.093134284260698,47.46429514742613,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444363,10.086451815987887,47.46249577626584,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444364,10.09261355001072,47.46464329626896,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444365,10.088877364169344,47.46366671414624,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444366,10.089478950000002,47.46335204623836,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444368,10.089747096230699,47.46324359087242,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444373,10.09198651952527,47.46532214972314,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444374,10.090733600079071,47.46323379633528,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444377,10.089758775274063,47.46376334233826,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444379,10.09017280415298,47.46386286094757,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444380,10.091869306614386,47.46541003146964,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444382,10.093819332946795,47.464735495944225,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444386,10.090659150000794,47.463844296279134,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444421,10.092399500011089,47.46405919631745,33535,1186120000,0.4,False +BranchTee_mvgd_33535_lvgd_1186120000_building_444422,10.092741217152966,47.46414184961644,33535,1186120000,0.4,False +BusBar_mvgd_33535_lvgd_1186620000_LV,10.076023899999992,47.55100299624363,33535,1186620000,0.4,False +BranchTee_mvgd_33535_lvgd_1186620000_1,10.076089100000003,47.55102819624371,33535,1186620000,0.4,False +BranchTee_mvgd_33535_lvgd_1186620000_2,10.075905799999992,47.550973996243656,33535,1186620000,0.4,False +BranchTee_mvgd_33535_lvgd_1186620000_building_446611,10.075898699998548,47.551036796255545,33535,1186620000,0.4,False +BranchTee_mvgd_33535_lvgd_1186620000_building_446616,10.0760660755606,47.55092495040676,33535,1186620000,0.4,False +BranchTee_mvgd_33535_lvgd_1186620000_building_446618,10.07614243768055,47.551225037325246,33535,1186620000,0.4,False +BusBar_mvgd_33535_lvgd_1192280000_LV,10.106713927889984,47.47333964308403,33535,1192280000,0.4,False +BranchTee_mvgd_33535_lvgd_1192280000_building_444428,10.106713927889984,47.47333964308403,33535,1192280000,0.4,False +BusBar_mvgd_33535_lvgd_1193510000_LV,10.096039900000005,47.44450929623392,33535,1193510000,0.4,False +BranchTee_mvgd_33535_lvgd_1193510000_building_422776,10.095888600002286,47.44466084629291,33535,1193510000,0.4,False +BusBar_mvgd_33535_lvgd_1195620000_LV,10.103981500000007,47.465726496235916,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_1,10.102818999999997,47.46577789623593,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_2,10.102365499999994,47.46579099623594,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_3,10.102485799999998,47.46578749623589,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_4,10.102639000000002,47.46547129623587,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_5,10.103256000000005,47.46575189623597,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_6,10.1040912,47.46537619623589,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_7,10.1035863,47.465278396235895,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_8,10.104228800000003,47.46534289623588,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_9,10.104703199999998,47.46532629623588,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_10,10.104512000000009,47.4653293962359,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_11,10.103995600000003,47.46556929623591,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_12,10.105004100000004,47.46589949623591,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_13,10.104228700000004,47.465940496235945,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_14,10.105089399999999,47.46590719623588,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_15,10.1042315,47.46572099623589,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_16,10.104069599999994,47.46598739623591,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_17,10.103849300000004,47.46618079623597,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444399,10.104264930490427,47.46560796441886,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444400,10.104544184648642,47.46543297106308,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444408,10.103772075179121,47.46591666454188,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444409,10.103604170612314,47.466161971538405,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444410,10.104430930509778,47.465989933640394,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444412,10.10227799705324,47.46557892932345,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444413,10.104682399996461,47.465239146246,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444416,10.102842470407381,47.4654737387463,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444419,10.10291980130821,47.46588381727913,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444423,10.104758284706216,47.466193719614765,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444424,10.102644349996698,47.46595884631719,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444425,10.10322317563022,47.465903628532054,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444426,10.10491990644027,47.466080988659726,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444429,10.103753986842701,47.46517196812243,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444433,10.105285602933648,47.466155552217415,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444436,10.10377002481007,47.465552891482616,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_444439,10.104249661187405,47.4652378406293,33535,1195620000,0.4,False +BranchTee_mvgd_33535_lvgd_1195620000_building_34967319,10.104664599999989,47.4652735962359,33535,1195620000,0.4,False +BusBar_mvgd_33535_lvgd_1195900000_LV,10.102351329541532,47.46034674424677,33535,1195900000,0.4,False +BranchTee_mvgd_33535_lvgd_1195900000_building_422764,10.102351329541532,47.46034674424677,33535,1195900000,0.4,False +BusBar_mvgd_33535_lvgd_1196330000_LV,10.112035199999998,47.46599449623593,33535,1196330000,0.4,False +BranchTee_mvgd_33535_lvgd_1196330000_1,10.111527199999996,47.466134796235956,33535,1196330000,0.4,False +BranchTee_mvgd_33535_lvgd_1196330000_building_445123,10.111593381761631,47.46592273950936,33535,1196330000,0.4,False +BranchTee_mvgd_33535_lvgd_1196330000_building_445130,10.11217055000584,47.46608429624739,33535,1196330000,0.4,False +BusBar_mvgd_33535_lvgd_1197550000_LV,10.111815571053565,47.56507186743076,33535,1197550000,0.4,False +BranchTee_mvgd_33535_lvgd_1197550000_building_448106,10.111815571053565,47.56507186743076,33535,1197550000,0.4,False +BusBar_mvgd_33535_lvgd_1197640000_LV,10.118035699999993,47.462886696235664,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_1,10.119308200000003,47.46660619623599,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_2,10.114228000000006,47.46410099623573,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_3,10.115602099999998,47.46366259623573,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_4,10.116079600000006,47.463572496235734,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_5,10.115757299999997,47.46269649623565,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_6,10.116300300000004,47.462514596235636,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_7,10.117206000000001,47.46323349623563,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_8,10.116823699999998,47.46365049623573,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_9,10.116944299999993,47.46390979623574,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_10,10.117135999999999,47.46466209623581,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_11,10.117242900000004,47.46345509623571,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_12,10.116009099999996,47.46554279623589,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_13,10.116468299999994,47.46528079623588,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_14,10.1167729,47.465044796235865,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_15,10.1169223,47.46485209623584,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_16,10.119006699999996,47.4624933962356,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_17,10.120170199999999,47.46208949623555,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_18,10.119298,47.46274059623562,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_19,10.119574299999996,47.46282869623566,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_20,10.120027599999993,47.461627596235545,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_21,10.119233600000006,47.46162579623556,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_22,10.119276599999997,47.461609496235546,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_23,10.119304800000004,47.46302459623565,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_24,10.119747299999998,47.46289609623566,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_25,10.119118299999995,47.46175459623555,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_26,10.119045900000001,47.46179629623554,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_27,10.118898399999997,47.46182529623556,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_28,10.118616700000004,47.46187429623556,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_422867,10.118209127698204,47.46025117323171,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445124,10.11787071925248,47.463496080042745,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445125,10.118894244251416,47.46150571966894,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445127,10.114618399922895,47.464335296341964,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445128,10.114776349960751,47.46473654633261,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445129,10.116671808765307,47.46371854575953,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445134,10.115518699994519,47.46262204627483,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445136,10.116697642896796,47.46392274818663,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445137,10.118798920264743,47.461561620103545,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445140,10.116819799987825,47.46410999627713,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445143,10.116275180954979,47.4626062485222,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445144,10.116591149989969,47.464975946334924,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445146,10.116764167338369,47.4647909816416,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445147,10.117189765872267,47.463748197870274,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445148,10.116571649987012,47.46248954627517,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445150,10.118547868251207,47.461736584625335,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445151,10.11799390700176,47.463177501508035,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445153,10.119044949983367,47.46193554626137,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445156,10.115886954419837,47.465367663011286,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445157,10.116271236727554,47.46521943049519,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445159,10.118970200007569,47.4666964962862,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445162,10.118634017662497,47.46201406113009,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445164,10.116321550000992,47.46562069629359,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445166,10.119488477897244,47.46192599894735,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445169,10.119991679203343,47.46150796157359,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445179,10.12011617733429,47.461920052336,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445203,10.118432994575295,47.46362146851073,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445206,10.11925133537995,47.46312652772999,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445219,10.119935499647374,47.46284233613432,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445189,10.119683068777768,47.462614441502886,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445193,10.119763552924478,47.46271721807158,33535,1197640000,0.4,False +BranchTee_mvgd_33535_lvgd_1197640000_building_445198,10.118507520957008,47.46335916158485,33535,1197640000,0.4,False +BusBar_mvgd_33535_lvgd_1198790000_LV,10.11213156404492,47.45379599917682,33535,1198790000,0.4,False +BranchTee_mvgd_33535_lvgd_1198790000_building_422884,10.111907712108756,47.453830925585656,33535,1198790000,0.4,False +BranchTee_mvgd_33535_lvgd_1198790000_building_422889,10.112258431752162,47.453776204468355,33535,1198790000,0.4,False +BusBar_mvgd_33535_lvgd_1199190000_LV,10.114194200000002,47.56238169624468,33535,1199190000,0.4,False +BranchTee_mvgd_33535_lvgd_1199190000_1,10.114723399999995,47.56262329624471,33535,1199190000,0.4,False +BranchTee_mvgd_33535_lvgd_1199190000_2,10.113524900000002,47.5624878962447,33535,1199190000,0.4,False +BranchTee_mvgd_33535_lvgd_1199190000_building_448113,10.113344745368533,47.56236098842158,33535,1199190000,0.4,False +BranchTee_mvgd_33535_lvgd_1199190000_building_448118,10.113470354985399,47.562351462339635,33535,1199190000,0.4,False +BranchTee_mvgd_33535_lvgd_1199190000_building_448121,10.114429565771463,47.5623104679432,33535,1199190000,0.4,False +BranchTee_mvgd_33535_lvgd_1199190000_building_448127,10.114865250023545,47.562520846335985,33535,1199190000,0.4,False +BranchTee_mvgd_33535_lvgd_1199190000_building_448131,10.114769147424523,47.56285851450456,33535,1199190000,0.4,False +BusBar_mvgd_33535_lvgd_1199590000_LV,10.115115900000001,47.54484219624309,33535,1199590000,0.4,False +BranchTee_mvgd_33535_lvgd_1199590000_1,10.1154002,47.54473719624311,33535,1199590000,0.4,False +BranchTee_mvgd_33535_lvgd_1199590000_building_34328667,10.11531565868121,47.544410366811114,33535,1199590000,0.4,False +BranchTee_mvgd_33535_lvgd_1199590000_building_34328668,10.114515064480992,47.54490275153684,33535,1199590000,0.4,False +BranchTee_mvgd_33535_lvgd_1199590000_building_34328669,10.115035290719899,47.54483936567325,33535,1199590000,0.4,False +BusBar_mvgd_33535_lvgd_1200790000_LV,10.122408699950109,47.458826896343886,33535,1200790000,0.4,False +BranchTee_mvgd_33535_lvgd_1200790000_building_422874,10.122408699950109,47.458826896343886,33535,1200790000,0.4,False +BusBar_mvgd_33535_lvgd_1200800000_LV,10.124696899999998,47.46087769623543,33535,1200800000,0.4,False +BranchTee_mvgd_33535_lvgd_1200800000_1,10.125139699999995,47.46060769623539,33535,1200800000,0.4,False +BranchTee_mvgd_33535_lvgd_1200800000_building_422898,10.12487492890233,47.46093080052908,33535,1200800000,0.4,False +BranchTee_mvgd_33535_lvgd_1200800000_building_445229,10.125125749992383,47.461038946318034,33535,1200800000,0.4,False +BusBar_mvgd_33535_lvgd_1200820000_LV,10.127972999999997,47.45895099623527,33535,1200820000,0.4,False +BranchTee_mvgd_33535_lvgd_1200820000_1,10.1277503,47.459092496235286,33535,1200820000,0.4,False +BranchTee_mvgd_33535_lvgd_1200820000_2,10.129566900000006,47.45754389623515,33535,1200820000,0.4,False +BranchTee_mvgd_33535_lvgd_1200820000_building_422888,10.129188585115726,47.45755947628894,33535,1200820000,0.4,False +BranchTee_mvgd_33535_lvgd_1200820000_building_422899,10.128018214759912,47.45934069940668,33535,1200820000,0.4,False +BranchTee_mvgd_33535_lvgd_1200820000_building_422900,10.128267755814575,47.459216574551625,33535,1200820000,0.4,False +BranchTee_mvgd_33535_lvgd_1200820000_building_422905,10.129039649951231,47.460088146305914,33535,1200820000,0.4,False +BusBar_mvgd_33535_lvgd_1201610000_LV,10.123861900000003,47.56404329624482,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_1,10.122491599999998,47.564615896244874,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_2,10.122310099999998,47.564518696244875,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_3,10.1251533,47.56434429624487,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_4,10.125348400000002,47.56456799624485,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_building_448135,10.122328757626581,47.56433169829944,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_building_448136,10.12250440002198,47.56472704629207,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_building_448138,10.122670973343965,47.56451227891304,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_building_448144,10.12370390093763,47.56402673793879,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_building_448146,10.123724449999637,47.56414059624916,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_building_448153,10.125025400002528,47.56427759634103,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_building_448155,10.125394362553495,47.56435816466374,33535,1201610000,0.4,False +BranchTee_mvgd_33535_lvgd_1201610000_building_448158,10.125462121075056,47.56453140199108,33535,1201610000,0.4,False +BusBar_mvgd_33535_lvgd_1202720000_LV,10.1247248,47.55791649624429,33535,1202720000,0.4,False +BranchTee_mvgd_33535_lvgd_1202720000_1,10.126657900000005,47.558414096244356,33535,1202720000,0.4,False +BranchTee_mvgd_33535_lvgd_1202720000_building_448095,10.121290297394095,47.55763573678401,33535,1202720000,0.4,False +BranchTee_mvgd_33535_lvgd_1202720000_building_448099,10.12086877085475,47.55755205513024,33535,1202720000,0.4,False +BranchTee_mvgd_33535_lvgd_1202720000_building_448100,10.122014716728541,47.55769477441065,33535,1202720000,0.4,False +BranchTee_mvgd_33535_lvgd_1202720000_building_448101,10.122029150004703,47.557891146270755,33535,1202720000,0.4,False +BranchTee_mvgd_33535_lvgd_1202720000_building_34328715,10.126813273385709,47.558775571636325,33535,1202720000,0.4,False +BranchTee_mvgd_33535_lvgd_1202720000_building_34328716,10.126910302710456,47.55913368540695,33535,1202720000,0.4,False +BusBar_mvgd_33535_lvgd_1204030000_LV,10.130638155610297,47.53085837400748,33535,1204030000,0.4,False +BranchTee_mvgd_33535_lvgd_1204030000_building_34328646,10.13089554839512,47.53083521499085,33535,1204030000,0.4,False +BranchTee_mvgd_33535_lvgd_1204030000_building_34328647,10.130768712916122,47.53069889531684,33535,1204030000,0.4,False +BranchTee_mvgd_33535_lvgd_1204030000_building_34328648,10.13019318268463,47.53105926781657,33535,1204030000,0.4,False +BusBar_mvgd_33535_lvgd_1205360000_LV,10.134432452294615,47.413320640977645,33535,1205360000,0.4,False +BranchTee_mvgd_33535_lvgd_1205360000_building_34328494,10.133780497141077,47.41346099314214,33535,1205360000,0.4,False +BranchTee_mvgd_33535_lvgd_1205360000_building_34328495,10.135005272949286,47.413140894895456,33535,1205360000,0.4,False +BranchTee_mvgd_33535_lvgd_1205360000_building_34328496,10.134828127629966,47.41326718954183,33535,1205360000,0.4,False diff --git a/tests/data/ding0_test_network_3/generators.csv b/tests/data/ding0_test_network_3/generators.csv index 81a775864..2599b33ba 100644 --- a/tests/data/ding0_test_network_3/generators.csv +++ b/tests/data/ding0_test_network_3/generators.csv @@ -1,404 +1,399 @@ -name,bus,control,p_nom,type,weather_cell_id,subtype -MV_33532_slack,Busbar_mvgd_33532_MV,Slack,0,station,,mv_station -Generator_mvgd_33532_pv_rooftop_160,Bus_mvgd_33532_gen_160,PQ,0.08,solar,11051,pv_rooftop -Generator_mvgd_33532_biomass_392,Bus_mvgd_33532_gen_392,PQ,0.725,biomass,,unknown -Generator_mvgd_33532_water_393,Bus_mvgd_33532_gen_393,PQ,0.2,water,,unknown -Generator_mvgd_33532_water_394,Bus_mvgd_33532_gen_394,PQ,0.464,water,,unknown -Generator_mvgd_33532_water_395,Bus_mvgd_33532_gen_395,PQ,0.093,water,,unknown -Generator_mvgd_33532_water_396,Bus_mvgd_33532_gen_396,PQ,0.48,water,,unknown -Generator_mvgd_33532_water_397,Bus_mvgd_33532_gen_397,PQ,1.11,water,,unknown -Generator_mvgd_33532_lvgd_1140900000_pv_rooftop_199,BranchTee_mvgd_33532_lvgd_1140900000_building_444312,PQ,0.039,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_109,BranchTee_mvgd_33532_lvgd_1150350000_building_430954,PQ,0.040299999999999996,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_130,BranchTee_mvgd_33532_lvgd_1150350000_building_431015,PQ,0.0054,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_136,BranchTee_mvgd_33532_lvgd_1150350000_building_431062,PQ,0.0176,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_16,BranchTee_mvgd_33532_lvgd_1150350000_building_430957,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_233,BranchTee_mvgd_33532_lvgd_1150350000_building_431030,PQ,0.0152,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_253,BranchTee_mvgd_33532_lvgd_1150350000_building_430965,PQ,0.0038,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_255,BranchTee_mvgd_33532_lvgd_1150350000_building_431019,PQ,0.055,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_33,BranchTee_mvgd_33532_lvgd_1150350000_building_430948,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_346,BranchTee_mvgd_33532_lvgd_1150350000_building_431011,PQ,0.0060999999999999995,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_39,BranchTee_mvgd_33532_lvgd_1150350000_building_431021,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_6,BranchTee_mvgd_33532_lvgd_1150350000_building_430971,PQ,0.0056,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_76,BranchTee_mvgd_33532_lvgd_1150350000_building_430947,PQ,0.0046,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150350000_pv_rooftop_91,BranchTee_mvgd_33532_lvgd_1150350000_building_431047,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150360000_pv_rooftop_107,BranchTee_mvgd_33532_lvgd_1150360000_building_430978,PQ,0.0193,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150360000_pv_rooftop_134,BranchTee_mvgd_33532_lvgd_1150360000_building_430989,PQ,0.0106,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150360000_pv_rooftop_275,BranchTee_mvgd_33532_lvgd_1150360000_building_430987,PQ,0.0085,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150360000_pv_rooftop_311,BranchTee_mvgd_33532_lvgd_1150360000_building_430981,PQ,0.0055,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_111,BranchTee_mvgd_33532_lvgd_1150770000_building_431234,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_125,BranchTee_mvgd_33532_lvgd_1150770000_building_431198,PQ,0.012199999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_126,BranchTee_mvgd_33532_lvgd_1150770000_building_431240,PQ,0.0038,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_129,BranchTee_mvgd_33532_lvgd_1150770000_building_431128,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_178,BranchTee_mvgd_33532_lvgd_1150770000_building_431191,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_241,BranchTee_mvgd_33532_lvgd_1150770000_building_431203,PQ,0.0038,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_273,BranchTee_mvgd_33532_lvgd_1150770000_building_431176,PQ,0.0067,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_295,BranchTee_mvgd_33532_lvgd_1150770000_building_431248,PQ,0.0264,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_301,BranchTee_mvgd_33532_lvgd_1150770000_building_431178,PQ,0.0003,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_304,BranchTee_mvgd_33532_lvgd_1150770000_building_431149,PQ,0.0063,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_318,BranchTee_mvgd_33532_lvgd_1150770000_building_431154,PQ,0.005900000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_320,BranchTee_mvgd_33532_lvgd_1150770000_building_431169,PQ,0.0048,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_349,BranchTee_mvgd_33532_lvgd_1150770000_building_431142,PQ,0.011699999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_350,BranchTee_mvgd_33532_lvgd_1150770000_building_431162,PQ,0.0046,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_375,BranchTee_mvgd_33532_lvgd_1150770000_building_431164,PQ,0.0096,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_pv_rooftop_84,BranchTee_mvgd_33532_lvgd_1150770000_building_431145,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1150770000_water_400,BranchTee_mvgd_33532_lvgd_1150770000_building_431141,PQ,0.035,water,,unknown -Generator_mvgd_33532_lvgd_1151720000_pv_rooftop_343,BranchTee_mvgd_33532_lvgd_1151720000_building_440570,PQ,0.017,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1151760000_pv_rooftop_132,BranchTee_mvgd_33532_lvgd_1151760000_building_441541,PQ,0.0297,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1151760000_pv_rooftop_69,BranchTee_mvgd_33532_lvgd_1151760000_building_441554,PQ,0.0068,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1151760000_pv_rooftop_96,BranchTee_mvgd_33532_lvgd_1151760000_building_441574,PQ,0.0099,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1151770000_pv_rooftop_239,BranchTee_mvgd_33532_lvgd_1151770000_building_441492,PQ,0.0136,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1151840000_pv_rooftop_223,BranchTee_mvgd_33532_lvgd_1151840000_building_441826,PQ,0.0078,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1151840000_pv_rooftop_234,BranchTee_mvgd_33532_lvgd_1151840000_building_34328721,PQ,0.0039,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1151840000_pv_rooftop_259,BranchTee_mvgd_33532_lvgd_1151840000_building_441817,PQ,0.009,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1151840000_pv_rooftop_268,BranchTee_mvgd_33532_lvgd_1151840000_building_441813,PQ,0.02,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1152110000_pv_rooftop_55,BranchTee_mvgd_33532_lvgd_1152110000_building_431378,PQ,0.0273,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1154980000_pv_rooftop_105,BranchTee_mvgd_33532_lvgd_1154980000_building_431490,PQ,0.0085,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1154980000_pv_rooftop_133,BranchTee_mvgd_33532_lvgd_1154980000_building_431482,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1154990000_pv_rooftop_117,BranchTee_mvgd_33532_lvgd_1154990000_building_431505,PQ,0.0441,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1156160000_pv_rooftop_152,BranchTee_mvgd_33532_lvgd_1156160000_building_431337,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1159020000_pv_rooftop_42,BranchTee_mvgd_33532_lvgd_1159020000_building_448090,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1160560000_pv_rooftop_78,BranchTee_mvgd_33532_lvgd_1160560000_building_431445,PQ,0.0092,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1161030000_pv_rooftop_149,BranchTee_mvgd_33532_lvgd_1161030000_building_430899,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1161700000_pv_rooftop_110,BranchTee_mvgd_33532_lvgd_1161700000_building_431588,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1161700000_pv_rooftop_114,BranchTee_mvgd_33532_lvgd_1161700000_building_431566,PQ,0.0085,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1161700000_pv_rooftop_29,BranchTee_mvgd_33532_lvgd_1161700000_building_431576,PQ,0.025,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1161700000_pv_rooftop_345,BranchTee_mvgd_33532_lvgd_1161700000_building_431591,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163050000_pv_rooftop_95,BranchTee_mvgd_33532_lvgd_1163050000_building_431652,PQ,0.0055,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163060000_pv_rooftop_79,BranchTee_mvgd_33532_lvgd_1163060000_building_431715,PQ,0.0085,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163090000_pv_rooftop_312,BranchTee_mvgd_33532_lvgd_1163090000_building_431712,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850000_pv_rooftop_17,BranchTee_mvgd_33532_lvgd_1163850000_building_441843,PQ,0.0094,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850000_pv_rooftop_340,BranchTee_mvgd_33532_lvgd_1163850000_building_442110,PQ,0.0096,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850000_pv_rooftop_5,BranchTee_mvgd_33532_lvgd_1163850000_building_441862,PQ,0.0145,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850000_pv_rooftop_71,BranchTee_mvgd_33532_lvgd_1163850000_building_441847,PQ,0.0088,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_14,BranchTee_mvgd_33532_lvgd_1163850001_building_444965,PQ,0.0083,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_21,BranchTee_mvgd_33532_lvgd_1163850001_building_444923,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_216,BranchTee_mvgd_33532_lvgd_1163850001_building_444913,PQ,0.0075,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_261,BranchTee_mvgd_33532_lvgd_1163850001_building_444896,PQ,0.009,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_279,BranchTee_mvgd_33532_lvgd_1163850001_building_444914,PQ,0.0221,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_281,BranchTee_mvgd_33532_lvgd_1163850001_building_444889,PQ,0.022,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_329,BranchTee_mvgd_33532_lvgd_1163850001_building_431833,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_40,BranchTee_mvgd_33532_lvgd_1163850001_building_444888,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_65,BranchTee_mvgd_33532_lvgd_1163850001_building_444904,PQ,0.0144,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850001_pv_rooftop_70,BranchTee_mvgd_33532_lvgd_1163850001_building_444890,PQ,0.0055,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850002_pv_rooftop_190,BranchTee_mvgd_33532_lvgd_1163850002_building_444929,PQ,0.042,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850002_pv_rooftop_3,BranchTee_mvgd_33532_lvgd_1163850002_building_444942,PQ,0.027,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850002_pv_rooftop_7,BranchTee_mvgd_33532_lvgd_1163850002_building_445439,PQ,0.0425,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_119,BranchTee_mvgd_33532_lvgd_1163850003_building_445899,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_131,BranchTee_mvgd_33532_lvgd_1163850003_building_445948,PQ,0.0099,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_135,BranchTee_mvgd_33532_lvgd_1163850003_building_445887,PQ,0.0216,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_146,BranchTee_mvgd_33532_lvgd_1163850003_building_445716,PQ,0.0058,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_163,BranchTee_mvgd_33532_lvgd_1163850003_building_445944,PQ,0.027,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_179,BranchTee_mvgd_33532_lvgd_1163850003_building_445786,PQ,0.0044,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_19,BranchTee_mvgd_33532_lvgd_1163850003_building_445771,PQ,0.0128,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_196,BranchTee_mvgd_33532_lvgd_1163850003_building_445943,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_23,BranchTee_mvgd_33532_lvgd_1163850003_building_445942,PQ,0.0144,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_237,BranchTee_mvgd_33532_lvgd_1163850003_building_445918,PQ,0.0275,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_242,BranchTee_mvgd_33532_lvgd_1163850003_building_445799,PQ,0.042,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_251,BranchTee_mvgd_33532_lvgd_1163850003_building_445805,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_27,BranchTee_mvgd_33532_lvgd_1163850003_building_445880,PQ,0.009699999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_308,BranchTee_mvgd_33532_lvgd_1163850003_building_445857,PQ,0.0171,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_36,BranchTee_mvgd_33532_lvgd_1163850003_building_445883,PQ,0.0094,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_362,BranchTee_mvgd_33532_lvgd_1163850003_building_445958,PQ,0.0126,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_366,BranchTee_mvgd_33532_lvgd_1163850003_building_445790,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_58,BranchTee_mvgd_33532_lvgd_1163850003_building_445926,PQ,0.0058,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_75,BranchTee_mvgd_33532_lvgd_1163850003_building_445785,PQ,0.0099,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_83,BranchTee_mvgd_33532_lvgd_1163850003_building_445774,PQ,0.0050999999999999995,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850003_pv_rooftop_9,BranchTee_mvgd_33532_lvgd_1163850003_building_445933,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_113,BranchTee_mvgd_33532_lvgd_1163850004_building_442036,PQ,0.002,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_121,BranchTee_mvgd_33532_lvgd_1163850004_building_446032,PQ,0.0052,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_15,BranchTee_mvgd_33532_lvgd_1163850004_building_442001,PQ,0.0032,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_153,BranchTee_mvgd_33532_lvgd_1163850004_building_442008,PQ,0.020399999999999998,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_228,BranchTee_mvgd_33532_lvgd_1163850004_building_446075,PQ,0.0076,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_271,BranchTee_mvgd_33532_lvgd_1163850004_building_445977,PQ,0.017,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_31,BranchTee_mvgd_33532_lvgd_1163850004_building_442050,PQ,0.026600000000000002,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_310,BranchTee_mvgd_33532_lvgd_1163850004_building_441931,PQ,0.012,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_324,BranchTee_mvgd_33532_lvgd_1163850004_building_445982,PQ,0.0315,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_353,BranchTee_mvgd_33532_lvgd_1163850004_building_446003,PQ,0.0252,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_376,BranchTee_mvgd_33532_lvgd_1163850004_building_442027,PQ,0.028399999999999998,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_50,BranchTee_mvgd_33532_lvgd_1163850004_building_446052,PQ,0.015,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850004_pv_rooftop_92,BranchTee_mvgd_33532_lvgd_1163850004_building_442082,PQ,0.015,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_115,BranchTee_mvgd_33532_lvgd_1163850005_building_441800,PQ,0.0146,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_143,BranchTee_mvgd_33532_lvgd_1163850005_building_441924,PQ,0.0254,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_169,BranchTee_mvgd_33532_lvgd_1163850005_building_441914,PQ,0.0119,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_174,BranchTee_mvgd_33532_lvgd_1163850005_building_441970,PQ,0.008199999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_177,BranchTee_mvgd_33532_lvgd_1163850005_building_441993,PQ,0.0085,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_204,BranchTee_mvgd_33532_lvgd_1163850005_building_441950,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_236,BranchTee_mvgd_33532_lvgd_1163850005_building_441772,PQ,0.0086,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_248,BranchTee_mvgd_33532_lvgd_1163850005_building_441891,PQ,0.0070999999999999995,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_348,BranchTee_mvgd_33532_lvgd_1163850005_building_441963,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_51,BranchTee_mvgd_33532_lvgd_1163850005_building_441882,PQ,0.03,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_54,BranchTee_mvgd_33532_lvgd_1163850005_building_441821,PQ,0.0070999999999999995,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850005_pv_rooftop_90,BranchTee_mvgd_33532_lvgd_1163850005_building_441816,PQ,0.052,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_120,BranchTee_mvgd_33532_lvgd_1163850006_building_441778,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_217,BranchTee_mvgd_33532_lvgd_1163850006_building_445641,PQ,0.029,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_218,BranchTee_mvgd_33532_lvgd_1163850006_building_445648,PQ,0.0291,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_229,BranchTee_mvgd_33532_lvgd_1163850006_building_441762,PQ,0.0075,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_26,BranchTee_mvgd_33532_lvgd_1163850006_building_445633,PQ,0.0109,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_277,BranchTee_mvgd_33532_lvgd_1163850006_building_441742,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_28,BranchTee_mvgd_33532_lvgd_1163850006_building_441714,PQ,0.0425,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_309,BranchTee_mvgd_33532_lvgd_1163850006_building_445632,PQ,0.0297,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_314,BranchTee_mvgd_33532_lvgd_1163850006_building_441767,PQ,0.0292,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_32,BranchTee_mvgd_33532_lvgd_1163850006_building_441790,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_360,BranchTee_mvgd_33532_lvgd_1163850006_building_441743,PQ,0.0101,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_380,BranchTee_mvgd_33532_lvgd_1163850006_building_445758,PQ,0.025,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_61,BranchTee_mvgd_33532_lvgd_1163850006_building_445787,PQ,0.0095,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850006_pv_rooftop_98,BranchTee_mvgd_33532_lvgd_1163850006_building_441730,PQ,0.019899999999999998,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_1,BranchTee_mvgd_33532_lvgd_1163850007_building_445846,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_102,BranchTee_mvgd_33532_lvgd_1163850007_building_445562,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_104,BranchTee_mvgd_33532_lvgd_1163850007_building_445823,PQ,0.009800000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_18,BranchTee_mvgd_33532_lvgd_1163850007_building_445826,PQ,0.054,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_185,BranchTee_mvgd_33532_lvgd_1163850007_building_445856,PQ,0.012199999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_189,BranchTee_mvgd_33532_lvgd_1163850007_building_445859,PQ,0.0156,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_240,BranchTee_mvgd_33532_lvgd_1163850007_building_445599,PQ,0.0085,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_256,BranchTee_mvgd_33532_lvgd_1163850007_building_445567,PQ,0.020300000000000002,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_302,BranchTee_mvgd_33532_lvgd_1163850007_building_445607,PQ,0.0092,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_328,BranchTee_mvgd_33532_lvgd_1163850007_building_445540,PQ,0.0074,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_389,BranchTee_mvgd_33532_lvgd_1163850007_building_445600,PQ,0.008400000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850007_pv_rooftop_81,BranchTee_mvgd_33532_lvgd_1163850007_building_445577,PQ,0.0096,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850008_pv_rooftop_147,BranchTee_mvgd_33532_lvgd_1163850008_building_431764,PQ,0.0076,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850008_pv_rooftop_206,BranchTee_mvgd_33532_lvgd_1163850008_building_431810,PQ,0.011,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850008_pv_rooftop_207,BranchTee_mvgd_33532_lvgd_1163850008_building_431772,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850008_pv_rooftop_220,BranchTee_mvgd_33532_lvgd_1163850008_building_34999649,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850008_pv_rooftop_342,BranchTee_mvgd_33532_lvgd_1163850008_building_431830,PQ,0.05,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850009_pv_rooftop_165,BranchTee_mvgd_33532_lvgd_1163850009_building_446064,PQ,0.02,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850009_pv_rooftop_20,BranchTee_mvgd_33532_lvgd_1163850009_building_446067,PQ,0.0052,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_151,BranchTee_mvgd_33532_lvgd_1163850010_building_441635,PQ,0.019899999999999998,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_154,BranchTee_mvgd_33532_lvgd_1163850010_building_441692,PQ,0.0159,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_183,BranchTee_mvgd_33532_lvgd_1163850010_building_441645,PQ,0.0006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_22,BranchTee_mvgd_33532_lvgd_1163850010_building_441675,PQ,0.0253,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_224,BranchTee_mvgd_33532_lvgd_1163850010_building_441673,PQ,0.0275,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_25,BranchTee_mvgd_33532_lvgd_1163850010_building_441662,PQ,0.0058,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_290,BranchTee_mvgd_33532_lvgd_1163850010_building_441665,PQ,0.025,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_313,BranchTee_mvgd_33532_lvgd_1163850010_building_441618,PQ,0.0208,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_368,BranchTee_mvgd_33532_lvgd_1163850010_building_441699,PQ,0.0062,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850010_pv_rooftop_43,BranchTee_mvgd_33532_lvgd_1163850010_building_445478,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_161,BranchTee_mvgd_33532_lvgd_1163850011_building_445535,PQ,0.0298,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_166,BranchTee_mvgd_33532_lvgd_1163850011_building_445508,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_191,BranchTee_mvgd_33532_lvgd_1163850011_building_445499,PQ,0.008199999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_205,BranchTee_mvgd_33532_lvgd_1163850011_building_445528,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_214,BranchTee_mvgd_33532_lvgd_1163850011_building_445463,PQ,0.0092,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_270,BranchTee_mvgd_33532_lvgd_1163850011_building_445534,PQ,0.0229,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_276,BranchTee_mvgd_33532_lvgd_1163850011_building_445429,PQ,0.0248,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_284,BranchTee_mvgd_33532_lvgd_1163850011_building_445485,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_292,BranchTee_mvgd_33532_lvgd_1163850011_building_445509,PQ,0.029,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_339,BranchTee_mvgd_33532_lvgd_1163850011_building_445515,PQ,0.004200000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_347,BranchTee_mvgd_33532_lvgd_1163850011_building_445514,PQ,0.0297,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850011_pv_rooftop_371,BranchTee_mvgd_33532_lvgd_1163850011_building_445420,PQ,0.0038,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_12,BranchTee_mvgd_33532_lvgd_1163850012_building_445986,PQ,0.006900000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_222,BranchTee_mvgd_33532_lvgd_1163850012_building_445759,PQ,0.0083,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_245,BranchTee_mvgd_33532_lvgd_1163850012_building_445985,PQ,0.15,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_267,BranchTee_mvgd_33532_lvgd_1163850012_building_445830,PQ,0.027,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_321,BranchTee_mvgd_33532_lvgd_1163850012_building_445764,PQ,0.0157,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_333,BranchTee_mvgd_33532_lvgd_1163850012_building_445751,PQ,0.024,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_387,BranchTee_mvgd_33532_lvgd_1163850012_building_441925,PQ,0.03,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_46,BranchTee_mvgd_33532_lvgd_1163850012_building_445981,PQ,0.0192,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850012_pv_rooftop_93,BranchTee_mvgd_33532_lvgd_1163850012_building_446005,PQ,0.0056,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850013_pv_rooftop_10,BranchTee_mvgd_33532_lvgd_1163850013_building_441588,PQ,0.02,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850013_pv_rooftop_112,BranchTee_mvgd_33532_lvgd_1163850013_building_441603,PQ,0.009699999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_145,BranchTee_mvgd_33532_lvgd_1163850014_building_445684,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_172,BranchTee_mvgd_33532_lvgd_1163850014_building_445602,PQ,0.06,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_187,BranchTee_mvgd_33532_lvgd_1163850014_building_445682,PQ,0.0073,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_192,BranchTee_mvgd_33532_lvgd_1163850014_building_445661,PQ,0.0215,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_211,BranchTee_mvgd_33532_lvgd_1163850014_building_34967279,PQ,0.0005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_232,BranchTee_mvgd_33532_lvgd_1163850014_building_445697,PQ,0.0054,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_293,BranchTee_mvgd_33532_lvgd_1163850014_building_34967278,PQ,0.0033,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_331,BranchTee_mvgd_33532_lvgd_1163850014_building_445612,PQ,0.0125,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_336,BranchTee_mvgd_33532_lvgd_1163850014_building_445693,PQ,0.028,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_338,BranchTee_mvgd_33532_lvgd_1163850014_building_445606,PQ,0.0214,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_354,BranchTee_mvgd_33532_lvgd_1163850014_building_445703,PQ,0.0085,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850014_pv_rooftop_374,BranchTee_mvgd_33532_lvgd_1163850014_building_445671,PQ,0.009800000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850015_pv_rooftop_103,BranchTee_mvgd_33532_lvgd_1163850015_building_442013,PQ,0.009,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850015_pv_rooftop_127,BranchTee_mvgd_33532_lvgd_1163850015_building_442067,PQ,0.0068,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850015_pv_rooftop_231,BranchTee_mvgd_33532_lvgd_1163850015_building_442006,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850015_pv_rooftop_303,BranchTee_mvgd_33532_lvgd_1163850015_building_441986,PQ,0.009300000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850015_pv_rooftop_305,BranchTee_mvgd_33532_lvgd_1163850015_building_441984,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850015_pv_rooftop_74,BranchTee_mvgd_33532_lvgd_1163850015_building_441987,PQ,0.0265,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163850015_pv_rooftop_82,BranchTee_mvgd_33532_lvgd_1163850015_building_441976,PQ,0.0296,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163860000_pv_rooftop_212,BranchTee_mvgd_33532_lvgd_1163860000_building_431786,PQ,0.052,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163890000_water_399,Bus_mvgd_33532_lvgd_1163890000_gen_399,PQ,0.035,water,,unknown -Generator_mvgd_33532_lvgd_1163900000_pv_rooftop_193,BranchTee_mvgd_33532_lvgd_1163900000_building_431695,PQ,0.02,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163930000_pv_rooftop_186,BranchTee_mvgd_33532_lvgd_1163930000_building_444993,PQ,0.0099,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163930000_pv_rooftop_355,BranchTee_mvgd_33532_lvgd_1163930000_building_444969,PQ,0.0292,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163930000_pv_rooftop_365,BranchTee_mvgd_33532_lvgd_1163930000_building_444986,PQ,0.0025,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163930000_pv_rooftop_66,BranchTee_mvgd_33532_lvgd_1163930000_building_444963,PQ,0.0044,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_122,BranchTee_mvgd_33532_lvgd_1163940000_building_446883,PQ,0.004200000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_138,BranchTee_mvgd_33532_lvgd_1163940000_building_446849,PQ,0.033,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_156,BranchTee_mvgd_33532_lvgd_1163940000_building_447120,PQ,0.008400000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_157,BranchTee_mvgd_33532_lvgd_1163940000_building_446829,PQ,0.0124,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_167,BranchTee_mvgd_33532_lvgd_1163940000_building_446899,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_170,BranchTee_mvgd_33532_lvgd_1163940000_building_447114,PQ,0.0074,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_176,BranchTee_mvgd_33532_lvgd_1163940000_building_446807,PQ,0.0115,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_182,BranchTee_mvgd_33532_lvgd_1163940000_building_446716,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_184,BranchTee_mvgd_33532_lvgd_1163940000_building_446820,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_197,BranchTee_mvgd_33532_lvgd_1163940000_building_446940,PQ,0.0086,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_200,BranchTee_mvgd_33532_lvgd_1163940000_building_446965,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_210,BranchTee_mvgd_33532_lvgd_1163940000_building_447127,PQ,0.0075,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_219,BranchTee_mvgd_33532_lvgd_1163940000_building_446973,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_221,BranchTee_mvgd_33532_lvgd_1163940000_building_447136,PQ,0.008199999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_243,BranchTee_mvgd_33532_lvgd_1163940000_building_447019,PQ,0.013300000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_244,BranchTee_mvgd_33532_lvgd_1163940000_building_446831,PQ,0.009800000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_250,BranchTee_mvgd_33532_lvgd_1163940000_building_447011,PQ,0.0147,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_260,BranchTee_mvgd_33532_lvgd_1163940000_building_446923,PQ,0.013800000000000002,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_287,BranchTee_mvgd_33532_lvgd_1163940000_building_447007,PQ,0.020399999999999998,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_299,BranchTee_mvgd_33532_lvgd_1163940000_building_446609,PQ,0.035,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_30,BranchTee_mvgd_33532_lvgd_1163940000_building_447088,PQ,0.0055,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_327,BranchTee_mvgd_33532_lvgd_1163940000_building_446842,PQ,0.0228,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_357,BranchTee_mvgd_33532_lvgd_1163940000_building_446952,PQ,0.014199999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_358,BranchTee_mvgd_33532_lvgd_1163940000_building_446934,PQ,0.0094,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_359,BranchTee_mvgd_33532_lvgd_1163940000_building_446758,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_361,BranchTee_mvgd_33532_lvgd_1163940000_building_447091,PQ,0.0297,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_370,BranchTee_mvgd_33532_lvgd_1163940000_building_446993,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_383,BranchTee_mvgd_33532_lvgd_1163940000_building_446725,PQ,0.027,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_384,BranchTee_mvgd_33532_lvgd_1163940000_building_446825,PQ,0.0086,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_386,BranchTee_mvgd_33532_lvgd_1163940000_building_446848,PQ,0.022,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_390,BranchTee_mvgd_33532_lvgd_1163940000_building_447034,PQ,0.0105,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_391,BranchTee_mvgd_33532_lvgd_1163940000_building_446759,PQ,0.0046,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_4,BranchTee_mvgd_33532_lvgd_1163940000_building_446932,PQ,0.0075,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_53,BranchTee_mvgd_33532_lvgd_1163940000_building_446734,PQ,0.0161,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_57,BranchTee_mvgd_33532_lvgd_1163940000_building_447090,PQ,0.0064,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_85,BranchTee_mvgd_33532_lvgd_1163940000_building_447141,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_86,BranchTee_mvgd_33532_lvgd_1163940000_building_447017,PQ,0.012,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_88,BranchTee_mvgd_33532_lvgd_1163940000_building_446850,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940000_pv_rooftop_97,BranchTee_mvgd_33532_lvgd_1163940000_building_446767,PQ,0.012,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_101,BranchTee_mvgd_33532_lvgd_1163940001_building_446595,PQ,0.0046,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_108,BranchTee_mvgd_33532_lvgd_1163940001_building_446583,PQ,0.0146,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_158,BranchTee_mvgd_33532_lvgd_1163940001_building_446682,PQ,0.030600000000000002,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_230,BranchTee_mvgd_33532_lvgd_1163940001_building_446645,PQ,0.0096,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_247,BranchTee_mvgd_33532_lvgd_1163940001_building_446579,PQ,0.019,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_280,BranchTee_mvgd_33532_lvgd_1163940001_building_446584,PQ,0.011,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_294,BranchTee_mvgd_33532_lvgd_1163940001_building_446678,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_300,BranchTee_mvgd_33532_lvgd_1163940001_building_446690,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_330,BranchTee_mvgd_33532_lvgd_1163940001_building_446608,PQ,0.0146,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_337,BranchTee_mvgd_33532_lvgd_1163940001_building_446570,PQ,0.0045,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_364,BranchTee_mvgd_33532_lvgd_1163940001_building_446596,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940001_pv_rooftop_89,BranchTee_mvgd_33532_lvgd_1163940001_building_446549,PQ,0.0092,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940002_pv_rooftop_118,BranchTee_mvgd_33532_lvgd_1163940002_building_446259,PQ,0.0125,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940002_pv_rooftop_13,BranchTee_mvgd_33532_lvgd_1163940002_building_446312,PQ,0.0294,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940002_pv_rooftop_194,BranchTee_mvgd_33532_lvgd_1163940002_building_446342,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940002_pv_rooftop_198,BranchTee_mvgd_33532_lvgd_1163940002_building_446242,PQ,0.002,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940002_pv_rooftop_225,BranchTee_mvgd_33532_lvgd_1163940002_building_446269,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940002_pv_rooftop_272,BranchTee_mvgd_33532_lvgd_1163940002_building_445971,PQ,0.009,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940002_pv_rooftop_307,BranchTee_mvgd_33532_lvgd_1163940002_building_446251,PQ,0.0078,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940002_pv_rooftop_367,BranchTee_mvgd_33532_lvgd_1163940002_building_446248,PQ,0.002,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_0,BranchTee_mvgd_33532_lvgd_1163940003_building_448062,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_140,BranchTee_mvgd_33532_lvgd_1163940003_building_448067,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_201,BranchTee_mvgd_33532_lvgd_1163940003_building_448038,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_238,BranchTee_mvgd_33532_lvgd_1163940003_building_448027,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_24,BranchTee_mvgd_33532_lvgd_1163940003_building_447084,PQ,0.008400000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_254,BranchTee_mvgd_33532_lvgd_1163940003_building_448023,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_263,BranchTee_mvgd_33532_lvgd_1163940003_building_448108,PQ,0.0086,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_274,BranchTee_mvgd_33532_lvgd_1163940003_building_447179,PQ,0.0055,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_283,BranchTee_mvgd_33532_lvgd_1163940003_building_447052,PQ,0.0063,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_286,BranchTee_mvgd_33532_lvgd_1163940003_building_448075,PQ,0.0055,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_289,BranchTee_mvgd_33532_lvgd_1163940003_building_448041,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_298,BranchTee_mvgd_33532_lvgd_1163940003_building_447070,PQ,0.0091,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_306,BranchTee_mvgd_33532_lvgd_1163940003_building_448099,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_334,BranchTee_mvgd_33532_lvgd_1163940003_building_448076,PQ,0.0068,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_369,BranchTee_mvgd_33532_lvgd_1163940003_building_448080,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_37,BranchTee_mvgd_33532_lvgd_1163940003_building_447999,PQ,0.0112,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_379,BranchTee_mvgd_33532_lvgd_1163940003_building_447063,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_381,BranchTee_mvgd_33532_lvgd_1163940003_building_448022,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_382,BranchTee_mvgd_33532_lvgd_1163940003_building_448087,PQ,0.0075,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_41,BranchTee_mvgd_33532_lvgd_1163940003_building_448095,PQ,0.019,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_45,BranchTee_mvgd_33532_lvgd_1163940003_building_447053,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_59,BranchTee_mvgd_33532_lvgd_1163940003_building_448017,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_63,BranchTee_mvgd_33532_lvgd_1163940003_building_447175,PQ,0.0202,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940003_pv_rooftop_99,BranchTee_mvgd_33532_lvgd_1163940003_building_447212,PQ,0.0224,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_137,BranchTee_mvgd_33532_lvgd_1163940004_building_446118,PQ,0.0050999999999999995,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_164,BranchTee_mvgd_33532_lvgd_1163940004_building_446221,PQ,0.016800000000000002,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_181,BranchTee_mvgd_33532_lvgd_1163940004_building_446114,PQ,0.0055,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_235,BranchTee_mvgd_33532_lvgd_1163940004_building_446110,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_252,BranchTee_mvgd_33532_lvgd_1163940004_building_446099,PQ,0.0054,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_266,BranchTee_mvgd_33532_lvgd_1163940004_building_446111,PQ,0.018,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_316,BranchTee_mvgd_33532_lvgd_1163940004_building_446213,PQ,0.0088,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_34,BranchTee_mvgd_33532_lvgd_1163940004_building_446103,PQ,0.0158,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_341,BranchTee_mvgd_33532_lvgd_1163940004_building_446365,PQ,0.019,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_344,BranchTee_mvgd_33532_lvgd_1163940004_building_446116,PQ,0.015099999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_388,BranchTee_mvgd_33532_lvgd_1163940004_building_446204,PQ,0.0076,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_48,BranchTee_mvgd_33532_lvgd_1163940004_building_446236,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_72,BranchTee_mvgd_33532_lvgd_1163940004_building_446123,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_77,BranchTee_mvgd_33532_lvgd_1163940004_building_446106,PQ,0.0128,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940004_pv_rooftop_80,BranchTee_mvgd_33532_lvgd_1163940004_building_34328731,PQ,0.0016,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_148,BranchTee_mvgd_33532_lvgd_1163940005_building_446328,PQ,0.0115,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_195,BranchTee_mvgd_33532_lvgd_1163940005_building_446353,PQ,0.027600000000000003,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_203,BranchTee_mvgd_33532_lvgd_1163940005_building_446331,PQ,0.025,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_209,BranchTee_mvgd_33532_lvgd_1163940005_building_446542,PQ,0.0045,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_246,Bus_mvgd_33532_lvgd_1163940005_gen_246,PQ,0.038799999999999994,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_262,BranchTee_mvgd_33532_lvgd_1163940005_building_446338,PQ,0.0021000000000000003,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_265,BranchTee_mvgd_33532_lvgd_1163940005_building_446358,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_372,BranchTee_mvgd_33532_lvgd_1163940005_building_446539,PQ,0.009,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1166370000_pv_rooftop_332,BranchTee_mvgd_33532_lvgd_1166370000_building_431436,PQ,0.021,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1166640000_pv_rooftop_168,BranchTee_mvgd_33532_lvgd_1166640000_building_431609,PQ,0.0006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1166640000_pv_rooftop_322,BranchTee_mvgd_33532_lvgd_1166640000_building_431611,PQ,0.0065,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1166640000_pv_rooftop_323,BranchTee_mvgd_33532_lvgd_1166640000_building_431636,PQ,0.0040999999999999995,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1166640000_pv_rooftop_335,BranchTee_mvgd_33532_lvgd_1166640000_building_431453,PQ,0.02,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1166640000_pv_rooftop_373,BranchTee_mvgd_33532_lvgd_1166640000_building_431608,PQ,0.024,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1166640000_pv_rooftop_73,BranchTee_mvgd_33532_lvgd_1166640000_building_431451,PQ,0.0038,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1170260000_pv_rooftop_162,BranchTee_mvgd_33532_lvgd_1170260000_building_446403,PQ,0.062299999999999994,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1170260000_pv_rooftop_257,BranchTee_mvgd_33532_lvgd_1170260000_building_446404,PQ,0.004900000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1170260000_pv_rooftop_378,BranchTee_mvgd_33532_lvgd_1170260000_building_446411,PQ,0.0060999999999999995,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1170260000_pv_rooftop_8,BranchTee_mvgd_33532_lvgd_1170260000_building_446402,PQ,0.018,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1170760000_pv_rooftop_202,BranchTee_mvgd_33532_lvgd_1170760000_building_446484,PQ,0.015,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1170760000_pv_rooftop_94,BranchTee_mvgd_33532_lvgd_1170760000_building_446459,PQ,0.009,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_150,BranchTee_mvgd_33532_lvgd_1172110000_building_444548,PQ,0.0115,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_2,BranchTee_mvgd_33532_lvgd_1172110000_building_444483,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_227,BranchTee_mvgd_33532_lvgd_1172110000_building_444544,PQ,0.0216,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_317,BranchTee_mvgd_33532_lvgd_1172110000_building_444555,PQ,0.007,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_356,BranchTee_mvgd_33532_lvgd_1172110000_building_444562,PQ,0.0052,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_377,BranchTee_mvgd_33532_lvgd_1172110000_building_444560,PQ,0.07,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_385,BranchTee_mvgd_33532_lvgd_1172110000_building_444550,PQ,0.0068,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_44,BranchTee_mvgd_33532_lvgd_1172110000_building_444471,PQ,0.009300000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_62,BranchTee_mvgd_33532_lvgd_1172110000_building_444582,PQ,0.022,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_64,BranchTee_mvgd_33532_lvgd_1172110000_building_444533,PQ,0.008,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_68,BranchTee_mvgd_33532_lvgd_1172110000_building_444541,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110000_pv_rooftop_87,BranchTee_mvgd_33532_lvgd_1172110000_building_444563,PQ,0.0312,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_106,BranchTee_mvgd_33532_lvgd_1172110001_building_444684,PQ,0.0094,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_116,BranchTee_mvgd_33532_lvgd_1172110001_building_444727,PQ,0.0229,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_141,BranchTee_mvgd_33532_lvgd_1172110001_building_444749,PQ,0.013,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_155,BranchTee_mvgd_33532_lvgd_1172110001_building_444785,PQ,0.0052,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_173,BranchTee_mvgd_33532_lvgd_1172110001_building_444724,PQ,0.0079,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_258,BranchTee_mvgd_33532_lvgd_1172110001_building_431689,PQ,0.02,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_278,BranchTee_mvgd_33532_lvgd_1172110001_building_444722,PQ,0.0056,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_282,BranchTee_mvgd_33532_lvgd_1172110001_building_444817,PQ,0.0052,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_297,BranchTee_mvgd_33532_lvgd_1172110001_building_444679,PQ,0.0075,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_325,BranchTee_mvgd_33532_lvgd_1172110001_building_444721,PQ,0.0024,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_326,BranchTee_mvgd_33532_lvgd_1172110001_building_444786,PQ,0.009699999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_352,BranchTee_mvgd_33532_lvgd_1172110001_building_444701,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_56,BranchTee_mvgd_33532_lvgd_1172110001_building_444720,PQ,0.0128,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110001_pv_rooftop_67,BranchTee_mvgd_33532_lvgd_1172110001_building_444745,PQ,0.0165,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_123,BranchTee_mvgd_33532_lvgd_1172110002_building_444669,PQ,0.009,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_144,BranchTee_mvgd_33532_lvgd_1172110002_building_444691,PQ,0.015,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_159,BranchTee_mvgd_33532_lvgd_1172110002_building_444768,PQ,0.0189,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_171,BranchTee_mvgd_33532_lvgd_1172110002_building_444671,PQ,0.012,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_175,BranchTee_mvgd_33532_lvgd_1172110002_building_444674,PQ,0.005,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_180,BranchTee_mvgd_33532_lvgd_1172110002_building_444683,PQ,0.022,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_208,BranchTee_mvgd_33532_lvgd_1172110002_building_444663,PQ,0.0036,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_213,BranchTee_mvgd_33532_lvgd_1172110002_building_444657,PQ,0.0029,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_215,BranchTee_mvgd_33532_lvgd_1172110002_building_444649,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_269,BranchTee_mvgd_33532_lvgd_1172110002_building_444655,PQ,0.009,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_35,BranchTee_mvgd_33532_lvgd_1172110002_building_444656,PQ,0.047,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_363,BranchTee_mvgd_33532_lvgd_1172110002_building_444758,PQ,0.0216,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_47,BranchTee_mvgd_33532_lvgd_1172110002_building_444651,PQ,0.0217,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_49,BranchTee_mvgd_33532_lvgd_1172110002_building_444764,PQ,0.0116,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172110002_pv_rooftop_52,BranchTee_mvgd_33532_lvgd_1172110002_building_444652,PQ,0.0212,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172130000_pv_rooftop_288,BranchTee_mvgd_33532_lvgd_1172130000_building_444598,PQ,0.0011,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1172450000_pv_rooftop_100,BranchTee_mvgd_33532_lvgd_1172450000_building_444513,PQ,0.018,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1176030000_pv_rooftop_38,BranchTee_mvgd_33532_lvgd_1176030000_building_34328622,PQ,0.0016,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1176270000_pv_rooftop_139,BranchTee_mvgd_33532_lvgd_1176270000_building_445061,PQ,0.0128,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1176270000_pv_rooftop_249,BranchTee_mvgd_33532_lvgd_1176270000_building_34328653,PQ,0.0031,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1181890000_pv_rooftop_188,BranchTee_mvgd_33532_lvgd_1181890000_building_34328687,PQ,0.004,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1182040000_pv_rooftop_128,BranchTee_mvgd_33532_lvgd_1182040000_building_446325,PQ,0.006,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1185800000_pv_rooftop_264,BranchTee_mvgd_33532_lvgd_1185800000_building_422713,PQ,0.009300000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1185800000_water_401,BranchTee_mvgd_33532_lvgd_1185800000_building_422707,PQ,0.036,water,,unknown -Generator_mvgd_33532_lvgd_1185810000_pv_rooftop_226,BranchTee_mvgd_33532_lvgd_1185810000_building_444375,PQ,0.015,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1195310000_water_398,BranchTee_mvgd_33532_lvgd_1195310000_building_444403,PQ,0.032,water,,unknown -Generator_mvgd_33532_lvgd_1197330000_pv_rooftop_11,BranchTee_mvgd_33532_lvgd_1197330000_building_445185,PQ,0.0085,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1197330000_pv_rooftop_124,BranchTee_mvgd_33532_lvgd_1197330000_building_445123,PQ,0.011300000000000001,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1197330000_pv_rooftop_60,BranchTee_mvgd_33532_lvgd_1197330000_building_445193,PQ,0.013099999999999999,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1198880000_pv_rooftop_319,BranchTee_mvgd_33532_lvgd_1198880000_building_448135,PQ,0.0081,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1199280000_pv_rooftop_296,BranchTee_mvgd_33532_lvgd_1199280000_building_34328667,PQ,0.0038,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1201300000_pv_rooftop_315,BranchTee_mvgd_33532_lvgd_1201300000_building_448154,PQ,0.016,solar,11052,pv_rooftop -Generator_mvgd_33532_lvgd_1202400000_pv_rooftop_285,BranchTee_mvgd_33532_lvgd_1202400000_building_34328716,PQ,0.0022,solar,11052,pv_rooftop -Generator_mvgd_33532_lvgd_1202400000_pv_rooftop_291,BranchTee_mvgd_33532_lvgd_1202400000_building_448103,PQ,0.01,solar,11051,pv_rooftop -Generator_mvgd_33532_lvgd_1203710000_pv_rooftop_142,BranchTee_mvgd_33532_lvgd_1203710000_building_34328646,PQ,0.0033,solar,11052,pv_rooftop -Generator_mvgd_33532_lvgd_1203710000_pv_rooftop_351,BranchTee_mvgd_33532_lvgd_1203710000_building_34328648,PQ,0.0045,solar,11052,pv_rooftop +name,bus,control,p_nom,type,weather_cell_id,subtype,gens_id +MV_33535_slack,Busbar_mvgd_33535_MV,Slack,0,station,,mv_station, +Generator_mvgd_33535_pv_rooftop_3,Bus_mvgd_33535_gen_3,PQ,0.08,solar,11051,pv_rooftop,SEE928510193350 +Generator_mvgd_33535_biomass_380,Bus_mvgd_33535_gen_380,PQ,0.725,biomass,,unknown,SEE978507162784 +Generator_mvgd_33535_water_382,Bus_mvgd_33535_gen_382,PQ,0.2,water,,unknown,SEE945437838447 +Generator_mvgd_33535_water_383,Bus_mvgd_33535_gen_383,PQ,0.464,water,,unknown,SEE987266545783 +Generator_mvgd_33535_water_384,Bus_mvgd_33535_gen_384,PQ,0.093,water,,unknown,SEE977558085097 +Generator_mvgd_33535_water_385,Bus_mvgd_33535_gen_385,PQ,0.48,water,,unknown,SEE900235334515 +Generator_mvgd_33535_water_386,Bus_mvgd_33535_gen_386,PQ,1.11,water,,unknown,SEE997662385807 +Generator_mvgd_33535_gsgk_22,Bus_mvgd_33535_gen_22,PQ,0.045,conventional,,gsgk,SEE989013880802 +Generator_mvgd_33535_gsgk_26,Bus_mvgd_33535_gen_26,PQ,1.6,conventional,,gsgk,SEE943140383094 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_167,BranchTee_mvgd_33535_lvgd_1150630000_building_431078,PQ,0.0049900000000000005,solar,11051,pv_rooftop,SEE994491834841 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_198,BranchTee_mvgd_33535_lvgd_1150630000_building_431074,PQ,0.007,solar,11051,pv_rooftop,SEE970362202254 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_213,BranchTee_mvgd_33535_lvgd_1150630000_building_430853,PQ,0.0068,solar,11051,pv_rooftop,SEE980819686674 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_272,BranchTee_mvgd_33535_lvgd_1150630000_building_431079,PQ,0.00608,solar,11051,pv_rooftop,SEE945949626389 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_287,BranchTee_mvgd_33535_lvgd_1150630000_building_431076,PQ,0.004465,solar,11051,pv_rooftop,SEE926173653280 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_313,BranchTee_mvgd_33535_lvgd_1150630000_building_430894,PQ,0.006,solar,11051,pv_rooftop,SEE995677995653 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_317,BranchTee_mvgd_33535_lvgd_1150630000_building_430906,PQ,0.0273,solar,11051,pv_rooftop,SEE923918724090 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_49,BranchTee_mvgd_33535_lvgd_1150630000_building_430899,PQ,0.00207,solar,11051,pv_rooftop,SEE919381930717 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_76,BranchTee_mvgd_33535_lvgd_1150630000_building_430903,PQ,0.0058,solar,11051,pv_rooftop,SEE926527654710 +Generator_mvgd_33535_lvgd_1150630000_pv_rooftop_8,BranchTee_mvgd_33535_lvgd_1150630000_building_431094,PQ,0.0068,solar,11051,pv_rooftop,SEE960032475262 +Generator_mvgd_33535_lvgd_1150640000_pv_rooftop_209,BranchTee_mvgd_33535_lvgd_1150640000_building_430874,PQ,0.008,solar,11051,pv_rooftop,SEE961052312957 +Generator_mvgd_33535_lvgd_1150640000_pv_rooftop_297,BranchTee_mvgd_33535_lvgd_1150640000_building_430876,PQ,0.002,solar,11051,pv_rooftop,SEE963085902051 +Generator_mvgd_33535_lvgd_1150640000_pv_rooftop_33,BranchTee_mvgd_33535_lvgd_1150640000_building_430863,PQ,0.07,solar,11051,pv_rooftop,SEE970102895135 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_170,BranchTee_mvgd_33535_lvgd_1151050000_building_431215,PQ,0.0046,solar,11051,pv_rooftop,SEE953093091977 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_218,BranchTee_mvgd_33535_lvgd_1151050000_building_430970,PQ,0.004,solar,11051,pv_rooftop,SEE975279842432 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_227,BranchTee_mvgd_33535_lvgd_1151050000_building_431170,PQ,0.0055,solar,11051,pv_rooftop,SEE981199335671 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_229,BranchTee_mvgd_33535_lvgd_1151050000_building_431203,PQ,0.006719999999999999,solar,11051,pv_rooftop,SEE959071513172 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_291,BranchTee_mvgd_33535_lvgd_1151050000_building_431185,PQ,0.0068,solar,11051,pv_rooftop,SEE903315146138 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_325,BranchTee_mvgd_33535_lvgd_1151050000_building_431160,PQ,0.0297,solar,11051,pv_rooftop,SEE915613521692 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_335,BranchTee_mvgd_33535_lvgd_1151050000_building_430972,PQ,0.0055,solar,11051,pv_rooftop,SEE936352775290 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_338,BranchTee_mvgd_33535_lvgd_1151050000_building_431189,PQ,0.006,solar,11051,pv_rooftop,SEE964567980048 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_366,BranchTee_mvgd_33535_lvgd_1151050000_building_431164,PQ,0.00558,solar,11051,pv_rooftop,SEE998007290251 +Generator_mvgd_33535_lvgd_1151050000_pv_rooftop_92,BranchTee_mvgd_33535_lvgd_1151050000_building_431182,PQ,0.0046,solar,11051,pv_rooftop,SEE934190957014 +Generator_mvgd_33535_lvgd_1151050000_water_392,BranchTee_mvgd_33535_lvgd_1151050000_building_431158,PQ,0.035,water,,unknown,SEE934501542250 +Generator_mvgd_33535_lvgd_1152000000_pv_rooftop_155,BranchTee_mvgd_33535_lvgd_1152000000_building_440574,PQ,0.027,solar,11051,pv_rooftop,SEE946123715011 +Generator_mvgd_33535_lvgd_1152030000_pv_rooftop_63,BranchTee_mvgd_33535_lvgd_1152030000_building_440587,PQ,0.012,solar,11051,pv_rooftop,SEE905621630967 +Generator_mvgd_33535_lvgd_1152040000_pv_rooftop_115,BranchTee_mvgd_33535_lvgd_1152040000_building_441556,PQ,0.01221,solar,11051,pv_rooftop,SEE920390206649 +Generator_mvgd_33535_lvgd_1152050000_pv_rooftop_118,BranchTee_mvgd_33535_lvgd_1152050000_building_441472,PQ,0.0054,solar,11051,pv_rooftop,SEE913060235353 +Generator_mvgd_33535_lvgd_1152050000_pv_rooftop_151,BranchTee_mvgd_33535_lvgd_1152050000_building_441488,PQ,0.011,solar,11051,pv_rooftop,SEE956175764097 +Generator_mvgd_33535_lvgd_1152050000_pv_rooftop_16,BranchTee_mvgd_33535_lvgd_1152050000_building_441477,PQ,0.0441,solar,11051,pv_rooftop,SEE906701859209 +Generator_mvgd_33535_lvgd_1152050000_pv_rooftop_263,BranchTee_mvgd_33535_lvgd_1152050000_building_441469,PQ,0.02,solar,11051,pv_rooftop,SEE946902685795 +Generator_mvgd_33535_lvgd_1152050000_pv_rooftop_332,BranchTee_mvgd_33535_lvgd_1152050000_building_441471,PQ,0.004900000000000001,solar,11051,pv_rooftop,SEE907173484418 +Generator_mvgd_33535_lvgd_1152070000_pv_rooftop_135,BranchTee_mvgd_33535_lvgd_1152070000_building_441495,PQ,0.015,solar,11051,pv_rooftop,SEE943117008142 +Generator_mvgd_33535_lvgd_1152090000_pv_rooftop_220,BranchTee_mvgd_33535_lvgd_1152090000_building_441520,PQ,0.007,solar,11051,pv_rooftop,SEE976454281824 +Generator_mvgd_33535_lvgd_1152090000_pv_rooftop_347,BranchTee_mvgd_33535_lvgd_1152090000_building_441516,PQ,0.01199,solar,11051,pv_rooftop,SEE981335637652 +Generator_mvgd_33535_lvgd_1152120000_pv_rooftop_223,BranchTee_mvgd_33535_lvgd_1152120000_building_34328721,PQ,0.0038,solar,11051,pv_rooftop,SEE916098468137 +Generator_mvgd_33535_lvgd_1152120000_pv_rooftop_303,BranchTee_mvgd_33535_lvgd_1152120000_building_441553,PQ,0.020300000000000002,solar,11051,pv_rooftop,SEE944432539496 +Generator_mvgd_33535_lvgd_1152120000_pv_rooftop_353,BranchTee_mvgd_33535_lvgd_1152120000_building_441828,PQ,0.0075,solar,11051,pv_rooftop,SEE928767689156 +Generator_mvgd_33535_lvgd_1152120000_pv_rooftop_361,BranchTee_mvgd_33535_lvgd_1152120000_building_441864,PQ,0.0075,solar,11051,pv_rooftop,SEE946901941021 +Generator_mvgd_33535_lvgd_1152130000_pv_rooftop_359,BranchTee_mvgd_33535_lvgd_1152130000_building_441580,PQ,0.021,solar,11051,pv_rooftop,SEE939976909270 +Generator_mvgd_33535_lvgd_1152130000_pv_rooftop_91,BranchTee_mvgd_33535_lvgd_1152130000_building_441597,PQ,0.00684,solar,11051,pv_rooftop,SEE989765734767 +Generator_mvgd_33535_lvgd_1152400000_pv_rooftop_185,BranchTee_mvgd_33535_lvgd_1152400000_building_431468,PQ,0.0096,solar,11051,pv_rooftop,SEE923119892031 +Generator_mvgd_33535_lvgd_1155260000_pv_rooftop_301,BranchTee_mvgd_33535_lvgd_1155260000_building_431494,PQ,0.012,solar,11051,pv_rooftop,SEE960691792182 +Generator_mvgd_33535_lvgd_1155260000_pv_rooftop_88,BranchTee_mvgd_33535_lvgd_1155260000_building_431482,PQ,0.00375,solar,11051,pv_rooftop,SEE917370527658 +Generator_mvgd_33535_lvgd_1155260000_pv_rooftop_96,BranchTee_mvgd_33535_lvgd_1155260000_building_431492,PQ,0.005985000000000001,solar,11051,pv_rooftop,SEE915778770874 +Generator_mvgd_33535_lvgd_1155270000_pv_rooftop_9,BranchTee_mvgd_33535_lvgd_1155270000_building_431509,PQ,0.0105,solar,11051,pv_rooftop,SEE925126077739 +Generator_mvgd_33535_lvgd_1156440000_pv_rooftop_222,BranchTee_mvgd_33535_lvgd_1156440000_building_431335,PQ,0.00029,solar,11051,pv_rooftop,SEE940676343943 +Generator_mvgd_33535_lvgd_1156440000_pv_rooftop_254,BranchTee_mvgd_33535_lvgd_1156440000_building_431340,PQ,0.0057599999999999995,solar,11051,pv_rooftop,SEE932344541751 +Generator_mvgd_33535_lvgd_1156450000_pv_rooftop_350,BranchTee_mvgd_33535_lvgd_1156450000_building_431381,PQ,0.028,solar,11051,pv_rooftop,SEE921237642866 +Generator_mvgd_33535_lvgd_1160850000_pv_rooftop_260,BranchTee_mvgd_33535_lvgd_1160850000_building_431462,PQ,0.018,solar,11051,pv_rooftop,SEE959184681973 +Generator_mvgd_33535_lvgd_1160950000_pv_rooftop_300,BranchTee_mvgd_33535_lvgd_1160950000_building_431395,PQ,0.00828,solar,11051,pv_rooftop,SEE971744901970 +Generator_mvgd_33535_lvgd_1161990000_pv_rooftop_107,BranchTee_mvgd_33535_lvgd_1161990000_building_431592,PQ,0.0215,solar,11051,pv_rooftop,SEE959458253776 +Generator_mvgd_33535_lvgd_1161990000_pv_rooftop_261,BranchTee_mvgd_33535_lvgd_1161990000_building_431586,PQ,0.00621,solar,11051,pv_rooftop,SEE906444396689 +Generator_mvgd_33535_lvgd_1161990000_pv_rooftop_78,BranchTee_mvgd_33535_lvgd_1161990000_building_431566,PQ,0.009,solar,11051,pv_rooftop,SEE904057698244 +Generator_mvgd_33535_lvgd_1163060000_pv_rooftop_270,BranchTee_mvgd_33535_lvgd_1163060000_building_430839,PQ,0.005,solar,11051,pv_rooftop,SEE923377396821 +Generator_mvgd_33535_lvgd_1163320000_pv_rooftop_158,BranchTee_mvgd_33535_lvgd_1163320000_building_431661,PQ,0.022,solar,11051,pv_rooftop,SEE955099241998 +Generator_mvgd_33535_lvgd_1163320000_pv_rooftop_204,BranchTee_mvgd_33535_lvgd_1163320000_building_431670,PQ,0.0265,solar,11051,pv_rooftop,SEE991688095443 +Generator_mvgd_33535_lvgd_1163320000_pv_rooftop_379,BranchTee_mvgd_33535_lvgd_1163320000_building_431646,PQ,0.02898,solar,11051,pv_rooftop,SEE969171935675 +Generator_mvgd_33535_lvgd_1163330000_pv_rooftop_29,BranchTee_mvgd_33535_lvgd_1163330000_building_431718,PQ,0.016,solar,11051,pv_rooftop,SEE955924658700 +Generator_mvgd_33535_lvgd_1163330000_pv_rooftop_4,BranchTee_mvgd_33535_lvgd_1163330000_building_431717,PQ,0.00707,solar,11051,pv_rooftop,SEE926335413226 +Generator_mvgd_33535_lvgd_1163360000_pv_rooftop_249,BranchTee_mvgd_33535_lvgd_1163360000_building_431703,PQ,0.0005600000000000001,solar,11051,pv_rooftop,SEE985661155446 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_108,BranchTee_mvgd_33535_lvgd_1164120000_building_431829,PQ,0.0095,solar,11051,pv_rooftop,SEE901211124953 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_110,BranchTee_mvgd_33535_lvgd_1164120000_building_444941,PQ,0.00792,solar,11051,pv_rooftop,SEE953065567219 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_134,BranchTee_mvgd_33535_lvgd_1164120000_building_444892,PQ,0.008,solar,11051,pv_rooftop,SEE938602503288 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_15,BranchTee_mvgd_33535_lvgd_1164120000_building_444923,PQ,0.047,solar,11051,pv_rooftop,SEE967557167184 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_171,BranchTee_mvgd_33535_lvgd_1164120000_building_444916,PQ,0.022,solar,11051,pv_rooftop,SEE999809015356 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_19,BranchTee_mvgd_33535_lvgd_1164120000_building_444932,PQ,0.0294,solar,11051,pv_rooftop,SEE996524788909 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_212,BranchTee_mvgd_33535_lvgd_1164120000_building_444899,PQ,0.00936,solar,11051,pv_rooftop,SEE941814113411 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_253,BranchTee_mvgd_33535_lvgd_1164120000_building_431834,PQ,0.01,solar,11051,pv_rooftop,SEE977659013982 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_57,BranchTee_mvgd_33535_lvgd_1164120000_building_431801,PQ,0.00392,solar,11051,pv_rooftop,SEE998189242123 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_81,BranchTee_mvgd_33535_lvgd_1164120000_building_34999667,PQ,0.00195,solar,11051,pv_rooftop,SEE957395788641 +Generator_mvgd_33535_lvgd_1164120000_pv_rooftop_99,BranchTee_mvgd_33535_lvgd_1164120000_building_431827,PQ,0.00372,solar,11051,pv_rooftop,SEE984067167107 +Generator_mvgd_33535_lvgd_1164120001_pv_rooftop_142,BranchTee_mvgd_33535_lvgd_1164120001_building_444940,PQ,0.0253,solar,11051,pv_rooftop,SEE908253204681 +Generator_mvgd_33535_lvgd_1164120001_pv_rooftop_153,BranchTee_mvgd_33535_lvgd_1164120001_building_444929,PQ,0.0055,solar,11051,pv_rooftop,SEE925599504077 +Generator_mvgd_33535_lvgd_1164120001_pv_rooftop_199,BranchTee_mvgd_33535_lvgd_1164120001_building_34328674,PQ,0.00331,solar,11051,pv_rooftop,SEE930649583827 +Generator_mvgd_33535_lvgd_1164120001_pv_rooftop_344,BranchTee_mvgd_33535_lvgd_1164120001_building_444933,PQ,0.052,solar,11051,pv_rooftop,SEE926612018991 +Generator_mvgd_33535_lvgd_1164120002_pv_rooftop_13,BranchTee_mvgd_33535_lvgd_1164120002_building_441675,PQ,0.0297,solar,11051,pv_rooftop,SEE907231638319 +Generator_mvgd_33535_lvgd_1164120002_pv_rooftop_211,BranchTee_mvgd_33535_lvgd_1164120002_building_442055,PQ,0.0125,solar,11051,pv_rooftop,SEE935696648857 +Generator_mvgd_33535_lvgd_1164120002_pv_rooftop_277,BranchTee_mvgd_33535_lvgd_1164120002_building_442029,PQ,0.01,solar,11051,pv_rooftop,SEE944784179395 +Generator_mvgd_33535_lvgd_1164120002_pv_rooftop_324,BranchTee_mvgd_33535_lvgd_1164120002_building_441867,PQ,0.0033,solar,11051,pv_rooftop,SEE944086794098 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_112,BranchTee_mvgd_33535_lvgd_1164120003_building_445907,PQ,0.00108,solar,11051,pv_rooftop,SEE914663785818 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_116,BranchTee_mvgd_33535_lvgd_1164120003_building_445944,PQ,0.009980000000000001,solar,11051,pv_rooftop,SEE931880490356 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_143,BranchTee_mvgd_33535_lvgd_1164120003_building_445786,PQ,0.007594999999999999,solar,11051,pv_rooftop,SEE945832572366 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_150,BranchTee_mvgd_33535_lvgd_1164120003_building_445792,PQ,0.00575,solar,11051,pv_rooftop,SEE913846719725 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_162,BranchTee_mvgd_33535_lvgd_1164120003_building_445915,PQ,0.0165,solar,11051,pv_rooftop,SEE943858599831 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_173,BranchTee_mvgd_33535_lvgd_1164120003_building_445809,PQ,0.024,solar,11051,pv_rooftop,SEE974481197668 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_194,BranchTee_mvgd_33535_lvgd_1164120003_building_445886,PQ,0.00816,solar,11051,pv_rooftop,SEE993613614453 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_215,BranchTee_mvgd_33535_lvgd_1164120003_building_445791,PQ,0.00594,solar,11051,pv_rooftop,SEE973567924044 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_255,BranchTee_mvgd_33535_lvgd_1164120003_building_445843,PQ,0.0064800000000000005,solar,11051,pv_rooftop,SEE923742573642 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_269,BranchTee_mvgd_33535_lvgd_1164120003_building_445719,PQ,0.007,solar,11051,pv_rooftop,SEE986958664986 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_312,BranchTee_mvgd_33535_lvgd_1164120003_building_445766,PQ,0.008,solar,11051,pv_rooftop,SEE941286176631 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_329,BranchTee_mvgd_33535_lvgd_1164120003_building_445836,PQ,0.0052,solar,11051,pv_rooftop,SEE999320026893 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_331,BranchTee_mvgd_33535_lvgd_1164120003_building_445928,PQ,0.0052,solar,11051,pv_rooftop,SEE950604032870 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_348,BranchTee_mvgd_33535_lvgd_1164120003_building_445924,PQ,0.009349999999999999,solar,11051,pv_rooftop,SEE900377350275 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_358,BranchTee_mvgd_33535_lvgd_1164120003_building_445793,PQ,0.00936,solar,11051,pv_rooftop,SEE913209005540 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_38,BranchTee_mvgd_33535_lvgd_1164120003_building_445821,PQ,0.00992,solar,11051,pv_rooftop,SEE934162159460 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_39,BranchTee_mvgd_33535_lvgd_1164120003_building_445787,PQ,0.00966,solar,11051,pv_rooftop,SEE969670238383 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_47,BranchTee_mvgd_33535_lvgd_1164120003_building_445785,PQ,0.005,solar,11051,pv_rooftop,SEE972726553743 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_67,BranchTee_mvgd_33535_lvgd_1164120003_building_445940,PQ,0.0016200000000000001,solar,11051,pv_rooftop,SEE987185134761 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_77,BranchTee_mvgd_33535_lvgd_1164120003_building_446037,PQ,0.0275,solar,11051,pv_rooftop,SEE939566279165 +Generator_mvgd_33535_lvgd_1164120003_pv_rooftop_85,BranchTee_mvgd_33535_lvgd_1164120003_building_445801,PQ,0.008,solar,11051,pv_rooftop,SEE985774505527 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_120,BranchTee_mvgd_33535_lvgd_1164120004_building_445516,PQ,0.00375,solar,11051,pv_rooftop,SEE969824892874 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_129,BranchTee_mvgd_33535_lvgd_1164120004_building_445451,PQ,0.0156,solar,11051,pv_rooftop,SEE939144732020 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_177,BranchTee_mvgd_33535_lvgd_1164120004_building_445518,PQ,0.019899999999999998,solar,11051,pv_rooftop,SEE948409209214 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_184,BranchTee_mvgd_33535_lvgd_1164120004_building_445449,PQ,0.0275,solar,11051,pv_rooftop,SEE994961254339 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_197,BranchTee_mvgd_33535_lvgd_1164120004_building_445498,PQ,0.06,solar,11051,pv_rooftop,SEE943519090790 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_243,BranchTee_mvgd_33535_lvgd_1164120004_building_445507,PQ,0.027,solar,11051,pv_rooftop,SEE933008197017 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_246,BranchTee_mvgd_33535_lvgd_1164120004_building_445474,PQ,0.02165,solar,11051,pv_rooftop,SEE983367775517 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_266,BranchTee_mvgd_33535_lvgd_1164120004_building_445592,PQ,0.02964,solar,11051,pv_rooftop,SEE980880652608 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_342,BranchTee_mvgd_33535_lvgd_1164120004_building_445549,PQ,0.015,solar,11051,pv_rooftop,SEE960767682768 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_360,BranchTee_mvgd_33535_lvgd_1164120004_building_445432,PQ,0.0092,solar,11051,pv_rooftop,SEE970149546373 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_46,BranchTee_mvgd_33535_lvgd_1164120004_building_445622,PQ,0.025,solar,11051,pv_rooftop,SEE934315920022 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_58,BranchTee_mvgd_33535_lvgd_1164120004_building_445473,PQ,0.02975,solar,11051,pv_rooftop,SEE963694915527 +Generator_mvgd_33535_lvgd_1164120004_pv_rooftop_60,BranchTee_mvgd_33535_lvgd_1164120004_building_445513,PQ,0.026600000000000002,solar,11051,pv_rooftop,SEE959305621192 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_101,BranchTee_mvgd_33535_lvgd_1164120005_building_441672,PQ,0.005,solar,11051,pv_rooftop,SEE989780711491 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_221,BranchTee_mvgd_33535_lvgd_1164120005_building_441634,PQ,0.01923,solar,11051,pv_rooftop,SEE960274843768 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_234,BranchTee_mvgd_33535_lvgd_1164120005_building_441680,PQ,0.00945,solar,11051,pv_rooftop,SEE987396533735 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_238,BranchTee_mvgd_33535_lvgd_1164120005_building_441678,PQ,0.008400000000000001,solar,11051,pv_rooftop,SEE994651903998 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_275,BranchTee_mvgd_33535_lvgd_1164120005_building_441665,PQ,0.0425,solar,11051,pv_rooftop,SEE949788017568 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_302,BranchTee_mvgd_33535_lvgd_1164120005_building_441655,PQ,0.008,solar,11051,pv_rooftop,SEE988985874598 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_363,BranchTee_mvgd_33535_lvgd_1164120005_building_441659,PQ,0.0056,solar,11051,pv_rooftop,SEE949488661177 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_372,BranchTee_mvgd_33535_lvgd_1164120005_building_445471,PQ,0.0063,solar,11051,pv_rooftop,SEE935849845072 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_44,BranchTee_mvgd_33535_lvgd_1164120005_building_441754,PQ,0.02835,solar,11051,pv_rooftop,SEE904757344441 +Generator_mvgd_33535_lvgd_1164120005_pv_rooftop_87,BranchTee_mvgd_33535_lvgd_1164120005_building_441654,PQ,0.0038,solar,11051,pv_rooftop,SEE920530160015 +Generator_mvgd_33535_lvgd_1164120006_biomass_381,BranchTee_mvgd_33535_lvgd_1164120006_building_34967289,PQ,0.03,biomass,,unknown,SEE978946649525 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_0,BranchTee_mvgd_33535_lvgd_1164120006_building_445728,PQ,0.004200000000000001,solar,11051.0,pv_rooftop,SEE925305053547 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_103,BranchTee_mvgd_33535_lvgd_1164120006_building_445838,PQ,0.02545,solar,11051.0,pv_rooftop,SEE940313294492 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_125,BranchTee_mvgd_33535_lvgd_1164120006_building_445564,PQ,0.00735,solar,11051.0,pv_rooftop,SEE968496210993 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_149,BranchTee_mvgd_33535_lvgd_1164120006_building_445597,PQ,0.005,solar,11051.0,pv_rooftop,SEE941056926763 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_154,BranchTee_mvgd_33535_lvgd_1164120006_building_445576,PQ,0.00311,solar,11051.0,pv_rooftop,SEE984427229049 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_192,BranchTee_mvgd_33535_lvgd_1164120006_building_34967290,PQ,0.00294,solar,11051.0,pv_rooftop,SEE981853052685 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_225,BranchTee_mvgd_33535_lvgd_1164120006_building_445697,PQ,0.009300000000000001,solar,11051.0,pv_rooftop,SEE997657092758 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_23,BranchTee_mvgd_33535_lvgd_1164120006_building_445640,PQ,0.02286,solar,11051.0,pv_rooftop,SEE909637278366 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_242,BranchTee_mvgd_33535_lvgd_1164120006_building_445581,PQ,0.005,solar,11051.0,pv_rooftop,SEE978778407812 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_245,BranchTee_mvgd_33535_lvgd_1164120006_building_445601,PQ,0.0075,solar,11051.0,pv_rooftop,SEE960940897446 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_280,BranchTee_mvgd_33535_lvgd_1164120006_building_445663,PQ,0.017,solar,11051.0,pv_rooftop,SEE932397450413 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_308,BranchTee_mvgd_33535_lvgd_1164120006_building_445678,PQ,0.031149999999999997,solar,11051.0,pv_rooftop,SEE917876056669 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_311,BranchTee_mvgd_33535_lvgd_1164120006_building_445705,PQ,0.0092,solar,11051.0,pv_rooftop,SEE999051176997 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_319,BranchTee_mvgd_33535_lvgd_1164120006_building_445612,PQ,0.022420000000000002,solar,11051.0,pv_rooftop,SEE974715371512 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_351,BranchTee_mvgd_33535_lvgd_1164120006_building_445875,PQ,0.00999,solar,11051.0,pv_rooftop,SEE998835650487 +Generator_mvgd_33535_lvgd_1164120006_pv_rooftop_73,BranchTee_mvgd_33535_lvgd_1164120006_building_445849,PQ,0.00754,solar,11051.0,pv_rooftop,SEE951651456503 +Generator_mvgd_33535_lvgd_1164120006_water_387,BranchTee_mvgd_33535_lvgd_1164120006_building_34967289,PQ,0.021,water,,unknown,SEE915273329782 +Generator_mvgd_33535_lvgd_1164120006_water_388,BranchTee_mvgd_33535_lvgd_1164120006_building_34967289,PQ,0.028,water,,unknown,SEE974175362273 +Generator_mvgd_33535_lvgd_1164120006_water_393,BranchTee_mvgd_33535_lvgd_1164120006_building_34967289,PQ,0.025,water,,unknown,SEE980323149023 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_117,BranchTee_mvgd_33535_lvgd_1164120007_building_445611,PQ,0.0096,solar,11051,pv_rooftop,SEE952559977664 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_121,BranchTee_mvgd_33535_lvgd_1164120007_building_445651,PQ,0.0055,solar,11051,pv_rooftop,SEE909304854961 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_133,BranchTee_mvgd_33535_lvgd_1164120007_building_441782,PQ,0.01425,solar,11051,pv_rooftop,SEE965035613741 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_138,BranchTee_mvgd_33535_lvgd_1164120007_building_445602,PQ,0.009949999999999999,solar,11051,pv_rooftop,SEE982613383278 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_159,BranchTee_mvgd_33535_lvgd_1164120007_building_441708,PQ,0.0045,solar,11051,pv_rooftop,SEE910573880483 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_190,BranchTee_mvgd_33535_lvgd_1164120007_building_441803,PQ,0.02075,solar,11051,pv_rooftop,SEE990208604356 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_205,BranchTee_mvgd_33535_lvgd_1164120007_building_445732,PQ,0.00833,solar,11051,pv_rooftop,SEE958890630701 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_26,BranchTee_mvgd_33535_lvgd_1164120007_building_445627,PQ,0.04032,solar,11051,pv_rooftop,SEE907001292918 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_285,BranchTee_mvgd_33535_lvgd_1164120007_building_445692,PQ,0.0085,solar,11051,pv_rooftop,SEE934446948827 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_288,BranchTee_mvgd_33535_lvgd_1164120007_building_441764,PQ,0.0425,solar,11051,pv_rooftop,SEE934065936748 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_293,BranchTee_mvgd_33535_lvgd_1164120007_building_445711,PQ,0.012045,solar,11051,pv_rooftop,SEE921620089261 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_326,BranchTee_mvgd_33535_lvgd_1164120007_building_441783,PQ,0.0144,solar,11051,pv_rooftop,SEE995868804696 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_356,BranchTee_mvgd_33535_lvgd_1164120007_building_441743,PQ,0.01,solar,11051,pv_rooftop,SEE973563001367 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_61,BranchTee_mvgd_33535_lvgd_1164120007_building_441752,PQ,0.00635,solar,11051,pv_rooftop,SEE954999872080 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_66,BranchTee_mvgd_33535_lvgd_1164120007_building_441785,PQ,0.009,solar,11051,pv_rooftop,SEE983560644573 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_89,BranchTee_mvgd_33535_lvgd_1164120007_building_441715,PQ,0.004,solar,11051,pv_rooftop,SEE903457987811 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_94,BranchTee_mvgd_33535_lvgd_1164120007_building_441814,PQ,0.0136,solar,11051,pv_rooftop,SEE937739059378 +Generator_mvgd_33535_lvgd_1164120007_pv_rooftop_98,BranchTee_mvgd_33535_lvgd_1164120007_building_441796,PQ,0.0046,solar,11051,pv_rooftop,SEE955552755970 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_11,BranchTee_mvgd_33535_lvgd_1164120008_building_441961,PQ,0.0076,solar,11051,pv_rooftop,SEE935312500101 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_147,BranchTee_mvgd_33535_lvgd_1164120008_building_441921,PQ,0.0221,solar,11051,pv_rooftop,SEE954440492546 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_169,BranchTee_mvgd_33535_lvgd_1164120008_building_441908,PQ,0.007,solar,11051,pv_rooftop,SEE976666138978 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_17,BranchTee_mvgd_33535_lvgd_1164120008_building_441790,PQ,0.027,solar,11051,pv_rooftop,SEE966782343110 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_175,BranchTee_mvgd_33535_lvgd_1164120008_building_441906,PQ,0.00891,solar,11051,pv_rooftop,SEE921460111733 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_200,BranchTee_mvgd_33535_lvgd_1164120008_building_441958,PQ,0.033,solar,11051,pv_rooftop,SEE946455770863 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_206,BranchTee_mvgd_33535_lvgd_1164120008_building_441892,PQ,0.02275,solar,11051,pv_rooftop,SEE927969996116 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_25,BranchTee_mvgd_33535_lvgd_1164120008_building_441876,PQ,0.00999,solar,11051,pv_rooftop,SEE940321796711 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_328,BranchTee_mvgd_33535_lvgd_1164120008_building_441894,PQ,0.007,solar,11051,pv_rooftop,SEE940656260277 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_64,BranchTee_mvgd_33535_lvgd_1164120008_building_441952,PQ,0.02,solar,11051,pv_rooftop,SEE944885479004 +Generator_mvgd_33535_lvgd_1164120008_pv_rooftop_84,BranchTee_mvgd_33535_lvgd_1164120008_building_441769,PQ,0.02289,solar,11051,pv_rooftop,SEE960805277512 +Generator_mvgd_33535_lvgd_1164120009_pv_rooftop_145,BranchTee_mvgd_33535_lvgd_1164120009_building_446063,PQ,0.0092,solar,11051,pv_rooftop,SEE928247017141 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_12,BranchTee_mvgd_33535_lvgd_1164120010_building_442001,PQ,0.022,solar,11051,pv_rooftop,SEE937728060927 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_130,BranchTee_mvgd_33535_lvgd_1164120010_building_446009,PQ,0.0085,solar,11051,pv_rooftop,SEE918598517698 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_180,BranchTee_mvgd_33535_lvgd_1164120010_building_445999,PQ,0.02156,solar,11051,pv_rooftop,SEE996965309039 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_214,BranchTee_mvgd_33535_lvgd_1164120010_building_446035,PQ,0.00907,solar,11051,pv_rooftop,SEE985052087349 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_241,BranchTee_mvgd_33535_lvgd_1164120010_building_445985,PQ,0.055,solar,11051,pv_rooftop,SEE973383456736 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_257,BranchTee_mvgd_33535_lvgd_1164120010_building_441932,PQ,0.012199999999999999,solar,11051,pv_rooftop,SEE981470046159 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_296,BranchTee_mvgd_33535_lvgd_1164120010_building_441931,PQ,0.009945,solar,11051,pv_rooftop,SEE960966005894 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_35,BranchTee_mvgd_33535_lvgd_1164120010_building_442022,PQ,0.035,solar,11051,pv_rooftop,SEE958878383049 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_364,BranchTee_mvgd_33535_lvgd_1164120010_building_446054,PQ,0.0106,solar,11051,pv_rooftop,SEE967705181017 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_6,BranchTee_mvgd_33535_lvgd_1164120010_building_442065,PQ,0.016120000000000002,solar,11051,pv_rooftop,SEE960729355242 +Generator_mvgd_33535_lvgd_1164120010_pv_rooftop_97,BranchTee_mvgd_33535_lvgd_1164120010_building_446026,PQ,0.0112,solar,11051,pv_rooftop,SEE932697785475 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_106,BranchTee_mvgd_33535_lvgd_1164120011_building_445765,PQ,0.013,solar,11051,pv_rooftop,SEE979551087283 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_14,BranchTee_mvgd_33535_lvgd_1164120011_building_445752,PQ,0.025,solar,11051,pv_rooftop,SEE966120150585 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_157,BranchTee_mvgd_33535_lvgd_1164120011_building_445802,PQ,0.007,solar,11051,pv_rooftop,SEE974379114340 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_163,BranchTee_mvgd_33535_lvgd_1164120011_building_445795,PQ,0.006,solar,11051,pv_rooftop,SEE908176700895 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_216,BranchTee_mvgd_33535_lvgd_1164120011_building_446013,PQ,0.0048,solar,11051,pv_rooftop,SEE912020335942 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_279,BranchTee_mvgd_33535_lvgd_1164120011_building_445974,PQ,0.0050999999999999995,solar,11051,pv_rooftop,SEE939050013176 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_284,BranchTee_mvgd_33535_lvgd_1164120011_building_445806,PQ,0.005,solar,11051,pv_rooftop,SEE997669830126 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_309,BranchTee_mvgd_33535_lvgd_1164120011_building_445764,PQ,0.009,solar,11051,pv_rooftop,SEE999796969403 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_374,BranchTee_mvgd_33535_lvgd_1164120011_building_445807,PQ,0.042,solar,11051,pv_rooftop,SEE920328225926 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_51,BranchTee_mvgd_33535_lvgd_1164120011_building_446007,PQ,0.005,solar,11051,pv_rooftop,SEE969280744014 +Generator_mvgd_33535_lvgd_1164120011_pv_rooftop_72,BranchTee_mvgd_33535_lvgd_1164120011_building_445979,PQ,0.027,solar,11051,pv_rooftop,SEE921883941993 +Generator_mvgd_33535_lvgd_1164120012_pv_rooftop_189,BranchTee_mvgd_33535_lvgd_1164120012_building_431786,PQ,0.008,solar,11051,pv_rooftop,SEE921760283789 +Generator_mvgd_33535_lvgd_1164120012_pv_rooftop_282,BranchTee_mvgd_33535_lvgd_1164120012_building_431759,PQ,0.009,solar,11051,pv_rooftop,SEE901089490600 +Generator_mvgd_33535_lvgd_1164120012_pv_rooftop_298,BranchTee_mvgd_33535_lvgd_1164120012_building_431773,PQ,0.00975,solar,11051,pv_rooftop,SEE978141748177 +Generator_mvgd_33535_lvgd_1164120012_pv_rooftop_299,BranchTee_mvgd_33535_lvgd_1164120012_building_431793,PQ,0.0049900000000000005,solar,11051,pv_rooftop,SEE990758363239 +Generator_mvgd_33535_lvgd_1164120013_pv_rooftop_202,BranchTee_mvgd_33535_lvgd_1164120013_building_441620,PQ,0.019,solar,11051,pv_rooftop,SEE945469637490 +Generator_mvgd_33535_lvgd_1164120014_pv_rooftop_219,BranchTee_mvgd_33535_lvgd_1164120014_building_442006,PQ,0.01988,solar,11051,pv_rooftop,SEE922780202583 +Generator_mvgd_33535_lvgd_1164120014_pv_rooftop_290,BranchTee_mvgd_33535_lvgd_1164120014_building_441999,PQ,0.03154,solar,11051,pv_rooftop,SEE993261715038 +Generator_mvgd_33535_lvgd_1164120014_pv_rooftop_30,BranchTee_mvgd_33535_lvgd_1164120014_building_441988,PQ,0.0070999999999999995,solar,11051,pv_rooftop,SEE906665047469 +Generator_mvgd_33535_lvgd_1164120014_pv_rooftop_70,BranchTee_mvgd_33535_lvgd_1164120014_building_442013,PQ,0.005,solar,11051,pv_rooftop,SEE923210690093 +Generator_mvgd_33535_lvgd_1164160000_water_391,Bus_mvgd_33535_lvgd_1164160000_gen_391,PQ,0.035,water,,unknown,SEE997849988746 +Generator_mvgd_33535_lvgd_1164200000_pv_rooftop_139,BranchTee_mvgd_33535_lvgd_1164200000_building_444989,PQ,0.0086,solar,11051,pv_rooftop,SEE908096272113 +Generator_mvgd_33535_lvgd_1164200000_pv_rooftop_345,BranchTee_mvgd_33535_lvgd_1164200000_building_444969,PQ,0.01283,solar,11051,pv_rooftop,SEE946418522782 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_100,BranchTee_mvgd_33535_lvgd_1164210000_building_446938,PQ,0.00923,solar,11051,pv_rooftop,SEE908486959433 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_105,BranchTee_mvgd_33535_lvgd_1164210000_building_447040,PQ,0.017,solar,11051,pv_rooftop,SEE976516699710 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_109,BranchTee_mvgd_33535_lvgd_1164210000_building_446829,PQ,0.009,solar,11051,pv_rooftop,SEE914527129321 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_119,BranchTee_mvgd_33535_lvgd_1164210000_building_446918,PQ,0.008,solar,11051,pv_rooftop,SEE965792264095 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_127,BranchTee_mvgd_33535_lvgd_1164210000_building_446941,PQ,0.024,solar,11051,pv_rooftop,SEE917180297956 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_131,BranchTee_mvgd_33535_lvgd_1164210000_building_446708,PQ,0.0128,solar,11051,pv_rooftop,SEE984568853929 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_141,BranchTee_mvgd_33535_lvgd_1164210000_building_446762,PQ,0.01235,solar,11051,pv_rooftop,SEE965405805981 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_146,BranchTee_mvgd_33535_lvgd_1164210000_building_446959,PQ,0.0292,solar,11051,pv_rooftop,SEE901075000011 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_186,BranchTee_mvgd_33535_lvgd_1164210000_building_447117,PQ,0.018,solar,11051,pv_rooftop,SEE952909657918 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_196,BranchTee_mvgd_33535_lvgd_1164210000_building_446942,PQ,0.0070350000000000005,solar,11051,pv_rooftop,SEE951856589419 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_201,BranchTee_mvgd_33535_lvgd_1164210000_building_446973,PQ,0.01275,solar,11051,pv_rooftop,SEE913385552456 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_210,BranchTee_mvgd_33535_lvgd_1164210000_building_34328680,PQ,0.002,solar,11051,pv_rooftop,SEE950518129741 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_22,BranchTee_mvgd_33535_lvgd_1164210000_building_446905,PQ,0.010874,solar,11051,pv_rooftop,SEE997895172311 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_228,BranchTee_mvgd_33535_lvgd_1164210000_building_446801,PQ,0.00864,solar,11051,pv_rooftop,SEE933281591076 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_232,BranchTee_mvgd_33535_lvgd_1164210000_building_446731,PQ,0.009,solar,11051,pv_rooftop,SEE921421878552 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_233,BranchTee_mvgd_33535_lvgd_1164210000_building_447019,PQ,0.0115,solar,11051,pv_rooftop,SEE910976210597 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_240,BranchTee_mvgd_33535_lvgd_1164210000_building_447167,PQ,0.0115,solar,11051,pv_rooftop,SEE904775993539 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_244,BranchTee_mvgd_33535_lvgd_1164210000_building_446833,PQ,0.054,solar,11051,pv_rooftop,SEE995333870355 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_247,BranchTee_mvgd_33535_lvgd_1164210000_building_446766,PQ,0.009,solar,11051,pv_rooftop,SEE998358520144 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_250,BranchTee_mvgd_33535_lvgd_1164210000_building_446923,PQ,0.015,solar,11051,pv_rooftop,SEE914466971913 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_256,BranchTee_mvgd_33535_lvgd_1164210000_building_446855,PQ,0.0297,solar,11051,pv_rooftop,SEE943729177021 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_258,BranchTee_mvgd_33535_lvgd_1164210000_building_446750,PQ,0.006,solar,11051,pv_rooftop,SEE996456872400 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_271,BranchTee_mvgd_33535_lvgd_1164210000_building_446882,PQ,0.009980000000000001,solar,11051,pv_rooftop,SEE909087642205 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_276,BranchTee_mvgd_33535_lvgd_1164210000_building_446946,PQ,0.0189,solar,11051,pv_rooftop,SEE961565398141 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_283,BranchTee_mvgd_33535_lvgd_1164210000_building_447045,PQ,0.013800000000000002,solar,11051,pv_rooftop,SEE964444251377 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_289,BranchTee_mvgd_33535_lvgd_1164210000_building_447038,PQ,0.0147,solar,11051,pv_rooftop,SEE994335696802 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_292,BranchTee_mvgd_33535_lvgd_1164210000_building_446963,PQ,0.01,solar,11051,pv_rooftop,SEE920755389017 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_304,BranchTee_mvgd_33535_lvgd_1164210000_building_446778,PQ,0.006,solar,11051,pv_rooftop,SEE918598164342 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_310,BranchTee_mvgd_33535_lvgd_1164210000_building_446920,PQ,0.0099,solar,11051,pv_rooftop,SEE923391148505 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_314,BranchTee_mvgd_33535_lvgd_1164210000_building_446842,PQ,0.007,solar,11051,pv_rooftop,SEE946065730882 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_330,BranchTee_mvgd_33535_lvgd_1164210000_building_446928,PQ,0.008085,solar,11051,pv_rooftop,SEE923763232030 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_333,BranchTee_mvgd_33535_lvgd_1164210000_building_446916,PQ,0.025,solar,11051,pv_rooftop,SEE965066268354 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_334,BranchTee_mvgd_33535_lvgd_1164210000_building_447162,PQ,0.0217,solar,11051,pv_rooftop,SEE997023610838 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_339,BranchTee_mvgd_33535_lvgd_1164210000_building_446998,PQ,0.039,solar,11051,pv_rooftop,SEE983616722897 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_340,BranchTee_mvgd_33535_lvgd_1164210000_building_447132,PQ,0.0054,solar,11051,pv_rooftop,SEE946011956120 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_341,BranchTee_mvgd_33535_lvgd_1164210000_building_447131,PQ,0.05,solar,11051,pv_rooftop,SEE931367276558 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_352,BranchTee_mvgd_33535_lvgd_1164210000_building_446758,PQ,0.008,solar,11051,pv_rooftop,SEE996759683451 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_362,BranchTee_mvgd_33535_lvgd_1164210000_building_446933,PQ,0.042,solar,11051,pv_rooftop,SEE964920810869 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_365,BranchTee_mvgd_33535_lvgd_1164210000_building_447009,PQ,0.005,solar,11051,pv_rooftop,SEE925563122559 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_370,BranchTee_mvgd_33535_lvgd_1164210000_building_446797,PQ,0.016800000000000002,solar,11051,pv_rooftop,SEE920881338651 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_377,BranchTee_mvgd_33535_lvgd_1164210000_building_446827,PQ,0.005,solar,11051,pv_rooftop,SEE951120678405 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_378,BranchTee_mvgd_33535_lvgd_1164210000_building_446825,PQ,0.0144,solar,11051,pv_rooftop,SEE979526527660 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_43,BranchTee_mvgd_33535_lvgd_1164210000_building_446755,PQ,0.005,solar,11051,pv_rooftop,SEE925385251802 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_5,BranchTee_mvgd_33535_lvgd_1164210000_building_446932,PQ,0.009,solar,11051,pv_rooftop,SEE922971866259 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_52,BranchTee_mvgd_33535_lvgd_1164210000_building_447010,PQ,0.0050999999999999995,solar,11051,pv_rooftop,SEE951330898464 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_56,BranchTee_mvgd_33535_lvgd_1164210000_building_446751,PQ,0.012455,solar,11051,pv_rooftop,SEE973102950156 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_62,BranchTee_mvgd_33535_lvgd_1164210000_building_447109,PQ,0.0092,solar,11051,pv_rooftop,SEE960951036087 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_7,BranchTee_mvgd_33535_lvgd_1164210000_building_447099,PQ,0.007,solar,11051,pv_rooftop,SEE954762621648 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_74,BranchTee_mvgd_33535_lvgd_1164210000_building_446841,PQ,0.020399999999999998,solar,11051,pv_rooftop,SEE905099548481 +Generator_mvgd_33535_lvgd_1164210000_pv_rooftop_90,BranchTee_mvgd_33535_lvgd_1164210000_building_447147,PQ,0.008,solar,11051,pv_rooftop,SEE945297330273 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_168,BranchTee_mvgd_33535_lvgd_1164210001_building_446617,PQ,0.0126,solar,11051,pv_rooftop,SEE920060888397 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_217,BranchTee_mvgd_33535_lvgd_1164210001_building_446551,PQ,0.00816,solar,11051,pv_rooftop,SEE978688063924 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_231,BranchTee_mvgd_33535_lvgd_1164210001_building_446652,PQ,0.0145,solar,11051,pv_rooftop,SEE971681482846 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_235,BranchTee_mvgd_33535_lvgd_1164210001_building_446660,PQ,0.01193,solar,11051,pv_rooftop,SEE914090912047 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_27,BranchTee_mvgd_33535_lvgd_1164210001_building_446592,PQ,0.0146,solar,11051,pv_rooftop,SEE936566858840 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_32,BranchTee_mvgd_33535_lvgd_1164210001_building_446657,PQ,0.01512,solar,11051,pv_rooftop,SEE953781217061 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_323,BranchTee_mvgd_33535_lvgd_1164210001_building_446556,PQ,0.0212,solar,11051,pv_rooftop,SEE942955006198 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_373,BranchTee_mvgd_33535_lvgd_1164210001_building_446659,PQ,0.007,solar,11051,pv_rooftop,SEE918119977215 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_68,BranchTee_mvgd_33535_lvgd_1164210001_building_446595,PQ,0.0025,solar,11051,pv_rooftop,SEE926946202547 +Generator_mvgd_33535_lvgd_1164210001_pv_rooftop_95,BranchTee_mvgd_33535_lvgd_1164210001_building_446604,PQ,0.01,solar,11051,pv_rooftop,SEE915336069884 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_1,BranchTee_mvgd_33535_lvgd_1164210002_building_446258,PQ,0.0052,solar,11051,pv_rooftop,SEE997152774272 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_10,BranchTee_mvgd_33535_lvgd_1164210002_building_446230,PQ,0.02475,solar,11051,pv_rooftop,SEE910389152934 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_102,BranchTee_mvgd_33535_lvgd_1164210002_building_446272,PQ,0.005,solar,11051,pv_rooftop,SEE943824737854 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_137,BranchTee_mvgd_33535_lvgd_1164210002_building_446279,PQ,0.008400000000000001,solar,11051,pv_rooftop,SEE925195117077 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_140,BranchTee_mvgd_33535_lvgd_1164210002_building_446262,PQ,0.0056,solar,11051,pv_rooftop,SEE994541328764 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_18,BranchTee_mvgd_33535_lvgd_1164210002_building_446276,PQ,0.005,solar,11051,pv_rooftop,SEE936984880027 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_259,BranchTee_mvgd_33535_lvgd_1164210002_building_445977,PQ,0.0075,solar,11051,pv_rooftop,SEE970896075522 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_267,BranchTee_mvgd_33535_lvgd_1164210002_building_446321,PQ,0.011699999999999999,solar,11051,pv_rooftop,SEE917319146988 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_316,BranchTee_mvgd_33535_lvgd_1164210002_building_446293,PQ,0.007315,solar,11051,pv_rooftop,SEE901707063148 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_59,BranchTee_mvgd_33535_lvgd_1164210002_building_446239,PQ,0.0085,solar,11051,pv_rooftop,SEE900010880022 +Generator_mvgd_33535_lvgd_1164210002_pv_rooftop_79,BranchTee_mvgd_33535_lvgd_1164210002_building_446305,PQ,0.0085,solar,11051,pv_rooftop,SEE905076761322 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_111,BranchTee_mvgd_33535_lvgd_1164210003_building_448071,PQ,0.0052,solar,11051,pv_rooftop,SEE982866830635 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_164,BranchTee_mvgd_33535_lvgd_1164210003_building_448031,PQ,0.007,solar,11051,pv_rooftop,SEE925866663551 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_176,BranchTee_mvgd_33535_lvgd_1164210003_building_448094,PQ,0.0055,solar,11051,pv_rooftop,SEE936236505982 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_178,BranchTee_mvgd_33535_lvgd_1164210003_building_448044,PQ,0.004,solar,11051,pv_rooftop,SEE956103008866 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_183,BranchTee_mvgd_33535_lvgd_1164210003_building_447217,PQ,0.00777,solar,11051,pv_rooftop,SEE978389329398 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_20,BranchTee_mvgd_33535_lvgd_1164210003_building_447088,PQ,0.00784,solar,11051,pv_rooftop,SEE948369910847 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_208,BranchTee_mvgd_33535_lvgd_1164210003_building_447080,PQ,0.00216,solar,11051,pv_rooftop,SEE914042062615 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_224,BranchTee_mvgd_33535_lvgd_1164210003_building_447151,PQ,0.0115,solar,11051,pv_rooftop,SEE944933971580 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_226,BranchTee_mvgd_33535_lvgd_1164210003_building_448027,PQ,0.00744,solar,11051,pv_rooftop,SEE965128257883 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_230,BranchTee_mvgd_33535_lvgd_1164210003_building_448051,PQ,0.00525,solar,11051,pv_rooftop,SEE972654291496 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_236,BranchTee_mvgd_33535_lvgd_1164210003_building_448065,PQ,0.00858,solar,11051,pv_rooftop,SEE936049223509 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_24,BranchTee_mvgd_33535_lvgd_1164210003_building_448037,PQ,0.007,solar,11051,pv_rooftop,SEE940080490158 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_281,BranchTee_mvgd_33535_lvgd_1164210003_building_448041,PQ,0.005,solar,11051,pv_rooftop,SEE967253493730 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_307,BranchTee_mvgd_33535_lvgd_1164210003_building_448073,PQ,0.0046,solar,11051,pv_rooftop,SEE993632481326 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_322,BranchTee_mvgd_33535_lvgd_1164210003_building_448053,PQ,0.03,solar,11051,pv_rooftop,SEE971927009028 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_327,BranchTee_mvgd_33535_lvgd_1164210003_building_447193,PQ,0.01,solar,11051,pv_rooftop,SEE913614305433 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_355,BranchTee_mvgd_33535_lvgd_1164210003_building_448124,PQ,0.022,solar,11051,pv_rooftop,SEE992141353230 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_36,BranchTee_mvgd_33535_lvgd_1164210003_building_448019,PQ,0.0006,solar,11051,pv_rooftop,SEE952812544046 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_368,BranchTee_mvgd_33535_lvgd_1164210003_building_448034,PQ,0.004,solar,11051,pv_rooftop,SEE919320328025 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_37,BranchTee_mvgd_33535_lvgd_1164210003_building_448085,PQ,0.0055,solar,11051,pv_rooftop,SEE961691167314 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_375,BranchTee_mvgd_33535_lvgd_1164210003_building_447061,PQ,0.00495,solar,11051,pv_rooftop,SEE957317425616 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_41,BranchTee_mvgd_33535_lvgd_1164210003_building_447090,PQ,0.052,solar,11051,pv_rooftop,SEE982825751629 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_69,BranchTee_mvgd_33535_lvgd_1164210003_building_447075,PQ,0.01,solar,11051,pv_rooftop,SEE948857822027 +Generator_mvgd_33535_lvgd_1164210003_pv_rooftop_80,BranchTee_mvgd_33535_lvgd_1164210003_building_447177,PQ,0.0096,solar,11051,pv_rooftop,SEE960518252172 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_124,BranchTee_mvgd_33535_lvgd_1164210004_building_446223,PQ,0.02912,solar,11051,pv_rooftop,SEE986243199322 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_152,BranchTee_mvgd_33535_lvgd_1164210004_building_446183,PQ,0.00157,solar,11051,pv_rooftop,SEE961524877229 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_156,BranchTee_mvgd_33535_lvgd_1164210004_building_446112,PQ,0.0055,solar,11051,pv_rooftop,SEE921662371201 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_165,BranchTee_mvgd_33535_lvgd_1164210004_building_446212,PQ,0.004,solar,11051,pv_rooftop,SEE914701349798 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_191,BranchTee_mvgd_33535_lvgd_1164210004_building_446146,PQ,0.0264,solar,11051,pv_rooftop,SEE990993389506 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_207,BranchTee_mvgd_33535_lvgd_1164210004_building_446178,PQ,0.009300000000000001,solar,11051,pv_rooftop,SEE955072342940 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_237,BranchTee_mvgd_33535_lvgd_1164210004_building_446099,PQ,0.00984,solar,11051,pv_rooftop,SEE977807367714 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_251,BranchTee_mvgd_33535_lvgd_1164210004_building_446097,PQ,0.006,solar,11051,pv_rooftop,SEE984643854940 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_265,BranchTee_mvgd_33535_lvgd_1164210004_building_446200,PQ,0.019,solar,11051,pv_rooftop,SEE998760731466 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_286,BranchTee_mvgd_33535_lvgd_1164210004_building_446107,PQ,0.005,solar,11051,pv_rooftop,SEE992065824052 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_306,BranchTee_mvgd_33535_lvgd_1164210004_building_446213,PQ,0.0116,solar,11051,pv_rooftop,SEE986765050057 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_31,BranchTee_mvgd_33535_lvgd_1164210004_building_446209,PQ,0.006900000000000001,solar,11051,pv_rooftop,SEE956202009160 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_336,BranchTee_mvgd_33535_lvgd_1164210004_building_446126,PQ,0.0171,solar,11051,pv_rooftop,SEE939040876521 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_367,BranchTee_mvgd_33535_lvgd_1164210004_building_446100,PQ,0.005,solar,11051,pv_rooftop,SEE926022376667 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_48,BranchTee_mvgd_33535_lvgd_1164210004_building_446123,PQ,0.019,solar,11051,pv_rooftop,SEE921376356389 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_53,BranchTee_mvgd_33535_lvgd_1164210004_building_34328731,PQ,0.0045,solar,11051,pv_rooftop,SEE902193078081 +Generator_mvgd_33535_lvgd_1164210004_pv_rooftop_83,BranchTee_mvgd_33535_lvgd_1164210004_building_446152,PQ,0.0023799999999999997,solar,11051,pv_rooftop,SEE918791162565 +Generator_mvgd_33535_lvgd_1164210005_pv_rooftop_239,BranchTee_mvgd_33535_lvgd_1164210005_building_446320,PQ,0.01275,solar,11051,pv_rooftop,SEE940999992002 +Generator_mvgd_33535_lvgd_1164210005_pv_rooftop_343,BranchTee_mvgd_33535_lvgd_1164210005_building_446335,PQ,0.004019999999999999,solar,11051,pv_rooftop,SEE929759997266 +Generator_mvgd_33535_lvgd_1164210005_pv_rooftop_371,BranchTee_mvgd_33535_lvgd_1164210005_building_446343,PQ,0.00545,solar,11051,pv_rooftop,SEE990504722495 +Generator_mvgd_33535_lvgd_1164210005_pv_rooftop_86,BranchTee_mvgd_33535_lvgd_1164210005_building_446341,PQ,0.00375,solar,11051,pv_rooftop,SEE916630811827 +Generator_mvgd_33535_lvgd_1166430000_pv_rooftop_50,BranchTee_mvgd_33535_lvgd_1166430000_building_431451,PQ,0.0035800000000000003,solar,11051,pv_rooftop,SEE984450187132 +Generator_mvgd_33535_lvgd_1166910000_pv_rooftop_144,BranchTee_mvgd_33535_lvgd_1166910000_building_431621,PQ,0.027565000000000003,solar,11051,pv_rooftop,SEE968900040550 +Generator_mvgd_33535_lvgd_1166910000_pv_rooftop_55,BranchTee_mvgd_33535_lvgd_1166910000_building_431452,PQ,0.006,solar,11051,pv_rooftop,SEE980356266452 +Generator_mvgd_33535_lvgd_1166910000_pv_rooftop_71,BranchTee_mvgd_33535_lvgd_1166910000_building_431588,PQ,0.018,solar,11051,pv_rooftop,SEE984352290541 +Generator_mvgd_33535_lvgd_1170540000_pv_rooftop_2,BranchTee_mvgd_33535_lvgd_1170540000_building_446413,PQ,0.020399999999999998,solar,11051,pv_rooftop,SEE967028570376 +Generator_mvgd_33535_lvgd_1170540000_pv_rooftop_376,BranchTee_mvgd_33535_lvgd_1170540000_building_446416,PQ,0.01332,solar,11051,pv_rooftop,SEE988331075662 +Generator_mvgd_33535_lvgd_1171050000_pv_rooftop_40,BranchTee_mvgd_33535_lvgd_1171050000_building_446469,PQ,0.00875,solar,11051,pv_rooftop,SEE946093729520 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_113,BranchTee_mvgd_33535_lvgd_1172410000_building_444574,PQ,0.0216,solar,11051,pv_rooftop,SEE900324378406 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_132,BranchTee_mvgd_33535_lvgd_1172410000_building_444737,PQ,0.00846,solar,11051,pv_rooftop,SEE998107011060 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_166,BranchTee_mvgd_33535_lvgd_1172410000_building_444552,PQ,0.0146,solar,11051,pv_rooftop,SEE972497850638 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_268,BranchTee_mvgd_33535_lvgd_1172410000_building_444573,PQ,0.006,solar,11051,pv_rooftop,SEE940094551265 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_295,BranchTee_mvgd_33535_lvgd_1172410000_building_444538,PQ,0.02142,solar,11051,pv_rooftop,SEE917435520617 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_320,BranchTee_mvgd_33535_lvgd_1172410000_building_444466,PQ,0.00441,solar,11051,pv_rooftop,SEE973512263501 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_346,BranchTee_mvgd_33535_lvgd_1172410000_building_444562,PQ,0.01,solar,11051,pv_rooftop,SEE927405044494 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_349,BranchTee_mvgd_33535_lvgd_1172410000_building_444502,PQ,0.0088,solar,11051,pv_rooftop,SEE933779575694 +Generator_mvgd_33535_lvgd_1172410000_pv_rooftop_93,BranchTee_mvgd_33535_lvgd_1172410000_building_444571,PQ,0.0060999999999999995,solar,11051,pv_rooftop,SEE994438857438 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_104,BranchTee_mvgd_33535_lvgd_1172410001_building_444694,PQ,0.0075,solar,11051,pv_rooftop,SEE997624562925 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_123,BranchTee_mvgd_33535_lvgd_1172410001_building_444728,PQ,0.00049,solar,11051,pv_rooftop,SEE979026393901 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_136,BranchTee_mvgd_33535_lvgd_1172410001_building_444831,PQ,0.01,solar,11051,pv_rooftop,SEE995428443433 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_148,BranchTee_mvgd_33535_lvgd_1172410001_building_444793,PQ,0.06228,solar,11051,pv_rooftop,SEE905108469332 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_161,BranchTee_mvgd_33535_lvgd_1172410001_building_444795,PQ,0.03,solar,11051,pv_rooftop,SEE952906273272 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_193,BranchTee_mvgd_33535_lvgd_1172410001_building_444692,PQ,0.009800000000000001,solar,11051,pv_rooftop,SEE915380700061 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_21,BranchTee_mvgd_33535_lvgd_1172410001_building_444677,PQ,0.025,solar,11051,pv_rooftop,SEE916380540985 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_248,BranchTee_mvgd_33535_lvgd_1172410001_building_444832,PQ,0.015,solar,11051,pv_rooftop,SEE927036319183 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_273,BranchTee_mvgd_33535_lvgd_1172410001_building_444695,PQ,0.02,solar,11051,pv_rooftop,SEE933421814638 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_274,BranchTee_mvgd_33535_lvgd_1172410001_building_444698,PQ,0.01,solar,11051,pv_rooftop,SEE950623754470 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_278,BranchTee_mvgd_33535_lvgd_1172410001_building_444824,PQ,0.0099,solar,11051,pv_rooftop,SEE970574799436 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_294,BranchTee_mvgd_33535_lvgd_1172410001_building_444829,PQ,0.015179999999999999,solar,11051,pv_rooftop,SEE973161677056 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_354,BranchTee_mvgd_33535_lvgd_1172410001_building_431667,PQ,0.0252,solar,11051,pv_rooftop,SEE956141004684 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_357,BranchTee_mvgd_33535_lvgd_1172410001_building_444688,PQ,0.004,solar,11051,pv_rooftop,SEE980236331430 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_369,BranchTee_mvgd_33535_lvgd_1172410001_building_431668,PQ,0.0062699999999999995,solar,11051,pv_rooftop,SEE926739840802 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_42,BranchTee_mvgd_33535_lvgd_1172410001_building_444720,PQ,0.008199999999999999,solar,11051,pv_rooftop,SEE998332849407 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_54,BranchTee_mvgd_33535_lvgd_1172410001_building_444696,PQ,0.0292,solar,11051,pv_rooftop,SEE957864689271 +Generator_mvgd_33535_lvgd_1172410001_pv_rooftop_65,BranchTee_mvgd_33535_lvgd_1172410001_building_444700,PQ,0.015725,solar,11051,pv_rooftop,SEE998178771047 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_114,BranchTee_mvgd_33535_lvgd_1172410002_building_444731,PQ,0.029,solar,11051,pv_rooftop,SEE950863916560 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_160,BranchTee_mvgd_33535_lvgd_1172410002_building_444842,PQ,0.0158,solar,11051,pv_rooftop,SEE989471438430 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_181,BranchTee_mvgd_33535_lvgd_1172410002_building_444663,PQ,0.008,solar,11051,pv_rooftop,SEE949306797958 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_188,BranchTee_mvgd_33535_lvgd_1172410002_building_444657,PQ,0.0176,solar,11051,pv_rooftop,SEE934305185110 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_203,BranchTee_mvgd_33535_lvgd_1172410002_building_444685,PQ,0.0085,solar,11051,pv_rooftop,SEE900500679181 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_252,BranchTee_mvgd_33535_lvgd_1172410002_building_444641,PQ,0.020239999999999998,solar,11051,pv_rooftop,SEE920468356573 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_262,BranchTee_mvgd_33535_lvgd_1172410002_building_444718,PQ,0.030600000000000002,solar,11051,pv_rooftop,SEE935145922965 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_305,BranchTee_mvgd_33535_lvgd_1172410002_building_444664,PQ,0.0032400000000000003,solar,11051,pv_rooftop,SEE956202285755 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_318,BranchTee_mvgd_33535_lvgd_1172410002_building_444767,PQ,0.01,solar,11051,pv_rooftop,SEE974141829229 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_75,BranchTee_mvgd_33535_lvgd_1172410002_building_444684,PQ,0.004,solar,11051,pv_rooftop,SEE931364477224 +Generator_mvgd_33535_lvgd_1172410002_pv_rooftop_82,BranchTee_mvgd_33535_lvgd_1172410002_building_444669,PQ,0.008400000000000001,solar,11051,pv_rooftop,SEE923653442440 +Generator_mvgd_33535_lvgd_1172430000_pv_rooftop_315,BranchTee_mvgd_33535_lvgd_1172430000_building_444600,PQ,0.01,solar,11051,pv_rooftop,SEE953895061154 +Generator_mvgd_33535_lvgd_1172440000_pv_rooftop_34,BranchTee_mvgd_33535_lvgd_1172440000_building_444615,PQ,0.01458,solar,11051,pv_rooftop,SEE973870520209 +Generator_mvgd_33535_lvgd_1172710000_pv_rooftop_182,BranchTee_mvgd_33535_lvgd_1172710000_building_444985,PQ,0.004200000000000001,solar,11051,pv_rooftop,SEE902754766563 +Generator_mvgd_33535_lvgd_1172800000_pv_rooftop_126,BranchTee_mvgd_33535_lvgd_1172800000_building_444525,PQ,0.0085,solar,11051,pv_rooftop,SEE922498470434 +Generator_mvgd_33535_lvgd_1176060000_pv_rooftop_172,BranchTee_mvgd_33535_lvgd_1176060000_building_445950,PQ,0.01932,solar,11051,pv_rooftop,SEE939280705995 +Generator_mvgd_33535_lvgd_1176560000_pv_rooftop_174,BranchTee_mvgd_33535_lvgd_1176560000_building_445017,PQ,0.011,solar,11051,pv_rooftop,SEE918920691461 +Generator_mvgd_33535_lvgd_1184650000_pv_rooftop_264,BranchTee_mvgd_33535_lvgd_1184650000_building_445056,PQ,0.008,solar,11051,pv_rooftop,SEE971520621269 +Generator_mvgd_33535_lvgd_1186110000_water_394,BranchTee_mvgd_33535_lvgd_1186110000_building_422700,PQ,0.036,water,,unknown,SEE973333417510 +Generator_mvgd_33535_lvgd_1186120000_pv_rooftop_321,BranchTee_mvgd_33535_lvgd_1186120000_building_444360,PQ,0.01134,solar,11051,pv_rooftop,SEE956165032618 +Generator_mvgd_33535_lvgd_1186620000_pv_rooftop_28,BranchTee_mvgd_33535_lvgd_1186620000_building_446611,PQ,0.006,solar,11051,pv_rooftop,SEE906602731468 +Generator_mvgd_33535_lvgd_1195620000_water_390,BranchTee_mvgd_33535_lvgd_1195620000_building_444408,PQ,0.032,water,,unknown,SEE983324879968 +Generator_mvgd_33535_lvgd_1196330000_pv_rooftop_187,BranchTee_mvgd_33535_lvgd_1196330000_building_445130,PQ,0.00932,solar,11051,pv_rooftop,SEE979549362644 +Generator_mvgd_33535_lvgd_1197640000_pv_rooftop_128,BranchTee_mvgd_33535_lvgd_1197640000_building_445140,PQ,0.013134999999999999,solar,11051,pv_rooftop,SEE920984153052 +Generator_mvgd_33535_lvgd_1197640000_pv_rooftop_179,BranchTee_mvgd_33535_lvgd_1197640000_building_445143,PQ,0.0085,solar,11051,pv_rooftop,SEE979079583441 +Generator_mvgd_33535_lvgd_1197640000_pv_rooftop_195,BranchTee_mvgd_33535_lvgd_1197640000_building_445124,PQ,0.015,solar,11051,pv_rooftop,SEE913384630476 +Generator_mvgd_33535_lvgd_1199190000_pv_rooftop_45,BranchTee_mvgd_33535_lvgd_1199190000_building_448121,PQ,0.029679999999999998,solar,11051,pv_rooftop,SEE940890390730 +Generator_mvgd_33535_lvgd_1200820000_water_389,BranchTee_mvgd_33535_lvgd_1200820000_building_422888,PQ,0.009,water,,unknown,SEE965678658499 +Generator_mvgd_33535_lvgd_1201610000_pv_rooftop_122,BranchTee_mvgd_33535_lvgd_1201610000_building_448146,PQ,0.0038,solar,11051,pv_rooftop,SEE947684006440 +Generator_mvgd_33535_lvgd_1204030000_pv_rooftop_337,BranchTee_mvgd_33535_lvgd_1204030000_building_34328648,PQ,0.00441,solar,11052,pv_rooftop,SEE907452314184 diff --git a/tests/data/ding0_test_network_3/lines.csv b/tests/data/ding0_test_network_3/lines.csv index 0cc16fdd1..a3fe5458b 100644 --- a/tests/data/ding0_test_network_3/lines.csv +++ b/tests/data/ding0_test_network_3/lines.csv @@ -1,4297 +1,4309 @@ name,bus0,bus1,length,r,x,s_nom,num_parallel,kind,type_info,geometry -Branch_Generator_mvgd_33532_biomass_392_Load_mvgd_33532_1,Bus_mvgd_33532_mvload_1,Bus_mvgd_33532_gen_392,0.032670445335596085,0.012088064774170551,0.012111193264586238,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.030784999999998 47.548558996200754, 10.031116705906797 47.54853468799076)" -Branch_Generator_mvgd_33532_pv_rooftop_160_MVCableDist_mvgd_33532_54,Bus_mvgd_33532_gen_160,BranchTee_mvgd_33532_54,0.10708164139551304,0.03962020731633983,0.03969601395721269,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.020087376466256 47.55435508665868, 10.020615832570677 47.555004153344306)" -Branch_Generator_mvgd_33532_water_393_Generator_mvgd_33532_water_394,Bus_mvgd_33532_gen_393,Bus_mvgd_33532_gen_394,0.001,0.000206,0.00012600928133548662,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.968600000000004 47.52846999619443, 9.968600000000004 47.52846999619443)" -Branch_Generator_mvgd_33532_water_393_MVCableDist_mvgd_33532_55,Bus_mvgd_33532_gen_393,BranchTee_mvgd_33532_55,0.03580077456320471,0.00737495956002017,0.0045112298739631955,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.968600000000004 47.52846999619443, 9.968957591647868 47.52852116688911)" -Branch_Generator_mvgd_33532_water_395_Generator_mvgd_33532_water_396,Bus_mvgd_33532_gen_395,Bus_mvgd_33532_gen_396,0.001,0.000206,0.00012600928133548662,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974219999999999 47.530562996195115, 9.974219999999999 47.530562996195115)" -Branch_Generator_mvgd_33532_water_395_Generator_mvgd_33532_water_397,Bus_mvgd_33532_gen_395,Bus_mvgd_33532_gen_397,0.001,0.000206,0.00012600928133548662,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974219999999999 47.530562996195115, 9.974219999999999 47.530562996195115)" -Branch_Generator_mvgd_33532_water_395_LVStation_mvgd_33532_lvgd_1152100000,BusBar_mvgd_33532_lvgd_1152100000_MV,Bus_mvgd_33532_gen_395,0.15882147103981847,0.0327172230342026,0.020012979426372327,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974219999999999 47.530562996195115, 9.974850300000005 47.53157609624192)" -Branch_LVStation_mvgd_33532_lvgd_1140900000_MVCableDist_mvgd_33532_2,BusBar_mvgd_33532_lvgd_1140900000_MV,BranchTee_mvgd_33532_2,0.8740663248002085,0.18005766290884295,0.11014046942762429,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.040278153522014 47.497236243470454, 10.048219013447918 47.49998981068342)" -Branch_LVStation_mvgd_33532_lvgd_1150350000_MVCableDist_mvgd_33532_3,BusBar_mvgd_33532_lvgd_1150350000_MV,BranchTee_mvgd_33532_3,0.17290204412930404,0.03561782109063663,0.021787262322170195,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.971241399999998 47.521178496241035, 9.97293349523393 47.521518532583286)" -Branch_LVStation_mvgd_33532_lvgd_1150350000_MVCableDist_mvgd_33532_9,BusBar_mvgd_33532_lvgd_1150350000_MV,BranchTee_mvgd_33532_9,0.7085450117530219,0.1459602724211225,0.0892832477248422,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.971241399999998 47.521178496241035, 9.969748552299011 47.52597839431304)" -Branch_LVStation_mvgd_33532_lvgd_1150360000_LVStation_mvgd_33532_lvgd_1156160000,BusBar_mvgd_33532_lvgd_1156160000_MV,BusBar_mvgd_33532_lvgd_1150360000_MV,0.8737694315111306,0.1799965028912929,0.11010305811763425,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.981484300000004 47.51426929624038, 9.974468499999997 47.518003496240745)" -Branch_LVStation_mvgd_33532_lvgd_1150360000_MVCableDist_mvgd_33532_3,BusBar_mvgd_33532_lvgd_1150360000_MV,BranchTee_mvgd_33532_3,0.5295101826203873,0.10907909761979978,0.06672319757181727,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974468499999997 47.518003496240745, 9.97293349523393 47.521518532583286)" -Branch_LVStation_mvgd_33532_lvgd_1150770000_MVCableDist_mvgd_33532_55,BusBar_mvgd_33532_lvgd_1150770000_MV,BranchTee_mvgd_33532_55,0.5078103905645224,0.1046089404562916,0.06398882236972823,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.967887399999995 47.531961196242015, 9.968957591647868 47.52852116688911)" -Branch_LVStation_mvgd_33532_lvgd_1150770000_MVCableDist_mvgd_33532_8,BusBar_mvgd_33532_lvgd_1150770000_MV,BranchTee_mvgd_33532_8,0.4716567998189584,0.09716130076270543,0.05943313438218242,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.967887399999995 47.531961196242015, 9.971478841193234 47.53413638703258)" -Branch_LVStation_mvgd_33532_lvgd_1151720000_MVCableDist_mvgd_33532_10,BusBar_mvgd_33532_lvgd_1151720000_MV,BranchTee_mvgd_33532_10,1.0494944906080432,0.38831296152497596,0.3890559334379085,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.970474700000002 47.555076396244026, 9.97761393434411 47.549656821675576)" -Branch_LVStation_mvgd_33532_lvgd_1151730000_MVCableDist_mvgd_33532_5,BusBar_mvgd_33532_lvgd_1151730000_MV,BranchTee_mvgd_33532_5,2.6177507999258585,0.9685677959725676,0.970420988473154,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.971264899999996 47.56023109624446, 9.996294213899032 47.553857279122525)" -Branch_LVStation_mvgd_33532_lvgd_1151750000_MVCableDist_mvgd_33532_6,BusBar_mvgd_33532_lvgd_1151750000_MV,BranchTee_mvgd_33532_6,1.3818815926263308,0.5112961892717424,0.5122744690240496,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.973807199999998 47.558039296244296, 9.98741872382493 47.555508531329956)" -Branch_LVStation_mvgd_33532_lvgd_1151760000_LVStation_mvgd_33532_lvgd_1151810000,BusBar_mvgd_33532_lvgd_1151760000_MV,BusBar_mvgd_33532_lvgd_1151810000_MV,0.4816824338622657,0.17822250052903832,0.17856349947902356,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.987070699999995 47.55740889624422, 9.989380199999992 47.560353496244474)" -Branch_LVStation_mvgd_33532_lvgd_1151770000_MVCableDist_mvgd_33532_6,BusBar_mvgd_33532_lvgd_1151770000_MV,BranchTee_mvgd_33532_6,0.9784013784104849,0.3620085100118794,0.36270115275582776,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.977461599999993 47.554935496244006, 9.98741872382493 47.555508531329956)" -Branch_LVStation_mvgd_33532_lvgd_1151780000_LVStation_mvgd_33532_lvgd_1151790000,BusBar_mvgd_33532_lvgd_1151790000_MV,BusBar_mvgd_33532_lvgd_1151780000_MV,0.20784842013971322,0.0769039154516939,0.07705105823299781,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.983414348584231 47.55941549729083, 9.981826099999992 47.56037039624449)" -Branch_LVStation_mvgd_33532_lvgd_1151790000_MVCableDist_mvgd_33532_6,BusBar_mvgd_33532_lvgd_1151790000_MV,BranchTee_mvgd_33532_6,0.687141323278762,0.25424228961314194,0.25472873971648224,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.983414348584231 47.55941549729083, 9.98741872382493 47.555508531329956)" -Branch_LVStation_mvgd_33532_lvgd_1151810000_MVCableDist_mvgd_33532_6,BusBar_mvgd_33532_lvgd_1151810000_MV,BranchTee_mvgd_33532_6,0.27659519547881606,0.10234022232716194,0.10253603322786879,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.987070699999995 47.55740889624422, 9.98741872382493 47.555508531329956)" -Branch_LVStation_mvgd_33532_lvgd_1151840000_LVStation_mvgd_33532_lvgd_1151850000,BusBar_mvgd_33532_lvgd_1151850000_MV,BusBar_mvgd_33532_lvgd_1151840000_MV,0.3314080419443694,0.06827005664054009,0.04176048919421079,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.999182900000005 47.55977909624444, 9.999614600000003 47.56205479624466)" -Branch_LVStation_mvgd_33532_lvgd_1151840000_MVCableDist_mvgd_33532_7,BusBar_mvgd_33532_lvgd_1151840000_MV,BranchTee_mvgd_33532_7,0.5318995550721777,0.1095713083448686,0.06702428067731019,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.999614600000003 47.56205479624466, 10.003971291519571 47.564255255361005)" -Branch_LVStation_mvgd_33532_lvgd_1151850000_MVCableDist_mvgd_33532_5,BusBar_mvgd_33532_lvgd_1151850000_MV,BranchTee_mvgd_33532_5,0.9008903719817096,0.18558341662823216,0.11352054833547444,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.999182900000005 47.55977909624444, 9.996294213899032 47.553857279122525)" -Branch_LVStation_mvgd_33532_lvgd_1151860000_MVCableDist_mvgd_33532_7,BusBar_mvgd_33532_lvgd_1151860000_MV,BranchTee_mvgd_33532_7,0.23513727987409222,0.08700079355341413,0.08716725502242915,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.002536000000003 47.56556059624496, 10.003971291519571 47.564255255361005)" -Branch_LVStation_mvgd_33532_lvgd_1152100000_MVCableDist_mvgd_33532_8,BusBar_mvgd_33532_lvgd_1152100000_MV,BranchTee_mvgd_33532_8,0.49579787447550244,0.1021343621419535,0.062475133850319865,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974850300000005 47.53157609624192, 9.971478841193234 47.53413638703258)" -Branch_LVStation_mvgd_33532_lvgd_1152110000_LVStation_mvgd_33532_lvgd_1152120000,BusBar_mvgd_33532_lvgd_1152120000_MV,BusBar_mvgd_33532_lvgd_1152110000_MV,0.5152398030207002,0.10613939942226423,0.06492499729407611,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.979701499999996 47.52925419624172, 9.9758199 47.526846996241524)" -Branch_LVStation_mvgd_33532_lvgd_1152110000_MVCableDist_mvgd_33532_9,BusBar_mvgd_33532_lvgd_1152110000_MV,BranchTee_mvgd_33532_9,0.6078589783045436,0.12521894953073598,0.07659587300947869,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.9758199 47.526846996241524, 9.969748552299011 47.52597839431304)" -Branch_LVStation_mvgd_33532_lvgd_1152930000_MVCableDist_mvgd_33532_10,BusBar_mvgd_33532_lvgd_1152930000_MV,BranchTee_mvgd_33532_10,0.5024341898411269,0.18590065024121694,0.18625634004663238,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.973786725536701 47.547339920043285, 9.97761393434411 47.549656821675576)" -Branch_LVStation_mvgd_33532_lvgd_1154980000_LVStation_mvgd_33532_lvgd_1154990000,BusBar_mvgd_33532_lvgd_1154980000_MV,BusBar_mvgd_33532_lvgd_1154990000_MV,0.37364873581862224,0.07697163957863618,0.047083208672417685,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.981248 47.53591809624236, 9.978123299999996 47.53443409624222)" -Branch_LVStation_mvgd_33532_lvgd_1154980000_MVCableDist_mvgd_33532_11,BusBar_mvgd_33532_lvgd_1154980000_MV,BranchTee_mvgd_33532_11,0.4014154743112299,0.08269158770811336,0.05058207543490157,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.978123299999996 47.53443409624222, 9.975393653890615 47.53650708528937)" -Branch_LVStation_mvgd_33532_lvgd_1156170000_MVCableDist_mvgd_33532_12,BusBar_mvgd_33532_lvgd_1156170000_MV,BranchTee_mvgd_33532_12,1.5857598842112375,0.3266665361475149,0.1998204633801025,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.989299899999995 47.51335609624034, 9.984705724901088 47.52388337901873)" -Branch_LVStation_mvgd_33532_lvgd_1156290000_MVCableDist_mvgd_33532_13,BusBar_mvgd_33532_lvgd_1156290000_MV,BranchTee_mvgd_33532_13,0.24136776192334716,0.08930607191163845,0.08947694414527212,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.9865232 47.54548489624321, 9.988164556270467 47.54423827196185)" -Branch_LVStation_mvgd_33532_lvgd_1156980000_MVCableDist_mvgd_33532_19,BusBar_mvgd_33532_lvgd_1156980000_MV,BranchTee_mvgd_33532_19,0.6892179699431574,0.25501064887896824,0.2554985691092683,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.984748999999997 47.54320689624296, 9.98052636625868 47.54702430740754)" -Branch_LVStation_mvgd_33532_lvgd_1156980000_MVCableDist_mvgd_33532_4,BusBar_mvgd_33532_lvgd_1156980000_MV,BranchTee_mvgd_33532_4,0.14937143207201756,0.0552674298666465,0.055373174851129185,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.984748999999997 47.54320689624296, 9.98626414895975 47.54308805548839)" -Branch_LVStation_mvgd_33532_lvgd_1157450000_LVStation_mvgd_33532_lvgd_1163050000,BusBar_mvgd_33532_lvgd_1163050000_MV,BusBar_mvgd_33532_lvgd_1157450000_MV,0.947965025433675,0.35074705941045975,0.35141815525197434,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.001415599999998 47.53653109624242, 9.991805300000005 47.53730969624246)" -Branch_LVStation_mvgd_33532_lvgd_1157450000_MVCableDist_mvgd_33532_15,BusBar_mvgd_33532_lvgd_1157450000_MV,BranchTee_mvgd_33532_15,0.2445400424285477,0.09047981569856266,0.09065293369464329,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.991805300000005 47.53730969624246, 9.990142682681796 47.53857276445044)" -Branch_LVStation_mvgd_33532_lvgd_1157460000_MVCableDist_mvgd_33532_15,BusBar_mvgd_33532_lvgd_1157460000_MV,BranchTee_mvgd_33532_15,0.33280675943998,0.1231385009927926,0.12337410592155666,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.992677799999997 47.540107096242714, 9.990142682681796 47.53857276445044)" -Branch_LVStation_mvgd_33532_lvgd_1159020000_MVCableDist_mvgd_33532_21,BusBar_mvgd_33532_lvgd_1159020000_MV,BranchTee_mvgd_33532_21,1.9007119680644058,0.7032634281838301,0.7046090051444375,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.117484600000001 47.55610829624415, 10.098102429617397 47.55685579576007)" -Branch_LVStation_mvgd_33532_lvgd_1159590000_MVCableDist_mvgd_33532_16,BusBar_mvgd_33532_lvgd_1159590000_MV,BranchTee_mvgd_33532_16,1.7577713382636813,0.36210089568231835,0.221495503086723,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.097126999999995 47.45210599623459, 10.090655150847624 47.46345487403672)" -Branch_LVStation_mvgd_33532_lvgd_1159620000_MVCableDist_mvgd_33532_17,BusBar_mvgd_33532_lvgd_1159620000_MV,BranchTee_mvgd_33532_17,0.2465207406054456,0.09121267402401487,0.09138719422194277,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.993023599999997 47.552695996243806, 9.993690037971223 47.5543418623081)" -Branch_LVStation_mvgd_33532_lvgd_1160560000_MVCableDist_mvgd_33532_18,BusBar_mvgd_33532_lvgd_1160560000_MV,BranchTee_mvgd_33532_18,0.44180958334356396,0.09101277416877417,0.05567210808425327,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.000569899999999 47.52387799624125, 9.999290480345204 47.526811151049166)" -Branch_LVStation_mvgd_33532_lvgd_1161030000_MVCableDist_mvgd_33532_47,BusBar_mvgd_33532_lvgd_1161030000_MV,BranchTee_mvgd_33532_47,3.7348234318375457,0.7693736269585344,0.4706224165607849,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.993239667455976 47.49863028859219, 9.982421329246263 47.5234245980793)" -Branch_LVStation_mvgd_33532_lvgd_1161660000_MVCableDist_mvgd_33532_19,BusBar_mvgd_33532_lvgd_1161660000_MV,BranchTee_mvgd_33532_19,0.41834943285396753,0.15478929015596798,0.15508545357672274,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.983944199999996 47.54876209624351, 9.98052636625868 47.54702430740754)" -Branch_LVStation_mvgd_33532_lvgd_1161700000_MVCableDist_mvgd_33532_13,BusBar_mvgd_33532_lvgd_1161700000_MV,BranchTee_mvgd_33532_13,0.736270667927689,0.15167175759310392,0.09277693773396681,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.993773700000006 47.54763269624337, 9.988164556270467 47.54423827196185)" -Branch_LVStation_mvgd_33532_lvgd_1161700000_MVCableDist_mvgd_33532_20,BusBar_mvgd_33532_lvgd_1161700000_MV,BranchTee_mvgd_33532_20,0.06619238397757043,0.013635631099379509,0.008340854734896229,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.993773700000006 47.54763269624337, 9.993952627550263 47.54807462214073)" -Branch_LVStation_mvgd_33532_lvgd_1163060000_LVStation_mvgd_33532_lvgd_1163090000,BusBar_mvgd_33532_lvgd_1163060000_MV,BusBar_mvgd_33532_lvgd_1163090000_MV,0.4819111904735697,0.17830714047522078,0.1786483013695884,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.003636499999997 47.54303869624298, 10.003165199999996 47.54635979624327)" -Branch_LVStation_mvgd_33532_lvgd_1163060000_LVStation_mvgd_33532_lvgd_1163860000,BusBar_mvgd_33532_lvgd_1163060000_MV,BusBar_mvgd_33532_lvgd_1163860000_MV,0.5648052076722521,0.11634987278048392,0.07117069831332075,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0088695 47.54693799624336, 10.003165199999996 47.54635979624327)" -Branch_LVStation_mvgd_33532_lvgd_1163060000_LVStation_mvgd_33532_lvgd_1163880000,BusBar_mvgd_33532_lvgd_1163880000_MV,BusBar_mvgd_33532_lvgd_1163060000_MV,1.0124738716188724,0.37461533249898277,0.37533209628947684,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.009866 47.54102169624281, 10.003165199999996 47.54635979624327)" -Branch_LVStation_mvgd_33532_lvgd_1163060000_MVCableDist_mvgd_33532_20,BusBar_mvgd_33532_lvgd_1163060000_MV,BranchTee_mvgd_33532_20,0.9355205526767667,0.19271723385141393,0.11788427251737661,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.003165199999996 47.54635979624327, 9.993952627550263 47.54807462214073)" -Branch_LVStation_mvgd_33532_lvgd_1163850000_LVStation_mvgd_33532_lvgd_1163850015,BusBar_mvgd_33532_lvgd_1163850000_MV,BusBar_mvgd_33532_lvgd_1163850015_MV,0.749992192893547,0.2774971113706124,0.2780280556863998,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.016221000000002 47.56496159624492, 10.016063700000002 47.56503699624489, 10.015691300000006 47.565036996244906, 10.015071299999997 47.56499859624491, 10.014967099999996 47.56499219624491, 10.014091599999992 47.564937996244886, 10.013683099999998 47.56480289624491, 10.0132946 47.5646782962449, 10.013010301532027 47.56495679663406, 10.012726000000006 47.5652352962449, 10.0122529 47.56568619624497, 10.012033099999998 47.565900396245034, 10.0116363 47.56638549624505, 10.011489699999997 47.56641239624503, 10.0113059 47.56660629624504, 10.011097600000003 47.566834796245054, 10.010902399999999 47.567011296245106, 10.010589499999998 47.56715739624509, 10.010427599999998 47.56719749624511, 10.010218299999998 47.56718739624511, 10.0100793 47.56714909624509, 10.009740699999998 47.56705109624509, 10.009323000000007 47.566954896245086, 10.009044899999992 47.56690459624507, 10.008394199999996 47.56682179624508)" -Branch_LVStation_mvgd_33532_lvgd_1163850001_LVStation_mvgd_33532_lvgd_1163850002,BusBar_mvgd_33532_lvgd_1163850001_MV,BusBar_mvgd_33532_lvgd_1163850002_MV,0.4254869131033508,0.08765030409929025,0.053615300137807874,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021668099999998 47.54834369624342, 10.021529399999995 47.54815639624343, 10.021494799999996 47.54798539624339, 10.021567400000006 47.547765096243396, 10.021580799999997 47.547724696243385, 10.021776699999997 47.547313696243336, 10.021792399999999 47.547233696243346, 10.021805000000002 47.547103896243364, 10.0217457 47.546983096243316, 10.021584400000002 47.546878396243315, 10.020940500000002 47.546616596243275, 10.0208271 47.546572096243246, 10.020388348497121 47.54639499713259, 10.019949600000002 47.54621789624321, 10.019763000000001 47.546113796243226, 10.019657500000003 47.54602999624328, 10.019595699999998 47.54593629624324, 10.0195915 47.54588739624318, 10.019584699999994 47.54580809624323, 10.019594899999994 47.54573919624322, 10.019690600000006 47.54551339624319, 10.019702999999996 47.54542459624318, 10.019700400000003 47.545350696243155)" -Branch_LVStation_mvgd_33532_lvgd_1163850001_LVStation_mvgd_33532_lvgd_1163850008,BusBar_mvgd_33532_lvgd_1163850001_MV,BusBar_mvgd_33532_lvgd_1163850008_MV,0.5485774530849562,0.11300695533550097,0.06912585062008696,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019700400000003 47.545350696243155, 10.019644699999994 47.54516389624318, 10.019476100000004 47.54486489624315, 10.019288599999992 47.5446384962431, 10.019134900000001 47.5445194962431, 10.018959900000006 47.54440659624309, 10.0187953 47.54431179624306, 10.018713799999993 47.5442683962431, 10.018332000000001 47.54412549624307, 10.017876799999996 47.54399749624309, 10.017157700000002 47.543827196243, 10.016909800000002 47.54375609624301, 10.016738500000006 47.54369069624302, 10.0165348 47.543603696243, 10.016299300000004 47.54348599624301, 10.016063899999997 47.54334689624297, 10.015792099999997 47.54316379624297, 10.0155251 47.54293219624298, 10.015257400000003 47.54267329624295, 10.015126199999996 47.54254309624293, 10.014893299999995 47.54230579624292, 10.015023299999996 47.54216629624294, 10.015132399999995 47.54207139624289)" -Branch_LVStation_mvgd_33532_lvgd_1163850001_MVCableDist_mvgd_33532_1,BusBar_mvgd_33532_lvgd_1163850001_MV,BranchTee_mvgd_33532_1,1.5391560316965711,0.3170661425294936,0.19394794541726437,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021999200000003 47.55448659624401, 10.022001499999996 47.55425239624398, 10.022112600000002 47.55381729624391, 10.022157899999996 47.55366389624393, 10.022232 47.553459996243916, 10.022333199999997 47.55312949624386, 10.0223371 47.55311849624385, 10.0223704 47.55302559624386, 10.022423400000001 47.55291469624389, 10.0221493 47.55278879624385, 10.022002199999996 47.55272299624384, 10.022068299999997 47.5525562962438, 10.022005500000002 47.552296796243816, 10.021944299999994 47.55220079624381, 10.021796199999997 47.55210859624377, 10.021628799999995 47.55206879624378, 10.0214366 47.55206179624378, 10.021369999999994 47.55204259624378, 10.0213424 47.55198869624373, 10.0216602 47.551949596243766, 10.021799499999998 47.551925696243785, 10.021925899999994 47.551944296243775, 10.022175199999998 47.552015096243764, 10.022245099999997 47.552027896243764, 10.022298899999996 47.55202879624376, 10.022329499999996 47.5520668962438, 10.022392400000003 47.55211259624373, 10.0224603 47.552173996243766, 10.022602900000003 47.552361196243815, 10.022736000000002 47.55238739624383, 10.022854399999993 47.55238269624381, 10.022894800000001 47.552326896243834, 10.022917399999995 47.55228739624377, 10.022936600000005 47.55223549624377, 10.023054399999996 47.55222269624378, 10.023112899999992 47.55220909624381, 10.023234700000001 47.55219169624379, 10.023543000000005 47.55211499624376, 10.023688299999995 47.55208539624382, 10.0237966 47.55207629624378, 10.02388389999999 47.55204129624372, 10.023911699999998 47.55197899624378, 10.023872500000003 47.55192899624375, 10.023668300000002 47.55187559624374, 10.023443400000003 47.551852496243754, 10.023096999999998 47.55183399624375, 10.022908099999995 47.55182119624376, 10.022807899999998 47.551786496243714, 10.022778499999998 47.551732896243706, 10.022667600000005 47.551586596243716, 10.022601300000005 47.551463296243675, 10.022555700000003 47.55132589624369, 10.022595000000004 47.550775896243664, 10.022587499999997 47.550619596243656, 10.022451000000004 47.55029399624358, 10.0222167 47.55007379624358, 10.022018999999997 47.54988799624358, 10.021311299999999 47.54944629624353, 10.021036000000002 47.54929209624356, 10.021012899999999 47.54918499624348, 10.021055500000001 47.54912709624349, 10.021204100000006 47.54901449624347, 10.021361500000001 47.54890949624347, 10.021565799999996 47.54872019624347, 10.021669499999998 47.54869399624346, 10.021723299999996 47.54865979624349, 10.021775899999998 47.548599096243464, 10.021788600000008 47.54852719624345, 10.021764799999998 47.54844859624348, 10.021668099999998 47.54834369624342, 10.021529399999995 47.54815639624343, 10.021494799999996 47.54798539624339, 10.021567400000006 47.547765096243396, 10.021580799999997 47.547724696243385, 10.021776699999997 47.547313696243336, 10.021792399999999 47.547233696243346, 10.021805000000002 47.547103896243364, 10.0217457 47.546983096243316, 10.021584400000002 47.546878396243315, 10.020940500000002 47.546616596243275, 10.0208271 47.546572096243246, 10.020388348497121 47.54639499713259, 10.019949600000002 47.54621789624321, 10.019763000000001 47.546113796243226, 10.019657500000003 47.54602999624328, 10.019595699999998 47.54593629624324, 10.0195915 47.54588739624318, 10.019584699999994 47.54580809624323, 10.019594899999994 47.54573919624322, 10.019690600000006 47.54551339624319, 10.019702999999996 47.54542459624318, 10.019700400000003 47.545350696243155)" -Branch_LVStation_mvgd_33532_lvgd_1163850003_LVStation_mvgd_33532_lvgd_1163850007,BusBar_mvgd_33532_lvgd_1163850003_MV,BusBar_mvgd_33532_lvgd_1163850007_MV,0.47988109814737423,0.09885550621835909,0.060469472304034745,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.025241599999998 47.55475769624405, 10.025567199999998 47.55510809624401, 10.025817299999996 47.555344696244035, 10.025914099999996 47.55543049624405, 10.026161199999997 47.55558529624407, 10.026653800000004 47.55588899624411, 10.026850200000005 47.556008296244116, 10.026706900000004 47.55611589624413, 10.026440099999993 47.55630309624413, 10.026565799999995 47.556399996244146, 10.026737499999998 47.55652169624419, 10.027183799999992 47.556840196244195, 10.0275955 47.557117396244216, 10.027420699999997 47.557264596244245, 10.027109999999997 47.55758989624428, 10.0269114 47.5578079962443, 10.0267444 47.55798979624431, 10.026685600000002 47.558041696244295)" -Branch_LVStation_mvgd_33532_lvgd_1163850004_LVStation_mvgd_33532_lvgd_1163850009,BusBar_mvgd_33532_lvgd_1163850004_MV,BusBar_mvgd_33532_lvgd_1163850009_MV,0.7755083178707942,0.28693807761219386,0.2874870856380385,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.019570500000002 47.562715596244686, 10.019616499999998 47.56268579624467, 10.019830699999996 47.562546996244684, 10.019946700000007 47.56246689624473, 10.020018299999995 47.5624559962447, 10.020223500000004 47.56246089624471, 10.020455700000003 47.56250359624466, 10.020404899999994 47.562929296244725, 10.020444300000005 47.56324049624475, 10.020543899999996 47.56385759624484, 10.020684900000003 47.56430499624486, 10.020833899999998 47.56466029624489, 10.020949000000003 47.56495809624495, 10.021080099999997 47.565354596244916, 10.021084400000005 47.565377596244936, 10.021131900000006 47.56574519624501, 10.021126599999997 47.566053596245006, 10.021077399999992 47.56631409624502, 10.021048400000003 47.56642249624503, 10.021023600000003 47.56649499624504, 10.020946099999998 47.56675289624504, 10.020930699999996 47.56703339624508, 10.020990699999997 47.56720129624508, 10.021161300000003 47.5675205962451, 10.0212091 47.56760809624511, 10.021298199999997 47.56782749624517, 10.021365099999999 47.56806949624518, 10.021420699999995 47.568354696245194, 10.021444200000003 47.56840579624522, 10.021505700000006 47.56844199624519, 10.021708699999998 47.5685909962452)" -Branch_LVStation_mvgd_33532_lvgd_1163850004_LVStation_mvgd_33532_lvgd_1163850012,BusBar_mvgd_33532_lvgd_1163850004_MV,BusBar_mvgd_33532_lvgd_1163850012_MV,0.5361525148516648,0.11044741805944294,0.0675601930826721,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019570500000002 47.562715596244686, 10.019616499999998 47.56268579624467, 10.019830699999996 47.562546996244684, 10.019946700000007 47.56246689624473, 10.020018299999995 47.5624559962447, 10.020223500000004 47.56246089624471, 10.020455700000003 47.56250359624466, 10.020541599999998 47.562063496244626, 10.0205587 47.56183759624462, 10.020486 47.561602396244616, 10.020395900000004 47.56143569624454, 10.020302300000006 47.561308296244604, 10.0202025 47.56118499624459, 10.019988500000002 47.56093419624458, 10.019804300000004 47.56073399624456, 10.019725299999994 47.560569996244496, 10.019648899999996 47.56030849624448, 10.0195974 47.55999569624451, 10.019539000000005 47.55966559624444, 10.019531 47.55962729624444, 10.0195202 47.55956709624446, 10.0200619 47.55949319624441, 10.020157699999997 47.55948139624441, 10.021014800000001 47.55935469624443)" -Branch_LVStation_mvgd_33532_lvgd_1163850005_LVStation_mvgd_33532_lvgd_1163850015,BusBar_mvgd_33532_lvgd_1163850005_MV,BusBar_mvgd_33532_lvgd_1163850015_MV,0.6186874345110195,0.12744961150927,0.0779603589940295,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.016442899999998 47.560134796244476, 10.016148201872008 47.560463146668724, 10.015853499999999 47.56079149624454, 10.0160585 47.560817596244554, 10.016251899999999 47.56084869624452, 10.016549399999993 47.56092369624456, 10.016851300000003 47.560971296244574, 10.016720399999999 47.56107179624455, 10.016417199999994 47.56152159624456, 10.016318099999996 47.56167479624465, 10.016267800447 47.56213444630848, 10.016217500000005 47.5625940962447, 10.01615895057311 47.56310034632374, 10.016100399999997 47.56360659624478, 10.016063700000002 47.5641248962448, 10.016124899999994 47.56442089624489, 10.016191199999993 47.56466869624487, 10.016231999999995 47.564830496244916, 10.016221000000002 47.56496159624492)" -Branch_LVStation_mvgd_33532_lvgd_1163850005_MVCableDist_mvgd_33532_51,BusBar_mvgd_33532_lvgd_1163850005_MV,BranchTee_mvgd_33532_51,0.49604057629787096,0.10218435871736141,0.06250571653253534,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.016442899999998 47.560134796244476, 10.016148201872008 47.560463146668724, 10.015853499999999 47.56079149624454, 10.0160585 47.560817596244554, 10.016251899999999 47.56084869624452, 10.016549399999993 47.56092369624456, 10.016851300000003 47.560971296244574, 10.017141900000002 47.56097509624456, 10.017463700000006 47.56095819624459, 10.018002899999995 47.560929796244544, 10.018452599999996 47.560888096244554, 10.018812999999994 47.56087519624456, 10.018931900000004 47.560790596244516, 10.018963999999997 47.56071229624459, 10.018954299999992 47.56060039624449, 10.018946999999999 47.56038539624447, 10.018952400000002 47.56018829624447, 10.018939299999996 47.560034096244465, 10.018930900000004 47.5598963962445, 10.018897699999993 47.55968689624447, 10.019056799999994 47.55966339624444, 10.019304000000005 47.559655896244465, 10.019531 47.55962729624444)" -Branch_LVStation_mvgd_33532_lvgd_1163850006_MVCableDist_mvgd_33532_51,BusBar_mvgd_33532_lvgd_1163850006_MV,BranchTee_mvgd_33532_51,0.2913033795060979,0.06000849617825617,0.036706929502161915,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019531 47.55962729624444, 10.0195202 47.55956709624446, 10.019411899999993 47.55932749624441, 10.019228400000001 47.55901109624439, 10.019080399999993 47.558852596244364, 10.018967300000002 47.55873469624436, 10.018841099999998 47.55861969624434, 10.018700799999998 47.55846659624434, 10.018534500000001 47.55822409624431, 10.018480200000004 47.55809699624432, 10.018462999999995 47.558006696244306, 10.018443100000002 47.55788249624428, 10.018439799999998 47.55776059624424, 10.018455899999998 47.55760939624427, 10.018490800000006 47.557465196244245, 10.018605699999998 47.55718989624418)" -Branch_LVStation_mvgd_33532_lvgd_1163850007_LVStation_mvgd_33532_lvgd_1163850014,BusBar_mvgd_33532_lvgd_1163850007_MV,BusBar_mvgd_33532_lvgd_1163850014_MV,0.2892467929148012,0.059584839340449045,0.03644778050378842,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.025241599999998 47.55475769624405, 10.025067200000006 47.55462189624401, 10.024977199999999 47.554564996243975, 10.024920400000001 47.554541596243986, 10.0248677 47.55451999624394, 10.0248164 47.55449799624404, 10.024783199999996 47.55448189624398, 10.024768499999995 47.554471596243935, 10.024753600000006 47.55445769624396, 10.024706699999996 47.554464896243964, 10.024648400000006 47.554461996244, 10.024384500000002 47.55445179624401, 10.023905899999995 47.55441959624394, 10.023634200000004 47.554367596244006, 10.023369299999995 47.55430489624399, 10.023317800000003 47.55428329624398, 10.023045000000003 47.55412719624392, 10.022803000000005 47.55421149624401, 10.02257179999999 47.55423579624397, 10.022500399999997 47.554494596243956, 10.022202899999995 47.55450199624395, 10.0220596 47.554534796243956)" -Branch_LVStation_mvgd_33532_lvgd_1163850009_MVStation_mvgd_33532,Busbar_mvgd_33532_MV,BusBar_mvgd_33532_lvgd_1163850009_MV,0.6131085627734325,0.22685016822617002,0.2272842080861174,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.021708699999998 47.5685909962452, 10.021615600000006 47.568694996245235, 10.021555500000002 47.56885489624524, 10.021477599999997 47.56903029624529, 10.021403600000005 47.569266296245324, 10.021291900000005 47.56947489624533, 10.0214327 47.56956869624533, 10.021444999999995 47.569708696245335, 10.021478699999992 47.56990839624535, 10.021530499999997 47.570067996245356, 10.021606200000008 47.5704576962454, 10.021641999999996 47.57061269624539, 10.021991200000004 47.57059749624538, 10.022294999999996 47.570683496245394, 10.024504210738641 47.57320970148501)" -Branch_LVStation_mvgd_33532_lvgd_1163850010_LVStation_mvgd_33532_lvgd_1163850013,BusBar_mvgd_33532_lvgd_1163850010_MV,BusBar_mvgd_33532_lvgd_1163850013_MV,0.9104324667430704,0.33686001269493604,0.3375045379949403,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.011309700000002 47.550727096243655, 10.0113647 47.550618496243615, 10.011421099999998 47.55049689624366, 10.011433699999996 47.55043539624362, 10.0114224 47.55038699624365, 10.011349199999993 47.55028779624364, 10.0112888 47.55023349624361, 10.011187100000004 47.5501861962436, 10.011038599999996 47.55013499624356, 10.010967000000004 47.550084196243624, 10.0109391 47.550002696243595, 10.010938399999999 47.54987689624357, 10.010941099999998 47.54974169624357, 10.010915400000002 47.54958829624355, 10.0108818 47.54948389624357, 10.010853500000003 47.54939529624354, 10.0109938 47.54948729624356, 10.0111763 47.54972289624361, 10.011336499999995 47.54985419624361, 10.011585599999998 47.55000319624362, 10.011965100000005 47.550147096243585, 10.012353699999997 47.550285096243634, 10.012980899999995 47.550509796243595, 10.013587699999995 47.55060749624366, 10.013920100000002 47.55065559624361, 10.014887899999994 47.5507848962437, 10.015207100000005 47.550831196243635, 10.015497799999993 47.550814196243664, 10.015863799999996 47.55081729624368, 10.016229799999998 47.55086039624364, 10.016565099999998 47.550928896243676, 10.016824000000002 47.55101599624367, 10.016964700000006 47.55112579624368, 10.016975900000004 47.55120629624373, 10.016972300000006 47.5512229962437, 10.016905800000004 47.55130569624374, 10.016747500000001 47.5514103962437, 10.016543599999999 47.55155789624372, 10.016460399999994 47.55169669624373, 10.016479099999996 47.551854496243756, 10.016573 47.551963996243735, 10.016842800000004 47.55219559624381, 10.016969000000005 47.552275996243814, 10.017188199999998 47.55238939624382, 10.017327899999994 47.552455996243815, 10.017540100000002 47.5525549962438, 10.0175151 47.55262059624383, 10.017486399999996 47.55270169624386)" -Branch_LVStation_mvgd_33532_lvgd_1163850010_MVCableDist_mvgd_33532_52,BusBar_mvgd_33532_lvgd_1163850010_MV,BranchTee_mvgd_33532_52,0.4388057705436794,0.09039398873199796,0.05529359979207348,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019428900000005 47.55544819624408, 10.019470600000004 47.555369796244065, 10.019482899999995 47.55530349624406, 10.019471600000001 47.55522439624408, 10.019218500000003 47.554720396244036, 10.019205000000003 47.554580896244005, 10.019194200000003 47.55442859624399, 10.019223799999997 47.55412769624398, 10.018912800000004 47.55411979624392, 10.018703499999997 47.55410759624395, 10.018303200000005 47.55408029624393, 10.018227300000001 47.554053396243965, 10.018220500000002 47.554000996243936, 10.018368799999994 47.55378859624388, 10.017815099999998 47.55365039624394, 10.017860800000003 47.553597196243935, 10.017878399999995 47.553541596243896, 10.017860799999994 47.553482196243905, 10.017896499999997 47.5533760962439, 10.017542900000008 47.55328949624384, 10.017462000000002 47.55327309624392, 10.0173399 47.55315219624385, 10.017303200000004 47.55309179624385, 10.017335799999996 47.552990096243825, 10.017381599999995 47.552902496243846, 10.017486399999996 47.55270169624386)" -Branch_LVStation_mvgd_33532_lvgd_1163850011_MVCableDist_mvgd_33532_1,BusBar_mvgd_33532_lvgd_1163850011_MV,BranchTee_mvgd_33532_1,0.07500841333888231,0.015451733147809755,0.009451756258947687,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021999200000003 47.55448659624401, 10.022001499999996 47.55425239624398, 10.022112600000002 47.55381729624391)" -Branch_LVStation_mvgd_33532_lvgd_1163850012_MVCableDist_mvgd_33532_52,BusBar_mvgd_33532_lvgd_1163850012_MV,BranchTee_mvgd_33532_52,0.6098478602525412,0.12562865921202349,0.07684649059440699,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021014800000001 47.55935469624443, 10.020157699999997 47.55948139624441, 10.0200619 47.55949319624441, 10.0195202 47.55956709624446, 10.019411899999993 47.55932749624441, 10.019228400000001 47.55901109624439, 10.019080399999993 47.558852596244364, 10.018967300000002 47.55873469624436, 10.018841099999998 47.55861969624434, 10.018700799999998 47.55846659624434, 10.018534500000001 47.55822409624431, 10.018480200000004 47.55809699624432, 10.018462999999995 47.558006696244306, 10.018443100000002 47.55788249624428, 10.018439799999998 47.55776059624424, 10.018455899999998 47.55760939624427, 10.018490800000006 47.557465196244245, 10.018605699999998 47.55718989624418, 10.0186511 47.557056596244244, 10.018695299999996 47.55693689624422, 10.018757799999998 47.5567601962442, 10.018809999999998 47.5565221962442, 10.0188285 47.556251096244154, 10.0188362 47.5561264962441, 10.018853399999992 47.556007296244125, 10.018916399999998 47.55587609624412, 10.019015699999997 47.555763196244065, 10.019127099999995 47.555666296244084, 10.019290800000002 47.55555619624409, 10.019428900000005 47.55544819624408)" -Branch_LVStation_mvgd_33532_lvgd_1163850014_MVCableDist_mvgd_33532_1,virtual_BusBar_mvgd_33532_lvgd_1163850014_MV,BranchTee_mvgd_33532_1,0.001,0.000206,0.00012600928133548662,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0220596 47.554534796243956, 10.021999200000003 47.55448659624401)" -Branch_LVStation_mvgd_33532_lvgd_1163850014_MVCableDist_mvgd_33532_51,BusBar_mvgd_33532_lvgd_1163850014_MV,BranchTee_mvgd_33532_51,0.7344448796241773,0.15129564520258051,0.09254687146197055,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019531 47.55962729624444, 10.0195202 47.55956709624446, 10.019411899999993 47.55932749624441, 10.019228400000001 47.55901109624439, 10.019080399999993 47.558852596244364, 10.018967300000002 47.55873469624436, 10.018841099999998 47.55861969624434, 10.018700799999998 47.55846659624434, 10.018534500000001 47.55822409624431, 10.018480200000004 47.55809699624432, 10.018462999999995 47.558006696244306, 10.018443100000002 47.55788249624428, 10.018439799999998 47.55776059624424, 10.018455899999998 47.55760939624427, 10.018490800000006 47.557465196244245, 10.018605699999998 47.55718989624418, 10.0186511 47.557056596244244, 10.018695299999996 47.55693689624422, 10.018757799999998 47.5567601962442, 10.018809999999998 47.5565221962442, 10.0188285 47.556251096244154, 10.0188362 47.5561264962441, 10.018853399999992 47.556007296244125, 10.018916399999998 47.55587609624412, 10.019015699999997 47.555763196244065, 10.019127099999995 47.555666296244084, 10.019290800000002 47.55555619624409, 10.019428900000005 47.55544819624408, 10.0200747 47.55530139624409, 10.020339300000007 47.55524479624403, 10.020420000000001 47.555256696244044, 10.0205356 47.55512049624409, 10.020622100000002 47.555060296244065, 10.020662900000003 47.55502439624404, 10.020678299999997 47.55498489624404, 10.020692699999994 47.554944096244, 10.020752200000004 47.554933796244015, 10.020883600000001 47.554912196244075, 10.021178200000003 47.554805496244015, 10.021405400000008 47.55471139624406, 10.021613099999998 47.554636996243985, 10.021846500000006 47.554564996243975, 10.0220596 47.554534796243956)" -Branch_LVStation_mvgd_33532_lvgd_1163890000_MVCableDist_mvgd_33532_21,BusBar_mvgd_33532_lvgd_1163890000_MV,BranchTee_mvgd_33532_21,0.6741430552815352,0.249432930454168,0.24991017865304374,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0977125 47.55219599624379, 10.098102429617397 47.55685579576007)" -Branch_LVStation_mvgd_33532_lvgd_1163900000_MVCableDist_mvgd_33532_22,BusBar_mvgd_33532_lvgd_1163900000_MV,BranchTee_mvgd_33532_22,1.017156851181925,0.3763480349373122,0.37706811396415607,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.013885199999995 47.53775869624249, 10.024270358284765 47.537727672646795)" -Branch_LVStation_mvgd_33532_lvgd_1163910000_MVCableDist_mvgd_33532_23,BusBar_mvgd_33532_lvgd_1163910000_MV,BranchTee_mvgd_33532_23,0.17195447322432514,0.0636231550930003,0.06374488736034623,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.017450000000006 47.57254519624557, 10.018499493467326 47.57159047025898)" -Branch_LVStation_mvgd_33532_lvgd_1163930000_MVCableDist_mvgd_33532_24,BusBar_mvgd_33532_lvgd_1163930000_MV,BranchTee_mvgd_33532_24,0.8453011988044262,0.1741320469537118,0.10651579657337104,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0346109 47.54144229624284, 10.037517756901362 47.53593186012843)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_LVStation_mvgd_33532_lvgd_1163940003,BusBar_mvgd_33532_lvgd_1163940000_MV,BusBar_mvgd_33532_lvgd_1163940003_MV,1.8741387465709407,0.6934313362312481,0.6947581011281595,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.088636700000006 47.55721959624428, 10.088786199999996 47.557237896244224, 10.089367200000005 47.557309496244265, 10.089952999320053 47.55736944781641, 10.090538800000001 47.557429396244274, 10.091151 47.55748379624426, 10.091636400000004 47.55756349624425, 10.092099100000002 47.55769029624424, 10.092488900000005 47.55776789624427, 10.092942500000001 47.55781229624422, 10.093422599999997 47.557816396244306, 10.094373599999999 47.55787079624427, 10.094694800000001 47.55789699624432, 10.094851499999995 47.55791919624427, 10.094925400000003 47.55793209624427, 10.095077500000007 47.557958596244326, 10.0955113 47.558054396244295, 10.096015500000002 47.5581872962443, 10.096249499999997 47.558225496244305, 10.0965016 47.558227696244344, 10.096608500000006 47.5582210962443, 10.096783199999999 47.55819249624427, 10.096936199999993 47.558193596244294, 10.097160099999996 47.55825319624433, 10.097323999999999 47.55830729624427, 10.097474900000002 47.55839099624433, 10.097865900000002 47.5585976962444, 10.0981164 47.55868759624434, 10.098320899999994 47.55873609624435, 10.098521399999996 47.5587691962444, 10.0987411 47.55877459624438, 10.099646299999996 47.55874359624436, 10.099936299999996 47.55872539624437, 10.100137199999995 47.558694696244345, 10.100366999999997 47.558633196244365, 10.100968199999995 47.55854479624434, 10.101248999999996 47.558506496244355, 10.101501499999998 47.55850629624433, 10.1017099 47.558522996244356, 10.101940499999994 47.558562996244355, 10.102131600000005 47.55860099624434, 10.102580899999992 47.55869239624437, 10.103123900000002 47.558796396244354, 10.103587499999998 47.558913496244365, 10.104286499999997 47.55908759624438, 10.104502199999997 47.55910909624438, 10.104670699999996 47.559115596244396, 10.104873600000003 47.55911799624436, 10.104969199999994 47.55909959624436, 10.105046100000004 47.55908609624441, 10.1051716 47.5590551962444, 10.105505599999994 47.55897419624437, 10.1059175 47.55883549624442, 10.1061677 47.55868779624436, 10.106358000000002 47.558559396244355, 10.1064338 47.55850219624434, 10.106480599999996 47.55845509624435, 10.106505899999998 47.55841749624429, 10.106552799999998 47.55832029624434, 10.106573999999995 47.55822779624437, 10.106567999999998 47.558149896244295, 10.106833300000002 47.558131696244324, 10.1071675 47.55809059624432, 10.107599400000005 47.55803099624431, 10.1078578 47.55799299624433, 10.108283900000004 47.55792679624434, 10.109929700000002 47.5576737962443, 10.109882199999994 47.55758209624427, 10.109718499999994 47.55727729624424, 10.109281 47.55713849624423, 10.109052899999996 47.55704109624421, 10.10887589999999 47.55696559624419, 10.108659899999996 47.55687349624423, 10.108502700000003 47.5568001962442, 10.108337700000003 47.55674169624417)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_LVStation_mvgd_33532_lvgd_1197240000,BusBar_mvgd_33532_lvgd_1197240000_MV,BusBar_mvgd_33532_lvgd_1163940000_MV,2.536865873981094,0.9386403733730048,0.9404363047553151,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.111815571053565 47.56507186743076, 10.088636700000006 47.55721959624428)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_LVStation_mvgd_33532_lvgd_1198880000,BusBar_mvgd_33532_lvgd_1198880000_MV,BusBar_mvgd_33532_lvgd_1163940000_MV,2.6108551162893714,0.9660163930270674,0.9678647038447976,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.114194200000002 47.56238169624468, 10.088636700000006 47.55721959624428)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_LVStation_mvgd_33532_lvgd_1199280000,BusBar_mvgd_33532_lvgd_1199280000_MV,BusBar_mvgd_33532_lvgd_1163940000_MV,3.1493248345886924,1.1652501887978162,1.1674797001651835,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.115115900000001 47.54484219624309, 10.088636700000006 47.55721959624428)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_LVStation_mvgd_33532_lvgd_1201300000,BusBar_mvgd_33532_lvgd_1201300000_MV,BusBar_mvgd_33532_lvgd_1163940000_MV,3.586636206252826,1.3270553963135456,1.329594494886239,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.123861900000003 47.56404329624482, 10.088636700000006 47.55721959624428)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_LVStation_mvgd_33532_lvgd_1203710000,BusBar_mvgd_33532_lvgd_1203710000_MV,BusBar_mvgd_33532_lvgd_1163940000_MV,5.604901683785936,2.073813623000796,2.077781518557245,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.130638155610297 47.53085837400748, 10.088636700000006 47.55721959624428)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_MVCableDist_mvgd_33532_21,BusBar_mvgd_33532_lvgd_1163940000_MV,BranchTee_mvgd_33532_21,0.7348335545371742,0.27188841517875445,0.2724086281923408,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.088636700000006 47.55721959624428, 10.088786199999996 47.557237896244224, 10.089367200000005 47.557309496244265, 10.089952999320053 47.55736944781641, 10.090538800000001 47.557429396244274, 10.091151 47.55748379624426, 10.091636400000004 47.55756349624425, 10.092099100000002 47.55769029624424, 10.092488900000005 47.55776789624427, 10.092942500000001 47.55781229624422, 10.098102429617397 47.55685579576007)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_MVCableDist_mvgd_33532_26,BusBar_mvgd_33532_lvgd_1163940000_MV,BranchTee_mvgd_33532_26,3.2356818074031324,0.6665504523250453,0.4077259391811771,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.05824489409215 47.564803105280845, 10.074846500000003 47.558294896244306, 10.074792999999998 47.558270896244345, 10.074123099999994 47.55804989624432, 10.074047799999999 47.55799529624429, 10.074001499999996 47.55793569624428, 10.074008800000005 47.55787889624432, 10.074039599999997 47.55782319624425, 10.074124800000002 47.55778829624429, 10.074731002194142 47.557601147935145, 10.075337199999998 47.55741399624423, 10.075846600000002 47.5573170962442, 10.076147699999995 47.55729619624422, 10.076227099999999 47.557284296244205, 10.076267699999997 47.55725719624426, 10.076270100000004 47.557215096244214, 10.076253699999999 47.557170796244236, 10.076209100000003 47.557134196244206, 10.076103000000002 47.557082096244166, 10.075630998414749 47.55690854727184, 10.075159000000003 47.55673499624415, 10.074451000000002 47.55640899624418, 10.073904199999996 47.556216096244135, 10.073662499999994 47.55608929624413, 10.0734911 47.55595029624413, 10.073434300000004 47.55583389624414, 10.073435300000002 47.55572139624412, 10.073437700000001 47.555693096244084, 10.073476599999994 47.55544009624411, 10.073534000000004 47.55529579624407, 10.073738500000001 47.55512509624403, 10.073823700000004 47.55514659624404, 10.074133999999999 47.55523779624404, 10.0746965637773 47.55537049915125, 10.07525913044398 47.555503199151275, 10.075821700000006 47.555635896244105, 10.07644810000001 47.555769696244106, 10.076952198340157 47.55593984741499, 10.077456299999998 47.556109996244125, 10.077910900000001 47.55624539624413, 10.078760599999995 47.55636989624412, 10.079576100000004 47.55647669624417, 10.0800472 47.556578396244205, 10.0806963 47.556755796244246, 10.080900200000006 47.55679199624419, 10.0810997 47.556808396244165, 10.0815133 47.55683899624419, 10.082135700000006 47.55685779624423, 10.082249399999995 47.55686149624417, 10.082952299999997 47.55686279624422, 10.083145299999998 47.5568787962442, 10.083510899999999 47.55695179624421, 10.084084000000002 47.55706639624426, 10.084748599999996 47.557142096244185, 10.085029800000003 47.55717259624419, 10.0852206 47.55718279624423, 10.085355299999996 47.55717479624423, 10.085715199999997 47.55710829624423, 10.085827200000002 47.55708689624424, 10.086029800000006 47.5570528962442, 10.0862641 47.557044496244224, 10.086598900000006 47.55706309624426, 10.086877800000002 47.557084896244255, 10.0873888 47.5571268962442, 10.087867 47.55716629624423, 10.088342000000006 47.557203396244255, 10.088636700000006 47.55721959624428)" -Branch_LVStation_mvgd_33532_lvgd_1163940000_MVCableDist_mvgd_33532_53,BusBar_mvgd_33532_lvgd_1163940000_MV,BranchTee_mvgd_33532_53,0.20484775688456236,0.026630208394993107,0.02314842904654002,14.445303735124435,1,cable,NA2XS2Y 3x1x240,"LINESTRING (10.088636700000006 47.55721959624428, 10.088720799999999 47.556742496244176, 10.088681600000005 47.55629489624413, 10.088448100000004 47.55626059624415, 10.087934799999998 47.556209296244134, 10.087345400000006 47.556173096244144)" -Branch_LVStation_mvgd_33532_lvgd_1163940001_LVStation_mvgd_33532_lvgd_1163940002,BusBar_mvgd_33532_lvgd_1163940001_MV,BusBar_mvgd_33532_lvgd_1163940002_MV,2.2587829086847924,0.4653092791890672,0.2846276110162508,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.045738800000006 47.55576749624408, 10.046556900000004 47.55557269624411, 10.047344500000003 47.55539119624403, 10.047926600000004 47.55525249624406, 10.048386799999996 47.55518159624408, 10.048871799999999 47.55512049624408, 10.048991800000005 47.555107096244065, 10.049093899999995 47.55509129624402, 10.049259499999998 47.55505869624402, 10.0494392 47.55500619624404, 10.049600799999997 47.55494469624402, 10.049721600000005 47.55488859624404, 10.049849599999998 47.55481969624401, 10.050092199999998 47.554653496244, 10.050294399999997 47.55447519624399, 10.050519600000003 47.55421549624394, 10.050637000000004 47.55409169624396, 10.050914600000002 47.55385639624396, 10.051048200000004 47.553768896243966, 10.051162099999996 47.55368829624387, 10.051229100000004 47.5537458962439, 10.051297999999992 47.55378879624394, 10.051650699999994 47.55402459624399, 10.052364899999999 47.55448809624399, 10.052850799999996 47.554777796244046, 10.053303500000005 47.55496559624404, 10.053640000000003 47.55503929624399, 10.053874399999994 47.55504379624405, 10.0547098 47.55494989624404, 10.055109199999995 47.55493099624401, 10.0555555 47.55495679624407, 10.056603399999995 47.55506489624405, 10.057419099999997 47.55517239624403, 10.057793599999997 47.55521889624405, 10.058075299999997 47.555243396244045, 10.0583608 47.555289396244085, 10.058619700000001 47.55536549624404, 10.058998599999997 47.55537339624407, 10.059543399999999 47.55535609624408, 10.0598717 47.555341996244074, 10.060347799999995 47.55530299624407, 10.060875799999998 47.55525019624408, 10.06142950054595 47.55519919764838, 10.061983199999995 47.55514819624401, 10.062371500000003 47.55511939624407, 10.062718600000002 47.55512329624401, 10.063004500000005 47.55513119624405, 10.063195399999996 47.55510889624403, 10.063468099999996 47.55507209624403, 10.063622400000003 47.55503369624401, 10.0637557 47.555013996244035, 10.064212599999992 47.55496489624401, 10.064583499999992 47.554971396244056, 10.064964599999998 47.555022596244044, 10.065324799999999 47.55505269624398, 10.0656327 47.55505969624407, 10.065957500000001 47.55505099624403, 10.066291999999997 47.55501379624401, 10.067435600000001 47.554898096244024, 10.068174700000004 47.55485599624402, 10.068963199999997 47.55487129624399, 10.069895099999997 47.55489849624402, 10.070573999999995 47.55496229624403, 10.071160699999995 47.55499649624403, 10.072091199999996 47.55496609624402, 10.073011599999996 47.55502169624404, 10.073531200000005 47.55505929624403, 10.073738500000001 47.55512509624403)" -Branch_LVStation_mvgd_33532_lvgd_1163940001_LVStation_mvgd_33532_lvgd_1163940005,BusBar_mvgd_33532_lvgd_1163940001_MV,BusBar_mvgd_33532_lvgd_1163940005_MV,1.0522573553675234,0.21676501520570982,0.13259419312984136,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0598717 47.555341996244074, 10.060347799999995 47.55530299624407, 10.060875799999998 47.55525019624408, 10.06142950054595 47.55519919764838, 10.061983199999995 47.55514819624401, 10.062371500000003 47.55511939624407, 10.062718600000002 47.55512329624401, 10.063004500000005 47.55513119624405, 10.063195399999996 47.55510889624403, 10.063468099999996 47.55507209624403, 10.063622400000003 47.55503369624401, 10.0637557 47.555013996244035, 10.064212599999992 47.55496489624401, 10.064583499999992 47.554971396244056, 10.064964599999998 47.555022596244044, 10.065324799999999 47.55505269624398, 10.0656327 47.55505969624407, 10.065957500000001 47.55505099624403, 10.066291999999997 47.55501379624401, 10.067435600000001 47.554898096244024, 10.068174700000004 47.55485599624402, 10.068963199999997 47.55487129624399, 10.069895099999997 47.55489849624402, 10.070573999999995 47.55496229624403, 10.071160699999995 47.55499649624403, 10.072091199999996 47.55496609624402, 10.073011599999996 47.55502169624404, 10.073531200000005 47.55505929624403, 10.073738500000001 47.55512509624403)" -Branch_LVStation_mvgd_33532_lvgd_1163940001_MVCableDist_mvgd_33532_53,BusBar_mvgd_33532_lvgd_1163940001_MV,BranchTee_mvgd_33532_53,1.1269551409985592,0.23215275904570318,0.14200680741456043,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.087345400000006 47.556173096244144, 10.086281899999996 47.55614839624412, 10.086033999999996 47.5561467962441, 10.085405600000001 47.55614059624412, 10.083933399999998 47.55613009624413, 10.082111499999993 47.55611699624412, 10.080484400000003 47.55610709624417, 10.079823099999997 47.55607589624413, 10.079209500000003 47.55601559624412, 10.078690800000002 47.55595399624413, 10.078201100000003 47.555859496244075, 10.077642199999994 47.555722096244104, 10.077162100000002 47.55556119624412, 10.076436999999997 47.55527689624409, 10.075153899999997 47.55472429624404, 10.074721000000004 47.554535696244024, 10.074297299999998 47.554396596244004, 10.074223099999998 47.55450289624395, 10.074157399999994 47.554704596244015, 10.074005799999997 47.55498379624402, 10.073823700000004 47.55514659624404, 10.073738500000001 47.55512509624403)" -Branch_LVStation_mvgd_33532_lvgd_1163940002_LVStation_mvgd_33532_lvgd_1163940004,BusBar_mvgd_33532_lvgd_1163940002_MV,BusBar_mvgd_33532_lvgd_1163940004_MV,1.4902833680926162,0.3069983738270789,0.18778953619957903,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0359923 47.56432909624486, 10.035941700000006 47.56427029624488, 10.035869399999997 47.56421759624487, 10.035586100000007 47.564043596244844, 10.035301600000002 47.56389669624484, 10.034756400000003 47.56359659624476, 10.034517899999996 47.563518596244776, 10.034274199999997 47.563472396244784, 10.034557499999998 47.56339239624475, 10.034746699999998 47.56329069624475, 10.034928700000002 47.56315119624476, 10.0350965 47.5629514962447, 10.0352147 47.562851996244746, 10.0354819 47.56271789624472, 10.035709299999999 47.5626454962447, 10.036048600000003 47.56254489624473, 10.036241000000006 47.56246699624466, 10.036482699999997 47.56232479624464, 10.036698900000001 47.562140996244686, 10.036849699999992 47.56192569624465, 10.0369243 47.561687096244604, 10.036922600000004 47.561478196244565, 10.036859699999995 47.56122189624458, 10.036766399999992 47.56091059624455, 10.036742699999998 47.560687696244564, 10.0367614 47.560508096244504, 10.0367997 47.56038829624451, 10.036856800000002 47.560275896244555, 10.037026599999999 47.560054096244464, 10.037287000000001 47.55991629624442, 10.037464199999992 47.55984629624444, 10.037695399999995 47.55978019624444, 10.037751800000002 47.55976559624441, 10.038279099999993 47.559720696244476, 10.038809500000005 47.55970259624445, 10.0391315 47.55967459624441, 10.039484899999996 47.559613596244475, 10.039770400000005 47.55953429624445, 10.039993899999994 47.55944579624444, 10.040255999999996 47.5593060962444, 10.040473899999999 47.559175196244425, 10.040678300000005 47.55902209624439, 10.040872 47.5588478962444, 10.041158499999995 47.558570896244326, 10.041523 47.55820749624431, 10.041629999999996 47.5581053962443, 10.0419612 47.55781699624426, 10.042272300000002 47.55752869624428, 10.042569400000001 47.557253696244274, 10.042859099999992 47.55699309624422, 10.043001299999993 47.55687729624422, 10.0430899 47.55680979624421, 10.043195099999995 47.556740296244186, 10.043350200000003 47.55663989624417, 10.04371489999999 47.55642649624413, 10.043902399999997 47.55633619624416, 10.044077099999997 47.55626309624415, 10.044340599999996 47.55615509624412, 10.044591800000005 47.55607259624417, 10.044930799999996 47.555961396244136, 10.045465499999995 47.555835296244105, 10.045738800000006 47.55576749624408)" -Branch_LVStation_mvgd_33532_lvgd_1163940003_LVStation_mvgd_33532_lvgd_1202400000,BusBar_mvgd_33532_lvgd_1202400000_MV,BusBar_mvgd_33532_lvgd_1163940003_MV,1.6133396375296776,0.5969356658859807,0.5980778024549976,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.1247248 47.55791649624429, 10.108337700000003 47.55674169624417)" -Branch_LVStation_mvgd_33532_lvgd_1163980000_MVCableDist_mvgd_33532_25,BusBar_mvgd_33532_lvgd_1163980000_MV,BranchTee_mvgd_33532_25,0.58054070561848,0.21480006107883762,0.21521104507394048,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0513544 47.56223849624466, 10.053401567907299 47.56601064602132)" -Branch_LVStation_mvgd_33532_lvgd_1164000000_MVCableDist_mvgd_33532_26,BusBar_mvgd_33532_lvgd_1164000000_MV,BranchTee_mvgd_33532_26,0.1483645667056544,0.030563100741364806,0.018695312426230376,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.058768199999996 47.56576709624502, 10.05824489409215 47.564803105280845)" -Branch_LVStation_mvgd_33532_lvgd_1164650000_MVCableDist_mvgd_33532_28,BusBar_mvgd_33532_lvgd_1164650000_MV,BranchTee_mvgd_33532_28,1.5950194070454486,0.3285739978513624,0.20098724919795097,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.006545348901419 47.511165158297686, 10.00166124438563 47.52169942153373)" -Branch_LVStation_mvgd_33532_lvgd_1165560000_MVCableDist_mvgd_33532_27,BusBar_mvgd_33532_lvgd_1165560000_MV,BranchTee_mvgd_33532_27,0.6716486850691185,0.24851001347557383,0.24898549582715365,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.008001799999994 47.57208949624548, 10.012101513617639 47.56836066096543)" -Branch_LVStation_mvgd_33532_lvgd_1165580000_MVCableDist_mvgd_33532_48,BusBar_mvgd_33532_lvgd_1165580000_MV,BranchTee_mvgd_33532_48,3.325100560770347,0.6849707155186915,0.41899353203089496,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.00487026241384 47.50392359944945, 9.995243215231273 47.52599892422051)" -Branch_LVStation_mvgd_33532_lvgd_1166160000_MVCableDist_mvgd_33532_28,BusBar_mvgd_33532_lvgd_1166160000_MV,BranchTee_mvgd_33532_28,0.5932827627138625,0.12221624911905567,0.07475913455830585,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.007437925988821 47.52293178918052, 10.00166124438563 47.52169942153373)" -Branch_LVStation_mvgd_33532_lvgd_1166370000_LVStation_mvgd_33532_lvgd_1166640000,BusBar_mvgd_33532_lvgd_1166640000_MV,BusBar_mvgd_33532_lvgd_1166370000_MV,1.9239977568810653,0.7118791700459942,0.7132412317878138,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.003053600000003 47.527566196241544, 10.010055050033241 47.51512089628523)" -Branch_LVStation_mvgd_33532_lvgd_1166640000_MVCableDist_mvgd_33532_18,virtual_BusBar_mvgd_33532_lvgd_1166640000_MV,BranchTee_mvgd_33532_18,0.3844371256515665,0.0791940478842227,0.04844264592203406,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.003053600000003 47.527566196241544, 9.999290480345204 47.526811151049166)" -Branch_LVStation_mvgd_33532_lvgd_1166640000_MVCableDist_mvgd_33532_29,BusBar_mvgd_33532_lvgd_1166640000_MV,BranchTee_mvgd_33532_29,0.544743368619511,0.11221713393561926,0.06864272039201665,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.003053600000003 47.527566196241544, 10.00828881374074 47.52883784440469)" -Branch_LVStation_mvgd_33532_lvgd_1166650000_MVCableDist_mvgd_33532_29,BusBar_mvgd_33532_lvgd_1166650000_MV,BranchTee_mvgd_33532_29,0.13702745441310843,0.028227655609100333,0.017266731053826947,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0078172 47.529730996241796, 10.00828881374074 47.52883784440469)" -Branch_LVStation_mvgd_33532_lvgd_1167330000_MVCableDist_mvgd_33532_49,BusBar_mvgd_33532_lvgd_1167330000_MV,BranchTee_mvgd_33532_49,3.0128081586531383,0.6206384806825465,0.3796417908735727,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.010591400000001 47.50410939623945, 10.037964404040062 47.51360559372951)" -Branch_LVStation_mvgd_33532_lvgd_1167770000_MVCableDist_mvgd_33532_30,BusBar_mvgd_33532_lvgd_1167770000_MV,BranchTee_mvgd_33532_30,0.5212255041027889,0.19285343651803188,0.19322242931724906,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.011235800007439 47.5333865462718, 10.013029541383371 47.52998910924647)" -Branch_LVStation_mvgd_33532_lvgd_1168630000_MVCableDist_mvgd_33532_35,BusBar_mvgd_33532_lvgd_1168630000_MV,BranchTee_mvgd_33532_35,1.6471862391064687,0.6094589084693934,0.6106250061687877,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.015019600000004 47.51566519624052, 10.029987726041217 47.52085725110507)" -Branch_LVStation_mvgd_33532_lvgd_1169820000_LVStation_mvgd_33532_lvgd_1170260000,BusBar_mvgd_33532_lvgd_1170260000_MV,BusBar_mvgd_33532_lvgd_1169820000_MV,0.5617784309777775,0.20785801946177765,0.2082557210211884,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.023249199999997 47.5739876962457, 10.0221088 47.57779949624604)" -Branch_LVStation_mvgd_33532_lvgd_1169820000_LVStation_mvgd_33532_lvgd_1170760000,BusBar_mvgd_33532_lvgd_1169820000_MV,BusBar_mvgd_33532_lvgd_1170760000_MV,0.5489778560873306,0.20312180675231234,0.20351044636075705,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.023486400000003 47.5814837962464, 10.0221088 47.57779949624604)" -Branch_LVStation_mvgd_33532_lvgd_1170260000_MVCableDist_mvgd_33532_23,BusBar_mvgd_33532_lvgd_1170260000_MV,BranchTee_mvgd_33532_23,0.5796657527882109,0.11941114507437144,0.07304326492363629,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.023249199999997 47.5739876962457, 10.018499493467326 47.57159047025898)" -Branch_LVStation_mvgd_33532_lvgd_1170260000_MVStation_mvgd_33532,Busbar_mvgd_33532_MV,BusBar_mvgd_33532_lvgd_1170260000_MV,0.16648060776750992,0.02164247900977629,0.0188128227281628,14.445303735124435,1,cable,NA2XS2Y 3x1x240,"LINESTRING (10.023249199999997 47.5739876962457, 10.024504210738641 47.57320970148501)" -Branch_LVStation_mvgd_33532_lvgd_1172090000_MVCableDist_mvgd_33532_32,BusBar_mvgd_33532_lvgd_1172090000_MV,BranchTee_mvgd_33532_32,0.22337245771481765,0.08264780935448253,0.0828059421161978,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.010766399999996 47.52779689624157, 10.00999768548903 47.52925286610238)" -Branch_LVStation_mvgd_33532_lvgd_1172110000_LVStation_mvgd_33532_lvgd_1172110001,BusBar_mvgd_33532_lvgd_1172110000_MV,BusBar_mvgd_33532_lvgd_1172110001_MV,1.0964666719716802,0.2258721344261661,0.13816497734346417,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.024231499999999 47.53182689624196, 10.024279300000002 47.53165939624193, 10.024456900000004 47.5312387962419, 10.024472000000001 47.531082396241864, 10.024457499999999 47.53094269624185, 10.024401999999995 47.5308071962419, 10.024199900000001 47.530313296241815, 10.024173499999998 47.530246096241804, 10.024169200000003 47.53014369624181, 10.024182600000003 47.53003709624181, 10.024203400000001 47.52990609624178, 10.024218699999997 47.5296346962418, 10.024225299999996 47.52951849624174, 10.024237700000002 47.52932239624177, 10.024302799999996 47.52916379624174, 10.024360699999997 47.52908759624173, 10.024743999999997 47.5286991962417, 10.025064800000003 47.528391796241664, 10.025185999999996 47.52829039624166, 10.025617200000001 47.5279294962416, 10.026050599999998 47.527639896241574, 10.026457499999998 47.52738559624154, 10.026677200000005 47.52723899624155, 10.027246399999996 47.52681299624154, 10.027849200000004 47.5264322962415, 10.028215100000002 47.52626519624144, 10.028951300000003 47.52600219624145, 10.028997700000003 47.52598629624144, 10.029016599999995 47.52598039624144, 10.029169399999995 47.52591649624144, 10.029282999999996 47.52586899624143, 10.029607799999997 47.52575179624143, 10.030365000000002 47.52542929624145, 10.031609300000003 47.524860696241326, 10.031685800000005 47.524828396241325, 10.031882200000002 47.52475569624136, 10.032254799999993 47.52462569624129)" -Branch_LVStation_mvgd_33532_lvgd_1172110000_MVCableDist_mvgd_33532_31,BusBar_mvgd_33532_lvgd_1172110000_MV,BranchTee_mvgd_33532_31,0.8374379064219707,0.17251220872292594,0.10552494875132701,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.032254799999993 47.52462569624129, 10.031882200000002 47.52475569624136, 10.031685800000005 47.524828396241325, 10.031609300000003 47.524860696241326, 10.030365000000002 47.52542929624145, 10.029607799999997 47.52575179624143, 10.029282999999996 47.52586899624143, 10.029169399999995 47.52591649624144, 10.029016599999995 47.52598039624144, 10.028997700000003 47.52598629624144, 10.028951300000003 47.52600219624145, 10.031979783462308 47.52154800983165)" -Branch_LVStation_mvgd_33532_lvgd_1172110001_LVStation_mvgd_33532_lvgd_1172110002,BusBar_mvgd_33532_lvgd_1172110001_MV,BusBar_mvgd_33532_lvgd_1172110002_MV,0.30164151403660844,0.062138151891541336,0.03800963040470113,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.024231499999999 47.53182689624196, 10.024279300000002 47.53165939624193, 10.024456900000004 47.5312387962419, 10.024472000000001 47.531082396241864, 10.024457499999999 47.53094269624185, 10.024401999999995 47.5308071962419, 10.024199900000001 47.530313296241815, 10.024173499999998 47.530246096241804, 10.024169200000003 47.53014369624181, 10.024182600000003 47.53003709624181, 10.024203400000001 47.52990609624178, 10.024218699999997 47.5296346962418, 10.024225299999996 47.52951849624174, 10.024237700000002 47.52932239624177, 10.024302799999996 47.52916379624174)" -Branch_LVStation_mvgd_33532_lvgd_1172110001_MVCableDist_mvgd_33532_22,BusBar_mvgd_33532_lvgd_1172110001_MV,BranchTee_mvgd_33532_22,0.7439302584583029,0.15324963324241037,0.09374211723205356,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.024231499999999 47.53182689624196, 10.024242799999993 47.53221619624197, 10.024205299999998 47.532322896242036, 10.024040699999995 47.532578196242056, 10.0238945 47.53277949624208, 10.023838999999994 47.53290729624206, 10.023815600000006 47.533037196242084, 10.023826400000004 47.53314339624206, 10.023837999999998 47.533277196242096, 10.023877799999992 47.533620996242135, 10.023898699999998 47.53371819624214, 10.023956599999993 47.533849896242174, 10.0244336 47.53431489624215, 10.024473399999996 47.53440269624219, 10.024470900000004 47.53447589624225, 10.024421899999993 47.53455509624217, 10.024290899999999 47.53462489624224, 10.023580200000003 47.53481119624228, 10.02333 47.53489319624225, 10.02359344799995 47.53528579659849, 10.023856899999997 47.53567839624231, 10.024060699999993 47.53582199624235, 10.024270358284765 47.537727672646795)" -Branch_LVStation_mvgd_33532_lvgd_1172130000_MVCableDist_mvgd_33532_33,BusBar_mvgd_33532_lvgd_1172130000_MV,BranchTee_mvgd_33532_33,0.778052855148589,0.16027888816060934,0.09804188111829716,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.040297599999995 47.522345496241094, 10.0332262990709 47.51989394244498)" -Branch_LVStation_mvgd_33532_lvgd_1172130000_MVCableDist_mvgd_33532_36,BusBar_mvgd_33532_lvgd_1172130000_MV,BranchTee_mvgd_33532_36,0.10612797642857158,0.013796636935714306,0.011992789033047993,14.445303735124435,1,cable,NA2XS2Y 3x1x240,"LINESTRING (10.040297599999995 47.522345496241094, 10.04129336854133 47.522634768181014)" -Branch_LVStation_mvgd_33532_lvgd_1172140000_MVCableDist_mvgd_33532_36,BusBar_mvgd_33532_lvgd_1172140000_MV,BranchTee_mvgd_33532_36,0.4990114543280031,0.10279635959156863,0.06288007473804767,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.045975599999997 47.52399479624128, 10.04129336854133 47.522634768181014)" -Branch_LVStation_mvgd_33532_lvgd_1172410000_LVStation_mvgd_33532_lvgd_1173000000,BusBar_mvgd_33532_lvgd_1172410000_MV,BusBar_mvgd_33532_lvgd_1173000000_MV,0.3224195708869783,0.11929524122818197,0.11952349272210834,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.036098400000006 47.5479147962434, 10.032806700000002 47.54786329624343)" -Branch_LVStation_mvgd_33532_lvgd_1172410000_LVStation_mvgd_33532_lvgd_1175770000,BusBar_mvgd_33532_lvgd_1172410000_MV,BusBar_mvgd_33532_lvgd_1175770000_MV,0.5503664984721046,0.2036356044346787,0.20402522710906443,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.041373199999999 47.5492303962435, 10.036098400000006 47.5479147962434)" -Branch_LVStation_mvgd_33532_lvgd_1172450000_MVCableDist_mvgd_33532_35,BusBar_mvgd_33532_lvgd_1172450000_MV,BranchTee_mvgd_33532_35,0.18422126036568068,0.06816186633530184,0.06829228266758523,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.029131799999996 47.52199289624106, 10.029987726041217 47.52085725110507)" -Branch_LVStation_mvgd_33532_lvgd_1172500000_MVCableDist_mvgd_33532_31,virtual_BusBar_mvgd_33532_lvgd_1172500000_MV,BranchTee_mvgd_33532_31,0.21473233952507864,0.0442348619421662,0.027058267783042867,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.032533199999994 47.5201094962409, 10.031979783462308 47.52154800983165)" -Branch_LVStation_mvgd_33532_lvgd_1172500000_MVCableDist_mvgd_33532_33,BusBar_mvgd_33532_lvgd_1172500000_MV,BranchTee_mvgd_33532_33,0.07470365328551432,0.015388952576815948,0.009413353663643022,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.032533199999994 47.5201094962409, 10.0332262990709 47.51989394244498)" -Branch_LVStation_mvgd_33532_lvgd_1173000000_Load_mvgd_33532_1,Bus_mvgd_33532_mvload_1,BusBar_mvgd_33532_lvgd_1173000000_MV,0.1918078626017825,0.07096890916265952,0.0711046963019614,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.031116705906797 47.54853468799076, 10.032806700000002 47.54786329624343)" -Branch_LVStation_mvgd_33532_lvgd_1175770000_MVCableDist_mvgd_33532_34,BusBar_mvgd_33532_lvgd_1175770000_MV,BranchTee_mvgd_33532_34,0.3113139357475637,0.11518615622659857,0.11540654567355117,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.041373199999999 47.5492303962435, 10.043528913817605 47.55081457659302)" -Branch_LVStation_mvgd_33532_lvgd_1176030000_LVStation_mvgd_33532_lvgd_1176040000,BusBar_mvgd_33532_lvgd_1176040000_MV,BusBar_mvgd_33532_lvgd_1176030000_MV,0.42884045115105685,0.0883411329371177,0.05403787705713053,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0458033 47.51696909624063, 10.0433253 47.51941649624082)" -Branch_LVStation_mvgd_33532_lvgd_1176030000_MVCableDist_mvgd_33532_36,BusBar_mvgd_33532_lvgd_1176030000_MV,BranchTee_mvgd_33532_36,0.5056707063599476,0.1041681655101492,0.06371920230082488,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0433253 47.51941649624082, 10.04129336854133 47.522634768181014)" -Branch_LVStation_mvgd_33532_lvgd_1176170000_MVCableDist_mvgd_33532_37,BusBar_mvgd_33532_lvgd_1176170000_MV,BranchTee_mvgd_33532_37,0.44635649876948363,0.09194943874651362,0.05624506162936665,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.040137799999998 47.53328529624212, 10.038603153737306 47.53619510290661)" -Branch_LVStation_mvgd_33532_lvgd_1176270000_MVCableDist_mvgd_33532_37,BusBar_mvgd_33532_lvgd_1176270000_MV,BranchTee_mvgd_33532_37,0.40573343547616675,0.08358108770809035,0.0511261786181298,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.042503699999997 47.537140996242435, 10.038603153737306 47.53619510290661)" -Branch_LVStation_mvgd_33532_lvgd_1176270000_MVCableDist_mvgd_33532_38,BusBar_mvgd_33532_lvgd_1176270000_MV,BranchTee_mvgd_33532_38,2.2200236330479135,0.4573248684078702,0.2797435825481636,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.042503699999997 47.537140996242435, 10.061576982628472 47.54544659627017)" -Branch_LVStation_mvgd_33532_lvgd_1181890000_MVCableDist_mvgd_33532_39,BusBar_mvgd_33532_lvgd_1181890000_MV,BranchTee_mvgd_33532_39,0.33607378769924534,0.12434730144872078,0.1245852192150053,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0559142 47.551425396243694, 10.057768751732024 47.54946753584907)" -Branch_LVStation_mvgd_33532_lvgd_1182040000_MVCableDist_mvgd_33532_39,BusBar_mvgd_33532_lvgd_1182040000_MV,BranchTee_mvgd_33532_39,0.39265147067976064,0.14528104415151144,0.14555901513363415,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.061142999999996 47.5509362962437, 10.057768751732024 47.54946753584907)" -Branch_LVStation_mvgd_33532_lvgd_1184350000_MVCableDist_mvgd_33532_40,BusBar_mvgd_33532_lvgd_1184350000_MV,BranchTee_mvgd_33532_40,1.1355668601699123,0.4201597382628675,0.42096364365723926,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.065379699999998 47.50929659623996, 10.075425097809415 47.5132160861878)" -Branch_LVStation_mvgd_33532_lvgd_1184830000_MVCableDist_mvgd_33532_41,BusBar_mvgd_33532_lvgd_1184830000_MV,BranchTee_mvgd_33532_41,1.4133578561026838,0.29115171835715287,0.1780962077173633,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.066793690589224 47.496823412565696, 10.053952996487785 47.492372806611236)" -Branch_LVStation_mvgd_33532_lvgd_1185800000_MVCableDist_mvgd_33532_41,BusBar_mvgd_33532_lvgd_1185800000_MV,BranchTee_mvgd_33532_41,5.22228946706628,1.0757916302156536,0.6580569426709033,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0781729 47.4601707962354, 10.053952996487785 47.492372806611236)" -Branch_LVStation_mvgd_33532_lvgd_1185800000_MVCableDist_mvgd_33532_50,BusBar_mvgd_33532_lvgd_1185800000_MV,BranchTee_mvgd_33532_50,0.8173222772715661,0.30240924259047947,0.30298785210321255,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0781729 47.4601707962354, 10.08594259849519 47.462215219891746)" -Branch_LVStation_mvgd_33532_lvgd_1185810000_MVCableDist_mvgd_33532_16,BusBar_mvgd_33532_lvgd_1185810000_MV,BranchTee_mvgd_33532_16,0.2676749268975991,0.03479774049668788,0.03024809325258381,14.445303735124435,1,cable,NA2XS2Y 3x1x240,"LINESTRING (10.093199999999996 47.46412419623574, 10.090655150847624 47.46345487403672)" -Branch_LVStation_mvgd_33532_lvgd_1185810000_MVCableDist_mvgd_33532_43,BusBar_mvgd_33532_lvgd_1185810000_MV,BranchTee_mvgd_33532_43,0.7601871530958176,0.1565985535377384,0.09579063684207352,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.093199999999996 47.46412419623574, 10.10077133509001 47.46524953733862)" -Branch_LVStation_mvgd_33532_lvgd_1186310000_MVCableDist_mvgd_33532_38,BusBar_mvgd_33532_lvgd_1186310000_MV,BranchTee_mvgd_33532_38,1.6264939184651315,0.3350577472038171,0.20495332976233077,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.076023899999992 47.55100299624363, 10.061576982628472 47.54544659627017)" -Branch_LVStation_mvgd_33532_lvgd_1186310000_MVCableDist_mvgd_33532_53,BusBar_mvgd_33532_lvgd_1186310000_MV,BranchTee_mvgd_33532_53,1.3366073582912676,0.27534111580800114,0.1684249326460059,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.076023899999992 47.55100299624363, 10.087345400000006 47.556173096244144)" -Branch_LVStation_mvgd_33532_lvgd_1191970000_MVCableDist_mvgd_33532_42,BusBar_mvgd_33532_lvgd_1191970000_MV,BranchTee_mvgd_33532_42,0.21088366250950355,0.07802695512851632,0.07817624665843194,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.106713927889984 47.47333964308403, 10.108578607521961 47.474066900094186)" -Branch_LVStation_mvgd_33532_lvgd_1193200000_MVCableDist_mvgd_33532_50,BusBar_mvgd_33532_lvgd_1193200000_MV,BranchTee_mvgd_33532_50,2.74241811098827,0.5649381308635836,0.34557013528705466,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.096039900000005 47.44450929623392, 10.08594259849519 47.462215219891746)" -Branch_LVStation_mvgd_33532_lvgd_1195310000_MVCableDist_mvgd_33532_43,BusBar_mvgd_33532_lvgd_1195310000_MV,BranchTee_mvgd_33532_43,0.32230123470357414,0.06639405434893626,0.04061294695853737,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.103981500000007 47.465726496235916, 10.10077133509001 47.46524953733862)" -Branch_LVStation_mvgd_33532_lvgd_1195310000_MVCableDist_mvgd_33532_44,BusBar_mvgd_33532_lvgd_1195310000_MV,BranchTee_mvgd_33532_44,0.7460617115852997,0.1536887125865717,0.09401070010878669,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.103981500000007 47.465726496235916, 10.111272439250325 47.4642535501185)" -Branch_LVStation_mvgd_33532_lvgd_1195590000_MVCableDist_mvgd_33532_43,BusBar_mvgd_33532_lvgd_1195590000_MV,BranchTee_mvgd_33532_43,0.7248784229636904,0.14932495513052021,0.09134140913325553,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.102351329541532 47.46034674424677, 10.10077133509001 47.46524953733862)" -Branch_LVStation_mvgd_33532_lvgd_1196020000_MVCableDist_mvgd_33532_44,BusBar_mvgd_33532_lvgd_1196020000_MV,BranchTee_mvgd_33532_44,0.26234662447730794,0.05404340464232543,0.033058109611176355,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.112035199999998 47.46599449623593, 10.111272439250325 47.4642535501185)" -Branch_LVStation_mvgd_33532_lvgd_1197330000_LVStation_mvgd_33532_lvgd_1205070000,BusBar_mvgd_33532_lvgd_1197330000_MV,BusBar_mvgd_33532_lvgd_1205070000_MV,7.337400145335868,1.5115044299391889,0.9245805191846678,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.134432452294615 47.413320640977645, 10.118035699999993 47.462886696235664)" -Branch_LVStation_mvgd_33532_lvgd_1197330000_MVCableDist_mvgd_33532_42,BusBar_mvgd_33532_lvgd_1197330000_MV,BranchTee_mvgd_33532_42,1.8621664081529536,0.3836062800795084,0.23465025081843813,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.118035699999993 47.462886696235664, 10.108578607521961 47.474066900094186)" -Branch_LVStation_mvgd_33532_lvgd_1197330000_MVCableDist_mvgd_33532_45,BusBar_mvgd_33532_lvgd_1197330000_MV,BranchTee_mvgd_33532_45,0.18061723765628787,0.023480240895317424,0.020410305555968348,14.445303735124435,1,cable,NA2XS2Y 3x1x240,"LINESTRING (10.118035699999993 47.462886696235664, 10.116270736669351 47.46324344251759)" -Branch_LVStation_mvgd_33532_lvgd_1197330000_MVCableDist_mvgd_33532_46,BusBar_mvgd_33532_lvgd_1197330000_MV,BranchTee_mvgd_33532_46,0.6199247299555551,0.12770449437084436,0.07811626970379511,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.118035699999993 47.462886696235664, 10.12176727465316 47.45942243316103)" -Branch_LVStation_mvgd_33532_lvgd_1198480000_MVCableDist_mvgd_33532_45,BusBar_mvgd_33532_lvgd_1198480000_MV,BranchTee_mvgd_33532_45,1.4236638307628882,0.29327474913715496,0.17939485617775738,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.11213156404492 47.45379599917682, 10.116270736669351 47.46324344251759)" -Branch_LVStation_mvgd_33532_lvgd_1200480000_MVCableDist_mvgd_33532_46,BusBar_mvgd_33532_lvgd_1200480000_MV,BranchTee_mvgd_33532_46,0.10656801990337193,0.021953012100094618,0.013428559601369731,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.122408699950109 47.458826896343886, 10.12176727465316 47.45942243316103)" -Branch_LVStation_mvgd_33532_lvgd_1200490000_LVStation_mvgd_33532_lvgd_1200510000,BusBar_mvgd_33532_lvgd_1200510000_MV,BusBar_mvgd_33532_lvgd_1200490000_MV,0.42508435514902204,0.08756737716069854,0.05356457409928703,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.127972999999997 47.45895099623527, 10.124696899999998 47.46087769623543)" -Branch_LVStation_mvgd_33532_lvgd_1200490000_MVCableDist_mvgd_33532_46,BusBar_mvgd_33532_lvgd_1200490000_MV,BranchTee_mvgd_33532_46,0.3560384580188621,0.07334392235188558,0.04486415022275163,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.124696899999998 47.46087769623543, 10.12176727465316 47.45942243316103)" -Branch_MVCableDist_mvgd_33532_10_MVCableDist_mvgd_33532_19,BranchTee_mvgd_33532_10,BranchTee_mvgd_33532_19,0.4753076235222591,0.17586382070323586,0.17620030671382475,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.97761393434411 47.549656821675576, 9.98052636625868 47.54702430740754)" -Branch_MVCableDist_mvgd_33532_11_MVCableDist_mvgd_33532_14,BranchTee_mvgd_33532_11,BranchTee_mvgd_33532_14,1.2762919791535343,0.26291614770562804,0.16082463506738273,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.975393653890615 47.53650708528937, 9.985114412963808 47.542392139613284)" -Branch_MVCableDist_mvgd_33532_11_MVCableDist_mvgd_33532_8,BranchTee_mvgd_33532_8,BranchTee_mvgd_33532_11,0.5140793584171395,0.10590034783393072,0.06477877050355178,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.971478841193234 47.53413638703258, 9.975393653890615 47.53650708528937)" -Branch_MVCableDist_mvgd_33532_12_MVCableDist_mvgd_33532_47,BranchTee_mvgd_33532_12,BranchTee_mvgd_33532_47,0.23340381784044878,0.048081186475132445,0.02941104734703378,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.984705724901088 47.52388337901873, 9.982421329246263 47.5234245980793)" -Branch_MVCableDist_mvgd_33532_12_MVCableDist_mvgd_33532_48,BranchTee_mvgd_33532_12,BranchTee_mvgd_33532_48,1.07659463585097,0.2217784949852998,0.13566091635322064,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.984705724901088 47.52388337901873, 9.995243215231273 47.52599892422051)" -Branch_MVCableDist_mvgd_33532_13_MVCableDist_mvgd_33532_4,BranchTee_mvgd_33532_4,BranchTee_mvgd_33532_13,0.24947428766344262,0.05139170325866918,0.03143607570015286,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.98626414895975 47.54308805548839, 9.988164556270467 47.54423827196185)" -Branch_MVCableDist_mvgd_33532_14_MVCableDist_mvgd_33532_15,BranchTee_mvgd_33532_14,BranchTee_mvgd_33532_15,0.739492147085152,0.27361209442150625,0.2741356054070666,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.985114412963808 47.542392139613284, 9.990142682681796 47.53857276445044)" -Branch_MVCableDist_mvgd_33532_14_MVCableDist_mvgd_33532_4,BranchTee_mvgd_33532_4,BranchTee_mvgd_33532_14,0.1509359632856054,0.031092808436834714,0.01901933226129853,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.98626414895975 47.54308805548839, 9.985114412963808 47.542392139613284)" -Branch_MVCableDist_mvgd_33532_16_MVCableDist_mvgd_33532_50,BranchTee_mvgd_33532_16,BranchTee_mvgd_33532_50,0.49569876359265963,0.10211394530008788,0.062462644959200314,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.090655150847624 47.46345487403672, 10.08594259849519 47.462215219891746)" -Branch_MVCableDist_mvgd_33532_17_MVCableDist_mvgd_33532_5,BranchTee_mvgd_33532_5,BranchTee_mvgd_33532_17,0.2644108954180339,0.09783203130467255,0.09801921653577854,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.996294213899032 47.553857279122525, 9.993690037971223 47.5543418623081)" -Branch_MVCableDist_mvgd_33532_17_MVCableDist_mvgd_33532_6,BranchTee_mvgd_33532_6,BranchTee_mvgd_33532_17,0.636727649761366,0.2355892304117054,0.23603999100568063,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.98741872382493 47.555508531329956, 9.993690037971223 47.5543418623081)" -Branch_MVCableDist_mvgd_33532_18_MVCableDist_mvgd_33532_28,BranchTee_mvgd_33532_18,BranchTee_mvgd_33532_28,0.7739948196732369,0.1594429328526868,0.09753053098441414,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.999290480345204 47.526811151049166, 10.00166124438563 47.52169942153373)" -Branch_MVCableDist_mvgd_33532_18_MVCableDist_mvgd_33532_48,BranchTee_mvgd_33532_18,BranchTee_mvgd_33532_48,0.4134777107707803,0.08517640841878074,0.05210202918246822,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.999290480345204 47.526811151049166, 9.995243215231273 47.52599892422051)" -Branch_MVCableDist_mvgd_33532_1_MVCableDist_mvgd_33532_54,BranchTee_mvgd_33532_1,BranchTee_mvgd_33532_54,0.1547055246401246,0.031869338075865665,0.019494331978531516,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021999200000003 47.55448659624401, 10.020615832570677 47.555004153344306)" -Branch_MVCableDist_mvgd_33532_20_MVCableDist_mvgd_33532_5,BranchTee_mvgd_33532_5,BranchTee_mvgd_33532_20,0.8661412063703458,0.17842508851229122,0.10914183094977867,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.996294213899032 47.553857279122525, 9.993952627550263 47.54807462214073)" -Branch_MVCableDist_mvgd_33532_22_MVStation_mvgd_33532,Busbar_mvgd_33532_MV,BranchTee_mvgd_33532_22,5.125063694812047,1.0557631211312817,0.6458055929818597,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.024504210738641 47.57320970148501, 10.024270358284765 47.537727672646795)" -Branch_MVCableDist_mvgd_33532_23_MVCableDist_mvgd_33532_27,BranchTee_mvgd_33532_23,BranchTee_mvgd_33532_27,0.7809100919334306,0.1608674789382867,0.09840191947216037,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.018499493467326 47.57159047025898, 10.012101513617639 47.56836066096543)" -Branch_MVCableDist_mvgd_33532_24_MVCableDist_mvgd_33532_30,BranchTee_mvgd_33532_24,BranchTee_mvgd_33532_30,2.5476206626189564,0.524809856499505,0.32102384881205087,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.037517756901362 47.53593186012843, 10.013029541383371 47.52998910924647)" -Branch_MVCableDist_mvgd_33532_24_MVCableDist_mvgd_33532_37,BranchTee_mvgd_33532_24,BranchTee_mvgd_33532_37,0.11290523291258438,0.023258477979992382,0.014227107258330486,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.037517756901362 47.53593186012843, 10.038603153737306 47.53619510290661)" -Branch_MVCableDist_mvgd_33532_25_MVCableDist_mvgd_33532_26,BranchTee_mvgd_33532_25,BranchTee_mvgd_33532_26,0.5051742905235752,0.10406590384785648,0.06365664929804003,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.053401567907299 47.56601064602132, 10.05824489409215 47.564803105280845)" -Branch_MVCableDist_mvgd_33532_25_MVStation_mvgd_33532,Busbar_mvgd_33532_MV,BranchTee_mvgd_33532_25,3.0135957549683092,0.6208007255234717,0.37974103531922987,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.024504210738641 47.57320970148501, 10.053401567907299 47.56601064602132)" -Branch_MVCableDist_mvgd_33532_27_MVCableDist_mvgd_33532_7,BranchTee_mvgd_33532_7,BranchTee_mvgd_33532_27,0.9924810658663139,0.20445109956846066,0.12506182584889197,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.003971291519571 47.564255255361005, 10.012101513617639 47.56836066096543)" -Branch_MVCableDist_mvgd_33532_29_MVCableDist_mvgd_33532_32,BranchTee_mvgd_33532_29,BranchTee_mvgd_33532_32,0.17780863398375316,0.03662857860065315,0.022405538183537316,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.00828881374074 47.52883784440469, 10.00999768548903 47.52925286610238)" -Branch_MVCableDist_mvgd_33532_2_MVCableDist_mvgd_33532_41,BranchTee_mvgd_33532_2,BranchTee_mvgd_33532_41,1.235410582993561,0.2544945800966736,0.15567319971727317,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.048219013447918 47.49998981068342, 10.053952996487785 47.492372806611236)" -Branch_MVCableDist_mvgd_33532_2_MVCableDist_mvgd_33532_49,BranchTee_mvgd_33532_2,BranchTee_mvgd_33532_49,2.208492870408348,0.4549495313041197,0.2782905994347019,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.048219013447918 47.49998981068342, 10.037964404040062 47.51360559372951)" -Branch_MVCableDist_mvgd_33532_30_MVCableDist_mvgd_33532_32,BranchTee_mvgd_33532_30,BranchTee_mvgd_33532_32,0.3154585230220654,0.06498445574254547,0.03975070177716452,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.013029541383371 47.52998910924647, 10.00999768548903 47.52925286610238)" -Branch_MVCableDist_mvgd_33532_31_MVCableDist_mvgd_33532_35,BranchTee_mvgd_33532_31,BranchTee_mvgd_33532_35,0.2191935422655712,0.08110161063826134,0.08125678500730939,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.031979783462308 47.52154800983165, 10.029987726041217 47.52085725110507)" -Branch_MVCableDist_mvgd_33532_33_MVCableDist_mvgd_33532_49,BranchTee_mvgd_33532_33,BranchTee_mvgd_33532_49,1.0200339244267778,0.2101269884319162,0.12853374175483434,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0332262990709 47.51989394244498, 10.037964404040062 47.51360559372951)" -Branch_MVCableDist_mvgd_33532_34_MVCableDist_mvgd_33532_40,BranchTee_mvgd_33532_34,BranchTee_mvgd_33532_40,6.2651910433092235,1.2906293549217,0.7894722207969228,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.043528913817605 47.55081457659302, 10.075425097809415 47.5132160861878)" -Branch_MVCableDist_mvgd_33532_34_MVStation_mvgd_33532,Busbar_mvgd_33532_MV,BranchTee_mvgd_33532_34,3.7325857685143795,0.7689126683139621,0.47034045021356197,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.024504210738641 47.57320970148501, 10.043528913817605 47.55081457659302)" -Branch_MVCableDist_mvgd_33532_38_MVCableDist_mvgd_33532_39,BranchTee_mvgd_33532_38,BranchTee_mvgd_33532_39,0.6901907930270151,0.2553705934199956,0.25585920234398013,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.061576982628472 47.54544659627017, 10.057768751732024 47.54946753584907)" -Branch_MVCableDist_mvgd_33532_3_MVCableDist_mvgd_33532_47,BranchTee_mvgd_33532_3,BranchTee_mvgd_33532_47,0.9694458449943123,0.19970584406882833,0.12215917422140685,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.97293349523393 47.521518532583286, 9.982421329246263 47.5234245980793)" -Branch_MVCableDist_mvgd_33532_40_MVCableDist_mvgd_33532_42,BranchTee_mvgd_33532_40,BranchTee_mvgd_33532_42,6.521818409683899,1.3434945923948831,0.8218096508048143,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.075425097809415 47.5132160861878, 10.108578607521961 47.474066900094186)" -Branch_MVCableDist_mvgd_33532_44_MVCableDist_mvgd_33532_45,BranchTee_mvgd_33532_44,BranchTee_mvgd_33532_45,0.5114864807328215,0.10536621503096123,0.06445204384996006,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.111272439250325 47.4642535501185, 10.116270736669351 47.46324344251759)" -Branch_MVCableDist_mvgd_33532_51_MVStation_mvgd_33532,Busbar_mvgd_33532_MV,BranchTee_mvgd_33532_51,1.6381011352905044,0.6060974200574866,0.6072570861109583,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.024504210738641 47.57320970148501, 10.022294999999996 47.570683496245394, 10.021991200000004 47.57059749624538, 10.021641999999996 47.57061269624539, 10.021606200000008 47.5704576962454, 10.021530499999997 47.570067996245356, 10.021478699999992 47.56990839624535, 10.021444999999995 47.569708696245335, 10.0214327 47.56956869624533, 10.021291900000005 47.56947489624533, 10.021403600000005 47.569266296245324, 10.021477599999997 47.56903029624529, 10.021555500000002 47.56885489624524, 10.021615600000006 47.568694996245235, 10.021538299999998 47.56856869624521, 10.021444200000003 47.56840579624522, 10.021420699999995 47.568354696245194, 10.021365099999999 47.56806949624518, 10.021298199999997 47.56782749624517, 10.0212091 47.56760809624511, 10.021161300000003 47.5675205962451, 10.020990699999997 47.56720129624508, 10.020930699999996 47.56703339624508, 10.020946099999998 47.56675289624504, 10.021023600000003 47.56649499624504, 10.021048400000003 47.56642249624503, 10.021077399999992 47.56631409624502, 10.021126599999997 47.566053596245006, 10.021131900000006 47.56574519624501, 10.021084400000005 47.565377596244936, 10.021080099999997 47.565354596244916, 10.020949000000003 47.56495809624495, 10.020833899999998 47.56466029624489, 10.020684900000003 47.56430499624486, 10.020543899999996 47.56385759624484, 10.020444300000005 47.56324049624475, 10.020404899999994 47.562929296244725, 10.020455700000003 47.56250359624466, 10.020541599999998 47.562063496244626, 10.0205587 47.56183759624462, 10.020486 47.561602396244616, 10.020395900000004 47.56143569624454, 10.020302300000006 47.561308296244604, 10.0202025 47.56118499624459, 10.019988500000002 47.56093419624458, 10.019804300000004 47.56073399624456, 10.019725299999994 47.560569996244496, 10.019648899999996 47.56030849624448, 10.0195974 47.55999569624451, 10.019539000000005 47.55966559624444, 10.019531 47.55962729624444)" -Branch_MVCableDist_mvgd_33532_52_MVCableDist_mvgd_33532_54,BranchTee_mvgd_33532_52,BranchTee_mvgd_33532_54,0.13273524206387333,0.027343459865157904,0.01672587246036053,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019428900000005 47.55544819624408, 10.020615832570677 47.555004153344306)" -Branch_MVCableDist_mvgd_33532_55_MVCableDist_mvgd_33532_9,BranchTee_mvgd_33532_9,BranchTee_mvgd_33532_55,0.3753575497979161,0.0773236552583707,0.047298535093884535,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.969748552299011 47.52597839431304, 9.968957591647868 47.52852116688911)" -Branch_LVCableDist_mvgd_33532_lvgd_1140900000_building_444312_LVStation_mvgd_33532_lvgd_1140900000,BusBar_mvgd_33532_lvgd_1140900000_LV,BranchTee_mvgd_33532_lvgd_1140900000_building_444312,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040278153522014 47.497236243470454, 10.040278153522014 47.497236243470454)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_10_LVCableDist_mvgd_33532_lvgd_1150350000_2,BranchTee_mvgd_33532_lvgd_1150350000_2,BranchTee_mvgd_33532_lvgd_1150350000_10,0.013439022067072962,0.01166507115421933,0.0011441601842281184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9701191 47.52158709624102, 9.970059999999997 47.52151649624107, 9.9700453 47.52147799624105)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_10_LVCableDist_mvgd_33532_lvgd_1150350000_9,BranchTee_mvgd_33532_lvgd_1150350000_9,BranchTee_mvgd_33532_lvgd_1150350000_10,0.013282093302758001,0.011528856986793944,0.0011307997147688698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970197099999998 47.521694296241066, 9.9701191 47.52158709624102)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_10_LVCableDist_mvgd_33532_lvgd_1150350000_building_431005,BranchTee_mvgd_33532_lvgd_1150350000_10,BranchTee_mvgd_33532_lvgd_1150350000_building_431005,0.022398868856963957,0.019442218167844715,0.001906976102128474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969851863164319 47.52167532184271, 9.9701191 47.52158709624102)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_10_LVCableDist_mvgd_33532_lvgd_1150350000_building_431006,BranchTee_mvgd_33532_lvgd_1150350000_10,BranchTee_mvgd_33532_lvgd_1150350000_building_431006,0.013860217020039846,0.012030668373394586,0.0011800195267143015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969956631145854 47.52164555182831, 9.9701191 47.52158709624102)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_11_LVCableDist_mvgd_33532_lvgd_1150350000_6,BranchTee_mvgd_33532_lvgd_1150350000_6,BranchTee_mvgd_33532_lvgd_1150350000_11,0.018989218659727594,0.016482641796643552,0.0016166881646317629,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970726900000006 47.52153459624104, 9.9705515 47.52165729624105)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_11_LVCableDist_mvgd_33532_lvgd_1150350000_building_431025,BranchTee_mvgd_33532_lvgd_1150350000_11,BranchTee_mvgd_33532_lvgd_1150350000_building_431025,0.010371746045882434,0.009002675567825953,0.0008830210120496319,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97082950097406 47.521596812909166, 9.970726900000006 47.52153459624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_11_LVStation_mvgd_33532_lvgd_1150350000,BusBar_mvgd_33532_lvgd_1150350000_LV,BranchTee_mvgd_33532_lvgd_1150350000_11,0.05539755917665626,0.04808508136533763,0.004716390909770726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971241399999998 47.521178496241035, 9.970726900000006 47.52153459624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_12_LVCableDist_mvgd_33532_lvgd_1150350000_24,BranchTee_mvgd_33532_lvgd_1150350000_12,BranchTee_mvgd_33532_lvgd_1150350000_24,0.025280790374832926,0.02194372604535498,0.002152334718131856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970330900000002 47.520641096240986, 9.970268900000006 47.52070799624091, 9.970167699999996 47.52083969624097)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_12_LVCableDist_mvgd_33532_lvgd_1150350000_27,BranchTee_mvgd_33532_lvgd_1150350000_12,BranchTee_mvgd_33532_lvgd_1150350000_27,0.012175171670520932,0.01056804901001217,0.001036559549647815,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970167699999996 47.52083969624097, 9.970043899999999 47.520910096240975)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_12_LVCableDist_mvgd_33532_lvgd_1150350000_building_430999,BranchTee_mvgd_33532_lvgd_1150350000_12,BranchTee_mvgd_33532_lvgd_1150350000_building_430999,0.013008560681936227,0.011291430671920644,0.0011075119240152077,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970321960479978 47.5208922272495, 9.970167699999996 47.52083969624097)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_13_LVCableDist_mvgd_33532_lvgd_1150350000_16,BranchTee_mvgd_33532_lvgd_1150350000_13,BranchTee_mvgd_33532_lvgd_1150350000_16,0.01552296327767675,0.01347393212502342,0.0013215810224070318,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970116699999997 47.52043349624094, 9.9702251 47.520552296240965)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_13_LVCableDist_mvgd_33532_lvgd_1150350000_19,BranchTee_mvgd_33532_lvgd_1150350000_13,BranchTee_mvgd_33532_lvgd_1150350000_19,0.03211624844468136,0.027876903649983423,0.0027342862117337085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9698889 47.520193796240925, 9.969988200000005 47.520263796240926, 9.970060499999999 47.52033649624097, 9.970116699999997 47.52043349624094)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_13_LVCableDist_mvgd_33532_lvgd_1150350000_28,BranchTee_mvgd_33532_lvgd_1150350000_13,BranchTee_mvgd_33532_lvgd_1150350000_28,0.06391787593427699,0.05548071631095242,0.005441786488587907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970116699999997 47.52043349624094, 9.970031600000004 47.52046439624091, 9.969783299999994 47.52050129624096, 9.969314900000002 47.52061479624092)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_14_LVCableDist_mvgd_33532_lvgd_1150350000_20,BranchTee_mvgd_33532_lvgd_1150350000_14,BranchTee_mvgd_33532_lvgd_1150350000_20,0.014412995610654764,0.012510480190048336,0.001227081526532349,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969638099999996 47.52083089624099, 9.969476899999997 47.52076109624099)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_14_LVCableDist_mvgd_33532_lvgd_1150350000_27,BranchTee_mvgd_33532_lvgd_1150350000_14,BranchTee_mvgd_33532_lvgd_1150350000_27,0.039168700383618846,0.03399843193298116,0.0033347119472851745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970043899999999 47.520910096240975, 9.969905899999995 47.52084099624095, 9.9697019 47.52076539624097, 9.969638099999996 47.52083089624099)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_14_LVCableDist_mvgd_33532_lvgd_1150350000_building_430964,BranchTee_mvgd_33532_lvgd_1150350000_14,BranchTee_mvgd_33532_lvgd_1150350000_building_430964,0.016293860244352514,0.014143070692097982,0.0013872130015056975,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969602932787037 47.5209755949577, 9.969638099999996 47.52083089624099)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_15_LVCableDist_mvgd_33532_lvgd_1150350000_18,BranchTee_mvgd_33532_lvgd_1150350000_15,BranchTee_mvgd_33532_lvgd_1150350000_18,0.05530746284403719,0.04800687774862428,0.00470872036380293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970440599999996 47.52069379624093, 9.970979500000006 47.521031696241025)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_15_LVCableDist_mvgd_33532_lvgd_1150350000_building_431000,BranchTee_mvgd_33532_lvgd_1150350000_15,BranchTee_mvgd_33532_lvgd_1150350000_building_431000,0.024228741038653225,0.021030547221551,0.002062766224509864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970659291858205 47.521012263243065, 9.970979500000006 47.521031696241025)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_15_LVCableDist_mvgd_33532_lvgd_1150350000_building_431004,BranchTee_mvgd_33532_lvgd_1150350000_15,BranchTee_mvgd_33532_lvgd_1150350000_building_431004,0.025149380878859574,0.02182966260285011,0.002141146886727771,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970874658412482 47.52124658961184, 9.970979500000006 47.521031696241025)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_15_LVCableDist_mvgd_33532_lvgd_1150350000_building_431009,BranchTee_mvgd_33532_lvgd_1150350000_15,BranchTee_mvgd_33532_lvgd_1150350000_building_431009,0.0261751599980125,0.02272003887827485,0.002228478808655554,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971325484498767 47.52105229024077, 9.970979500000006 47.521031696241025)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_15_LVStation_mvgd_33532_lvgd_1150350000,BusBar_mvgd_33532_lvgd_1150350000_LV,BranchTee_mvgd_33532_lvgd_1150350000_15,0.02560479634149319,0.02222496322441609,0.0021799196662519514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971241399999998 47.521178496241035, 9.970979500000006 47.521031696241025)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_16_LVCableDist_mvgd_33532_lvgd_1150350000_24,BranchTee_mvgd_33532_lvgd_1150350000_16,BranchTee_mvgd_33532_lvgd_1150350000_24,0.012685363131880522,0.011010895198472292,0.0010799958021896594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970330900000002 47.520641096240986, 9.9702251 47.520552296240965)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_16_LVCableDist_mvgd_33532_lvgd_1150350000_building_430984,BranchTee_mvgd_33532_lvgd_1150350000_16,BranchTee_mvgd_33532_lvgd_1150350000_building_430984,0.010697843180080218,0.00928572788030963,0.0009107839962368632,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970363378782027 47.5205305510549, 9.9702251 47.520552296240965)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_17_LVCableDist_mvgd_33532_lvgd_1150350000_28,BranchTee_mvgd_33532_lvgd_1150350000_17,BranchTee_mvgd_33532_lvgd_1150350000_28,0.3665891496773208,0.3181993819199145,0.031210359424775208,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969314900000002 47.52061479624092, 9.968872799999996 47.52067939624101, 9.9680542 47.520779096241, 9.967799999999995 47.52090259624098, 9.967336799999998 47.521180996241, 9.966961199999995 47.521407096241, 9.966533899999991 47.52164959624107, 9.966215200000006 47.521836596241045, 9.965882699999995 47.5220072962411, 9.966026900000006 47.52221969624111, 9.966105999999995 47.52238139624115, 9.966175400000003 47.522475496241135)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_17_LVCableDist_mvgd_33532_lvgd_1150350000_building_431062,BranchTee_mvgd_33532_lvgd_1150350000_17,BranchTee_mvgd_33532_lvgd_1150350000_building_431062,0.01377484226503895,0.011956563086053808,0.0011727509624599435,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.966321040774659 47.522400584509825, 9.966175400000003 47.522475496241135)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_18_LVCableDist_mvgd_33532_lvgd_1150350000_24,BranchTee_mvgd_33532_lvgd_1150350000_18,BranchTee_mvgd_33532_lvgd_1150350000_24,0.010130915113475046,0.00879363431849634,0.0008625173502046088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970330900000002 47.520641096240986, 9.970440599999996 47.52069379624093)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_18_LVCableDist_mvgd_33532_lvgd_1150350000_building_430998,BranchTee_mvgd_33532_lvgd_1150350000_18,BranchTee_mvgd_33532_lvgd_1150350000_building_430998,0.013486782896519426,0.011706527554178862,0.001148226405650006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970374755665164 47.520806667380725, 9.970440599999996 47.52069379624093)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_19_LVCableDist_mvgd_33532_lvgd_1150350000_21,BranchTee_mvgd_33532_lvgd_1150350000_19,BranchTee_mvgd_33532_lvgd_1150350000_21,0.059247408887891526,0.051426750914689845,0.005044156184124271,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969231100000004 47.51990179624089, 9.9698889 47.520193796240925)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_19_LVCableDist_mvgd_33532_lvgd_1150350000_building_430954,BranchTee_mvgd_33532_lvgd_1150350000_19,BranchTee_mvgd_33532_lvgd_1150350000_building_430954,0.01616726169547201,0.014033183151669704,0.0013764347604783961,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969686615774135 47.52024223069566, 9.9698889 47.520193796240925)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_1_LVCableDist_mvgd_33532_lvgd_1150350000_8,BranchTee_mvgd_33532_lvgd_1150350000_1,BranchTee_mvgd_33532_lvgd_1150350000_8,0.009435373389124606,0.008189904101760159,0.0008033009024973784,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970484899999994 47.52173719624108, 9.970368399999998 47.52176829624105)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_1_LVCableDist_mvgd_33532_lvgd_1150350000_9,BranchTee_mvgd_33532_lvgd_1150350000_1,BranchTee_mvgd_33532_lvgd_1150350000_9,0.015429043288285487,0.013392409574231804,0.0013135849411573478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970368399999998 47.52176829624105, 9.970289299999996 47.521744396241054, 9.970197099999998 47.521694296241066)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_1_LVCableDist_mvgd_33532_lvgd_1150350000_building_431030,BranchTee_mvgd_33532_lvgd_1150350000_1,BranchTee_mvgd_33532_lvgd_1150350000_building_431030,0.038307795215384036,0.033251166246953345,0.003261416925446951,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97014157289771 47.5220768492788, 9.970368399999998 47.52176829624105)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_1_LVCableDist_mvgd_33532_lvgd_1150350000_building_431031,BranchTee_mvgd_33532_lvgd_1150350000_1,BranchTee_mvgd_33532_lvgd_1150350000_building_431031,0.03333411139961575,0.02893400869486647,0.0028379716060970665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970283781796239 47.522062776046035, 9.970368399999998 47.52176829624105)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_20_LVCableDist_mvgd_33532_lvgd_1150350000_building_430963,BranchTee_mvgd_33532_lvgd_1150350000_20,BranchTee_mvgd_33532_lvgd_1150350000_building_430963,0.019779500758630452,0.017168606658491233,0.0016839705388521525,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969402204927395 47.52093175774248, 9.969476899999997 47.52076109624099)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_21_LVCableDist_mvgd_33532_lvgd_1150350000_23,BranchTee_mvgd_33532_lvgd_1150350000_21,BranchTee_mvgd_33532_lvgd_1150350000_23,0.005901083731616521,0.00512214067904314,0.0005024015152154936,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969169400000004 47.519869096240896, 9.969231100000004 47.51990179624089)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_21_LVCableDist_mvgd_33532_lvgd_1150350000_building_430946,BranchTee_mvgd_33532_lvgd_1150350000_21,BranchTee_mvgd_33532_lvgd_1150350000_building_430946,0.019747905942249996,0.017141182357872996,0.0016812806458859756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96945788478577 47.519812768439344, 9.969231100000004 47.51990179624089)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_21_LVCableDist_mvgd_33532_lvgd_1150350000_building_430947,BranchTee_mvgd_33532_lvgd_1150350000_21,BranchTee_mvgd_33532_lvgd_1150350000_building_430947,0.0242957832999539,0.021088739904359985,0.0020684740122981432,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969526785026844 47.51981468590157, 9.969231100000004 47.51990179624089)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_22_LVCableDist_mvgd_33532_lvgd_1150350000_26,BranchTee_mvgd_33532_lvgd_1150350000_22,BranchTee_mvgd_33532_lvgd_1150350000_26,0.03277628292587625,0.028449813579660584,0.002790479673566853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969034600000004 47.519302696240864, 9.9690045 47.51947709624087, 9.9690068 47.519596496240865)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_22_LVCableDist_mvgd_33532_lvgd_1150350000_building_430980,BranchTee_mvgd_33532_lvgd_1150350000_22,BranchTee_mvgd_33532_lvgd_1150350000_building_430980,0.030179137366207216,0.026195491233867864,0.0025693660741406884,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969405329394204 47.51940535694565, 9.969034600000004 47.519302696240864)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_23_LVCableDist_mvgd_33532_lvgd_1150350000_25,BranchTee_mvgd_33532_lvgd_1150350000_23,BranchTee_mvgd_33532_lvgd_1150350000_25,0.09836251763112842,0.08537866530381948,0.008374305491298695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969169400000004 47.519869096240896, 9.969119099999995 47.51988159624089, 9.9690601 47.51986709624087, 9.968850800000002 47.51979289624089, 9.9685518 47.51960159624084, 9.968476199999994 47.51949629624086, 9.968432599999996 47.51941609624087, 9.968370899999993 47.51925669624083)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_23_LVCableDist_mvgd_33532_lvgd_1150350000_26,BranchTee_mvgd_33532_lvgd_1150350000_23,BranchTee_mvgd_33532_lvgd_1150350000_26,0.033215862621394136,0.02883136875537011,0.002827904240837932,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9690068 47.519596496240865, 9.969030700000001 47.51969749624093, 9.969087399999998 47.519787896240864, 9.969169400000004 47.519869096240896)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_25_LVCableDist_mvgd_33532_lvgd_1150350000_building_430948,BranchTee_mvgd_33532_lvgd_1150350000_25,BranchTee_mvgd_33532_lvgd_1150350000_building_430948,0.012351435935291116,0.01072104639183269,0.0010515661887206395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968446691386937 47.51915813102904, 9.968370899999993 47.51925669624083)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_26_LVCableDist_mvgd_33532_lvgd_1150350000_building_430988,BranchTee_mvgd_33532_lvgd_1150350000_26,BranchTee_mvgd_33532_lvgd_1150350000_building_430988,0.02335475616107311,0.02027192834781146,0.0019883576333524235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969316630120437 47.51960032958994, 9.9690068 47.519596496240865)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_27_LVCableDist_mvgd_33532_lvgd_1150350000_building_430965,BranchTee_mvgd_33532_lvgd_1150350000_27,BranchTee_mvgd_33532_lvgd_1150350000_building_430965,0.013534754457389888,0.011748166869014422,0.001152310568147048,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970000750000093 47.521028346262604, 9.970043899999999 47.520910096240975)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_28_LVCableDist_mvgd_33532_lvgd_1150350000_building_430951,BranchTee_mvgd_33532_lvgd_1150350000_28,BranchTee_mvgd_33532_lvgd_1150350000_building_430951,0.016306647492876813,0.014154170023817074,0.001388301671540936,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969299600008748 47.52046839628749, 9.969314900000002 47.52061479624092)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_28_LVCableDist_mvgd_33532_lvgd_1150350000_building_430957,BranchTee_mvgd_33532_lvgd_1150350000_28,BranchTee_mvgd_33532_lvgd_1150350000_building_430957,0.009606867583504281,0.008338761062481716,0.0008179014313198032,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969316424350993 47.5207012562331, 9.969314900000002 47.52061479624092)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_29_LVCableDist_mvgd_33532_lvgd_1150350000_33,BranchTee_mvgd_33532_lvgd_1150350000_29,BranchTee_mvgd_33532_lvgd_1150350000_33,0.06470849142014008,0.05616697055268159,0.005509097246427576,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972133999999999 47.522275896241084, 9.972184699999994 47.522384696241154, 9.972644400000007 47.52273409624117)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_29_LVCableDist_mvgd_33532_lvgd_1150350000_34,BranchTee_mvgd_33532_lvgd_1150350000_29,BranchTee_mvgd_33532_lvgd_1150350000_34,0.03288832837990767,0.028547069033759857,0.0028000189054162164,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972644400000007 47.52273409624117, 9.972872400000005 47.52298649624117)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_29_LVCableDist_mvgd_33532_lvgd_1150350000_building_431048,BranchTee_mvgd_33532_lvgd_1150350000_29,BranchTee_mvgd_33532_lvgd_1150350000_building_431048,0.028489386517710203,0.024728787497372458,0.002425505484250531,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972274499928666 47.52278699645225, 9.972644400000007 47.52273409624117)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_2_LVCableDist_mvgd_33532_lvgd_1150350000_3,BranchTee_mvgd_33532_lvgd_1150350000_2,BranchTee_mvgd_33532_lvgd_1150350000_3,0.00394936307741221,0.0034280471511937984,0.00033623755982267414,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9700453 47.52147799624105, 9.970032099999992 47.521443596241035)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_2_LVCableDist_mvgd_33532_lvgd_1150350000_4,BranchTee_mvgd_33532_lvgd_1150350000_2,BranchTee_mvgd_33532_lvgd_1150350000_4,0.01494877642969045,0.01297553794097131,0.0012726963843363052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970153799999997 47.521378296241025, 9.970153099999994 47.52141269624104, 9.970105500000006 47.521455196241014, 9.9700453 47.52147799624105)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_30_LVCableDist_mvgd_33532_lvgd_1150350000_32,BranchTee_mvgd_33532_lvgd_1150350000_30,BranchTee_mvgd_33532_lvgd_1150350000_32,0.0985284829965112,0.08552272324097171,0.008388435311317152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9715393 47.521388696240976, 9.9719248 47.52168639624103, 9.9720556 47.521826196241044, 9.972104500000007 47.52197149624108, 9.9721154 47.5221472962411)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_30_LVCableDist_mvgd_33532_lvgd_1150350000_35,BranchTee_mvgd_33532_lvgd_1150350000_30,BranchTee_mvgd_33532_lvgd_1150350000_35,0.054391933854132504,0.047212198585387014,0.004630774824869554,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972123100000001 47.52115509624101, 9.9720377 47.52113459624099, 9.971966599999993 47.521147996240984, 9.971881199999995 47.52118069624103, 9.9715393 47.521388696240976)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_30_LVStation_mvgd_33532_lvgd_1150350000,BusBar_mvgd_33532_lvgd_1150350000_LV,BranchTee_mvgd_33532_lvgd_1150350000_30,0.0323954219317345,0.028119226236745547,0.0027580542498233953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971241399999998 47.521178496241035, 9.9715393 47.521388696240976)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_31_LVCableDist_mvgd_33532_lvgd_1150350000_34,BranchTee_mvgd_33532_lvgd_1150350000_31,BranchTee_mvgd_33532_lvgd_1150350000_34,0.10288659446726675,0.08930556399758754,0.008759472548876537,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972703999999997 47.522358096241106, 9.972717800000002 47.52245279624117, 9.9727475 47.52261079624112, 9.972911900000003 47.52278619624114, 9.973076999999996 47.52299169624116, 9.9729595 47.523080096241195, 9.972872400000005 47.52298649624117)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_31_LVCableDist_mvgd_33532_lvgd_1150350000_building_431019,BranchTee_mvgd_33532_lvgd_1150350000_31,BranchTee_mvgd_33532_lvgd_1150350000_building_431019,0.0696703341729548,0.060473850062124766,0.00593153445129541,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973605310739845 47.52221863666422, 9.972703999999997 47.522358096241106)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_31_LVCableDist_mvgd_33532_lvgd_1150350000_building_431021,BranchTee_mvgd_33532_lvgd_1150350000_31,BranchTee_mvgd_33532_lvgd_1150350000_building_431021,0.09873563584145309,0.08570253191038128,0.008406071716410408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973964933813953 47.522116852602394, 9.972703999999997 47.522358096241106)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_32_LVCableDist_mvgd_33532_lvgd_1150350000_33,BranchTee_mvgd_33532_lvgd_1150350000_32,BranchTee_mvgd_33532_lvgd_1150350000_33,0.014356759944412966,0.012461667631750455,0.0012222937815665118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9721154 47.5221472962411, 9.972133999999999 47.522275896241084)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_32_LVCableDist_mvgd_33532_lvgd_1150350000_building_431046,BranchTee_mvgd_33532_lvgd_1150350000_32,BranchTee_mvgd_33532_lvgd_1150350000_building_431046,0.021485777367617236,0.01864965475509176,0.0018292380850723257,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972400366521109 47.522141445189035, 9.9721154 47.5221472962411)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_33_LVCableDist_mvgd_33532_lvgd_1150350000_building_431047,BranchTee_mvgd_33532_lvgd_1150350000_33,BranchTee_mvgd_33532_lvgd_1150350000_building_431047,0.013743799406917579,0.011929617885204458,0.0011701080616528872,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972314170254556 47.522295046094946, 9.972133999999999 47.522275896241084)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_34_LVCableDist_mvgd_33532_lvgd_1150350000_building_431050,BranchTee_mvgd_33532_lvgd_1150350000_34,BranchTee_mvgd_33532_lvgd_1150350000_building_431050,0.019049223026614864,0.0165347255871017,0.001621796766070884,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972622950001384 47.52295879631017, 9.972872400000005 47.52298649624117)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_35_LVCableDist_mvgd_33532_lvgd_1150350000_36,BranchTee_mvgd_33532_lvgd_1150350000_35,BranchTee_mvgd_33532_lvgd_1150350000_36,0.0665071733091425,0.057728226432335696,0.005662231915841586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972769799999993 47.52156239624104, 9.972123100000001 47.52115509624101)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_35_LVCableDist_mvgd_33532_lvgd_1150350000_building_431033,BranchTee_mvgd_33532_lvgd_1150350000_35,BranchTee_mvgd_33532_lvgd_1150350000_building_431033,0.025118593234169692,0.02180293892725929,0.0021385257140676983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972199907476433 47.52137509046418, 9.972123100000001 47.52115509624101)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_35_LVCableDist_mvgd_33532_lvgd_1150350000_building_431049,BranchTee_mvgd_33532_lvgd_1150350000_35,BranchTee_mvgd_33532_lvgd_1150350000_building_431049,0.01907513423046099,0.01655721651204014,0.0016240027724021627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972375965610754 47.521162567064174, 9.972123100000001 47.52115509624101)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_36_LVCableDist_mvgd_33532_lvgd_1150350000_building_431037,BranchTee_mvgd_33532_lvgd_1150350000_36,BranchTee_mvgd_33532_lvgd_1150350000_building_431037,0.021575622748978618,0.01872764054611344,0.001836887265762515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972733995263516 47.521369730383626, 9.972769799999993 47.52156239624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_36_LVCableDist_mvgd_33532_lvgd_1150350000_building_431040,BranchTee_mvgd_33532_lvgd_1150350000_36,BranchTee_mvgd_33532_lvgd_1150350000_building_431040,0.037832896948734374,0.03283895455150144,0.0032209854353022344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972677050000714 47.52189704626252, 9.972769799999993 47.52156239624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_36_LVCableDist_mvgd_33532_lvgd_1150350000_building_431051,BranchTee_mvgd_33532_lvgd_1150350000_36,BranchTee_mvgd_33532_lvgd_1150350000_building_431051,0.018417804118345867,0.01598665397472421,0.001568039552874528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973001308378954 47.521509299325004, 9.972769799999993 47.52156239624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_36_LVCableDist_mvgd_33532_lvgd_1150350000_building_431054,BranchTee_mvgd_33532_lvgd_1150350000_36,BranchTee_mvgd_33532_lvgd_1150350000_building_431054,0.028383764303890013,0.02463710741577653,0.0024165131088366098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972663589805935 47.521317297625025, 9.972769799999993 47.52156239624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_36_LVCableDist_mvgd_33532_lvgd_1150350000_building_431057,BranchTee_mvgd_33532_lvgd_1150350000_36,BranchTee_mvgd_33532_lvgd_1150350000_building_431057,0.08335712346167728,0.07235398316473589,0.0070967888333418935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973674750650392 47.52199377987923, 9.972769799999993 47.52156239624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_3_LVCableDist_mvgd_33532_lvgd_1150350000_7,BranchTee_mvgd_33532_lvgd_1150350000_3,BranchTee_mvgd_33532_lvgd_1150350000_7,0.009909833865042114,0.008601735794856555,0.0008436951203820859,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970032099999992 47.521443596241035, 9.970031800000005 47.521391796241026, 9.970060800000004 47.52135999624103)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_3_LVCableDist_mvgd_33532_lvgd_1150350000_building_431003,BranchTee_mvgd_33532_lvgd_1150350000_3,BranchTee_mvgd_33532_lvgd_1150350000_building_431003,0.021354091418433696,0.01853535135120045,0.0018180267172267998,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969748828706814 47.521439182524745, 9.970032099999992 47.521443596241035)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_4_LVCableDist_mvgd_33532_lvgd_1150350000_building_431011,BranchTee_mvgd_33532_lvgd_1150350000_4,BranchTee_mvgd_33532_lvgd_1150350000_building_431011,0.02452051825207057,0.021283809842797256,0.0020876073080791143,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970463345258592 47.52131032820493, 9.970153799999997 47.521378296241025)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_5_LVCableDist_mvgd_33532_lvgd_1150350000_7,BranchTee_mvgd_33532_lvgd_1150350000_5,BranchTee_mvgd_33532_lvgd_1150350000_7,0.0038835171406010325,0.003370892878041696,0.00033063162370496085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970060800000004 47.52135999624103, 9.970111800000002 47.52135499624101)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_5_LVCableDist_mvgd_33532_lvgd_1150350000_building_431007,BranchTee_mvgd_33532_lvgd_1150350000_5,BranchTee_mvgd_33532_lvgd_1150350000_building_431007,0.01663918187148654,0.014442809864450316,0.0014166127044414984,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970127099997228 47.52120559626276, 9.970111800000002 47.52135499624101)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_6_LVCableDist_mvgd_33532_lvgd_1150350000_8,BranchTee_mvgd_33532_lvgd_1150350000_6,BranchTee_mvgd_33532_lvgd_1150350000_8,0.010831678121074415,0.009401896609092592,0.000922178323143972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9705515 47.52165729624105, 9.970537700000003 47.52170719624103, 9.970484899999994 47.52173719624108)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_6_LVCableDist_mvgd_33532_lvgd_1150350000_building_431015,BranchTee_mvgd_33532_lvgd_1150350000_6,BranchTee_mvgd_33532_lvgd_1150350000_building_431015,0.016334301332683862,0.014178173556769593,0.0013906560409504313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970411584182235 47.521545016159685, 9.9705515 47.52165729624105)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_6_LVCableDist_mvgd_33532_lvgd_1150350000_building_431023,BranchTee_mvgd_33532_lvgd_1150350000_6,BranchTee_mvgd_33532_lvgd_1150350000_building_431023,0.012955791682285625,0.011245627180223922,0.001103019321200774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970716830739194 47.52168924923195, 9.9705515 47.52165729624105)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_7_LVCableDist_mvgd_33532_lvgd_1150350000_building_430971,BranchTee_mvgd_33532_lvgd_1150350000_7,BranchTee_mvgd_33532_lvgd_1150350000_building_430971,0.01581552731128099,0.0137278777061919,0.0013464890936131426,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969922899997226 47.52125269626275, 9.970060800000004 47.52135999624103)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_7_LVCableDist_mvgd_33532_lvgd_1150350000_building_430972,BranchTee_mvgd_33532_lvgd_1150350000_7,BranchTee_mvgd_33532_lvgd_1150350000_building_430972,0.014786363579807156,0.012834563587272611,0.0012588690154015686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970024999997237 47.521229146262776, 9.970060800000004 47.52135999624103)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_8_LVCableDist_mvgd_33532_lvgd_1150350000_building_431024,BranchTee_mvgd_33532_lvgd_1150350000_8,BranchTee_mvgd_33532_lvgd_1150350000_building_431024,0.017109094730622696,0.0148506942261805,0.0014566197511445245,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970576616851584 47.52187806015679, 9.970484899999994 47.52173719624108)" -Branch_LVCableDist_mvgd_33532_lvgd_1150350000_9_LVCableDist_mvgd_33532_lvgd_1150350000_building_431012,BranchTee_mvgd_33532_lvgd_1150350000_9,BranchTee_mvgd_33532_lvgd_1150350000_building_431012,0.02095666099192787,0.018190381740993394,0.0017841906190539359,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970032824574892 47.52184648178004, 9.970197099999998 47.521694296241066)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_1_LVCableDist_mvgd_33532_lvgd_1150360000_3,BranchTee_mvgd_33532_lvgd_1150360000_1,BranchTee_mvgd_33532_lvgd_1150360000_3,0.02304415788312054,0.02000232904254863,0.0019619141777832976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975343899999995 47.516390496240604, 9.975403400000001 47.51646459624057, 9.975431899999998 47.51658609624061)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_1_LVCableDist_mvgd_33532_lvgd_1150360000_building_430966,BranchTee_mvgd_33532_lvgd_1150360000_1,BranchTee_mvgd_33532_lvgd_1150360000_building_430966,0.006646435495504264,0.005769106010097702,0.0005658586482738587,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975261255558733 47.516411361173326, 9.975343899999995 47.516390496240604)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_2_LVCableDist_mvgd_33532_lvgd_1150360000_3,BranchTee_mvgd_33532_lvgd_1150360000_2,BranchTee_mvgd_33532_lvgd_1150360000_3,0.034791873928578125,0.030199346570005812,0.0029620813690972338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975092200000002 47.516374196240555, 9.975285700000002 47.51649979624055, 9.975431899999998 47.51658609624061)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_2_LVCableDist_mvgd_33532_lvgd_1150360000_building_430960,BranchTee_mvgd_33532_lvgd_1150360000_2,BranchTee_mvgd_33532_lvgd_1150360000_building_430960,0.011341362534831955,0.009844302680234137,0.0009655714070925306,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974959055605071 47.51642175305497, 9.975092200000002 47.516374196240555)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_2_LVCableDist_mvgd_33532_lvgd_1150360000_building_430962,BranchTee_mvgd_33532_lvgd_1150360000_2,BranchTee_mvgd_33532_lvgd_1150360000_building_430962,0.015618502165780727,0.013556859879897671,0.0013297149320969206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97506979999651 47.51651394626477, 9.975092200000002 47.516374196240555)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_3_LVCableDist_mvgd_33532_lvgd_1150360000_4,BranchTee_mvgd_33532_lvgd_1150360000_3,BranchTee_mvgd_33532_lvgd_1150360000_4,0.2611000490257909,0.2266348425543865,0.02222931688811385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9747575 47.51817289624075, 9.974806400000006 47.51819349624075, 9.974878200000004 47.51820139624076, 9.975239200000004 47.518208096240734, 9.9754535 47.51823819624073, 9.975634100000002 47.5182301962407, 9.975745300000002 47.51820559624075, 9.975813199999997 47.51816329624072, 9.9758253 47.5181302962407, 9.975797400000005 47.51806369624073, 9.97575119999999 47.51794159624074, 9.9757275 47.5177931962407, 9.975678399999998 47.51752899624073, 9.975576199999997 47.517256596240685, 9.975464400000007 47.51673679624058, 9.975431899999998 47.51658609624061)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_4_LVCableDist_mvgd_33532_lvgd_1150360000_building_430995,BranchTee_mvgd_33532_lvgd_1150360000_4,BranchTee_mvgd_33532_lvgd_1150360000_building_430995,0.007122353354781517,0.006182202711950357,0.0006063769436401756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974711564858971 47.5182289175519, 9.9747575 47.51817289624075)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_4_LVStation_mvgd_33532_lvgd_1150360000,BusBar_mvgd_33532_lvgd_1150360000_LV,BranchTee_mvgd_33532_lvgd_1150360000_4,0.028786627505476465,0.02498679267475357,0.002450811738055713,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974468499999997 47.518003496240745, 9.9747575 47.51817289624075)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_5_LVCableDist_mvgd_33532_lvgd_1150360000_6,BranchTee_mvgd_33532_lvgd_1150360000_5,BranchTee_mvgd_33532_lvgd_1150360000_6,0.034635523370864514,0.0300636342859104,0.0029487701265064445,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974190100000001 47.517856196240714, 9.973848599999997 47.517647596240664)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_5_LVCableDist_mvgd_33532_lvgd_1150360000_building_430981,BranchTee_mvgd_33532_lvgd_1150360000_5,BranchTee_mvgd_33532_lvgd_1150360000_building_430981,0.018323530942029827,0.01590482485768189,0.0015600134022927972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974139235318887 47.51769492546266, 9.974190100000001 47.517856196240714)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_5_LVCableDist_mvgd_33532_lvgd_1150360000_building_430986,BranchTee_mvgd_33532_lvgd_1150360000_5,BranchTee_mvgd_33532_lvgd_1150360000_building_430986,0.012478152380106737,0.010831036265932648,0.0010623544670731394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974037316412971 47.51789945823277, 9.974190100000001 47.517856196240714)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_5_LVCableDist_mvgd_33532_lvgd_1150360000_building_430987,BranchTee_mvgd_33532_lvgd_1150360000_5,BranchTee_mvgd_33532_lvgd_1150360000_building_430987,0.03500078647054171,0.030380682656430204,0.0029798675897989815,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974172519941026 47.518170993666466, 9.974190100000001 47.517856196240714)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_5_LVCableDist_mvgd_33532_lvgd_1150360000_building_430989,BranchTee_mvgd_33532_lvgd_1150360000_5,BranchTee_mvgd_33532_lvgd_1150360000_building_430989,0.0390850677751051,0.03392583882879122,0.0033275917044366258,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974036712012856 47.518192238436534, 9.974190100000001 47.517856196240714)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_5_LVStation_mvgd_33532_lvgd_1150360000,BusBar_mvgd_33532_lvgd_1150360000_LV,BranchTee_mvgd_33532_lvgd_1150360000_5,0.0266103294967007,0.02309776600313621,0.002265527904289489,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974190100000001 47.517856196240714, 9.974468499999997 47.518003496240745)" -Branch_LVCableDist_mvgd_33532_lvgd_1150360000_6_LVCableDist_mvgd_33532_lvgd_1150360000_building_430978,BranchTee_mvgd_33532_lvgd_1150360000_6,BranchTee_mvgd_33532_lvgd_1150360000_building_430978,0.015437571495194556,0.013399812057828874,0.0013143110084812585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974018753791352 47.517570249576, 9.973848599999997 47.517647596240664)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_10_LVCableDist_mvgd_33532_lvgd_1150770000_13,BranchTee_mvgd_33532_lvgd_1150770000_10,BranchTee_mvgd_33532_lvgd_1150770000_13,0.05921206157001511,0.05139606944277311,0.0050411468138344085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968905899999992 47.53110669624188, 9.968637300000005 47.53123459624188, 9.968234499999998 47.531381896241946)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_10_LVCableDist_mvgd_33532_lvgd_1150770000_2,BranchTee_mvgd_33532_lvgd_1150770000_2,BranchTee_mvgd_33532_lvgd_1150770000_10,0.02432016037286295,0.02110989920364504,0.002070549407076971,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967935300000006 47.53146399624196, 9.968234499999998 47.531381896241946)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_10_LVCableDist_mvgd_33532_lvgd_1150770000_building_431134,BranchTee_mvgd_33532_lvgd_1150770000_10,BranchTee_mvgd_33532_lvgd_1150770000_building_431134,0.013655709701053627,0.011853156020514549,0.0011626083541900322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968158945982315 47.531270178649336, 9.968234499999998 47.531381896241946)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_11_LVCableDist_mvgd_33532_lvgd_1150770000_13,BranchTee_mvgd_33532_lvgd_1150770000_11,BranchTee_mvgd_33532_lvgd_1150770000_13,0.03637464953229352,0.03157319579403077,0.0030968343903587875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968905899999992 47.53110669624188, 9.969250599999993 47.53087749624188)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_11_LVCableDist_mvgd_33532_lvgd_1150770000_building_431146,BranchTee_mvgd_33532_lvgd_1150770000_11,BranchTee_mvgd_33532_lvgd_1150770000_building_431146,0.015846685909109492,0.013754923369107039,0.001349141848170269,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969051363075522 47.53092315843483, 9.969250599999993 47.53087749624188)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_12_LVCableDist_mvgd_33532_lvgd_1150770000_building_431131,BranchTee_mvgd_33532_lvgd_1150770000_12,BranchTee_mvgd_33532_lvgd_1150770000_building_431131,0.015574468130590973,0.013518638337352964,0.0013259659993573533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968538974215083 47.5308364583259, 9.968745299999995 47.53082809624187)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_13_LVCableDist_mvgd_33532_lvgd_1150770000_building_431193,BranchTee_mvgd_33532_lvgd_1150770000_13,BranchTee_mvgd_33532_lvgd_1150770000_building_431193,0.012160669274400427,0.01055546093017957,0.0010353248568156898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968907483578416 47.530997250554826, 9.968905899999992 47.53110669624188)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_14_LVCableDist_mvgd_33532_lvgd_1150770000_3,BranchTee_mvgd_33532_lvgd_1150770000_3,BranchTee_mvgd_33532_lvgd_1150770000_14,0.02342770210338556,0.020335245425738665,0.0019945680437809766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967883199999996 47.53172459624193, 9.968186500000003 47.53167819624195)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_14_LVCableDist_mvgd_33532_lvgd_1150770000_9,BranchTee_mvgd_33532_lvgd_1150770000_9,BranchTee_mvgd_33532_lvgd_1150770000_14,0.02297561231946909,0.01994283149329917,0.001956078403100881,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968186500000003 47.53167819624195, 9.968471900000004 47.53160539624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_14_LVCableDist_mvgd_33532_lvgd_1150770000_building_431142,BranchTee_mvgd_33532_lvgd_1150770000_14,BranchTee_mvgd_33532_lvgd_1150770000_building_431142,0.009625254033102226,0.008354720500732733,0.000819466801437829,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96809292867123 47.5316192200072, 9.968186500000003 47.53167819624195)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_15_LVCableDist_mvgd_33532_lvgd_1150770000_24,BranchTee_mvgd_33532_lvgd_1150770000_15,BranchTee_mvgd_33532_lvgd_1150770000_24,0.02751076194588689,0.012352332113703214,0.0023335454058441094,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.969434299999996 47.53162759624197, 9.969635099999998 47.531834396242)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_15_LVCableDist_mvgd_33532_lvgd_1150770000_building_431186,BranchTee_mvgd_33532_lvgd_1150770000_15,BranchTee_mvgd_33532_lvgd_1150770000_building_431186,0.026160676923732133,0.02270746756979949,0.002227245760830042,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969350849997085 47.53196959625299, 9.969635099999998 47.531834396242)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_15_LVCableDist_mvgd_33532_lvgd_1150770000_building_431202,BranchTee_mvgd_33532_lvgd_1150770000_15,BranchTee_mvgd_33532_lvgd_1150770000_building_431202,0.018981748165650292,0.016476157407784454,0.0016160521479754093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969453705911235 47.53195294657583, 9.969635099999998 47.531834396242)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_16_LVCableDist_mvgd_33532_lvgd_1150770000_17,BranchTee_mvgd_33532_lvgd_1150770000_16,BranchTee_mvgd_33532_lvgd_1150770000_17,0.09877917675741031,0.04435185036407723,0.008378746272775654,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968238899999998 47.53308599624204, 9.968298499999996 47.53307959624209, 9.968337800000004 47.533068996242065, 9.968424100000002 47.53297959624204, 9.968496900000007 47.532846596242095, 9.968643499999999 47.532634696242035, 9.9688682 47.532334496242015)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_16_LVCableDist_mvgd_33532_lvgd_1150770000_19,BranchTee_mvgd_33532_lvgd_1150770000_16,BranchTee_mvgd_33532_lvgd_1150770000_19,0.16244201178425208,0.07293646329112918,0.01377881903310533,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.970588499999996 47.53310669624204, 9.970378999999998 47.53298729624212, 9.9702916 47.53288609624206, 9.970251300000005 47.532760596242085, 9.969511300000004 47.532550796242006, 9.9688682 47.532334496242015)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_16_LVCableDist_mvgd_33532_lvgd_1150770000_20,BranchTee_mvgd_33532_lvgd_1150770000_16,BranchTee_mvgd_33532_lvgd_1150770000_20,0.041889697146871824,0.018808474018945448,0.003553209850078274,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.9688682 47.532334496242015, 9.968724099999996 47.53228599624201, 9.968393600000004 47.53213919624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_16_LVCableDist_mvgd_33532_lvgd_1150770000_building_431234,BranchTee_mvgd_33532_lvgd_1150770000_16,BranchTee_mvgd_33532_lvgd_1150770000_building_431234,0.01076012430090945,0.009339787893189401,0.0009160864340426988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968755582010095 47.53239404480004, 9.9688682 47.532334496242015)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_16_LVCableDist_mvgd_33532_lvgd_1150770000_building_431240,BranchTee_mvgd_33532_lvgd_1150770000_16,BranchTee_mvgd_33532_lvgd_1150770000_building_431240,0.01293928344681025,0.011231298031831297,0.0011016138569007292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968866100002545 47.5324509462524, 9.9688682 47.532334496242015)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_17_LVCableDist_mvgd_33532_lvgd_1150770000_building_431233,BranchTee_mvgd_33532_lvgd_1150770000_17,BranchTee_mvgd_33532_lvgd_1150770000_building_431233,0.006482522883631087,0.005626829862991783,0.0005519035938612593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968213396942975 47.53314171904983, 9.968238899999998 47.53308599624204)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_18_LVCableDist_mvgd_33532_lvgd_1150770000_20,BranchTee_mvgd_33532_lvgd_1150770000_18,BranchTee_mvgd_33532_lvgd_1150770000_20,0.04420458475914859,0.019847858556857716,0.0037495655658268713,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968393600000004 47.53213919624199, 9.968977599999995 47.53210129624201)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_18_LVCableDist_mvgd_33532_lvgd_1150770000_building_431184,BranchTee_mvgd_33532_lvgd_1150770000_18,BranchTee_mvgd_33532_lvgd_1150770000_building_431184,0.016460235135586164,0.01428748409768879,0.0014013776873924202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969139649997787 47.53200194625391, 9.968977599999995 47.53210129624201)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_18_LVCableDist_mvgd_33532_lvgd_1150770000_building_431187,BranchTee_mvgd_33532_lvgd_1150770000_18,BranchTee_mvgd_33532_lvgd_1150770000_building_431187,0.010666980206876016,0.009258938819568381,0.0009081564103209454,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968900322889276 47.5320208537421, 9.968977599999995 47.53210129624201)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_18_LVCableDist_mvgd_33532_lvgd_1150770000_building_431191,BranchTee_mvgd_33532_lvgd_1150770000_18,BranchTee_mvgd_33532_lvgd_1150770000_building_431191,0.010415829221328339,0.009040939764112998,0.0008867741284510944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969029072314262 47.5320142912307, 9.968977599999995 47.53210129624201)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_18_LVCableDist_mvgd_33532_lvgd_1150770000_building_431194,BranchTee_mvgd_33532_lvgd_1150770000_18,BranchTee_mvgd_33532_lvgd_1150770000_building_431194,0.02928653821745895,0.02542071517275437,0.0024933727167835403,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969322949977327 47.532222246254, 9.968977599999995 47.53210129624201)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_19_LVCableDist_mvgd_33532_lvgd_1150770000_building_431248,BranchTee_mvgd_33532_lvgd_1150770000_19,BranchTee_mvgd_33532_lvgd_1150770000_building_431248,0.012890964082022248,0.011189356823195312,0.001097500083365594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97043146509101 47.53315274513487, 9.970588499999996 47.53310669624204)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_1_LVCableDist_mvgd_33532_lvgd_1150770000_12,BranchTee_mvgd_33532_lvgd_1150770000_1,BranchTee_mvgd_33532_lvgd_1150770000_12,0.053614528095404596,0.04653741038681119,0.0045645887056946005,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968745299999995 47.53082809624187, 9.968491100000003 47.53097709624193, 9.968172099999999 47.53111149624189)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_1_LVCableDist_mvgd_33532_lvgd_1150770000_4,BranchTee_mvgd_33532_lvgd_1150770000_1,BranchTee_mvgd_33532_lvgd_1150770000_4,0.029551945541516664,0.025651088730036464,0.0025159687428391404,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967819599999995 47.531228096241946, 9.968172099999999 47.53111149624189)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_1_LVCableDist_mvgd_33532_lvgd_1150770000_building_431165,BranchTee_mvgd_33532_lvgd_1150770000_1,BranchTee_mvgd_33532_lvgd_1150770000_building_431165,0.014719728183595614,0.012776724063360993,0.0012531958669518529,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967981216800093 47.53108332103482, 9.968172099999999 47.53111149624189)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_20_LVCableDist_mvgd_33532_lvgd_1150770000_27,BranchTee_mvgd_33532_lvgd_1150770000_20,BranchTee_mvgd_33532_lvgd_1150770000_27,0.017378615853155737,0.007802998518066926,0.001474106361133496,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968393600000004 47.53213919624199, 9.968197099999998 47.53205729624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_20_LVCableDist_mvgd_33532_lvgd_1150770000_building_431172,BranchTee_mvgd_33532_lvgd_1150770000_20,BranchTee_mvgd_33532_lvgd_1150770000_building_431172,0.021118169965951023,0.018330571530445487,0.0017979410345641228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968215378913023 47.532285889695416, 9.968393600000004 47.53213919624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_20_LVCableDist_mvgd_33532_lvgd_1150770000_building_431176,BranchTee_mvgd_33532_lvgd_1150770000_20,BranchTee_mvgd_33532_lvgd_1150770000_building_431176,0.011238142878642351,0.009754708018661561,0.0009567835786142057,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96849184999855 47.532063096250354, 9.968393600000004 47.53213919624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_20_LVCableDist_mvgd_33532_lvgd_1150770000_building_431180,BranchTee_mvgd_33532_lvgd_1150770000_20,BranchTee_mvgd_33532_lvgd_1150770000_building_431180,0.018206678386134486,0.015803396839164735,0.0015500649074385241,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968600449998549 47.53205449625037, 9.968393600000004 47.53213919624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_21_LVCableDist_mvgd_33532_lvgd_1150770000_24,BranchTee_mvgd_33532_lvgd_1150770000_21,BranchTee_mvgd_33532_lvgd_1150770000_24,0.013955323768271624,0.006265940371953959,0.0011837324509794676,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.969434299999996 47.53162759624197, 9.969276 47.53169279624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_21_LVCableDist_mvgd_33532_lvgd_1150770000_26,BranchTee_mvgd_33532_lvgd_1150770000_21,BranchTee_mvgd_33532_lvgd_1150770000_26,0.019355269652191424,0.00869051607383395,0.0016417720695844995,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.969276 47.53169279624196, 9.969042699999994 47.53176569624193)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_21_LVCableDist_mvgd_33532_lvgd_1150770000_building_431215,BranchTee_mvgd_33532_lvgd_1150770000_21,BranchTee_mvgd_33532_lvgd_1150770000_building_431215,0.012514441729765055,0.010862535421436068,0.0010654440392744017,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969121452014623 47.53165154606759, 9.969276 47.53169279624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_22_LVCableDist_mvgd_33532_lvgd_1150770000_23,BranchTee_mvgd_33532_lvgd_1150770000_22,BranchTee_mvgd_33532_lvgd_1150770000_23,0.029022176395134353,0.013030957201415325,0.0024617481161618125,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968700699999996 47.53185809624194, 9.968332600000002 47.53193499624201)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_22_LVCableDist_mvgd_33532_lvgd_1150770000_26,BranchTee_mvgd_33532_lvgd_1150770000_22,BranchTee_mvgd_33532_lvgd_1150770000_26,0.027739142497659755,0.01245487498144923,0.002352917329763265,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.969042699999994 47.53176569624193, 9.968700699999996 47.53185809624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_22_LVCableDist_mvgd_33532_lvgd_1150770000_building_431178,BranchTee_mvgd_33532_lvgd_1150770000_22,BranchTee_mvgd_33532_lvgd_1150770000_building_431178,0.013599761129177735,0.011804592660126274,0.001157845051623422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968566099997688 47.5317765462501, 9.968700699999996 47.53185809624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_22_LVCableDist_mvgd_33532_lvgd_1150770000_building_431179,BranchTee_mvgd_33532_lvgd_1150770000_22,BranchTee_mvgd_33532_lvgd_1150770000_building_431179,0.010893543693618467,0.00945559592606083,0.0009274453823485856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968672397998054 47.53176194674095, 9.968700699999996 47.53185809624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_22_LVCableDist_mvgd_33532_lvgd_1150770000_building_431181,BranchTee_mvgd_33532_lvgd_1150770000_22,BranchTee_mvgd_33532_lvgd_1150770000_building_431181,0.01535155059178384,0.013325145913668372,0.0013069874329857602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968901899999356 47.53187984624432, 9.968700699999996 47.53185809624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_22_LVCableDist_mvgd_33532_lvgd_1150770000_building_431183,BranchTee_mvgd_33532_lvgd_1150770000_22,BranchTee_mvgd_33532_lvgd_1150770000_building_431183,0.0208752095220121,0.018119681865106502,0.0017772560721531748,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968709049998553 47.53204589625037, 9.968700699999996 47.53185809624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_23_LVCableDist_mvgd_33532_lvgd_1150770000_25,BranchTee_mvgd_33532_lvgd_1150770000_23,BranchTee_mvgd_33532_lvgd_1150770000_25,0.01631004763161939,0.007323211386597106,0.0013834671971182674,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968332600000002 47.53193499624201, 9.968120000000003 47.53196259624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_23_LVCableDist_mvgd_33532_lvgd_1150770000_building_431170,BranchTee_mvgd_33532_lvgd_1150770000_23,BranchTee_mvgd_33532_lvgd_1150770000_building_431170,0.012558567933820016,0.010900836966555773,0.0010692008190094772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96824667435089 47.531838141874175, 9.968332600000002 47.53193499624201)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_23_LVCableDist_mvgd_33532_lvgd_1150770000_building_431174,BranchTee_mvgd_33532_lvgd_1150770000_23,BranchTee_mvgd_33532_lvgd_1150770000_building_431174,0.01863279612633484,0.016173267037658638,0.00158634336205354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96845976519999 47.53179116786465, 9.968332600000002 47.53193499624201)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_24_LVCableDist_mvgd_33532_lvgd_1150770000_building_431223,BranchTee_mvgd_33532_lvgd_1150770000_24,BranchTee_mvgd_33532_lvgd_1150770000_building_431223,0.012325028994929033,0.010698125167598401,0.0010493179767898317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969309799998548 47.531555646262355, 9.969434299999996 47.53162759624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_25_LVCableDist_mvgd_33532_lvgd_1150770000_27,BranchTee_mvgd_33532_lvgd_1150770000_25,BranchTee_mvgd_33532_lvgd_1150770000_27,0.012516639486240592,0.005619971129322026,0.001061698931755345,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968197099999998 47.53205729624198, 9.968137399999993 47.532016496242, 9.968120000000003 47.53196259624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_25_LVCableDist_mvgd_33532_lvgd_1150770000_building_431154,BranchTee_mvgd_33532_lvgd_1150770000_25,BranchTee_mvgd_33532_lvgd_1150770000_building_431154,0.014950345067418281,0.012976899518519068,0.0012728299336989526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968026974350897 47.53184374187415, 9.968120000000003 47.53196259624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_25_LVCableDist_mvgd_33532_lvgd_1150770000_building_431167,BranchTee_mvgd_33532_lvgd_1150770000_25,BranchTee_mvgd_33532_lvgd_1150770000_building_431167,0.027230534588265527,0.023636104022614478,0.002318330404968661,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967873424415645 47.53214177183548, 9.968120000000003 47.53196259624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_25_LVCableDist_mvgd_33532_lvgd_1150770000_building_431169,BranchTee_mvgd_33532_lvgd_1150770000_25,BranchTee_mvgd_33532_lvgd_1150770000_building_431169,0.013574921242590753,0.011783031638568774,0.0011557302542020231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968136825648129 47.53184095062582, 9.968120000000003 47.53196259624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_25_LVStation_mvgd_33532_lvgd_1150770000,BusBar_mvgd_33532_lvgd_1150770000_LV,BranchTee_mvgd_33532_lvgd_1150770000_25,0.017526797099479886,0.00786953189766647,0.0014866755392344926,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968120000000003 47.53196259624197, 9.967887399999995 47.531961196242015)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_26_LVCableDist_mvgd_33532_lvgd_1150770000_building_431175,BranchTee_mvgd_33532_lvgd_1150770000_26,BranchTee_mvgd_33532_lvgd_1150770000_building_431175,0.011780820807990354,0.010225752461335627,0.0010029856368086515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968917047895763 47.53170259654079, 9.969042699999994 47.53176569624193)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_26_LVCableDist_mvgd_33532_lvgd_1150770000_building_431177,BranchTee_mvgd_33532_lvgd_1150770000_26,BranchTee_mvgd_33532_lvgd_1150770000_building_431177,0.01000130007809259,0.008681128467784368,0.0008514822940806015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96901924999665 47.531677096251705, 9.969042699999994 47.53176569624193)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_27_LVCableDist_mvgd_33532_lvgd_1150770000_building_431164,BranchTee_mvgd_33532_lvgd_1150770000_27,BranchTee_mvgd_33532_lvgd_1150770000_building_431164,0.016179818656910133,0.014044082594197996,0.0013775038245249231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968147924885812 47.532199050723705, 9.968197099999998 47.53205729624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_28_LVCableDist_mvgd_33532_lvgd_1150770000_29,BranchTee_mvgd_33532_lvgd_1150770000_28,BranchTee_mvgd_33532_lvgd_1150770000_29,0.012420621387788851,0.010781099364600723,0.0010574564417227283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967681199999998 47.53192879624198, 9.967525700000003 47.53189169624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_28_LVCableDist_mvgd_33532_lvgd_1150770000_building_431153,BranchTee_mvgd_33532_lvgd_1150770000_28,BranchTee_mvgd_33532_lvgd_1150770000_building_431153,0.008382719280565025,0.007276200335530441,0.000713680920271965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967770693323272 47.53188397622914, 9.967681199999998 47.53192879624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_28_LVCableDist_mvgd_33532_lvgd_1150770000_building_431161,BranchTee_mvgd_33532_lvgd_1150770000_28,BranchTee_mvgd_33532_lvgd_1150770000_building_431161,0.018877708282887203,0.016385850789546092,0.001607194487735313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967536637354085 47.53206756446651, 9.967681199999998 47.53192879624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_28_LVCableDist_mvgd_33532_lvgd_1150770000_building_431162,BranchTee_mvgd_33532_lvgd_1150770000_28,BranchTee_mvgd_33532_lvgd_1150770000_building_431162,0.021111688850217337,0.018324945921988647,0.0017973892507710128,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967673950001748 47.53211874625073, 9.967681199999998 47.53192879624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_28_LVStation_mvgd_33532_lvgd_1150770000,BusBar_mvgd_33532_lvgd_1150770000_LV,BranchTee_mvgd_33532_lvgd_1150770000_28,0.015948445617667607,0.013843250796135482,0.001357805380852168,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967887399999995 47.531961196242015, 9.967681199999998 47.53192879624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_29_LVCableDist_mvgd_33532_lvgd_1150770000_33,BranchTee_mvgd_33532_lvgd_1150770000_29,BranchTee_mvgd_33532_lvgd_1150770000_33,0.01421904146547663,0.012342127992033713,0.0012105688212647138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967525700000003 47.53189169624198, 9.967353999999993 47.53183859624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_29_LVCableDist_mvgd_33532_lvgd_1150770000_building_431159,BranchTee_mvgd_33532_lvgd_1150770000_29,BranchTee_mvgd_33532_lvgd_1150770000_building_431159,0.03069793465036281,0.02664580727651492,0.002613535002002699,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967415937475932 47.532157772926034, 9.967525700000003 47.53189169624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_2_LVCableDist_mvgd_33532_lvgd_1150770000_4,BranchTee_mvgd_33532_lvgd_1150770000_2,BranchTee_mvgd_33532_lvgd_1150770000_4,0.027621680691729343,0.02397561884042107,0.002351631473719473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967935300000006 47.53146399624196, 9.967819599999995 47.531228096241946)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_2_LVCableDist_mvgd_33532_lvgd_1150770000_5,BranchTee_mvgd_33532_lvgd_1150770000_2,BranchTee_mvgd_33532_lvgd_1150770000_5,0.008679621351809578,0.007533911333370714,0.0007389583196867028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967935300000006 47.53146399624196, 9.967868000000005 47.53152739624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_2_LVCableDist_mvgd_33532_lvgd_1150770000_building_431126,BranchTee_mvgd_33532_lvgd_1150770000_2,BranchTee_mvgd_33532_lvgd_1150770000_building_431126,0.013709789599607418,0.011900097372459239,0.001167212563215326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96803422088661 47.53136043313832, 9.967935300000006 47.53146399624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_30_LVCableDist_mvgd_33532_lvgd_1150770000_31,BranchTee_mvgd_33532_lvgd_1150770000_30,BranchTee_mvgd_33532_lvgd_1150770000_31,0.04276076624038053,0.037116345096650294,0.003640530236139813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967177699999999 47.531757196242, 9.966754999999997 47.531500396241945)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_30_LVCableDist_mvgd_33532_lvgd_1150770000_32,BranchTee_mvgd_33532_lvgd_1150770000_30,BranchTee_mvgd_33532_lvgd_1150770000_32,0.05129023195093531,0.04451992133341185,0.004366704730835119,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.966637100000003 47.5311734962419, 9.966457400000003 47.531323396241916, 9.966754999999997 47.531500396241945)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_30_LVCableDist_mvgd_33532_lvgd_1150770000_building_431152,BranchTee_mvgd_33532_lvgd_1150770000_30,BranchTee_mvgd_33532_lvgd_1150770000_building_431152,0.015440128891632333,0.013402031877936866,0.001314528737953298,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96691045485106 47.53140985830986, 9.966754999999997 47.531500396241945)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_31_LVCableDist_mvgd_33532_lvgd_1150770000_33,BranchTee_mvgd_33532_lvgd_1150770000_31,BranchTee_mvgd_33532_lvgd_1150770000_33,0.016070366091317043,0.013949077767263193,0.001368185343835762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967353999999993 47.53183859624194, 9.967177699999999 47.531757196242)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_31_LVCableDist_mvgd_33532_lvgd_1150770000_building_431160,BranchTee_mvgd_33532_lvgd_1150770000_31,BranchTee_mvgd_33532_lvgd_1150770000_building_431160,0.011713359698696366,0.010167196218468446,0.0009972421894913679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967077739269005 47.531837934913355, 9.967177699999999 47.531757196242)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_32_LVCableDist_mvgd_33532_lvgd_1150770000_building_431141,BranchTee_mvgd_33532_lvgd_1150770000_32,BranchTee_mvgd_33532_lvgd_1150770000_building_431141,0.02394117767916575,0.02078094222551587,0.0020382838965007023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.966952625727654 47.53114814128196, 9.966637100000003 47.5311734962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_33_LVCableDist_mvgd_33532_lvgd_1150770000_building_431123,BranchTee_mvgd_33532_lvgd_1150770000_33,BranchTee_mvgd_33532_lvgd_1150770000_building_431123,0.025417751316603072,0.02206260814281147,0.002163995183870039,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967097966867874 47.5319875470213, 9.967353999999993 47.53183859624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_33_LVCableDist_mvgd_33532_lvgd_1150770000_building_431151,BranchTee_mvgd_33532_lvgd_1150770000_33,BranchTee_mvgd_33532_lvgd_1150770000_building_431151,0.01711132208298485,0.01485262756803085,0.0014568093816009896,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967473395001045 47.53170759145601, 9.967353999999993 47.53183859624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_3_LVCableDist_mvgd_33532_lvgd_1150770000_5,BranchTee_mvgd_33532_lvgd_1150770000_3,BranchTee_mvgd_33532_lvgd_1150770000_5,0.021940026514003893,0.01904394301415538,0.0018679115677425137,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967883199999996 47.53172459624193, 9.967868000000005 47.53152739624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_3_LVStation_mvgd_33532_lvgd_1150770000,BusBar_mvgd_33532_lvgd_1150770000_LV,BranchTee_mvgd_33532_lvgd_1150770000_3,0.026289612063413632,0.022819383271043034,0.002238222932564353,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967887399999995 47.531961196242015, 9.967883199999996 47.53172459624193)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_4_LVCableDist_mvgd_33532_lvgd_1150770000_6,BranchTee_mvgd_33532_lvgd_1150770000_4,BranchTee_mvgd_33532_lvgd_1150770000_6,0.02597562604592685,0.022546843407864506,0.002211491054469374,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967819599999995 47.531228096241946, 9.9674814 47.53127339624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_4_LVCableDist_mvgd_33532_lvgd_1150770000_building_431163,BranchTee_mvgd_33532_lvgd_1150770000_4,BranchTee_mvgd_33532_lvgd_1150770000_building_431163,0.015728628444439133,0.013652449489773167,0.0013390907708037323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967641995683623 47.53115371209079, 9.967819599999995 47.531228096241946)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_5_LVCableDist_mvgd_33532_lvgd_1150770000_building_431128,BranchTee_mvgd_33532_lvgd_1150770000_5,BranchTee_mvgd_33532_lvgd_1150770000_building_431128,0.01608765519923518,0.013964084712936135,0.0013696572893986182,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96769799999833 47.53161499626599, 9.967868000000005 47.53152739624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_5_LVCableDist_mvgd_33532_lvgd_1150770000_building_431171,BranchTee_mvgd_33532_lvgd_1150770000_5,BranchTee_mvgd_33532_lvgd_1150770000_building_431171,0.015653036423654513,0.013586835615732117,0.0013326550807665075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967660299998638 47.531524646244996, 9.967868000000005 47.53152739624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_6_LVCableDist_mvgd_33532_lvgd_1150770000_building_431145,BranchTee_mvgd_33532_lvgd_1150770000_6,BranchTee_mvgd_33532_lvgd_1150770000_building_431145,0.015525432679609784,0.013476075565901292,0.0013217912602767614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967297824584548 47.53120994028909, 9.9674814 47.53127339624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_6_LVCableDist_mvgd_33532_lvgd_1150770000_building_431157,BranchTee_mvgd_33532_lvgd_1150770000_6,BranchTee_mvgd_33532_lvgd_1150770000_building_431157,0.025895368516471905,0.022477179872297613,0.0022046581562697462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967228992226103 47.53143156944587, 9.9674814 47.53127339624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_6_LVCableDist_mvgd_33532_lvgd_1150770000_building_431166,BranchTee_mvgd_33532_lvgd_1150770000_6,BranchTee_mvgd_33532_lvgd_1150770000_building_431166,0.019420667186635106,0.01685713911799927,0.0016534204672924552,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967587068484555 47.53143282573698, 9.9674814 47.53127339624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_7_LVCableDist_mvgd_33532_lvgd_1150770000_8,BranchTee_mvgd_33532_lvgd_1150770000_7,BranchTee_mvgd_33532_lvgd_1150770000_8,0.05548105042885107,0.04815755177224273,0.004723499117943604,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969136200000003 47.53134629624191, 9.969577800000001 47.53110539624189, 9.9694669 47.53101839624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_7_LVCableDist_mvgd_33532_lvgd_1150770000_9,BranchTee_mvgd_33532_lvgd_1150770000_7,BranchTee_mvgd_33532_lvgd_1150770000_9,0.05776450619062042,0.050139591373458525,0.0049179060585694415,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969136200000003 47.53134629624191, 9.968800400000001 47.53148549624198, 9.968471900000004 47.53160539624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_7_LVCableDist_mvgd_33532_lvgd_1150770000_building_431198,BranchTee_mvgd_33532_lvgd_1150770000_7,BranchTee_mvgd_33532_lvgd_1150770000_building_431198,0.008270456515995525,0.007178756255884116,0.0007041231872203538,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969042056029325 47.53130802554309, 9.969136200000003 47.53134629624191)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_8_LVCableDist_mvgd_33532_lvgd_1150770000_building_431203,BranchTee_mvgd_33532_lvgd_1150770000_8,BranchTee_mvgd_33532_lvgd_1150770000_building_431203,0.008997628154785626,0.007809941238353923,0.0007660325160428755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969350150001029 47.531035396250786, 9.9694669 47.53101839624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1150770000_9_LVCableDist_mvgd_33532_lvgd_1150770000_building_431149,BranchTee_mvgd_33532_lvgd_1150770000_9,BranchTee_mvgd_33532_lvgd_1150770000_building_431149,0.01014233721378531,0.008803548701565649,0.0008634897953966801,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96837026859676 47.5315455414615, 9.968471900000004 47.53160539624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_1_LVCableDist_mvgd_33532_lvgd_1151720000_2,BranchTee_mvgd_33532_lvgd_1151720000_1,BranchTee_mvgd_33532_lvgd_1151720000_2,0.02002545888803621,0.01738209831481543,0.0017049107156930548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970052499999998 47.55510579624407, 9.9698997 47.555253296244025)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_1_LVCableDist_mvgd_33532_lvgd_1151720000_building_440570,BranchTee_mvgd_33532_lvgd_1151720000_1,BranchTee_mvgd_33532_lvgd_1151720000_building_440570,0.03239536135873843,0.02811917365938496,0.002758049092810482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969526569181335 47.5551082459133, 9.9698997 47.555253296244025)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_1_LVCableDist_mvgd_33532_lvgd_1151720000_building_440571,BranchTee_mvgd_33532_lvgd_1151720000_1,BranchTee_mvgd_33532_lvgd_1151720000_building_440571,0.0164862665511273,0.014310079366378495,0.0014035939282061205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969892519824297 47.555401597659134, 9.9698997 47.555253296244025)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_2_LVCableDist_mvgd_33532_lvgd_1151720000_building_440566,BranchTee_mvgd_33532_lvgd_1151720000_2,BranchTee_mvgd_33532_lvgd_1151720000_building_440566,0.01399201352934036,0.012145067743467432,0.0011912403073342968,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970171005991746 47.55520278184518, 9.970052499999998 47.55510579624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_2_LVStation_mvgd_33532_lvgd_1151720000,BusBar_mvgd_33532_lvgd_1151720000_LV,BranchTee_mvgd_33532_lvgd_1151720000_2,0.03627564479143884,0.03148725967896891,0.003088405407805564,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970474700000002 47.555076396244026, 9.970430500000003 47.55505709624407, 9.970344899999999 47.55502799624403, 9.970263099999999 47.55502159624406, 9.970170599999996 47.555036996244034, 9.970052499999998 47.55510579624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_3_LVCableDist_mvgd_33532_lvgd_1151720000_4,BranchTee_mvgd_33532_lvgd_1151720000_3,BranchTee_mvgd_33532_lvgd_1151720000_4,0.03556196937952815,0.030867789421430435,0.0030276451094225832,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974103899999998 47.5553170962441, 9.974252199999999 47.555334896244034, 9.974391799999994 47.55537509624406, 9.974526599999994 47.55544519624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_3_LVCableDist_mvgd_33532_lvgd_1151720000_building_440578,BranchTee_mvgd_33532_lvgd_1151720000_3,BranchTee_mvgd_33532_lvgd_1151720000_building_440578,0.04481937686016151,0.03890321911462019,0.0038157944997318422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973994800000924 47.5557136462611, 9.974103899999998 47.5553170962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_3_LVStation_mvgd_33532_lvgd_1151720000,BusBar_mvgd_33532_lvgd_1151720000_LV,BranchTee_mvgd_33532_lvgd_1151720000_3,0.4337792154589265,0.3765203590183482,0.03693073086693068,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974103899999998 47.5553170962441, 9.973592500000006 47.555283196244055, 9.972621399999998 47.55521579624406, 9.9724603 47.55520339624407, 9.972379400000001 47.55520269624402, 9.972271400000004 47.55520819624405, 9.972144300000002 47.55523369624405, 9.971922000000001 47.55531839624405, 9.971794299999994 47.555408196244066, 9.971687100000002 47.555522696244054, 9.971555 47.55572689624413, 9.971415299999999 47.55603099624414, 9.971329899999997 47.55617349624412, 9.971286800000005 47.55624529624414, 9.971177499999998 47.55620019624414, 9.971088100000003 47.556136696244174, 9.970606999999998 47.555633296244075, 9.970498500000001 47.55550529624412, 9.970433599999991 47.55537089624405, 9.970427899999997 47.555310496244076, 9.970446799999998 47.555215296244064, 9.970474700000002 47.555076396244026)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_4_LVCableDist_mvgd_33532_lvgd_1151720000_5,BranchTee_mvgd_33532_lvgd_1151720000_4,BranchTee_mvgd_33532_lvgd_1151720000_5,0.032604905395012276,0.028301057882870656,0.0027758890771449373,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974526599999994 47.55544519624409, 9.974653199999997 47.55554199624412, 9.974790600000002 47.555677096244096)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_4_LVCableDist_mvgd_33532_lvgd_1151720000_building_440576,BranchTee_mvgd_33532_lvgd_1151720000_4,BranchTee_mvgd_33532_lvgd_1151720000_building_440576,0.027192506982712677,0.023603096060994602,0.002315092842595599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974279633006514 47.55562372433434, 9.974526599999994 47.55544519624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_5_LVCableDist_mvgd_33532_lvgd_1151720000_building_440586,BranchTee_mvgd_33532_lvgd_1151720000_5,BranchTee_mvgd_33532_lvgd_1151720000_building_440586,0.027478551840069504,0.02385138299718033,0.0023394458896445185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974468449997959 47.555793196256914, 9.974790600000002 47.555677096244096)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_6_LVCableDist_mvgd_33532_lvgd_1151720000_7,BranchTee_mvgd_33532_lvgd_1151720000_6,BranchTee_mvgd_33532_lvgd_1151720000_7,0.2681096015179315,0.23271913411756454,0.022826090286560317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972842000000002 47.55327479624389, 9.972994800000002 47.553138696243856, 9.973246600000001 47.553039496243834, 9.973971200000001 47.552907796243844, 9.9742041 47.55285639624382, 9.974298500000003 47.55281099624387, 9.974372300000002 47.55272759624384, 9.974473499999995 47.55262459624379, 9.974619900000002 47.552508596243825, 9.974864700000001 47.55230379624387, 9.975078199999999 47.552172996243776, 9.975343 47.552066296243765, 9.975465199999995 47.55206739624377, 9.975711999999994 47.552076396243756)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_6_LVCableDist_mvgd_33532_lvgd_1151720000_building_440559,BranchTee_mvgd_33532_lvgd_1151720000_6,BranchTee_mvgd_33532_lvgd_1151720000_building_440559,0.016306650766340282,0.014154172865183364,0.001388301950234322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97276086242304 47.5531387267972, 9.972842000000002 47.55327479624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_6_LVStation_mvgd_33532_lvgd_1151720000,BusBar_mvgd_33532_lvgd_1151720000_LV,BranchTee_mvgd_33532_lvgd_1151720000_6,0.2856159720693116,0.24791466375616247,0.024316532973183223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970474700000002 47.555076396244026, 9.970513000000004 47.55499769624407, 9.970535999999997 47.55492109624405, 9.970542700000001 47.55484019624401, 9.970542699999998 47.55476189624401, 9.970559599999996 47.55468509624403, 9.9705957 47.554646896243966, 9.970674799999996 47.55461249624398, 9.970843399999996 47.554574896243956, 9.971015500000002 47.554552796244, 9.971189500000003 47.55450929624399, 9.971382899999993 47.554444196244, 9.971626500000001 47.55432909624395, 9.971787899999999 47.554246896243974, 9.971917499999998 47.55415239624395, 9.972058799999997 47.55395179624394, 9.972148099999998 47.553841596243906, 9.972642099999996 47.55341669624393, 9.972842000000002 47.55327479624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1151720000_7_LVCableDist_mvgd_33532_lvgd_1151720000_building_441464,BranchTee_mvgd_33532_lvgd_1151720000_7,BranchTee_mvgd_33532_lvgd_1151720000_building_441464,0.016054232731407683,0.013935074010861869,0.001366811795377103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975760199933712 47.55193564632855, 9.975711999999994 47.552076396243756)" -Branch_LVCableDist_mvgd_33532_lvgd_1151730000_1_LVCableDist_mvgd_33532_lvgd_1151730000_2,BranchTee_mvgd_33532_lvgd_1151730000_1,BranchTee_mvgd_33532_lvgd_1151730000_2,0.014332756045344987,0.012440832247359448,0.0012202501577490389,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9712328 47.560503096244496, 9.9714135 47.56046259624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1151730000_1_LVCableDist_mvgd_33532_lvgd_1151730000_building_440617,BranchTee_mvgd_33532_lvgd_1151730000_1,BranchTee_mvgd_33532_lvgd_1151730000_building_440617,0.01789296346339321,0.015531092286225307,0.0015233561095805155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971287992681908 47.560659733137925, 9.9712328 47.560503096244496)" -Branch_LVCableDist_mvgd_33532_lvgd_1151730000_2_LVCableDist_mvgd_33532_lvgd_1151730000_building_440633,BranchTee_mvgd_33532_lvgd_1151730000_2,BranchTee_mvgd_33532_lvgd_1151730000_building_440633,0.029788998284438862,0.025856850510892933,0.002536150740358006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971480799988445 47.56019839642991, 9.9714135 47.56046259624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1151730000_2_LVStation_mvgd_33532_lvgd_1151730000,BusBar_mvgd_33532_lvgd_1151730000_LV,BranchTee_mvgd_33532_lvgd_1151730000_2,0.028050254101013198,0.024347620559679456,0.002388118997028398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971264899999996 47.56023109624446, 9.9714135 47.56046259624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1151750000_1_LVCableDist_mvgd_33532_lvgd_1151750000_2,BranchTee_mvgd_33532_lvgd_1151750000_1,BranchTee_mvgd_33532_lvgd_1151750000_2,0.03353709871060074,0.029110201680801442,0.0028552533694555476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973897899999997 47.5577924962443, 9.9737012 47.5580632962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1151750000_1_LVCableDist_mvgd_33532_lvgd_1151750000_building_440588,BranchTee_mvgd_33532_lvgd_1151750000_1,BranchTee_mvgd_33532_lvgd_1151750000_building_440588,0.02089653783858623,0.018138194843892848,0.001779071904473335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973622192247024 47.55781365571831, 9.973897899999997 47.5577924962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1151750000_2_LVCableDist_mvgd_33532_lvgd_1151750000_building_440589,BranchTee_mvgd_33532_lvgd_1151750000_2,BranchTee_mvgd_33532_lvgd_1151750000_building_440589,0.02049733877313285,0.017791690055079315,0.0017450852294017972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973924862097702 47.55795817728148, 9.9737012 47.5580632962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1151750000_2_LVStation_mvgd_33532_lvgd_1151750000,BusBar_mvgd_33532_lvgd_1151750000_LV,BranchTee_mvgd_33532_lvgd_1151750000_2,0.008416551373500128,0.007305566592198111,0.0007165612886121803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9737012 47.5580632962443, 9.973807199999998 47.558039296244296)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_1_LVCableDist_mvgd_33532_lvgd_1151760000_2,BranchTee_mvgd_33532_lvgd_1151760000_1,BranchTee_mvgd_33532_lvgd_1151760000_2,0.014170362678479678,0.01229987480492036,0.0012064244475431395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9922931 47.56021969624447, 9.992245000000004 47.56009639624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_1_LVCableDist_mvgd_33532_lvgd_1151760000_3,BranchTee_mvgd_33532_lvgd_1151760000_1,BranchTee_mvgd_33532_lvgd_1151760000_3,0.39892599855977356,0.34626776674988347,0.03396342693147678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9922931 47.56021969624447, 9.992373300000004 47.560307496244505, 9.992541000000003 47.560500096244525, 9.992786299999993 47.56078569624455, 9.993035899999995 47.56106309624458, 9.993137599999999 47.56117039624457, 9.992977499999995 47.56119129624458, 9.992775199999995 47.561237196244576, 9.992420200000003 47.561309496244604, 9.991800199999993 47.561446796244624, 9.991615300000001 47.56145969624462, 9.991454199999996 47.56145859624462, 9.991403999999998 47.56145289624461, 9.9913177 47.5614381962446, 9.991203299999995 47.5614058962446, 9.990974399999999 47.56131249624457, 9.990794100000004 47.561213996244554, 9.990648199999997 47.56110969624458, 9.990313499999996 47.56083169624453, 9.990034999999995 47.56062809624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_1_LVCableDist_mvgd_33532_lvgd_1151760000_building_441548,BranchTee_mvgd_33532_lvgd_1151760000_1,BranchTee_mvgd_33532_lvgd_1151760000_building_441548,0.011168590169695868,0.009694336267296013,0.0009508620584407437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992145300000516 47.56021139627173, 9.9922931 47.56021969624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_2_LVCableDist_mvgd_33532_lvgd_1151760000_building_441579,BranchTee_mvgd_33532_lvgd_1151760000_2,BranchTee_mvgd_33532_lvgd_1151760000_building_441579,0.01890405192393468,0.016408717069975303,0.0016094373105421875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992055199997786 47.55998504625918, 9.992245000000004 47.56009639624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_2_LVCableDist_mvgd_33532_lvgd_1151760000_building_441580,BranchTee_mvgd_33532_lvgd_1151760000_2,BranchTee_mvgd_33532_lvgd_1151760000_building_441580,0.017781003414439705,0.015433910963733664,0.0015138241488770138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992382700017579 47.55996639639962, 9.992245000000004 47.56009639624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_3_LVCableDist_mvgd_33532_lvgd_1151760000_building_441574,BranchTee_mvgd_33532_lvgd_1151760000_3,BranchTee_mvgd_33532_lvgd_1151760000_building_441574,0.01603855787941584,0.01392146823933295,0.0013654772829807974,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.990043475906273 47.560483859192345, 9.990034999999995 47.56062809624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_3_LVCableDist_mvgd_33532_lvgd_1151760000_building_441575,BranchTee_mvgd_33532_lvgd_1151760000_3,BranchTee_mvgd_33532_lvgd_1151760000_building_441575,0.03256521481982444,0.028266606463607614,0.0027725099342584695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.990282639690891 47.56038782041818, 9.990034999999995 47.56062809624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_3_LVStation_mvgd_33532_lvgd_1151760000,BusBar_mvgd_33532_lvgd_1151760000_LV,BranchTee_mvgd_33532_lvgd_1151760000_3,0.058590736451755165,0.050856759240123485,0.004988248957262268,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.990034999999995 47.56062809624451, 9.989783800000003 47.56047879624451, 9.989380199999992 47.560353496244474)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_4_LVCableDist_mvgd_33532_lvgd_1151760000_5,BranchTee_mvgd_33532_lvgd_1151760000_4,BranchTee_mvgd_33532_lvgd_1151760000_5,0.06333558333814732,0.05497528633751187,0.005392211750133184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988698700000002 47.560161696244435, 9.988464000000002 47.5600928962445, 9.987921000000002 47.5599447962445)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_4_LVCableDist_mvgd_33532_lvgd_1151760000_6,BranchTee_mvgd_33532_lvgd_1151760000_4,BranchTee_mvgd_33532_lvgd_1151760000_6,0.032135652945941486,0.02789374675707721,0.0027359382558799143,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988698700000002 47.560161696244435, 9.989096600000005 47.56026619624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_4_LVCableDist_mvgd_33532_lvgd_1151760000_building_441553,BranchTee_mvgd_33532_lvgd_1151760000_4,BranchTee_mvgd_33532_lvgd_1151760000_building_441553,0.015389549739666546,0.013358129174030562,0.0013102225725535798,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988706850001353 47.56030009627902, 9.988698700000002 47.560161696244435)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_5_LVCableDist_mvgd_33532_lvgd_1151760000_building_441541,BranchTee_mvgd_33532_lvgd_1151760000_5,BranchTee_mvgd_33532_lvgd_1151760000_building_441541,0.022117046681410624,0.01919759651946442,0.00188298256221974,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988068271631763 47.56011701980426, 9.987921000000002 47.5599447962445)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_6_LVCableDist_mvgd_33532_lvgd_1151760000_building_441554,BranchTee_mvgd_33532_lvgd_1151760000_6,BranchTee_mvgd_33532_lvgd_1151760000_building_441554,0.026056575776039287,0.0226171077736021,0.0022183828846677627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988901805538479 47.56046001580582, 9.989096600000005 47.56026619624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_6_LVCableDist_mvgd_33532_lvgd_1151760000_building_441555,BranchTee_mvgd_33532_lvgd_1151760000_6,BranchTee_mvgd_33532_lvgd_1151760000_building_441555,0.02021800257415578,0.017549226234367218,0.0017213033384808607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.98910625001029 47.56044804629181, 9.989096600000005 47.56026619624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_6_LVCableDist_mvgd_33532_lvgd_1151760000_building_441563,BranchTee_mvgd_33532_lvgd_1151760000_6,BranchTee_mvgd_33532_lvgd_1151760000_building_441563,0.04115519183828522,0.03572270651563157,0.0035038361899119813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989594340243578 47.56011326486522, 9.989096600000005 47.56026619624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_6_LVCableDist_mvgd_33532_lvgd_1151760000_building_441565,BranchTee_mvgd_33532_lvgd_1151760000_6,BranchTee_mvgd_33532_lvgd_1151760000_building_441565,0.024011222970342323,0.020841741538257137,0.0020442473537267496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989414957579628 47.56027811192803, 9.989096600000005 47.56026619624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_6_LVCableDist_mvgd_33532_lvgd_1151760000_building_441571,BranchTee_mvgd_33532_lvgd_1151760000_6,BranchTee_mvgd_33532_lvgd_1151760000_building_441571,0.029584759136156963,0.025679570930184244,0.0025187623991261418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989333628227945 47.56047854182649, 9.989096600000005 47.56026619624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1151760000_6_LVStation_mvgd_33532_lvgd_1151760000,BusBar_mvgd_33532_lvgd_1151760000_LV,BranchTee_mvgd_33532_lvgd_1151760000_6,0.023456590520501745,0.020360320571795515,0.0019970275215974984,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989380199999992 47.560353496244474, 9.989096600000005 47.56026619624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_1_LVCableDist_mvgd_33532_lvgd_1151770000_4,BranchTee_mvgd_33532_lvgd_1151770000_1,BranchTee_mvgd_33532_lvgd_1151770000_4,0.45216402950916573,0.3924783776139559,0.0384959617390683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978643899999991 47.554833596243974, 9.979114200000005 47.55486289624402, 9.979530599999993 47.55491669624403, 9.979773599999996 47.554958896244024, 9.9801726 47.55505949624401, 9.980643300000002 47.55523139624401, 9.981088998576178 47.555396547160285, 9.9815347 47.55556169624406, 9.982394 47.55580909624407, 9.983441800000003 47.556023796244084, 9.983624600000004 47.5554595962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_1_LVCableDist_mvgd_33532_lvgd_1151770000_building_441488,BranchTee_mvgd_33532_lvgd_1151770000_1,BranchTee_mvgd_33532_lvgd_1151770000_building_441488,0.010737716299991868,0.009320337748392941,0.0009141786804628561,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983602266995787 47.55536414654065, 9.983624600000004 47.5554595962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_2_LVCableDist_mvgd_33532_lvgd_1151770000_3,BranchTee_mvgd_33532_lvgd_1151770000_2,BranchTee_mvgd_33532_lvgd_1151770000_3,0.08000310634215847,0.06944269630499356,0.006811237338134867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980112500000004 47.554236396243994, 9.979613999999996 47.55414409624395, 9.9793864 47.55411159624394, 9.979281399999993 47.55411249624397, 9.9791976 47.55413969624399, 9.979104599999998 47.55418549624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_2_LVCableDist_mvgd_33532_lvgd_1151770000_4,BranchTee_mvgd_33532_lvgd_1151770000_2,BranchTee_mvgd_33532_lvgd_1151770000_4,0.08160408785259309,0.0708323482560508,0.006947540358606329,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979104599999998 47.55418549624398, 9.979017999999995 47.55425239624398, 9.978946999999998 47.55431899624395, 9.978846000000006 47.55442509624398, 9.978789799999996 47.55448419624399, 9.978715499999998 47.554580296244, 9.978674899999996 47.55469149624404, 9.978643899999991 47.554833596243974)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_2_LVCableDist_mvgd_33532_lvgd_1151770000_5,BranchTee_mvgd_33532_lvgd_1151770000_2,BranchTee_mvgd_33532_lvgd_1151770000_5,0.027870867100079615,0.024191912642869105,0.0023728464970643437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979104599999998 47.55418549624398, 9.979043399999997 47.55409829624393, 9.9789683 47.55401329624392, 9.978914599999992 47.5539717962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_3_LVCableDist_mvgd_33532_lvgd_1151770000_building_441487,BranchTee_mvgd_33532_lvgd_1151770000_3,BranchTee_mvgd_33532_lvgd_1151770000_building_441487,0.03776309374304522,0.03277836536896325,0.0032150425885472834,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9800136990266 47.55456961098127, 9.980112500000004 47.554236396243994)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_4_LVCableDist_mvgd_33532_lvgd_1151770000_building_441477,BranchTee_mvgd_33532_lvgd_1151770000_4,BranchTee_mvgd_33532_lvgd_1151770000_building_441477,0.09743723385670502,0.08457551898761996,0.008295529457706084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977471100047387 47.555203796329856, 9.978643899999991 47.554833596243974)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_4_LVStation_mvgd_33532_lvgd_1151770000,BusBar_mvgd_33532_lvgd_1151770000_LV,BranchTee_mvgd_33532_lvgd_1151770000_4,0.09012833358704032,0.078231393553551,0.007673270439355809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978643899999991 47.554833596243974, 9.978156699999992 47.55484479624401, 9.9777994 47.55487639624399, 9.977461599999993 47.554935496244006)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_5_LVCableDist_mvgd_33532_lvgd_1151770000_building_441475,BranchTee_mvgd_33532_lvgd_1151770000_5,BranchTee_mvgd_33532_lvgd_1151770000_building_441475,0.014096148133542203,0.012235456579914632,0.001200106031888766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978760414355126 47.55404371097065, 9.978914599999992 47.5539717962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_6_LVCableDist_mvgd_33532_lvgd_1151770000_9,BranchTee_mvgd_33532_lvgd_1151770000_6,BranchTee_mvgd_33532_lvgd_1151770000_9,0.13216510690716957,0.11471931279542319,0.011252161973744835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978370000000005 47.556368196244144, 9.979121100000006 47.556561196244154, 9.979362899999998 47.55662359624417, 9.979507500000004 47.556568896244116, 9.979822400000003 47.55653809624414, 9.980030799999998 47.55652619624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_6_LVCableDist_mvgd_33532_lvgd_1151770000_building_441479,BranchTee_mvgd_33532_lvgd_1151770000_6,BranchTee_mvgd_33532_lvgd_1151770000_building_441479,0.009235062724725476,0.008016034445061713,0.0007862470212299833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978269121639828 47.55641544928095, 9.978370000000005 47.556368196244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_6_LVCableDist_mvgd_33532_lvgd_1151770000_building_441480,BranchTee_mvgd_33532_lvgd_1151770000_6,BranchTee_mvgd_33532_lvgd_1151770000_building_441480,0.02332372989080739,0.020244997545220814,0.001985716144788303,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978679500001622 47.55636084626644, 9.978370000000005 47.556368196244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_6_LVCableDist_mvgd_33532_lvgd_1151770000_building_441482,BranchTee_mvgd_33532_lvgd_1151770000_6,BranchTee_mvgd_33532_lvgd_1151770000_building_441482,0.021775618666626518,0.018901237002631816,0.001853914350385104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978480000018394 47.55654944628444, 9.978370000000005 47.556368196244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_6_LVStation_mvgd_33532_lvgd_1151770000,BusBar_mvgd_33532_lvgd_1151770000_LV,BranchTee_mvgd_33532_lvgd_1151770000_6,0.5329337069693678,0.46258645764941125,0.04537246276583076,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977461599999993 47.554935496244006, 9.976534600000004 47.555172996244075, 9.975793599999998 47.55536039624404, 9.975255500000005 47.555523596244036, 9.975022400000006 47.555620396244095, 9.9748359 47.55572599624411, 9.9746369 47.555876396244095, 9.974696399999996 47.55591509624409, 9.974814999999992 47.555980596244105, 9.9749502 47.55604179624415, 9.975081900000001 47.55609339624415, 9.975179099999997 47.55612339624414, 9.975624700000003 47.556205196244136, 9.9759369 47.55625589624413, 9.9761949 47.55625929624415, 9.976537699999993 47.55622699624416, 9.976941900000003 47.556235296244154, 9.978087400000001 47.556329696244106, 9.978370000000005 47.556368196244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_7_LVCableDist_mvgd_33532_lvgd_1151770000_9,BranchTee_mvgd_33532_lvgd_1151770000_7,BranchTee_mvgd_33532_lvgd_1151770000_9,0.02937519862874096,0.025497672409747152,0.002500921012485406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980228 47.556306596244156, 9.980120599999996 47.55647969624413, 9.980030799999998 47.55652619624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_7_LVCableDist_mvgd_33532_lvgd_1151770000_building_441491,BranchTee_mvgd_33532_lvgd_1151770000_7,BranchTee_mvgd_33532_lvgd_1151770000_building_441491,0.012658547250355144,0.010987619013308265,0.0010777127741692285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980219950021066 47.55619279629493, 9.980228 47.556306596244156)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_8_LVCableDist_mvgd_33532_lvgd_1151770000_9,BranchTee_mvgd_33532_lvgd_1151770000_8,BranchTee_mvgd_33532_lvgd_1151770000_9,0.011235016304517023,0.009751994152320776,0.0009565173909697935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9801671 47.556567296244175, 9.980030799999998 47.55652619624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1151770000_8_LVCableDist_mvgd_33532_lvgd_1151770000_building_441492,BranchTee_mvgd_33532_lvgd_1151770000_8,BranchTee_mvgd_33532_lvgd_1151770000_building_441492,0.01212623654408693,0.010525573320267455,0.0010323933519143405,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980323200007128 47.55654054627721, 9.9801671 47.556567296244175)" -Branch_LVCableDist_mvgd_33532_lvgd_1151780000_1_LVCableDist_mvgd_33532_lvgd_1151780000_building_441533,BranchTee_mvgd_33532_lvgd_1151780000_1,BranchTee_mvgd_33532_lvgd_1151780000_building_441533,0.02386277515631928,0.020712888835685134,0.0020316089282971933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981796550036085 47.56050304630558, 9.982011100000003 47.56034499624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1151780000_1_LVCableDist_mvgd_33532_lvgd_1151780000_building_441534,BranchTee_mvgd_33532_lvgd_1151780000_1,BranchTee_mvgd_33532_lvgd_1151780000_building_441534,0.0416384056977756,0.03614213614566922,0.003544975646022459,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.982267234780464 47.5606771186253, 9.982011100000003 47.56034499624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1151780000_1_LVStation_mvgd_33532_lvgd_1151780000,BusBar_mvgd_33532_lvgd_1151780000_LV,BranchTee_mvgd_33532_lvgd_1151780000_1,0.014214839731250197,0.012338480886725171,0.0012102110975417675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.982011100000003 47.56034499624447, 9.981826099999992 47.56037039624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1151790000_1_LVCableDist_mvgd_33532_lvgd_1151790000_2,BranchTee_mvgd_33532_lvgd_1151790000_1,BranchTee_mvgd_33532_lvgd_1151790000_2,0.01579253471423775,0.013707920131958366,0.0013445315691788808,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983987399999998 47.559098896244386, 9.983791100000003 47.55904889624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1151790000_1_LVCableDist_mvgd_33532_lvgd_1151790000_building_441512,BranchTee_mvgd_33532_lvgd_1151790000_1,BranchTee_mvgd_33532_lvgd_1151790000_building_441512,0.05650676769693004,0.04904787436093527,0.004810825774046551,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983261614786128 47.55922791272588, 9.983987399999998 47.559098896244386)" -Branch_LVCableDist_mvgd_33532_lvgd_1151790000_1_LVStation_mvgd_33532_lvgd_1151790000,BusBar_mvgd_33532_lvgd_1151790000_LV,BranchTee_mvgd_33532_lvgd_1151790000_1,0.11238971848226674,0.09755427564260753,0.009568541547310976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983987399999998 47.559098896244386, 9.983973 47.559187396244404, 9.983966600000002 47.55943249624443, 9.983983900000002 47.55951049624446, 9.984065599999994 47.55961139624447, 9.983891099999994 47.55956899624442, 9.983414348584231 47.55941549729083)" -Branch_LVCableDist_mvgd_33532_lvgd_1151790000_2_LVCableDist_mvgd_33532_lvgd_1151790000_building_441505,BranchTee_mvgd_33532_lvgd_1151790000_2,BranchTee_mvgd_33532_lvgd_1151790000_building_441505,0.02397184229744594,0.020807559114183076,0.0020408945950415366,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983584442312688 47.558884795192974, 9.983791100000003 47.55904889624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_1_LVCableDist_mvgd_33532_lvgd_1151810000_2,BranchTee_mvgd_33532_lvgd_1151810000_1,BranchTee_mvgd_33532_lvgd_1151810000_2,0.06297029158388404,0.05465821309481134,0.00536111184727054,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.985985500000005 47.55745089624427, 9.986101600000003 47.557413396244264, 9.986230199999998 47.55740279624423, 9.986418999999993 47.55727679624424, 9.986713500000004 47.55734869624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_1_LVCableDist_mvgd_33532_lvgd_1151810000_building_441536,BranchTee_mvgd_33532_lvgd_1151810000_1,BranchTee_mvgd_33532_lvgd_1151810000_building_441536,0.015252161478868407,0.013238876163657777,0.00129852572608655,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.985797502147632 47.55750194227753, 9.985985500000005 47.55745089624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_2_LVCableDist_mvgd_33532_lvgd_1151810000_building_441490,BranchTee_mvgd_33532_lvgd_1151810000_2,BranchTee_mvgd_33532_lvgd_1151810000_building_441490,0.015396771918278635,0.013364398025065855,0.0013108374483362145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986536717710752 47.557418297658174, 9.986713500000004 47.55734869624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_2_LVCableDist_mvgd_33532_lvgd_1151810000_building_441508,BranchTee_mvgd_33532_lvgd_1151810000_2,BranchTee_mvgd_33532_lvgd_1151810000_building_441508,0.03140430501737521,0.027258936755081686,0.0026736733696027027,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987129289878807 47.55732726144942, 9.986713500000004 47.55734869624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_2_LVCableDist_mvgd_33532_lvgd_1151810000_building_441510,BranchTee_mvgd_33532_lvgd_1151810000_2,BranchTee_mvgd_33532_lvgd_1151810000_building_441510,0.017034135756493207,0.014785629836636104,0.0014502379569022426,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986763300003824 47.557498246292, 9.986713500000004 47.55734869624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_2_LVStation_mvgd_33532_lvgd_1151810000,BusBar_mvgd_33532_lvgd_1151810000_LV,BranchTee_mvgd_33532_lvgd_1151810000_2,0.027821920421950707,0.024149426926253215,0.002368679315852361,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986713500000004 47.55734869624425, 9.986962500000006 47.557400696244244, 9.987070699999995 47.55740889624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_3_LVCableDist_mvgd_33532_lvgd_1151810000_4,BranchTee_mvgd_33532_lvgd_1151810000_3,BranchTee_mvgd_33532_lvgd_1151810000_4,0.015670298521980614,0.013601819117079174,0.0013341247268093804,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987762899999996 47.558001296244306, 9.987867299999996 47.55812329624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_3_LVCableDist_mvgd_33532_lvgd_1151810000_building_441515,BranchTee_mvgd_33532_lvgd_1151810000_3,BranchTee_mvgd_33532_lvgd_1151810000_building_441515,0.015562978663112865,0.013508665479581967,0.0013249878187158732,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.98763274999741 47.558110096300325, 9.987762899999996 47.558001296244306)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_3_LVStation_mvgd_33532_lvgd_1151810000,BusBar_mvgd_33532_lvgd_1151810000_LV,BranchTee_mvgd_33532_lvgd_1151810000_3,0.1801031970753222,0.15632957506137968,0.015333474870218397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987070699999995 47.55740889624422, 9.987283 47.557398296244244, 9.987441899999997 47.557399196244205, 9.987791500000005 47.55740709624424, 9.9880656 47.55747109624428, 9.98844 47.55756379624424, 9.988159100000006 47.55765469624426, 9.987954099999994 47.55775209624428, 9.987824399999996 47.55787209624429, 9.987762899999996 47.558001296244306)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_4_LVCableDist_mvgd_33532_lvgd_1151810000_building_441516,BranchTee_mvgd_33532_lvgd_1151810000_4,BranchTee_mvgd_33532_lvgd_1151810000_building_441516,0.013052718212700617,0.011329759408624136,0.0011112713708173847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987761499997418 47.5582163463003, 9.987867299999996 47.55812329624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1151810000_4_LVCableDist_mvgd_33532_lvgd_1151810000_building_441518,BranchTee_mvgd_33532_lvgd_1151810000_4,BranchTee_mvgd_33532_lvgd_1151810000_building_441518,0.03277210733370708,0.028446189165657745,0.0027901241755044427,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987656576951464 47.55838136460951, 9.987867299999996 47.55812329624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_10_LVCableDist_mvgd_33532_lvgd_1151840000_4,BranchTee_mvgd_33532_lvgd_1151840000_4,BranchTee_mvgd_33532_lvgd_1151840000_10,0.04239789421760218,0.03680137218087869,0.0036096363423459665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993233700000001 47.56281289624474, 9.992800447957102 47.56256919711868)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_10_LVCableDist_mvgd_33532_lvgd_1151840000_9,BranchTee_mvgd_33532_lvgd_1151840000_9,BranchTee_mvgd_33532_lvgd_1151840000_10,0.5412466280705761,0.46980207316526007,0.046080201267275446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992800447957102 47.56256919711868, 9.992367199999997 47.56232549624467, 9.992238299999999 47.56223509624467, 9.992017400000005 47.562124696244645, 9.991733899999995 47.56199309624465, 9.991634699999997 47.56192369624464, 9.991550900000007 47.56184659624464, 9.991491799999997 47.561761796244625, 9.991418199999998 47.56164719624463, 9.991386900000006 47.56154629624457, 9.991403999999998 47.56145289624461, 9.991454199999996 47.56145859624462, 9.991615300000001 47.56145969624462, 9.991800199999993 47.561446796244624, 9.992420200000003 47.561309496244604, 9.992775199999995 47.561237196244576, 9.992977499999995 47.56119129624458, 9.993137599999999 47.56117039624457, 9.993309900000003 47.56116429624454, 9.993483100000006 47.56118429624459, 9.993794700000004 47.561235896244604, 9.994203299999997 47.56132499624458, 9.994574499999997 47.56143489624463, 9.994809399999996 47.561524596244595, 9.995246000000005 47.56175679624464, 9.995943700000005 47.56201939624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_10_LVCableDist_mvgd_33532_lvgd_1151840000_building_441568,BranchTee_mvgd_33532_lvgd_1151840000_10,BranchTee_mvgd_33532_lvgd_1151840000_building_441568,0.021426466989137544,0.01859817334657139,0.0018241885678359317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993061014925066 47.56249173295226, 9.992800447957102 47.56256919711868)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_11_LVCableDist_mvgd_33532_lvgd_1151840000_12,BranchTee_mvgd_33532_lvgd_1151840000_11,BranchTee_mvgd_33532_lvgd_1151840000_12,0.07808767657452162,0.06778010326668477,0.006648163085791391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999171999999994 47.561228296244565, 9.999203700000006 47.56158649624463, 9.999234700000004 47.561629696244616, 9.999265199999998 47.561658396244574, 9.999357000000002 47.56169339624463, 9.999460300000004 47.56172439624467, 9.9995425 47.56175859624463, 9.999586899999995 47.56179499624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_11_LVCableDist_mvgd_33532_lvgd_1151840000_building_441578,BranchTee_mvgd_33532_lvgd_1151840000_11,BranchTee_mvgd_33532_lvgd_1151840000_building_441578,0.3291861370295477,0.28573356694164737,0.028025973118377578,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003010850028604 47.55981124643657, 9.999171999999994 47.561228296244565)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_11_LVCableDist_mvgd_33532_lvgd_1151840000_building_441581,BranchTee_mvgd_33532_lvgd_1151840000_11,BranchTee_mvgd_33532_lvgd_1151840000_building_441581,0.35447968113029066,0.3076883632210923,0.030179393652524467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003275587680838 47.55966534143028, 9.999171999999994 47.561228296244565)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_12_LVCableDist_mvgd_33532_lvgd_1151840000_13,BranchTee_mvgd_33532_lvgd_1151840000_12,BranchTee_mvgd_33532_lvgd_1151840000_13,0.007033786881779059,0.006105327013384223,0.0005988366455767319,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999614399999999 47.56185549624466, 9.999586899999995 47.56179499624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_12_LVCableDist_mvgd_33532_lvgd_1151840000_building_441817,BranchTee_mvgd_33532_lvgd_1151840000_12,BranchTee_mvgd_33532_lvgd_1151840000_building_441817,0.27706263172319356,0.240490364335732,0.023588325859798247,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00298460800317 47.56083844470108, 9.999586899999995 47.56179499624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_12_LVCableDist_mvgd_33532_lvgd_1151840000_building_441840,BranchTee_mvgd_33532_lvgd_1151840000_12,BranchTee_mvgd_33532_lvgd_1151840000_building_441840,0.3182353169519535,0.27622825511429566,0.027093651387309976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003196811088454 47.56030595269704, 9.999586899999995 47.56179499624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_12_LVCableDist_mvgd_33532_lvgd_1151840000_building_441845,BranchTee_mvgd_33532_lvgd_1151840000_12,BranchTee_mvgd_33532_lvgd_1151840000_building_441845,0.2798063084919525,0.24287187577101474,0.023821914710351368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00311256933408 47.56100013812176, 9.999586899999995 47.56179499624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_13_LVCableDist_mvgd_33532_lvgd_1151840000_building_441805,BranchTee_mvgd_33532_lvgd_1151840000_13,BranchTee_mvgd_33532_lvgd_1151840000_building_441805,0.023223085097297307,0.020157637864454063,0.0019771475328082514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999508394594887 47.56205177383183, 9.999614399999999 47.56185549624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_13_LVCableDist_mvgd_33532_lvgd_1151840000_building_441807,BranchTee_mvgd_33532_lvgd_1151840000_13,BranchTee_mvgd_33532_lvgd_1151840000_building_441807,0.01480321758845535,0.012849192866779243,0.0012603039178478669,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99975229999396 47.56195044629653, 9.999614399999999 47.56185549624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_13_LVCableDist_mvgd_33532_lvgd_1151840000_building_441813,BranchTee_mvgd_33532_lvgd_1151840000_13,BranchTee_mvgd_33532_lvgd_1151840000_building_441813,0.029412137840220662,0.025529735645311535,0.0025040659120771263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999780299993956 47.562095146296514, 9.999614399999999 47.56185549624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_13_LVCableDist_mvgd_33532_lvgd_1151840000_building_441818,BranchTee_mvgd_33532_lvgd_1151840000_13,BranchTee_mvgd_33532_lvgd_1151840000_building_441818,0.2584799515179204,0.22436059791755492,0.022006249224980404,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002905170079334 47.56119409252496, 9.999614399999999 47.56185549624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_13_LVCableDist_mvgd_33532_lvgd_1151840000_building_441824,BranchTee_mvgd_33532_lvgd_1151840000_13,BranchTee_mvgd_33532_lvgd_1151840000_building_441824,0.2455702615034132,0.21315498698496266,0.020907154868887605,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002823849944841 47.5614640963348, 9.999614399999999 47.56185549624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_13_LVCableDist_mvgd_33532_lvgd_1151840000_building_441849,BranchTee_mvgd_33532_lvgd_1151840000_13,BranchTee_mvgd_33532_lvgd_1151840000_building_441849,0.2597262474471797,0.225442382784152,0.022112355322054075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00306253182676 47.56180359968937, 9.999614399999999 47.56185549624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_13_LVCableDist_mvgd_33532_lvgd_1151840000_building_441860,BranchTee_mvgd_33532_lvgd_1151840000_13,BranchTee_mvgd_33532_lvgd_1151840000_building_441860,0.3166818773127845,0.274879869507497,0.026961395946782526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003818300005426 47.561929496280804, 9.999614399999999 47.56185549624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_13_LVStation_mvgd_33532_lvgd_1151840000,BusBar_mvgd_33532_lvgd_1151840000_LV,BranchTee_mvgd_33532_lvgd_1151840000_13,0.02214378765280524,0.019220807682634948,0.001885259212604314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999614399999999 47.56185549624466, 9.999614600000003 47.56205479624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_1_LVCableDist_mvgd_33532_lvgd_1151840000_2,BranchTee_mvgd_33532_lvgd_1151840000_1,BranchTee_mvgd_33532_lvgd_1151840000_2,0.24399359950375657,0.2117864443692607,0.020772922342518554,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999499099999996 47.56238199624468, 9.9994567 47.56253079624469, 9.99940529999999 47.56266249624474, 9.9993269 47.56274729624471, 9.999237400000002 47.56280709624477, 9.999182099999999 47.562896396244746, 9.998919199999992 47.562802396244756, 9.9987586 47.56274259624472, 9.998720299999999 47.562839196244724, 9.998693899999994 47.56297509624478, 9.998801499999999 47.563286096244745, 9.998804299999994 47.563347396244765, 9.998776300000001 47.56341499624477, 9.998728699999996 47.56346909624476, 9.998646099999991 47.56353399624479, 9.998551700000004 47.563577896244794, 9.998476899999996 47.5636080962448, 9.998107599999997 47.56381869624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_1_LVCableDist_mvgd_33532_lvgd_1151840000_7,BranchTee_mvgd_33532_lvgd_1151840000_1,BranchTee_mvgd_33532_lvgd_1151840000_7,0.24432952133988578,0.21207802452302085,0.020801521773935037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996958999999999 47.562296096244644, 9.997568100000004 47.56239669624466, 9.998108599999998 47.56253459624472, 9.9987586 47.56274259624472, 9.998919199999992 47.562802396244756, 9.999182099999999 47.562896396244746, 9.999237400000002 47.56280709624477, 9.9993269 47.56274729624471, 9.99940529999999 47.56266249624474, 9.9994567 47.56253079624469, 9.999499099999996 47.56238199624468)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_1_LVStation_mvgd_33532_lvgd_1151840000,BusBar_mvgd_33532_lvgd_1151840000_LV,BranchTee_mvgd_33532_lvgd_1151840000_1,0.03775475989742246,0.0327711315909627,0.003214333068591481,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999499099999996 47.56238199624468, 9.999522499999992 47.56224599624468, 9.999555200000007 47.56220139624463, 9.999601399999994 47.56212089624469, 9.999614600000003 47.56205479624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_2_LVCableDist_mvgd_33532_lvgd_1151840000_building_441826,BranchTee_mvgd_33532_lvgd_1151840000_2,BranchTee_mvgd_33532_lvgd_1151840000_building_441826,0.053375797438317565,0.046330192176459645,0.0045442638553274866,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99769740506988 47.56342691454632, 9.998107599999997 47.56381869624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_2_LVCableDist_mvgd_33532_lvgd_1151840000_building_441827,BranchTee_mvgd_33532_lvgd_1151840000_2,BranchTee_mvgd_33532_lvgd_1151840000_building_441827,0.01989593308427231,0.017269669917148366,0.0016938832564957146,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.997853134823067 47.56377050244493, 9.998107599999997 47.56381869624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_3_LVCableDist_mvgd_33532_lvgd_1151840000_9,BranchTee_mvgd_33532_lvgd_1151840000_3,BranchTee_mvgd_33532_lvgd_1151840000_9,0.0686511635626506,0.059589209972380715,0.005844765159048871,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.995790499999995 47.56143549624464, 9.995903899999995 47.56158579624458, 9.995849000000002 47.56169579624467, 9.9958618 47.561854796244674, 9.995943700000005 47.56201939624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_3_LVCableDist_mvgd_33532_lvgd_1151840000_building_34328721,BranchTee_mvgd_33532_lvgd_1151840000_3,BranchTee_mvgd_33532_lvgd_1151840000_building_34328721,0.028613109608638325,0.024836179140298065,0.0024360389169514433,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996064336421387 47.56125696783934, 9.995790499999995 47.56143549624464)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_4_LVCableDist_mvgd_33532_lvgd_1151840000_6,BranchTee_mvgd_33532_lvgd_1151840000_4,BranchTee_mvgd_33532_lvgd_1151840000_6,0.031181516608037006,0.02706555641577612,0.002654705796947484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993233700000001 47.56281289624474, 9.993293500000002 47.563090596244734)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_4_LVCableDist_mvgd_33532_lvgd_1151840000_building_441587,BranchTee_mvgd_33532_lvgd_1151840000_4,BranchTee_mvgd_33532_lvgd_1151840000_building_441587,0.020759340884860464,0.018019107888058883,0.001767391345347309,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993275300005804 47.56262819631159, 9.993233700000001 47.56281289624474)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_5_LVCableDist_mvgd_33532_lvgd_1151840000_8,BranchTee_mvgd_33532_lvgd_1151840000_5,BranchTee_mvgd_33532_lvgd_1151840000_8,0.09751627673286634,0.08464412820412798,0.0083022589437728,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996169599999998 47.56210909624463, 9.9962154 47.56222499624469, 9.996304000000002 47.562358796244716, 9.9965606 47.56263369624472, 9.996817999999992 47.56285999624469)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_5_LVCableDist_mvgd_33532_lvgd_1151840000_building_441601,BranchTee_mvgd_33532_lvgd_1151840000_5,BranchTee_mvgd_33532_lvgd_1151840000_building_441601,0.013403729789260549,0.011634437457078156,0.001141155499893042,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996978351581129 47.5628076301462, 9.996817999999992 47.56285999624469)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_6_LVCableDist_mvgd_33532_lvgd_1151840000_building_441589,BranchTee_mvgd_33532_lvgd_1151840000_6,BranchTee_mvgd_33532_lvgd_1151840000_building_441589,0.022045137939754243,0.019135179731706684,0.0018768604561103408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993050450008276 47.562979996281854, 9.993293500000002 47.563090596244734)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_7_LVCableDist_mvgd_33532_lvgd_1151840000_8,BranchTee_mvgd_33532_lvgd_1151840000_7,BranchTee_mvgd_33532_lvgd_1151840000_8,0.06297184618451937,0.05465956248816281,0.005361244201554986,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996958999999999 47.562296096244644, 9.996169599999998 47.56210909624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_7_LVCableDist_mvgd_33532_lvgd_1151840000_building_34328722,BranchTee_mvgd_33532_lvgd_1151840000_7,BranchTee_mvgd_33532_lvgd_1151840000_building_34328722,0.048220008809522576,0.041854967646665596,0.004105314649208047,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99686852119222 47.56186645747909, 9.996958999999999 47.562296096244644)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_8_LVCableDist_mvgd_33532_lvgd_1151840000_9,BranchTee_mvgd_33532_lvgd_1151840000_8,BranchTee_mvgd_33532_lvgd_1151840000_9,0.019715845527508512,0.017113353917877386,0.0016785511131972152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996169599999998 47.56210909624463, 9.995943700000005 47.56201939624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1151840000_8_LVCableDist_mvgd_33532_lvgd_1151840000_building_34328723,BranchTee_mvgd_33532_lvgd_1151840000_8,BranchTee_mvgd_33532_lvgd_1151840000_building_34328723,0.023560489164861594,0.020450504595099863,0.002005873157200931,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996262115365557 47.56190652840592, 9.996169599999998 47.56210909624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1151850000_building_441576_LVStation_mvgd_33532_lvgd_1151850000,BusBar_mvgd_33532_lvgd_1151850000_LV,BranchTee_mvgd_33532_lvgd_1151850000_building_441576,0.02395491991326708,0.020792870484715828,0.0020394538712966816,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999303732809716 47.55957965663371, 9.999182900000005 47.55977909624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1151850000_building_441577_LVStation_mvgd_33532_lvgd_1151850000,BusBar_mvgd_33532_lvgd_1151850000_LV,BranchTee_mvgd_33532_lvgd_1151850000_building_441577,0.012000105451307447,0.010416091531734863,0.0010216549087723314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999322236003627 47.559726696088475, 9.999182900000005 47.55977909624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1151860000_1_LVCableDist_mvgd_33532_lvgd_1151860000_building_441851,BranchTee_mvgd_33532_lvgd_1151860000_1,BranchTee_mvgd_33532_lvgd_1151860000_building_441851,0.012832779741262904,0.011138852815416201,0.0010925464337837906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002617949994136 47.56570069628145, 10.002517899999997 47.565607196244954)" -Branch_LVCableDist_mvgd_33532_lvgd_1151860000_1_LVStation_mvgd_33532_lvgd_1151860000,BusBar_mvgd_33532_lvgd_1151860000_LV,BranchTee_mvgd_33532_lvgd_1151860000_1,0.00535401033344087,0.0046472809694266745,0.00045582523928418343,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002517899999997 47.565607196244954, 10.002536000000003 47.56556059624496)" -Branch_LVCableDist_mvgd_33532_lvgd_1151860000_2_LVCableDist_mvgd_33532_lvgd_1151860000_building_441842,BranchTee_mvgd_33532_lvgd_1151860000_2,BranchTee_mvgd_33532_lvgd_1151860000_building_441842,0.011086825171975439,0.009623364249274681,0.000943900818672827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002390999997852 47.565464796408506, 10.002537000000002 47.565451896244916)" -Branch_LVCableDist_mvgd_33532_lvgd_1151860000_2_LVCableDist_mvgd_33532_lvgd_1151860000_building_441844,BranchTee_mvgd_33532_lvgd_1151860000_2,BranchTee_mvgd_33532_lvgd_1151860000_building_441844,0.009601170491646422,0.008333815986749095,0.0008174163970935686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002622099999392 47.56551624627893, 10.002537000000002 47.565451896244916)" -Branch_LVCableDist_mvgd_33532_lvgd_1151860000_2_LVStation_mvgd_33532_lvgd_1151860000,BusBar_mvgd_33532_lvgd_1151860000_LV,BranchTee_mvgd_33532_lvgd_1151860000_2,0.012077672624705018,0.010483419838243956,0.0010282587576953914,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002536000000003 47.56556059624496, 10.002537000000002 47.565451896244916)" -Branch_LVCableDist_mvgd_33532_lvgd_1152100000_1_LVCableDist_mvgd_33532_lvgd_1152100000_building_431219,BranchTee_mvgd_33532_lvgd_1152100000_1,BranchTee_mvgd_33532_lvgd_1152100000_building_431219,0.0929727341644892,0.08070033325477663,0.007915434629017067,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974946581962982 47.53168262874287, 9.976169599999997 47.531793496241974)" -Branch_LVCableDist_mvgd_33532_lvgd_1152100000_1_LVCableDist_mvgd_33532_lvgd_1152100000_building_431494,BranchTee_mvgd_33532_lvgd_1152100000_1,BranchTee_mvgd_33532_lvgd_1152100000_building_431494,0.016268457955006654,0.014121021504945775,0.0013850503227101185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.976068610556169 47.53166407777434, 9.976169599999997 47.531793496241974)" -Branch_LVCableDist_mvgd_33532_lvgd_1152100000_1_LVStation_mvgd_33532_lvgd_1152100000,BusBar_mvgd_33532_lvgd_1152100000_LV,BranchTee_mvgd_33532_lvgd_1152100000_1,0.15308468990540078,0.13287751083788787,0.013033195877683113,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.976169599999997 47.531793496241974, 9.975811999999998 47.53168309624195, 9.9753626 47.53146959624191, 9.975309 47.53145189624191, 9.974938799999999 47.53136499624194, 9.974894499999998 47.5313533962419, 9.974778600000006 47.53132289624191, 9.974717999999996 47.5314425962419, 9.9747038 47.531493496241936, 9.974784100000006 47.531507396241985, 9.974850300000005 47.53157609624192)" -Branch_LVCableDist_mvgd_33532_lvgd_1152110000_1_LVCableDist_mvgd_33532_lvgd_1152110000_2,BranchTee_mvgd_33532_lvgd_1152110000_1,BranchTee_mvgd_33532_lvgd_1152110000_2,0.18628791065062253,0.16169790644474036,0.015860023825075124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979300200000006 47.52553259624139, 9.979202900000006 47.52561229624142, 9.978974299999994 47.52573719624144, 9.978766199999997 47.52584929624141, 9.9786671 47.52589149624142, 9.979133999999998 47.526332696241454, 9.979039200000004 47.52635029624147, 9.978810799999998 47.52639259624145, 9.978409200000003 47.52641739624148, 9.978318800000002 47.5264524962415)" -Branch_LVCableDist_mvgd_33532_lvgd_1152110000_1_LVCableDist_mvgd_33532_lvgd_1152110000_building_431380,BranchTee_mvgd_33532_lvgd_1152110000_1,BranchTee_mvgd_33532_lvgd_1152110000_building_431380,0.021613671013960768,0.018760666440117948,0.0018401265870207335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979080984877024 47.52540715211073, 9.979300200000006 47.52553259624139)" -Branch_LVCableDist_mvgd_33532_lvgd_1152110000_2_LVCableDist_mvgd_33532_lvgd_1152110000_building_431378,BranchTee_mvgd_33532_lvgd_1152110000_2,BranchTee_mvgd_33532_lvgd_1152110000_building_431378,0.20502080731204128,0.17795806074685183,0.017454889462491508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975648685553173 47.526806587102634, 9.978318800000002 47.5264524962415)" -Branch_LVCableDist_mvgd_33532_lvgd_1152110000_2_LVStation_mvgd_33532_lvgd_1152110000,BusBar_mvgd_33532_lvgd_1152110000_LV,BranchTee_mvgd_33532_lvgd_1152110000_2,0.2671905687412063,0.23192141366736704,0.0227478464451646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9758199 47.526846996241524, 9.975900400000006 47.52691189624155, 9.9760357 47.5269627962415, 9.976251300000005 47.52695859624153, 9.976524099999997 47.526904096241545, 9.9767117 47.52685749624151, 9.976891599999998 47.52681069624155, 9.977036900000005 47.52682529624154, 9.977118700000002 47.5268693962415, 9.977183500000004 47.526938996241526, 9.977209200000003 47.527017996241575, 9.977244200000003 47.527105896241544, 9.9772921 47.52716629624157, 9.977371700000004 47.527205096241545, 9.977441499999996 47.527212496241596, 9.977564100000006 47.527192596241555, 9.977705599999995 47.526954296241506, 9.977796299999998 47.526823996241546, 9.977904500000001 47.52673089624151, 9.978147199999999 47.52654519624149, 9.978318800000002 47.5264524962415)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_1_LVCableDist_mvgd_33532_lvgd_1152120000_2,BranchTee_mvgd_33532_lvgd_1152120000_1,BranchTee_mvgd_33532_lvgd_1152120000_2,0.07392603737778307,0.0641678004439157,0.0062938529398397945,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9812279 47.52819909624165, 9.981327000000002 47.5280314962416, 9.981494199999997 47.52779469624162, 9.9815834 47.5277360962416, 9.9817404 47.52764829624163)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_1_LVCableDist_mvgd_33532_lvgd_1152120000_3,BranchTee_mvgd_33532_lvgd_1152120000_1,BranchTee_mvgd_33532_lvgd_1152120000_3,0.2241041940224352,0.19452244041147376,0.019079594827605646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9812279 47.52819909624165, 9.981477500000004 47.528283596241685, 9.982212100000002 47.528676196241676, 9.982774100000004 47.529052796241714, 9.9829057 47.52894959624167, 9.982994200000007 47.52890789624171, 9.983106900000005 47.528887096241704, 9.983231600000003 47.52888339624172, 9.983330800000003 47.52886079624168, 9.983471599999994 47.528765696241685, 9.983537300000004 47.52870099624169)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_1_LVStation_mvgd_33532_lvgd_1152120000,BusBar_mvgd_33532_lvgd_1152120000_LV,BranchTee_mvgd_33532_lvgd_1152120000_1,0.16912633783813102,0.14680166124349772,0.014398936239030167,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979701499999996 47.52925419624172, 9.979927300000005 47.52902469624172, 9.980193700000001 47.5287215962417, 9.980426 47.52857369624168, 9.980513000000002 47.528541796241676, 9.980628799999993 47.52850519624165, 9.980909899999999 47.528421296241646, 9.981040199999997 47.52836909624166, 9.9811368 47.52829119624162, 9.9812279 47.52819909624165)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_2_LVCableDist_mvgd_33532_lvgd_1152120000_building_431486,BranchTee_mvgd_33532_lvgd_1152120000_2,BranchTee_mvgd_33532_lvgd_1152120000_building_431486,0.012928476481735748,0.01122191758614663,0.001100693782576208,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.98186999997535 47.52772454633524, 9.9817404 47.52764829624163)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_3_LVCableDist_mvgd_33532_lvgd_1152120000_building_431487,BranchTee_mvgd_33532_lvgd_1152120000_3,BranchTee_mvgd_33532_lvgd_1152120000_building_431487,0.03610064210260593,0.03133535734506195,0.0030735061757263143,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983734602165184 47.52840490996728, 9.983537300000004 47.52870099624169)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_3_LVCableDist_mvgd_33532_lvgd_1152120000_building_431489,BranchTee_mvgd_33532_lvgd_1152120000_3,BranchTee_mvgd_33532_lvgd_1152120000_building_431489,0.01787188564064845,0.015512796736082855,0.0015215616035938143,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983342489059059 47.528609248051744, 9.983537300000004 47.52870099624169)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_4_LVCableDist_mvgd_33532_lvgd_1152120000_building_431508,BranchTee_mvgd_33532_lvgd_1152120000_4,BranchTee_mvgd_33532_lvgd_1152120000_building_431508,0.02311621958304312,0.02006487859808143,0.001968049306325219,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979699105985135 47.52969956428302, 9.979984700000003 47.52962359624176)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_4_LVStation_mvgd_33532_lvgd_1152120000,BusBar_mvgd_33532_lvgd_1152120000_LV,BranchTee_mvgd_33532_lvgd_1152120000_4,0.047069487733274344,0.04085631535248213,0.004007362551206528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979701499999996 47.52925419624172, 9.979865199999999 47.529384496241775, 9.979984700000003 47.52962359624176)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_5_LVCableDist_mvgd_33532_lvgd_1152120000_6,BranchTee_mvgd_33532_lvgd_1152120000_5,BranchTee_mvgd_33532_lvgd_1152120000_6,0.020908439117035774,0.01814852515358705,0.0017800851455317555,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978558300000003 47.529268396241726, 9.978690999999996 47.52919289624174, 9.978753099999997 47.52913609624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_5_LVCableDist_mvgd_33532_lvgd_1152120000_building_431480,BranchTee_mvgd_33532_lvgd_1152120000_5,BranchTee_mvgd_33532_lvgd_1152120000_building_431480,0.014542738219304747,0.01262309677435652,0.001238127443882162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978372129379084 47.5292338943078, 9.978558300000003 47.529268396241726)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_6_LVCableDist_mvgd_33532_lvgd_1152120000_7,BranchTee_mvgd_33532_lvgd_1152120000_6,BranchTee_mvgd_33532_lvgd_1152120000_7,0.055111994212571104,0.04783721097651172,0.004692078719472498,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978753099999997 47.52913609624173, 9.978747900000004 47.52909299624172, 9.978714700000005 47.52904049624171, 9.9786597 47.52900779624172, 9.978581 47.52898409624171, 9.978496600000001 47.52897839624169, 9.978376200000005 47.5290096962417, 9.978255699999998 47.529034696241744, 9.9781941 47.52907379624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_6_LVStation_mvgd_33532_lvgd_1152120000,BusBar_mvgd_33532_lvgd_1152120000_LV,BranchTee_mvgd_33532_lvgd_1152120000_6,0.08372952123777572,0.07267722443438933,0.007128493722728962,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978753099999997 47.52913609624173, 9.979014100000006 47.52919369624178, 9.979308299999996 47.52931069624175, 9.979491400000004 47.52938299624176, 9.9796335 47.529303696241705, 9.979701499999996 47.52925419624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1152120000_7_LVCableDist_mvgd_33532_lvgd_1152120000_building_431473,BranchTee_mvgd_33532_lvgd_1152120000_7,BranchTee_mvgd_33532_lvgd_1152120000_building_431473,0.010442128283141495,0.009063767349766817,0.0008890131559085231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978088932197652 47.52901259471533, 9.9781941 47.52907379624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1152930000_building_431286_LVStation_mvgd_33532_lvgd_1152930000,BusBar_mvgd_33532_lvgd_1152930000_LV,BranchTee_mvgd_33532_lvgd_1152930000_building_431286,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973786725536701 47.547339920043285, 9.973786725536701 47.547339920043285)" -Branch_LVCableDist_mvgd_33532_lvgd_1154980000_1_LVCableDist_mvgd_33532_lvgd_1154980000_building_431482,BranchTee_mvgd_33532_lvgd_1154980000_1,BranchTee_mvgd_33532_lvgd_1154980000_building_431482,0.007315807174071571,0.006350120627094124,0.0006228470525821687,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977882114122217 47.53428602866848, 9.977849699999993 47.534348096242205)" -Branch_LVCableDist_mvgd_33532_lvgd_1154980000_1_LVCableDist_mvgd_33532_lvgd_1154980000_building_431483,BranchTee_mvgd_33532_lvgd_1154980000_1,BranchTee_mvgd_33532_lvgd_1154980000_building_431483,0.013758797130067753,0.01194263590889881,0.0011713849252220415,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978031500002471 47.53433644626589, 9.977849699999993 47.534348096242205)" -Branch_LVCableDist_mvgd_33532_lvgd_1154980000_1_LVStation_mvgd_33532_lvgd_1154980000,BusBar_mvgd_33532_lvgd_1154980000_LV,BranchTee_mvgd_33532_lvgd_1154980000_1,0.02272118580675762,0.019721989280265615,0.0019344172521478134,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977849699999993 47.534348096242205, 9.978123299999996 47.53443409624222)" -Branch_LVCableDist_mvgd_33532_lvgd_1154980000_2_LVCableDist_mvgd_33532_lvgd_1154980000_building_431490,BranchTee_mvgd_33532_lvgd_1154980000_2,BranchTee_mvgd_33532_lvgd_1154980000_building_431490,0.016050445537549626,0.013931786726593075,0.0013664893644442036,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978031493772855 47.53452478103809, 9.978243999999998 47.53451469624219)" -Branch_LVCableDist_mvgd_33532_lvgd_1154980000_2_LVStation_mvgd_33532_lvgd_1154980000,BusBar_mvgd_33532_lvgd_1154980000_LV,BranchTee_mvgd_33532_lvgd_1154980000_2,0.012763114611240639,0.011078383482556874,0.0010866153423991097,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978123299999996 47.53443409624222, 9.978243999999998 47.53451469624219)" -Branch_LVCableDist_mvgd_33532_lvgd_1154990000_1_LVCableDist_mvgd_33532_lvgd_1154990000_building_431502,BranchTee_mvgd_33532_lvgd_1154990000_1,BranchTee_mvgd_33532_lvgd_1154990000_building_431502,0.01223097725714668,0.010616488259203317,0.0010413106788561756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981139695285938 47.53578794897672, 9.981031300000003 47.53586989624234)" -Branch_LVCableDist_mvgd_33532_lvgd_1154990000_1_LVCableDist_mvgd_33532_lvgd_1154990000_building_431505,BranchTee_mvgd_33532_lvgd_1154990000_1,BranchTee_mvgd_33532_lvgd_1154990000_building_431505,0.011570291077020518,0.01004301265485381,0.0009850617332262527,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981126873670116 47.535951408660544, 9.981031300000003 47.53586989624234)" -Branch_LVCableDist_mvgd_33532_lvgd_1154990000_1_LVStation_mvgd_33532_lvgd_1154990000,BusBar_mvgd_33532_lvgd_1154990000_LV,BranchTee_mvgd_33532_lvgd_1154990000_1,0.01718264736243173,0.01491453791059074,0.0014628818133943721,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981031300000003 47.53586989624234, 9.981248 47.53591809624236)" -Branch_LVCableDist_mvgd_33532_lvgd_1156160000_1_LVCableDist_mvgd_33532_lvgd_1156160000_building_431324,BranchTee_mvgd_33532_lvgd_1156160000_1,BranchTee_mvgd_33532_lvgd_1156160000_building_431324,0.023786908732868456,0.02064703678012982,0.0020251498763960213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981492924728387 47.514069300293, 9.981638099999993 47.514259396240355)" -Branch_LVCableDist_mvgd_33532_lvgd_1156160000_1_LVCableDist_mvgd_33532_lvgd_1156160000_building_431326,BranchTee_mvgd_33532_lvgd_1156160000_1,BranchTee_mvgd_33532_lvgd_1156160000_building_431326,0.018982127963557867,0.016476487072368227,0.0016160844828909805,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981677378630271 47.51409063896152, 9.981638099999993 47.514259396240355)" -Branch_LVCableDist_mvgd_33532_lvgd_1156160000_1_LVCableDist_mvgd_33532_lvgd_1156160000_building_431333,BranchTee_mvgd_33532_lvgd_1156160000_1,BranchTee_mvgd_33532_lvgd_1156160000_building_431333,0.03471804048259814,0.030135259138895185,0.0029557953991261273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981800728950107 47.51396704326229, 9.981638099999993 47.514259396240355)" -Branch_LVCableDist_mvgd_33532_lvgd_1156160000_1_LVStation_mvgd_33532_lvgd_1156160000,BusBar_mvgd_33532_lvgd_1156160000_LV,BranchTee_mvgd_33532_lvgd_1156160000_1,0.011644669268172711,0.010107572924773914,0.0009913940812547415,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981638099999993 47.514259396240355, 9.981484300000004 47.51426929624038)" -Branch_LVCableDist_mvgd_33532_lvgd_1156160000_2_LVCableDist_mvgd_33532_lvgd_1156160000_building_431331,BranchTee_mvgd_33532_lvgd_1156160000_2,BranchTee_mvgd_33532_lvgd_1156160000_building_431331,0.011666859838590211,0.010126834339896303,0.0009932833234191116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983846599994347 47.51509439626374, 9.983874399999996 47.51519769624048)" -Branch_LVCableDist_mvgd_33532_lvgd_1156160000_2_LVCableDist_mvgd_33532_lvgd_1156160000_building_431337,BranchTee_mvgd_33532_lvgd_1156160000_2,BranchTee_mvgd_33532_lvgd_1156160000_building_431337,0.01612803193503325,0.01399913171960886,0.0013730948500513714,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983974349996945 47.51506934626244, 9.983874399999996 47.51519769624048)" -Branch_LVCableDist_mvgd_33532_lvgd_1156160000_2_LVStation_mvgd_33532_lvgd_1156160000,BusBar_mvgd_33532_lvgd_1156160000_LV,BranchTee_mvgd_33532_lvgd_1156160000_2,0.3723031826942525,0.32315916257861116,0.03169683597319582,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983874399999996 47.51519769624048, 9.9837161 47.515253396240475, 9.9834906 47.515302096240426, 9.981767199999998 47.514892396240434, 9.981558999999997 47.51484019624045, 9.981434799999995 47.514825896240446, 9.981315800000004 47.51482939624046, 9.981116500000002 47.514876196240415, 9.980809499999996 47.51497269624048, 9.980595200000002 47.515027596240415, 9.9806687 47.51497329624046, 9.980841600000005 47.51489299624043, 9.980978499999994 47.51479769624042, 9.9811585 47.51461069624042, 9.981409100000004 47.51436479624037, 9.981436299999999 47.51429289624036, 9.981484300000004 47.51426929624038)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_10_LVCableDist_mvgd_33532_lvgd_1156170000_building_431373,BranchTee_mvgd_33532_lvgd_1156170000_10,BranchTee_mvgd_33532_lvgd_1156170000_building_431373,0.025040536522561527,0.021735185701583407,0.00213188018725123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989761142324323 47.51339690783981, 9.989484699999997 47.5135218962403)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_10_LVStation_mvgd_33532_lvgd_1156170000,BusBar_mvgd_33532_lvgd_1156170000_LV,BranchTee_mvgd_33532_lvgd_1156170000_10,0.0231033932981881,0.02005374538282727,0.0019669573128476103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989484699999997 47.5135218962403, 9.989419099999996 47.51346749624032, 9.989299899999995 47.51335609624034)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_1_LVCableDist_mvgd_33532_lvgd_1156170000_2,BranchTee_mvgd_33532_lvgd_1156170000_1,BranchTee_mvgd_33532_lvgd_1156170000_2,0.03194752345462709,0.027730450358616314,0.002719921445105535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989395 47.511406396240105, 9.9893813 47.51151909624013, 9.989425400000004 47.511592696240186, 9.989432199999998 47.51168759624016)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_1_LVCableDist_mvgd_33532_lvgd_1156170000_building_431348,BranchTee_mvgd_33532_lvgd_1156170000_1,BranchTee_mvgd_33532_lvgd_1156170000_building_431348,0.021303693646575264,0.01849160608522733,0.0018137359940144679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989150340780386 47.511701691576306, 9.989432199999998 47.51168759624016)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_1_LVCableDist_mvgd_33532_lvgd_1156170000_building_431354,BranchTee_mvgd_33532_lvgd_1156170000_1,BranchTee_mvgd_33532_lvgd_1156170000_building_431354,0.1560341578989636,0.1354376490563004,0.0132843052088567,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987386800001556 47.51190354626109, 9.989432199999998 47.51168759624016)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_1_LVStation_mvgd_33532_lvgd_1156170000,BusBar_mvgd_33532_lvgd_1156170000_LV,BranchTee_mvgd_33532_lvgd_1156170000_1,0.19665842914458126,0.17069951649749654,0.0167429403268391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989299899999995 47.51335609624034, 9.989447300000005 47.513272296240324, 9.989487999999998 47.51322649624027, 9.989566499999999 47.51309989624025, 9.989649400000001 47.51294969624025, 9.989692600000001 47.51285619624026, 9.9897243 47.51272849624028, 9.9896959 47.51255429624025, 9.989649799999997 47.512370896240235, 9.989583900000003 47.512115596240186, 9.989493299999994 47.51188559624017, 9.989432199999998 47.51168759624016)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_2_LVCableDist_mvgd_33532_lvgd_1156170000_3,BranchTee_mvgd_33532_lvgd_1156170000_2,BranchTee_mvgd_33532_lvgd_1156170000_3,0.17384725768103637,0.15089941966713957,0.014800861951349591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989169700000003 47.51020759623996, 9.989393900000003 47.510314496239985, 9.989579500000001 47.51038919624006, 9.989642400000005 47.51042679624004, 9.989684000000002 47.51046629624002, 9.989688500000005 47.510533296240034, 9.989667399999998 47.5107261962401, 9.989692599999998 47.51077469624006, 9.9898115 47.51084509624002, 9.989862399999998 47.51087639624007, 9.989881799999996 47.510904496240066, 9.9898807 47.510922396240076, 9.989845599999995 47.51094639624012, 9.989750800000007 47.51096879624006, 9.989689199999997 47.51099439624011, 9.989612300000006 47.51106959624013, 9.9895736 47.51111309624009, 9.989499199999994 47.51120859624009, 9.989424799999997 47.511318496240094, 9.989395 47.511406396240105)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_2_LVCableDist_mvgd_33532_lvgd_1156170000_building_431346,BranchTee_mvgd_33532_lvgd_1156170000_2,BranchTee_mvgd_33532_lvgd_1156170000_building_431346,0.015721310063257523,0.013646097134907529,0.0013384677046074562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.98918813832318 47.51142444046303, 9.989395 47.511406396240105)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_3_LVCableDist_mvgd_33532_lvgd_1156170000_building_431349,BranchTee_mvgd_33532_lvgd_1156170000_3,BranchTee_mvgd_33532_lvgd_1156170000_building_431349,0.019064090607015423,0.016547630646889386,0.0016230625496558226,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988947795545378 47.510289909224035, 9.989169700000003 47.51020759623996)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_4_LVCableDist_mvgd_33532_lvgd_1156170000_5,BranchTee_mvgd_33532_lvgd_1156170000_4,BranchTee_mvgd_33532_lvgd_1156170000_5,0.051260853318071495,0.04449442068008606,0.004364203517441609,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987625100000002 47.51395179624036, 9.987572499999997 47.51376349624037, 9.987832199999994 47.51374449624035, 9.987961099999993 47.513714296240295)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_4_LVCableDist_mvgd_33532_lvgd_1156170000_building_431352,BranchTee_mvgd_33532_lvgd_1156170000_4,BranchTee_mvgd_33532_lvgd_1156170000_building_431352,0.017224110325816066,0.014950527762808346,0.0014664118523799246,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987457833458542 47.51405741858817, 9.987625100000002 47.51395179624036)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_4_LVCableDist_mvgd_33532_lvgd_1156170000_building_431360,BranchTee_mvgd_33532_lvgd_1156170000_4,BranchTee_mvgd_33532_lvgd_1156170000_building_431360,0.045661303712257975,0.03963401162223992,0.003887473761615151,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987298012998888 47.51429771483421, 9.987625100000002 47.51395179624036)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_5_LVCableDist_mvgd_33532_lvgd_1156170000_6,BranchTee_mvgd_33532_lvgd_1156170000_5,BranchTee_mvgd_33532_lvgd_1156170000_6,0.04794387364703995,0.04161528232563067,0.004081805285446224,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987961099999993 47.513714296240295, 9.987924300000001 47.51349979624033, 9.987909000000004 47.51333239624033, 9.987962599999998 47.5133012962403)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_5_LVCableDist_mvgd_33532_lvgd_1156170000_8,BranchTee_mvgd_33532_lvgd_1156170000_5,BranchTee_mvgd_33532_lvgd_1156170000_8,0.06912890908753706,0.06000389308798217,0.005885439056676253,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987961099999993 47.513714296240295, 9.988077299999999 47.51366399624033, 9.988499799999992 47.5134167962403, 9.988712200000004 47.51337449624028)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_6_LVCableDist_mvgd_33532_lvgd_1156170000_7,BranchTee_mvgd_33532_lvgd_1156170000_6,BranchTee_mvgd_33532_lvgd_1156170000_7,0.030612326722780737,0.02657149959537368,0.002606246586096777,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987962599999998 47.5133012962403, 9.988334699999998 47.51319089624028)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_6_LVCableDist_mvgd_33532_lvgd_1156170000_building_431353,BranchTee_mvgd_33532_lvgd_1156170000_6,BranchTee_mvgd_33532_lvgd_1156170000_building_431353,0.1725326566092231,0.14975834593680565,0.014688940548363163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987018911471736 47.51188653435099, 9.987962599999998 47.5133012962403)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_7_LVCableDist_mvgd_33532_lvgd_1156170000_building_431358,BranchTee_mvgd_33532_lvgd_1156170000_7,BranchTee_mvgd_33532_lvgd_1156170000_building_431358,0.010620168172152812,0.009218305973428641,0.0009041709665880847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988340699977563 47.513095396283795, 9.988334699999998 47.51319089624028)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_8_LVCableDist_mvgd_33532_lvgd_1156170000_9,BranchTee_mvgd_33532_lvgd_1156170000_8,BranchTee_mvgd_33532_lvgd_1156170000_9,0.028401884371082566,0.024652835634099667,0.0024180557999129238,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988712200000004 47.51337449624028, 9.989088899999999 47.51336849624029)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_8_LVCableDist_mvgd_33532_lvgd_1156170000_building_431366,BranchTee_mvgd_33532_lvgd_1156170000_8,BranchTee_mvgd_33532_lvgd_1156170000_building_431366,0.018236196870207454,0.01582901888334007,0.001552578027366931,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988859278575422 47.51350481930654, 9.988712200000004 47.51337449624028)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_9_LVCableDist_mvgd_33532_lvgd_1156170000_building_431363,BranchTee_mvgd_33532_lvgd_1156170000_9,BranchTee_mvgd_33532_lvgd_1156170000_building_431363,0.029737775868099052,0.025812389453509978,0.0025317898092557674,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988940836360456 47.513120405441725, 9.989088899999999 47.51336849624029)" -Branch_LVCableDist_mvgd_33532_lvgd_1156170000_9_LVStation_mvgd_33532_lvgd_1156170000,BusBar_mvgd_33532_lvgd_1156170000_LV,BranchTee_mvgd_33532_lvgd_1156170000_9,0.015963858698498146,0.01385662935029639,0.0013591176067949918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989299899999995 47.51335609624034, 9.989088899999999 47.51336849624029)" -Branch_LVCableDist_mvgd_33532_lvgd_1156290000_building_431538_LVStation_mvgd_33532_lvgd_1156290000,BusBar_mvgd_33532_lvgd_1156290000_LV,BranchTee_mvgd_33532_lvgd_1156290000_building_431538,0.01818685795235829,0.015786192702646997,0.0015483774519787687,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986340299946665 47.54537804632211, 9.9865232 47.54548489624321)" -Branch_LVCableDist_mvgd_33532_lvgd_1156980000_1_LVCableDist_mvgd_33532_lvgd_1156980000_building_431539,BranchTee_mvgd_33532_lvgd_1156980000_1,BranchTee_mvgd_33532_lvgd_1156980000_building_431539,0.011688821846622064,0.010145897362867952,0.0009951531064308764,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984388254656555 47.543446411914815, 9.984369299999992 47.543341996243015)" -Branch_LVCableDist_mvgd_33532_lvgd_1156980000_1_LVCableDist_mvgd_33532_lvgd_1156980000_building_431542,BranchTee_mvgd_33532_lvgd_1156980000_1,BranchTee_mvgd_33532_lvgd_1156980000_building_431542,0.03420821904939895,0.029692734134878287,0.002912390649731317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984807963741797 47.543421589172794, 9.984369299999992 47.543341996243015)" -Branch_LVCableDist_mvgd_33532_lvgd_1156980000_1_LVStation_mvgd_33532_lvgd_1156980000,BusBar_mvgd_33532_lvgd_1156980000_LV,BranchTee_mvgd_33532_lvgd_1156980000_1,0.032396672227436016,0.02812031149341446,0.002758160696449723,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984369299999992 47.543341996243015, 9.9845294 47.543297296243004, 9.984748999999997 47.54320689624296)" -Branch_LVCableDist_mvgd_33532_lvgd_1156980000_2_LVCableDist_mvgd_33532_lvgd_1156980000_building_431534,BranchTee_mvgd_33532_lvgd_1156980000_2,BranchTee_mvgd_33532_lvgd_1156980000_building_431534,0.016266474192747977,0.014119299599305244,0.0013848814308234899,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984421066239983 47.54316464564148, 9.984585300000004 47.54306959624296)" -Branch_LVCableDist_mvgd_33532_lvgd_1156980000_2_LVStation_mvgd_33532_lvgd_1156980000,BusBar_mvgd_33532_lvgd_1156980000_LV,BranchTee_mvgd_33532_lvgd_1156980000_2,0.01961928630999662,0.017029540517077064,0.001670330335558341,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984585300000004 47.54306959624296, 9.984665500000002 47.54313429624299, 9.984748999999997 47.54320689624296)" -Branch_LVCableDist_mvgd_33532_lvgd_1157450000_1_LVCableDist_mvgd_33532_lvgd_1157450000_building_431512,BranchTee_mvgd_33532_lvgd_1157450000_1,BranchTee_mvgd_33532_lvgd_1157450000_building_431512,0.00916365912494549,0.007954056120452685,0.0007801679214657984,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988385961406633 47.5375317765634, 9.988297800000005 47.537588596242514)" -Branch_LVCableDist_mvgd_33532_lvgd_1157450000_1_LVCableDist_mvgd_33532_lvgd_1157450000_building_431521,BranchTee_mvgd_33532_lvgd_1157450000_1,BranchTee_mvgd_33532_lvgd_1157450000_building_431521,0.270012989948079,0.23437127527493257,0.02298813937361636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.991814257559176 47.53711941315987, 9.988297800000005 47.537588596242514)" -Branch_LVCableDist_mvgd_33532_lvgd_1157450000_1_LVCableDist_mvgd_33532_lvgd_1157450000_building_431522,BranchTee_mvgd_33532_lvgd_1157450000_1,BranchTee_mvgd_33532_lvgd_1157450000_building_431522,0.2579342357418081,0.22388691662388946,0.02195978853313716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99171130000827 47.53741064626269, 9.988297800000005 47.537588596242514)" -Branch_LVCableDist_mvgd_33532_lvgd_1157450000_1_LVStation_mvgd_33532_lvgd_1157450000,BusBar_mvgd_33532_lvgd_1157450000_LV,BranchTee_mvgd_33532_lvgd_1157450000_1,0.3239881759162757,0.2812217366953273,0.027583433466661148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.991805300000005 47.53730969624246, 9.9915022 47.53732419624249, 9.9912742 47.537378496242454, 9.991042200000006 47.537417596242435, 9.990875899999997 47.537494396242494, 9.990794099999993 47.53752699624243, 9.990620600000002 47.53757909624249, 9.990351499999997 47.53761749624249, 9.990040800000001 47.53778139624249, 9.989912199999996 47.53782169624252, 9.989770200000004 47.537825896242516, 9.989635300000003 47.537804096242525, 9.989541500000007 47.53773889624251, 9.989439500000003 47.537664596242486, 9.989268700000004 47.537615396242515, 9.9887583 47.53761029624247, 9.988583900000002 47.537512496242485, 9.988437300000005 47.53742699624244, 9.988233400000002 47.53744509624244, 9.988160999999996 47.53749579624247, 9.9881394 47.537519296242465, 9.988297800000005 47.537588596242514)" -Branch_LVCableDist_mvgd_33532_lvgd_1157460000_1_LVCableDist_mvgd_33532_lvgd_1157460000_building_431559,BranchTee_mvgd_33532_lvgd_1157460000_1,BranchTee_mvgd_33532_lvgd_1157460000_building_431559,0.01162996634857995,0.010094810790567397,0.0009901423164234923,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.994283312164429 47.54082012704494, 9.9941455 47.5408672962428)" -Branch_LVCableDist_mvgd_33532_lvgd_1157460000_1_LVStation_mvgd_33532_lvgd_1157460000,BusBar_mvgd_33532_lvgd_1157460000_LV,BranchTee_mvgd_33532_lvgd_1157460000_1,0.14166998963119065,0.12296955099987349,0.0120613807036722,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9941455 47.5408672962428, 9.994028800000002 47.540809896242784, 9.993933599999995 47.54075949624277, 9.993831899999998 47.54071659624279, 9.9936496 47.54065999624275, 9.993423999999994 47.54059019624273, 9.993295099999994 47.54053239624274, 9.993224099999999 47.54048389624274, 9.993143999999997 47.54039499624274, 9.993060999999996 47.54033309624275, 9.992854900000006 47.54024969624273, 9.992677799999997 47.540107096242714)" -Branch_LVCableDist_mvgd_33532_lvgd_1157460000_2_LVCableDist_mvgd_33532_lvgd_1157460000_building_431552,BranchTee_mvgd_33532_lvgd_1157460000_2,BranchTee_mvgd_33532_lvgd_1157460000_building_431552,0.23352142775416176,0.2026965992906124,0.019881351371172234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99475780531541 47.53871363020031, 9.992132199999999 47.53983069624266)" -Branch_LVCableDist_mvgd_33532_lvgd_1157460000_2_LVCableDist_mvgd_33532_lvgd_1157460000_building_431558,BranchTee_mvgd_33532_lvgd_1157460000_2,BranchTee_mvgd_33532_lvgd_1157460000_building_431558,0.018414503463519076,0.01598378900633456,0.0015677585444934237,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992161416152106 47.539995245386315, 9.992132199999999 47.53983069624266)" -Branch_LVCableDist_mvgd_33532_lvgd_1157460000_2_LVCableDist_mvgd_33532_lvgd_1157460000_building_431561,BranchTee_mvgd_33532_lvgd_1157460000_2,BranchTee_mvgd_33532_lvgd_1157460000_building_431561,0.2526087259461742,0.2192643741212792,0.02150638974872633,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.994908532378346 47.53855589560278, 9.992132199999999 47.53983069624266)" -Branch_LVCableDist_mvgd_33532_lvgd_1157460000_2_LVStation_mvgd_33532_lvgd_1157460000,BusBar_mvgd_33532_lvgd_1157460000_LV,BranchTee_mvgd_33532_lvgd_1157460000_2,0.05142114048959775,0.044633549944970846,0.004377849912156015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992132199999999 47.53983069624266, 9.992445600000002 47.53997049624272, 9.992677799999997 47.540107096242714)" -Branch_LVCableDist_mvgd_33532_lvgd_1159020000_1_LVCableDist_mvgd_33532_lvgd_1159020000_building_448090,BranchTee_mvgd_33532_lvgd_1159020000_1,BranchTee_mvgd_33532_lvgd_1159020000_building_448090,0.023466844601292693,0.02036922111392206,0.0019979005249238053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11749571187476 47.556191766510665, 10.117806599999994 47.556177596244076)" -Branch_LVCableDist_mvgd_33532_lvgd_1159020000_1_LVCableDist_mvgd_33532_lvgd_1159020000_building_448092,BranchTee_mvgd_33532_lvgd_1159020000_1,BranchTee_mvgd_33532_lvgd_1159020000_building_448092,0.022399406250313857,0.019442684625272426,0.0019070218542725774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117733869698569 47.55637307896748, 10.117806599999994 47.556177596244076)" -Branch_LVCableDist_mvgd_33532_lvgd_1159020000_1_LVStation_mvgd_33532_lvgd_1159020000,BusBar_mvgd_33532_lvgd_1159020000_LV,BranchTee_mvgd_33532_lvgd_1159020000_1,0.025606468887722486,0.022226414994543118,0.002180062062089408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117806599999994 47.556177596244076, 10.117572399999995 47.55611529624417, 10.117484600000001 47.55610829624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1159590000_building_422769_LVStation_mvgd_33532_lvgd_1159590000,BusBar_mvgd_33532_lvgd_1159590000_LV,BranchTee_mvgd_33532_lvgd_1159590000_building_422769,0.07534776711793724,0.06540186185836952,0.006414894973501079,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.098051388377712 47.451849654514064, 10.097126999999995 47.45210599623459)" -Branch_LVCableDist_mvgd_33532_lvgd_1159620000_building_441506_LVStation_mvgd_33532_lvgd_1159620000,BusBar_mvgd_33532_lvgd_1159620000_LV,BranchTee_mvgd_33532_lvgd_1159620000_building_441506,0.017147173575558974,0.014883746663585188,0.0014598616758932184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99292417162653 47.552834829635195, 9.993023599999997 47.552695996243806)" -Branch_LVCableDist_mvgd_33532_lvgd_1160560000_building_431444_LVStation_mvgd_33532_lvgd_1160560000,BusBar_mvgd_33532_lvgd_1160560000_LV,BranchTee_mvgd_33532_lvgd_1160560000_building_431444,0.035859008692709866,0.031125619545272164,0.003052934193226209,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000219429399722 47.524096300441855, 10.000569899999999 47.52387799624125)" -Branch_LVCableDist_mvgd_33532_lvgd_1160560000_building_431445_LVStation_mvgd_33532_lvgd_1160560000,BusBar_mvgd_33532_lvgd_1160560000_LV,BranchTee_mvgd_33532_lvgd_1160560000_building_431445,0.019333745778153194,0.01678169133543697,0.0016460202253518084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000476800001387 47.523715846286585, 10.000569899999999 47.52387799624125)" -Branch_LVCableDist_mvgd_33532_lvgd_1160560000_building_431447_LVStation_mvgd_33532_lvgd_1160560000,BusBar_mvgd_33532_lvgd_1160560000_LV,BranchTee_mvgd_33532_lvgd_1160560000_building_431447,0.01819488571603711,0.015793160801520212,0.0015490609129868583,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000528845757842 47.52403937335276, 10.000569899999999 47.52387799624125)" -Branch_LVCableDist_mvgd_33532_lvgd_1161030000_building_430899_LVStation_mvgd_33532_lvgd_1161030000,BusBar_mvgd_33532_lvgd_1161030000_LV,BranchTee_mvgd_33532_lvgd_1161030000_building_430899,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993239667455976 47.49863028859219, 9.993239667455976 47.49863028859219)" -Branch_LVCableDist_mvgd_33532_lvgd_1161660000_building_431557_LVStation_mvgd_33532_lvgd_1161660000,BusBar_mvgd_33532_lvgd_1161660000_LV,BranchTee_mvgd_33532_lvgd_1161660000_building_431557,0.020401691958436625,0.017708668619922992,0.0017369421311482572,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983673350062642 47.548762746437625, 9.983944199999996 47.54876209624351)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_10_LVCableDist_mvgd_33532_lvgd_1161700000_6,BranchTee_mvgd_33532_lvgd_1161700000_6,BranchTee_mvgd_33532_lvgd_1161700000_10,0.03190079466909835,0.02768988977277737,0.0027159430889727386,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989447599999995 47.548700096243486, 9.989867599999998 47.54866319624345)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_10_LVCableDist_mvgd_33532_lvgd_1161700000_building_441499,BranchTee_mvgd_33532_lvgd_1161700000_10,BranchTee_mvgd_33532_lvgd_1161700000_building_441499,0.04763363175398006,0.041345992362454696,0.004055392171475053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989810009085227 47.54909013282911, 9.989867599999998 47.54866319624345)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_11_LVCableDist_mvgd_33532_lvgd_1161700000_12,BranchTee_mvgd_33532_lvgd_1161700000_11,BranchTee_mvgd_33532_lvgd_1161700000_12,0.006416739898995183,0.0055697302323278195,0.000546303017313022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987232899999999 47.54853989624347, 9.987148799999998 47.54854909624345)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_11_LVCableDist_mvgd_33532_lvgd_1161700000_5,BranchTee_mvgd_33532_lvgd_1161700000_5,BranchTee_mvgd_33532_lvgd_1161700000_11,0.02115446993802823,0.018362079906208504,0.0018010315111279714,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987419699999998 47.548665696243454, 9.987399299999996 47.548615196243496, 9.987315300000004 47.548561896243484, 9.987232899999999 47.54853989624347)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_11_LVCableDist_mvgd_33532_lvgd_1161700000_building_431573,BranchTee_mvgd_33532_lvgd_1161700000_11,BranchTee_mvgd_33532_lvgd_1161700000_building_431573,0.013009548211414116,0.011292287847507453,0.0011075959994712723,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987281954380364 47.548427628249335, 9.987232899999999 47.54853989624347)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_12_LVCableDist_mvgd_33532_lvgd_1161700000_13,BranchTee_mvgd_33532_lvgd_1161700000_12,BranchTee_mvgd_33532_lvgd_1161700000_13,0.0385064309211807,0.03342358203958485,0.0032783282054942866,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987148799999998 47.54854909624345, 9.987104199999997 47.54856069624346, 9.986949799999993 47.548589696243425, 9.986839999999992 47.54858619624345, 9.986670099999996 47.54852369624351)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_12_LVCableDist_mvgd_33532_lvgd_1161700000_building_431567,BranchTee_mvgd_33532_lvgd_1161700000_12,BranchTee_mvgd_33532_lvgd_1161700000_building_431567,0.02443150384699541,0.02120654533919202,0.0020800288743507193,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987083906123187 47.54833365048138, 9.987148799999998 47.54854909624345)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_13_LVCableDist_mvgd_33532_lvgd_1161700000_building_431566,BranchTee_mvgd_33532_lvgd_1161700000_13,BranchTee_mvgd_33532_lvgd_1161700000_building_431566,0.014971584075085666,0.012995334977174358,0.001274638162512348,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986752900007348 47.548401196268365, 9.986670099999996 47.54852369624351)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_14_LVCableDist_mvgd_33532_lvgd_1161700000_16,BranchTee_mvgd_33532_lvgd_1161700000_14,BranchTee_mvgd_33532_lvgd_1161700000_16,0.04833971792785583,0.04195887516137886,0.004115506343678253,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9978763 47.54763559624337, 9.9980494 47.5478465962434, 9.998301899999996 47.54775609624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_14_LVCableDist_mvgd_33532_lvgd_1161700000_25,BranchTee_mvgd_33532_lvgd_1161700000_14,BranchTee_mvgd_33532_lvgd_1161700000_25,0.06822148096185976,0.05921624547489427,0.005808183202324133,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9978763 47.54763559624337, 9.997466500000002 47.54768709624341, 9.997348399999996 47.547699696243356, 9.997275699999998 47.54771159624339, 9.997186400000006 47.54770329624337, 9.997154600000002 47.5476854962434, 9.997122399999997 47.54766269624338, 9.997034800000002 47.54761049624338)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_14_LVCableDist_mvgd_33532_lvgd_1161700000_building_431722,BranchTee_mvgd_33532_lvgd_1161700000_14,BranchTee_mvgd_33532_lvgd_1161700000_building_431722,0.015239056004409337,0.013227500611827304,0.0012974099631986964,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.997838917257223 47.5477703909251, 9.9978763 47.54763559624337)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_15_LVCableDist_mvgd_33532_lvgd_1161700000_20,BranchTee_mvgd_33532_lvgd_1161700000_15,BranchTee_mvgd_33532_lvgd_1161700000_20,0.02526827389528667,0.02193286174110883,0.0021512691005986712,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9955689 47.5489525962435, 9.995745399999995 47.54914599624352)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_15_LVCableDist_mvgd_33532_lvgd_1161700000_building_441503,BranchTee_mvgd_33532_lvgd_1161700000_15,BranchTee_mvgd_33532_lvgd_1161700000_building_441503,0.0072065832979237975,0.006255314302597856,0.0006135480418631124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.995711100016939 47.54920654629925, 9.995745399999995 47.54914599624352)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_16_LVCableDist_mvgd_33532_lvgd_1161700000_building_431723,BranchTee_mvgd_33532_lvgd_1161700000_16,BranchTee_mvgd_33532_lvgd_1161700000_building_431723,0.016917450043022038,0.014684346637343129,0.001440303666538283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.998165814010001 47.54763496844167, 9.998301899999996 47.54775609624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_16_LVCableDist_mvgd_33532_lvgd_1161700000_building_431724,BranchTee_mvgd_33532_lvgd_1161700000_16,BranchTee_mvgd_33532_lvgd_1161700000_building_431724,0.01274034259559096,0.011058617372972953,0.001084676597638446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.998391883720398 47.54765900368296, 9.998301899999996 47.54775609624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_17_LVCableDist_mvgd_33532_lvgd_1161700000_18,BranchTee_mvgd_33532_lvgd_1161700000_17,BranchTee_mvgd_33532_lvgd_1161700000_18,0.1734839537776266,0.15058407187897987,0.014769931288464933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993883899999998 47.54763339624336, 9.994011599999999 47.547732196243416, 9.994395800000003 47.54798649624341, 9.994801699999995 47.54822809624347, 9.994886799999994 47.54827869624346, 9.995120299999996 47.54846529624343, 9.995465400000004 47.54876269624348)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_17_LVCableDist_mvgd_33532_lvgd_1161700000_21,BranchTee_mvgd_33532_lvgd_1161700000_17,BranchTee_mvgd_33532_lvgd_1161700000_21,0.16857393604100912,0.1463221764835959,0.014351906318340364,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9959912 47.54715879624336, 9.995845400000002 47.5471911962433, 9.995720700000003 47.547211596243386, 9.995488800000002 47.54724949624336, 9.995259700000004 47.54728959624333, 9.995009600000005 47.54735759624333, 9.994749400000002 47.54746599624332, 9.994630300000006 47.54750939624338, 9.9944095 47.54756239624337, 9.994210500000007 47.547599196243375, 9.993883899999998 47.54763339624336)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_17_LVCableDist_mvgd_33532_lvgd_1161700000_building_431594,BranchTee_mvgd_33532_lvgd_1161700000_17,BranchTee_mvgd_33532_lvgd_1161700000_building_431594,0.016495085579002963,0.014317734282574572,0.0014043447552014607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.994001700002158 47.547508246283115, 9.993883899999998 47.54763339624336)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_17_LVStation_mvgd_33532_lvgd_1161700000,BusBar_mvgd_33532_lvgd_1161700000_LV,BranchTee_mvgd_33532_lvgd_1161700000_17,0.00830127589147197,0.007205507473797669,0.0007067470613495079,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993883899999998 47.54763339624336, 9.993773700000006 47.54763269624337)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_18_LVCableDist_mvgd_33532_lvgd_1161700000_20,BranchTee_mvgd_33532_lvgd_1161700000_18,BranchTee_mvgd_33532_lvgd_1161700000_20,0.022493450781058844,0.019524315277959076,0.0019150285386195336,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.995465400000004 47.54876269624348, 9.9955689 47.5489525962435)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_18_LVCableDist_mvgd_33532_lvgd_1161700000_building_431579,BranchTee_mvgd_33532_lvgd_1161700000_18,BranchTee_mvgd_33532_lvgd_1161700000_building_431579,0.01834275152267594,0.015921508321682716,0.001561649787960093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99522344999556 47.548781396329304, 9.995465400000004 47.54876269624348)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_19_LVCableDist_mvgd_33532_lvgd_1161700000_22,BranchTee_mvgd_33532_lvgd_1161700000_19,BranchTee_mvgd_33532_lvgd_1161700000_22,0.020926576267112768,0.018164268199853884,0.0017816292909963508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996853200000004 47.54750219624338, 9.996711300000007 47.54759579624337, 9.996663799999995 47.54763929624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_19_LVCableDist_mvgd_33532_lvgd_1161700000_23,BranchTee_mvgd_33532_lvgd_1161700000_19,BranchTee_mvgd_33532_lvgd_1161700000_23,0.009022679003902122,0.007831685375387042,0.000768165274215096,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996663799999995 47.54763929624339, 9.996623199999991 47.54771569624341)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_19_LVCableDist_mvgd_33532_lvgd_1161700000_building_431581,BranchTee_mvgd_33532_lvgd_1161700000_19,BranchTee_mvgd_33532_lvgd_1161700000_building_431581,0.01608250825980567,0.01395961716951132,0.0013692190935882022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996459749995502 47.54759669634574, 9.996663799999995 47.54763929624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_1_LVCableDist_mvgd_33532_lvgd_1161700000_10,BranchTee_mvgd_33532_lvgd_1161700000_1,BranchTee_mvgd_33532_lvgd_1161700000_10,0.3327737553826496,0.28884761967213984,0.028331412759397472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989867599999998 47.54866319624345, 9.9899423 47.54863829624345, 9.990033199999994 47.54857109624349, 9.990067300000005 47.54852259624347, 9.990081300000002 47.54847039624341, 9.990145600000004 47.54836579624344, 9.990211700000001 47.548296696243455, 9.990277800000001 47.54825489624342, 9.990556499999997 47.548157096243415, 9.990704900000008 47.548090696243406, 9.990764699999996 47.548047696243415, 9.990815699999997 47.5479817962434, 9.9908431 47.54791439624343, 9.990883199999997 47.54781169624339, 9.9909282 47.5477517962434, 9.991071200000002 47.54766589624339, 9.991176000000006 47.547722196243406, 9.9913396 47.54778069624336, 9.991528400000005 47.54780809624339, 9.991687500000003 47.54780449624341, 9.991771300000007 47.54793169624338, 9.9919222 47.54805079624341, 9.992052899999997 47.54810349624341, 9.992177300000002 47.54811829624345, 9.9923061 47.548106496243456, 9.992656200000006 47.547979996243406, 9.993052900000002 47.547760696243365)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_1_LVCableDist_mvgd_33532_lvgd_1161700000_4,BranchTee_mvgd_33532_lvgd_1161700000_1,BranchTee_mvgd_33532_lvgd_1161700000_4,0.02633927258711024,0.022862488605611686,0.0022424508885612996,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993352799999998 47.54763879624339, 9.993052900000002 47.547760696243365)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_1_LVCableDist_mvgd_33532_lvgd_1161700000_8,BranchTee_mvgd_33532_lvgd_1161700000_1,BranchTee_mvgd_33532_lvgd_1161700000_8,0.2815150957044651,0.2443551030714757,0.023967396002227907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.990102300000004 47.54706929624335, 9.9901984 47.54714719624332, 9.9904519 47.547273996243355, 9.990688600000006 47.54741239624335, 9.991071200000002 47.54766589624339, 9.991176000000006 47.547722196243406, 9.9913396 47.54778069624336, 9.991528400000005 47.54780809624339, 9.991687500000003 47.54780449624341, 9.991771300000007 47.54793169624338, 9.9919222 47.54805079624341, 9.992052899999997 47.54810349624341, 9.992177300000002 47.54811829624345, 9.9923061 47.548106496243456, 9.992656200000006 47.547979996243406, 9.993052900000002 47.547760696243365)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_20_LVCableDist_mvgd_33532_lvgd_1161700000_building_441502,BranchTee_mvgd_33532_lvgd_1161700000_20,BranchTee_mvgd_33532_lvgd_1161700000_building_441502,0.021340542607360572,0.018523590983188978,0.001816873209918297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.995846065680917 47.548912790791896, 9.9955689 47.5489525962435)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_21_LVCableDist_mvgd_33532_lvgd_1161700000_22,BranchTee_mvgd_33532_lvgd_1161700000_21,BranchTee_mvgd_33532_lvgd_1161700000_22,0.07802489788394834,0.06772561136326716,0.006642818286310191,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996853200000004 47.54750219624338, 9.996809499999996 47.54747579624336, 9.996329000000001 47.5472356962434, 9.996213800000007 47.54719059624334, 9.996145900000004 47.54716399624332, 9.996057699999996 47.54713839624333, 9.9959912 47.54715879624336)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_21_LVCableDist_mvgd_33532_lvgd_1161700000_building_431607,BranchTee_mvgd_33532_lvgd_1161700000_21,BranchTee_mvgd_33532_lvgd_1161700000_building_431607,0.014516753870655147,0.012600542359728668,0.0012359152102099803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996017057918356 47.54728827047961, 9.9959912 47.54715879624336)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_22_LVCableDist_mvgd_33532_lvgd_1161700000_25,BranchTee_mvgd_33532_lvgd_1161700000_22,BranchTee_mvgd_33532_lvgd_1161700000_25,0.01821841093810768,0.015813580694277466,0.0015510637836037774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.997034800000002 47.54761049624338, 9.996853200000004 47.54750219624338)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_23_LVCableDist_mvgd_33532_lvgd_1161700000_building_431583,BranchTee_mvgd_33532_lvgd_1161700000_23,BranchTee_mvgd_33532_lvgd_1161700000_building_431583,0.01981293242740642,0.017197625346988772,0.0016868168162162984,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996366654150465 47.54775504698614, 9.996623199999991 47.54771569624341)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_24_LVCableDist_mvgd_33532_lvgd_1161700000_25,BranchTee_mvgd_33532_lvgd_1161700000_24,BranchTee_mvgd_33532_lvgd_1161700000_25,0.02022347277035708,0.017553974364669944,0.0017217690554550726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.997034800000002 47.54761049624338, 9.996906799999998 47.54777049624341)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_24_LVCableDist_mvgd_33532_lvgd_1161700000_building_431588,BranchTee_mvgd_33532_lvgd_1161700000_24,BranchTee_mvgd_33532_lvgd_1161700000_building_431588,0.008925412850027577,0.007747258353823936,0.0007598843100213599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996788669250055 47.547776755346995, 9.996906799999998 47.54777049624341)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_24_LVCableDist_mvgd_33532_lvgd_1161700000_building_431591,BranchTee_mvgd_33532_lvgd_1161700000_24,BranchTee_mvgd_33532_lvgd_1161700000_building_431591,0.010652156644920686,0.009246071967791154,0.0009068943743414614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.997029560220888 47.54781808893003, 9.996906799999998 47.54777049624341)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_26_LVCableDist_mvgd_33532_lvgd_1161700000_building_431586,BranchTee_mvgd_33532_lvgd_1161700000_26,BranchTee_mvgd_33532_lvgd_1161700000_building_431586,0.009509071219449362,0.008253873818482046,0.0008095753265366234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993623599991334 47.54718494628041, 9.993649599999994 47.547268696243314)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_26_LVCableDist_mvgd_33532_lvgd_1161700000_building_431590,BranchTee_mvgd_33532_lvgd_1161700000_26,BranchTee_mvgd_33532_lvgd_1161700000_building_431590,0.02105166441027499,0.01827284470811869,0.0017922789403689715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993923981917925 47.54723269806306, 9.993649599999994 47.547268696243314)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_26_LVStation_mvgd_33532_lvgd_1161700000,BusBar_mvgd_33532_lvgd_1161700000_LV,BranchTee_mvgd_33532_lvgd_1161700000_26,0.04185678107934615,0.03633168597687246,0.0035635675060225126,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993773700000006 47.54763269624337, 9.993753 47.54751929624337, 9.993738800000001 47.547445896243325, 9.9937115 47.54735889624331, 9.993649599999994 47.547268696243314)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_2_LVCableDist_mvgd_33532_lvgd_1161700000_5,BranchTee_mvgd_33532_lvgd_1161700000_2,BranchTee_mvgd_33532_lvgd_1161700000_5,0.30532901642206284,0.2650255862543505,0.025994845602314385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987419699999998 47.548665696243454, 9.9873341 47.54865919624351, 9.987225699999996 47.548662096243454, 9.987147100000001 47.5487378962435, 9.987099099999995 47.548810896243474, 9.987082599999999 47.54891309624349, 9.987092000000002 47.54907929624354, 9.987085300000004 47.54912939624351, 9.987040900000002 47.5491955962435, 9.986826199999994 47.54941199624355, 9.986739900000005 47.54949699624352, 9.9866821 47.54957639624356, 9.986627799999996 47.54966989624355, 9.986601200000006 47.549751696243646, 9.986599400000001 47.55006649624359, 9.986607300000003 47.55014119624364, 9.986627200000001 47.55021919624358, 9.986677100000001 47.550290896243574, 9.986752499999998 47.550355796243615, 9.986972199999997 47.550482196243635, 9.987231299999996 47.550630996243655, 9.987378800000002 47.550750796243655, 9.987514299999997 47.55093099624363)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_2_LVCableDist_mvgd_33532_lvgd_1161700000_building_441496,BranchTee_mvgd_33532_lvgd_1161700000_2,BranchTee_mvgd_33532_lvgd_1161700000_building_441496,0.022501139916960147,0.019530989447921407,0.0019156831698200392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987218600059771 47.550959796444424, 9.987514299999997 47.55093099624363)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_3_LVCableDist_mvgd_33532_lvgd_1161700000_4,BranchTee_mvgd_33532_lvgd_1161700000_3,BranchTee_mvgd_33532_lvgd_1161700000_4,0.10080821598579871,0.08750153147567329,0.008582525305663165,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992366800000001 47.54703269624337, 9.992517700000006 47.547083996243316, 9.992652799999995 47.547165796243306, 9.992724500000001 47.547213596243324, 9.993133600000006 47.547486996243364, 9.993352799999998 47.54763879624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_3_LVCableDist_mvgd_33532_lvgd_1161700000_building_431574,BranchTee_mvgd_33532_lvgd_1161700000_3,BranchTee_mvgd_33532_lvgd_1161700000_building_431574,0.024135581881108207,0.020949685072801923,0.002054834918323501,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992369278865029 47.54681547440393, 9.992366800000001 47.54703269624337)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_4_LVStation_mvgd_33532_lvgd_1161700000,BusBar_mvgd_33532_lvgd_1161700000_LV,BranchTee_mvgd_33532_lvgd_1161700000_4,0.03171204518287496,0.027526055218735464,0.0026998734935920273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993352799999998 47.54763879624339, 9.993471400000006 47.54763669624338, 9.993773700000006 47.54763269624337)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_5_LVCableDist_mvgd_33532_lvgd_1161700000_7,BranchTee_mvgd_33532_lvgd_1161700000_5,BranchTee_mvgd_33532_lvgd_1161700000_7,0.06447218400210676,0.05596185571382867,0.0054889787037537075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987419699999998 47.548665696243454, 9.987485100000002 47.54869619624352, 9.987692100000004 47.54888049624351, 9.987793999999992 47.548930196243504, 9.987878499999995 47.5489494962435, 9.987976199999999 47.54896019624346, 9.988096699999994 47.54896899624346)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_6_LVCableDist_mvgd_33532_lvgd_1161700000_7,BranchTee_mvgd_33532_lvgd_1161700000_6,BranchTee_mvgd_33532_lvgd_1161700000_7,0.11316001334603015,0.09822289158435417,0.009634122265077106,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988096699999994 47.54896899624346, 9.9883069 47.548984396243505, 9.988478199999992 47.54901019624349, 9.988650999999996 47.549015496243484, 9.988792299999998 47.54900689624354, 9.988898999999998 47.5489787962435, 9.989001399999996 47.54892329624353, 9.989168999999993 47.548829996243526, 9.989447599999995 47.548700096243486)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_6_LVCableDist_mvgd_33532_lvgd_1161700000_building_431577,BranchTee_mvgd_33532_lvgd_1161700000_6,BranchTee_mvgd_33532_lvgd_1161700000_building_431577,0.015493088861594994,0.013448001131864454,0.0013190375994379187,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989620936410024 47.548775164657314, 9.989447599999995 47.548700096243486)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_7_LVCableDist_mvgd_33532_lvgd_1161700000_9,BranchTee_mvgd_33532_lvgd_1161700000_7,BranchTee_mvgd_33532_lvgd_1161700000_9,0.19637191365308687,0.17045082105087941,0.01671854721133588,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988096699999994 47.54896899624346, 9.988035899999998 47.54916989624349, 9.988034600000006 47.54926789624352, 9.988063399999993 47.54934599624354, 9.988146500000001 47.54945229624352, 9.988642699999994 47.54992309624361, 9.988945799999998 47.550114196243555, 9.989081299999999 47.55019969624361, 9.989407799999995 47.55036919624366)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_8_LVCableDist_mvgd_33532_lvgd_1161700000_building_431576,BranchTee_mvgd_33532_lvgd_1161700000_8,BranchTee_mvgd_33532_lvgd_1161700000_building_431576,0.01832980522338012,0.015910270933893945,0.0015605475767937263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989967950027587 47.547206846445434, 9.990102300000004 47.54706929624335)" -Branch_LVCableDist_mvgd_33532_lvgd_1161700000_9_LVCableDist_mvgd_33532_lvgd_1161700000_building_441501,BranchTee_mvgd_33532_lvgd_1161700000_9,BranchTee_mvgd_33532_lvgd_1161700000_building_441501,0.017723873390902457,0.015384322103303334,0.0015089602608702006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989343062227706 47.55021583139031, 9.989407799999995 47.55036919624366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_10_LVCableDist_mvgd_33532_lvgd_1163050000_11,BranchTee_mvgd_33532_lvgd_1163050000_10,BranchTee_mvgd_33532_lvgd_1163050000_11,0.08438556455027736,0.07324667002964075,0.007184347387790842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0001483 47.53597789624237, 10.000396400000005 47.53595789624236, 10.000723600000006 47.53593709624235, 10.000806700000004 47.53595159624233, 10.000860400000004 47.53600049624235, 10.000991800000003 47.53613989624237, 10.0010937 47.536185196242364)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_10_LVCableDist_mvgd_33532_lvgd_1163050000_building_431642,BranchTee_mvgd_33532_lvgd_1163050000_10,BranchTee_mvgd_33532_lvgd_1163050000_building_431642,0.01915252846962669,0.016624394711635966,0.0016305918981956965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000276835587673 47.53612661656431, 10.0001483 47.53597789624237)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_11_LVCableDist_mvgd_33532_lvgd_1163050000_7,BranchTee_mvgd_33532_lvgd_1163050000_7,BranchTee_mvgd_33532_lvgd_1163050000_11,0.01854275008276916,0.01609510707184363,0.0015786770975529743,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0010937 47.536185196242364, 10.001222500000008 47.536206896242334, 10.001335099999997 47.53621599624233)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_11_LVCableDist_mvgd_33532_lvgd_1163050000_building_431649,BranchTee_mvgd_33532_lvgd_1163050000_11,BranchTee_mvgd_33532_lvgd_1163050000_building_431649,0.024969302338647713,0.021673354429946213,0.0021258155110729046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00090277148448 47.53636888734238, 10.0010937 47.536185196242364)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_1_LVCableDist_mvgd_33532_lvgd_1163050000_2,BranchTee_mvgd_33532_lvgd_1163050000_1,BranchTee_mvgd_33532_lvgd_1163050000_2,0.049973111323878015,0.04337666062912612,0.004254568820068454,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002482800000005 47.53720469624245, 10.002253500000002 47.53711139624244, 10.001901699999998 47.53698829624245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_1_LVCableDist_mvgd_33532_lvgd_1163050000_3,BranchTee_mvgd_33532_lvgd_1163050000_1,BranchTee_mvgd_33532_lvgd_1163050000_3,0.053900706550150994,0.04678581328553106,0.004588953126845974,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002172000000003 47.53654919624235, 10.002182699999999 47.536592596242386, 10.002129100000001 47.53669219624238, 10.002056700000006 47.53681719624247, 10.001901699999998 47.53698829624245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_1_LVCableDist_mvgd_33532_lvgd_1163050000_6,BranchTee_mvgd_33532_lvgd_1163050000_1,BranchTee_mvgd_33532_lvgd_1163050000_6,0.07744476014289572,0.06722205180403348,0.006593427006098906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001901699999998 47.53698829624245, 10.001630100000002 47.53690469624244, 10.001405600000004 47.536840396242404, 10.001196300000004 47.5367804962424, 10.001225200000004 47.53670939624245, 10.001239899999998 47.5366641962424, 10.001292200000002 47.53662159624241)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_2_LVCableDist_mvgd_33532_lvgd_1163050000_4,BranchTee_mvgd_33532_lvgd_1163050000_2,BranchTee_mvgd_33532_lvgd_1163050000_4,0.08137467847950138,0.0706332209202072,0.006928009095894634,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002619899999997 47.536704896242426, 10.002780900000003 47.53670849624241, 10.002842500000003 47.536719396242425, 10.002885500000001 47.53676289624237, 10.002874700000007 47.5368298962424, 10.002807699999993 47.53691129624242, 10.002709799999995 47.53700639624244, 10.002482800000005 47.53720469624245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_2_LVCableDist_mvgd_33532_lvgd_1163050000_5,BranchTee_mvgd_33532_lvgd_1163050000_2,BranchTee_mvgd_33532_lvgd_1163050000_5,0.05315552873020958,0.04613899893782192,0.004525510802881357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002241699999995 47.53736399624249, 10.0022927 47.537325996242515, 10.002394600000002 47.537304296242446, 10.002682900000003 47.53728619624245, 10.002482800000005 47.53720469624245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_3_LVCableDist_mvgd_33532_lvgd_1163050000_building_431653,BranchTee_mvgd_33532_lvgd_1163050000_3,BranchTee_mvgd_33532_lvgd_1163050000_building_431653,0.018907581865763485,0.016411781059482704,0.0016097378397676775,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002222100007767 47.53638244636636, 10.002172000000003 47.53654919624235)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_4_LVCableDist_mvgd_33532_lvgd_1163050000_building_431665,BranchTee_mvgd_33532_lvgd_1163050000_4,BranchTee_mvgd_33532_lvgd_1163050000_building_431665,0.014250495715289808,0.012369430280871554,0.0012132467467924335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00246770001501 47.53678104630966, 10.002619899999997 47.536704896242426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_5_LVCableDist_mvgd_33532_lvgd_1163050000_building_431674,BranchTee_mvgd_33532_lvgd_1163050000_5,BranchTee_mvgd_33532_lvgd_1163050000_building_431674,0.026075246885548256,0.022633314296655885,0.0022199724899224387,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00238875014214 47.53757644652685, 10.002241699999995 47.53736399624249)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_6_LVCableDist_mvgd_33532_lvgd_1163050000_building_431657,BranchTee_mvgd_33532_lvgd_1163050000_6,BranchTee_mvgd_33532_lvgd_1163050000_building_431657,0.018771190158193014,0.016293393057311537,0.0015981258370131493,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001121950009063 47.53649824631096, 10.001292200000002 47.53662159624241)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_6_LVCableDist_mvgd_33532_lvgd_1163050000_building_431659,BranchTee_mvgd_33532_lvgd_1163050000_6,BranchTee_mvgd_33532_lvgd_1163050000_building_431659,0.03568933006480465,0.030978338496250438,0.003038488236578868,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001710798843712 47.53647123919371, 10.001292200000002 47.53662159624241)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_6_LVStation_mvgd_33532_lvgd_1163050000,BusBar_mvgd_33532_lvgd_1163050000_LV,BranchTee_mvgd_33532_lvgd_1163050000_6,0.013694650611255594,0.011886956730569855,0.0011659236727279679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001415599999998 47.53653109624242, 10.001292200000002 47.53662159624241)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_7_LVCableDist_mvgd_33532_lvgd_1163050000_8,BranchTee_mvgd_33532_lvgd_1163050000_7,BranchTee_mvgd_33532_lvgd_1163050000_8,0.026673768484280613,0.02315283104435557,0.0022709289195831923,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001662400000003 47.53614169624233, 10.0015242 47.53614989624237, 10.0014183 47.536174296242386, 10.001335099999997 47.53621599624233)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_7_LVStation_mvgd_33532_lvgd_1163050000,BusBar_mvgd_33532_lvgd_1163050000_LV,BranchTee_mvgd_33532_lvgd_1163050000_7,0.03633930599792723,0.03154251760620083,0.003093825342186236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001335099999997 47.53621599624233, 10.0013727 47.53625399624238, 10.001421000000002 47.53638079624235, 10.001415599999998 47.53653109624242)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_8_LVCableDist_mvgd_33532_lvgd_1163050000_9,BranchTee_mvgd_33532_lvgd_1163050000_8,BranchTee_mvgd_33532_lvgd_1163050000_9,0.020169675712979236,0.017507278518865976,0.0017171889267244876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001895699999995 47.53621869624238, 10.001808599999992 47.53616529624237, 10.001662400000003 47.53614169624233)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_8_LVCableDist_mvgd_33532_lvgd_1163050000_building_431651,BranchTee_mvgd_33532_lvgd_1163050000_8,BranchTee_mvgd_33532_lvgd_1163050000_building_431651,0.014177020283898494,0.012305653606423892,0.0012069912571669719,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001616064791682 47.53626536584043, 10.001662400000003 47.53614169624233)" -Branch_LVCableDist_mvgd_33532_lvgd_1163050000_9_LVCableDist_mvgd_33532_lvgd_1163050000_building_431652,BranchTee_mvgd_33532_lvgd_1163050000_9,BranchTee_mvgd_33532_lvgd_1163050000_building_431652,0.010774353315721045,0.009352138678045867,0.0009172978519663369,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001970500000334 47.53630134625734, 10.001895699999995 47.53621869624238)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_10_LVCableDist_mvgd_33532_lvgd_1163060000_building_431732,BranchTee_mvgd_33532_lvgd_1163060000_10,BranchTee_mvgd_33532_lvgd_1163060000_building_431732,0.011004660585452814,0.009552045388173043,0.0009369055590487591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002128700009285 47.54614689626904, 10.002249699999995 47.54609139624322)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_10_LVStation_mvgd_33532_lvgd_1163060000,BusBar_mvgd_33532_lvgd_1163060000_LV,BranchTee_mvgd_33532_lvgd_1163060000_10,0.07548225732657593,0.06551859935946791,0.006426345088035078,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002249699999995 47.54609139624322, 10.002558200000003 47.546152896243264, 10.002882700000004 47.54624889624328, 10.003165199999996 47.54635979624327)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_11_LVCableDist_mvgd_33532_lvgd_1163060000_building_431755,BranchTee_mvgd_33532_lvgd_1163060000_11,BranchTee_mvgd_33532_lvgd_1163060000_building_431755,0.018268294319375347,0.0158568794692178,0.0015553107130616118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003537300008615 47.546450346280274, 10.003316999999992 47.546519096243266)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_11_LVStation_mvgd_33532_lvgd_1163060000,BusBar_mvgd_33532_lvgd_1163060000_LV,BranchTee_mvgd_33532_lvgd_1163060000_11,0.022031166447302474,0.019123052476258548,0.00187567096290929,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003165199999996 47.54635979624327, 10.0031698 47.54640719624328, 10.003216099999996 47.54645399624326, 10.003316999999992 47.546519096243266)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_1_LVCableDist_mvgd_33532_lvgd_1163060000_5,BranchTee_mvgd_33532_lvgd_1163060000_1,BranchTee_mvgd_33532_lvgd_1163060000_5,0.03152153215698992,0.02736068991226725,0.0026836537554513666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0038155 47.54581689624321, 10.003820099999997 47.54567239624326, 10.003791500000005 47.5455936962432, 10.003737799999993 47.54554839624316)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_1_LVCableDist_mvgd_33532_lvgd_1163060000_building_431714,BranchTee_mvgd_33532_lvgd_1163060000_1,BranchTee_mvgd_33532_lvgd_1163060000_building_431714,0.018950298200958886,0.016448858838432313,0.0016133745872707913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003531869892766 47.545646362536665, 10.003737799999993 47.54554839624316)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_2_LVCableDist_mvgd_33532_lvgd_1163060000_3,BranchTee_mvgd_33532_lvgd_1163060000_2,BranchTee_mvgd_33532_lvgd_1163060000_3,0.02145879917938554,0.018626237687706645,0.0018269412387197216,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0033482 47.54619259624319, 10.003580699999997 47.54608099624326)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_2_LVCableDist_mvgd_33532_lvgd_1163060000_building_431752,BranchTee_mvgd_33532_lvgd_1163060000_2,BranchTee_mvgd_33532_lvgd_1163060000_building_431752,0.030044739046468552,0.026078833492334703,0.0025579237827667574,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0036691800475 47.54635311386926, 10.0033482 47.54619259624319)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_2_LVStation_mvgd_33532_lvgd_1163060000,BusBar_mvgd_33532_lvgd_1163060000_LV,BranchTee_mvgd_33532_lvgd_1163060000_2,0.023132949024299364,0.020079399753091847,0.0019694736034574245,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0033482 47.54619259624319, 10.003165199999996 47.54635979624327)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_3_LVCableDist_mvgd_33532_lvgd_1163060000_4,BranchTee_mvgd_33532_lvgd_1163060000_3,BranchTee_mvgd_33532_lvgd_1163060000_4,0.021748881429731113,0.018878029081006605,0.00185163801794519,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003580699999997 47.54608099624326, 10.003748900000001 47.545921896243264)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_3_LVCableDist_mvgd_33532_lvgd_1163060000_building_431729,BranchTee_mvgd_33532_lvgd_1163060000_3,BranchTee_mvgd_33532_lvgd_1163060000_building_431729,0.01994581915855625,0.017312971029626825,0.0016981304152293088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0034390000472 47.54592934632893, 10.003580699999997 47.54608099624326)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_4_LVCableDist_mvgd_33532_lvgd_1163060000_5,BranchTee_mvgd_33532_lvgd_1163060000_4,BranchTee_mvgd_33532_lvgd_1163060000_5,0.012699199282994985,0.011022904977639646,0.001081173772813498,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003748900000001 47.545921896243264, 10.0038155 47.54581689624321)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_4_LVCableDist_mvgd_33532_lvgd_1163060000_building_431733,BranchTee_mvgd_33532_lvgd_1163060000_4,BranchTee_mvgd_33532_lvgd_1163060000_building_431733,0.011768818975231594,0.010215334870501023,0.0010019638348418266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0038046500057 47.54602084626176, 10.003748900000001 47.545921896243264)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_5_LVCableDist_mvgd_33532_lvgd_1163060000_building_431721,BranchTee_mvgd_33532_lvgd_1163060000_5,BranchTee_mvgd_33532_lvgd_1163060000_building_431721,0.009379831828450843,0.00814169402709533,0.0007985722517089769,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003691500005328 47.54582459625946, 10.0038155 47.54581689624321)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_6_LVCableDist_mvgd_33532_lvgd_1163060000_7,BranchTee_mvgd_33532_lvgd_1163060000_6,BranchTee_mvgd_33532_lvgd_1163060000_7,0.034044366086178564,0.029550509762802993,0.0028984406736356685,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002801300000003 47.54582209624321, 10.002632199999995 47.54576689624319, 10.002407500000006 47.5456725962432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_6_LVCableDist_mvgd_33532_lvgd_1163060000_8,BranchTee_mvgd_33532_lvgd_1163060000_6,BranchTee_mvgd_33532_lvgd_1163060000_8,0.08395438849263483,0.07287240921160702,0.0071476382823898055,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001686500000002 47.545296496243225, 10.001717400000004 47.54547839624317, 10.001732499999996 47.5455439962432, 10.001757399999999 47.54558089624317, 10.001817399999993 47.545623396243215, 10.002101999999997 47.545674396243186, 10.002407500000006 47.5456725962432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_6_LVCableDist_mvgd_33532_lvgd_1163060000_building_431713,BranchTee_mvgd_33532_lvgd_1163060000_6,BranchTee_mvgd_33532_lvgd_1163060000_building_431713,0.023343830077798385,0.020262444507529,0.0019874274176425225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002616960629574 47.54551775474078, 10.002407500000006 47.5456725962432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_7_LVCableDist_mvgd_33532_lvgd_1163060000_9,BranchTee_mvgd_33532_lvgd_1163060000_7,BranchTee_mvgd_33532_lvgd_1163060000_9,0.03734788809996756,0.03241796687077184,0.0031796931589008924,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002801300000003 47.54582209624321, 10.002978700000005 47.54588369624324, 10.003030299999995 47.54592469624319, 10.003079399999995 47.54606799624325)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_7_LVCableDist_mvgd_33532_lvgd_1163060000_building_431715,BranchTee_mvgd_33532_lvgd_1163060000_7,BranchTee_mvgd_33532_lvgd_1163060000_building_431715,0.00933667933074627,0.008104237659087762,0.0007948983705681357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002797832462235 47.54573809583885, 10.002801300000003 47.54582209624321)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_7_LVCableDist_mvgd_33532_lvgd_1163060000_building_431719,BranchTee_mvgd_33532_lvgd_1163060000_7,BranchTee_mvgd_33532_lvgd_1163060000_building_431719,0.020545704443264978,0.017833671456754,0.0017492029452424666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002632500003953 47.54596734626925, 10.002801300000003 47.54582209624321)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_8_LVCableDist_mvgd_33532_lvgd_1163060000_building_431708,BranchTee_mvgd_33532_lvgd_1163060000_8,BranchTee_mvgd_33532_lvgd_1163060000_building_431708,0.012657154482605707,0.010986410090901753,0.0010775941978772314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001798090312993 47.545211328826205, 10.001686500000002 47.545296496243225)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_9_LVCableDist_mvgd_33532_lvgd_1163060000_building_431717,BranchTee_mvgd_33532_lvgd_1163060000_9,BranchTee_mvgd_33532_lvgd_1163060000_building_431717,0.013455795052684382,0.011679630105730044,0.0011455881886030972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0032351500029 47.54600869625098, 10.003079399999995 47.54606799624325)" -Branch_LVCableDist_mvgd_33532_lvgd_1163060000_9_LVStation_mvgd_33532_lvgd_1163060000,BusBar_mvgd_33532_lvgd_1163060000_LV,BranchTee_mvgd_33532_lvgd_1163060000_9,0.0330589465197161,0.028695165579113578,0.0028145448494396414,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003079399999995 47.54606799624325, 10.003165199999996 47.54635979624327)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_1_LVCableDist_mvgd_33532_lvgd_1163090000_building_431691,BranchTee_mvgd_33532_lvgd_1163090000_1,BranchTee_mvgd_33532_lvgd_1163090000_building_431691,0.02267723576563147,0.019683840644568115,0.0019306754704243546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002463548234774 47.54041032934746, 10.0023088 47.54058539624277)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_1_LVStation_mvgd_33532_lvgd_1163090000,BusBar_mvgd_33532_lvgd_1163090000_LV,BranchTee_mvgd_33532_lvgd_1163090000_1,0.6104863202836598,0.5299021260062167,0.05197507208473773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0023088 47.54058539624277, 10.002641400000002 47.54059259624277, 10.002984700000004 47.54063779624271, 10.004138199999995 47.54217189624292, 10.004281100000005 47.54212519624287, 10.004474000000004 47.54211079624288, 10.004692699999998 47.542136496242904, 10.004878800000006 47.54220449624286, 10.0052481 47.54228019624293, 10.005510800000007 47.54231229624295, 10.006063500000005 47.54238959624295, 10.005725399999992 47.542487796242945, 10.005540800000002 47.542582696242896, 10.0054897 47.54273129624295, 10.005412800000002 47.54286379624295, 10.005250699999996 47.54287529624295, 10.004883600000007 47.54281189624296, 10.004627499999993 47.54281189624296, 10.004362899999999 47.542869596242944, 10.003917099999994 47.54297719624295, 10.003636499999997 47.54303869624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_2_LVCableDist_mvgd_33532_lvgd_1163090000_4,BranchTee_mvgd_33532_lvgd_1163090000_2,BranchTee_mvgd_33532_lvgd_1163090000_4,0.12640723452385416,0.10972147956670542,0.010761953066134118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0016624 47.542432196242935, 10.001783099999995 47.54252809624295, 10.001896199999997 47.54263479624294, 10.0019976 47.54272189624293, 10.002126399999996 47.542828696242964, 10.002326800000004 47.54294879624293, 10.002503499999994 47.54301379624298, 10.002700400000004 47.54307309624294, 10.002828499999996 47.54311679624299, 10.002930399999997 47.54313009624294)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_2_LVCableDist_mvgd_33532_lvgd_1163090000_building_431697,BranchTee_mvgd_33532_lvgd_1163090000_2,BranchTee_mvgd_33532_lvgd_1163090000_building_431697,0.010766040050959913,0.009344922764233205,0.0009165900842066619,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001763333901351 47.54236359760006, 10.0016624 47.542432196242935)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_3_LVCableDist_mvgd_33532_lvgd_1163090000_4,BranchTee_mvgd_33532_lvgd_1163090000_3,BranchTee_mvgd_33532_lvgd_1163090000_4,0.026503520529367407,0.02300505581949091,0.0022564344920507594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0032514 47.54303369624298, 10.003141700000004 47.54306699624295, 10.003042099999995 47.54310359624293, 10.002930399999997 47.54313009624294)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_3_LVCableDist_mvgd_33532_lvgd_1163090000_building_431711,BranchTee_mvgd_33532_lvgd_1163090000_3,BranchTee_mvgd_33532_lvgd_1163090000_building_431711,0.013828965415448822,0.012003541980609577,0.0011773588538254685,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003273014550103 47.54315729601008, 10.0032514 47.54303369624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_3_LVCableDist_mvgd_33532_lvgd_1163090000_building_431712,BranchTee_mvgd_33532_lvgd_1163090000_3,BranchTee_mvgd_33532_lvgd_1163090000_building_431712,0.03591297104838172,0.03117245886999533,0.0030575283949842496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003720660979763 47.54309067248578, 10.0032514 47.54303369624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_3_LVStation_mvgd_33532_lvgd_1163090000,BusBar_mvgd_33532_lvgd_1163090000_LV,BranchTee_mvgd_33532_lvgd_1163090000_3,0.03104843200171821,0.026950038977491406,0.002643375351404373,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0032514 47.54303369624298, 10.003413899999998 47.54305859624301, 10.003502300000006 47.543083696242974, 10.003636499999997 47.54303869624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_4_LVCableDist_mvgd_33532_lvgd_1163090000_building_431706,BranchTee_mvgd_33532_lvgd_1163090000_4,BranchTee_mvgd_33532_lvgd_1163090000_building_431706,0.008236987225566494,0.0071497049117917166,0.0007012737068554774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002933263986485 47.54320420659557, 10.002930399999997 47.54313009624294)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_5_LVCableDist_mvgd_33532_lvgd_1163090000_building_431698,BranchTee_mvgd_33532_lvgd_1163090000_5,BranchTee_mvgd_33532_lvgd_1163090000_building_431698,0.029333234292753117,0.025461247366109704,0.002497348288059832,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002731951017493 47.542593279352346, 10.0031049 47.542517396242935)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_5_LVCableDist_mvgd_33532_lvgd_1163090000_building_431699,BranchTee_mvgd_33532_lvgd_1163090000_5,BranchTee_mvgd_33532_lvgd_1163090000_building_431699,0.0242627324053796,0.021060051727869494,0.002065660152968476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002947450003482 47.54270789625385, 10.0031049 47.542517396242935)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_5_LVCableDist_mvgd_33532_lvgd_1163090000_building_431704,BranchTee_mvgd_33532_lvgd_1163090000_5,BranchTee_mvgd_33532_lvgd_1163090000_building_431704,0.011027774115690739,0.009572107932419562,0.0009388733793918762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003130898067374 47.54241972017698, 10.0031049 47.542517396242935)" -Branch_LVCableDist_mvgd_33532_lvgd_1163090000_5_LVStation_mvgd_33532_lvgd_1163090000,BusBar_mvgd_33532_lvgd_1163090000_LV,BranchTee_mvgd_33532_lvgd_1163090000_5,0.4547809350243097,0.3947498516011008,0.03871875764500336,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003636499999997 47.54303869624298, 10.003917099999994 47.54297719624295, 10.004362899999999 47.542869596242944, 10.004627499999993 47.54281189624296, 10.004883600000007 47.54281189624296, 10.005250699999996 47.54287529624295, 10.005412800000002 47.54286379624295, 10.0054897 47.54273129624295, 10.005540800000002 47.542582696242896, 10.005725399999992 47.542487796242945, 10.006063500000005 47.54238959624295, 10.005510800000007 47.54231229624295, 10.0052481 47.54228019624293, 10.004878800000006 47.54220449624286, 10.004692699999998 47.542136496242904, 10.004474000000004 47.54211079624288, 10.004281100000005 47.54212519624287, 10.004138199999995 47.54217189624292, 10.003886200000006 47.54226839624288, 10.003621599999999 47.54237109624288, 10.003474999999996 47.54241259624289, 10.003344300000002 47.54243949624293, 10.0031049 47.542517396242935)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_1_LVCableDist_mvgd_33532_lvgd_1163850000_3,BranchTee_mvgd_33532_lvgd_1163850000_1,BranchTee_mvgd_33532_lvgd_1163850000_3,0.020740975881479697,0.018003167065124375,0.001765827801099326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008087199999997 47.566791196245056, 10.0078119 47.56678499624509)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_1_LVCableDist_mvgd_33532_lvgd_1163850000_4,BranchTee_mvgd_33532_lvgd_1163850000_1,BranchTee_mvgd_33532_lvgd_1163850000_4,0.0806979654815543,0.07004583403798914,0.0068703956724969805,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008087199999997 47.566791196245056, 10.0081274 47.56662189624508, 10.008261099999999 47.56617599624502, 10.008384000000003 47.566120996245004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_1_LVCableDist_mvgd_33532_lvgd_1163850000_building_441862,BranchTee_mvgd_33532_lvgd_1163850000_1,BranchTee_mvgd_33532_lvgd_1163850000_building_441862,0.03224527190154948,0.02798889601054495,0.0027452709025425487,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008444803201398 47.56695085984131, 10.008087199999997 47.566791196245056)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_1_LVStation_mvgd_33532_lvgd_1163850000,BusBar_mvgd_33532_lvgd_1163850000_LV,BranchTee_mvgd_33532_lvgd_1163850000_1,0.023365165939511195,0.020280964035495716,0.001989243892334368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008394199999996 47.56682179624508, 10.008087199999997 47.566791196245056)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_2_LVCableDist_mvgd_33532_lvgd_1163850000_3,BranchTee_mvgd_33532_lvgd_1163850000_2,BranchTee_mvgd_33532_lvgd_1163850000_3,0.30787772110571526,0.26723786191976084,0.026211835083084393,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0078119 47.56678499624509, 10.007556899999996 47.56679709624507, 10.007482099999997 47.56682229624508, 10.007368099999997 47.566860796245074, 10.007265099999996 47.56693609624508, 10.0071363 47.56707499624505, 10.006861699999998 47.56736459624511, 10.006647099999999 47.56749199624514, 10.006432499999995 47.56757309624514, 10.006209300000005 47.56761359624512, 10.0059105 47.56762139624511, 10.0055141 47.56760299624514, 10.0048931 47.56757969624518, 10.0048275 47.56766289624516, 10.004727500000005 47.56770029624515, 10.004660200000007 47.56765249624512, 10.004378000000006 47.56769629624514)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_2_LVCableDist_mvgd_33532_lvgd_1163850000_building_441863,BranchTee_mvgd_33532_lvgd_1163850000_2,BranchTee_mvgd_33532_lvgd_1163850000_building_441863,0.017046806414746252,0.014796627967999748,0.0014513167007727966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00443066170011 47.567845513171676, 10.004378000000006 47.56769629624514)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_3_LVCableDist_mvgd_33532_lvgd_1163850000_building_441843,BranchTee_mvgd_33532_lvgd_1163850000_3,BranchTee_mvgd_33532_lvgd_1163850000_building_441843,0.019060215055535092,0.01654426666820446,0.001622732596205818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.007715250004587 47.566943546279006, 10.0078119 47.56678499624509)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_3_LVCableDist_mvgd_33532_lvgd_1163850000_building_441847,BranchTee_mvgd_33532_lvgd_1163850000_3,BranchTee_mvgd_33532_lvgd_1163850000_building_441847,0.02161594235745653,0.018762637966272266,0.0018403199627574191,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.007843050004592 47.56697839627904, 10.0078119 47.56678499624509)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_4_LVCableDist_mvgd_33532_lvgd_1163850000_building_441868,BranchTee_mvgd_33532_lvgd_1163850000_4,BranchTee_mvgd_33532_lvgd_1163850000_building_441868,0.011122355113940446,0.009654204238900307,0.000946925737059106,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008359726693804 47.56602225321569, 10.008384000000003 47.566120996245004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_4_LVCableDist_mvgd_33532_lvgd_1163850000_building_441869,BranchTee_mvgd_33532_lvgd_1163850000_4,BranchTee_mvgd_33532_lvgd_1163850000_building_441869,0.012861031259453887,0.011163375133205974,0.0010949516878340326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008529217589034 47.56618193095539, 10.008384000000003 47.566120996245004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_5_LVCableDist_mvgd_33532_lvgd_1163850000_9,BranchTee_mvgd_33532_lvgd_1163850000_5,BranchTee_mvgd_33532_lvgd_1163850000_9,0.009441884488645795,0.00819555573614455,0.0008038552390250297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012581599999995 47.55948959624443, 10.012655999999996 47.559421196244436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_5_LVCableDist_mvgd_33532_lvgd_1163850000_building_441684,BranchTee_mvgd_33532_lvgd_1163850000_5,BranchTee_mvgd_33532_lvgd_1163850000_building_441684,0.012556369274624998,0.010898928530374498,0.0010690136314077997,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012534861664449 47.55934354486765, 10.012655999999996 47.559421196244436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_6_LVCableDist_mvgd_33532_lvgd_1163850000_7,BranchTee_mvgd_33532_lvgd_1163850000_6,BranchTee_mvgd_33532_lvgd_1163850000_7,0.04257941721982392,0.03695893414680716,0.0036250906953953998,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009044899999992 47.56690459624507, 10.009074499999999 47.566521896245035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_6_LVCableDist_mvgd_33532_lvgd_1163850000_8,BranchTee_mvgd_33532_lvgd_1163850000_6,BranchTee_mvgd_33532_lvgd_1163850000_8,0.03735314941742763,0.03242253369432718,0.0031801410925321014,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009074499999999 47.566521896245035, 10.009179300000001 47.56619329624503)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_6_LVCableDist_mvgd_33532_lvgd_1163850000_building_442028,BranchTee_mvgd_33532_lvgd_1163850000_6,BranchTee_mvgd_33532_lvgd_1163850000_building_442028,0.02524606680339699,0.021913585985348587,0.002149378451843066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00924156857571 47.56671889816666, 10.009074499999999 47.566521896245035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_6_LVCableDist_mvgd_33532_lvgd_1163850000_building_442086,BranchTee_mvgd_33532_lvgd_1163850000_6,BranchTee_mvgd_33532_lvgd_1163850000_building_442086,0.027805069600196814,0.024134800412970836,0.0023672446847291958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008713500011945 47.566469246308884, 10.009074499999999 47.566521896245035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_6_LVCableDist_mvgd_33532_lvgd_1163850000_building_442099,BranchTee_mvgd_33532_lvgd_1163850000_6,BranchTee_mvgd_33532_lvgd_1163850000_building_442099,0.031202808715635633,0.02708403796517173,0.00265651854653827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009484568937298 47.56648145068764, 10.009074499999999 47.566521896245035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_7_LVCableDist_mvgd_33532_lvgd_1163850000_building_442020,BranchTee_mvgd_33532_lvgd_1163850000_7,BranchTee_mvgd_33532_lvgd_1163850000_building_442020,0.023130898749161796,0.02007762011427244,0.001969299048853123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008923200023524 47.56709574631851, 10.009044899999992 47.56690459624507)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_7_LVCableDist_mvgd_33532_lvgd_1163850000_building_442110,BranchTee_mvgd_33532_lvgd_1163850000_7,BranchTee_mvgd_33532_lvgd_1163850000_building_442110,0.03566297259565902,0.030955460213032034,0.003036244236486976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008587800005706 47.56698864627876, 10.009044899999992 47.56690459624507)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_7_LVStation_mvgd_33532_lvgd_1163850000,BusBar_mvgd_33532_lvgd_1163850000_LV,BranchTee_mvgd_33532_lvgd_1163850000_7,0.04985255812393195,0.04327202045157293,0.004244305262886156,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009044899999992 47.56690459624507, 10.008394199999996 47.56682179624508)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_8_LVCableDist_mvgd_33532_lvgd_1163850000_9,BranchTee_mvgd_33532_lvgd_1163850000_8,BranchTee_mvgd_33532_lvgd_1163850000_9,0.9047974150964693,0.7853641563037354,0.07703188312208618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009179300000001 47.56619329624503, 10.009485900000001 47.565881596245, 10.009829199999999 47.565603596245026, 10.0100267 47.56550559624498, 10.010334199999996 47.5653978962449, 10.010442499999998 47.56530199624495, 10.010458099999996 47.56524669624494, 10.010527600000003 47.56498589624492, 10.0106855 47.56455889624491, 10.010670600000001 47.56430079624485, 10.010630799999996 47.56398859624482, 10.010138299999994 47.563144196244785, 10.009910599999992 47.56251039624472, 10.009740600000004 47.56199409624466, 10.0097275 47.56194549624465, 10.009677599999993 47.561580796244606, 10.009714000000004 47.56140839624458, 10.009808199999998 47.561251396244586, 10.010083599999994 47.5610417962446, 10.010490500000003 47.560891596244545, 10.010726200000004 47.56078989624454, 10.010752399999994 47.56077669624453, 10.0115197 47.56046639624453, 10.011966100000006 47.56031579624449, 10.012277200000005 47.56008299624448, 10.0124125 47.55996429624445, 10.012480200000008 47.55983199624446, 10.012540999999993 47.559603696244395, 10.012581599999995 47.55948959624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_8_LVCableDist_mvgd_33532_lvgd_1163850000_building_442096,BranchTee_mvgd_33532_lvgd_1163850000_8,BranchTee_mvgd_33532_lvgd_1163850000_building_442096,0.025479434930238264,0.022116149519446814,0.0021692467516097494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009361891155297 47.56638636531383, 10.009179300000001 47.56619329624503)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850000_9_LVCableDist_mvgd_33532_lvgd_1163850000_building_441674,BranchTee_mvgd_33532_lvgd_1163850000_9,BranchTee_mvgd_33532_lvgd_1163850000_building_441674,0.028483443135018854,0.024723628641196364,0.0024249994815219744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012269980657234 47.55934431148304, 10.012581599999995 47.55948959624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_10_LVCableDist_mvgd_33532_lvgd_1163850001_8,BranchTee_mvgd_33532_lvgd_1163850001_8,BranchTee_mvgd_33532_lvgd_1163850001_10,0.05786447706459987,0.01851663266067196,0.00474463067890401,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021748599999995 47.54493689624315, 10.0225157 47.54496409624314)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_10_LVCableDist_mvgd_33532_lvgd_1163850001_building_444913,BranchTee_mvgd_33532_lvgd_1163850001_10,BranchTee_mvgd_33532_lvgd_1163850001_building_444913,0.018903962092669323,0.016408639096436972,0.0016094296625632938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02234105106837 47.544841920436326, 10.0225157 47.54496409624314)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_10_LVCableDist_mvgd_33532_lvgd_1163850001_building_444916,BranchTee_mvgd_33532_lvgd_1163850001_10,BranchTee_mvgd_33532_lvgd_1163850001_building_444916,0.013923545191962384,0.01208563722662335,0.0011854111074775515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022457274226714 47.54484520530877, 10.0225157 47.54496409624314)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_11_LVCableDist_mvgd_33532_lvgd_1163850001_12,BranchTee_mvgd_33532_lvgd_1163850001_11,BranchTee_mvgd_33532_lvgd_1163850001_12,0.01026342307430732,0.0032842953837783424,0.0008415552072572168,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020590100000005 47.54473059624313, 10.020726300000003 47.54472819624313)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_11_LVCableDist_mvgd_33532_lvgd_1163850001_13,BranchTee_mvgd_33532_lvgd_1163850001_11,BranchTee_mvgd_33532_lvgd_1163850001_13,0.024356870173768592,0.00779419845560595,0.001997155410901381,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020299200000004 47.5448262962431, 10.020590100000005 47.54473059624313)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_11_LVCableDist_mvgd_33532_lvgd_1163850001_building_444876,BranchTee_mvgd_33532_lvgd_1163850001_11,BranchTee_mvgd_33532_lvgd_1163850001_building_444876,0.02599306515403645,0.022561980553703637,0.002212975770622668,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020549521263442 47.54449827325138, 10.020590100000005 47.54473059624313)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_12_LVCableDist_mvgd_33532_lvgd_1163850001_24,BranchTee_mvgd_33532_lvgd_1163850001_12,BranchTee_mvgd_33532_lvgd_1163850001_24,0.027211243320696375,0.00870759786262284,0.0022312013591060803,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020726300000003 47.54472819624313, 10.021079000000006 47.544675296243135)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_12_LVCableDist_mvgd_33532_lvgd_1163850001_27,BranchTee_mvgd_33532_lvgd_1163850001_12,BranchTee_mvgd_33532_lvgd_1163850001_27,0.011036050761585854,0.003531536243707473,0.0009049072535280206,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020726300000003 47.54472819624313, 10.020855599999994 47.54477489624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_13_LVCableDist_mvgd_33532_lvgd_1163850001_16,BranchTee_mvgd_33532_lvgd_1163850001_13,BranchTee_mvgd_33532_lvgd_1163850001_16,0.007510706948072794,0.0024034262233832942,0.0006158446842317472,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0202027 47.544843296243066, 10.020299200000004 47.5448262962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_13_LVCableDist_mvgd_33532_lvgd_1163850001_building_444882,BranchTee_mvgd_33532_lvgd_1163850001_13,BranchTee_mvgd_33532_lvgd_1163850001_building_444882,0.021073206488382325,0.01829154323191586,0.0017941129717391807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020286129417439 47.54463683731063, 10.020299200000004 47.5448262962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_14_LVCableDist_mvgd_33532_lvgd_1163850001_18,BranchTee_mvgd_33532_lvgd_1163850001_14,BranchTee_mvgd_33532_lvgd_1163850001_18,0.034188387204106094,0.01094028390531395,0.0028032962366489286,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019288599999996 47.544227496243096, 10.019257200000006 47.54429039624313, 10.019257199999995 47.544394696243124, 10.019265799999994 47.544452596243076, 10.0193001 47.544527896243125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_14_LVCableDist_mvgd_33532_lvgd_1163850001_34,BranchTee_mvgd_33532_lvgd_1163850001_14,BranchTee_mvgd_33532_lvgd_1163850001_34,0.05656013744230148,0.018099243981536475,0.004637680610371323,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019771600000002 47.54450099624305, 10.019755400000003 47.54437999624308, 10.019720499999998 47.54431799624308, 10.019663399999999 47.5442761962431, 10.019578499999996 47.54424489624307, 10.019471800000002 47.54424979624312, 10.019288599999996 47.544227496243096)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_14_LVCableDist_mvgd_33532_lvgd_1163850001_36,BranchTee_mvgd_33532_lvgd_1163850001_14,BranchTee_mvgd_33532_lvgd_1163850001_36,0.08577916889335266,0.027449334045872853,0.007033511698168906,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018635599999994 47.54359839624307, 10.019020900000003 47.543926796243035, 10.019203300000003 47.54410459624303, 10.019288599999996 47.544227496243096)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_15_LVCableDist_mvgd_33532_lvgd_1163850001_17,BranchTee_mvgd_33532_lvgd_1163850001_15,BranchTee_mvgd_33532_lvgd_1163850001_17,0.017574861620365288,0.005623955718516892,0.0014410607656297565,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019476100000004 47.54486489624315, 10.019599199999996 47.54482769624308, 10.019694900000005 47.54481179624312)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_15_LVCableDist_mvgd_33532_lvgd_1163850001_18,BranchTee_mvgd_33532_lvgd_1163850001_15,BranchTee_mvgd_33532_lvgd_1163850001_18,0.040437235067321185,0.01293991522154278,0.003315674068155373,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0193001 47.544527896243125, 10.019385899999993 47.5446089962431, 10.019428799999996 47.54468439624315, 10.019476100000004 47.54486489624315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_15_LVStation_mvgd_33532_lvgd_1163850001,BusBar_mvgd_33532_lvgd_1163850001_LV,BranchTee_mvgd_33532_lvgd_1163850001_15,0.05674070828156523,0.018157026650100876,0.004652486618947704,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019476100000004 47.54486489624315, 10.019644699999994 47.54516389624318, 10.019700400000003 47.545350696243155)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_16_LVCableDist_mvgd_33532_lvgd_1163850001_17,BranchTee_mvgd_33532_lvgd_1163850001_16,BranchTee_mvgd_33532_lvgd_1163850001_17,0.03841235768028122,0.01229195445768999,0.0031496430961508526,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019694900000005 47.54481179624312, 10.0202027 47.544843296243066)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_16_LVCableDist_mvgd_33532_lvgd_1163850001_building_444900,BranchTee_mvgd_33532_lvgd_1163850001_16,BranchTee_mvgd_33532_lvgd_1163850001_building_444900,0.01711237192574981,0.014853538831550836,0.0014568987622334028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020050272935748 47.54472909929467, 10.0202027 47.544843296243066)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_16_LVCableDist_mvgd_33532_lvgd_1163850001_building_444907,BranchTee_mvgd_33532_lvgd_1163850001_16,BranchTee_mvgd_33532_lvgd_1163850001_building_444907,0.020621120397188022,0.0178991325047592,0.001755623645446966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020069250009328 47.54500534630388, 10.0202027 47.544843296243066)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_17_LVCableDist_mvgd_33532_lvgd_1163850001_building_444871,BranchTee_mvgd_33532_lvgd_1163850001_17,BranchTee_mvgd_33532_lvgd_1163850001_building_444871,0.014012412762338737,0.012162774277710025,0.0011929770401165668,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019690804810743 47.544685710273995, 10.019694900000005 47.54481179624312)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_18_LVCableDist_mvgd_33532_lvgd_1163850001_building_431844,BranchTee_mvgd_33532_lvgd_1163850001_18,BranchTee_mvgd_33532_lvgd_1163850001_building_431844,0.01516479051503907,0.013163038167053913,0.0012910872102799504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01948833355186 47.544479505076296, 10.0193001 47.544527896243125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_19_LVCableDist_mvgd_33532_lvgd_1163850001_20,BranchTee_mvgd_33532_lvgd_1163850001_19,BranchTee_mvgd_33532_lvgd_1163850001_20,0.038074521896546185,0.01218384700689478,0.003121942059085377,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0240534 47.54445969624309, 10.024252799999998 47.5443569962431, 10.024505899999998 47.54433579624308)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_19_LVCableDist_mvgd_33532_lvgd_1163850001_28,BranchTee_mvgd_33532_lvgd_1163850001_19,BranchTee_mvgd_33532_lvgd_1163850001_28,0.022686527629159983,0.007259688841331194,0.001860194724769526,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0240534 47.54445969624309, 10.023893199999995 47.54428679624306)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_19_LVCableDist_mvgd_33532_lvgd_1163850001_4,BranchTee_mvgd_33532_lvgd_1163850001_4,BranchTee_mvgd_33532_lvgd_1163850001_19,0.11584957664946703,0.03707186452782945,0.009499151869902132,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023387400000004 47.54525159624315, 10.023504899999999 47.54517339624319, 10.023835999999992 47.54502909624316, 10.023974099999998 47.544966896243146, 10.024052599999997 47.544917296243156, 10.024083299999994 47.54487829624317, 10.024102899999997 47.544829396243145, 10.024117799999999 47.5447674962431, 10.024125700000003 47.54465339624311, 10.024122499999994 47.5445342962431, 10.0240534 47.54445969624309)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_1_LVCableDist_mvgd_33532_lvgd_1163850001_31,BranchTee_mvgd_33532_lvgd_1163850001_1,BranchTee_mvgd_33532_lvgd_1163850001_31,0.11219849159005087,0.03590351730881628,0.009199779075694477,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027229200000006 47.544983296243146, 10.027403900000003 47.544984296243186, 10.027769299999996 47.54500749624317, 10.028072999999997 47.54502039624313, 10.028080699999997 47.54493979624312, 10.028094400000004 47.54481979624317, 10.028096799999997 47.544715296243076, 10.028086099999996 47.544584896243116)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_1_LVCableDist_mvgd_33532_lvgd_1163850001_4,BranchTee_mvgd_33532_lvgd_1163850001_1,BranchTee_mvgd_33532_lvgd_1163850001_4,0.3009428491207999,0.09630171171865597,0.02467597992705028,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023387400000004 47.54525159624315, 10.023515999999994 47.545291596243196, 10.0239076 47.54536709624315, 10.024400399999994 47.5454162962432, 10.024664100000003 47.54543609624317, 10.024808400000003 47.54542899624318, 10.024926600000006 47.545408296243195, 10.025173599999992 47.54533529624318, 10.025422200000003 47.54525879624317, 10.025599799999997 47.54518579624316, 10.025690899999999 47.54515619624314, 10.025958700000007 47.54509739624316, 10.026289 47.54504919624317, 10.026545200000005 47.54502399624315, 10.026997499999995 47.54499179624312, 10.027229200000006 47.544983296243146)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_1_LVCableDist_mvgd_33532_lvgd_1163850001_building_444949,BranchTee_mvgd_33532_lvgd_1163850001_1,BranchTee_mvgd_33532_lvgd_1163850001_building_444949,0.01211976647420352,0.010519957299608656,0.0010318425085335627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027187199998455 47.545088596278376, 10.027229200000006 47.544983296243146)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_20_LVCableDist_mvgd_33532_lvgd_1163850001_21,BranchTee_mvgd_33532_lvgd_1163850001_20,BranchTee_mvgd_33532_lvgd_1163850001_21,0.037828956917009195,0.012105266213442942,0.0031018068190438075,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024505899999998 47.54433579624308, 10.024487099999996 47.54408049624305, 10.024393200000004 47.54402439624305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_20_LVCableDist_mvgd_33532_lvgd_1163850001_building_444912,BranchTee_mvgd_33532_lvgd_1163850001_20,BranchTee_mvgd_33532_lvgd_1163850001_building_444912,0.013804587619215273,0.011982382053478857,0.001175283397464846,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024688649996639 47.544344996316944, 10.024505899999998 47.54433579624308)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_21_LVCableDist_mvgd_33532_lvgd_1163850001_building_444906,BranchTee_mvgd_33532_lvgd_1163850001_21,BranchTee_mvgd_33532_lvgd_1163850001_building_444906,0.01542831843431921,0.013391780400989074,0.001313523229148583,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024294362709664 47.54414601731079, 10.024393200000004 47.54402439624305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_22_LVCableDist_mvgd_33532_lvgd_1163850001_33,BranchTee_mvgd_33532_lvgd_1163850001_22,BranchTee_mvgd_33532_lvgd_1163850001_33,0.22682954437121147,0.07258545419878767,0.01859901738857804,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023800200000005 47.54395709624309, 10.023814100000001 47.543802696243, 10.023890699999997 47.543671296243, 10.024006699999996 47.54356519624305, 10.024148999999998 47.54346619624301, 10.024295599999997 47.54337729624302, 10.0244484 47.543277696242974, 10.024550200000004 47.543195296242985, 10.024657500000004 47.543067896242995, 10.024781799999996 47.542881596242985, 10.0248801 47.54276249624294, 10.0249787 47.54268319624297, 10.025120099999999 47.542573596242946, 10.025200200000006 47.542492996242935, 10.025299999999998 47.5424806962429, 10.025572100000002 47.542445896242896)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_22_LVCableDist_mvgd_33532_lvgd_1163850001_building_444869,BranchTee_mvgd_33532_lvgd_1163850001_22,BranchTee_mvgd_33532_lvgd_1163850001_building_444869,0.019494003046439896,0.01692079464430983,0.0016596640741892963,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02566006015993 47.54228088996157, 10.025572100000002 47.542445896242896)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_23_LVCableDist_mvgd_33532_lvgd_1163850001_3,BranchTee_mvgd_33532_lvgd_1163850001_3,BranchTee_mvgd_33532_lvgd_1163850001_23,0.03144686920129949,0.010062998144415839,0.0025785039101173623,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025462299999994 47.54204079624288, 10.025561300000003 47.541973296242894, 10.0256148 47.54192859624286, 10.025639400000003 47.54179939624283)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_23_LVCableDist_mvgd_33532_lvgd_1163850001_33,BranchTee_mvgd_33532_lvgd_1163850001_23,BranchTee_mvgd_33532_lvgd_1163850001_33,0.25349079739065383,0.08111705516500922,0.02078512198039603,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023800200000005 47.54395709624309, 10.023814100000001 47.543802696243, 10.023890699999997 47.543671296243, 10.024006699999996 47.54356519624305, 10.024148999999998 47.54346619624301, 10.024295599999997 47.54337729624302, 10.0244484 47.543277696242974, 10.024550200000004 47.543195296242985, 10.024657500000004 47.543067896242995, 10.024781799999996 47.542881596242985, 10.0248801 47.54276249624294, 10.0249787 47.54268319624297, 10.025120099999999 47.542573596242946, 10.025200200000006 47.542492996242935, 10.025248899999996 47.54233739624293, 10.0252906 47.54221359624287, 10.025360900000003 47.54211649624293, 10.025462299999994 47.54204079624288)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_23_LVCableDist_mvgd_33532_lvgd_1163850001_building_444862,BranchTee_mvgd_33532_lvgd_1163850001_23,BranchTee_mvgd_33532_lvgd_1163850001_building_444862,0.012976284738143759,0.011263415152708782,0.0011047640417949525,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025390950007557 47.54193449629415, 10.025462299999994 47.54204079624288)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_24_LVCableDist_mvgd_33532_lvgd_1163850001_30,BranchTee_mvgd_33532_lvgd_1163850001_24,BranchTee_mvgd_33532_lvgd_1163850001_30,0.02522772900299689,0.008072873280959004,0.002068561975477056,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021079000000006 47.544675296243135, 10.021385500000003 47.5445837962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_24_LVCableDist_mvgd_33532_lvgd_1163850001_building_444902,BranchTee_mvgd_33532_lvgd_1163850001_24,BranchTee_mvgd_33532_lvgd_1163850001_building_444902,0.016072136497228204,0.013950614479594082,0.0013683360711687007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020976933089704 47.544548268477236, 10.021079000000006 47.544675296243135)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_25_LVCableDist_mvgd_33532_lvgd_1163850001_30,BranchTee_mvgd_33532_lvgd_1163850001_25,BranchTee_mvgd_33532_lvgd_1163850001_30,0.008254341854303548,0.0026413893933771356,0.0006768194509451382,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021385500000003 47.5445837962431, 10.021494899999993 47.54458799624309)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_25_LVCableDist_mvgd_33532_lvgd_1163850001_32,BranchTee_mvgd_33532_lvgd_1163850001_25,BranchTee_mvgd_33532_lvgd_1163850001_32,0.01717049370559283,0.005494557985789706,0.0014079043886724059,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021494899999993 47.54458799624309, 10.021715799999996 47.54462609624317)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_25_LVCableDist_mvgd_33532_lvgd_1163850001_building_444874,BranchTee_mvgd_33532_lvgd_1163850001_25,BranchTee_mvgd_33532_lvgd_1163850001_building_444874,0.010704930861358118,0.009291879987658846,0.0009113874212983148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02155977680074 47.54450227453233, 10.021494899999993 47.54458799624309)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_26_LVCableDist_mvgd_33532_lvgd_1163850001_33,BranchTee_mvgd_33532_lvgd_1163850001_26,BranchTee_mvgd_33532_lvgd_1163850001_33,0.25601354886168054,0.08192433563573777,0.020991976420838318,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023800200000005 47.54395709624309, 10.023814100000001 47.543802696243, 10.023890699999997 47.543671296243, 10.024006699999996 47.54356519624305, 10.024148999999998 47.54346619624301, 10.024295599999997 47.54337729624302, 10.0244484 47.543277696242974, 10.024550200000004 47.543195296242985, 10.024657500000004 47.543067896242995, 10.024781799999996 47.542881596242985, 10.0248801 47.54276249624294, 10.0249787 47.54268319624297, 10.025092800000005 47.54274159624294, 10.0252948 47.542844896242926, 10.025383900000003 47.542875196242996, 10.0254521 47.54288199624297, 10.025544600000005 47.542866596242966, 10.025659899999992 47.54284399624296, 10.025708299999996 47.54284669624297, 10.025775299999996 47.54287749624296, 10.025823600000003 47.54292279624294, 10.025848600000003 47.54301069624297)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_26_LVCableDist_mvgd_33532_lvgd_1163850001_building_444878,BranchTee_mvgd_33532_lvgd_1163850001_26,BranchTee_mvgd_33532_lvgd_1163850001_building_444878,0.014299818867357579,0.012412242776866379,0.0012174459799267285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02566404669125 47.543040811455796, 10.025848600000003 47.54301069624297)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_27_LVCableDist_mvgd_33532_lvgd_1163850001_9,BranchTee_mvgd_33532_lvgd_1163850001_9,BranchTee_mvgd_33532_lvgd_1163850001_27,0.029416206344847037,0.009413186030351052,0.0024119985552607213,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020855599999994 47.54477489624311, 10.020937700000001 47.54483739624311, 10.021108299999998 47.54497669624315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_27_LVCableDist_mvgd_33532_lvgd_1163850001_building_444921,BranchTee_mvgd_33532_lvgd_1163850001_27,BranchTee_mvgd_33532_lvgd_1163850001_building_444921,0.018724106968966883,0.016252524849063255,0.0015941173079557407,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020699070321731 47.5449058067372, 10.020855599999994 47.54477489624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_28_LVCableDist_mvgd_33532_lvgd_1163850001_29,BranchTee_mvgd_33532_lvgd_1163850001_28,BranchTee_mvgd_33532_lvgd_1163850001_29,0.012768928822914543,0.004086057223332653,0.0010469955748896897,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023893199999995 47.54428679624306, 10.023836899999994 47.5441783962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_28_LVCableDist_mvgd_33532_lvgd_1163850001_building_444908,BranchTee_mvgd_33532_lvgd_1163850001_28,BranchTee_mvgd_33532_lvgd_1163850001_building_444908,0.02067044530490659,0.017941946524658917,0.0017598230280523853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023749126641757 47.544445130827974, 10.023893199999995 47.54428679624306)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_29_LVCableDist_mvgd_33532_lvgd_1163850001_33,BranchTee_mvgd_33532_lvgd_1163850001_29,BranchTee_mvgd_33532_lvgd_1163850001_33,0.024742901896576887,0.007917728606904604,0.0020288083013789296,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023836899999994 47.5441783962431, 10.023800200000005 47.54395709624309)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_29_LVCableDist_mvgd_33532_lvgd_1163850001_building_444905,BranchTee_mvgd_33532_lvgd_1163850001_29,BranchTee_mvgd_33532_lvgd_1163850001_building_444905,0.016492054816263653,0.01431510358051685,0.0014040867246664372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024055487223123 47.54418667529091, 10.023836899999994 47.5441783962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_2_LVCableDist_mvgd_33532_lvgd_1163850001_35,BranchTee_mvgd_33532_lvgd_1163850001_2,BranchTee_mvgd_33532_lvgd_1163850001_35,0.04957284753283972,0.01586331121050871,0.00406475380365677,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0218206 47.544617996243126, 10.021898100000003 47.54460279624308, 10.021962 47.5445786962431, 10.021988099999998 47.54456159624312, 10.0220006 47.544522396243096, 10.022000400000001 47.54447069624306, 10.021943 47.54424859624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_2_LVCableDist_mvgd_33532_lvgd_1163850001_7,BranchTee_mvgd_33532_lvgd_1163850001_2,BranchTee_mvgd_33532_lvgd_1163850001_7,0.04459020890717263,0.014268866850295242,0.003656199518117481,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021943 47.54424859624311, 10.021866299999996 47.54391239624304, 10.021879200000004 47.54385189624305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_2_LVCableDist_mvgd_33532_lvgd_1163850001_building_444885,BranchTee_mvgd_33532_lvgd_1163850001_2,BranchTee_mvgd_33532_lvgd_1163850001_building_444885,0.024200812308435637,0.021006305083722133,0.0020603884517112537,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02162438457654 47.54422070537497, 10.021943 47.54424859624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_30_LVCableDist_mvgd_33532_lvgd_1163850001_building_444904,BranchTee_mvgd_33532_lvgd_1163850001_30,BranchTee_mvgd_33532_lvgd_1163850001_building_444904,0.012105901986483843,0.010507922924267976,0.0010306621254116063,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021325795847453 47.54448263772723, 10.021385500000003 47.5445837962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_31_LVCableDist_mvgd_33532_lvgd_1163850001_building_444957,BranchTee_mvgd_33532_lvgd_1163850001_31,BranchTee_mvgd_33532_lvgd_1163850001_building_444957,0.009393818045529396,0.008153834063519516,0.0007997629985229478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02799979092903 47.54452387229045, 10.028086099999996 47.544584896243116)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_32_LVCableDist_mvgd_33532_lvgd_1163850001_35,BranchTee_mvgd_33532_lvgd_1163850001_32,BranchTee_mvgd_33532_lvgd_1163850001_35,0.007945735209565614,0.0025426352670609963,0.0006515150737414425,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021715799999996 47.54462609624317, 10.0218206 47.544617996243126)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_32_LVCableDist_mvgd_33532_lvgd_1163850001_building_444881,BranchTee_mvgd_33532_lvgd_1163850001_32,BranchTee_mvgd_33532_lvgd_1163850001_building_444881,0.017029696251384775,0.014781776346201984,0.001449859990041455,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021606450005763 47.544760246296825, 10.021715799999996 47.54462609624317)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_34_LVCableDist_mvgd_33532_lvgd_1163850001_building_444875,BranchTee_mvgd_33532_lvgd_1163850001_34,BranchTee_mvgd_33532_lvgd_1163850001_building_444875,0.014087035060410919,0.012227546432436677,0.0011993301707151824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019957375724198 47.54448649213634, 10.019771600000002 47.54450099624305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_35_LVCableDist_mvgd_33532_lvgd_1163850001_building_444890,BranchTee_mvgd_33532_lvgd_1163850001_35,BranchTee_mvgd_33532_lvgd_1163850001_building_444890,0.007366218504322498,0.006393877661751928,0.000627138930117544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021771005993381 47.544560857456176, 10.0218206 47.544617996243126)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_36_LVCableDist_mvgd_33532_lvgd_1163850001_building_431834,BranchTee_mvgd_33532_lvgd_1163850001_36,BranchTee_mvgd_33532_lvgd_1163850001_building_431834,0.026800261916186757,0.023262627343250106,0.0022816982112497325,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01863909998445 47.543839596295676, 10.018635599999994 47.54359839624307)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_37_LVCableDist_mvgd_33532_lvgd_1163850001_4,BranchTee_mvgd_33532_lvgd_1163850001_4,BranchTee_mvgd_33532_lvgd_1163850001_37,0.02727680227297231,0.00872857672735114,0.00223657690265239,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023027999999995 47.54522279624318, 10.023210300000002 47.545241496243214, 10.023387400000004 47.54525159624315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_37_LVCableDist_mvgd_33532_lvgd_1163850001_6,BranchTee_mvgd_33532_lvgd_1163850001_6,BranchTee_mvgd_33532_lvgd_1163850001_37,0.10080439373951905,0.032257405996646095,0.008265513547644961,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0216971 47.54515259624312, 10.022018499999996 47.54518939624316, 10.022516099999997 47.5451869962432, 10.023027999999995 47.54522279624318)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_37_LVCableDist_mvgd_33532_lvgd_1163850001_building_444914,BranchTee_mvgd_33532_lvgd_1163850001_37,BranchTee_mvgd_33532_lvgd_1163850001_building_444914,0.019075163924527103,0.016557242286489526,0.0016240053004706475,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023007861665548 47.5450516571174, 10.023027999999995 47.54522279624318)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_38_LVCableDist_mvgd_33532_lvgd_1163850001_40,BranchTee_mvgd_33532_lvgd_1163850001_38,BranchTee_mvgd_33532_lvgd_1163850001_40,0.03343246428680527,0.015011176464775566,0.0028358419732604253,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.018683499999993 47.545282596243204, 10.019106300000004 47.54537409624323)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_38_LVCableDist_mvgd_33532_lvgd_1163850001_building_431839,BranchTee_mvgd_33532_lvgd_1163850001_38,BranchTee_mvgd_33532_lvgd_1163850001_building_431839,0.016165234364655477,0.014031423428520954,0.0013762621592884466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018936228313464 47.545285370160144, 10.019106300000004 47.54537409624323)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_38_LVStation_mvgd_33532_lvgd_1163850001,BusBar_mvgd_33532_lvgd_1163850001_LV,BranchTee_mvgd_33532_lvgd_1163850001_38,0.04547102415643732,0.02041648984624036,0.0038569887569088234,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.019106300000004 47.54537409624323, 10.019236500000003 47.54537759624319, 10.019367600000004 47.5453435962432, 10.019700400000003 47.545350696243155)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_39_LVCableDist_mvgd_33532_lvgd_1163850001_40,BranchTee_mvgd_33532_lvgd_1163850001_39,BranchTee_mvgd_33532_lvgd_1163850001_40,0.047717193231530154,0.02142501976095704,0.004047515560064693,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.01808674833744 47.54513854787915, 10.018683499999993 47.545282596243204)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_39_LVCableDist_mvgd_33532_lvgd_1163850001_building_431821,BranchTee_mvgd_33532_lvgd_1163850001_39,BranchTee_mvgd_33532_lvgd_1163850001_building_431821,0.031112069793361403,0.0270052765806377,0.0026487932923116016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018007949266716 47.5448636726949, 10.01808674833744 47.54513854787915)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_39_LVCableDist_mvgd_33532_lvgd_1163850001_building_431829,BranchTee_mvgd_33532_lvgd_1163850001_39,BranchTee_mvgd_33532_lvgd_1163850001_building_431829,0.044937092459205324,0.03900539625459022,0.0038258164716295207,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018408412410864 47.544797932674655, 10.01808674833744 47.54513854787915)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_3_LVCableDist_mvgd_33532_lvgd_1163850001_building_444861,BranchTee_mvgd_33532_lvgd_1163850001_3,BranchTee_mvgd_33532_lvgd_1163850001_building_444861,0.015990558975559312,0.013879805190785483,0.001361390792579551,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025427372202401 47.54179265165128, 10.025639400000003 47.54179939624283)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_40_LVCableDist_mvgd_33532_lvgd_1163850001_building_431833,BranchTee_mvgd_33532_lvgd_1163850001_40,BranchTee_mvgd_33532_lvgd_1163850001_building_431833,0.007852415448842822,0.0068158966095955694,0.0006685323576182315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018701373020676 47.54521296831066, 10.018683499999993 47.545282596243204)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_41_LVCableDist_mvgd_33532_lvgd_1163850001_42,BranchTee_mvgd_33532_lvgd_1163850001_41,BranchTee_mvgd_33532_lvgd_1163850001_42,0.02149824603912613,0.018660477561961483,0.0018302996323649409,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019214599999994 47.546414296243285, 10.019147700000003 47.54622619624327)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_41_LVCableDist_mvgd_33532_lvgd_1163850001_43,BranchTee_mvgd_33532_lvgd_1163850001_41,BranchTee_mvgd_33532_lvgd_1163850001_43,0.09859924528084042,0.08558414490376949,0.008394459811304612,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019147700000003 47.54622619624327, 10.019130300000004 47.546079496243244, 10.019162399999999 47.54598549624321, 10.019270700000005 47.545916796243176, 10.019584699999994 47.54580809624323, 10.019594899999994 47.54573919624322, 10.019690600000006 47.54551339624319)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_41_LVCableDist_mvgd_33532_lvgd_1163850001_building_431860,BranchTee_mvgd_33532_lvgd_1163850001_41,BranchTee_mvgd_33532_lvgd_1163850001_building_431860,0.01881785724345264,0.01633390008731689,0.0016020989401602053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019397426385035 47.54623064175421, 10.019147700000003 47.54622619624327)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_42_LVCableDist_mvgd_33532_lvgd_1163850001_building_431857,BranchTee_mvgd_33532_lvgd_1163850001_42,BranchTee_mvgd_33532_lvgd_1163850001_building_431857,0.02068714596896575,0.01795644270106227,0.001761244875175732,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018946115913247 47.54637513182112, 10.019214599999994 47.546414296243285)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_42_LVCableDist_mvgd_33532_lvgd_1163850001_building_431867,BranchTee_mvgd_33532_lvgd_1163850001_42,BranchTee_mvgd_33532_lvgd_1163850001_building_431867,0.024738468779349772,0.0214729909004756,0.0021061629971910007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019302959504953 47.546628740202635, 10.019214599999994 47.546414296243285)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_42_LVCableDist_mvgd_33532_lvgd_1163850001_building_431868,BranchTee_mvgd_33532_lvgd_1163850001_42,BranchTee_mvgd_33532_lvgd_1163850001_building_431868,0.04784348926191585,0.04152814867934296,0.004073258843896833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019520807865781 47.54679155446607, 10.019214599999994 47.546414296243285)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_42_LVCableDist_mvgd_33532_lvgd_1163850001_building_444923,BranchTee_mvgd_33532_lvgd_1163850001_42,BranchTee_mvgd_33532_lvgd_1163850001_building_444923,0.04534599305862517,0.03936032197488665,0.003860629107759457,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019615313711057 47.54671886494488, 10.019214599999994 47.546414296243285)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_43_LVCableDist_mvgd_33532_lvgd_1163850001_building_444943,BranchTee_mvgd_33532_lvgd_1163850001_43,BranchTee_mvgd_33532_lvgd_1163850001_building_444943,0.010611472172529047,0.009210757845755212,0.0009034306138688231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019719026791288 47.5456069381515, 10.019690600000006 47.54551339624319)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_43_LVStation_mvgd_33532_lvgd_1163850001,BusBar_mvgd_33532_lvgd_1163850001_LV,BranchTee_mvgd_33532_lvgd_1163850001_43,0.01812353738167237,0.015731230447291616,0.001542986518363224,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019690600000006 47.54551339624319, 10.019702999999996 47.54542459624318, 10.019700400000003 47.545350696243155)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_44_LVCableDist_mvgd_33532_lvgd_1163850001_45,BranchTee_mvgd_33532_lvgd_1163850001_44,BranchTee_mvgd_33532_lvgd_1163850001_45,0.03225537308958219,0.027997663841757343,0.002746130889013495,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020061800000002 47.54535809624316, 10.020241499999994 47.54537369624321, 10.020331899999993 47.54541139624316, 10.020440200000005 47.5454724962432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_44_LVCableDist_mvgd_33532_lvgd_1163850001_building_444918,BranchTee_mvgd_33532_lvgd_1163850001_44,BranchTee_mvgd_33532_lvgd_1163850001_building_444918,0.007290720406264261,0.006328345312637378,0.0006207112363945886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020083476721977 47.54529414409925, 10.020061800000002 47.54535809624316)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_44_LVStation_mvgd_33532_lvgd_1163850001,BusBar_mvgd_33532_lvgd_1163850001_LV,BranchTee_mvgd_33532_lvgd_1163850001_44,0.02723740933797923,0.02364207130536597,0.002318915701641268,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019700400000003 47.545350696243155, 10.019840400000001 47.5453545962432, 10.020061800000002 47.54535809624316)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_45_LVCableDist_mvgd_33532_lvgd_1163850001_46,BranchTee_mvgd_33532_lvgd_1163850001_45,BranchTee_mvgd_33532_lvgd_1163850001_46,0.025230630872993876,0.021900187597758684,0.002148064280552505,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020440200000005 47.5454724962432, 10.020500799999997 47.545499296243186, 10.020585399999996 47.5455190962432, 10.020758000000004 47.545527896243215)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_45_LVCableDist_mvgd_33532_lvgd_1163850001_47,BranchTee_mvgd_33532_lvgd_1163850001_45,BranchTee_mvgd_33532_lvgd_1163850001_47,0.008585833010332725,0.007452503052968806,0.0007309734465666918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020440200000005 47.5454724962432, 10.020365900000003 47.5455310962432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_46_LVCableDist_mvgd_33532_lvgd_1163850001_building_444898,BranchTee_mvgd_33532_lvgd_1163850001_46,BranchTee_mvgd_33532_lvgd_1163850001_building_444898,0.0234417636228705,0.020347450824651593,0.0019957652016280372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021020750014458 47.545414846310315, 10.020758000000004 47.545527896243215)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_47_LVCableDist_mvgd_33532_lvgd_1163850001_building_444956,BranchTee_mvgd_33532_lvgd_1163850001_47,BranchTee_mvgd_33532_lvgd_1163850001_building_444956,0.008338712151485876,0.00723800214748974,0.000709934278242266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020430899999946 47.54559184626193, 10.020365900000003 47.5455310962432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_5_LVCableDist_mvgd_33532_lvgd_1163850001_6,BranchTee_mvgd_33532_lvgd_1163850001_5,BranchTee_mvgd_33532_lvgd_1163850001_6,0.010420124635422013,0.0033344398833350442,0.0008544040408078405,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021560699999998 47.54513699624317, 10.0216971 47.54515259624312)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_5_LVCableDist_mvgd_33532_lvgd_1163850001_9,BranchTee_mvgd_33532_lvgd_1163850001_5,BranchTee_mvgd_33532_lvgd_1163850001_9,0.038452678003326406,0.01230485696106445,0.003152949183951317,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021108299999998 47.54497669624315, 10.021560699999998 47.54513699624317)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_5_LVCableDist_mvgd_33532_lvgd_1163850001_building_444965,BranchTee_mvgd_33532_lvgd_1163850001_5,BranchTee_mvgd_33532_lvgd_1163850001_building_444965,0.019091175609290353,0.016571140428864026,0.001625368489852813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021475426520883 47.54497518814503, 10.021560699999998 47.54513699624317)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_6_LVCableDist_mvgd_33532_lvgd_1163850001_8,BranchTee_mvgd_33532_lvgd_1163850001_6,BranchTee_mvgd_33532_lvgd_1163850001_8,0.02427768323241788,0.007768858634373722,0.001990662432646662,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0216971 47.54515259624312, 10.021748599999995 47.54493689624315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_7_LVCableDist_mvgd_33532_lvgd_1163850001_building_444887,BranchTee_mvgd_33532_lvgd_1163850001_7,BranchTee_mvgd_33532_lvgd_1163850001_building_444887,0.02929757766482301,0.025430297413066374,0.002494312583990157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021885850037147 47.54358824629545, 10.021879200000004 47.54385189624305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_7_LVCableDist_mvgd_33532_lvgd_1163850001_building_444894,BranchTee_mvgd_33532_lvgd_1163850001_7,BranchTee_mvgd_33532_lvgd_1163850001_building_444894,0.038467772246952206,0.033390026310354516,0.0032750369157258396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022271760331545 47.54363046776418, 10.021879200000004 47.54385189624305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_7_LVCableDist_mvgd_33532_lvgd_1163850001_building_444896,BranchTee_mvgd_33532_lvgd_1163850001_7,BranchTee_mvgd_33532_lvgd_1163850001_building_444896,0.014905816531743183,0.012938248749553082,0.0012690389005919935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021982800003633 47.543737596277595, 10.021879200000004 47.54385189624305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_8_LVCableDist_mvgd_33532_lvgd_1163850001_building_444888,BranchTee_mvgd_33532_lvgd_1163850001_8,BranchTee_mvgd_33532_lvgd_1163850001_building_444888,0.012402309808691196,0.010765204913943957,0.0010558974458665332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021598181736657 47.54498228093213, 10.021748599999995 47.54493689624315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_8_LVCableDist_mvgd_33532_lvgd_1163850001_building_444889,BranchTee_mvgd_33532_lvgd_1163850001_8,BranchTee_mvgd_33532_lvgd_1163850001_building_444889,0.02315231613915325,0.020096210408785023,0.0019711224646311466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021992455281143 47.54481006088488, 10.021748599999995 47.54493689624315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850001_9_LVCableDist_mvgd_33532_lvgd_1163850001_building_444960,BranchTee_mvgd_33532_lvgd_1163850001_9,BranchTee_mvgd_33532_lvgd_1163850001_building_444960,0.014908643083434509,0.012940702196421154,0.0012692795451781649,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021247798236274 47.544881512105185, 10.021108299999998 47.54497669624315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_10_LVCableDist_mvgd_33532_lvgd_1163850002_4,BranchTee_mvgd_33532_lvgd_1163850002_4,BranchTee_mvgd_33532_lvgd_1163850002_10,0.02689868112197268,0.023348055213872284,0.002290077343009588,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021311299999999 47.54944629624353, 10.021036000000002 47.54929209624356)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_10_LVCableDist_mvgd_33532_lvgd_1163850002_building_445441,BranchTee_mvgd_33532_lvgd_1163850002_10,BranchTee_mvgd_33532_lvgd_1163850002_building_445441,0.03741977694911906,0.032480366391835346,0.003185813571418903,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021367702718388 47.5497809083816, 10.021311299999999 47.54944629624353)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_11_LVCableDist_mvgd_33532_lvgd_1163850002_5,BranchTee_mvgd_33532_lvgd_1163850002_5,BranchTee_mvgd_33532_lvgd_1163850002_11,0.016786899849625652,0.014571029069475066,0.0014291889937159653,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021055500000001 47.54912709624349, 10.021204100000006 47.54901449624347)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_11_LVCableDist_mvgd_33532_lvgd_1163850002_building_445425,BranchTee_mvgd_33532_lvgd_1163850002_11,BranchTee_mvgd_33532_lvgd_1163850002_building_445425,0.02032412025912518,0.01764133638492066,0.0017303378969017397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020991133875444 47.54890217648193, 10.021204100000006 47.54901449624347)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_12_LVCableDist_mvgd_33532_lvgd_1163850002_13,BranchTee_mvgd_33532_lvgd_1163850002_12,BranchTee_mvgd_33532_lvgd_1163850002_13,0.12052371297395421,0.10461458286139226,0.010261046745209399,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022899700000002 47.549764696243585, 10.022879000000003 47.54960219624357, 10.022844699999995 47.549490796243525, 10.022787300000006 47.54944129624351, 10.022658899999998 47.54942889624353, 10.022420499999996 47.549507796243546, 10.022246299999999 47.549538796243525, 10.022051400000006 47.54952019624358, 10.021757899999994 47.549422696243525)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_12_LVCableDist_mvgd_33532_lvgd_1163850002_building_445439,BranchTee_mvgd_33532_lvgd_1163850002_12,BranchTee_mvgd_33532_lvgd_1163850002_building_445439,0.013830157602675143,0.012004576799122025,0.0011774603532611935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023021468206807 47.549857860493745, 10.022899700000002 47.549764696243585)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_13_LVCableDist_mvgd_33532_lvgd_1163850002_7,BranchTee_mvgd_33532_lvgd_1163850002_7,BranchTee_mvgd_33532_lvgd_1163850002_13,0.01771857798232008,0.015379725688653829,0.0015085094248176263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021551499999998 47.549346196243505, 10.021757899999994 47.549422696243525)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_13_LVCableDist_mvgd_33532_lvgd_1163850002_building_445444,BranchTee_mvgd_33532_lvgd_1163850002_13,BranchTee_mvgd_33532_lvgd_1163850002_building_445444,0.012523958584822074,0.01087079605162556,0.00106625427729477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021731933700032 47.5495340330409, 10.021757899999994 47.549422696243525)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_14_LVCableDist_mvgd_33532_lvgd_1163850002_15,BranchTee_mvgd_33532_lvgd_1163850002_14,BranchTee_mvgd_33532_lvgd_1163850002_15,0.05098854835077871,0.04425805996847592,0.00434102024562399,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014399799999996 47.54768779624335, 10.0140519 47.54763709624338, 10.013737499999996 47.54759299624337)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_14_LVCableDist_mvgd_33532_lvgd_1163850002_9,BranchTee_mvgd_33532_lvgd_1163850002_9,BranchTee_mvgd_33532_lvgd_1163850002_14,0.1023429607313627,0.08883368991482282,0.008713189116025527,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015748899999995 47.54777699624341, 10.015681099999998 47.547778496243396, 10.015610199999992 47.54777999624341, 10.015347700000003 47.5477641962434, 10.014830499999997 47.54773529624339, 10.014631199999997 47.54772369624335, 10.014399799999996 47.54768779624335)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_14_LVCableDist_mvgd_33532_lvgd_1163850002_building_431851,BranchTee_mvgd_33532_lvgd_1163850002_14,BranchTee_mvgd_33532_lvgd_1163850002_building_431851,0.027830707417948526,0.02415705403877932,0.0023694274157445632,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014207900043646 47.54790184630209, 10.014399799999996 47.54768779624335)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_15_LVCableDist_mvgd_33532_lvgd_1163850002_building_431801,BranchTee_mvgd_33532_lvgd_1163850002_15,BranchTee_mvgd_33532_lvgd_1163850002_building_431801,0.020388760159149096,0.017697443818141416,0.0017358411544714295,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013722671997906 47.5477762263596, 10.013737499999996 47.54759299624337)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_16_LVCableDist_mvgd_33532_lvgd_1163850002_3,BranchTee_mvgd_33532_lvgd_1163850002_3,BranchTee_mvgd_33532_lvgd_1163850002_16,0.008335906145855672,0.007235566534602723,0.0007096953828894065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021565799999996 47.54872019624347, 10.021669499999998 47.54869399624346)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_16_LVCableDist_mvgd_33532_lvgd_1163850002_9,BranchTee_mvgd_33532_lvgd_1163850002_9,BranchTee_mvgd_33532_lvgd_1163850002_16,0.7278449209982019,0.6317693914264392,0.061966650158212115,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015748899999995 47.54777699624341, 10.0155893 47.547599496243365, 10.015402499999999 47.547391696243324, 10.015345699999992 47.54725859624334, 10.015341799999996 47.547172896243325, 10.0153883 47.547081296243384, 10.015480999999994 47.547017896243354, 10.015637599999998 47.54696909624338, 10.015821399999995 47.54696509624329, 10.018677099999996 47.54734949624335, 10.0189357 47.54741779624339, 10.019054100000004 47.54749899624343, 10.019116300000004 47.54759619624336, 10.0191181 47.54767999624337, 10.019104800000001 47.5477641962434, 10.019048899999998 47.54785219624343, 10.0189799 47.54791159624339, 10.018707499999994 47.5480740962434, 10.018647499999995 47.548161496243424, 10.018632300000005 47.548235596243394, 10.0186498 47.548302496243416, 10.018704599999996 47.54836589624347, 10.018761499999998 47.54843579624345, 10.018866399999997 47.54852009624344, 10.018940600000008 47.54857279624349, 10.019117899999996 47.548669596243435, 10.019218899999998 47.54870669624342, 10.019353300000004 47.54871629624348, 10.019465200000006 47.54870279624347, 10.019803899999996 47.54856239624347, 10.019947100000001 47.548538196243456, 10.020308800000004 47.54853429624344, 10.0206322 47.54854049624342, 10.020817599999999 47.548552096243476, 10.020998899999995 47.54859669624347, 10.021284100000006 47.54869909624347, 10.021407499999999 47.548716396243485, 10.021486600000003 47.54872459624351, 10.021565799999996 47.54872019624347)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_17_LVCableDist_mvgd_33532_lvgd_1163850002_18,BranchTee_mvgd_33532_lvgd_1163850002_17,BranchTee_mvgd_33532_lvgd_1163850002_18,0.05259068515208208,0.045648714712007245,0.004477421624280046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021567400000006 47.547765096243396, 10.021580799999997 47.547724696243385, 10.021776699999997 47.547313696243336)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_17_LVCableDist_mvgd_33532_lvgd_1163850002_20,BranchTee_mvgd_33532_lvgd_1163850002_17,BranchTee_mvgd_33532_lvgd_1163850002_20,0.054386566146632065,0.04720753941527663,0.0046303178334923594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021776699999997 47.547313696243336, 10.021792399999999 47.547233696243346, 10.021805000000002 47.547103896243364, 10.0217457 47.546983096243316, 10.021584400000002 47.546878396243315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_17_LVCableDist_mvgd_33532_lvgd_1163850002_building_444928,BranchTee_mvgd_33532_lvgd_1163850002_17,BranchTee_mvgd_33532_lvgd_1163850002_building_444928,0.027134641517056225,0.023552868836804804,0.0023101663411347418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021422050791509 47.54735651257184, 10.021776699999997 47.547313696243336)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_17_LVCableDist_mvgd_33532_lvgd_1163850002_building_444931,BranchTee_mvgd_33532_lvgd_1163850002_17,BranchTee_mvgd_33532_lvgd_1163850002_building_444931,0.030771474848247205,0.026709640168278575,0.0026197960056635037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021934316396246 47.54756920401591, 10.021776699999997 47.547313696243336)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_18_LVCableDist_mvgd_33532_lvgd_1163850002_23,BranchTee_mvgd_33532_lvgd_1163850002_18,BranchTee_mvgd_33532_lvgd_1163850002_23,0.025080293192083332,0.021769694490728332,0.002135264957221645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021494799999996 47.54798539624339, 10.021567400000006 47.547765096243396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_18_LVCableDist_mvgd_33532_lvgd_1163850002_building_444933,BranchTee_mvgd_33532_lvgd_1163850002_18,BranchTee_mvgd_33532_lvgd_1163850002_building_444933,0.024112387165493195,0.020929552059648093,0.0020528601860878713,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021819603579655 47.547898744899314, 10.021567400000006 47.547765096243396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_19_LVCableDist_mvgd_33532_lvgd_1163850002_20,BranchTee_mvgd_33532_lvgd_1163850002_19,BranchTee_mvgd_33532_lvgd_1163850002_20,0.1035364619973866,0.08986964901373157,0.00881480042536002,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021584400000002 47.546878396243315, 10.020940500000002 47.546616596243275, 10.0208271 47.546572096243246, 10.020671199999997 47.54681729624328, 10.020669800000007 47.54685259624332, 10.020688600000003 47.54688159624335)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_19_LVCableDist_mvgd_33532_lvgd_1163850002_21,BranchTee_mvgd_33532_lvgd_1163850002_19,BranchTee_mvgd_33532_lvgd_1163850002_21,0.019206400741241338,0.01667115584339748,0.001635178430452863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020688600000003 47.54688159624335, 10.020727499999996 47.54692679624334, 10.020795900000003 47.546966596243294, 10.020872400000005 47.54699559624329)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_19_LVCableDist_mvgd_33532_lvgd_1163850002_building_444932,BranchTee_mvgd_33532_lvgd_1163850002_19,BranchTee_mvgd_33532_lvgd_1163850002_building_444932,0.024934679253043043,0.02164330159164136,0.0021228677998625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020378333861643 47.54695981098453, 10.020688600000003 47.54688159624335)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_1_LVCableDist_mvgd_33532_lvgd_1163850002_11,BranchTee_mvgd_33532_lvgd_1163850002_1,BranchTee_mvgd_33532_lvgd_1163850002_11,0.016633200247495334,0.01443761781482595,0.0014161034459572424,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021204100000006 47.54901449624347, 10.021361500000001 47.54890949624347)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_1_LVCableDist_mvgd_33532_lvgd_1163850002_16,BranchTee_mvgd_33532_lvgd_1163850002_1,BranchTee_mvgd_33532_lvgd_1163850002_16,0.02606101039087961,0.0226209570192835,0.002218760435185007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021361500000001 47.54890949624347, 10.021565799999996 47.54872019624347)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_1_LVCableDist_mvgd_33532_lvgd_1163850002_building_445428,BranchTee_mvgd_33532_lvgd_1163850002_1,BranchTee_mvgd_33532_lvgd_1163850002_building_445428,0.02136588599558002,0.018545589044163455,0.0018190308740391986,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02158109503761 47.54903121730225, 10.021361500000001 47.54890949624347)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_20_LVCableDist_mvgd_33532_lvgd_1163850002_building_444926,BranchTee_mvgd_33532_lvgd_1163850002_20,BranchTee_mvgd_33532_lvgd_1163850002_building_444926,0.0291198906046756,0.02527606504485842,0.0024791848121583564,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021385976878516 47.54710332795675, 10.021584400000002 47.546878396243315)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_21_LVCableDist_mvgd_33532_lvgd_1163850002_building_444919,BranchTee_mvgd_33532_lvgd_1163850002_21,BranchTee_mvgd_33532_lvgd_1163850002_building_444919,0.0176256716175974,0.015299082964074543,0.0015005996406944563,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020985624253827 47.54685676755838, 10.020872400000005 47.54699559624329)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_21_LVCableDist_mvgd_33532_lvgd_1163850002_building_444936,BranchTee_mvgd_33532_lvgd_1163850002_21,BranchTee_mvgd_33532_lvgd_1163850002_building_444936,0.03509144560880691,0.030459374788444394,0.0029875860514416343,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020861667317252 47.547311347236196, 10.020872400000005 47.54699559624329)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_22_LVCableDist_mvgd_33532_lvgd_1163850002_23,BranchTee_mvgd_33532_lvgd_1163850002_22,BranchTee_mvgd_33532_lvgd_1163850002_23,0.019177248646981847,0.016645851825580243,0.0016326965039129627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021529399999995 47.54815639624343, 10.021494799999996 47.54798539624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_22_LVCableDist_mvgd_33532_lvgd_1163850002_building_444939,BranchTee_mvgd_33532_lvgd_1163850002_22,BranchTee_mvgd_33532_lvgd_1163850002_building_444939,0.026481479481747495,0.022985924190156826,0.002254557979832868,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021210628717306 47.548256911471455, 10.021529399999995 47.54815639624343)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_22_LVStation_mvgd_33532_lvgd_1163850002,BusBar_mvgd_33532_lvgd_1163850002_LV,BranchTee_mvgd_33532_lvgd_1163850002_22,0.023285749429066267,0.020212030504429518,0.0019824825961055263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021668099999998 47.54834369624342, 10.021529399999995 47.54815639624343)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_23_LVCableDist_mvgd_33532_lvgd_1163850002_building_444929,BranchTee_mvgd_33532_lvgd_1163850002_23,BranchTee_mvgd_33532_lvgd_1163850002_building_444929,0.020225002144462705,0.01755530186139363,0.0017218992620243983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021226471373295 47.54799193638755, 10.021494799999996 47.54798539624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_23_LVCableDist_mvgd_33532_lvgd_1163850002_building_444934,BranchTee_mvgd_33532_lvgd_1163850002_23,BranchTee_mvgd_33532_lvgd_1163850002_building_444934,0.016399337692632396,0.01423462511720492,0.0013961930519925188,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021706792679048 47.54801900835296, 10.021494799999996 47.54798539624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_24_LVCableDist_mvgd_33532_lvgd_1163850002_25,BranchTee_mvgd_33532_lvgd_1163850002_24,BranchTee_mvgd_33532_lvgd_1163850002_25,0.06450096591525778,0.055986838414443754,0.005491429114125009,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022402399999999 47.54837449624345, 10.022445900000006 47.54849519624349, 10.022446 47.54870439624346, 10.022547999999997 47.54859929624346, 10.022628199999998 47.54849089624348)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_24_LVCableDist_mvgd_33532_lvgd_1163850002_building_444945,BranchTee_mvgd_33532_lvgd_1163850002_24,BranchTee_mvgd_33532_lvgd_1163850002_building_444945,0.022570500076595938,0.019591194066485275,0.0019215882968918532,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022748939734386 47.548304975179704, 10.022628199999998 47.54849089624348)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_25_LVCableDist_mvgd_33532_lvgd_1163850002_26,BranchTee_mvgd_33532_lvgd_1163850002_25,BranchTee_mvgd_33532_lvgd_1163850002_26,0.04075447621893819,0.03537488535803835,0.0034697203997475683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022402399999999 47.54837449624345, 10.022257899999994 47.548287796243386, 10.022157000000005 47.54825839624344, 10.021920900000001 47.54828009624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_25_LVCableDist_mvgd_33532_lvgd_1163850002_building_444947,BranchTee_mvgd_33532_lvgd_1163850002_25,BranchTee_mvgd_33532_lvgd_1163850002_building_444947,0.017493861260146057,0.015184671573806777,0.0014893776810822159,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022191488600628 47.5484404173078, 10.022402399999999 47.54837449624345)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_26_LVCableDist_mvgd_33532_lvgd_1163850002_building_444941,BranchTee_mvgd_33532_lvgd_1163850002_26,BranchTee_mvgd_33532_lvgd_1163850002_building_444941,0.018221073467134877,0.015815891769473074,0.0015512904637659997,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021777221836636 47.54814816327815, 10.021920900000001 47.54828009624339)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_26_LVStation_mvgd_33532_lvgd_1163850002,BusBar_mvgd_33532_lvgd_1163850002_LV,BranchTee_mvgd_33532_lvgd_1163850002_26,0.02031094716734062,0.01762990214125166,0.0017292163772667651,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021920900000001 47.54828009624339, 10.021668099999998 47.54834369624342)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_2_LVCableDist_mvgd_33532_lvgd_1163850002_3,BranchTee_mvgd_33532_lvgd_1163850002_2,BranchTee_mvgd_33532_lvgd_1163850002_3,0.020433739608062558,0.0177364859797983,0.0017396705770513208,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0218863 47.54879209624351, 10.021765300000002 47.548767896243476, 10.021669499999998 47.54869399624346)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_2_LVCableDist_mvgd_33532_lvgd_1163850002_building_444942,BranchTee_mvgd_33532_lvgd_1163850002_2,BranchTee_mvgd_33532_lvgd_1163850002_building_444942,0.015869561037899143,0.013774778980896456,0.0013510893716909226,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02199365001425 47.54866919628533, 10.0218863 47.54879209624351)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_3_LVStation_mvgd_33532_lvgd_1163850002,BusBar_mvgd_33532_lvgd_1163850002_LV,BranchTee_mvgd_33532_lvgd_1163850002_3,0.04408198892007469,0.038263166382624836,0.0037530153840218934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021669499999998 47.54869399624346, 10.021723299999996 47.54865979624349, 10.021775899999998 47.548599096243464, 10.021788600000008 47.54852719624345, 10.021764799999998 47.54844859624348, 10.021668099999998 47.54834369624342)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_4_LVCableDist_mvgd_33532_lvgd_1163850002_5,BranchTee_mvgd_33532_lvgd_1163850002_4,BranchTee_mvgd_33532_lvgd_1163850002_5,0.01921505473477332,0.01667866750978324,0.0016359152068927292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021036000000002 47.54929209624356, 10.021012899999999 47.54918499624348, 10.021055500000001 47.54912709624349)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_4_LVCableDist_mvgd_33532_lvgd_1163850002_building_445431,BranchTee_mvgd_33532_lvgd_1163850002_4,BranchTee_mvgd_33532_lvgd_1163850002_building_445431,0.010874687029821535,0.009439228341885092,0.0009258399795286373,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020987549998775 47.549384296299195, 10.021036000000002 47.54929209624356)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_5_LVCableDist_mvgd_33532_lvgd_1163850002_7,BranchTee_mvgd_33532_lvgd_1163850002_5,BranchTee_mvgd_33532_lvgd_1163850002_7,0.04507870673528222,0.03912831744622497,0.003837873109039356,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021551499999998 47.549346196243505, 10.021397700000003 47.54929649624353, 10.021200799999997 47.549224596243555, 10.021055500000001 47.54912709624349)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_6_LVCableDist_mvgd_33532_lvgd_1163850002_9,BranchTee_mvgd_33532_lvgd_1163850002_6,BranchTee_mvgd_33532_lvgd_1163850002_9,0.047282143251505065,0.0410409003423064,0.004025467438281021,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0159465 47.548175696243455, 10.0159053 47.54799179624338, 10.015748899999995 47.54777699624341)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_6_LVCableDist_mvgd_33532_lvgd_1163850002_building_34328673,BranchTee_mvgd_33532_lvgd_1163850002_6,BranchTee_mvgd_33532_lvgd_1163850002_building_34328673,0.02497092125756199,0.021674759651563808,0.0021259533412330135,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01626057067234 47.548103763421345, 10.0159465 47.548175696243455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_6_LVCableDist_mvgd_33532_lvgd_1163850002_building_34328674,BranchTee_mvgd_33532_lvgd_1163850002_6,BranchTee_mvgd_33532_lvgd_1163850002_building_34328674,0.010868336564212797,0.009433716137736707,0.0009252993189162382,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016068037089 47.54812297618069, 10.0159465 47.548175696243455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_6_LVCableDist_mvgd_33532_lvgd_1163850002_building_34328675,BranchTee_mvgd_33532_lvgd_1163850002_6,BranchTee_mvgd_33532_lvgd_1163850002_building_34328675,0.08757946009594798,0.07601897136328285,0.007456266586799627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017108894734521 47.54819335409153, 10.0159465 47.548175696243455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_7_LVCableDist_mvgd_33532_lvgd_1163850002_8,BranchTee_mvgd_33532_lvgd_1163850002_7,BranchTee_mvgd_33532_lvgd_1163850002_8,0.04786485752192652,0.04154669632903222,0.004075078076887777,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021551499999998 47.549346196243505, 10.022146700000006 47.54919529624351)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850002_8_LVCableDist_mvgd_33532_lvgd_1163850002_building_445447,BranchTee_mvgd_33532_lvgd_1163850002_8,BranchTee_mvgd_33532_lvgd_1163850002_building_445447,0.024320169947384927,0.021109907514330117,0.0020705502222245894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022344891803272 47.549022496014366, 10.022146700000006 47.54919529624351)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_10_LVCableDist_mvgd_33532_lvgd_1163850003_25,BranchTee_mvgd_33532_lvgd_1163850003_10,BranchTee_mvgd_33532_lvgd_1163850003_25,0.10272368544271358,0.032871579341668344,0.008422886961502594,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028961599999995 47.55993359624442, 10.029136600000003 47.560110196244516, 10.029443900000002 47.56031589624451, 10.029916499999997 47.56058609624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_10_LVCableDist_mvgd_33532_lvgd_1163850003_6,BranchTee_mvgd_33532_lvgd_1163850003_6,BranchTee_mvgd_33532_lvgd_1163850003_10,0.053316896696034545,0.017061406942731054,0.0043717492423814164,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028681299999999 47.559493296244476, 10.028742700000002 47.55959649624442, 10.028817100000001 47.55972849624442, 10.028961599999995 47.55993359624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_10_LVCableDist_mvgd_33532_lvgd_1163850003_building_445958,BranchTee_mvgd_33532_lvgd_1163850003_10,BranchTee_mvgd_33532_lvgd_1163850003_building_445958,0.04869511130686296,0.04226735661435705,0.004145763526973943,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029541817062023 47.55974014702137, 10.028961599999995 47.55993359624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_11_LVCableDist_mvgd_33532_lvgd_1163850003_25,BranchTee_mvgd_33532_lvgd_1163850003_11,BranchTee_mvgd_33532_lvgd_1163850003_25,0.09454549451640142,0.030254558245248454,0.007752311549171535,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.029916499999997 47.56058609624454, 10.030246899999993 47.56087679624452, 10.0304144 47.56108099624461, 10.030610600000003 47.561293096244576)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_11_LVCableDist_mvgd_33532_lvgd_1163850003_building_446030,BranchTee_mvgd_33532_lvgd_1163850003_11,BranchTee_mvgd_33532_lvgd_1163850003_building_446030,0.024012084985933248,0.02084248976779006,0.0020443207432868232,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03048597104238 47.56149202089914, 10.030610600000003 47.561293096244576)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_11_LVCableDist_mvgd_33532_lvgd_1163850003_building_446089,BranchTee_mvgd_33532_lvgd_1163850003_11,BranchTee_mvgd_33532_lvgd_1163850003_building_446089,0.06444049374612475,0.05593434857163628,0.005486280685330815,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03049031248595 47.5618673204251, 10.030610600000003 47.561293096244576)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_12_LVCableDist_mvgd_33532_lvgd_1163850003_17,BranchTee_mvgd_33532_lvgd_1163850003_12,BranchTee_mvgd_33532_lvgd_1163850003_17,0.038863035213511664,0.012436171268323732,0.003186596656589509,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026382000000002 47.56203029624464, 10.0267401 47.562097696244685, 10.026857299999994 47.56204049624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_12_LVCableDist_mvgd_33532_lvgd_1163850003_building_446006,BranchTee_mvgd_33532_lvgd_1163850003_12,BranchTee_mvgd_33532_lvgd_1163850003_building_446006,0.014832662919224329,0.012874751413886717,0.001262810809711661,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026187850013184 47.5620077962772, 10.026382000000002 47.56203029624464)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_13_LVCableDist_mvgd_33532_lvgd_1163850003_15,BranchTee_mvgd_33532_lvgd_1163850003_13,BranchTee_mvgd_33532_lvgd_1163850003_15,0.008326804982027414,0.0026645775942487726,0.0006827611062806589,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0277194 47.55920089624441, 10.027826199999994 47.559181496244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_13_LVCableDist_mvgd_33532_lvgd_1163850003_building_445917,BranchTee_mvgd_33532_lvgd_1163850003_13,BranchTee_mvgd_33532_lvgd_1163850003_building_445917,0.011648617571137,0.010111000051746916,0.0009917302285595427,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027683950007996 47.559098846271695, 10.0277194 47.55920089624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_14_LVCableDist_mvgd_33532_lvgd_1163850003_18,BranchTee_mvgd_33532_lvgd_1163850003_14,BranchTee_mvgd_33532_lvgd_1163850003_18,0.034469545580517374,0.01103025458576556,0.002826349977493463,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027351500000002 47.558375696244305, 10.027410799999998 47.55832379624429, 10.027614299999998 47.558315196244344, 10.027752999999997 47.55836499624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_14_LVCableDist_mvgd_33532_lvgd_1163850003_8,BranchTee_mvgd_33532_lvgd_1163850003_8,BranchTee_mvgd_33532_lvgd_1163850003_14,0.015560532617232862,0.004979370437514516,0.0012758947143579455,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027179499999999 47.55829809624431, 10.027351500000002 47.558375696244305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_14_LVCableDist_mvgd_33532_lvgd_1163850003_9,BranchTee_mvgd_33532_lvgd_1163850003_9,BranchTee_mvgd_33532_lvgd_1163850003_14,0.05324336035837087,0.01703787531467868,0.004365719588587021,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027351500000002 47.558375696244305, 10.027922999999994 47.55865779624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_15_LVCableDist_mvgd_33532_lvgd_1163850003_16,BranchTee_mvgd_33532_lvgd_1163850003_15,BranchTee_mvgd_33532_lvgd_1163850003_16,0.010519968356279755,0.003366389874009522,0.0008625907834366335,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027826199999994 47.559181496244385, 10.027955400000005 47.5591454962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_15_LVCableDist_mvgd_33532_lvgd_1163850003_building_445930,BranchTee_mvgd_33532_lvgd_1163850003_15,BranchTee_mvgd_33532_lvgd_1163850003_building_445930,0.016682499236853728,0.014480409337589036,0.001420300621947061,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027926823592027 47.55931525851943, 10.027826199999994 47.559181496244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_16_LVCableDist_mvgd_33532_lvgd_1163850003_19,BranchTee_mvgd_33532_lvgd_1163850003_16,BranchTee_mvgd_33532_lvgd_1163850003_19,0.0312715840887471,0.010006906908399072,0.00256413130770634,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027955400000005 47.5591454962444, 10.028265599999997 47.55906019624439, 10.028339699999997 47.55903889624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_16_LVCableDist_mvgd_33532_lvgd_1163850003_building_445932,BranchTee_mvgd_33532_lvgd_1163850003_16,BranchTee_mvgd_33532_lvgd_1163850003_building_445932,0.018439141145589366,0.01600517451437157,0.0015698561267963476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028153671527438 47.55924286770504, 10.027955400000005 47.5591454962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_17_LVCableDist_mvgd_33532_lvgd_1163850003_20,BranchTee_mvgd_33532_lvgd_1163850003_17,BranchTee_mvgd_33532_lvgd_1163850003_20,0.01948652176812349,0.0062356869657995175,0.0015978084257626886,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026857299999994 47.56204049624463, 10.027100399999998 47.56210059624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_17_LVCableDist_mvgd_33532_lvgd_1163850003_building_446016,BranchTee_mvgd_33532_lvgd_1163850003_17,BranchTee_mvgd_33532_lvgd_1163850003_building_446016,0.015223885036090665,0.013214332211326696,0.0012961183500277544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026890943904515 47.561905387672205, 10.026857299999994 47.56204049624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_18_LVCableDist_mvgd_33532_lvgd_1163850003_22,BranchTee_mvgd_33532_lvgd_1163850003_18,BranchTee_mvgd_33532_lvgd_1163850003_22,0.0428129769452548,0.013700152622481537,0.003510474373472516,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027752999999997 47.55836499624433, 10.0278068 47.5579813962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_18_LVCableDist_mvgd_33532_lvgd_1163850003_23,BranchTee_mvgd_33532_lvgd_1163850003_18,BranchTee_mvgd_33532_lvgd_1163850003_23,0.032688582301362054,0.010460346336435857,0.0026803188813712565,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027752999999997 47.55836499624433, 10.027990500000001 47.55838479624436, 10.0281841 47.55839919624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_19_LVCableDist_mvgd_33532_lvgd_1163850003_9,BranchTee_mvgd_33532_lvgd_1163850003_9,BranchTee_mvgd_33532_lvgd_1163850003_19,0.053300276836825596,0.01705608858778419,0.004370386487581199,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027922999999994 47.55865779624432, 10.028070499999997 47.55874079624439, 10.028228500000003 47.558902796244396, 10.028339699999997 47.55903889624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_19_LVCableDist_mvgd_33532_lvgd_1163850003_building_445948,BranchTee_mvgd_33532_lvgd_1163850003_19,BranchTee_mvgd_33532_lvgd_1163850003_building_445948,0.018248539138141767,0.015839731971907054,0.0015536288130180772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028563033592915 47.558975172080416, 10.028339699999997 47.55903889624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_1_LVCableDist_mvgd_33532_lvgd_1163850003_19,BranchTee_mvgd_33532_lvgd_1163850003_1,BranchTee_mvgd_33532_lvgd_1163850003_19,0.03733934084001325,0.01194858906880424,0.0030616604705819327,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028339699999997 47.55903889624435, 10.028568899999993 47.559336896244425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_1_LVCableDist_mvgd_33532_lvgd_1163850003_2,BranchTee_mvgd_33532_lvgd_1163850003_1,BranchTee_mvgd_33532_lvgd_1163850003_2,0.01496678321780411,0.004789370629697315,0.001227209894948527,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028568899999993 47.559336896244425, 10.028736400000003 47.55926439624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_1_LVCableDist_mvgd_33532_lvgd_1163850003_6,BranchTee_mvgd_33532_lvgd_1163850003_1,BranchTee_mvgd_33532_lvgd_1163850003_6,0.019329325397683277,0.006185384127258648,0.0015849190200402392,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028568899999993 47.559336896244425, 10.028681299999999 47.559493296244476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_20_LVCableDist_mvgd_33532_lvgd_1163850003_6,BranchTee_mvgd_33532_lvgd_1163850003_6,BranchTee_mvgd_33532_lvgd_1163850003_20,0.3262549343959596,0.10440157900670707,0.02675145874299951,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027100399999998 47.56210059624466, 10.027191600000004 47.562096196244624, 10.027274099999996 47.562050796244655, 10.0273197 47.561955596244694, 10.0272936 47.56189409624464, 10.027230200000004 47.561802596244625, 10.027239499999997 47.561678196244614, 10.027329999999994 47.56141959624458, 10.027620002372633 47.56099664667368, 10.027909999999995 47.560573696244475, 10.028283200000002 47.55999629624444, 10.028311600000004 47.5599487962445, 10.028416900000003 47.55977789624447, 10.028548500000001 47.559571696244404, 10.028604300000005 47.559520196244414, 10.028681299999999 47.559493296244476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_20_LVCableDist_mvgd_33532_lvgd_1163850003_building_446019,BranchTee_mvgd_33532_lvgd_1163850003_20,BranchTee_mvgd_33532_lvgd_1163850003_building_446019,0.013916624652393725,0.012079630198277753,0.0011848219123866946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027121300010092 47.56197614630811, 10.027100399999998 47.56210059624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_21_LVCableDist_mvgd_33532_lvgd_1163850003_23,BranchTee_mvgd_33532_lvgd_1163850003_21,BranchTee_mvgd_33532_lvgd_1163850003_23,0.07093636909273232,0.022699638109674344,0.005816467893967017,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0281841 47.55839919624432, 10.028403199999998 47.55841269624432, 10.028635099999997 47.55842949624432, 10.028778500000005 47.558439096244335, 10.028823199999993 47.558437196244356, 10.028879200000006 47.558405796244344, 10.0288894 47.558251996244344)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_21_LVCableDist_mvgd_33532_lvgd_1163850003_building_445937,BranchTee_mvgd_33532_lvgd_1163850003_21,BranchTee_mvgd_33532_lvgd_1163850003_building_445937,0.008286916547083816,0.007193043562868752,0.0007055245475357388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02898974999989 47.55822139625639, 10.0288894 47.558251996244344)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_22_LVCableDist_mvgd_33532_lvgd_1163850003_building_445906,BranchTee_mvgd_33532_lvgd_1163850003_22,BranchTee_mvgd_33532_lvgd_1163850003_building_445906,0.0223609918946053,0.0194093409645174,0.0019037513650892763,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027520703416359 47.55803523280937, 10.0278068 47.5579813962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_23_LVCableDist_mvgd_33532_lvgd_1163850003_24,BranchTee_mvgd_33532_lvgd_1163850003_23,BranchTee_mvgd_33532_lvgd_1163850003_24,0.04186133208467537,0.013395626267096119,0.0034324437123488404,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0281841 47.55839919624432, 10.028234700000004 47.55802399624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_24_LVCableDist_mvgd_33532_lvgd_1163850003_building_445926,BranchTee_mvgd_33532_lvgd_1163850003_24,BranchTee_mvgd_33532_lvgd_1163850003_building_445926,0.021921860733027557,0.01902817511626792,0.001866364984724434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028247882027799 47.55782689552849, 10.028234700000004 47.55802399624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_24_LVCableDist_mvgd_33532_lvgd_1163850003_building_445927,BranchTee_mvgd_33532_lvgd_1163850003_24,BranchTee_mvgd_33532_lvgd_1163850003_building_445927,0.013683733533809923,0.011877480707347014,0.001164994223748784,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028205731570974 47.557902414273954, 10.028234700000004 47.55802399624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_25_LVCableDist_mvgd_33532_lvgd_1163850003_7,BranchTee_mvgd_33532_lvgd_1163850003_7,BranchTee_mvgd_33532_lvgd_1163850003_25,0.07001342878414485,0.022404297210926353,0.005740790878895533,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0305483 47.56013859624447, 10.030294599999992 47.560297196244505, 10.030235000000001 47.560334496244536, 10.0301767 47.56043849624453, 10.029950599999998 47.560566196244494, 10.029916499999997 47.56058609624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_26_LVCableDist_mvgd_33532_lvgd_1163850003_34,BranchTee_mvgd_33532_lvgd_1163850003_26,BranchTee_mvgd_33532_lvgd_1163850003_34,0.038595599263041826,0.033500980160320305,0.0032859197449635986,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023855499999996 47.55834849624433, 10.023553999999995 47.558629396244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_26_LVCableDist_mvgd_33532_lvgd_1163850003_35,BranchTee_mvgd_33532_lvgd_1163850003_26,BranchTee_mvgd_33532_lvgd_1163850003_35,0.0384964052540489,0.033414879760514445,0.0032774746486584332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02414044841396 47.55863614663664, 10.023855499999996 47.55834849624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_26_LVCableDist_mvgd_33532_lvgd_1163850003_36,BranchTee_mvgd_33532_lvgd_1163850003_26,BranchTee_mvgd_33532_lvgd_1163850003_36,0.02178434088342199,0.018908807886810288,0.001854656935159932,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023731699999997 47.558171296244296, 10.023855499999996 47.55834849624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_27_LVCableDist_mvgd_33532_lvgd_1163850003_37,BranchTee_mvgd_33532_lvgd_1163850003_27,BranchTee_mvgd_33532_lvgd_1163850003_37,0.03504665725372259,0.03042049849623121,0.002983772898047825,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026739999999997 47.55883599624438, 10.027136800000003 47.55900079624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_27_LVCableDist_mvgd_33532_lvgd_1163850003_building_445920,BranchTee_mvgd_33532_lvgd_1163850003_27,BranchTee_mvgd_33532_lvgd_1163850003_building_445920,0.021314291500256266,0.018500805022222438,0.0018146382651886323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027086479657136 47.55918957482624, 10.027136800000003 47.55900079624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_28_LVCableDist_mvgd_33532_lvgd_1163850003_29,BranchTee_mvgd_33532_lvgd_1163850003_28,BranchTee_mvgd_33532_lvgd_1163850003_29,0.052824285749726065,0.045851480030762226,0.004497309715950867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026368600000001 47.55831019624435, 10.025978199999996 47.55851419624432, 10.025795200000001 47.558581896244334)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_28_LVCableDist_mvgd_33532_lvgd_1163850003_building_445879,BranchTee_mvgd_33532_lvgd_1163850003_28,BranchTee_mvgd_33532_lvgd_1163850003_building_445879,0.020363445355591613,0.01767547056865352,0.0017336859239674932,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026230657301031 47.55815256409423, 10.026368600000001 47.55831019624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_28_LVStation_mvgd_33532_lvgd_1163850003,BusBar_mvgd_33532_lvgd_1163850003_LV,BranchTee_mvgd_33532_lvgd_1163850003_28,0.03826552293319407,0.03321447390601245,0.0032578179833560143,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026685600000002 47.558041696244295, 10.026606499999998 47.5581221962443, 10.026368600000001 47.55831019624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_29_LVCableDist_mvgd_33532_lvgd_1163850003_31,BranchTee_mvgd_33532_lvgd_1163850003_29,BranchTee_mvgd_33532_lvgd_1163850003_31,0.05460713086372683,0.04739898958971489,0.004649096087303229,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025795200000001 47.558581896244334, 10.025509 47.55866339624432, 10.025119000000004 47.55875889624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_29_LVCableDist_mvgd_33532_lvgd_1163850003_33,BranchTee_mvgd_33532_lvgd_1163850003_29,BranchTee_mvgd_33532_lvgd_1163850003_33,0.03481971987247088,0.030223516849304723,0.0029644520937031856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025795200000001 47.558581896244334, 10.025840099999995 47.55863009624431, 10.025927300000003 47.55868119624436, 10.026180399999996 47.55872959624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_2_LVCableDist_mvgd_33532_lvgd_1163850003_3,BranchTee_mvgd_33532_lvgd_1163850003_2,BranchTee_mvgd_33532_lvgd_1163850003_3,0.0312231076051591,0.009991394433650913,0.0025601564508873588,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028736400000003 47.55926439624442, 10.029089299999997 47.559116896244404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_2_LVCableDist_mvgd_33532_lvgd_1163850003_building_445933,BranchTee_mvgd_33532_lvgd_1163850003_2,BranchTee_mvgd_33532_lvgd_1163850003_building_445933,0.009952118849070504,0.008638439160993197,0.0008472951438714842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028712276465063 47.55917632961062, 10.028736400000003 47.55926439624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_30_LVCableDist_mvgd_33532_lvgd_1163850003_31,BranchTee_mvgd_33532_lvgd_1163850003_30,BranchTee_mvgd_33532_lvgd_1163850003_31,0.05536955267939491,0.04806077172571478,0.004714006516106798,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025119000000004 47.55875889624436, 10.024849800000005 47.558828896244336, 10.024425399999997 47.558923796244386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_30_LVCableDist_mvgd_33532_lvgd_1163850003_35,BranchTee_mvgd_33532_lvgd_1163850003_30,BranchTee_mvgd_33532_lvgd_1163850003_35,0.0384964052540489,0.033414879760514445,0.0032774746486584332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024425399999997 47.558923796244386, 10.02414044841396 47.55863614663664)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_30_LVCableDist_mvgd_33532_lvgd_1163850003_38,BranchTee_mvgd_33532_lvgd_1163850003_30,BranchTee_mvgd_33532_lvgd_1163850003_38,0.03300340862550468,0.028646958686938062,0.002809816510803434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024425399999997 47.558923796244386, 10.024018200000002 47.55903359624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_30_LVCableDist_mvgd_33532_lvgd_1163850003_building_445814,BranchTee_mvgd_33532_lvgd_1163850003_30,BranchTee_mvgd_33532_lvgd_1163850003_building_445814,0.02106974143106811,0.01828853556216712,0.0017938179665970503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024591946565412 47.559076168489284, 10.024425399999997 47.558923796244386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_31_LVCableDist_mvgd_33532_lvgd_1163850003_32,BranchTee_mvgd_33532_lvgd_1163850003_31,BranchTee_mvgd_33532_lvgd_1163850003_32,0.04152841871888941,0.036046667447996006,0.00353561166690277,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025119000000004 47.55875889624436, 10.024871000000001 47.55858439624433, 10.024733899999996 47.558491396244335)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_32_LVCableDist_mvgd_33532_lvgd_1163850003_building_445819,BranchTee_mvgd_33532_lvgd_1163850003_32,BranchTee_mvgd_33532_lvgd_1163850003_building_445819,0.013135928432349136,0.011401985879279049,0.001118355652677147,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024839400003431 47.558397246320325, 10.024733899999996 47.558491396244335)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_33_LVCableDist_mvgd_33532_lvgd_1163850003_37,BranchTee_mvgd_33532_lvgd_1163850003_33,BranchTee_mvgd_33532_lvgd_1163850003_37,0.0437701020027462,0.0379924485383837,0.003726462217354861,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026180399999996 47.55872959624436, 10.026739999999997 47.55883599624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_33_LVCableDist_mvgd_33532_lvgd_1163850003_building_445880,BranchTee_mvgd_33532_lvgd_1163850003_33,BranchTee_mvgd_33532_lvgd_1163850003_building_445880,0.014912737386354485,0.012944256051355693,0.0012696281225046864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02627325000588 47.55861104628666, 10.026180399999996 47.55872959624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_33_LVCableDist_mvgd_33532_lvgd_1163850003_building_445883,BranchTee_mvgd_33532_lvgd_1163850003_33,BranchTee_mvgd_33532_lvgd_1163850003_building_445883,0.019204296535754645,0.01666932939303503,0.00163499928437175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026217470636965 47.55890060396487, 10.026180399999996 47.55872959624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_33_LVCableDist_mvgd_33532_lvgd_1163850003_building_445884,BranchTee_mvgd_33532_lvgd_1163850003_33,BranchTee_mvgd_33532_lvgd_1163850003_building_445884,0.025683029023420224,0.022292869192328753,0.0021865801746817726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026499926680287 47.55864880828957, 10.026180399999996 47.55872959624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_34_LVCableDist_mvgd_33532_lvgd_1163850003_building_445789,BranchTee_mvgd_33532_lvgd_1163850003_34,BranchTee_mvgd_33532_lvgd_1163850003_building_445789,0.02476756408521061,0.021498245625962812,0.002108640088927867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023434199998375 47.55883699627279, 10.023553999999995 47.558629396244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_34_LVCableDist_mvgd_33532_lvgd_1163850003_building_445790,BranchTee_mvgd_33532_lvgd_1163850003_34,BranchTee_mvgd_33532_lvgd_1163850003_building_445790,0.026376157722574053,0.02289450490319428,0.002245591184274554,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023498099998134 47.558863746272564, 10.023553999999995 47.558629396244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_34_LVCableDist_mvgd_33532_lvgd_1163850003_building_445803,BranchTee_mvgd_33532_lvgd_1163850003_34,BranchTee_mvgd_33532_lvgd_1163850003_building_445803,0.020321741026728655,0.017639271211200472,0.0017301353358103488,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023823818103759 47.558626975189625, 10.023553999999995 47.558629396244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_34_LVCableDist_mvgd_33532_lvgd_1163850003_building_445828,BranchTee_mvgd_33532_lvgd_1163850003_34,BranchTee_mvgd_33532_lvgd_1163850003_building_445828,0.013144211610488676,0.01140917567790417,0.0011190608589472782,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023410648359118 47.55856191240129, 10.023553999999995 47.558629396244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_35_LVCableDist_mvgd_33532_lvgd_1163850003_building_445804,BranchTee_mvgd_33532_lvgd_1163850003_35,BranchTee_mvgd_33532_lvgd_1163850003_building_445804,0.008653540400855869,0.007511273067942894,0.0007367378615686116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024052100001756 47.55868594624995, 10.02414044841396 47.55863614663664)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_36_LVCableDist_mvgd_33532_lvgd_1163850003_building_445798,BranchTee_mvgd_33532_lvgd_1163850003_36,BranchTee_mvgd_33532_lvgd_1163850003_building_445798,0.015803289876204565,0.013717255612545562,0.0013454472331338875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023921586765255 47.55811075832915, 10.023731699999997 47.558171296244296)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_37_LVCableDist_mvgd_33532_lvgd_1163850003_building_445885,BranchTee_mvgd_33532_lvgd_1163850003_37,BranchTee_mvgd_33532_lvgd_1163850003_building_445885,0.012933141750556808,0.011225967039483309,0.0011010909703185257,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026880367308173 47.558768932569286, 10.026739999999997 47.55883599624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_38_LVCableDist_mvgd_33532_lvgd_1163850003_building_445811,BranchTee_mvgd_33532_lvgd_1163850003_38,BranchTee_mvgd_33532_lvgd_1163850003_building_445811,0.01947761272857652,0.01690656784840442,0.0016582686490599586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024007953061089 47.558858429937416, 10.024018200000002 47.55903359624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_39_LVCableDist_mvgd_33532_lvgd_1163850003_41,BranchTee_mvgd_33532_lvgd_1163850003_39,BranchTee_mvgd_33532_lvgd_1163850003_41,0.043866698059462625,0.01969614742869872,0.003720905001742935,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.02851969781653 47.5569817971854, 10.028969299999996 47.55723279624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_39_LVCableDist_mvgd_33532_lvgd_1163850003_building_445895,BranchTee_mvgd_33532_lvgd_1163850003_39,BranchTee_mvgd_33532_lvgd_1163850003_building_445895,0.02932422847041295,0.02545343031231844,0.0024965815579141093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028130909584094 47.5569962057022, 10.02851969781653 47.5569817971854)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_39_LVCableDist_mvgd_33532_lvgd_1163850003_building_445900,BranchTee_mvgd_33532_lvgd_1163850003_39,BranchTee_mvgd_33532_lvgd_1163850003_building_445900,0.02280946937815021,0.019798619420234382,0.0019419334647713755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028477616759876 47.55677849689877, 10.02851969781653 47.5569817971854)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_39_LVCableDist_mvgd_33532_lvgd_1163850003_building_445908,BranchTee_mvgd_33532_lvgd_1163850003_39,BranchTee_mvgd_33532_lvgd_1163850003_building_445908,0.030592792875295507,0.0265545442157565,0.002604583529780191,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028817606840635 47.55679461175599, 10.02851969781653 47.5569817971854)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_39_LVCableDist_mvgd_33532_lvgd_1163850003_building_445910,BranchTee_mvgd_33532_lvgd_1163850003_39,BranchTee_mvgd_33532_lvgd_1163850003_building_445910,0.01957797736104845,0.016993684349390057,0.0016668134089246236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028422157510866 47.557145131247196, 10.02851969781653 47.5569817971854)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_39_LVStation_mvgd_33532_lvgd_1163850003,BusBar_mvgd_33532_lvgd_1163850003_LV,BranchTee_mvgd_33532_lvgd_1163850003_39,0.22334007879763912,0.10027969538013996,0.018944375871676373,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.02851969781653 47.5569817971854, 10.028070099999999 47.556730796244196, 10.0275955 47.557117396244216, 10.027420699999997 47.557264596244245, 10.027109999999997 47.55758989624428, 10.0269114 47.5578079962443, 10.0267444 47.55798979624431, 10.026685600000002 47.558041696244295)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_3_LVCableDist_mvgd_33532_lvgd_1163850003_4,BranchTee_mvgd_33532_lvgd_1163850003_3,BranchTee_mvgd_33532_lvgd_1163850003_4,0.02153115353987344,0.006889969132759501,0.0017654591697671051,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.029089299999997 47.559116896244404, 10.0292964 47.55898329624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_3_LVCableDist_mvgd_33532_lvgd_1163850003_building_445957,BranchTee_mvgd_33532_lvgd_1163850003_3,BranchTee_mvgd_33532_lvgd_1163850003_building_445957,0.022198283778072873,0.019268110319367253,0.0018898988579903206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029260708235128 47.55927943214994, 10.029089299999997 47.559116896244404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_40_LVCableDist_mvgd_33532_lvgd_1163850003_41,BranchTee_mvgd_33532_lvgd_1163850003_40,BranchTee_mvgd_33532_lvgd_1163850003_41,0.015388738373851896,0.0069095435298595015,0.0013053189804293286,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028969299999996 47.55723279624424, 10.029126599999994 47.557321196244224)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_40_LVCableDist_mvgd_33532_lvgd_1163850003_42,BranchTee_mvgd_33532_lvgd_1163850003_40,BranchTee_mvgd_33532_lvgd_1163850003_42,0.47399677583718275,0.21282455235089506,0.04020582929747422,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.029126599999994 47.557321196244224, 10.029294199999997 47.55741589624424, 10.029457999999995 47.55750319624423, 10.029899299999999 47.557634796244265, 10.031245100000001 47.55800989624427, 10.032066100000002 47.558180296244345, 10.032763000000001 47.55826229624432, 10.033219700000004 47.558270096244335, 10.033177199999995 47.55837859624431, 10.032862799999993 47.558547896244356, 10.032544899999994 47.55870279624434, 10.032308200000005 47.55896269624435, 10.0322259 47.55910159624436, 10.032179500000005 47.55928679624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_40_LVCableDist_mvgd_33532_lvgd_1163850003_building_445919,BranchTee_mvgd_33532_lvgd_1163850003_40,BranchTee_mvgd_33532_lvgd_1163850003_building_445919,0.022499087157419696,0.019529207652640296,0.0019155084037007298,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028924450008066 47.55747029627699, 10.029126599999994 47.557321196244224)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_41_LVCableDist_mvgd_33532_lvgd_1163850003_building_445911,BranchTee_mvgd_33532_lvgd_1163850003_41,BranchTee_mvgd_33532_lvgd_1163850003_building_445911,0.028228322166934848,0.02450218364089945,0.0024032792066101087,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029142384401794 47.55700744264123, 10.028969299999996 47.55723279624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_41_LVCableDist_mvgd_33532_lvgd_1163850003_building_445918,BranchTee_mvgd_33532_lvgd_1163850003_41,BranchTee_mvgd_33532_lvgd_1163850003_building_445918,0.02865028339070176,0.02486844598312913,0.0024392037872166964,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028601918974324 47.557299736474576, 10.028969299999996 47.55723279624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_42_LVCableDist_mvgd_33532_lvgd_1163850003_building_445960,BranchTee_mvgd_33532_lvgd_1163850003_42,BranchTee_mvgd_33532_lvgd_1163850003_building_445960,0.028706827614457447,0.024917526369349064,0.0024440178018932447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031830950061316 47.55918219630493, 10.032179500000005 47.55928679624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_43_LVCableDist_mvgd_33532_lvgd_1163850003_45,BranchTee_mvgd_33532_lvgd_1163850003_43,BranchTee_mvgd_33532_lvgd_1163850003_45,0.04370326053731737,0.009002871670687378,0.0035148247613940985,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0275955 47.557117396244216, 10.027183799999992 47.556840196244195)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_43_LVCableDist_mvgd_33532_lvgd_1163850003_47,BranchTee_mvgd_33532_lvgd_1163850003_43,BranchTee_mvgd_33532_lvgd_1163850003_47,0.05235501659006494,0.010785133417553376,0.004210640268746745,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0275955 47.557117396244216, 10.028070899999998 47.55746119624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_43_LVCableDist_mvgd_33532_lvgd_1163850003_50,BranchTee_mvgd_33532_lvgd_1163850003_43,BranchTee_mvgd_33532_lvgd_1163850003_50,0.05588027783821515,0.01151133723467232,0.004494158600629587,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.028070099999999 47.556730796244196, 10.0275955 47.557117396244216)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_43_LVCableDist_mvgd_33532_lvgd_1163850003_51,BranchTee_mvgd_33532_lvgd_1163850003_43,BranchTee_mvgd_33532_lvgd_1163850003_51,0.020994930108697463,0.0043249556023916775,0.0016885124657181466,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0275955 47.557117396244216, 10.027420699999997 47.557264596244245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_43_LVCableDist_mvgd_33532_lvgd_1163850003_building_445923,BranchTee_mvgd_33532_lvgd_1163850003_43,BranchTee_mvgd_33532_lvgd_1163850003_building_445923,0.025021278449983298,0.0217184696945855,0.0021302406096272773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02792726624799 47.557129348783086, 10.0275955 47.557117396244216)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_44_LVCableDist_mvgd_33532_lvgd_1163850003_46,BranchTee_mvgd_33532_lvgd_1163850003_44,BranchTee_mvgd_33532_lvgd_1163850003_46,0.028476572698693563,0.005866173975930874,0.002290221864694563,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.027109999999997 47.55758989624428, 10.0269114 47.5578079962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_44_LVCableDist_mvgd_33532_lvgd_1163850003_building_445896,BranchTee_mvgd_33532_lvgd_1163850003_44,BranchTee_mvgd_33532_lvgd_1163850003_building_445896,0.019440574342241168,0.016874418529065335,0.0016551153060025945,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026659033493535 47.55777120887409, 10.0269114 47.5578079962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_44_LVCableDist_mvgd_33532_lvgd_1163850003_building_445899,BranchTee_mvgd_33532_lvgd_1163850003_44,BranchTee_mvgd_33532_lvgd_1163850003_building_445899,0.015272758234761565,0.013256754147773038,0.001300279275407297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027053985820556 47.55790574120087, 10.0269114 47.5578079962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_44_LVStation_mvgd_33532_lvgd_1163850003,BusBar_mvgd_33532_lvgd_1163850003_LV,BranchTee_mvgd_33532_lvgd_1163850003_44,0.03106528003019008,0.006399447686219156,0.0024984180614286045,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0269114 47.5578079962443, 10.0267444 47.55798979624431, 10.026685600000002 47.558041696244295)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_45_LVCableDist_mvgd_33532_lvgd_1163850003_building_445852,BranchTee_mvgd_33532_lvgd_1163850003_45,BranchTee_mvgd_33532_lvgd_1163850003_building_445852,0.025897434486818124,0.02247897313455813,0.0022048340471195523,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026975200001765 47.557025496305705, 10.027183799999992 47.556840196244195)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_45_LVCableDist_mvgd_33532_lvgd_1163850003_building_445857,BranchTee_mvgd_33532_lvgd_1163850003_45,BranchTee_mvgd_33532_lvgd_1163850003_building_445857,0.026484943341473683,0.022988930820399156,0.0022548528830157537,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027384040556454 47.556644239054386, 10.027183799999992 47.556840196244195)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_46_LVCableDist_mvgd_33532_lvgd_1163850003_51,BranchTee_mvgd_33532_lvgd_1163850003_46,BranchTee_mvgd_33532_lvgd_1163850003_51,0.04305632006166158,0.008869601932702285,0.0034627947211859672,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.027420699999997 47.557264596244245, 10.027109999999997 47.55758989624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_46_LVCableDist_mvgd_33532_lvgd_1163850003_53,BranchTee_mvgd_33532_lvgd_1163850003_46,BranchTee_mvgd_33532_lvgd_1163850003_53,0.037931674038181575,0.007813924851865404,0.003050646233515876,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.027109999999997 47.55758989624428, 10.027504899999998 47.5578017962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_46_LVCableDist_mvgd_33532_lvgd_1163850003_building_445888,BranchTee_mvgd_33532_lvgd_1163850003_46,BranchTee_mvgd_33532_lvgd_1163850003_building_445888,0.024555572002437943,0.021314236498116135,0.00209059168486472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026855315322274 47.55745190346375, 10.027109999999997 47.55758989624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_47_LVCableDist_mvgd_33532_lvgd_1163850003_52,BranchTee_mvgd_33532_lvgd_1163850003_47,BranchTee_mvgd_33532_lvgd_1163850003_52,0.013536461167668944,0.002788511000539802,0.001088666802174778,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0281938 47.55755009624424, 10.028070899999998 47.55746119624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_47_LVCableDist_mvgd_33532_lvgd_1163850003_building_445912,BranchTee_mvgd_33532_lvgd_1163850003_47,BranchTee_mvgd_33532_lvgd_1163850003_building_445912,0.01638552204040117,0.014222633131068217,0.0013950168265854008,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027877423720458 47.55752865278416, 10.028070899999998 47.55746119624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_48_LVCableDist_mvgd_33532_lvgd_1163850003_49,BranchTee_mvgd_33532_lvgd_1163850003_48,BranchTee_mvgd_33532_lvgd_1163850003_49,0.04675948260824622,0.00963245341729872,0.003760620724421786,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.027371600000004 47.556322996244184, 10.027847599999992 47.55659319624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_48_LVCableDist_mvgd_33532_lvgd_1163850003_building_445860,BranchTee_mvgd_33532_lvgd_1163850003_48,BranchTee_mvgd_33532_lvgd_1163850003_building_445860,0.01275925500477088,0.011075033344141123,0.0010862867464620357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027309899999922 47.55621604625072, 10.027371600000004 47.556322996244184)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_48_LVCableDist_mvgd_33532_lvgd_1163850003_building_445862,BranchTee_mvgd_33532_lvgd_1163850003_48,BranchTee_mvgd_33532_lvgd_1163850003_building_445862,0.022957548521024353,0.01992715211624914,0.0019545405025860043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027518116875877 47.5561418040267, 10.027371600000004 47.556322996244184)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_48_LVCableDist_mvgd_33532_lvgd_1163850003_building_445881,BranchTee_mvgd_33532_lvgd_1163850003_48,BranchTee_mvgd_33532_lvgd_1163850003_building_445881,0.0329324488851258,0.028585365632289195,0.0028037751999685037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027796138921547 47.55625198368579, 10.027371600000004 47.556322996244184)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_49_LVCableDist_mvgd_33532_lvgd_1163850003_50,BranchTee_mvgd_33532_lvgd_1163850003_49,BranchTee_mvgd_33532_lvgd_1163850003_50,0.022683482116016486,0.004672797315899395,0.001824313875801929,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.028070099999999 47.556730796244196, 10.027847599999992 47.55659319624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_49_LVCableDist_mvgd_33532_lvgd_1163850003_building_445861,BranchTee_mvgd_33532_lvgd_1163850003_49,BranchTee_mvgd_33532_lvgd_1163850003_building_445861,0.029444001212137312,0.025557393052135186,0.002506778669099202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027666652450087 47.55682810981388, 10.027847599999992 47.55659319624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_4_LVCableDist_mvgd_33532_lvgd_1163850003_5,BranchTee_mvgd_33532_lvgd_1163850003_4,BranchTee_mvgd_33532_lvgd_1163850003_5,0.034998321230965086,0.011199462793908828,0.0028697072374332835,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0292964 47.55898329624439, 10.029378399999997 47.55891409624439, 10.029411699999997 47.55886759624438, 10.0294412 47.55882049624442, 10.029602099999995 47.558762796244395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_4_LVCableDist_mvgd_33532_lvgd_1163850003_building_445944,BranchTee_mvgd_33532_lvgd_1163850003_4,BranchTee_mvgd_33532_lvgd_1163850003_building_445944,0.01320925013409425,0.01146562911639381,0.0011245980541969834,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02919115364592 47.55888819079795, 10.0292964 47.55898329624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_51_LVCableDist_mvgd_33532_lvgd_1163850003_building_445889,BranchTee_mvgd_33532_lvgd_1163850003_51,BranchTee_mvgd_33532_lvgd_1163850003_building_445889,0.018413303178475487,0.015982747158916722,0.001567656355632527,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027284706802085 47.55712687428465, 10.027420699999997 47.557264596244245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_51_LVCableDist_mvgd_33532_lvgd_1163850003_building_445890,BranchTee_mvgd_33532_lvgd_1163850003_51,BranchTee_mvgd_33532_lvgd_1163850003_building_445890,0.02123293057354418,0.01843018373783635,0.001807711426879173,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02764519998501 47.55738019634244, 10.027420699999997 47.557264596244245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_52_LVCableDist_mvgd_33532_lvgd_1163850003_54,BranchTee_mvgd_33532_lvgd_1163850003_52,BranchTee_mvgd_33532_lvgd_1163850003_54,0.015480347790355724,0.003188951644813279,0.001245003440465831,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.028365399999998 47.55762679624428, 10.0281938 47.55755009624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_52_LVCableDist_mvgd_33532_lvgd_1163850003_building_445913,BranchTee_mvgd_33532_lvgd_1163850003_52,BranchTee_mvgd_33532_lvgd_1163850003_building_445913,0.01135492547476307,0.009856075312094344,0.0009667261172918894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028142043775889 47.55764608429544, 10.0281938 47.55755009624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_53_LVCableDist_mvgd_33532_lvgd_1163850003_building_445894,BranchTee_mvgd_33532_lvgd_1163850003_53,BranchTee_mvgd_33532_lvgd_1163850003_building_445894,0.021598470067483434,0.01874747201857562,0.0018388324215944736,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027486975708472 47.55760778397065, 10.027504899999998 47.5578017962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_53_LVCableDist_mvgd_33532_lvgd_1163850003_building_445905,BranchTee_mvgd_33532_lvgd_1163850003_53,BranchTee_mvgd_33532_lvgd_1163850003_building_445905,0.02122382719019514,0.018422282001089384,0.0018069363906661395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027223228178832 47.557795699004366, 10.027504899999998 47.5578017962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_54_LVCableDist_mvgd_33532_lvgd_1163850003_55,BranchTee_mvgd_33532_lvgd_1163850003_54,BranchTee_mvgd_33532_lvgd_1163850003_55,0.05377153780649099,0.011076936788137145,0.004324563664514507,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.029052899999998 47.55775739624424, 10.028365399999998 47.55762679624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_54_LVCableDist_mvgd_33532_lvgd_1163850003_building_445928,BranchTee_mvgd_33532_lvgd_1163850003_54,BranchTee_mvgd_33532_lvgd_1163850003_building_445928,0.020714620776607382,0.01798029083409521,0.0017635840022949517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02852560001784 47.557778346279186, 10.028365399999998 47.55762679624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_55_LVCableDist_mvgd_33532_lvgd_1163850003_building_445925,BranchTee_mvgd_33532_lvgd_1163850003_55,BranchTee_mvgd_33532_lvgd_1163850003_building_445925,0.024236859295883567,0.021037593868826938,0.002063457389882011,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028875820239879 47.557575250425984, 10.029052899999998 47.55775739624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_55_LVCableDist_mvgd_33532_lvgd_1163850003_building_445935,BranchTee_mvgd_33532_lvgd_1163850003_55,BranchTee_mvgd_33532_lvgd_1163850003_building_445935,0.014543836188465659,0.012624049811588193,0.0012382209218592913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028912950026658 47.55784759628413, 10.029052899999998 47.55775739624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_56_LVCableDist_mvgd_33532_lvgd_1163850003_58,BranchTee_mvgd_33532_lvgd_1163850003_56,BranchTee_mvgd_33532_lvgd_1163850003_58,0.009302901704326206,0.004177002865242466,0.0007891000465872378,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.024751100000001 47.557332796244225, 10.024687800000002 47.557404696244284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_56_LVCableDist_mvgd_33532_lvgd_1163850003_building_445774,BranchTee_mvgd_33532_lvgd_1163850003_56,BranchTee_mvgd_33532_lvgd_1163850003_building_445774,0.019805023155791735,0.017190760099227227,0.0016861434432861398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02466054999998 47.55716544626079, 10.024751100000001 47.557332796244225)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_56_LVCableDist_mvgd_33532_lvgd_1163850003_building_445775,BranchTee_mvgd_33532_lvgd_1163850003_56,BranchTee_mvgd_33532_lvgd_1163850003_building_445775,0.012743326096281935,0.01106120705157272,0.0010849306044168553,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024600089516067 47.55728105519465, 10.024751100000001 47.557332796244225)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_56_LVCableDist_mvgd_33532_lvgd_1163850003_building_445776,BranchTee_mvgd_33532_lvgd_1163850003_56,BranchTee_mvgd_33532_lvgd_1163850003_building_445776,0.01478448657006895,0.012832934342819848,0.0012587092121214532,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024945508905164 47.557351271241885, 10.024751100000001 47.557332796244225)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_56_LVCableDist_mvgd_33532_lvgd_1163850003_building_445931,BranchTee_mvgd_33532_lvgd_1163850003_56,BranchTee_mvgd_33532_lvgd_1163850003_building_445931,0.024713995066060288,0.02145174771734033,0.002104079374724553,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025077994754565 47.557313312129494, 10.024751100000001 47.557332796244225)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_56_LVStation_mvgd_33532_lvgd_1163850003,BusBar_mvgd_33532_lvgd_1163850003_LV,BranchTee_mvgd_33532_lvgd_1163850003_56,0.2205843963530638,0.09904239396252565,0.01871063061514176,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.024751100000001 47.557332796244225, 10.0253046 47.55694709624423, 10.025533599999997 47.55715839624422, 10.025666899999997 47.55729109624426, 10.02574519999999 47.557354696244246, 10.025889700000004 47.55748899624425, 10.026051900000002 47.55762099624429, 10.026395000000003 47.55788369624428, 10.026558 47.5579801962443, 10.026685600000002 47.558041696244295)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_57_LVCableDist_mvgd_33532_lvgd_1163850003_60,BranchTee_mvgd_33532_lvgd_1163850003_57,BranchTee_mvgd_33532_lvgd_1163850003_60,0.013339384081697145,0.005989383452682018,0.0011314865979307543,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0240887 47.55743959624426, 10.024188899999999 47.55753859624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_57_LVCableDist_mvgd_33532_lvgd_1163850003_62,BranchTee_mvgd_33532_lvgd_1163850003_57,BranchTee_mvgd_33532_lvgd_1163850003_62,0.030644452030925477,0.01375935896188554,0.0025993544050882883,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.024188899999999 47.55753859624426, 10.024518 47.5577007962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_57_LVCableDist_mvgd_33532_lvgd_1163850003_building_445773,BranchTee_mvgd_33532_lvgd_1163850003_57,BranchTee_mvgd_33532_lvgd_1163850003_building_445773,0.015279596000908058,0.013262689328788194,0.0013008614234039913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024155867022028 47.557674282219374, 10.024188899999999 47.55753859624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_58_LVCableDist_mvgd_33532_lvgd_1163850003_59,BranchTee_mvgd_33532_lvgd_1163850003_58,BranchTee_mvgd_33532_lvgd_1163850003_59,0.027011673450217457,0.012128241379147638,0.00229121122155398,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.024687800000002 47.557404696244284, 10.024575099999995 47.557635496244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_58_LVCableDist_mvgd_33532_lvgd_1163850003_building_445777,BranchTee_mvgd_33532_lvgd_1163850003_58,BranchTee_mvgd_33532_lvgd_1163850003_building_445777,0.019580146244165684,0.016995566939935813,0.0016669980614755753,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024443976032991 47.55746586720003, 10.024687800000002 47.557404696244284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_58_LVCableDist_mvgd_33532_lvgd_1163850003_building_445783,BranchTee_mvgd_33532_lvgd_1163850003_58,BranchTee_mvgd_33532_lvgd_1163850003_building_445783,0.01677582670538409,0.014561417580273388,0.0014282462576528663,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024856718583854 47.55750312026659, 10.024687800000002 47.557404696244284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_59_LVCableDist_mvgd_33532_lvgd_1163850003_62,BranchTee_mvgd_33532_lvgd_1163850003_59,BranchTee_mvgd_33532_lvgd_1163850003_62,0.008433946678158631,0.0037868420584932254,0.0007153926729715224,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.024518 47.5577007962443, 10.024575099999995 47.557635496244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_59_LVCableDist_mvgd_33532_lvgd_1163850003_building_445785,BranchTee_mvgd_33532_lvgd_1163850003_59,BranchTee_mvgd_33532_lvgd_1163850003_building_445785,0.017150667851280537,0.014886779694911506,0.001460159168607597,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024794858503615 47.55759501071827, 10.024575099999995 47.557635496244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_59_LVCableDist_mvgd_33532_lvgd_1163850003_building_445786,BranchTee_mvgd_33532_lvgd_1163850003_59,BranchTee_mvgd_33532_lvgd_1163850003_building_445786,0.01778338457822163,0.015435977813896374,0.001514026874401074,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024783889369209 47.55771025614639, 10.024575099999995 47.557635496244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_5_LVCableDist_mvgd_33532_lvgd_1163850003_building_445943,BranchTee_mvgd_33532_lvgd_1163850003_5,BranchTee_mvgd_33532_lvgd_1163850003_building_445943,0.011740511727363422,0.01019076417935145,0.00099955383612509,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029635563937576 47.55865959117405, 10.029602099999995 47.558762796244395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_5_LVCableDist_mvgd_33532_lvgd_1163850003_building_445951,BranchTee_mvgd_33532_lvgd_1163850003_5,BranchTee_mvgd_33532_lvgd_1163850003_building_445951,0.0246355521188549,0.021383659239166054,0.002097400964905894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029717426982687 47.55897028598682, 10.029602099999995 47.558762796244395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_60_LVCableDist_mvgd_33532_lvgd_1163850003_61,BranchTee_mvgd_33532_lvgd_1163850003_60,BranchTee_mvgd_33532_lvgd_1163850003_61,0.03575450192680572,0.016053771365135767,0.003032804175822404,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.023899699999998 47.55714439624423, 10.0240887 47.55743959624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_60_LVCableDist_mvgd_33532_lvgd_1163850003_building_445771,BranchTee_mvgd_33532_lvgd_1163850003_60,BranchTee_mvgd_33532_lvgd_1163850003_building_445771,0.018985808424441242,0.016479681712414998,0.00161639782688144,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023837149996066 47.55745084629986, 10.0240887 47.55743959624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_61_LVCableDist_mvgd_33532_lvgd_1163850003_building_445713,BranchTee_mvgd_33532_lvgd_1163850003_61,BranchTee_mvgd_33532_lvgd_1163850003_building_445713,0.023282834353513852,0.020209500218850023,0.0019822344148491488,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024002199999785 47.556946696306134, 10.023899699999998 47.55714439624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_61_LVCableDist_mvgd_33532_lvgd_1163850003_building_445770,BranchTee_mvgd_33532_lvgd_1163850003_61,BranchTee_mvgd_33532_lvgd_1163850003_building_445770,0.029568730130731836,0.025665657753475235,0.0025173977351119993,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024285981721953 47.55709678184573, 10.023899699999998 47.55714439624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_62_LVCableDist_mvgd_33532_lvgd_1163850003_building_445778,BranchTee_mvgd_33532_lvgd_1163850003_62,BranchTee_mvgd_33532_lvgd_1163850003_building_445778,0.011221370222365353,0.009740149353013126,0.0009553556022778245,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024656900004198 47.55773734626187, 10.024518 47.5577007962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_62_LVCableDist_mvgd_33532_lvgd_1163850003_building_445800,BranchTee_mvgd_33532_lvgd_1163850003_62,BranchTee_mvgd_33532_lvgd_1163850003_building_445800,0.012075912495513416,0.010481892046105645,0.0010281089052931796,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024600255398827 47.55779409216512, 10.024518 47.5577007962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_62_LVCableDist_mvgd_33532_lvgd_1163850003_building_445805,BranchTee_mvgd_33532_lvgd_1163850003_62,BranchTee_mvgd_33532_lvgd_1163850003_building_445805,0.029307317701788953,0.02543875176515281,0.002495141823084618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024490295958099 47.55796390143021, 10.024518 47.5577007962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_63_LVCableDist_mvgd_33532_lvgd_1163850003_67,BranchTee_mvgd_33532_lvgd_1163850003_63,BranchTee_mvgd_33532_lvgd_1163850003_67,0.06346454494835635,0.020308654383474033,0.005203811427319882,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025666899999997 47.55729109624426, 10.025201300000004 47.5577671962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_63_LVCableDist_mvgd_33532_lvgd_1163850003_71,BranchTee_mvgd_33532_lvgd_1163850003_63,BranchTee_mvgd_33532_lvgd_1163850003_71,0.017837339868921265,0.005707948758054805,0.0014625828187756506,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025533599999997 47.55715839624422, 10.025666899999997 47.55729109624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_63_LVCableDist_mvgd_33532_lvgd_1163850003_75,BranchTee_mvgd_33532_lvgd_1163850003_63,BranchTee_mvgd_33532_lvgd_1163850003_75,0.0276724009283703,0.008855168297078496,0.0022690142392041233,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025666899999997 47.55729109624426, 10.02574519999999 47.557354696244246, 10.025889700000004 47.55748899624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_63_LVCableDist_mvgd_33532_lvgd_1163850003_building_445938,BranchTee_mvgd_33532_lvgd_1163850003_63,BranchTee_mvgd_33532_lvgd_1163850003_building_445938,0.02491189419658374,0.021623524162634685,0.002120927944844329,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025369600005511 47.55738939627152, 10.025666899999997 47.55729109624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_64_LVCableDist_mvgd_33532_lvgd_1163850003_66,BranchTee_mvgd_33532_lvgd_1163850003_64,BranchTee_mvgd_33532_lvgd_1163850003_66,0.04155016888455189,0.013296054043056605,0.0034069297089335216,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024131299999997 47.558093996244324, 10.024467899999994 47.558390296244326)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_64_LVCableDist_mvgd_33532_lvgd_1163850003_building_445788,BranchTee_mvgd_33532_lvgd_1163850003_64,BranchTee_mvgd_33532_lvgd_1163850003_building_445788,0.028226118249765623,0.02450027064079656,0.002403091571359435,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024130604068914 47.55783995353008, 10.024131299999997 47.558093996244324)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_64_LVCableDist_mvgd_33532_lvgd_1163850003_building_445806,BranchTee_mvgd_33532_lvgd_1163850003_64,BranchTee_mvgd_33532_lvgd_1163850003_building_445806,0.018241186838946894,0.015833350176205904,0.001553002859138448,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024364365329994 47.55804930266122, 10.024131299999997 47.558093996244324)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_65_LVCableDist_mvgd_33532_lvgd_1163850003_66,BranchTee_mvgd_33532_lvgd_1163850003_65,BranchTee_mvgd_33532_lvgd_1163850003_66,0.050752847254759065,0.0162409111215229,0.004161508551400648,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.02489540183256 47.55807689669638, 10.024589499999998 47.5583865962443, 10.024528199999995 47.558396596244314, 10.024467899999994 47.558390296244326)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_65_LVCableDist_mvgd_33532_lvgd_1163850003_67,BranchTee_mvgd_33532_lvgd_1163850003_65,BranchTee_mvgd_33532_lvgd_1163850003_67,0.04140967861149287,0.013251097155677719,0.0033954101291592286,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025201300000004 47.5577671962443, 10.02489540183256 47.55807689669638)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_65_LVCableDist_mvgd_33532_lvgd_1163850003_building_445809,BranchTee_mvgd_33532_lvgd_1163850003_65,BranchTee_mvgd_33532_lvgd_1163850003_building_445809,0.014155380842472353,0.012286870571266002,0.0012051489365602225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024713213477074 47.5580455691762, 10.02489540183256 47.55807689669638)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_65_LVCableDist_mvgd_33532_lvgd_1163850003_building_445818,BranchTee_mvgd_33532_lvgd_1163850003_65,BranchTee_mvgd_33532_lvgd_1163850003_building_445818,0.014491805155700723,0.012578886875148227,0.0012337911474503507,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02496319671748 47.55819896365879, 10.02489540183256 47.55807689669638)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_65_LVCableDist_mvgd_33532_lvgd_1163850003_building_445876,BranchTee_mvgd_33532_lvgd_1163850003_65,BranchTee_mvgd_33532_lvgd_1163850003_building_445876,0.02556182433370175,0.02218766352165312,0.0021762611515098876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025214186481715 47.55799790323401, 10.02489540183256 47.55807689669638)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_66_LVCableDist_mvgd_33532_lvgd_1163850003_building_445799,BranchTee_mvgd_33532_lvgd_1163850003_66,BranchTee_mvgd_33532_lvgd_1163850003_building_445799,0.022392054060993923,0.019436302924942726,0.0019063959097473887,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024171056921602 47.55837875830655, 10.024467899999994 47.558390296244326)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_66_LVCableDist_mvgd_33532_lvgd_1163850003_building_445816,BranchTee_mvgd_33532_lvgd_1163850003_66,BranchTee_mvgd_33532_lvgd_1163850003_building_445816,0.015326905334253522,0.013303753830132057,0.001304889205729677,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024517673779336 47.558256538557075, 10.024467899999994 47.558390296244326)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_67_LVCableDist_mvgd_33532_lvgd_1163850003_building_445808,BranchTee_mvgd_33532_lvgd_1163850003_67,BranchTee_mvgd_33532_lvgd_1163850003_building_445808,0.019123408843108803,0.01659911887581844,0.0016281127358671375,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02496079559353 47.557822413629665, 10.025201300000004 47.5577671962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_67_LVCableDist_mvgd_33532_lvgd_1163850003_building_445942,BranchTee_mvgd_33532_lvgd_1163850003_67,BranchTee_mvgd_33532_lvgd_1163850003_building_445942,0.017849898321496825,0.015493711743059245,0.0015196896656651726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025131234523919 47.557613722639715, 10.025201300000004 47.5577671962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_68_LVCableDist_mvgd_33532_lvgd_1163850003_69,BranchTee_mvgd_33532_lvgd_1163850003_68,BranchTee_mvgd_33532_lvgd_1163850003_69,0.05157228968862144,0.01650313270035886,0.00422869919942048,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024047499999998 47.55614869624416, 10.024463699999998 47.55641139624418, 10.024550800000007 47.55646339624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_68_LVCableDist_mvgd_33532_lvgd_1163850003_building_445698,BranchTee_mvgd_33532_lvgd_1163850003_68,BranchTee_mvgd_33532_lvgd_1163850003_building_445698,0.04113250142558409,0.03570301123740699,0.003501904392594679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02350245059801 47.55612520334845, 10.024047499999998 47.55614869624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_68_LVCableDist_mvgd_33532_lvgd_1163850003_building_445721,BranchTee_mvgd_33532_lvgd_1163850003_68,BranchTee_mvgd_33532_lvgd_1163850003_building_445721,0.02101332521230401,0.01823956628427988,0.0017890148499020684,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024008284528577 47.555961447757525, 10.024047499999998 47.55614869624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_68_LVCableDist_mvgd_33532_lvgd_1163850003_building_445722,BranchTee_mvgd_33532_lvgd_1163850003_68,BranchTee_mvgd_33532_lvgd_1163850003_building_445722,0.017058019392172535,0.01480636083240576,0.0014522713418362438,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023827700007786 47.556185746315045, 10.024047499999998 47.55614869624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_68_LVCableDist_mvgd_33532_lvgd_1163850003_building_445723,BranchTee_mvgd_33532_lvgd_1163850003_68,BranchTee_mvgd_33532_lvgd_1163850003_building_445723,0.01802562375670317,0.01564624142081835,0.0015346504303187162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024010951929665 47.55630902973125, 10.024047499999998 47.55614869624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_69_LVCableDist_mvgd_33532_lvgd_1163850003_70,BranchTee_mvgd_33532_lvgd_1163850003_69,BranchTee_mvgd_33532_lvgd_1163850003_70,0.059618315826871576,0.019077861064598904,0.004888437684850602,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024550800000007 47.55646339624417, 10.025136999999997 47.556823996244184)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_69_LVCableDist_mvgd_33532_lvgd_1163850003_building_445709,BranchTee_mvgd_33532_lvgd_1163850003_69,BranchTee_mvgd_33532_lvgd_1163850003_building_445709,0.026815288852136,0.023275670723654048,0.002282977561913662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024819767992222 47.556305255194395, 10.024550800000007 47.55646339624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_69_LVCableDist_mvgd_33532_lvgd_1163850003_building_445715,BranchTee_mvgd_33532_lvgd_1163850003_69,BranchTee_mvgd_33532_lvgd_1163850003_building_445715,0.02633025493163277,0.022854661280657242,0.002241683150975863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024498510880477 47.556697711076005, 10.024550800000007 47.55646339624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_6_LVCableDist_mvgd_33532_lvgd_1163850003_building_445934,BranchTee_mvgd_33532_lvgd_1163850003_6,BranchTee_mvgd_33532_lvgd_1163850003_building_445934,0.018031190120373488,0.015651073024484187,0.0015351243347182125,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028904204107908 47.55943404717719, 10.028681299999999 47.559493296244476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_70_LVCableDist_mvgd_33532_lvgd_1163850003_76,BranchTee_mvgd_33532_lvgd_1163850003_70,BranchTee_mvgd_33532_lvgd_1163850003_76,0.018611739578827446,0.005955756665224783,0.0015260801630487754,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025136999999997 47.556823996244184, 10.0253046 47.55694709624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_70_LVCableDist_mvgd_33532_lvgd_1163850003_building_445716,BranchTee_mvgd_33532_lvgd_1163850003_70,BranchTee_mvgd_33532_lvgd_1163850003_building_445716,0.040094704313655805,0.03480220334425324,0.003413549292882138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024636029763238 47.556946114515036, 10.025136999999997 47.556823996244184)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_70_LVCableDist_mvgd_33532_lvgd_1163850003_building_445724,BranchTee_mvgd_33532_lvgd_1163850003_70,BranchTee_mvgd_33532_lvgd_1163850003_building_445724,0.027764599057927462,0.024099671982281037,0.0023637991376598026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02476891370985 47.55683791848544, 10.025136999999997 47.556823996244184)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_70_LVCableDist_mvgd_33532_lvgd_1163850003_building_445725,BranchTee_mvgd_33532_lvgd_1163850003_70,BranchTee_mvgd_33532_lvgd_1163850003_building_445725,0.022124758326793934,0.019204290227657135,0.0018836391098136372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025009199989256 47.55700329633793, 10.025136999999997 47.556823996244184)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_71_LVCableDist_mvgd_33532_lvgd_1163850003_76,BranchTee_mvgd_33532_lvgd_1163850003_71,BranchTee_mvgd_33532_lvgd_1163850003_76,0.029131079055551335,0.009321945297776427,0.0023886193811488592,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0253046 47.55694709624423, 10.025533599999997 47.55715839624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_71_LVCableDist_mvgd_33532_lvgd_1163850003_building_445915,BranchTee_mvgd_33532_lvgd_1163850003_71,BranchTee_mvgd_33532_lvgd_1163850003_building_445915,0.02754588462621157,0.02390982785555164,0.002345178411892968,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025169223579727 47.55717991916024, 10.025533599999997 47.55715839624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_71_LVCableDist_mvgd_33532_lvgd_1163850003_building_445921,BranchTee_mvgd_33532_lvgd_1163850003_71,BranchTee_mvgd_33532_lvgd_1163850003_building_445921,0.018753618148768744,0.01627814055313127,0.001596629806019243,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025288858801845 47.557127270379624, 10.025533599999997 47.55715839624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_72_LVCableDist_mvgd_33532_lvgd_1163850003_73,BranchTee_mvgd_33532_lvgd_1163850003_72,BranchTee_mvgd_33532_lvgd_1163850003_73,0.0389822944877849,0.01247433423609117,0.0031963753885536628,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026051900000002 47.55762099624429, 10.026395000000003 47.55788369624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_72_LVCableDist_mvgd_33532_lvgd_1163850003_75,BranchTee_mvgd_33532_lvgd_1163850003_72,BranchTee_mvgd_33532_lvgd_1163850003_75,0.0190871619687741,0.006107891830007713,0.0015650626920753576,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025889700000004 47.55748899624425, 10.026051900000002 47.55762099624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_72_LVCableDist_mvgd_33532_lvgd_1163850003_building_445870,BranchTee_mvgd_33532_lvgd_1163850003_72,BranchTee_mvgd_33532_lvgd_1163850003_building_445870,0.023363614710360154,0.020279617568592614,0.001989111825088524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02583415612227 47.557770777760666, 10.026051900000002 47.55762099624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_73_LVCableDist_mvgd_33532_lvgd_1163850003_building_445887,BranchTee_mvgd_33532_lvgd_1163850003_73,BranchTee_mvgd_33532_lvgd_1163850003_building_445887,0.0261922172216258,0.022734844548371196,0.0022299310122470364,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026460649995435 47.55765219631252, 10.026395000000003 47.55788369624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_73_LVStation_mvgd_33532_lvgd_1163850003,BusBar_mvgd_33532_lvgd_1163850003_LV,BranchTee_mvgd_33532_lvgd_1163850003_73,0.028090333092814918,0.008988906589700774,0.0023032828245213455,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026395000000003 47.55788369624428, 10.026558 47.5579801962443, 10.026685600000002 47.558041696244295)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_74_LVCableDist_mvgd_33532_lvgd_1163850003_75,BranchTee_mvgd_33532_lvgd_1163850003_74,BranchTee_mvgd_33532_lvgd_1163850003_75,0.056065589260281684,0.017940988563290138,0.004597129851155306,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026435899999994 47.55714689624425, 10.026030800000001 47.55741399624423, 10.025889700000004 47.55748899624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_74_LVCableDist_mvgd_33532_lvgd_1163850003_building_445842,BranchTee_mvgd_33532_lvgd_1163850003_74,BranchTee_mvgd_33532_lvgd_1163850003_building_445842,0.03401189087324463,0.02952232127797634,0.0028956758262064517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026728549995465 47.55691374627622, 10.026435899999994 47.55714689624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_74_LVCableDist_mvgd_33532_lvgd_1163850003_building_445886,BranchTee_mvgd_33532_lvgd_1163850003_74,BranchTee_mvgd_33532_lvgd_1163850003_building_445886,0.01725675205862177,0.014978860786883697,0.0014691908768382595,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026640434406424 47.55721690971184, 10.026435899999994 47.55714689624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_75_LVCableDist_mvgd_33532_lvgd_1163850003_building_445949,BranchTee_mvgd_33532_lvgd_1163850003_75,BranchTee_mvgd_33532_lvgd_1163850003_building_445949,0.019638977656133795,0.017046632605524133,0.0016720068008630013,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025637313108799 47.557533455572035, 10.025889700000004 47.55748899624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_7_LVCableDist_mvgd_33532_lvgd_1163850003_building_446082,BranchTee_mvgd_33532_lvgd_1163850003_7,BranchTee_mvgd_33532_lvgd_1163850003_building_446082,0.01627041457425817,0.014122719850456092,0.001385216903718179,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.030540799985848 47.55999224632222, 10.0305483 47.56013859624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_8_LVCableDist_mvgd_33532_lvgd_1163850003_building_445901,BranchTee_mvgd_33532_lvgd_1163850003_8,BranchTee_mvgd_33532_lvgd_1163850003_building_445901,0.018940885526956452,0.0164406886373982,0.0016125732189296313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02703631697442 47.558157946845604, 10.027179499999999 47.55829809624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_8_LVStation_mvgd_33532_lvgd_1163850003,BusBar_mvgd_33532_lvgd_1163850003_LV,BranchTee_mvgd_33532_lvgd_1163850003_8,0.04693122208133856,0.01501799106602834,0.003848152223634305,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026685600000002 47.558041696244295, 10.0267707 47.55809799624432, 10.027179499999999 47.55829809624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850003_9_LVCableDist_mvgd_33532_lvgd_1163850003_building_445940,BranchTee_mvgd_33532_lvgd_1163850003_9,BranchTee_mvgd_33532_lvgd_1163850003_building_445940,0.014726722618020804,0.012782795232442058,0.0012537913532410007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02808248423081 47.55858109775574, 10.027922999999994 47.55865779624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_10_LVCableDist_mvgd_33532_lvgd_1163850004_2,BranchTee_mvgd_33532_lvgd_1163850004_2,BranchTee_mvgd_33532_lvgd_1163850004_10,0.028592204809818434,0.009149505539141898,0.0023444340811500154,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019442999999997 47.562667496244735, 10.019065500000002 47.56263989624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_10_LVCableDist_mvgd_33532_lvgd_1163850004_6,BranchTee_mvgd_33532_lvgd_1163850004_6,BranchTee_mvgd_33532_lvgd_1163850004_10,0.01190556446511899,0.003809780628838077,0.0009762035237579413,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019065500000002 47.56263989624472, 10.018907399999998 47.56263989624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_10_LVCableDist_mvgd_33532_lvgd_1163850004_building_441951,BranchTee_mvgd_33532_lvgd_1163850004_10,BranchTee_mvgd_33532_lvgd_1163850004_building_441951,0.014586236504292457,0.012660853285725852,0.0012418307643705692,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01920285883408 47.56254733421768, 10.019065500000002 47.56263989624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_11_LVCableDist_mvgd_33532_lvgd_1163850004_14,BranchTee_mvgd_33532_lvgd_1163850004_11,BranchTee_mvgd_33532_lvgd_1163850004_14,0.009049891618669254,0.0028959653179741612,0.000742051005952374,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019165899999999 47.56200269624463, 10.019165200000005 47.56198639624465, 10.019156900000004 47.5619711962446, 10.019141899999997 47.56195839624466, 10.019121700000003 47.56194959624468, 10.019098399999999 47.56194549624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_11_LVCableDist_mvgd_33532_lvgd_1163850004_28,BranchTee_mvgd_33532_lvgd_1163850004_11,BranchTee_mvgd_33532_lvgd_1163850004_28,0.007409320904566423,0.0023709826894612557,0.0006075314779809416,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019098399999999 47.56194549624463, 10.019074299999998 47.56194659624465, 10.019052100000003 47.56195259624462, 10.019033000000004 47.561963896244606, 10.019020599999996 47.56197859624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_11_LVCableDist_mvgd_33532_lvgd_1163850004_building_441966,BranchTee_mvgd_33532_lvgd_1163850004_11,BranchTee_mvgd_33532_lvgd_1163850004_building_441966,0.015655087636432148,0.013588616068423105,0.0013328297151988223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019124258272852 47.56180569033484, 10.019098399999999 47.56194549624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_12_LVCableDist_mvgd_33532_lvgd_1163850004_14,BranchTee_mvgd_33532_lvgd_1163850004_12,BranchTee_mvgd_33532_lvgd_1163850004_14,0.007570590963865541,0.002422589108436973,0.0006207549081362861,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0190984 47.56204659624465, 10.019122699999999 47.56204219624463, 10.019143599999998 47.56203259624469, 10.019158499999998 47.562018896244666, 10.019165899999999 47.56200269624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_12_LVCableDist_mvgd_33532_lvgd_1163850004_24,BranchTee_mvgd_33532_lvgd_1163850004_12,BranchTee_mvgd_33532_lvgd_1163850004_24,0.0037913888114407845,0.001213244419661051,0.0003108770800837401,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019050200000002 47.562038596244626, 10.019073299999995 47.56204539624464, 10.0190984 47.56204659624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_12_LVCableDist_mvgd_33532_lvgd_1163850004_building_441941,BranchTee_mvgd_33532_lvgd_1163850004_12,BranchTee_mvgd_33532_lvgd_1163850004_building_441941,0.01883601360350152,0.01634965980783932,0.0016036447211072679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019105529329764 47.56221605650649, 10.0190984 47.56204659624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_12_LVCableDist_mvgd_33532_lvgd_1163850004_building_441944,BranchTee_mvgd_33532_lvgd_1163850004_12,BranchTee_mvgd_33532_lvgd_1163850004_building_441944,0.028308576575890313,0.02457184446787279,0.00241011183913927,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01909536998493 47.56230137275969, 10.0190984 47.56204659624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_13_LVCableDist_mvgd_33532_lvgd_1163850004_14,BranchTee_mvgd_33532_lvgd_1163850004_13,BranchTee_mvgd_33532_lvgd_1163850004_14,0.03333809797251636,0.010668191351205237,0.0027335762879204806,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019165899999999 47.56200269624463, 10.019606299999992 47.56197209624462)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_13_LVCableDist_mvgd_33532_lvgd_1163850004_21,BranchTee_mvgd_33532_lvgd_1163850004_13,BranchTee_mvgd_33532_lvgd_1163850004_21,0.021117760563387804,0.006757683380284097,0.0017315627777460128,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019606299999992 47.56197209624462, 10.019744000000001 47.561989296244676, 10.019845999999998 47.562054696244644)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_13_LVCableDist_mvgd_33532_lvgd_1163850004_building_441927,BranchTee_mvgd_33532_lvgd_1163850004_13,BranchTee_mvgd_33532_lvgd_1163850004_building_441927,0.019319528245131504,0.016769350516774147,0.0016448097849551652,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019467644449682 47.56182579901457, 10.019606299999992 47.56197209624462)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_13_LVCableDist_mvgd_33532_lvgd_1163850004_building_441949,BranchTee_mvgd_33532_lvgd_1163850004_13,BranchTee_mvgd_33532_lvgd_1163850004_building_441949,0.03323489703850791,0.028847890629424867,0.002829524777070619,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019466337590353 47.56225577969231, 10.019606299999992 47.56197209624462)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_15_LVCableDist_mvgd_33532_lvgd_1163850004_16,BranchTee_mvgd_33532_lvgd_1163850004_15,BranchTee_mvgd_33532_lvgd_1163850004_16,0.04745301904885014,0.015184966095632045,0.0038909372625010796,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020455700000003 47.56250359624466, 10.020404899999994 47.562929296244725)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_15_LVCableDist_mvgd_33532_lvgd_1163850004_35,BranchTee_mvgd_33532_lvgd_1163850004_15,BranchTee_mvgd_33532_lvgd_1163850004_35,0.03470384783238498,0.011105231306363195,0.0028455617237796394,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020444300000005 47.56324049624475, 10.020404899999994 47.562929296244725)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_15_LVCableDist_mvgd_33532_lvgd_1163850004_building_446059,BranchTee_mvgd_33532_lvgd_1163850004_15,BranchTee_mvgd_33532_lvgd_1163850004_building_446059,0.0167937068022947,0.0145769375043918,0.0014297685183406723,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020206899999893 47.56285974625022, 10.020404899999994 47.562929296244725)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_16_LVCableDist_mvgd_33532_lvgd_1163850004_23,BranchTee_mvgd_33532_lvgd_1163850004_16,BranchTee_mvgd_33532_lvgd_1163850004_23,0.12088203876797436,0.038682252405751794,0.00991179146104949,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020455700000003 47.56250359624466, 10.020541599999998 47.562063496244626, 10.0205587 47.56183759624462, 10.020486 47.561602396244616, 10.020395900000004 47.56143569624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_16_LVCableDist_mvgd_33532_lvgd_1163850004_31,BranchTee_mvgd_33532_lvgd_1163850004_16,BranchTee_mvgd_33532_lvgd_1163850004_31,0.03357990889803904,0.010745570847372493,0.0027534037121698727,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020018299999995 47.5624559962447, 10.020223500000004 47.56246089624471, 10.020455700000003 47.56250359624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_17_LVCableDist_mvgd_33532_lvgd_1163850004_19,BranchTee_mvgd_33532_lvgd_1163850004_17,BranchTee_mvgd_33532_lvgd_1163850004_19,0.001882490159418625,0.00060239685101396,0.00015435585036292887,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019019799999995 47.56201209624463, 10.019031700000001 47.56202699624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_17_LVCableDist_mvgd_33532_lvgd_1163850004_building_441929,BranchTee_mvgd_33532_lvgd_1163850004_17,BranchTee_mvgd_33532_lvgd_1163850004_building_441929,0.01918319649212199,0.016651014555161887,0.0016332028865617403,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018770147177264 47.56204643086369, 10.019019799999995 47.56201209624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_18_LVCableDist_mvgd_33532_lvgd_1163850004_25,BranchTee_mvgd_33532_lvgd_1163850004_18,BranchTee_mvgd_33532_lvgd_1163850004_25,0.022316092670107302,0.007141149654434337,0.0018298206997991156,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019616499999998 47.56268579624467, 10.019830699999996 47.562546996244684)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_18_LVCableDist_mvgd_33532_lvgd_1163850004_30,BranchTee_mvgd_33532_lvgd_1163850004_18,BranchTee_mvgd_33532_lvgd_1163850004_30,0.02320899021630644,0.007426876869218061,0.001903034341496507,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019805500000002 47.56285079624473, 10.019616499999998 47.56268579624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_18_LVStation_mvgd_33532_lvgd_1163850004,BusBar_mvgd_33532_lvgd_1163850004_LV,BranchTee_mvgd_33532_lvgd_1163850004_18,0.004791846505857754,0.0015333908818744814,0.00039291017725624197,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019570500000002 47.562715596244686, 10.019616499999998 47.56268579624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_19_LVCableDist_mvgd_33532_lvgd_1163850004_24,BranchTee_mvgd_33532_lvgd_1163850004_19,BranchTee_mvgd_33532_lvgd_1163850004_24,0.0018978944084527146,0.0006073262107048686,0.0001556189305160775,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019050200000002 47.562038596244626, 10.019031700000001 47.56202699624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_19_LVCableDist_mvgd_33532_lvgd_1163850004_building_441931,BranchTee_mvgd_33532_lvgd_1163850004_19,BranchTee_mvgd_33532_lvgd_1163850004_building_441931,0.03637814763151729,0.03157623214415701,0.003097132208595289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018666429303744 47.5622412641322, 10.019031700000001 47.56202699624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_1_LVCableDist_mvgd_33532_lvgd_1163850004_3,BranchTee_mvgd_33532_lvgd_1163850004_1,BranchTee_mvgd_33532_lvgd_1163850004_3,0.011325441015637422,0.003624141125003975,0.0009286359718575066,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018815599999996 47.56268119624471, 10.018785000000005 47.56278099624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_1_LVCableDist_mvgd_33532_lvgd_1163850004_7,BranchTee_mvgd_33532_lvgd_1163850004_1,BranchTee_mvgd_33532_lvgd_1163850004_7,0.050399862412641966,0.01612795597204543,0.004132565358684551,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018785000000005 47.56278099624472, 10.018726899999999 47.56323289624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_1_LVCableDist_mvgd_33532_lvgd_1163850004_building_441990,BranchTee_mvgd_33532_lvgd_1163850004_1,BranchTee_mvgd_33532_lvgd_1163850004_building_441990,0.020322535409008625,0.017639960735019486,0.0017302029672623446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018595360961536 47.56291113495467, 10.018785000000005 47.56278099624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_1_LVCableDist_mvgd_33532_lvgd_1163850004_building_441997,BranchTee_mvgd_33532_lvgd_1163850004_1,BranchTee_mvgd_33532_lvgd_1163850004_building_441997,0.01740889789411161,0.015110923372088877,0.0014821441413164918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019004591296497 47.56282998558708, 10.018785000000005 47.56278099624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_20_LVCableDist_mvgd_33532_lvgd_1163850004_23,BranchTee_mvgd_33532_lvgd_1163850004_20,BranchTee_mvgd_33532_lvgd_1163850004_23,0.15948231459835233,0.05103434067147274,0.013076843012703647,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022442299999994 47.56108589624457, 10.022245999999992 47.56108409624455, 10.021679501197342 47.561193347716745, 10.021113 47.561302596244616, 10.020958899999995 47.561331496244605, 10.020524999999992 47.56141179624464, 10.020395900000004 47.56143569624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_20_LVCableDist_mvgd_33532_lvgd_1163850004_32,BranchTee_mvgd_33532_lvgd_1163850004_20,BranchTee_mvgd_33532_lvgd_1163850004_32,0.08228499192258482,0.02633119741522714,0.006747004671854356,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023380299999998 47.561433296244594, 10.023312599999999 47.56135979624458, 10.023241299999999 47.56132849624457, 10.023023400000003 47.561232696244566, 10.022442299999994 47.56108589624457)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_20_LVCableDist_mvgd_33532_lvgd_1163850004_building_446003,BranchTee_mvgd_33532_lvgd_1163850004_20,BranchTee_mvgd_33532_lvgd_1163850004_building_446003,0.016767220654351964,0.014553947527977505,0.001427513562901325,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022490876323573 47.56093862168524, 10.022442299999994 47.56108589624457)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_21_LVCableDist_mvgd_33532_lvgd_1163850004_22,BranchTee_mvgd_33532_lvgd_1163850004_21,BranchTee_mvgd_33532_lvgd_1163850004_22,0.01645397166342612,0.005265270932296359,0.0013491527566550669,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019845999999998 47.562054696244644, 10.019912799999998 47.56191369624464)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_21_LVCableDist_mvgd_33532_lvgd_1163850004_27,BranchTee_mvgd_33532_lvgd_1163850004_21,BranchTee_mvgd_33532_lvgd_1163850004_27,0.024691839720722517,0.007901388710631205,0.0020246214292532253,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019845999999998 47.562054696244644, 10.019917399999999 47.56227159624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_22_LVCableDist_mvgd_33532_lvgd_1163850004_26,BranchTee_mvgd_33532_lvgd_1163850004_22,BranchTee_mvgd_33532_lvgd_1163850004_26,0.02028582098103715,0.006491462713931888,0.0016633474189342707,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.02017949999999 47.56188799624464, 10.019912799999998 47.56191369624464)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_22_LVCableDist_mvgd_33532_lvgd_1163850004_building_445980,BranchTee_mvgd_33532_lvgd_1163850004_22,BranchTee_mvgd_33532_lvgd_1163850004_building_445980,0.015408530408692375,0.013374604394744982,0.0013118385328266548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019739686577958 47.561839765025184, 10.019912799999998 47.56191369624464)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_23_LVCableDist_mvgd_33532_lvgd_1163850004_34,BranchTee_mvgd_33532_lvgd_1163850004_23,BranchTee_mvgd_33532_lvgd_1163850004_34,0.055679225500192914,0.017817352160061733,0.004565449735092262,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0199197 47.56128269624462, 10.020044400000002 47.56125939624458, 10.020143600000004 47.5612147962446, 10.0202025 47.56118499624459, 10.020302300000006 47.561308296244604, 10.020395900000004 47.56143569624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_24_LVCableDist_mvgd_33532_lvgd_1163850004_building_441934,BranchTee_mvgd_33532_lvgd_1163850004_24,BranchTee_mvgd_33532_lvgd_1163850004_building_441934,0.03205474873094764,0.027823521898462548,0.0027290503007095014,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018776483947725 47.56225954417229, 10.019050200000002 47.562038596244626)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_25_LVCableDist_mvgd_33532_lvgd_1163850004_33,BranchTee_mvgd_33532_lvgd_1163850004_25,BranchTee_mvgd_33532_lvgd_1163850004_33,0.012470338489037015,0.003990508316491845,0.0010225124907868488,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019830699999996 47.562546996244684, 10.019946700000007 47.56246689624473)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_25_LVCableDist_mvgd_33532_lvgd_1163850004_building_445992,BranchTee_mvgd_33532_lvgd_1163850004_25,BranchTee_mvgd_33532_lvgd_1163850004_building_445992,0.014557778120270757,0.012636151408395017,0.00123940789835081,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019637899988506 47.56253739630612, 10.019830699999996 47.562546996244684)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_26_LVCableDist_mvgd_33532_lvgd_1163850004_building_445982,BranchTee_mvgd_33532_lvgd_1163850004_26,BranchTee_mvgd_33532_lvgd_1163850004_building_445982,0.011927065741247207,0.010352693063402574,0.0010154365152239462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020080176803699 47.561804380825016, 10.02017949999999 47.56188799624464)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_26_LVCableDist_mvgd_33532_lvgd_1163850004_building_445984,BranchTee_mvgd_33532_lvgd_1163850004_26,BranchTee_mvgd_33532_lvgd_1163850004_building_445984,0.011192582811567663,0.009715161880440732,0.0009529047238524935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020318612835924 47.56185252802967, 10.02017949999999 47.56188799624464)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_26_LVCableDist_mvgd_33532_lvgd_1163850004_building_445990,BranchTee_mvgd_33532_lvgd_1163850004_26,BranchTee_mvgd_33532_lvgd_1163850004_building_445990,0.01932260972202244,0.016772025238715477,0.0016450721331490762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020103515210138 47.56205410504267, 10.02017949999999 47.56188799624464)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_27_LVCableDist_mvgd_33532_lvgd_1163850004_33,BranchTee_mvgd_33532_lvgd_1163850004_27,BranchTee_mvgd_33532_lvgd_1163850004_33,0.021811260582538693,0.006979603386412382,0.001788426705903705,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019946700000007 47.56246689624473, 10.019917399999999 47.56227159624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_27_LVCableDist_mvgd_33532_lvgd_1163850004_building_445989,BranchTee_mvgd_33532_lvgd_1163850004_27,BranchTee_mvgd_33532_lvgd_1163850004_building_445989,0.01598007780665862,0.013870707536179683,0.001360498455616304,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019735295598936 47.56219775754492, 10.019917399999999 47.56227159624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_28_LVCableDist_mvgd_33532_lvgd_1163850004_building_441928,BranchTee_mvgd_33532_lvgd_1163850004_28,BranchTee_mvgd_33532_lvgd_1163850004_building_441928,0.014477058832435887,0.012566087066554349,0.0012325356873536877,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018834852137523 47.561945007635266, 10.019020599999996 47.56197859624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_29_LVCableDist_mvgd_33532_lvgd_1163850004_32,BranchTee_mvgd_33532_lvgd_1163850004_29,BranchTee_mvgd_33532_lvgd_1163850004_32,0.02647785785465968,0.008472914513491098,0.002171067001065735,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0235507 47.56162399624465, 10.023432200000006 47.56157089624458, 10.023380299999998 47.561433296244594)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_29_LVCableDist_mvgd_33532_lvgd_1163850004_building_446037,BranchTee_mvgd_33532_lvgd_1163850004_29,BranchTee_mvgd_33532_lvgd_1163850004_building_446037,0.015764523512818512,0.013683606409126468,0.0013421467750163048,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023574104384307 47.56176499154864, 10.0235507 47.56162399624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_2_LVCableDist_mvgd_33532_lvgd_1163850004_building_442001,BranchTee_mvgd_33532_lvgd_1163850004_2,BranchTee_mvgd_33532_lvgd_1163850004_building_442001,0.008109957364957697,0.007039442992783281,0.0006904587451721614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019448400000043 47.56259459625623, 10.019442999999997 47.562667496244735)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_2_LVCableDist_mvgd_33532_lvgd_1163850004_building_442003,BranchTee_mvgd_33532_lvgd_1163850004_2,BranchTee_mvgd_33532_lvgd_1163850004_building_442003,0.0186229754446751,0.016164742685977986,0.0015855072570988065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019328223971979 47.562815963690724, 10.019442999999997 47.562667496244735)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_2_LVStation_mvgd_33532_lvgd_1163850004,BusBar_mvgd_33532_lvgd_1163850004_LV,BranchTee_mvgd_33532_lvgd_1163850004_2,0.01098845907235386,0.0035163069031532352,0.000901004945925052,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019570500000002 47.562715596244686, 10.019442999999997 47.562667496244735)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_30_LVCableDist_mvgd_33532_lvgd_1163850004_building_446055,BranchTee_mvgd_33532_lvgd_1163850004_30,BranchTee_mvgd_33532_lvgd_1163850004_building_446055,0.016044161991423122,0.01392633260855527,0.0013659544011665316,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020018524782284 47.562853398092535, 10.019805500000002 47.56285079624473)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_30_LVCableDist_mvgd_33532_lvgd_1163850004_building_446075,BranchTee_mvgd_33532_lvgd_1163850004_30,BranchTee_mvgd_33532_lvgd_1163850004_building_446075,0.01145803302706169,0.009945572667489548,0.0009755044015632089,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019775825206183 47.56295194151829, 10.019805500000002 47.56285079624473)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_31_LVCableDist_mvgd_33532_lvgd_1163850004_33,BranchTee_mvgd_33532_lvgd_1163850004_31,BranchTee_mvgd_33532_lvgd_1163850004_33,0.005526115788836296,0.0017683570524276147,0.00045311700436897096,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019946700000007 47.56246689624473, 10.020018299999995 47.5624559962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_31_LVCableDist_mvgd_33532_lvgd_1163850004_building_446046,BranchTee_mvgd_33532_lvgd_1163850004_31,BranchTee_mvgd_33532_lvgd_1163850004_building_446046,0.021657334886536903,0.018798566681514032,0.0018438440051663015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020078604929848 47.562646584408725, 10.020018299999995 47.5624559962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_32_LVCableDist_mvgd_33532_lvgd_1163850004_building_446032,BranchTee_mvgd_33532_lvgd_1163850004_32,BranchTee_mvgd_33532_lvgd_1163850004_building_446032,0.013120168414776355,0.011388306184025877,0.0011170138895250728,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02324428305827 47.561507089863895, 10.023380299999998 47.561433296244594)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_34_LVCableDist_mvgd_33532_lvgd_1163850004_building_445977,BranchTee_mvgd_33532_lvgd_1163850004_34,BranchTee_mvgd_33532_lvgd_1163850004_building_445977,0.010004761368121584,0.008684132867529535,0.000851776978486764,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019912696501168 47.56119277590862, 10.0199197 47.56128269624462)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_35_LVCableDist_mvgd_33532_lvgd_1163850004_building_446021,BranchTee_mvgd_33532_lvgd_1163850004_35,BranchTee_mvgd_33532_lvgd_1163850004_building_446021,0.02085674004240272,0.01810365035680556,0.0017756836330957049,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020282208076518 47.5633927098738, 10.020444300000005 47.56324049624475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_36_LVCableDist_mvgd_33532_lvgd_1163850004_53,BranchTee_mvgd_33532_lvgd_1163850004_36,BranchTee_mvgd_33532_lvgd_1163850004_53,0.0134105165399168,0.00339286068459895,0.001078537734211764,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0195246 47.563111496244744, 10.019514400000002 47.562990996244686)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_36_LVCableDist_mvgd_33532_lvgd_1163850004_building_442008,BranchTee_mvgd_33532_lvgd_1163850004_36,BranchTee_mvgd_33532_lvgd_1163850004_building_442008,0.012172781422409337,0.010565974274651304,0.0010363560507097179,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019363598149662 47.56303045482338, 10.019514400000002 47.562990996244686)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_36_LVCableDist_mvgd_33532_lvgd_1163850004_building_446063,BranchTee_mvgd_33532_lvgd_1163850004_36,BranchTee_mvgd_33532_lvgd_1163850004_building_446063,0.012000506077885286,0.010416439275604428,0.0010216890169817546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019660749468423 47.562948248656966, 10.019514400000002 47.562990996244686)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_36_LVStation_mvgd_33532_lvgd_1163850004,BusBar_mvgd_33532_lvgd_1163850004_LV,BranchTee_mvgd_33532_lvgd_1163850004_36,0.030889311837655028,0.007814995894926723,0.0024842658596767046,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019570500000002 47.562715596244686, 10.019514400000002 47.562990996244686)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_37_LVCableDist_mvgd_33532_lvgd_1163850004_40,BranchTee_mvgd_33532_lvgd_1163850004_37,BranchTee_mvgd_33532_lvgd_1163850004_40,0.010722547067488937,0.0027128044080747013,0.000862358402431847,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019577100000003 47.56489219624491, 10.019442299999993 47.5649232962449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_37_LVCableDist_mvgd_33532_lvgd_1163850004_54,BranchTee_mvgd_33532_lvgd_1163850004_37,BranchTee_mvgd_33532_lvgd_1163850004_54,0.029679263818058417,0.007508853745968779,0.0023869480236740014,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019563099999996 47.56462569624487, 10.019560499999997 47.56478899624492, 10.019577100000003 47.56489219624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_37_LVCableDist_mvgd_33532_lvgd_1163850004_building_446051,BranchTee_mvgd_33532_lvgd_1163850004_37,BranchTee_mvgd_33532_lvgd_1163850004_building_446051,0.01720178285890208,0.014931147521527006,0.001464510955236505,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019664999999435 47.56503509625229, 10.019577100000003 47.56489219624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_37_LVCableDist_mvgd_33532_lvgd_1163850004_building_446052,BranchTee_mvgd_33532_lvgd_1163850004_37,BranchTee_mvgd_33532_lvgd_1163850004_building_446052,0.020590729337217558,0.01787275306470484,0.001753036236883966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019822900004526 47.56497339628609, 10.019577100000003 47.56489219624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_38_LVCableDist_mvgd_33532_lvgd_1163850004_48,BranchTee_mvgd_33532_lvgd_1163850004_38,BranchTee_mvgd_33532_lvgd_1163850004_48,0.04243753138173103,0.010736695439577951,0.003413028782728512,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0186462 47.56498479624486, 10.018655200000005 47.56460289624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_38_LVCableDist_mvgd_33532_lvgd_1163850004_51,BranchTee_mvgd_33532_lvgd_1163850004_38,BranchTee_mvgd_33532_lvgd_1163850004_51,0.03490443170273428,0.008830821220791773,0.0028071809591049394,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018655200000005 47.56460289624489, 10.018723700000008 47.56429219624485)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_38_LVCableDist_mvgd_33532_lvgd_1163850004_building_442024,BranchTee_mvgd_33532_lvgd_1163850004_38,BranchTee_mvgd_33532_lvgd_1163850004_building_442024,0.019190176958063743,0.01665707359959933,0.001633797183613866,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018520044371256 47.564749323167334, 10.018655200000005 47.56460289624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_38_LVCableDist_mvgd_33532_lvgd_1163850004_building_442033,BranchTee_mvgd_33532_lvgd_1163850004_38,BranchTee_mvgd_33532_lvgd_1163850004_building_442033,0.01590212875709023,0.013803047761154319,0.0013538620948402402,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018444228280341 47.56459653615569, 10.018655200000005 47.56460289624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_38_LVCableDist_mvgd_33532_lvgd_1163850004_building_442036,BranchTee_mvgd_33532_lvgd_1163850004_38,BranchTee_mvgd_33532_lvgd_1163850004_building_442036,0.01492377878597248,0.012953839986224113,0.0012705681559206606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018823623739745 47.56453209986355, 10.018655200000005 47.56460289624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_38_LVCableDist_mvgd_33532_lvgd_1163850004_building_442039,BranchTee_mvgd_33532_lvgd_1163850004_38,BranchTee_mvgd_33532_lvgd_1163850004_building_442039,0.02589214407654992,0.02247438105844533,0.0022043836366092565,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018987519680772 47.5646627314022, 10.018655200000005 47.56460289624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_39_LVCableDist_mvgd_33532_lvgd_1163850004_45,BranchTee_mvgd_33532_lvgd_1163850004_39,BranchTee_mvgd_33532_lvgd_1163850004_45,0.03817163179741625,0.009657422844746312,0.0030699447815756144,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018104099999999 47.56547319624496, 10.018055499999994 47.56523829624495, 10.018050399999996 47.56513199624492)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_39_LVCableDist_mvgd_33532_lvgd_1163850004_building_442081,BranchTee_mvgd_33532_lvgd_1163850004_39,BranchTee_mvgd_33532_lvgd_1163850004_building_442081,0.01601843669015441,0.013904003047054027,0.0013637642220529003,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01789725542614 47.5654395238723, 10.018104099999999 47.56547319624496)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_3_LVCableDist_mvgd_33532_lvgd_1163850004_6,BranchTee_mvgd_33532_lvgd_1163850004_3,BranchTee_mvgd_33532_lvgd_1163850004_6,0.008297255475766749,0.0026551217522453596,0.0006803381777230518,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018907399999998 47.56263989624471, 10.018815599999996 47.56268119624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_3_LVCableDist_mvgd_33532_lvgd_1163850004_building_441989,BranchTee_mvgd_33532_lvgd_1163850004_3,BranchTee_mvgd_33532_lvgd_1163850004_building_441989,0.01701444618405477,0.01476853928775954,0.0014485616426052573,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01858980172769 47.56267570609085, 10.018815599999996 47.56268119624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_40_LVCableDist_mvgd_33532_lvgd_1163850004_41,BranchTee_mvgd_33532_lvgd_1163850004_40,BranchTee_mvgd_33532_lvgd_1163850004_41,0.015449791882662817,0.0039087973463136924,0.001242545988558457,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019320300000002 47.56503509624496, 10.019442299999993 47.5649232962449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_40_LVCableDist_mvgd_33532_lvgd_1163850004_building_442046,BranchTee_mvgd_33532_lvgd_1163850004_40,BranchTee_mvgd_33532_lvgd_1163850004_building_442046,0.016415079519138044,0.014248289022611823,0.0013975332664087833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019324743821509 47.564798879695424, 10.019442299999993 47.5649232962449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_41_LVCableDist_mvgd_33532_lvgd_1163850004_building_442058,BranchTee_mvgd_33532_lvgd_1163850004_41,BranchTee_mvgd_33532_lvgd_1163850004_building_442058,0.015723436284856968,0.013647942695255849,0.0013386487250779033,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019498921513698 47.56510838873945, 10.019320300000002 47.56503509624496)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_42_LVCableDist_mvgd_33532_lvgd_1163850004_45,BranchTee_mvgd_33532_lvgd_1163850004_42,BranchTee_mvgd_33532_lvgd_1163850004_45,0.020285916803550626,0.005132336951298309,0.0016314902323550306,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018050399999996 47.56513199624492, 10.018050399999998 47.5650803962449, 10.018099499999998 47.56502729624487, 10.018199400000002 47.565036396244906)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_42_LVCableDist_mvgd_33532_lvgd_1163850004_48,BranchTee_mvgd_33532_lvgd_1163850004_42,BranchTee_mvgd_33532_lvgd_1163850004_48,0.034152194692479085,0.008640505257197208,0.0027466824691164318,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018199400000002 47.565036396244906, 10.018337700000002 47.56502569624493, 10.0186462 47.56498479624486)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_42_LVCableDist_mvgd_33532_lvgd_1163850004_49,BranchTee_mvgd_33532_lvgd_1163850004_42,BranchTee_mvgd_33532_lvgd_1163850004_49,0.03669729610144379,0.009284415913665278,0.002951371669475972,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018472499999998 47.565300196244976, 10.018312499999997 47.56519359624495, 10.018224200000006 47.56510949624491, 10.018199400000002 47.565036396244906)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_43_LVCableDist_mvgd_33532_lvgd_1163850004_46,BranchTee_mvgd_33532_lvgd_1163850004_43,BranchTee_mvgd_33532_lvgd_1163850004_46,0.01130396531133869,0.0028599032237686885,0.0009091188320905085,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019825600000003 47.56386189624484, 10.019886800000004 47.563768996244804)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_43_LVCableDist_mvgd_33532_lvgd_1163850004_47,BranchTee_mvgd_33532_lvgd_1163850004_43,BranchTee_mvgd_33532_lvgd_1163850004_47,0.020658528839444378,0.005226607796379428,0.001661457470360866,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019886800000004 47.563768996244804, 10.019881700000003 47.56358309624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_43_LVCableDist_mvgd_33532_lvgd_1163850004_building_446020,BranchTee_mvgd_33532_lvgd_1163850004_43,BranchTee_mvgd_33532_lvgd_1163850004_building_446020,0.019798839555170235,0.017185392733887764,0.0016856169890850099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020118959983893 47.5638526380548, 10.019886800000004 47.563768996244804)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_44_LVCableDist_mvgd_33532_lvgd_1163850004_54,BranchTee_mvgd_33532_lvgd_1163850004_44,BranchTee_mvgd_33532_lvgd_1163850004_54,0.053372686278897484,0.013503289628561064,0.004292486121373109,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019563099999996 47.56462569624487, 10.020194999999996 47.564408096244875)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_44_LVCableDist_mvgd_33532_lvgd_1163850004_building_446028,BranchTee_mvgd_33532_lvgd_1163850004_44,BranchTee_mvgd_33532_lvgd_1163850004_building_446028,0.019595337770014768,0.017008753184372817,0.001668291424856292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019975052191404 47.56431384614375, 10.020194999999996 47.564408096244875)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_44_LVCableDist_mvgd_33532_lvgd_1163850004_building_446036,BranchTee_mvgd_33532_lvgd_1163850004_44,BranchTee_mvgd_33532_lvgd_1163850004_building_446036,0.021682478624631994,0.01882039144618057,0.0018459846716424393,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020310692725 47.56458679871651, 10.020194999999996 47.564408096244875)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_45_LVCableDist_mvgd_33532_lvgd_1163850004_building_442025,BranchTee_mvgd_33532_lvgd_1163850004_45,BranchTee_mvgd_33532_lvgd_1163850004_building_442025,0.01709065782769981,0.014834690994443435,0.0014550500855736548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01782484231713 47.56511488608593, 10.018050399999996 47.56513199624492)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_46_LVCableDist_mvgd_33532_lvgd_1163850004_52,BranchTee_mvgd_33532_lvgd_1163850004_46,BranchTee_mvgd_33532_lvgd_1163850004_52,0.025339535624021328,0.0064109025128773955,0.0020379263734221376,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0195399 47.56398239624477, 10.019825600000003 47.56386189624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_46_LVCableDist_mvgd_33532_lvgd_1163850004_building_446011,BranchTee_mvgd_33532_lvgd_1163850004_46,BranchTee_mvgd_33532_lvgd_1163850004_building_446011,0.013234518819562113,0.011487562335379915,0.0011267493583377026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019692200003751 47.56378434627786, 10.019825600000003 47.56386189624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_46_LVCableDist_mvgd_33532_lvgd_1163850004_building_446026,BranchTee_mvgd_33532_lvgd_1163850004_46,BranchTee_mvgd_33532_lvgd_1163850004_building_446026,0.023210000502416825,0.020146280436097803,0.00197603354754844,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019978414399496 47.56404330982855, 10.019825600000003 47.56386189624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_47_LVCableDist_mvgd_33532_lvgd_1163850004_57,BranchTee_mvgd_33532_lvgd_1163850004_47,BranchTee_mvgd_33532_lvgd_1163850004_57,0.03834364912300741,0.009700943228120875,0.0030837792357546186,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019881700000003 47.56358309624477, 10.019641799999997 47.563278696244744)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_47_LVCableDist_mvgd_33532_lvgd_1163850004_building_446009,BranchTee_mvgd_33532_lvgd_1163850004_47,BranchTee_mvgd_33532_lvgd_1163850004_building_446009,0.01269982102495768,0.011023444649663266,0.001081226706159022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019713544317954 47.56357434864717, 10.019881700000003 47.56358309624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_48_LVCableDist_mvgd_33532_lvgd_1163850004_building_442018,BranchTee_mvgd_33532_lvgd_1163850004_48,BranchTee_mvgd_33532_lvgd_1163850004_building_442018,0.017882969191621287,0.015522417258327276,0.0015225052256564683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0184788499897 47.56487059626727, 10.0186462 47.56498479624486)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_49_LVCableDist_mvgd_33532_lvgd_1163850004_building_442054,BranchTee_mvgd_33532_lvgd_1163850004_49,BranchTee_mvgd_33532_lvgd_1163850004_building_442054,0.032304505690866216,0.028040310939671874,0.002750313899195052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018891107111628 47.56523655558496, 10.018472499999998 47.565300196244976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_49_LVCableDist_mvgd_33532_lvgd_1163850004_building_442082,BranchTee_mvgd_33532_lvgd_1163850004_49,BranchTee_mvgd_33532_lvgd_1163850004_building_442082,0.017719124940637737,0.015380200448473555,0.0015085559912959292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018366165560277 47.56544246215887, 10.018472499999998 47.565300196244976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_49_LVCableDist_mvgd_33532_lvgd_1163850004_building_442084,BranchTee_mvgd_33532_lvgd_1163850004_49,BranchTee_mvgd_33532_lvgd_1163850004_building_442084,0.01165358255727752,0.010115309659716888,0.0009921529333835153,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018491399996227 47.565404296284036, 10.018472499999998 47.565300196244976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_4_LVCableDist_mvgd_33532_lvgd_1163850004_5,BranchTee_mvgd_33532_lvgd_1163850004_4,BranchTee_mvgd_33532_lvgd_1163850004_5,0.01976462159539294,0.006324678910525741,0.0016206113791322916,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0186982 47.56345569624476, 10.018812600000004 47.56361579624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_4_LVCableDist_mvgd_33532_lvgd_1163850004_8,BranchTee_mvgd_33532_lvgd_1163850004_4,BranchTee_mvgd_33532_lvgd_1163850004_8,0.02665437617965092,0.008529400377488295,0.002185540721431464,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018812600000004 47.56361579624483, 10.018506700000001 47.563736496244786)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_4_LVCableDist_mvgd_33532_lvgd_1163850004_9,BranchTee_mvgd_33532_lvgd_1163850004_4,BranchTee_mvgd_33532_lvgd_1163850004_9,0.01550395789820237,0.004961266527424759,0.0012712558381219644,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018812600000004 47.56361579624483, 10.0189023 47.56374139624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_50_LVCableDist_mvgd_33532_lvgd_1163850004_54,BranchTee_mvgd_33532_lvgd_1163850004_50,BranchTee_mvgd_33532_lvgd_1163850004_54,0.016836154717719636,0.004259547143583068,0.0013540439033827621,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019502199999998 47.564479896244904, 10.019563099999996 47.56462569624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_50_LVCableDist_mvgd_33532_lvgd_1163850004_55,BranchTee_mvgd_33532_lvgd_1163850004_50,BranchTee_mvgd_33532_lvgd_1163850004_55,0.04685600130321634,0.011854568329713735,0.003768383218451923,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019209099999994 47.56410789624483, 10.019502199999998 47.564479896244904)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_50_LVCableDist_mvgd_33532_lvgd_1163850004_building_442050,BranchTee_mvgd_33532_lvgd_1163850004_50,BranchTee_mvgd_33532_lvgd_1163850004_building_442050,0.018389277220693324,0.015961892627561806,0.0015656108537987553,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019283148875285 47.56455306350267, 10.019502199999998 47.564479896244904)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_50_LVCableDist_mvgd_33532_lvgd_1163850004_building_446027,BranchTee_mvgd_33532_lvgd_1163850004_50,BranchTee_mvgd_33532_lvgd_1163850004_building_446027,0.014844900034639844,0.012885373230067384,0.0012638526429758939,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019689899986279 47.56443904630662, 10.019502199999998 47.564479896244904)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_51_LVCableDist_mvgd_33532_lvgd_1163850004_55,BranchTee_mvgd_33532_lvgd_1163850004_51,BranchTee_mvgd_33532_lvgd_1163850004_55,0.04189646264060781,0.010599805048073776,0.003369513452624198,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019209099999994 47.56410789624483, 10.018723700000008 47.56429219624485)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_51_LVCableDist_mvgd_33532_lvgd_1163850004_building_442026,BranchTee_mvgd_33532_lvgd_1163850004_51,BranchTee_mvgd_33532_lvgd_1163850004_building_442026,0.0243885723375064,0.021169280788955552,0.002076373807519146,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018437205011072 47.56418982225757, 10.018723700000008 47.56429219624485)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_51_LVCableDist_mvgd_33532_lvgd_1163850004_building_442027,BranchTee_mvgd_33532_lvgd_1163850004_51,BranchTee_mvgd_33532_lvgd_1163850004_building_442027,0.014439967123159928,0.012533891462902817,0.001229377804532549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018717347733268 47.56416230415997, 10.018723700000008 47.56429219624485)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_51_LVCableDist_mvgd_33532_lvgd_1163850004_building_442048,BranchTee_mvgd_33532_lvgd_1163850004_51,BranchTee_mvgd_33532_lvgd_1163850004_building_442048,0.019424802790398592,0.016860728822065976,0.0016537725608555367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018881324679292 47.56443058913273, 10.018723700000008 47.56429219624485)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_52_LVCableDist_mvgd_33532_lvgd_1163850004_55,BranchTee_mvgd_33532_lvgd_1163850004_52,BranchTee_mvgd_33532_lvgd_1163850004_55,0.028547042202159728,0.007222401677146412,0.0022958893584389835,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019209099999994 47.56410789624483, 10.0195399 47.56398239624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_52_LVCableDist_mvgd_33532_lvgd_1163850004_building_442045,BranchTee_mvgd_33532_lvgd_1163850004_52,BranchTee_mvgd_33532_lvgd_1163850004_building_442045,0.013040140296621726,0.011318841777467658,0.001110200522752235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019379754605293 47.56393774004528, 10.0195399 47.56398239624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_52_LVCableDist_mvgd_33532_lvgd_1163850004_building_446013,BranchTee_mvgd_33532_lvgd_1163850004_52,BranchTee_mvgd_33532_lvgd_1163850004_building_446013,0.010150772060768575,0.008810870148747122,0.0008642079143215647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01957365 47.56389394625559, 10.0195399 47.56398239624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_52_LVCableDist_mvgd_33532_lvgd_1163850004_building_446025,BranchTee_mvgd_33532_lvgd_1163850004_52,BranchTee_mvgd_33532_lvgd_1163850004_building_446025,0.021828636165440323,0.018947256191602202,0.0018584281097127817,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019683711081795 47.564152977513615, 10.0195399 47.56398239624477)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_53_LVCableDist_mvgd_33532_lvgd_1163850004_56,BranchTee_mvgd_33532_lvgd_1163850004_53,BranchTee_mvgd_33532_lvgd_1163850004_56,0.018152638126916976,0.004592617446109995,0.0014599217813195866,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019626700000005 47.56325949624472, 10.0195246 47.563111496244744)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_53_LVCableDist_mvgd_33532_lvgd_1163850004_building_442010,BranchTee_mvgd_33532_lvgd_1163850004_53,BranchTee_mvgd_33532_lvgd_1163850004_building_442010,0.027516651106144128,0.0238844531601331,0.0023426895529909536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0191946262031 47.563217890846914, 10.0195246 47.563111496244744)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_54_LVCableDist_mvgd_33532_lvgd_1163850004_building_446038,BranchTee_mvgd_33532_lvgd_1163850004_54,BranchTee_mvgd_33532_lvgd_1163850004_building_446038,0.019707040499774665,0.01710571115380441,0.0016778014781342015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019796706487272 47.56470565591331, 10.019563099999996 47.56462569624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_55_LVCableDist_mvgd_33532_lvgd_1163850004_building_442041,BranchTee_mvgd_33532_lvgd_1163850004_55,BranchTee_mvgd_33532_lvgd_1163850004_building_442041,0.01902486236306584,0.016513580531141152,0.0016197227683383809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01896816372655 47.56405636887338, 10.019209099999994 47.56410789624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_55_LVCableDist_mvgd_33532_lvgd_1163850004_building_442047,BranchTee_mvgd_33532_lvgd_1163850004_55,BranchTee_mvgd_33532_lvgd_1163850004_building_442047,0.020950245656358203,0.01818481322971892,0.0017836444355972347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019435721426934 47.564217276390025, 10.019209099999994 47.56410789624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_55_LVCableDist_mvgd_33532_lvgd_1163850004_building_442049,BranchTee_mvgd_33532_lvgd_1163850004_55,BranchTee_mvgd_33532_lvgd_1163850004_building_442049,0.02592654259670082,0.022504238973936313,0.0022073122289544876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01916681322055 47.56433947542459, 10.019209099999994 47.56410789624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_56_LVCableDist_mvgd_33532_lvgd_1163850004_57,BranchTee_mvgd_33532_lvgd_1163850004_56,BranchTee_mvgd_33532_lvgd_1163850004_57,0.0024174007151805442,0.0006116023809406777,0.0001944189011864041,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019641799999997 47.563278696244744, 10.019626700000005 47.56325949624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_56_LVCableDist_mvgd_33532_lvgd_1163850004_building_446000,BranchTee_mvgd_33532_lvgd_1163850004_56,BranchTee_mvgd_33532_lvgd_1163850004_building_446000,0.03318255785191552,0.02880246021546267,0.002825068767319685,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020020030695042 47.563124852729416, 10.019626700000005 47.56325949624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_57_LVCableDist_mvgd_33532_lvgd_1163850004_building_442015,BranchTee_mvgd_33532_lvgd_1163850004_57,BranchTee_mvgd_33532_lvgd_1163850004_building_442015,0.02333156274979835,0.020251796466824967,0.0019863830121646196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019456697349245 47.56344709410309, 10.019641799999997 47.563278696244744)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_57_LVCableDist_mvgd_33532_lvgd_1163850004_building_446079,BranchTee_mvgd_33532_lvgd_1163850004_57,BranchTee_mvgd_33532_lvgd_1163850004_building_446079,0.012229245327763986,0.01061498494449914,0.0010411632273056325,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019795894160557 47.56324394580854, 10.019641799999997 47.563278696244744)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_5_LVCableDist_mvgd_33532_lvgd_1163850004_7,BranchTee_mvgd_33532_lvgd_1163850004_5,BranchTee_mvgd_33532_lvgd_1163850004_7,0.024848978234582503,0.0079516730350664,0.0020375060909925014,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018726899999999 47.56323289624478, 10.0187148 47.563326896244796, 10.0186982 47.56345569624476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_5_LVCableDist_mvgd_33532_lvgd_1163850004_building_442016,BranchTee_mvgd_33532_lvgd_1163850004_5,BranchTee_mvgd_33532_lvgd_1163850004_building_442016,0.017639554389703577,0.015311133210262704,0.0015017815804971686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018526720079295 47.56356385413874, 10.0186982 47.56345569624476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_6_LVCableDist_mvgd_33532_lvgd_1163850004_building_441936,BranchTee_mvgd_33532_lvgd_1163850004_6,BranchTee_mvgd_33532_lvgd_1163850004_building_441936,0.011588308522881344,0.010058651797861006,0.0009865956874137343,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018856880546029 47.56254137912732, 10.018907399999998 47.56263989624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_7_LVCableDist_mvgd_33532_lvgd_1163850004_building_441995,BranchTee_mvgd_33532_lvgd_1163850004_7,BranchTee_mvgd_33532_lvgd_1163850004_building_441995,0.014988817749074923,0.013010293806197034,0.0012761053885878813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018549169191195 47.563172159489504, 10.018726899999999 47.56323289624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_7_LVCableDist_mvgd_33532_lvgd_1163850004_building_442007,BranchTee_mvgd_33532_lvgd_1163850004_7,BranchTee_mvgd_33532_lvgd_1163850004_building_442007,0.01768786012543982,0.015353062588881765,0.0015058941936935315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018909530348298 47.563132783861626, 10.018726899999999 47.56323289624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_8_LVCableDist_mvgd_33532_lvgd_1163850004_building_442017,BranchTee_mvgd_33532_lvgd_1163850004_8,BranchTee_mvgd_33532_lvgd_1163850004_building_442017,0.014372068662715018,0.012474955599236635,0.0012235971223799544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018492567367003 47.56386549356873, 10.018506700000001 47.563736496244786)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_9_LVCableDist_mvgd_33532_lvgd_1163850004_building_442019,BranchTee_mvgd_33532_lvgd_1163850004_9,BranchTee_mvgd_33532_lvgd_1163850004_building_442019,0.013456252284244566,0.011680026982724283,0.0011456271160000108,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01879217455843 47.5638367748532, 10.0189023 47.56374139624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_9_LVCableDist_mvgd_33532_lvgd_1163850004_building_442021,BranchTee_mvgd_33532_lvgd_1163850004_9,BranchTee_mvgd_33532_lvgd_1163850004_building_442021,0.00993548616420114,0.00862400199052659,0.0008458790843033579,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019018496148966 47.56369903324038, 10.0189023 47.56374139624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_9_LVCableDist_mvgd_33532_lvgd_1163850004_building_442022,BranchTee_mvgd_33532_lvgd_1163850004_9,BranchTee_mvgd_33532_lvgd_1163850004_building_442022,0.021571174065955524,0.018723779089249395,0.0018365085175201302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019150287481633 47.563838579417514, 10.0189023 47.56374139624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850004_9_LVCableDist_mvgd_33532_lvgd_1163850004_building_442023,BranchTee_mvgd_33532_lvgd_1163850004_9,BranchTee_mvgd_33532_lvgd_1163850004_building_442023,0.029820177251668915,0.025883913854448617,0.0025388052291081494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019298249993597 47.563736896301535, 10.0189023 47.56374139624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_10_LVCableDist_mvgd_33532_lvgd_1163850005_11,BranchTee_mvgd_33532_lvgd_1163850005_10,BranchTee_mvgd_33532_lvgd_1163850005_11,0.05494495230303875,0.017582384736972403,0.004505242587034479,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016720399999999 47.56107179624455, 10.016417199999994 47.56152159624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_10_LVCableDist_mvgd_33532_lvgd_1163850005_12,BranchTee_mvgd_33532_lvgd_1163850005_10,BranchTee_mvgd_33532_lvgd_1163850005_12,0.014894890752035395,0.004766365040651327,0.0012213150313643024,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016851300000003 47.560971296244574, 10.016720399999999 47.56107179624455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_10_LVCableDist_mvgd_33532_lvgd_1163850005_building_441878,BranchTee_mvgd_33532_lvgd_1163850005_10,BranchTee_mvgd_33532_lvgd_1163850005_building_441878,0.01144077458911149,0.009930592343348773,0.0009740350671543479,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01657729410818 47.56110636604317, 10.016720399999999 47.56107179624455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_11_LVCableDist_mvgd_33532_lvgd_1163850005_3,BranchTee_mvgd_33532_lvgd_1163850005_3,BranchTee_mvgd_33532_lvgd_1163850005_11,0.018585748312149725,0.005947439459887912,0.0015239489943677724,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016417199999994 47.56152159624456, 10.016318099999996 47.56167479624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_11_LVCableDist_mvgd_33532_lvgd_1163850005_building_441907,BranchTee_mvgd_33532_lvgd_1163850005_11,BranchTee_mvgd_33532_lvgd_1163850005_building_441907,0.02817048627966911,0.024451982090752788,0.002398355223369461,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016432436962196 47.56126826456269, 10.016417199999994 47.56152159624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_11_LVCableDist_mvgd_33532_lvgd_1163850005_building_441911,BranchTee_mvgd_33532_lvgd_1163850005_11,BranchTee_mvgd_33532_lvgd_1163850005_building_441911,0.019903656585605396,0.017276373916305484,0.0016945408134715159,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016381000009341 47.56134414626897, 10.016417199999994 47.56152159624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_11_LVCableDist_mvgd_33532_lvgd_1163850005_building_441924,BranchTee_mvgd_33532_lvgd_1163850005_11,BranchTee_mvgd_33532_lvgd_1163850005_building_441924,0.016830415971551493,0.014608801063306696,0.0014328938327906441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016601698707998 47.561607086495826, 10.016417199999994 47.56152159624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_12_LVCableDist_mvgd_33532_lvgd_1163850005_13,BranchTee_mvgd_33532_lvgd_1163850005_12,BranchTee_mvgd_33532_lvgd_1163850005_13,0.05145553093579196,0.016465769899453427,0.004219125499133051,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016851300000003 47.560971296244574, 10.017129799999996 47.56054839624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_12_LVCableDist_mvgd_33532_lvgd_1163850005_4,BranchTee_mvgd_33532_lvgd_1163850005_4,BranchTee_mvgd_33532_lvgd_1163850005_12,0.021888127245830766,0.007004200718665845,0.001794729431640488,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016851300000003 47.560971296244574, 10.017141900000002 47.56097509624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_12_LVStation_mvgd_33532_lvgd_1163850005,BusBar_mvgd_33532_lvgd_1163850005_LV,BranchTee_mvgd_33532_lvgd_1163850005_12,0.1633262044573944,0.05226438542636621,0.013392024946019631,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016442899999998 47.560134796244476, 10.016148201872008 47.560463146668724, 10.015853499999999 47.56079149624454, 10.0160585 47.560817596244554, 10.016251899999999 47.56084869624452, 10.016549399999993 47.56092369624456, 10.016851300000003 47.560971296244574)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_13_LVCableDist_mvgd_33532_lvgd_1163850005_building_441978,BranchTee_mvgd_33532_lvgd_1163850005_13,BranchTee_mvgd_33532_lvgd_1163850005_building_441978,0.016936919371881933,0.014701246014793518,0.001441961229922282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017027031567254 47.56041280463199, 10.017129799999996 47.56054839624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_13_LVCableDist_mvgd_33532_lvgd_1163850005_building_441999,BranchTee_mvgd_33532_lvgd_1163850005_13,BranchTee_mvgd_33532_lvgd_1163850005_building_441999,0.02381109589743717,0.020668031238975464,0.0020272091029179197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016830100015554 47.56061669630048, 10.017129799999996 47.56054839624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_14_LVCableDist_mvgd_33532_lvgd_1163850005_26,BranchTee_mvgd_33532_lvgd_1163850005_14,BranchTee_mvgd_33532_lvgd_1163850005_26,0.02213374559813284,0.00708279859140251,0.0018148690480122606,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015560100000005 47.56154679624465, 10.015611 47.5613505962446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_14_LVCableDist_mvgd_33532_lvgd_1163850005_27,BranchTee_mvgd_33532_lvgd_1163850005_14,BranchTee_mvgd_33532_lvgd_1163850005_27,0.06574318582750732,0.021037819464802345,0.005390649881063355,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015611 47.5613505962446, 10.015649100000005 47.56109729624457, 10.015767899999997 47.56088499624459, 10.015853499999999 47.56079149624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_14_LVCableDist_mvgd_33532_lvgd_1163850005_building_441880,BranchTee_mvgd_33532_lvgd_1163850005_14,BranchTee_mvgd_33532_lvgd_1163850005_building_441880,0.021162470514517404,0.018369024406601105,0.0018017126574959212,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015333850006717 47.56131909630437, 10.015611 47.5613505962446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_14_LVCableDist_mvgd_33532_lvgd_1163850005_building_441914,BranchTee_mvgd_33532_lvgd_1163850005_14,BranchTee_mvgd_33532_lvgd_1163850005_building_441914,0.02292757499005825,0.01990113509137056,0.0019519886412570338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015879478744306 47.561253282176565, 10.015611 47.5613505962446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_14_LVCableDist_mvgd_33532_lvgd_1163850005_building_441918,BranchTee_mvgd_33532_lvgd_1163850005_14,BranchTee_mvgd_33532_lvgd_1163850005_building_441918,0.023196574525904463,0.020134626688485074,0.0019748904980257023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015861600016766 47.56147199628518, 10.015611 47.5613505962446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_15_LVCableDist_mvgd_33532_lvgd_1163850005_27,BranchTee_mvgd_33532_lvgd_1163850005_15,BranchTee_mvgd_33532_lvgd_1163850005_27,0.042702133507182674,0.013664682722298456,0.0035013857027800448,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015853499999999 47.56079149624454, 10.016148201872008 47.560463146668724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_15_LVCableDist_mvgd_33532_lvgd_1163850005_building_441877,BranchTee_mvgd_33532_lvgd_1163850005_15,BranchTee_mvgd_33532_lvgd_1163850005_building_441877,0.0336486720345047,0.029207047325950083,0.0028647524054862773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015701452017199 47.5604684725316, 10.016148201872008 47.560463146668724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_15_LVCableDist_mvgd_33532_lvgd_1163850005_building_441889,BranchTee_mvgd_33532_lvgd_1163850005_15,BranchTee_mvgd_33532_lvgd_1163850005_building_441889,0.035517268772504204,0.03082898929453365,0.003023839426649509,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016574905686719 47.56032697906699, 10.016148201872008 47.560463146668724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_15_LVCableDist_mvgd_33532_lvgd_1163850005_building_441902,BranchTee_mvgd_33532_lvgd_1163850005_15,BranchTee_mvgd_33532_lvgd_1163850005_building_441902,0.01625606260563306,0.014110262341689495,0.0013839950178559349,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016334669493252 47.56053685597724, 10.016148201872008 47.560463146668724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_15_LVCableDist_mvgd_33532_lvgd_1163850005_building_441903,BranchTee_mvgd_33532_lvgd_1163850005_15,BranchTee_mvgd_33532_lvgd_1163850005_building_441903,0.02350378832194007,0.02040128826344398,0.0020010458084132594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016428930514202 47.56055558659596, 10.016148201872008 47.560463146668724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_15_LVCableDist_mvgd_33532_lvgd_1163850005_building_441910,BranchTee_mvgd_33532_lvgd_1163850005_15,BranchTee_mvgd_33532_lvgd_1163850005_building_441910,0.030822875028223364,0.02675425552449788,0.0026241720710570545,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01652316949325 47.56057435597728, 10.016148201872008 47.560463146668724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_15_LVStation_mvgd_33532_lvgd_1163850005,BusBar_mvgd_33532_lvgd_1163850005_LV,BranchTee_mvgd_33532_lvgd_1163850005_15,0.042702133507182674,0.013664682722298456,0.0035013857027800448,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016148201872008 47.560463146668724, 10.016442899999998 47.560134796244476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_16_LVCableDist_mvgd_33532_lvgd_1163850005_24,BranchTee_mvgd_33532_lvgd_1163850005_16,BranchTee_mvgd_33532_lvgd_1163850005_24,0.047743634130673514,0.015277962921815524,0.003914766411279734,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0152591 47.562205796244676, 10.015380600000002 47.56203539624464, 10.0154924 47.561807196244665)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_16_LVCableDist_mvgd_33532_lvgd_1163850005_26,BranchTee_mvgd_33532_lvgd_1163850005_16,BranchTee_mvgd_33532_lvgd_1163850005_26,0.029378173912898122,0.0094010156521274,0.00240888006439081,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0154924 47.561807196244665, 10.015560100000005 47.56154679624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_16_LVCableDist_mvgd_33532_lvgd_1163850005_building_441935,BranchTee_mvgd_33532_lvgd_1163850005_16,BranchTee_mvgd_33532_lvgd_1163850005_building_441935,0.018161919965898058,0.015764546530399513,0.0015462543026126757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015689450013415 47.56190144629567, 10.0154924 47.561807196244665)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_17_LVCableDist_mvgd_33532_lvgd_1163850005_18,BranchTee_mvgd_33532_lvgd_1163850005_17,BranchTee_mvgd_33532_lvgd_1163850005_18,0.02798812904875786,0.008956201295602515,0.0022949025458505507,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014629499999998 47.5625160962447, 10.014992199999995 47.56257109624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_17_LVCableDist_mvgd_33532_lvgd_1163850005_19,BranchTee_mvgd_33532_lvgd_1163850005_17,BranchTee_mvgd_33532_lvgd_1163850005_19,0.01463228919389107,0.004682332542045142,0.0011997828673786402,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014448500000002 47.562468196244666, 10.014629499999998 47.5625160962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_17_LVCableDist_mvgd_33532_lvgd_1163850005_building_441906,BranchTee_mvgd_33532_lvgd_1163850005_17,BranchTee_mvgd_33532_lvgd_1163850005_building_441906,0.015828517137423562,0.013739152875283652,0.0013475950105316654,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014788955727521 47.56242327620221, 10.014629499999998 47.5625160962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_17_LVCableDist_mvgd_33532_lvgd_1163850005_building_441957,BranchTee_mvgd_33532_lvgd_1163850005_17,BranchTee_mvgd_33532_lvgd_1163850005_building_441957,0.011558922032854978,0.010033144324518121,0.0009840938050837123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014701300009989 47.56260804626671, 10.014629499999998 47.5625160962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_18_LVCableDist_mvgd_33532_lvgd_1163850005_23,BranchTee_mvgd_33532_lvgd_1163850005_18,BranchTee_mvgd_33532_lvgd_1163850005_23,0.022728785825776244,0.007273211464248398,0.0018636597096146638,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015126200000005 47.56238779624467, 10.014992199999995 47.56257109624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_18_LVCableDist_mvgd_33532_lvgd_1163850005_building_441908,BranchTee_mvgd_33532_lvgd_1163850005_18,BranchTee_mvgd_33532_lvgd_1163850005_building_441908,0.01662158376709775,0.014427534709840846,0.0014151144517963988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014881950001964 47.56244149627045, 10.014992199999995 47.56257109624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_19_LVCableDist_mvgd_33532_lvgd_1163850005_building_441955,BranchTee_mvgd_33532_lvgd_1163850005_19,BranchTee_mvgd_33532_lvgd_1163850005_building_441955,0.017015327440930716,0.014769304218727861,0.0014486366703137098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014312758205776 47.56259062475708, 10.014448500000002 47.562468196244666)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_1_LVCableDist_mvgd_33532_lvgd_1163850005_13,BranchTee_mvgd_33532_lvgd_1163850005_1,BranchTee_mvgd_33532_lvgd_1163850005_13,0.030928262157581307,0.009897043890426019,0.0025359804308647286,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017263500000006 47.56028519624448, 10.017129799999996 47.56054839624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_1_LVCableDist_mvgd_33532_lvgd_1163850005_5,BranchTee_mvgd_33532_lvgd_1163850005_1,BranchTee_mvgd_33532_lvgd_1163850005_5,0.012718907521588796,0.0040700504069084145,0.0010428940498624457,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017211899999992 47.56017619624451, 10.017263500000006 47.56028519624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_1_LVCableDist_mvgd_33532_lvgd_1163850005_building_441988,BranchTee_mvgd_33532_lvgd_1163850005_1,BranchTee_mvgd_33532_lvgd_1163850005_building_441988,0.018455398335892065,0.01601928575555431,0.0015712402178231302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017465650004352 47.56037909637001, 10.017263500000006 47.56028519624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_20_LVCableDist_mvgd_33532_lvgd_1163850005_21,BranchTee_mvgd_33532_lvgd_1163850005_20,BranchTee_mvgd_33532_lvgd_1163850005_21,0.017692519535894752,0.005661606251486321,0.0014507081932737284,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014562500000004 47.56223289624465, 10.014451100000002 47.56237309624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_20_LVCableDist_mvgd_33532_lvgd_1163850005_building_441897,BranchTee_mvgd_33532_lvgd_1163850005_20,BranchTee_mvgd_33532_lvgd_1163850005_building_441897,0.010350928625590356,0.00898460604701243,0.0008812486759884467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014588312123964 47.562378625729714, 10.014451100000002 47.56237309624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_21_LVCableDist_mvgd_33532_lvgd_1163850005_22,BranchTee_mvgd_33532_lvgd_1163850005_21,BranchTee_mvgd_33532_lvgd_1163850005_22,0.00970806687136549,0.0031065813988369567,0.0007960184598110112,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014687200000001 47.562230196244705, 10.014610699999997 47.5622210962447, 10.014562500000004 47.56223289624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_21_LVCableDist_mvgd_33532_lvgd_1163850005_building_441891,BranchTee_mvgd_33532_lvgd_1163850005_21,BranchTee_mvgd_33532_lvgd_1163850005_building_441891,0.011577635680324319,0.01004938777052151,0.0009856870318995653,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014451150001396 47.56216104628614, 10.014562500000004 47.56223289624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_22_LVCableDist_mvgd_33532_lvgd_1163850005_23,BranchTee_mvgd_33532_lvgd_1163850005_22,BranchTee_mvgd_33532_lvgd_1163850005_23,0.03740993860092257,0.011971180352295224,0.003067449174105484,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015126200000005 47.56238779624467, 10.014687200000001 47.562230196244705)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_22_LVCableDist_mvgd_33532_lvgd_1163850005_building_441900,BranchTee_mvgd_33532_lvgd_1163850005_22,BranchTee_mvgd_33532_lvgd_1163850005_building_441900,0.01903324017411477,0.016520852471131622,0.0016204360313857463,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014938545955527 47.56221216435613, 10.014687200000001 47.562230196244705)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_23_LVCableDist_mvgd_33532_lvgd_1163850005_24,BranchTee_mvgd_33532_lvgd_1163850005_23,BranchTee_mvgd_33532_lvgd_1163850005_24,0.022562601650669045,0.007220032528214094,0.0018500333437411467,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0152591 47.562205796244676, 10.015126200000005 47.56238779624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_23_LVCableDist_mvgd_33532_lvgd_1163850005_building_441901,BranchTee_mvgd_33532_lvgd_1163850005_23,BranchTee_mvgd_33532_lvgd_1163850005_building_441901,0.01731161561046217,0.015026482349881163,0.001473861803879515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015035950002224 47.56224449626998, 10.015126200000005 47.56238779624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_24_LVCableDist_mvgd_33532_lvgd_1163850005_25,BranchTee_mvgd_33532_lvgd_1163850005_24,BranchTee_mvgd_33532_lvgd_1163850005_25,0.03241020491197088,0.010371265571830681,0.0026574931691377554,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0152591 47.562205796244676, 10.015678699999997 47.562270696244646)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_25_LVCableDist_mvgd_33532_lvgd_1163850005_building_441942,BranchTee_mvgd_33532_lvgd_1163850005_25,BranchTee_mvgd_33532_lvgd_1163850005_building_441942,0.01736841618179764,0.015075785245800352,0.0014786976432612127,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015574321477159 47.56213130019125, 10.015678699999997 47.562270696244646)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_26_LVCableDist_mvgd_33532_lvgd_1163850005_building_441888,BranchTee_mvgd_33532_lvgd_1163850005_26,BranchTee_mvgd_33532_lvgd_1163850005_building_441888,0.02481583888928313,0.021540148155897755,0.002112750068690198,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015257744871985 47.56163562143065, 10.015560100000005 47.56154679624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_27_LVCableDist_mvgd_33532_lvgd_1163850005_30,BranchTee_mvgd_33532_lvgd_1163850005_27,BranchTee_mvgd_33532_lvgd_1163850005_30,0.015707893283928895,0.005026525850857246,0.0012879776359626667,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015853499999999 47.56079149624454, 10.0160585 47.560817596244554)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_27_LVCableDist_mvgd_33532_lvgd_1163850005_building_441890,BranchTee_mvgd_33532_lvgd_1163850005_27,BranchTee_mvgd_33532_lvgd_1163850005_building_441890,0.037979364754636036,0.03296608860702408,0.0032334552884617533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015517150002365 47.56053679625313, 10.015853499999999 47.56079149624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_27_LVCableDist_mvgd_33532_lvgd_1163850005_building_441894,BranchTee_mvgd_33532_lvgd_1163850005_27,BranchTee_mvgd_33532_lvgd_1163850005_building_441894,0.020013137759091335,0.017371403574891277,0.0017038617297554539,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015639500008998 47.56068469628349, 10.015853499999999 47.56079149624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_28_LVCableDist_mvgd_33532_lvgd_1163850005_29,BranchTee_mvgd_33532_lvgd_1163850005_28,BranchTee_mvgd_33532_lvgd_1163850005_29,0.023903317768868126,0.007649061686037801,0.0019599661237264705,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016251899999999 47.56084869624452, 10.016549399999993 47.56092369624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_28_LVCableDist_mvgd_33532_lvgd_1163850005_30,BranchTee_mvgd_33532_lvgd_1163850005_28,BranchTee_mvgd_33532_lvgd_1163850005_30,0.014968626151062498,0.004789960368339999,0.0012273610073083112,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0160585 47.560817596244554, 10.016251899999999 47.56084869624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_28_LVCableDist_mvgd_33532_lvgd_1163850005_building_441905,BranchTee_mvgd_33532_lvgd_1163850005_28,BranchTee_mvgd_33532_lvgd_1163850005_building_441905,0.01314916157023465,0.011413472242963676,0.0011194822844666807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016272290141334 47.56073115979552, 10.016251899999999 47.56084869624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_29_LVCableDist_mvgd_33532_lvgd_1163850005_building_441873,BranchTee_mvgd_33532_lvgd_1163850005_29,BranchTee_mvgd_33532_lvgd_1163850005_building_441873,0.0187317764215431,0.01625918193389941,0.0015947702633738311,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016455800003586 47.56107989628411, 10.016549399999993 47.56092369624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_29_LVCableDist_mvgd_33532_lvgd_1163850005_building_441912,BranchTee_mvgd_33532_lvgd_1163850005_29,BranchTee_mvgd_33532_lvgd_1163850005_building_441912,0.015100892811858758,0.013107574960693402,0.0012856471412423629,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016670304349542 47.56081526655022, 10.016549399999993 47.56092369624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_29_LVCableDist_mvgd_33532_lvgd_1163850005_building_441920,BranchTee_mvgd_33532_lvgd_1163850005_29,BranchTee_mvgd_33532_lvgd_1163850005_building_441920,0.021682498900047895,0.018820409045241574,0.0018459863978337856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016334294112607 47.56105341604421, 10.016549399999993 47.56092369624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_2_LVCableDist_mvgd_33532_lvgd_1163850005_3,BranchTee_mvgd_33532_lvgd_1163850005_2,BranchTee_mvgd_33532_lvgd_1163850005_3,0.05121095188469439,0.016387504603102204,0.004199071100854134,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016318099999996 47.56167479624465, 10.016267800447 47.56213444630848)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_2_LVCableDist_mvgd_33532_lvgd_1163850005_7,BranchTee_mvgd_33532_lvgd_1163850005_2,BranchTee_mvgd_33532_lvgd_1163850005_7,0.051210951884230006,0.0163875046029536,0.0041990711008160556,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016267800447 47.56213444630848, 10.016217500000005 47.5625940962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_2_LVCableDist_mvgd_33532_lvgd_1163850005_building_441950,BranchTee_mvgd_33532_lvgd_1163850005_2,BranchTee_mvgd_33532_lvgd_1163850005_building_441950,0.03839851684113295,0.0333299126181034,0.00326914070709656,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016701068344199 47.561952222248664, 10.016267800447 47.56213444630848)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_2_LVCableDist_mvgd_33532_lvgd_1163850005_building_441953,BranchTee_mvgd_33532_lvgd_1163850005_2,BranchTee_mvgd_33532_lvgd_1163850005_building_441953,0.02424324600905719,0.02104313753586164,0.0020640011365091744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016587950005706 47.562111496276174, 10.016267800447 47.56213444630848)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_2_LVCableDist_mvgd_33532_lvgd_1163850005_building_441956,BranchTee_mvgd_33532_lvgd_1163850005_2,BranchTee_mvgd_33532_lvgd_1163850005_building_441956,0.030343921828566683,0.026338524147195883,0.0025833953554284307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016549094036451 47.562329990605136, 10.016267800447 47.56213444630848)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_2_LVCableDist_mvgd_33532_lvgd_1163850005_building_441963,BranchTee_mvgd_33532_lvgd_1163850005_2,BranchTee_mvgd_33532_lvgd_1163850005_building_441963,0.04780937311035137,0.04149853585978499,0.00407035429161138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016848000000168 47.56195974625214, 10.016267800447 47.56213444630848)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_2_LVCableDist_mvgd_33532_lvgd_1163850005_building_441964,BranchTee_mvgd_33532_lvgd_1163850005_2,BranchTee_mvgd_33532_lvgd_1163850005_building_441964,0.040248381424488375,0.03493559507645591,0.0034266329257956253,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016795027725577 47.56219389221588, 10.016267800447 47.56213444630848)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_30_LVCableDist_mvgd_33532_lvgd_1163850005_building_441896,BranchTee_mvgd_33532_lvgd_1163850005_30,BranchTee_mvgd_33532_lvgd_1163850005_building_441896,0.024192507991864263,0.02099909693693818,0.00205968144577505,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016009254193852 47.56103276215662, 10.0160585 47.560817596244554)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_31_LVCableDist_mvgd_33532_lvgd_1163850005_35,BranchTee_mvgd_33532_lvgd_1163850005_31,BranchTee_mvgd_33532_lvgd_1163850005_35,0.057140290637281335,0.018284893003930026,0.004685250601270793,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0174205 47.55915869624437, 10.017814999999997 47.558719396244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_31_LVCableDist_mvgd_33532_lvgd_1163850005_37,BranchTee_mvgd_33532_lvgd_1163850005_31,BranchTee_mvgd_33532_lvgd_1163850005_37,0.07081184268823573,0.022659789660235435,0.005806257280667107,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017814999999997 47.558719396244385, 10.016879099999997 47.55865799624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_31_LVCableDist_mvgd_33532_lvgd_1163850005_38,BranchTee_mvgd_33532_lvgd_1163850005_31,BranchTee_mvgd_33532_lvgd_1163850005_38,0.011830122201944453,0.003785639104622225,0.0009700175925182232,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017814999999997 47.558719396244385, 10.017909799999996 47.55863449624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_31_LVCableDist_mvgd_33532_lvgd_1163850005_building_441794,BranchTee_mvgd_33532_lvgd_1163850005_31,BranchTee_mvgd_33532_lvgd_1163850005_building_441794,0.01748024852778077,0.015172855722113708,0.0014882187316963766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018019317334394 47.558794047241484, 10.017814999999997 47.558719396244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_31_LVCableDist_mvgd_33532_lvgd_1163850005_building_441796,BranchTee_mvgd_33532_lvgd_1163850005_31,BranchTee_mvgd_33532_lvgd_1163850005_building_441796,0.030252854135660326,0.026259477389753164,0.0025756421106035514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017878859638884 47.55898821773725, 10.017814999999997 47.558719396244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_32_LVCableDist_mvgd_33532_lvgd_1163850005_33,BranchTee_mvgd_33532_lvgd_1163850005_32,BranchTee_mvgd_33532_lvgd_1163850005_33,0.045080661306340586,0.014425811618028988,0.0036964144412910973,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017000502166983 47.55958839677601, 10.017332100000006 47.55925059624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_32_LVCableDist_mvgd_33532_lvgd_1163850005_36,BranchTee_mvgd_33532_lvgd_1163850005_32,BranchTee_mvgd_33532_lvgd_1163850005_36,0.045080661306340586,0.014425811618028988,0.0036964144412910973,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016668900000003 47.559926196244504, 10.017000502166983 47.55958839677601)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_32_LVCableDist_mvgd_33532_lvgd_1163850005_building_441787,BranchTee_mvgd_33532_lvgd_1163850005_32,BranchTee_mvgd_33532_lvgd_1163850005_building_441787,0.02116440754578415,0.018370705749740642,0.0018018775708385703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016951450563235 47.559400835299435, 10.017000502166983 47.55958839677601)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_32_LVCableDist_mvgd_33532_lvgd_1163850005_building_441798,BranchTee_mvgd_33532_lvgd_1163850005_32,BranchTee_mvgd_33532_lvgd_1163850005_building_441798,0.019506328864813308,0.016931493454657952,0.001660713459371529,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017259321939042 47.55959528199448, 10.017000502166983 47.55958839677601)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_32_LVCableDist_mvgd_33532_lvgd_1163850005_building_441800,BranchTee_mvgd_33532_lvgd_1163850005_32,BranchTee_mvgd_33532_lvgd_1163850005_building_441800,0.017364121574624365,0.015072057526773949,0.0014783320125992465,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017172128287175 47.559692760446744, 10.017000502166983 47.55958839677601)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_33_LVCableDist_mvgd_33532_lvgd_1163850005_35,BranchTee_mvgd_33532_lvgd_1163850005_33,BranchTee_mvgd_33532_lvgd_1163850005_35,0.012189307287300596,0.003900578331936191,0.0009994691777020475,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017332100000006 47.55925059624438, 10.0174205 47.55915869624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_33_LVCableDist_mvgd_33532_lvgd_1163850005_building_441797,BranchTee_mvgd_33532_lvgd_1163850005_33,BranchTee_mvgd_33532_lvgd_1163850005_building_441797,0.019694686016747547,0.017094987462536872,0.0016767496525247338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017434614058029 47.559413667080776, 10.017332100000006 47.55925059624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_33_LVCableDist_mvgd_33532_lvgd_1163850005_building_441808,BranchTee_mvgd_33532_lvgd_1163850005_33,BranchTee_mvgd_33532_lvgd_1163850005_building_441808,0.016239595567610357,0.01409596895268579,0.0013825930609900473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01752140000292 47.5593205962776, 10.017332100000006 47.55925059624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_34_LVCableDist_mvgd_33532_lvgd_1163850005_35,BranchTee_mvgd_33532_lvgd_1163850005_34,BranchTee_mvgd_33532_lvgd_1163850005_35,0.036300142609579734,0.011616045635065516,0.0029764508211441074,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0174205 47.55915869624437, 10.017842400000003 47.55931669624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_34_LVCableDist_mvgd_33532_lvgd_1163850005_building_441811,BranchTee_mvgd_33532_lvgd_1163850005_34,BranchTee_mvgd_33532_lvgd_1163850005_building_441811,0.01971114136053645,0.017109270700945638,0.0016781506137767566,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0179843500015 47.559167646262615, 10.017842400000003 47.55931669624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_34_LVCableDist_mvgd_33532_lvgd_1163850005_building_441812,BranchTee_mvgd_33532_lvgd_1163850005_34,BranchTee_mvgd_33532_lvgd_1163850005_building_441812,0.025015912880377175,0.02171381238016739,0.0021297838002643345,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018145250008843 47.5592241963226, 10.017842400000003 47.55931669624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_34_LVCableDist_mvgd_33532_lvgd_1163850005_building_441819,BranchTee_mvgd_33532_lvgd_1163850005_34,BranchTee_mvgd_33532_lvgd_1163850005_building_441819,0.031155261566986732,0.027042767040144484,0.002652470517292828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017943995479328 47.55958851497928, 10.017842400000003 47.55931669624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_35_LVCableDist_mvgd_33532_lvgd_1163850005_building_441791,BranchTee_mvgd_33532_lvgd_1163850005_35,BranchTee_mvgd_33532_lvgd_1163850005_building_441791,0.02384412262692627,0.020696698440172002,0.0020300209049008396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017124715277433 47.5590821404524, 10.0174205 47.55915869624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_35_LVCableDist_mvgd_33532_lvgd_1163850005_building_441803,BranchTee_mvgd_33532_lvgd_1163850005_35,BranchTee_mvgd_33532_lvgd_1163850005_building_441803,0.018948519265064027,0.016447314722075574,0.001613223133719258,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01767040001595 47.559138846293465, 10.0174205 47.55915869624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_36_LVCableDist_mvgd_33532_lvgd_1163850005_building_441775,BranchTee_mvgd_33532_lvgd_1163850005_36,BranchTee_mvgd_33532_lvgd_1163850005_building_441775,0.022147512768138866,0.019224041082744534,0.00188557635834789,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01664341202476 47.55972761259652, 10.016668900000003 47.559926196244504)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_36_LVCableDist_mvgd_33532_lvgd_1163850005_building_441885,BranchTee_mvgd_33532_lvgd_1163850005_36,BranchTee_mvgd_33532_lvgd_1163850005_building_441885,0.0205313175146594,0.017821183602724357,0.0017479780829867397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016733650001703 47.560105696296915, 10.016668900000003 47.559926196244504)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_36_LVCableDist_mvgd_33532_lvgd_1163850005_building_441970,BranchTee_mvgd_33532_lvgd_1163850005_36,BranchTee_mvgd_33532_lvgd_1163850005_building_441970,0.01907871705479435,0.016560326403561497,0.0016243078038939525,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01692176824097 47.559936698582156, 10.016668900000003 47.559926196244504)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_36_LVStation_mvgd_33532_lvgd_1163850005,BusBar_mvgd_33532_lvgd_1163850005_LV,BranchTee_mvgd_33532_lvgd_1163850005_36,0.028754768588442746,0.009201525948301679,0.0023577635905565964,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016442899999998 47.560134796244476, 10.016668900000003 47.559926196244504)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_37_LVCableDist_mvgd_33532_lvgd_1163850005_building_441792,BranchTee_mvgd_33532_lvgd_1163850005_37,BranchTee_mvgd_33532_lvgd_1163850005_building_441792,0.03803599994841774,0.0330152479552266,0.0032382770480680447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017324271263819 47.55881968996005, 10.016879099999997 47.55865799624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_38_LVCableDist_mvgd_33532_lvgd_1163850005_39,BranchTee_mvgd_33532_lvgd_1163850005_38,BranchTee_mvgd_33532_lvgd_1163850005_39,0.04202428626094439,0.013447771603502206,0.003445805232632146,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017909799999996 47.55863449624434, 10.018030400000002 47.55851259624434, 10.018180499999996 47.558562296244325, 10.0183418 47.55860729624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_38_LVCableDist_mvgd_33532_lvgd_1163850005_building_441793,BranchTee_mvgd_33532_lvgd_1163850005_38,BranchTee_mvgd_33532_lvgd_1163850005_building_441793,0.011194697473889957,0.009716997407336482,0.0009530847601989018,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01805540000238 47.55865479625769, 10.017909799999996 47.55863449624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_39_LVCableDist_mvgd_33532_lvgd_1163850005_building_441822,BranchTee_mvgd_33532_lvgd_1163850005_39,BranchTee_mvgd_33532_lvgd_1163850005_building_441822,0.013281384714260831,0.011528241931978402,0.0011307393875559656,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01846364278442 47.55869371568935, 10.0183418 47.55860729624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_39_LVCableDist_mvgd_33532_lvgd_1163850005_building_441823,BranchTee_mvgd_33532_lvgd_1163850005_39,BranchTee_mvgd_33532_lvgd_1163850005_building_441823,0.031222576597550997,0.027101196486674264,0.002658201527881793,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018323899996318 47.55888804632556, 10.0183418 47.55860729624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_3_LVCableDist_mvgd_33532_lvgd_1163850005_6,BranchTee_mvgd_33532_lvgd_1163850005_3,BranchTee_mvgd_33532_lvgd_1163850005_6,0.02314344451316514,0.007405902244212845,0.0018976598843205206,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016318099999996 47.56167479624465, 10.016011300000004 47.561662596244595)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_3_LVCableDist_mvgd_33532_lvgd_1163850005_building_441930,BranchTee_mvgd_33532_lvgd_1163850005_3,BranchTee_mvgd_33532_lvgd_1163850005_building_441930,0.023569984406217867,0.020458746464597107,0.002006681555092181,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016520209410338 47.56183677483584, 10.016318099999996 47.56167479624465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_40_LVCableDist_mvgd_33532_lvgd_1163850005_41,BranchTee_mvgd_33532_lvgd_1163850005_40,BranchTee_mvgd_33532_lvgd_1163850005_41,0.037858369781173545,0.012114678329975535,0.003104218543555079,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016830499780617 47.55922799739646, 10.016328900000003 47.559205396244444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_40_LVCableDist_mvgd_33532_lvgd_1163850005_42,BranchTee_mvgd_33532_lvgd_1163850005_40,BranchTee_mvgd_33532_lvgd_1163850005_42,0.04234915636594544,0.013551730037102541,0.0034724431415019685,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016328900000003 47.559205396244444, 10.0164011 47.55882739624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_40_LVCableDist_mvgd_33532_lvgd_1163850005_44,BranchTee_mvgd_33532_lvgd_1163850005_40,BranchTee_mvgd_33532_lvgd_1163850005_44,0.045030064583735464,0.01440962066679535,0.003692265734269063,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.01624475065301 47.55960664631668, 10.016328900000003 47.559205396244444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_40_LVCableDist_mvgd_33532_lvgd_1163850005_building_441816,BranchTee_mvgd_33532_lvgd_1163850005_40,BranchTee_mvgd_33532_lvgd_1163850005_building_441816,0.019629686953624804,0.01703856827574633,0.0016712158168285052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016098961319907 47.55928860261183, 10.016328900000003 47.559205396244444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_40_LVCableDist_mvgd_33532_lvgd_1163850005_building_441821,BranchTee_mvgd_33532_lvgd_1163850005_40,BranchTee_mvgd_33532_lvgd_1163850005_building_441821,0.020047100129117073,0.017400882912073617,0.0017067531895172976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016455362206816 47.55936416451863, 10.016328900000003 47.559205396244444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_41_LVCableDist_mvgd_33532_lvgd_1163850005_building_441772,BranchTee_mvgd_33532_lvgd_1163850005_41,BranchTee_mvgd_33532_lvgd_1163850005_building_441772,0.018525755457344157,0.01608035573697473,0.001577230223393522,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016764770431351 47.55938867251558, 10.016830499780617 47.55922799739646)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_41_LVCableDist_mvgd_33532_lvgd_1163850005_building_441786,BranchTee_mvgd_33532_lvgd_1163850005_41,BranchTee_mvgd_33532_lvgd_1163850005_building_441786,0.018647467916324233,0.016186002151369432,0.0015875924765987384,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016857921707821 47.55939479735697, 10.016830499780617 47.55922799739646)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_41_LVCableDist_mvgd_33532_lvgd_1163850005_building_441806,BranchTee_mvgd_33532_lvgd_1163850005_41,BranchTee_mvgd_33532_lvgd_1163850005_building_441806,0.020120301908448893,0.01746442205653364,0.0017129853811833362,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016642699999508 47.55909919628936, 10.016830499780617 47.55922799739646)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_41_LVCableDist_mvgd_33532_lvgd_1163850005_building_441830,BranchTee_mvgd_33532_lvgd_1163850005_41,BranchTee_mvgd_33532_lvgd_1163850005_building_441830,0.025558476534220467,0.022184757631703366,0.0021759761293667474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016564999723586 47.5593712855476, 10.016830499780617 47.55922799739646)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_42_LVCableDist_mvgd_33532_lvgd_1163850005_building_441795,BranchTee_mvgd_33532_lvgd_1163850005_42,BranchTee_mvgd_33532_lvgd_1163850005_building_441795,0.022821433866628858,0.01980900459623385,0.001942952087352215,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016124416204926 47.55891117292165, 10.0164011 47.55882739624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_42_LVCableDist_mvgd_33532_lvgd_1163850005_building_441799,BranchTee_mvgd_33532_lvgd_1163850005_42,BranchTee_mvgd_33532_lvgd_1163850005_building_441799,0.01683133382467813,0.014609597759820615,0.0014329719761999803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01662320000585 47.55884429631003, 10.0164011 47.55882739624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_43_LVCableDist_mvgd_33532_lvgd_1163850005_44,BranchTee_mvgd_33532_lvgd_1163850005_43,BranchTee_mvgd_33532_lvgd_1163850005_44,0.045030064583866734,0.014409620666837356,0.0036922657342798267,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016160600000003 47.560007896244514, 10.01624475065301 47.55960664631668)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_43_LVCableDist_mvgd_33532_lvgd_1163850005_building_441882,BranchTee_mvgd_33532_lvgd_1163850005_43,BranchTee_mvgd_33532_lvgd_1163850005_building_441882,0.02205948985584132,0.019147637194870264,0.001878082337499646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016004151110504 47.56017574908498, 10.016160600000003 47.560007896244514)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_43_LVCableDist_mvgd_33532_lvgd_1163850005_building_441883,BranchTee_mvgd_33532_lvgd_1163850005_43,BranchTee_mvgd_33532_lvgd_1163850005_building_441883,0.018848726985149583,0.01636069502310984,0.0016047271023263785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016399173469182 47.559956600963964, 10.016160600000003 47.560007896244514)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_43_LVStation_mvgd_33532_lvgd_1163850005,BusBar_mvgd_33532_lvgd_1163850005_LV,BranchTee_mvgd_33532_lvgd_1163850005_43,0.02551005344841364,0.008163217103492364,0.002091711328812323,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016442899999998 47.560134796244476, 10.016160600000003 47.560007896244514)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_44_LVCableDist_mvgd_33532_lvgd_1163850005_building_441774,BranchTee_mvgd_33532_lvgd_1163850005_44,BranchTee_mvgd_33532_lvgd_1163850005_building_441774,0.014097417429418233,0.012236558328735027,0.0012002140961360087,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016362340427458 47.55970536923261, 10.01624475065301 47.55960664631668)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_44_LVCableDist_mvgd_33532_lvgd_1163850005_building_441810,BranchTee_mvgd_33532_lvgd_1163850005_44,BranchTee_mvgd_33532_lvgd_1163850005_building_441810,0.022507656736065702,0.01953664604690503,0.0019162379932968652,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016026801439702 47.559745261840014, 10.01624475065301 47.55960664631668)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_4_LVCableDist_mvgd_33532_lvgd_1163850005_8,BranchTee_mvgd_33532_lvgd_1163850005_4,BranchTee_mvgd_33532_lvgd_1163850005_8,0.028024235747153927,0.008967755439089257,0.0022978631351034816,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017141900000002 47.56097509624456, 10.0171157 47.56122669624455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_4_LVCableDist_mvgd_33532_lvgd_1163850005_building_442002,BranchTee_mvgd_33532_lvgd_1163850005_4,BranchTee_mvgd_33532_lvgd_1163850005_building_442002,0.022981991565168985,0.01994836867856668,0.0019566215139685318,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017210243389146 47.5607735051982, 10.017141900000002 47.56097509624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_5_LVCableDist_mvgd_33532_lvgd_1163850005_building_441973,BranchTee_mvgd_33532_lvgd_1163850005_5,BranchTee_mvgd_33532_lvgd_1163850005_building_441973,0.022478280448950554,0.01951114742968908,0.0019137369796137374,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017364279912774 47.56000223421101, 10.017211899999992 47.56017619624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_5_LVCableDist_mvgd_33532_lvgd_1163850005_building_441993,BranchTee_mvgd_33532_lvgd_1163850005_5,BranchTee_mvgd_33532_lvgd_1163850005_building_441993,0.051300992698151464,0.04452926166199547,0.004367620870302397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017770505475104 47.559911926995554, 10.017211899999992 47.56017619624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_5_LVCableDist_mvgd_33532_lvgd_1163850005_building_441996,BranchTee_mvgd_33532_lvgd_1163850005_5,BranchTee_mvgd_33532_lvgd_1163850005_building_441996,0.03204430480454059,0.02781445657034123,0.0027281611344664282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017622337462054 47.56010010818296, 10.017211899999992 47.56017619624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_6_LVCableDist_mvgd_33532_lvgd_1163850005_building_441919,BranchTee_mvgd_33532_lvgd_1163850005_6,BranchTee_mvgd_33532_lvgd_1163850005_building_441919,0.015747350624898585,0.013668700342411971,0.0013406847240941375,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01580592997625 47.561689293386884, 10.016011300000004 47.561662596244595)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_7_LVCableDist_mvgd_33532_lvgd_1163850005_building_441965,BranchTee_mvgd_33532_lvgd_1163850005_7,BranchTee_mvgd_33532_lvgd_1163850005_building_441965,0.025787354533495174,0.02238342373507381,0.0021954621524202795,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016553000008926 47.562547596278044, 10.016217500000005 47.5625940962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_7_LVCableDist_mvgd_33532_lvgd_1163850005_building_441968,BranchTee_mvgd_33532_lvgd_1163850005_7,BranchTee_mvgd_33532_lvgd_1163850005_building_441968,0.023956508647691926,0.020794249506196592,0.0020395891316350562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016454274749139 47.56273810018179, 10.016217500000005 47.5625940962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_8_LVCableDist_mvgd_33532_lvgd_1163850005_9,BranchTee_mvgd_33532_lvgd_1163850005_8,BranchTee_mvgd_33532_lvgd_1163850005_9,0.034643597823812364,0.011085951303619957,0.002840621490089136,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016991900000004 47.561526996244595, 10.0171157 47.56122669624455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_8_LVCableDist_mvgd_33532_lvgd_1163850005_building_441952,BranchTee_mvgd_33532_lvgd_1163850005_8,BranchTee_mvgd_33532_lvgd_1163850005_building_441952,0.017988656716919092,0.015614154030285772,0.0015315031615041684,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016878912814052 47.56124805102314, 10.0171157 47.56122669624455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_8_LVCableDist_mvgd_33532_lvgd_1163850005_building_441954,BranchTee_mvgd_33532_lvgd_1163850005_8,BranchTee_mvgd_33532_lvgd_1163850005_building_441954,0.011941049193837011,0.010364830700250526,0.0010166270266771936,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016983567409024 47.5612861113111, 10.0171157 47.56122669624455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850005_9_LVCableDist_mvgd_33532_lvgd_1163850005_building_441962,BranchTee_mvgd_33532_lvgd_1163850005_9,BranchTee_mvgd_33532_lvgd_1163850005_building_441962,0.010616068204927895,0.009214747201877413,0.0009038219070187218,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016935929106833 47.56161469043382, 10.016991900000004 47.561526996244595)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_10_LVCableDist_mvgd_33532_lvgd_1163850006_12,BranchTee_mvgd_33532_lvgd_1163850006_10,BranchTee_mvgd_33532_lvgd_1163850006_12,0.040428958065143863,0.008328365361419635,0.003251489731833492,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018702600000003 47.554729396243985, 10.018541099999998 47.55474069624404, 10.018413400000005 47.554979296244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_10_LVCableDist_mvgd_33532_lvgd_1163850006_building_441752,BranchTee_mvgd_33532_lvgd_1163850006_10,BranchTee_mvgd_33532_lvgd_1163850006_building_441752,0.016882908843526615,0.014654364876181101,0.001437362926878738,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018701700011627 47.554881346281896, 10.018702600000003 47.554729396243985)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_10_LVCableDist_mvgd_33532_lvgd_1163850006_building_441758,BranchTee_mvgd_33532_lvgd_1163850006_10,BranchTee_mvgd_33532_lvgd_1163850006_building_441758,0.020452917719428625,0.017753132580464046,0.0017413033470046874,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018919878796373 47.5546189715328, 10.018702600000003 47.554729396243985)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_11_LVCableDist_mvgd_33532_lvgd_1163850006_20,BranchTee_mvgd_33532_lvgd_1163850006_11,BranchTee_mvgd_33532_lvgd_1163850006_20,0.0490807434345739,0.010110633147522223,0.00394730759697364,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018620899999993 47.556285496244165, 10.018104199999998 47.55655469624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_11_LVCableDist_mvgd_33532_lvgd_1163850006_building_441769,BranchTee_mvgd_33532_lvgd_1163850006_11,BranchTee_mvgd_33532_lvgd_1163850006_building_441769,0.03970954075084652,0.03446788137173478,0.003380757560657695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017614250000738 47.556422646251015, 10.018104199999998 47.55655469624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_11_LVCableDist_mvgd_33532_lvgd_1163850006_building_441770,BranchTee_mvgd_33532_lvgd_1163850006_11,BranchTee_mvgd_33532_lvgd_1163850006_building_441770,0.02138742651295553,0.0185642862132454,0.0018208647725331314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017839323463026 47.556485287666014, 10.018104199999998 47.55655469624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_11_LVCableDist_mvgd_33532_lvgd_1163850006_building_441784,BranchTee_mvgd_33532_lvgd_1163850006_11,BranchTee_mvgd_33532_lvgd_1163850006_building_441784,0.020429191657460127,0.01773253835867539,0.0017392833774490606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0183438904445 47.556640781233675, 10.018104199999998 47.55655469624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_12_LVCableDist_mvgd_33532_lvgd_1163850006_5,BranchTee_mvgd_33532_lvgd_1163850006_5,BranchTee_mvgd_33532_lvgd_1163850006_12,0.04745343140129994,0.009775406868667787,0.0038164313978355483,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018138799999996 47.55536369624407, 10.018413400000005 47.554979296244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_12_LVCableDist_mvgd_33532_lvgd_1163850006_building_441735,BranchTee_mvgd_33532_lvgd_1163850006_12,BranchTee_mvgd_33532_lvgd_1163850006_building_441735,0.027797004155782096,0.02412779960721886,0.0023665580156902307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018048906169785 47.55501859780709, 10.018413400000005 47.554979296244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_12_LVCableDist_mvgd_33532_lvgd_1163850006_building_441744,BranchTee_mvgd_33532_lvgd_1163850006_12,BranchTee_mvgd_33532_lvgd_1163850006_building_441744,0.042081029918735156,0.036526333969462116,0.003582659415545967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018935230447418 47.55511465450423, 10.018413400000005 47.554979296244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_12_LVCableDist_mvgd_33532_lvgd_1163850006_building_441749,BranchTee_mvgd_33532_lvgd_1163850006_12,BranchTee_mvgd_33532_lvgd_1163850006_building_441749,0.020975203437243763,0.018206476583527587,0.0017857692702045022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018238613967851 47.554832322804856, 10.018413400000005 47.554979296244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_12_LVCableDist_mvgd_33532_lvgd_1163850006_building_441766,BranchTee_mvgd_33532_lvgd_1163850006_12,BranchTee_mvgd_33532_lvgd_1163850006_building_441766,0.022618451316729713,0.019632815742921392,0.0019256707293390661,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01867877860428 47.55507459338053, 10.018413400000005 47.554979296244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_13_LVCableDist_mvgd_33532_lvgd_1163850006_14,BranchTee_mvgd_33532_lvgd_1163850006_13,BranchTee_mvgd_33532_lvgd_1163850006_14,0.046964347305001486,0.009674655544830305,0.003777096920935226,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.017802300000005 47.55600359624415, 10.018424299999994 47.5560336962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_13_LVCableDist_mvgd_33532_lvgd_1163850006_24,BranchTee_mvgd_33532_lvgd_1163850006_13,BranchTee_mvgd_33532_lvgd_1163850006_24,0.03244991250160871,0.006684681975331394,0.002609776812151949,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018853399999992 47.556007296244125, 10.018424299999994 47.5560336962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_13_LVCableDist_mvgd_33532_lvgd_1163850006_building_441776,BranchTee_mvgd_33532_lvgd_1163850006_13,BranchTee_mvgd_33532_lvgd_1163850006_building_441776,0.017362346114185273,0.015070516427112816,0.0014781808549381502,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018225942977441 47.555954067579805, 10.018424299999994 47.5560336962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_13_LVCableDist_mvgd_33532_lvgd_1163850006_building_441777,BranchTee_mvgd_33532_lvgd_1163850006_13,BranchTee_mvgd_33532_lvgd_1163850006_building_441777,0.015097879743294055,0.01310495961717924,0.00128539061713913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018443725044598 47.55589845021636, 10.018424299999994 47.5560336962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_14_LVCableDist_mvgd_33532_lvgd_1163850006_23,BranchTee_mvgd_33532_lvgd_1163850006_14,BranchTee_mvgd_33532_lvgd_1163850006_23,0.037739664747991473,0.007774370938086243,0.0030352039301435314,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.017970551041193 47.555683646399004, 10.017802300000005 47.55600359624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_14_LVCableDist_mvgd_33532_lvgd_1163850006_building_441761,BranchTee_mvgd_33532_lvgd_1163850006_14,BranchTee_mvgd_33532_lvgd_1163850006_building_441761,0.018225328999683932,0.015819585571725654,0.001551652767725396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017703020246008 47.55585400349572, 10.017802300000005 47.55600359624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_14_LVCableDist_mvgd_33532_lvgd_1163850006_building_441762,BranchTee_mvgd_33532_lvgd_1163850006_14,BranchTee_mvgd_33532_lvgd_1163850006_building_441762,0.017501619987357706,0.015191406149026488,0.0014900382370893084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018015042778801 47.555940216434735, 10.017802300000005 47.55600359624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_14_LVCableDist_mvgd_33532_lvgd_1163850006_building_441767,BranchTee_mvgd_33532_lvgd_1163850006_14,BranchTee_mvgd_33532_lvgd_1163850006_building_441767,0.031045489497153776,0.026947484883529476,0.0026431248349197854,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017942189574272 47.55626643256037, 10.017802300000005 47.55600359624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_15_LVCableDist_mvgd_33532_lvgd_1163850006_6,BranchTee_mvgd_33532_lvgd_1163850006_6,BranchTee_mvgd_33532_lvgd_1163850006_15,0.06159311227145169,0.012688181127919048,0.0049536120070073335,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.016094400000002 47.55494469624402, 10.015302799999992 47.55480549624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_15_LVCableDist_mvgd_33532_lvgd_1163850006_building_441705,BranchTee_mvgd_33532_lvgd_1163850006_15,BranchTee_mvgd_33532_lvgd_1163850006_building_441705,0.0335747201312597,0.02914285707393342,0.002858456350399938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015690720234176 47.55465660489145, 10.015302799999992 47.55480549624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_15_LVCableDist_mvgd_33532_lvgd_1163850006_building_441711,BranchTee_mvgd_33532_lvgd_1163850006_15,BranchTee_mvgd_33532_lvgd_1163850006_building_441711,0.017077343419331346,0.014823134087979608,0.0014539165346459369,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015470900002866 47.55470234625694, 10.015302799999992 47.55480549624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_15_LVCableDist_mvgd_33532_lvgd_1163850006_building_441737,BranchTee_mvgd_33532_lvgd_1163850006_15,BranchTee_mvgd_33532_lvgd_1163850006_building_441737,0.028303408199619445,0.024567358317269677,0.0024096718182570424,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015441757523236 47.5550421802422, 10.015302799999992 47.55480549624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_16_LVCableDist_mvgd_33532_lvgd_1163850006_19,BranchTee_mvgd_33532_lvgd_1163850006_16,BranchTee_mvgd_33532_lvgd_1163850006_19,0.026293074498369005,0.005416373346664015,0.002114614519919749,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.015923899999997 47.55565949624408, 10.015939799999995 47.55542309624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_16_LVCableDist_mvgd_33532_lvgd_1163850006_building_441702,BranchTee_mvgd_33532_lvgd_1163850006_16,BranchTee_mvgd_33532_lvgd_1163850006_building_441702,0.017150576946379725,0.014886700789457601,0.001460151429222429,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015732003954332 47.55535995531994, 10.015939799999995 47.55542309624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_16_LVCableDist_mvgd_33532_lvgd_1163850006_building_441703,BranchTee_mvgd_33532_lvgd_1163850006_16,BranchTee_mvgd_33532_lvgd_1163850006_building_441703,0.011290959132063544,0.009800552526631156,0.0009612802044805097,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016083198055824 47.55539345385702, 10.015939799999995 47.55542309624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_17_LVCableDist_mvgd_33532_lvgd_1163850006_20,BranchTee_mvgd_33532_lvgd_1163850006_17,BranchTee_mvgd_33532_lvgd_1163850006_20,0.01609540398161001,0.003315653220211662,0.0012944691943727593,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0188285 47.556251096244154, 10.018620899999993 47.556285496244165)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_17_LVCableDist_mvgd_33532_lvgd_1163850006_24,BranchTee_mvgd_33532_lvgd_1163850006_17,BranchTee_mvgd_33532_lvgd_1163850006_24,0.0271633283482197,0.005595645639733258,0.002184604487316848,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0188285 47.556251096244154, 10.0188362 47.5561264962441, 10.018853399999992 47.556007296244125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_17_LVStation_mvgd_33532_lvgd_1163850006,BusBar_mvgd_33532_lvgd_1163850006_LV,BranchTee_mvgd_33532_lvgd_1163850006_17,0.10598663675778021,0.02183324717210272,0.008523951089073466,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018605699999998 47.55718989624418, 10.0186511 47.557056596244244, 10.018695299999996 47.55693689624422, 10.018757799999998 47.5567601962442, 10.018809999999998 47.5565221962442, 10.0188285 47.556251096244154)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_18_LVCableDist_mvgd_33532_lvgd_1163850006_19,BranchTee_mvgd_33532_lvgd_1163850006_18,BranchTee_mvgd_33532_lvgd_1163850006_19,0.04075368369601608,0.008395258841379311,0.0032776057166368317,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.015524700000006 47.555492396244055, 10.0155391 47.55555069624404, 10.015578500000007 47.555603796244064, 10.015664800000001 47.55564459624407, 10.0157905 47.55565949624408, 10.015923899999997 47.55565949624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_18_LVCableDist_mvgd_33532_lvgd_1163850006_building_441697,BranchTee_mvgd_33532_lvgd_1163850006_18,BranchTee_mvgd_33532_lvgd_1163850006_building_441697,0.022125102538444862,0.019204589003370142,0.0018836684150163503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015268906039248 47.55539447167216, 10.015524700000006 47.555492396244055)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_18_LVCableDist_mvgd_33532_lvgd_1163850006_building_441746,BranchTee_mvgd_33532_lvgd_1163850006_18,BranchTee_mvgd_33532_lvgd_1163850006_building_441746,0.030330470374234843,0.026326848284835842,0.0025822501367964764,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015534650002667 47.55521949625299, 10.015524700000006 47.555492396244055)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_18_LVCableDist_mvgd_33532_lvgd_1163850006_building_441757,BranchTee_mvgd_33532_lvgd_1163850006_18,BranchTee_mvgd_33532_lvgd_1163850006_building_441757,0.013869107454089563,0.012038385270149742,0.0011807764330285723,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015549643309072 47.55536872044182, 10.015524700000006 47.555492396244055)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_19_LVCableDist_mvgd_33532_lvgd_1163850006_3,BranchTee_mvgd_33532_lvgd_1163850006_3,BranchTee_mvgd_33532_lvgd_1163850006_19,0.032593292351347024,0.006714218224377486,0.002621308103866783,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.015923899999997 47.55565949624408, 10.015914300000007 47.55580169624407, 10.015939900000003 47.55595169624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_19_LVCableDist_mvgd_33532_lvgd_1163850006_building_441710,BranchTee_mvgd_33532_lvgd_1163850006_19,BranchTee_mvgd_33532_lvgd_1163850006_building_441710,0.014020155879453497,0.012169495303365635,0.0011936362671243286,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016109825723667 47.55565322679484, 10.015923899999997 47.55565949624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_1_LVCableDist_mvgd_33532_lvgd_1163850006_14,BranchTee_mvgd_33532_lvgd_1163850006_1,BranchTee_mvgd_33532_lvgd_1163850006_14,0.054511754438899565,0.011229421414413309,0.004384095418356164,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.017802300000005 47.55600359624415, 10.0170793 47.555980596244105)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_1_LVCableDist_mvgd_33532_lvgd_1163850006_21,BranchTee_mvgd_33532_lvgd_1163850006_1,BranchTee_mvgd_33532_lvgd_1163850006_21,0.04357697916478427,0.00897685770794556,0.003504668610808877,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.017305651580283 47.55561964651085, 10.0170793 47.555980596244105)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_1_LVCableDist_mvgd_33532_lvgd_1163850006_25,BranchTee_mvgd_33532_lvgd_1163850006_1,BranchTee_mvgd_33532_lvgd_1163850006_25,0.035908440418451246,0.007397138726200956,0.0028879281310841146,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0170793 47.555980596244105, 10.017043000000005 47.55598129624407, 10.016606499999998 47.5560212962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_1_LVCableDist_mvgd_33532_lvgd_1163850006_9,BranchTee_mvgd_33532_lvgd_1163850006_1,BranchTee_mvgd_33532_lvgd_1163850006_9,0.025057859201111938,0.005161918995429059,0.002015272611351057,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.017179300000004 47.556195696244174, 10.0170793 47.555980596244105)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_1_LVCableDist_mvgd_33532_lvgd_1163850006_building_441755,BranchTee_mvgd_33532_lvgd_1163850006_1,BranchTee_mvgd_33532_lvgd_1163850006_building_441755,0.026584559767146694,0.02307539787788333,0.0022633339426777837,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017401584904427 47.55588299870372, 10.0170793 47.555980596244105)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_20_LVCableDist_mvgd_33532_lvgd_1163850006_building_441778,BranchTee_mvgd_33532_lvgd_1163850006_20,BranchTee_mvgd_33532_lvgd_1163850006_building_441778,0.012747642073977893,0.011064953320212812,0.00108529805450445,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018507866375915 47.55620009722253, 10.018620899999993 47.556285496244165)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_20_LVCableDist_mvgd_33532_lvgd_1163850006_building_441785,BranchTee_mvgd_33532_lvgd_1163850006_20,BranchTee_mvgd_33532_lvgd_1163850006_building_441785,0.01600239910578699,0.013890082423823108,0.001362398827651967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018635813731647 47.556429167249036, 10.018620899999993 47.556285496244165)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_21_LVCableDist_mvgd_33532_lvgd_1163850006_building_441726,BranchTee_mvgd_33532_lvgd_1163850006_21,BranchTee_mvgd_33532_lvgd_1163850006_building_441726,0.019892528753874365,0.01726671495836295,0.0016935934214708263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017044500009343 47.5556464463337, 10.017305651580283 47.55561964651085)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_21_LVCableDist_mvgd_33532_lvgd_1163850006_building_441742,BranchTee_mvgd_33532_lvgd_1163850006_21,BranchTee_mvgd_33532_lvgd_1163850006_building_441742,0.021286340240056708,0.018476543328369222,0.0018122585742513214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017534159752728 47.55550689851215, 10.017305651580283 47.55561964651085)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_21_LVCableDist_mvgd_33532_lvgd_1163850006_building_441743,BranchTee_mvgd_33532_lvgd_1163850006_21,BranchTee_mvgd_33532_lvgd_1163850006_building_441743,0.015121540770045534,0.013125497388399522,0.0012874050497810206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017503350006882 47.55564339626973, 10.017305651580283 47.55561964651085)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_22_LVCableDist_mvgd_33532_lvgd_1163850006_8,BranchTee_mvgd_33532_lvgd_1163850006_8,BranchTee_mvgd_33532_lvgd_1163850006_22,0.05474716554766218,0.011277916102818409,0.004403028303088633,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.016864999999994 47.55510369624406, 10.016683300000004 47.555580796244094)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_22_LVCableDist_mvgd_33532_lvgd_1163850006_building_441712,BranchTee_mvgd_33532_lvgd_1163850006_22,BranchTee_mvgd_33532_lvgd_1163850006_building_441712,0.02234742279924077,0.019397562989740987,0.0019025961308337923,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016460436852665 47.555448007706445, 10.016683300000004 47.555580796244094)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_22_LVCableDist_mvgd_33532_lvgd_1163850006_building_441725,BranchTee_mvgd_33532_lvgd_1163850006_22,BranchTee_mvgd_33532_lvgd_1163850006_building_441725,0.020240959057171434,0.017569152461624805,0.0017232577882693445,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016885591536095 47.55546085911525, 10.016683300000004 47.555580796244094)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_23_LVCableDist_mvgd_33532_lvgd_1163850006_5,BranchTee_mvgd_33532_lvgd_1163850006_5,BranchTee_mvgd_33532_lvgd_1163850006_23,0.03773966474723998,0.007774370937931435,0.0030352039300830928,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018138799999996 47.55536369624407, 10.017970551041193 47.555683646399004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_23_LVCableDist_mvgd_33532_lvgd_1163850006_building_441739,BranchTee_mvgd_33532_lvgd_1163850006_23,BranchTee_mvgd_33532_lvgd_1163850006_building_441739,0.019567160840038195,0.016984295609153155,0.0016658925210348624,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018174500005468 47.55557454627664, 10.017970551041193 47.555683646399004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_23_LVCableDist_mvgd_33532_lvgd_1163850006_building_441748,BranchTee_mvgd_33532_lvgd_1163850006_23,BranchTee_mvgd_33532_lvgd_1163850006_building_441748,0.016226850779303813,0.01408490647643571,0.0013815080058972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017843700006113 47.55556559627591, 10.017970551041193 47.555683646399004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_25_LVCableDist_mvgd_33532_lvgd_1163850006_building_441730,BranchTee_mvgd_33532_lvgd_1163850006_25,BranchTee_mvgd_33532_lvgd_1163850006_building_441730,0.036335132363804826,0.03153889489178259,0.003093470010826368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016664459176559 47.5563459544313, 10.016606499999998 47.5560212962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_26_LVCableDist_mvgd_33532_lvgd_1163850006_30,BranchTee_mvgd_33532_lvgd_1163850006_26,BranchTee_mvgd_33532_lvgd_1163850006_30,0.055849104363867905,0.01787171339643773,0.004579379049054434,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019770347052184 47.55589439682727, 10.020111799999995 47.55634059624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_26_LVCableDist_mvgd_33532_lvgd_1163850006_35,BranchTee_mvgd_33532_lvgd_1163850006_26,BranchTee_mvgd_33532_lvgd_1163850006_35,0.055849104363867905,0.01787171339643773,0.004579379049054434,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019428900000005 47.55544819624408, 10.019770347052184 47.55589439682727)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_26_LVCableDist_mvgd_33532_lvgd_1163850006_building_445615,BranchTee_mvgd_33532_lvgd_1163850006_26,BranchTee_mvgd_33532_lvgd_1163850006_building_445615,0.03550500437730659,0.03081834379950212,0.0030227952708620776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02024141640205 47.555906846466755, 10.019770347052184 47.55589439682727)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_26_LVCableDist_mvgd_33532_lvgd_1163850006_building_445647,BranchTee_mvgd_33532_lvgd_1163850006_26,BranchTee_mvgd_33532_lvgd_1163850006_building_445647,0.01674836941930532,0.014537584655957017,0.0014259086222697635,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019664355190672 47.55602691440912, 10.019770347052184 47.55589439682727)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_26_LVCableDist_mvgd_33532_lvgd_1163850006_building_445648,BranchTee_mvgd_33532_lvgd_1163850006_26,BranchTee_mvgd_33532_lvgd_1163850006_building_445648,0.015521280374587098,0.0134724713651416,0.0013214377448158882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019976326447907 47.555898930912825, 10.019770347052184 47.55589439682727)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_27_LVCableDist_mvgd_33532_lvgd_1163850006_32,BranchTee_mvgd_33532_lvgd_1163850006_27,BranchTee_mvgd_33532_lvgd_1163850006_32,0.027263301499802082,0.008724256479936666,0.0022354698990843655,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018712999999995 47.55547319624408, 10.018573300000005 47.55546309624408, 10.018361300000002 47.555419596244064)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_27_LVCableDist_mvgd_33532_lvgd_1163850006_building_441765,BranchTee_mvgd_33532_lvgd_1163850006_27,BranchTee_mvgd_33532_lvgd_1163850006_building_441765,0.014030494654915232,0.012178469360466421,0.0011945164811144504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018397837480002 47.555295770032025, 10.018361300000002 47.555419596244064)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_28_LVCableDist_mvgd_33532_lvgd_1163850006_29,BranchTee_mvgd_33532_lvgd_1163850006_28,BranchTee_mvgd_33532_lvgd_1163850006_29,0.031017257660671562,0.0099255224514149,0.0025432776677130823,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019015699999997 47.555763196244065, 10.019127099999995 47.555666296244084, 10.019290800000002 47.55555619624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_28_LVCableDist_mvgd_33532_lvgd_1163850006_33,BranchTee_mvgd_33532_lvgd_1163850006_28,BranchTee_mvgd_33532_lvgd_1163850006_33,0.014604174075315491,0.004673335704100957,0.001197477552254375,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018916399999998 47.55587609624412, 10.019015699999997 47.555763196244065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_28_LVCableDist_mvgd_33532_lvgd_1163850006_building_441753,BranchTee_mvgd_33532_lvgd_1163850006_28,BranchTee_mvgd_33532_lvgd_1163850006_building_441753,0.016107582254136017,0.013981381396590062,0.0013713538222782187,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018872881510122 47.55565528444691, 10.019015699999997 47.555763196244065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_29_LVCableDist_mvgd_33532_lvgd_1163850006_35,BranchTee_mvgd_33532_lvgd_1163850006_29,BranchTee_mvgd_33532_lvgd_1163850006_35,0.015879789214420317,0.005081532548614502,0.0013020723404646678,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019428900000005 47.55544819624408, 10.019290800000002 47.55555619624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_29_LVCableDist_mvgd_33532_lvgd_1163850006_building_441779,BranchTee_mvgd_33532_lvgd_1163850006_29,BranchTee_mvgd_33532_lvgd_1163850006_building_441779,0.02271436734949437,0.019716070859361112,0.0019338367480546184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019445850006363 47.55573154636198, 10.019290800000002 47.55555619624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_2_LVCableDist_mvgd_33532_lvgd_1163850006_25,BranchTee_mvgd_33532_lvgd_1163850006_2,BranchTee_mvgd_33532_lvgd_1163850006_25,0.022396163072225306,0.0046136095928784124,0.001801206307233332,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.016606499999998 47.5560212962441, 10.016312199999994 47.55605019624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_2_LVCableDist_mvgd_33532_lvgd_1163850006_3,BranchTee_mvgd_33532_lvgd_1163850006_2,BranchTee_mvgd_33532_lvgd_1163850006_3,0.03230852804379938,0.006655556777022671,0.0025984059993779183,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.015939900000003 47.55595169624409, 10.016034799999998 47.556030496244084, 10.016312199999994 47.55605019624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_2_LVCableDist_mvgd_33532_lvgd_1163850006_building_441729,BranchTee_mvgd_33532_lvgd_1163850006_2,BranchTee_mvgd_33532_lvgd_1163850006_building_441729,0.03340560734247744,0.028996067173270416,0.0028440585676890577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016239549998657 47.55634679649959, 10.016312199999994 47.55605019624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_30_LVCableDist_mvgd_33532_lvgd_1163850006_34,BranchTee_mvgd_33532_lvgd_1163850006_30,BranchTee_mvgd_33532_lvgd_1163850006_34,0.0070439620878661605,0.0022540678681171713,0.0005775736741872797,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020111799999995 47.55634059624415, 10.020154800000007 47.556396896244195)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_30_LVCableDist_mvgd_33532_lvgd_1163850006_building_445610,BranchTee_mvgd_33532_lvgd_1163850006_30,BranchTee_mvgd_33532_lvgd_1163850006_building_445610,0.02549339692685506,0.022128268532510192,0.0021704354363623704,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020164257026671 47.55611391980729, 10.020111799999995 47.55634059624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_30_LVCableDist_mvgd_33532_lvgd_1163850006_building_445649,BranchTee_mvgd_33532_lvgd_1163850006_30,BranchTee_mvgd_33532_lvgd_1163850006_building_445649,0.024870512880417583,0.021587605180202463,0.0021174048570711287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019846349993575 47.55620744628194, 10.020111799999995 47.55634059624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_31_LVCableDist_mvgd_33532_lvgd_1163850006_32,BranchTee_mvgd_33532_lvgd_1163850006_31,BranchTee_mvgd_33532_lvgd_1163850006_32,0.031374425264956915,0.010039816084786213,0.002572563828390056,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019129500000002 47.55547869624405, 10.018712999999995 47.55547319624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_31_LVCableDist_mvgd_33532_lvgd_1163850006_35,BranchTee_mvgd_33532_lvgd_1163850006_31,BranchTee_mvgd_33532_lvgd_1163850006_35,0.022802344222024675,0.007296750151047896,0.001869691172115252,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019428900000005 47.55544819624408, 10.019129500000002 47.55547869624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_31_LVCableDist_mvgd_33532_lvgd_1163850006_building_441750,BranchTee_mvgd_33532_lvgd_1163850006_31,BranchTee_mvgd_33532_lvgd_1163850006_building_441750,0.020883535089523397,0.018126908457706307,0.0017779648873340703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01918520713226 47.55529457015406, 10.019129500000002 47.55547869624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_32_LVCableDist_mvgd_33532_lvgd_1163850006_building_441747,BranchTee_mvgd_33532_lvgd_1163850006_32,BranchTee_mvgd_33532_lvgd_1163850006_building_441747,0.0223517471018666,0.019401316484420207,0.001902964289682281,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018885670510484 47.555309577768234, 10.018712999999995 47.55547319624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_32_LVCableDist_mvgd_33532_lvgd_1163850006_building_441771,BranchTee_mvgd_33532_lvgd_1163850006_32,BranchTee_mvgd_33532_lvgd_1163850006_building_441771,0.014042108052975568,0.012188549789982793,0.0011955052128538514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018671126275274 47.55535004192772, 10.018712999999995 47.55547319624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_33_LVCableDist_mvgd_33532_lvgd_1163850006_building_441781,BranchTee_mvgd_33532_lvgd_1163850006_33,BranchTee_mvgd_33532_lvgd_1163850006_building_441781,0.020805862985239492,0.01805948907118788,0.0017713521048932559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019184891486645 47.55592017802907, 10.018916399999998 47.55587609624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_33_LVStation_mvgd_33532_lvgd_1163850006,BusBar_mvgd_33532_lvgd_1163850006_LV,BranchTee_mvgd_33532_lvgd_1163850006_33,0.14847998221984637,0.04751359431035084,0.012174700517157027,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018605699999998 47.55718989624418, 10.0186511 47.557056596244244, 10.018695299999996 47.55693689624422, 10.018757799999998 47.5567601962442, 10.018809999999998 47.5565221962442, 10.0188285 47.556251096244154, 10.0188362 47.5561264962441, 10.018853399999992 47.556007296244125, 10.018916399999998 47.55587609624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_34_LVCableDist_mvgd_33532_lvgd_1163850006_building_445620,BranchTee_mvgd_33532_lvgd_1163850006_34,BranchTee_mvgd_33532_lvgd_1163850006_building_445620,0.008961890958919114,0.007778921352341791,0.0007629899526478345,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020263121662557 47.556363507344216, 10.020154800000007 47.556396896244195)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_34_LVCableDist_mvgd_33532_lvgd_1163850006_building_445623,BranchTee_mvgd_33532_lvgd_1163850006_34,BranchTee_mvgd_33532_lvgd_1163850006_building_445623,0.015254162369833726,0.013240612937015674,0.0012986960762626323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01998141383558 47.55646786366854, 10.020154800000007 47.556396896244195)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_35_LVCableDist_mvgd_33532_lvgd_1163850006_36,BranchTee_mvgd_33532_lvgd_1163850006_35,BranchTee_mvgd_33532_lvgd_1163850006_36,0.025513818852977124,0.00816442203295268,0.0020920200752992295,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019471600000001 47.55522439624408, 10.019482899999995 47.55530349624406, 10.019470600000004 47.555369796244065, 10.019428900000005 47.55544819624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_35_LVCableDist_mvgd_33532_lvgd_1163850006_building_445651,BranchTee_mvgd_33532_lvgd_1163850006_35,BranchTee_mvgd_33532_lvgd_1163850006_building_445651,0.027482712332977565,0.023854994305024527,0.0023398001021987065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01976712460956 47.55554103984737, 10.019428900000005 47.55544819624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_36_LVCableDist_mvgd_33532_lvgd_1163850006_building_441745,BranchTee_mvgd_33532_lvgd_1163850006_36,BranchTee_mvgd_33532_lvgd_1163850006_building_441745,0.033491208801337,0.029070369239560516,0.0028513464328663103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019141020685968 47.55502278881879, 10.019471600000001 47.55522439624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_36_LVCableDist_mvgd_33532_lvgd_1163850006_building_445598,BranchTee_mvgd_33532_lvgd_1163850006_36,BranchTee_mvgd_33532_lvgd_1163850006_building_445598,0.02700597899372022,0.02344118976654915,0.002299212379182104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019609138635179 47.554999925126445, 10.019471600000001 47.55522439624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_36_LVCableDist_mvgd_33532_lvgd_1163850006_building_445642,BranchTee_mvgd_33532_lvgd_1163850006_36,BranchTee_mvgd_33532_lvgd_1163850006_building_445642,0.022921280977865482,0.01989567188878724,0.0019514527869281943,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019772800681325 47.5551948422718, 10.019471600000001 47.55522439624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_37_LVCableDist_mvgd_33532_lvgd_1163850006_39,BranchTee_mvgd_33532_lvgd_1163850006_37,BranchTee_mvgd_33532_lvgd_1163850006_39,0.10082298721209182,0.032263355907869384,0.008267038129994467,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0190778 47.55739689624424, 10.019104900000004 47.55747399624429, 10.0190988 47.557552796244245, 10.019073399999998 47.55760439624425, 10.018952100000005 47.55777079624425, 10.018891900000003 47.55782879624432, 10.018915699999999 47.5579425962443, 10.0188824 47.558033296244304, 10.018797799999994 47.5581007962443, 10.018770900000002 47.55824099624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_37_LVCableDist_mvgd_33532_lvgd_1163850006_building_441789,BranchTee_mvgd_33532_lvgd_1163850006_37,BranchTee_mvgd_33532_lvgd_1163850006_building_441789,0.0305892824575963,0.026551497173193588,0.002604284662783664,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01916587484793 47.55830520436879, 10.018770900000002 47.55824099624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_38_LVCableDist_mvgd_33532_lvgd_1163850006_40,BranchTee_mvgd_33532_lvgd_1163850006_38,BranchTee_mvgd_33532_lvgd_1163850006_40,0.03365199287969995,0.010768637721503984,0.002759314279208509,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019616200000003 47.556731596244155, 10.0197168 47.55658649624419, 10.019745500000003 47.55651089624416, 10.019727300000005 47.5564475962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_38_LVCableDist_mvgd_33532_lvgd_1163850006_building_441783,BranchTee_mvgd_33532_lvgd_1163850006_38,BranchTee_mvgd_33532_lvgd_1163850006_building_441783,0.032157684355461714,0.027912870020540766,0.0027378139475373628,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019335457208951 47.55633261156691, 10.019727300000005 47.5564475962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_38_LVCableDist_mvgd_33532_lvgd_1163850006_building_445650,BranchTee_mvgd_33532_lvgd_1163850006_38,BranchTee_mvgd_33532_lvgd_1163850006_building_445650,0.013434476710969883,0.011661125785121858,0.0011437732055141667,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019776868030338 47.556331443727196, 10.019727300000005 47.5564475962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_39_LVCableDist_mvgd_33532_lvgd_1163850006_40,BranchTee_mvgd_33532_lvgd_1163850006_39,BranchTee_mvgd_33532_lvgd_1163850006_40,0.08431038320045713,0.02697932262414628,0.006913077780629697,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0190778 47.55739689624424, 10.019265900000002 47.55716449624423, 10.019616200000003 47.556731596244155)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_39_LVStation_mvgd_33532_lvgd_1163850006,BusBar_mvgd_33532_lvgd_1163850006_LV,BranchTee_mvgd_33532_lvgd_1163850006_39,0.043161754795841736,0.013811761534669356,0.0035390726115274375,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018605699999998 47.55718989624418, 10.018683699999999 47.55721069624421, 10.018823700000002 47.5572479962442, 10.018958900000001 47.55730719624426, 10.0190778 47.55739689624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_3_LVCableDist_mvgd_33532_lvgd_1163850006_building_441727,BranchTee_mvgd_33532_lvgd_1163850006_3,BranchTee_mvgd_33532_lvgd_1163850006_building_441727,0.014482948848360168,0.012571199600376625,0.0012330371465872091,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016102188555383 47.55588176804989, 10.015939900000003 47.55595169624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_40_LVCableDist_mvgd_33532_lvgd_1163850006_building_441773,BranchTee_mvgd_33532_lvgd_1163850006_40,BranchTee_mvgd_33532_lvgd_1163850006_building_441773,0.030512702760062838,0.00976406488322011,0.0025019064019199616,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019219987084679 47.55667424420849, 10.019616200000003 47.556731596244155)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_41_LVCableDist_mvgd_33532_lvgd_1163850006_45,BranchTee_mvgd_33532_lvgd_1163850006_41,BranchTee_mvgd_33532_lvgd_1163850006_45,0.0289207711464338,0.009254646766858816,0.0023713750646314692,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021747399999999 47.55733989624424, 10.022112299999995 47.557258796244234)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_41_LVCableDist_mvgd_33532_lvgd_1163850006_47,BranchTee_mvgd_33532_lvgd_1163850006_41,BranchTee_mvgd_33532_lvgd_1163850006_47,0.022982813108336157,0.00735450019466757,0.0018844888210013757,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022112299999995 47.557258796244234, 10.022356999999998 47.55713519624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_41_LVCableDist_mvgd_33532_lvgd_1163850006_building_445747,BranchTee_mvgd_33532_lvgd_1163850006_41,BranchTee_mvgd_33532_lvgd_1163850006_building_445747,0.03154405205781807,0.027380237186186086,0.0026855710358719017,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02232931949321 47.557501618945395, 10.022112299999995 47.557258796244234)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_42_LVCableDist_mvgd_33532_lvgd_1163850006_46,BranchTee_mvgd_33532_lvgd_1163850006_42,BranchTee_mvgd_33532_lvgd_1163850006_46,0.016436897496430725,0.005259807198857832,0.0013477527506297357,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0226949 47.5569168962442, 10.022783600000004 47.55692859624421, 10.022875899999999 47.55698859624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_42_LVCableDist_mvgd_33532_lvgd_1163850006_47,BranchTee_mvgd_33532_lvgd_1163850006_42,BranchTee_mvgd_33532_lvgd_1163850006_47,0.03559074033160219,0.011389036906112702,0.0029182829782373274,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022356999999998 47.55713519624422, 10.022587299999998 47.556956296244174, 10.0226949 47.5569168962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_42_LVCableDist_mvgd_33532_lvgd_1163850006_building_445707,BranchTee_mvgd_33532_lvgd_1163850006_42,BranchTee_mvgd_33532_lvgd_1163850006_building_445707,0.015361150908347759,0.013333478988445854,0.0013078047766818715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02264799999593 47.55678234627964, 10.0226949 47.5569168962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_43_LVCableDist_mvgd_33532_lvgd_1163850006_44,BranchTee_mvgd_33532_lvgd_1163850006_43,BranchTee_mvgd_33532_lvgd_1163850006_44,0.048787433895810466,0.015611978846659349,0.00400035336617043,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023161162314413 47.55738283039976, 10.023446428981037 47.557777063733134)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_43_LVCableDist_mvgd_33532_lvgd_1163850006_46,BranchTee_mvgd_33532_lvgd_1163850006_43,BranchTee_mvgd_33532_lvgd_1163850006_46,0.0487874338962286,0.015611978846793153,0.004000353366204715,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022875899999999 47.55698859624418, 10.023161162314413 47.55738283039976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_43_LVCableDist_mvgd_33532_lvgd_1163850006_building_445754,BranchTee_mvgd_33532_lvgd_1163850006_43,BranchTee_mvgd_33532_lvgd_1163850006_building_445754,0.016876394397562302,0.014648710337084078,0.00143680830544442,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02331673182531 47.55727350534111, 10.023161162314413 47.55738283039976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_43_LVCableDist_mvgd_33532_lvgd_1163850006_building_445757,BranchTee_mvgd_33532_lvgd_1163850006_43,BranchTee_mvgd_33532_lvgd_1163850006_building_445757,0.02357970102163985,0.02046718048678339,0.0020075088001428854,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02344925927195 47.557465924461795, 10.023161162314413 47.55738283039976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_44_LVCableDist_mvgd_33532_lvgd_1163850006_building_445752,BranchTee_mvgd_33532_lvgd_1163850006_44,BranchTee_mvgd_33532_lvgd_1163850006_building_445752,0.038256071890888185,0.03320627040129095,0.0032570133484464297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022942813771 47.557732059430194, 10.023446428981037 47.557777063733134)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_44_LVCableDist_mvgd_33532_lvgd_1163850006_building_445761,BranchTee_mvgd_33532_lvgd_1163850006_44,BranchTee_mvgd_33532_lvgd_1163850006_building_445761,0.016307698264002916,0.01415508209315453,0.001388391131211381,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023634128475381 47.557703878340924, 10.023446428981037 47.557777063733134)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_44_LVCableDist_mvgd_33532_lvgd_1163850006_building_445787,BranchTee_mvgd_33532_lvgd_1163850006_44,BranchTee_mvgd_33532_lvgd_1163850006_building_445787,0.026225777938743262,0.02276397525082915,0.0022327882764205972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023748858154226 47.55789407731604, 10.023446428981037 47.557777063733134)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_45_LVCableDist_mvgd_33532_lvgd_1163850006_building_445762,BranchTee_mvgd_33532_lvgd_1163850006_45,BranchTee_mvgd_33532_lvgd_1163850006_building_445762,0.01601750360885962,0.013903193132490152,0.0013636847821605618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021852449985793 47.55721454628002, 10.021747399999999 47.55733989624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_45_LVCableDist_mvgd_33532_lvgd_1163850006_building_445765,BranchTee_mvgd_33532_lvgd_1163850006_45,BranchTee_mvgd_33532_lvgd_1163850006_building_445765,0.011944911491239878,0.010368183174396214,0.0010169558517126726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021599949002887 47.557300291281955, 10.021747399999999 47.55733989624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_45_LVCableDist_mvgd_33532_lvgd_1163850006_building_445784,BranchTee_mvgd_33532_lvgd_1163850006_45,BranchTee_mvgd_33532_lvgd_1163850006_building_445784,0.03137466830959987,0.027233212092732686,0.0026711501844439225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021997416469615 47.557565770394866, 10.021747399999999 47.55733989624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_45_LVStation_mvgd_33532_lvgd_1163850006,BusBar_mvgd_33532_lvgd_1163850006_LV,BranchTee_mvgd_33532_lvgd_1163850006_45,0.504753435721937,0.16152109943101983,0.041387544792548206,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018605699999998 47.55718989624418, 10.018490800000006 47.557465196244245, 10.018455899999998 47.55760939624427, 10.018439799999998 47.55776059624424, 10.018443100000002 47.55788249624428, 10.018462999999995 47.558006696244306, 10.018480200000004 47.55809699624432, 10.018534500000001 47.55822409624431, 10.018700799999998 47.55846659624434, 10.018841099999998 47.55861969624434, 10.018967300000002 47.55873469624436, 10.019080399999993 47.558852596244364, 10.019223700000001 47.55876699624438, 10.019249700000003 47.55871089624437, 10.019281000000001 47.55858869624433, 10.019332000000004 47.557944896244315, 10.019451499999999 47.55781759624426, 10.019563199999999 47.557756296244264, 10.019709300000004 47.557717396244286, 10.020454299999997 47.55764229624422, 10.020948300000006 47.55758259624427, 10.021445799999995 47.557452996244244, 10.021747399999999 47.55733989624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_46_LVCableDist_mvgd_33532_lvgd_1163850006_building_445718,BranchTee_mvgd_33532_lvgd_1163850006_46,BranchTee_mvgd_33532_lvgd_1163850006_building_445718,0.021015845818182007,0.018241754170181982,0.0017892294471302998,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023141513896123 47.55704657983562, 10.022875899999999 47.55698859624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_47_LVCableDist_mvgd_33532_lvgd_1163850006_building_445746,BranchTee_mvgd_33532_lvgd_1163850006_47,BranchTee_mvgd_33532_lvgd_1163850006_building_445746,0.029392070376163603,0.025512317086510007,0.0025023574251605988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022631737465098 47.55732307794864, 10.022356999999998 47.55713519624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_47_LVCableDist_mvgd_33532_lvgd_1163850006_building_445772,BranchTee_mvgd_33532_lvgd_1163850006_47,BranchTee_mvgd_33532_lvgd_1163850006_building_445772,0.014275074329220544,0.012390764517763431,0.0012153393002016556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022176869306145 47.55709520826067, 10.022356999999998 47.55713519624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_48_LVCableDist_mvgd_33532_lvgd_1163850006_49,BranchTee_mvgd_33532_lvgd_1163850006_48,BranchTee_mvgd_33532_lvgd_1163850006_49,0.06124105504868706,0.015493986927317826,0.00492529788515951,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021308999999999 47.55699209624424, 10.021117599999998 47.55645639624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_48_LVCableDist_mvgd_33532_lvgd_1163850006_53,BranchTee_mvgd_33532_lvgd_1163850006_48,BranchTee_mvgd_33532_lvgd_1163850006_53,0.04255891118637793,0.010767404530153617,0.0034227907258343776,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021308999999999 47.55699209624424, 10.020773901274737 47.557115247558926)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_48_LVCableDist_mvgd_33532_lvgd_1163850006_58,BranchTee_mvgd_33532_lvgd_1163850006_48,BranchTee_mvgd_33532_lvgd_1163850006_58,0.05223564680114432,0.013215618640689514,0.004201039980697246,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021445799999995 47.557452996244244, 10.021308999999999 47.55699209624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_48_LVCableDist_mvgd_33532_lvgd_1163850006_building_445644,BranchTee_mvgd_33532_lvgd_1163850006_48,BranchTee_mvgd_33532_lvgd_1163850006_building_445644,0.032881149814540246,0.028540838039020935,0.0027994077427414108,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021413538163905 47.55670476417151, 10.021308999999999 47.55699209624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_48_LVCableDist_mvgd_33532_lvgd_1163850006_building_445645,BranchTee_mvgd_33532_lvgd_1163850006_48,BranchTee_mvgd_33532_lvgd_1163850006_building_445645,0.023647241004959494,0.02052580519230484,0.0020132589625707826,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021075049996519 47.556850146273895, 10.021308999999999 47.55699209624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_48_LVCableDist_mvgd_33532_lvgd_1163850006_building_445646,BranchTee_mvgd_33532_lvgd_1163850006_48,BranchTee_mvgd_33532_lvgd_1163850006_building_445646,0.014234616937653492,0.01235564750188323,0.0012118948727457201,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021479949991404 47.55693744628283, 10.021308999999999 47.55699209624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_49_LVCableDist_mvgd_33532_lvgd_1163850006_50,BranchTee_mvgd_33532_lvgd_1163850006_49,BranchTee_mvgd_33532_lvgd_1163850006_50,0.021908905374813496,0.005542953059827814,0.001762018718046925,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021117599999998 47.55645639624418, 10.021095000000004 47.55634759624415, 10.021116400000004 47.55626149624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_49_LVCableDist_mvgd_33532_lvgd_1163850006_building_445641,BranchTee_mvgd_33532_lvgd_1163850006_49,BranchTee_mvgd_33532_lvgd_1163850006_building_445641,0.02162062155859654,0.018766699512861796,0.0018407183366578172,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020916573293347 47.5565953155094, 10.021117599999998 47.55645639624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_49_LVCableDist_mvgd_33532_lvgd_1163850006_building_445643,BranchTee_mvgd_33532_lvgd_1163850006_49,BranchTee_mvgd_33532_lvgd_1163850006_building_445643,0.021992110562422992,0.019089151968183157,0.0018723458557537338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02140914998835 47.55644529629924, 10.021117599999998 47.55645639624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_4_LVCableDist_mvgd_33532_lvgd_1163850006_5,BranchTee_mvgd_33532_lvgd_1163850006_4,BranchTee_mvgd_33532_lvgd_1163850006_5,0.047166586362524084,0.00971631679067996,0.003793361951012203,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018138799999996 47.55536369624407, 10.017532000000001 47.55525869624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_4_LVCableDist_mvgd_33532_lvgd_1163850006_8,BranchTee_mvgd_33532_lvgd_1163850006_4,BranchTee_mvgd_33532_lvgd_1163850006_8,0.053105129572339975,0.010939656691902035,0.004270967934269372,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.017532000000001 47.55525869624407, 10.016864999999994 47.55510369624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_4_LVCableDist_mvgd_33532_lvgd_1163850006_building_441734,BranchTee_mvgd_33532_lvgd_1163850006_4,BranchTee_mvgd_33532_lvgd_1163850006_building_441734,0.024224125271058855,0.021026540735279087,0.0020623732511614486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01724610498112 47.55535858754628, 10.017532000000001 47.55525869624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_4_LVCableDist_mvgd_33532_lvgd_1163850006_building_441741,BranchTee_mvgd_33532_lvgd_1163850006_4,BranchTee_mvgd_33532_lvgd_1163850006_building_441741,0.01628873706620272,0.014138623773463962,0.0013867768286631762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017622620821198 47.55539180937151, 10.017532000000001 47.55525869624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_50_LVCableDist_mvgd_33532_lvgd_1163850006_building_445622,BranchTee_mvgd_33532_lvgd_1163850006_50,BranchTee_mvgd_33532_lvgd_1163850006_building_445622,0.03673209096806624,0.0318834549602815,0.0031272659393928874,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020747299969818 47.55604539629556, 10.021116400000004 47.55626149624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_51_LVCableDist_mvgd_33532_lvgd_1163850006_52,BranchTee_mvgd_33532_lvgd_1163850006_51,BranchTee_mvgd_33532_lvgd_1163850006_52,0.026265251380891922,0.006645108599365656,0.00211237685204222,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020393100000005 47.55702639624422, 10.020238799999996 47.55723839624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_51_LVCableDist_mvgd_33532_lvgd_1163850006_building_445630,BranchTee_mvgd_33532_lvgd_1163850006_51,BranchTee_mvgd_33532_lvgd_1163850006_building_445630,0.022875274529055276,0.01985573829121998,0.001947535928492837,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02051131648563 47.556836745138085, 10.020393100000005 47.55702639624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_51_LVCableDist_mvgd_33532_lvgd_1163850006_building_445631,BranchTee_mvgd_33532_lvgd_1163850006_51,BranchTee_mvgd_33532_lvgd_1163850006_building_445631,0.01418994344456861,0.012316870909885553,0.0012080914983764388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020389491100053 47.55689870607069, 10.020393100000005 47.55702639624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_51_LVCableDist_mvgd_33532_lvgd_1163850006_building_445632,BranchTee_mvgd_33532_lvgd_1163850006_51,BranchTee_mvgd_33532_lvgd_1163850006_building_445632,0.03269271512491117,0.028377276728422895,0.0027833649482490036,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020634302721058 47.556781754732064, 10.020393100000005 47.55702639624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_52_LVCableDist_mvgd_33532_lvgd_1163850006_53,BranchTee_mvgd_33532_lvgd_1163850006_52,BranchTee_mvgd_33532_lvgd_1163850006_53,0.042558911187110304,0.010767404530338908,0.0034227907258932784,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020773901274737 47.557115247558926, 10.020238799999996 47.55723839624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_52_LVCableDist_mvgd_33532_lvgd_1163850006_building_445726,BranchTee_mvgd_33532_lvgd_1163850006_52,BranchTee_mvgd_33532_lvgd_1163850006_building_445726,0.014649913623822062,0.01271612502547755,0.0012472520535423918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020147509926733 47.557121965152554, 10.020238799999996 47.55723839624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_52_LVCableDist_mvgd_33532_lvgd_1163850006_building_445727,BranchTee_mvgd_33532_lvgd_1163850006_52,BranchTee_mvgd_33532_lvgd_1163850006_building_445727,0.017354736917499156,0.015063911644389267,0.001477533029535471,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020010311566514 47.55725867388721, 10.020238799999996 47.55723839624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_53_LVCableDist_mvgd_33532_lvgd_1163850006_building_445633,BranchTee_mvgd_33532_lvgd_1163850006_53,BranchTee_mvgd_33532_lvgd_1163850006_building_445633,0.013779606980279408,0.011960698858882526,0.0011731566167880716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020612563201164 47.557056755002066, 10.020773901274737 47.557115247558926)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_53_LVCableDist_mvgd_33532_lvgd_1163850006_building_445635,BranchTee_mvgd_33532_lvgd_1163850006_53,BranchTee_mvgd_33532_lvgd_1163850006_building_445635,0.017462498475806294,0.015157448676999863,0.001486707542665224,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020844749996723 47.556965596276946, 10.020773901274737 47.557115247558926)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_54_LVCableDist_mvgd_33532_lvgd_1163850006_57,BranchTee_mvgd_33532_lvgd_1163850006_54,BranchTee_mvgd_33532_lvgd_1163850006_57,0.03779043611854911,0.009560980337992925,0.0030392872060412994,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020454299999997 47.55764229624422, 10.020948300000006 47.55758259624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_54_LVCableDist_mvgd_33532_lvgd_1163850006_58,BranchTee_mvgd_33532_lvgd_1163850006_54,BranchTee_mvgd_33532_lvgd_1163850006_58,0.04013911000727373,0.010155194831840254,0.0032281787678843823,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020948300000006 47.55758259624427, 10.021445799999995 47.557452996244244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_54_LVCableDist_mvgd_33532_lvgd_1163850006_building_445733,BranchTee_mvgd_33532_lvgd_1163850006_54,BranchTee_mvgd_33532_lvgd_1163850006_building_445733,0.02409226088476787,0.02091208244797851,0.0020511466916871934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020754504970643 47.5574100772317, 10.020948300000006 47.55758259624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_54_LVCableDist_mvgd_33532_lvgd_1163850006_building_445753,BranchTee_mvgd_33532_lvgd_1163850006_54,BranchTee_mvgd_33532_lvgd_1163850006_building_445753,0.025841337899023407,0.022430281296352318,0.0022000581428978433,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021112149979604 47.55737824629061, 10.020948300000006 47.55758259624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_54_LVCableDist_mvgd_33532_lvgd_1163850006_building_445793,BranchTee_mvgd_33532_lvgd_1163850006_54,BranchTee_mvgd_33532_lvgd_1163850006_building_445793,0.04358918590867855,0.03783541336873298,0.0037110595347426023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021217646041961 47.557929840919314, 10.020948300000006 47.55758259624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_55_LVCableDist_mvgd_33532_lvgd_1163850006_56,BranchTee_mvgd_33532_lvgd_1163850006_55,BranchTee_mvgd_33532_lvgd_1163850006_56,0.11104356585536859,0.028094022161408255,0.008930653458422793,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019281000000001 47.55858869624433, 10.019332000000004 47.557944896244315, 10.019451499999999 47.55781759624426, 10.019563199999999 47.557756296244264, 10.019709300000004 47.557717396244286)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_55_LVCableDist_mvgd_33532_lvgd_1163850006_building_441790,BranchTee_mvgd_33532_lvgd_1163850006_55,BranchTee_mvgd_33532_lvgd_1163850006_building_441790,0.03481656889439294,0.030220781800333073,0.002964183828375533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019467100000291 47.558301846274944, 10.019281000000001 47.55858869624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_55_LVCableDist_mvgd_33532_lvgd_1163850006_building_441828,BranchTee_mvgd_33532_lvgd_1163850006_55,BranchTee_mvgd_33532_lvgd_1163850006_building_441828,0.013361549669803635,0.011597825113389556,0.0011375644042755392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0191166613545 47.558543375193935, 10.019281000000001 47.55858869624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_55_LVStation_mvgd_33532_lvgd_1163850006,BusBar_mvgd_33532_lvgd_1163850006_LV,BranchTee_mvgd_33532_lvgd_1163850006_55,0.23309817160341176,0.05897383741566318,0.018746867288946978,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018605699999998 47.55718989624418, 10.018490800000006 47.557465196244245, 10.018455899999998 47.55760939624427, 10.018439799999998 47.55776059624424, 10.018443100000002 47.55788249624428, 10.018462999999995 47.558006696244306, 10.018480200000004 47.55809699624432, 10.018534500000001 47.55822409624431, 10.018700799999998 47.55846659624434, 10.018841099999998 47.55861969624434, 10.018967300000002 47.55873469624436, 10.019080399999993 47.558852596244364, 10.019223700000001 47.55876699624438, 10.019249700000003 47.55871089624437, 10.019281000000001 47.55858869624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_56_LVCableDist_mvgd_33532_lvgd_1163850006_57,BranchTee_mvgd_33532_lvgd_1163850006_56,BranchTee_mvgd_33532_lvgd_1163850006_57,0.05672388512824538,0.014351142937446082,0.004562005524530356,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019709300000004 47.557717396244286, 10.020454299999997 47.55764229624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_56_LVCableDist_mvgd_33532_lvgd_1163850006_building_445728,BranchTee_mvgd_33532_lvgd_1163850006_56,BranchTee_mvgd_33532_lvgd_1163850006_building_445728,0.023343588272125626,0.020262234620205044,0.001987406830994051,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019910159417872 47.55755737788348, 10.019709300000004 47.557717396244286)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_56_LVCableDist_mvgd_33532_lvgd_1163850006_building_445736,BranchTee_mvgd_33532_lvgd_1163850006_56,BranchTee_mvgd_33532_lvgd_1163850006_building_445736,0.0371902262023519,0.03228111634364145,0.003166270272553852,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019864549986695 47.55803514628195, 10.019709300000004 47.557717396244286)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_57_LVCableDist_mvgd_33532_lvgd_1163850006_building_445720,BranchTee_mvgd_33532_lvgd_1163850006_57,BranchTee_mvgd_33532_lvgd_1163850006_building_445720,0.03165100126108803,0.027473069094624412,0.0026946763874001367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020482712135143 47.557926512479426, 10.020454299999997 47.55764229624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_57_LVCableDist_mvgd_33532_lvgd_1163850006_building_445735,BranchTee_mvgd_33532_lvgd_1163850006_57,BranchTee_mvgd_33532_lvgd_1163850006_building_445735,0.01967955432707357,0.01708185315589986,0.0016754613834260859,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020394328478506 47.5574699026955, 10.020454299999997 47.55764229624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_58_LVCableDist_mvgd_33532_lvgd_1163850006_building_445758,BranchTee_mvgd_33532_lvgd_1163850006_58,BranchTee_mvgd_33532_lvgd_1163850006_building_445758,0.025047441150157293,0.02174117891833653,0.0021324680276418903,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021294988061353 47.557653922031506, 10.021445799999995 47.557452996244244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_58_LVCableDist_mvgd_33532_lvgd_1163850006_building_445813,BranchTee_mvgd_33532_lvgd_1163850006_58,BranchTee_mvgd_33532_lvgd_1163850006_building_445813,0.03969715699137563,0.034457132268514046,0.0033797032425349235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021678449972352 47.55777359629814, 10.021445799999995 47.557452996244244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_5_LVCableDist_mvgd_33532_lvgd_1163850006_building_441740,BranchTee_mvgd_33532_lvgd_1163850006_5,BranchTee_mvgd_33532_lvgd_1163850006_building_441740,0.02613901004013186,0.022688660714834455,0.0022254011038744977,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01788450001798 47.5552035962875, 10.018138799999996 47.55536369624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_6_LVCableDist_mvgd_33532_lvgd_1163850006_7,BranchTee_mvgd_33532_lvgd_1163850006_6,BranchTee_mvgd_33532_lvgd_1163850006_7,0.009853667435951159,0.0020298554918059385,0.000792478956229149,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.016094400000002 47.55494469624402, 10.016049499999994 47.55502799624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_6_LVCableDist_mvgd_33532_lvgd_1163850006_8,BranchTee_mvgd_33532_lvgd_1163850006_6,BranchTee_mvgd_33532_lvgd_1163850006_8,0.06066706386965071,0.012497415157148046,0.004879134775494591,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.016864999999994 47.55510369624406, 10.016094400000002 47.55494469624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_6_LVCableDist_mvgd_33532_lvgd_1163850006_building_441714,BranchTee_mvgd_33532_lvgd_1163850006_6,BranchTee_mvgd_33532_lvgd_1163850006_building_441714,0.025947320726547523,0.02252227439064325,0.002209081219938703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0159399500057 47.55473594632121, 10.016094400000002 47.55494469624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_6_LVCableDist_mvgd_33532_lvgd_1163850006_building_441722,BranchTee_mvgd_33532_lvgd_1163850006_6,BranchTee_mvgd_33532_lvgd_1163850006_building_441722,0.021537232209667828,0.018694317557991676,0.001833618804239703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016297571985847 47.55480828742032, 10.016094400000002 47.55494469624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_7_LVCableDist_mvgd_33532_lvgd_1163850006_building_441704,BranchTee_mvgd_33532_lvgd_1163850006_7,BranchTee_mvgd_33532_lvgd_1163850006_building_441704,0.019985330065693096,0.017347266497021608,0.0017014942616880085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016242501527477 47.555151440891976, 10.016049499999994 47.55502799624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_7_LVCableDist_mvgd_33532_lvgd_1163850006_building_441751,BranchTee_mvgd_33532_lvgd_1163850006_7,BranchTee_mvgd_33532_lvgd_1163850006_building_441751,0.015170957088155378,0.013168390752518867,0.0012916122148076308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015849351480433 47.55504339341218, 10.016049499999994 47.55502799624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_8_LVCableDist_mvgd_33532_lvgd_1163850006_building_441706,BranchTee_mvgd_33532_lvgd_1163850006_8,BranchTee_mvgd_33532_lvgd_1163850006_building_441706,0.029122139220710917,0.025278016843577077,0.002479376252943585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01656392555423 47.55526816583121, 10.016864999999994 47.55510369624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_8_LVCableDist_mvgd_33532_lvgd_1163850006_building_441723,BranchTee_mvgd_33532_lvgd_1163850006_8,BranchTee_mvgd_33532_lvgd_1163850006_building_441723,0.02176074830911648,0.018888329532313102,0.0018526483303649486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016983647587685 47.555282273836355, 10.016864999999994 47.55510369624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_8_LVCableDist_mvgd_33532_lvgd_1163850006_building_441724,BranchTee_mvgd_33532_lvgd_1163850006_8,BranchTee_mvgd_33532_lvgd_1163850006_building_441724,0.02720375573851221,0.0236128599810286,0.002316050529728167,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017224386925351 47.555079195649014, 10.016864999999994 47.55510369624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_8_LVCableDist_mvgd_33532_lvgd_1163850006_building_441731,BranchTee_mvgd_33532_lvgd_1163850006_8,BranchTee_mvgd_33532_lvgd_1163850006_building_441731,0.025734377200483508,0.022337439410019685,0.0021909518126949617,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016653191284176 47.55492194927193, 10.016864999999994 47.55510369624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850006_9_LVCableDist_mvgd_33532_lvgd_1163850006_building_441759,BranchTee_mvgd_33532_lvgd_1163850006_9,BranchTee_mvgd_33532_lvgd_1163850006_building_441759,0.017388714520428603,0.015093404203732027,0.0014804257861834888,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017281286630267 47.55633610336494, 10.017179300000004 47.556195696244174)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_10_LVCableDist_mvgd_33532_lvgd_1163850007_3,BranchTee_mvgd_33532_lvgd_1163850007_3,BranchTee_mvgd_33532_lvgd_1163850007_10,0.06046432822157639,0.019348585030904444,0.004957806951908322,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024872500000006 47.55381669624389, 10.024898599999993 47.55378599624392, 10.024960500000002 47.55371349624392, 10.025107399999996 47.55353689624393, 10.02522669999999 47.55339879624388, 10.025236500000002 47.55338749624385, 10.025177600000006 47.55335889624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_10_LVCableDist_mvgd_33532_lvgd_1163850007_8,BranchTee_mvgd_33532_lvgd_1163850007_8,BranchTee_mvgd_33532_lvgd_1163850007_10,0.0104828958739004,0.003354526679648128,0.000859551004177178,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024803399999994 47.55373479624391, 10.024830200000004 47.55376659624392, 10.024872500000006 47.55381669624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_10_LVCableDist_mvgd_33532_lvgd_1163850007_building_445538,BranchTee_mvgd_33532_lvgd_1163850007_10,BranchTee_mvgd_33532_lvgd_1163850007_building_445538,0.021524583743934764,0.018683338689735374,0.0018325419497772935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024624965710464 47.55391352041802, 10.024872500000006 47.55381669624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_10_LVStation_mvgd_33532_lvgd_1163850007,BusBar_mvgd_33532_lvgd_1163850007_LV,BranchTee_mvgd_33532_lvgd_1163850007_10,0.12353972469161223,0.039532711901315916,0.010129709928611307,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024872500000006 47.55381669624389, 10.024894699999995 47.55384029624394, 10.024916199999998 47.55386309624394, 10.024909399999995 47.55395109624393, 10.024880200000002 47.55406669624398, 10.024829599999995 47.55421989624394, 10.0247887 47.55431889624396, 10.024760299999999 47.55440979624396, 10.024753600000006 47.55445769624396, 10.024768499999995 47.554471596243935, 10.024783199999996 47.55448189624398, 10.0248164 47.55449799624404, 10.0248677 47.55451999624394, 10.024920400000001 47.554541596243986, 10.024977199999999 47.554564996243975, 10.025067200000006 47.55462189624401, 10.025241599999998 47.55475769624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_11_LVCableDist_mvgd_33532_lvgd_1163850007_26,BranchTee_mvgd_33532_lvgd_1163850007_11,BranchTee_mvgd_33532_lvgd_1163850007_26,0.3115847071889527,0.09970710630046487,0.025548565126676834,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025481900000008 47.55334769624391, 10.0255575 47.55328009624388, 10.025601000000002 47.55324669624392, 10.025722900000005 47.553141596243854, 10.0258617 47.55292309624382, 10.0259631 47.55274299624386, 10.025988799999993 47.55268929624384, 10.026019600000003 47.55262489624382, 10.0260066 47.552579296243835, 10.025959499999995 47.55252809624383, 10.026020900000004 47.5524970962438, 10.026237599999993 47.5523395962438, 10.026436399999994 47.552103596243754, 10.026797999999996 47.55157089624374, 10.027042799999997 47.55119249624368, 10.027140299999994 47.55103809624367, 10.0272275 47.550875396243654)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_11_LVCableDist_mvgd_33532_lvgd_1163850007_35,BranchTee_mvgd_33532_lvgd_1163850007_11,BranchTee_mvgd_33532_lvgd_1163850007_35,0.04092609443388753,0.01309635021884401,0.003355758369715566,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025169700000003 47.55364839624392, 10.025361299999997 47.55344589624388, 10.025481900000008 47.55334769624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_11_LVCableDist_mvgd_33532_lvgd_1163850007_building_445562,BranchTee_mvgd_33532_lvgd_1163850007_11,BranchTee_mvgd_33532_lvgd_1163850007_building_445562,0.00791127593195714,0.006866987508938798,0.00067354357204051,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02558598123857 47.553357288855764, 10.025481900000008 47.55334769624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_12_LVCableDist_mvgd_33532_lvgd_1163850007_13,BranchTee_mvgd_33532_lvgd_1163850007_12,BranchTee_mvgd_33532_lvgd_1163850007_13,0.008024490681354022,0.002567837018033287,0.0006579726734042146,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024753600000006 47.55445769624396, 10.024706699999996 47.554464896243964, 10.024648400000006 47.554461996244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_12_LVCableDist_mvgd_33532_lvgd_1163850007_27,BranchTee_mvgd_33532_lvgd_1163850007_12,BranchTee_mvgd_33532_lvgd_1163850007_27,0.019908169656514544,0.006370614290084654,0.0016323816839763912,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024648400000006 47.554461996244, 10.024384500000002 47.55445179624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_12_LVCableDist_mvgd_33532_lvgd_1163850007_building_445663,BranchTee_mvgd_33532_lvgd_1163850007_12,BranchTee_mvgd_33532_lvgd_1163850007_building_445663,0.01624557949812159,0.01410116300436954,0.00138310251584487,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024539850009617 47.55433564630945, 10.024648400000006 47.554461996244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_13_LVCableDist_mvgd_33532_lvgd_1163850007_32,BranchTee_mvgd_33532_lvgd_1163850007_13,BranchTee_mvgd_33532_lvgd_1163850007_32,0.027092362013724794,0.008669555844391934,0.002221453618785609,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024829599999995 47.55421989624394, 10.0247887 47.55431889624396, 10.024760299999999 47.55440979624396, 10.024753600000006 47.55445769624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_13_LVCableDist_mvgd_33532_lvgd_1163850007_33,BranchTee_mvgd_33532_lvgd_1163850007_13,BranchTee_mvgd_33532_lvgd_1163850007_33,0.030061293854731233,0.009619614033513994,0.0024648928722102617,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024753600000006 47.55445769624396, 10.024768499999995 47.554471596243935, 10.024783199999996 47.55448189624398, 10.0248164 47.55449799624404, 10.0248677 47.55451999624394, 10.024920400000001 47.554541596243986, 10.024977199999999 47.554564996243975, 10.025067200000006 47.55462189624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_14_LVCableDist_mvgd_33532_lvgd_1163850007_15,BranchTee_mvgd_33532_lvgd_1163850007_14,BranchTee_mvgd_33532_lvgd_1163850007_15,0.020548025563889162,0.006575368180444532,0.0016848470327052551,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025296699999995 47.554410596244026, 10.025133099999996 47.55455859624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_14_LVCableDist_mvgd_33532_lvgd_1163850007_21,BranchTee_mvgd_33532_lvgd_1163850007_14,BranchTee_mvgd_33532_lvgd_1163850007_21,0.036146994452955786,0.011567038224945852,0.0029638933510139553,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025296699999995 47.554410596244026, 10.025752000000002 47.55430769624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_14_LVCableDist_mvgd_33532_lvgd_1163850007_29,BranchTee_mvgd_33532_lvgd_1163850007_14,BranchTee_mvgd_33532_lvgd_1163850007_29,0.0689258967983762,0.022056286975480385,0.005651618075722927,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025684199999999 47.553848596243924, 10.025296699999995 47.554410596244026)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_15_LVCableDist_mvgd_33532_lvgd_1163850007_33,BranchTee_mvgd_33532_lvgd_1163850007_15,BranchTee_mvgd_33532_lvgd_1163850007_33,0.008608030361806409,0.0027545697157780507,0.0007058203411044045,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025133099999996 47.55455859624398, 10.025067200000006 47.55462189624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_15_LVCableDist_mvgd_33532_lvgd_1163850007_building_445822,BranchTee_mvgd_33532_lvgd_1163850007_15,BranchTee_mvgd_33532_lvgd_1163850007_building_445822,0.013766503118840973,0.011949324707153965,0.0011720409912282152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025311022692835 47.55458697999301, 10.025133099999996 47.55455859624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_16_LVCableDist_mvgd_33532_lvgd_1163850007_17,BranchTee_mvgd_33532_lvgd_1163850007_16,BranchTee_mvgd_33532_lvgd_1163850007_17,0.00642811076172148,0.0020569954437508736,0.0005270765947371766,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027153199999999 47.55408259624392, 10.027180999999995 47.55402789624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_16_LVCableDist_mvgd_33532_lvgd_1163850007_19,BranchTee_mvgd_33532_lvgd_1163850007_16,BranchTee_mvgd_33532_lvgd_1163850007_19,0.014556228232086993,0.004657993034267838,0.0011935462055932121,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027180999999995 47.55402789624394, 10.027194299999994 47.553897196243945)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_16_LVCableDist_mvgd_33532_lvgd_1163850007_building_445586,BranchTee_mvgd_33532_lvgd_1163850007_16,BranchTee_mvgd_33532_lvgd_1163850007_building_445586,0.012225613400656265,0.010611832431769637,0.0010408540153430408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02734229287227 47.554015518117794, 10.027180999999995 47.55402789624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_16_LVCableDist_mvgd_33532_lvgd_1163850007_building_445600,BranchTee_mvgd_33532_lvgd_1163850007_16,BranchTee_mvgd_33532_lvgd_1163850007_building_445600,0.01458546249045209,0.012660181441712414,0.0012417648670296935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027018400001554 47.553956596258715, 10.027180999999995 47.55402789624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_17_LVCableDist_mvgd_33532_lvgd_1163850007_24,BranchTee_mvgd_33532_lvgd_1163850007_17,BranchTee_mvgd_33532_lvgd_1163850007_24,0.015595822965902657,0.00499066334908885,0.0012787883665511728,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027035100000006 47.554197896243956, 10.027153199999999 47.55408259624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_17_LVCableDist_mvgd_33532_lvgd_1163850007_building_445609,BranchTee_mvgd_33532_lvgd_1163850007_17,BranchTee_mvgd_33532_lvgd_1163850007_building_445609,0.011832318517637972,0.01027045247330976,0.0010073700056015347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027012774123213 47.55403485000854, 10.027153199999999 47.55408259624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_18_LVCableDist_mvgd_33532_lvgd_1163850007_19,BranchTee_mvgd_33532_lvgd_1163850007_18,BranchTee_mvgd_33532_lvgd_1163850007_19,0.018632583509746607,0.005962426723118914,0.0015277892730092368,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027194299999994 47.553897196243945, 10.027256000000001 47.55373479624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_18_LVCableDist_mvgd_33532_lvgd_1163850007_building_445590,BranchTee_mvgd_33532_lvgd_1163850007_18,BranchTee_mvgd_33532_lvgd_1163850007_building_445590,0.021789904643229593,0.018913637230323285,0.0018551306178739492,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027363155217852 47.55355262762087, 10.027256000000001 47.55373479624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_18_LVCableDist_mvgd_33532_lvgd_1163850007_building_445597,BranchTee_mvgd_33532_lvgd_1163850007_18,BranchTee_mvgd_33532_lvgd_1163850007_building_445597,0.014750135301800691,0.012803117441963,0.0012557846426673575,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027061800002356 47.55375194634875, 10.027256000000001 47.55373479624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_19_LVCableDist_mvgd_33532_lvgd_1163850007_20,BranchTee_mvgd_33532_lvgd_1163850007_19,BranchTee_mvgd_33532_lvgd_1163850007_20,0.013503893408777919,0.004321245890808934,0.0011072594137575727,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027194299999994 47.553897196243945, 10.027366000000002 47.55386219624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_1_LVCableDist_mvgd_33532_lvgd_1163850007_2,BranchTee_mvgd_33532_lvgd_1163850007_1,BranchTee_mvgd_33532_lvgd_1163850007_2,0.021271530796287002,0.006806889854811841,0.001744171255373854,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024636400000004 47.55350619624392, 10.024541100000006 47.55351319624384, 10.024469 47.553530196243926, 10.024427100000002 47.55354009624393, 10.024369299999996 47.55356149624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_1_LVCableDist_mvgd_33532_lvgd_1163850007_4,BranchTee_mvgd_33532_lvgd_1163850007_1,BranchTee_mvgd_33532_lvgd_1163850007_4,0.019850682302393334,0.006352218336765867,0.0016276679757075338,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024369299999996 47.55356149624391, 10.0241459 47.55365629624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_1_LVCableDist_mvgd_33532_lvgd_1163850007_building_445536,BranchTee_mvgd_33532_lvgd_1163850007_1,BranchTee_mvgd_33532_lvgd_1163850007_building_445536,0.017505501774051704,0.01519477553987688,0.0014903687213877026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024463519913029 47.553705524165224, 10.024369299999996 47.55356149624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_1_LVCableDist_mvgd_33532_lvgd_1163850007_building_445564,BranchTee_mvgd_33532_lvgd_1163850007_1,BranchTee_mvgd_33532_lvgd_1163850007_building_445564,0.03366850846760242,0.029224265349878903,0.002866441223082844,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024167173250929 47.553291217224945, 10.024369299999996 47.55356149624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_20_LVCableDist_mvgd_33532_lvgd_1163850007_building_445585,BranchTee_mvgd_33532_lvgd_1163850007_20,BranchTee_mvgd_33532_lvgd_1163850007_building_445585,0.018595221357096424,0.016140652137959694,0.0015831443528786472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027531567885163 47.55373804303141, 10.027366000000002 47.55386219624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_20_LVCableDist_mvgd_33532_lvgd_1163850007_building_445594,BranchTee_mvgd_33532_lvgd_1163850007_20,BranchTee_mvgd_33532_lvgd_1163850007_building_445594,0.020027027444142323,0.017383459821515537,0.0017050442581066608,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027508799999467 47.554014246274, 10.027366000000002 47.55386219624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_21_LVCableDist_mvgd_33532_lvgd_1163850007_22,BranchTee_mvgd_33532_lvgd_1163850007_21,BranchTee_mvgd_33532_lvgd_1163850007_22,0.060113014051400016,0.019236164496448004,0.0049290007468873786,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025752000000002 47.55430769624396, 10.026511600000005 47.55414159624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_21_LVCableDist_mvgd_33532_lvgd_1163850007_building_445579,BranchTee_mvgd_33532_lvgd_1163850007_21,BranchTee_mvgd_33532_lvgd_1163850007_building_445579,0.016588121423705054,0.014398489395775987,0.0014122655628824728,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025771574130582 47.55415898877346, 10.025752000000002 47.55430769624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_22_LVCableDist_mvgd_33532_lvgd_1163850007_23,BranchTee_mvgd_33532_lvgd_1163850007_22,BranchTee_mvgd_33532_lvgd_1163850007_23,0.028733772394780453,0.009194807166329744,0.002356041995725987,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026511600000005 47.55414159624396, 10.026890599999994 47.55417119624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_22_LVCableDist_mvgd_33532_lvgd_1163850007_28,BranchTee_mvgd_33532_lvgd_1163850007_22,BranchTee_mvgd_33532_lvgd_1163850007_28,0.026533330758799514,0.008490665842815845,0.0021756155333636402,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026511600000005 47.55414159624396, 10.026522200000002 47.55390289624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_22_LVCableDist_mvgd_33532_lvgd_1163850007_building_445580,BranchTee_mvgd_33532_lvgd_1163850007_22,BranchTee_mvgd_33532_lvgd_1163850007_building_445580,0.023303431983778426,0.020227378961919673,0.0019839880386113957,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02624779994772 47.554031996341735, 10.026511600000005 47.55414159624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_22_LVCableDist_mvgd_33532_lvgd_1163850007_building_445587,BranchTee_mvgd_33532_lvgd_1163850007_22,BranchTee_mvgd_33532_lvgd_1163850007_building_445587,0.018957797022589203,0.016455367815607427,0.0016140130156545843,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026339399971096 47.554266046286884, 10.026511600000005 47.55414159624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_22_LVCableDist_mvgd_33532_lvgd_1163850007_building_445608,BranchTee_mvgd_33532_lvgd_1163850007_22,BranchTee_mvgd_33532_lvgd_1163850007_building_445608,0.014204889223789095,0.012329843846248934,0.0012093639395868926,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026595590352985 47.554256066831975, 10.026511600000005 47.55414159624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_23_LVCableDist_mvgd_33532_lvgd_1163850007_24,BranchTee_mvgd_33532_lvgd_1163850007_23,BranchTee_mvgd_33532_lvgd_1163850007_24,0.011280313277790468,0.0036097002488929496,0.0009249356973485162,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027035100000006 47.554197896243956, 10.026890599999994 47.55417119624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_23_LVCableDist_mvgd_33532_lvgd_1163850007_building_445584,BranchTee_mvgd_33532_lvgd_1163850007_23,BranchTee_mvgd_33532_lvgd_1163850007_building_445584,0.017008893147907288,0.014763719252383525,0.0014480888728732174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026828902771829 47.55431845817103, 10.026890599999994 47.55417119624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_23_LVCableDist_mvgd_33532_lvgd_1163850007_building_445607,BranchTee_mvgd_33532_lvgd_1163850007_23,BranchTee_mvgd_33532_lvgd_1163850007_building_445607,0.018128944409416495,0.015735923747373516,0.0015434468573543327,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026736600001607 47.55404579626478, 10.026890599999994 47.55417119624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_24_LVCableDist_mvgd_33532_lvgd_1163850007_25,BranchTee_mvgd_33532_lvgd_1163850007_24,BranchTee_mvgd_33532_lvgd_1163850007_25,0.010836028953230162,0.003467529265033652,0.000888506351687764,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027035100000006 47.554197896243956, 10.027117600000004 47.554277796244016)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_25_LVCableDist_mvgd_33532_lvgd_1163850007_building_445592,BranchTee_mvgd_33532_lvgd_1163850007_25,BranchTee_mvgd_33532_lvgd_1163850007_building_445592,0.016149218635442674,0.014017521775564241,0.0013748986255733289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027304588475495 47.55420666471345, 10.027117600000004 47.554277796244016)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_25_LVCableDist_mvgd_33532_lvgd_1163850007_building_445855,BranchTee_mvgd_33532_lvgd_1163850007_25,BranchTee_mvgd_33532_lvgd_1163850007_building_445855,0.03655567924749633,0.03173032958682681,0.0031122467463519142,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026902910972577 47.5545728738499, 10.027117600000004 47.554277796244016)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_26_LVCableDist_mvgd_33532_lvgd_1163850007_building_445544,BranchTee_mvgd_33532_lvgd_1163850007_26,BranchTee_mvgd_33532_lvgd_1163850007_building_445544,0.011251490308506458,0.009766293587783605,0.0009579199408983115,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027086991614754 47.55084101805383, 10.0272275 47.550875396243654)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_27_LVCableDist_mvgd_33532_lvgd_1163850007_building_445582,BranchTee_mvgd_33532_lvgd_1163850007_27,BranchTee_mvgd_33532_lvgd_1163850007_building_445582,0.02270487940608795,0.01970783532448434,0.0019330289714900994,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02427830000426 47.554260546441185, 10.024384500000002 47.55445179624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_27_LVCableDist_mvgd_33532_lvgd_1163850007_building_445669,BranchTee_mvgd_33532_lvgd_1163850007_27,BranchTee_mvgd_33532_lvgd_1163850007_building_445669,0.01584846983029405,0.013756471812695235,0.0013492937261552133,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024390970999871 47.55459436975509, 10.024384500000002 47.55445179624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_28_LVCableDist_mvgd_33532_lvgd_1163850007_34,BranchTee_mvgd_33532_lvgd_1163850007_28,BranchTee_mvgd_33532_lvgd_1163850007_34,0.03221143838277059,0.010307660282486588,0.002641195194625169,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026660700000004 47.553677596243894, 10.026550900000002 47.55368919624392, 10.026522200000002 47.55390289624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_28_LVCableDist_mvgd_33532_lvgd_1163850007_building_445599,BranchTee_mvgd_33532_lvgd_1163850007_28,BranchTee_mvgd_33532_lvgd_1163850007_building_445599,0.01765850292549354,0.015327580539328391,0.0015033948050377707,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02674480000161 47.553952796264774, 10.026522200000002 47.55390289624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_29_LVCableDist_mvgd_33532_lvgd_1163850007_building_445577,BranchTee_mvgd_33532_lvgd_1163850007_29,BranchTee_mvgd_33532_lvgd_1163850007_building_445577,0.029887689606360866,0.02594251457832123,0.0025445530393131254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025984156374516 47.553672481252086, 10.025684199999999 47.553848596243924)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_2_LVCableDist_mvgd_33532_lvgd_1163850007_7,BranchTee_mvgd_33532_lvgd_1163850007_2,BranchTee_mvgd_33532_lvgd_1163850007_7,0.0838639612672352,0.026836467605515262,0.006876473160532021,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024286200000008 47.55292709624385, 10.024629300000006 47.55313859624386, 10.0247398 47.55321119624388, 10.024778600000003 47.553246796243904, 10.024667499999998 47.553339996243835, 10.024643800000007 47.55336899624388, 10.024630500000002 47.55342099624388, 10.024624499999998 47.55345889624387, 10.024636400000004 47.55350619624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_2_LVCableDist_mvgd_33532_lvgd_1163850007_8,BranchTee_mvgd_33532_lvgd_1163850007_2,BranchTee_mvgd_33532_lvgd_1163850007_8,0.02843007097387452,0.009097622711639847,0.0023311398251378325,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024636400000004 47.55350619624392, 10.024685300000002 47.55359489624392, 10.024803399999994 47.55373479624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_30_LVCableDist_mvgd_33532_lvgd_1163850007_31,BranchTee_mvgd_33532_lvgd_1163850007_30,BranchTee_mvgd_33532_lvgd_1163850007_31,0.02282175986804503,0.007302963157774409,0.0018712831690438007,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024916199999998 47.55386309624394, 10.024909399999995 47.55395109624393, 10.024880200000002 47.55406669624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_30_LVCableDist_mvgd_33532_lvgd_1163850007_35,BranchTee_mvgd_33532_lvgd_1163850007_30,BranchTee_mvgd_33532_lvgd_1163850007_35,0.03277614638651538,0.010488366843684923,0.0026874987482924557,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024916199999998 47.55386309624394, 10.025021099999995 47.55384609624396, 10.025169700000003 47.55364839624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_31_LVCableDist_mvgd_33532_lvgd_1163850007_32,BranchTee_mvgd_33532_lvgd_1163850007_31,BranchTee_mvgd_33532_lvgd_1163850007_32,0.017443021782959263,0.005581766970546964,0.0014302504832425158,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024880200000002 47.55406669624398, 10.024829599999995 47.55421989624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_31_LVCableDist_mvgd_33532_lvgd_1163850007_building_445541,BranchTee_mvgd_33532_lvgd_1163850007_31,BranchTee_mvgd_33532_lvgd_1163850007_building_445541,0.009508253279476235,0.008253163846585372,0.0008095056894495146,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024795609338486 47.55413022158866, 10.024880200000002 47.55406669624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_31_LVCableDist_mvgd_33532_lvgd_1163850007_building_445573,BranchTee_mvgd_33532_lvgd_1163850007_31,BranchTee_mvgd_33532_lvgd_1163850007_building_445573,0.014815468609577259,0.012859826753113061,0.0012613469350044627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025072021408802 47.554037153941046, 10.024880200000002 47.55406669624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_32_LVCableDist_mvgd_33532_lvgd_1163850007_building_445540,BranchTee_mvgd_33532_lvgd_1163850007_32,BranchTee_mvgd_33532_lvgd_1163850007_building_445540,0.017980986424226728,0.015607496216228799,0.0015308501345609744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024612847057535 47.55415206078548, 10.024829599999995 47.55421989624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_33_LVCableDist_mvgd_33532_lvgd_1163850007_building_445823,BranchTee_mvgd_33532_lvgd_1163850007_33,BranchTee_mvgd_33532_lvgd_1163850007_building_445823,0.021585179681866795,0.01873593596386038,0.0018377009158956437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02508494999544 47.554815796289006, 10.025067200000006 47.55462189624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_33_LVStation_mvgd_33532_lvgd_1163850007,BusBar_mvgd_33532_lvgd_1163850007_LV,BranchTee_mvgd_33532_lvgd_1163850007_33,0.020004813197479134,0.006401540223193323,0.001640306026036315,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025067200000006 47.55462189624401, 10.025241599999998 47.55475769624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_34_LVCableDist_mvgd_33532_lvgd_1163850007_building_445591,BranchTee_mvgd_33532_lvgd_1163850007_34,BranchTee_mvgd_33532_lvgd_1163850007_building_445591,0.011029992193996103,0.009574033224388618,0.0009390622202814761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026736660898004 47.55376247063167, 10.026660700000004 47.553677596243894)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_35_LVCableDist_mvgd_33532_lvgd_1163850007_building_445560,BranchTee_mvgd_33532_lvgd_1163850007_35,BranchTee_mvgd_33532_lvgd_1163850007_building_445560,0.013782896908408854,0.011963554516498885,0.0011734367119286182,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025350665680419 47.553629957813214, 10.025169700000003 47.55364839624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_36_LVCableDist_mvgd_33532_lvgd_1163850007_37,BranchTee_mvgd_33532_lvgd_1163850007_36,BranchTee_mvgd_33532_lvgd_1163850007_37,0.02715495534818676,0.003394369418523345,0.002166869129052729,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026161199999997 47.55558529624407, 10.025908300000001 47.5557594962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_36_LVCableDist_mvgd_33532_lvgd_1163850007_39,BranchTee_mvgd_33532_lvgd_1163850007_36,BranchTee_mvgd_33532_lvgd_1163850007_39,0.010867197756939503,0.0013583997196174378,0.0008671638394130391,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025908300000001 47.5557594962441, 10.025875200000005 47.5558546962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_36_LVCableDist_mvgd_33532_lvgd_1163850007_building_445844,BranchTee_mvgd_33532_lvgd_1163850007_36,BranchTee_mvgd_33532_lvgd_1163850007_building_445844,0.012925813117301248,0.011219605785817483,0.00110046703128978,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025826849992674 47.55565709630036, 10.025908300000001 47.5557594962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_37_LVCableDist_mvgd_33532_lvgd_1163850007_45,BranchTee_mvgd_33532_lvgd_1163850007_37,BranchTee_mvgd_33532_lvgd_1163850007_45,0.025340998043767642,0.0031676247554709553,0.0020221217695389174,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025914099999996 47.55543049624405, 10.026161199999997 47.55558529624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_37_LVCableDist_mvgd_33532_lvgd_1163850007_56,BranchTee_mvgd_33532_lvgd_1163850007_37,BranchTee_mvgd_33532_lvgd_1163850007_56,0.07001193197082657,0.008751491496353321,0.0055867038670366995,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026161199999997 47.55558529624407, 10.026653800000004 47.55588899624411, 10.026850200000005 47.556008296244116)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_38_LVCableDist_mvgd_33532_lvgd_1163850007_39,BranchTee_mvgd_33532_lvgd_1163850007_38,BranchTee_mvgd_33532_lvgd_1163850007_39,0.012015796554014876,0.0015019745692518595,0.0009588179498005164,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025875200000005 47.5558546962441, 10.025977299999996 47.55593779624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_38_LVCableDist_mvgd_33532_lvgd_1163850007_building_445847,BranchTee_mvgd_33532_lvgd_1163850007_38,BranchTee_mvgd_33532_lvgd_1163850007_building_445847,0.017704323558124374,0.015367352848451957,0.0015072958436111647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025913254772737 47.5560911129919, 10.025977299999996 47.55593779624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_39_LVCableDist_mvgd_33532_lvgd_1163850007_building_445838,BranchTee_mvgd_33532_lvgd_1163850007_39,BranchTee_mvgd_33532_lvgd_1163850007_building_445838,0.020464920889153793,0.017763551331785494,0.0017423252627970364,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0256137524671 47.555904884150294, 10.025875200000005 47.5558546962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_3_LVCableDist_mvgd_33532_lvgd_1163850007_building_34967286,BranchTee_mvgd_33532_lvgd_1163850007_3,BranchTee_mvgd_33532_lvgd_1163850007_building_34967286,0.003127531533349416,0.002714697370947293,0.0002662691554130097,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02519030000001 47.55333209624385, 10.025177600000006 47.55335889624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_40_LVCableDist_mvgd_33532_lvgd_1163850007_41,BranchTee_mvgd_33532_lvgd_1163850007_40,BranchTee_mvgd_33532_lvgd_1163850007_41,0.0764545321851828,0.00955681652314785,0.006100800514824014,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026800099999999 47.55496679624405, 10.027138299999997 47.55492889624404, 10.027802099999999 47.554856496244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_40_LVCableDist_mvgd_33532_lvgd_1163850007_57,BranchTee_mvgd_33532_lvgd_1163850007_40,BranchTee_mvgd_33532_lvgd_1163850007_57,0.03476828740799647,0.004346035925999559,0.0027743860259910502,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.027802099999999 47.554856496244014, 10.027784600000004 47.554543796244026)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_40_LVCableDist_mvgd_33532_lvgd_1163850007_building_445865,BranchTee_mvgd_33532_lvgd_1163850007_40,BranchTee_mvgd_33532_lvgd_1163850007_building_445865,0.026973661889696236,0.023413138520256335,0.002296460992696595,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027468388278614 47.554768369875084, 10.027802099999999 47.554856496244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_40_LVCableDist_mvgd_33532_lvgd_1163850007_building_445872,BranchTee_mvgd_33532_lvgd_1163850007_40,BranchTee_mvgd_33532_lvgd_1163850007_building_445872,0.059124146913523384,0.0513197595209383,0.005033662009578124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028183246324483 47.55532169899763, 10.027802099999999 47.554856496244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_41_LVCableDist_mvgd_33532_lvgd_1163850007_48,BranchTee_mvgd_33532_lvgd_1163850007_41,BranchTee_mvgd_33532_lvgd_1163850007_48,0.03369232681992724,0.004211540852490905,0.0026885281870636765,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026433100000006 47.555140196244054, 10.026800099999999 47.55496679624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_41_LVCableDist_mvgd_33532_lvgd_1163850007_building_445856,BranchTee_mvgd_33532_lvgd_1163850007_41,BranchTee_mvgd_33532_lvgd_1163850007_building_445856,0.01600894203185238,0.013895761683647865,0.0013629558738012333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026871349999887 47.5548310462658, 10.026800099999999 47.55496679624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_42_LVCableDist_mvgd_33532_lvgd_1163850007_45,BranchTee_mvgd_33532_lvgd_1163850007_42,BranchTee_mvgd_33532_lvgd_1163850007_45,0.03884635039820614,0.004855793799775768,0.003099800989356396,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025914099999996 47.55543049624405, 10.026303600000002 47.55520129624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_42_LVCableDist_mvgd_33532_lvgd_1163850007_48,BranchTee_mvgd_33532_lvgd_1163850007_42,BranchTee_mvgd_33532_lvgd_1163850007_48,0.011883224143867997,0.0014854030179834996,0.0009482391416519488,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026433100000006 47.555140196244054, 10.026303600000002 47.55520129624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_42_LVCableDist_mvgd_33532_lvgd_1163850007_building_445843,BranchTee_mvgd_33532_lvgd_1163850007_42,BranchTee_mvgd_33532_lvgd_1163850007_building_445843,0.0211946938083506,0.01839699422564832,0.0018044560572481217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026044433410677 47.55512696000531, 10.026303600000002 47.55520129624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_43_LVCableDist_mvgd_33532_lvgd_1163850007_44,BranchTee_mvgd_33532_lvgd_1163850007_43,BranchTee_mvgd_33532_lvgd_1163850007_44,0.009064727420603417,0.001133090927575427,0.000723333099212586,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025567199999998 47.55510809624401, 10.0254981 47.55517489624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_43_LVCableDist_mvgd_33532_lvgd_1163850007_45,BranchTee_mvgd_33532_lvgd_1163850007_43,BranchTee_mvgd_33532_lvgd_1163850007_45,0.04434124111366404,0.005542655139208005,0.003538273780277013,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025567199999998 47.55510809624401, 10.025817299999996 47.555344696244035, 10.025914099999996 47.55543049624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_43_LVCableDist_mvgd_33532_lvgd_1163850007_building_445825,BranchTee_mvgd_33532_lvgd_1163850007_43,BranchTee_mvgd_33532_lvgd_1163850007_building_445825,0.03282626109611189,0.028493194631425123,0.0027947346730883066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025586098262949 47.55481292776933, 10.025567199999998 47.55510809624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_43_LVCableDist_mvgd_33532_lvgd_1163850007_building_445841,BranchTee_mvgd_33532_lvgd_1163850007_43,BranchTee_mvgd_33532_lvgd_1163850007_building_445841,0.014090473171356805,0.012230530712737706,0.0011996228817200165,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025754058166283 47.555114368932834, 10.025567199999998 47.55510809624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_43_LVStation_mvgd_33532_lvgd_1163850007,BusBar_mvgd_33532_lvgd_1163850007_LV,BranchTee_mvgd_33532_lvgd_1163850007_43,0.046011765398039285,0.005751470674754911,0.003671575693490703,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025241599999998 47.55475769624405, 10.025567199999998 47.55510809624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_44_LVCableDist_mvgd_33532_lvgd_1163850007_46,BranchTee_mvgd_33532_lvgd_1163850007_44,BranchTee_mvgd_33532_lvgd_1163850007_46,0.004964542924768428,0.0006205678655960535,0.0003961529181544455,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025502099999999 47.555219496244014, 10.0254981 47.55517489624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_44_LVCableDist_mvgd_33532_lvgd_1163850007_building_445679,BranchTee_mvgd_33532_lvgd_1163850007_44,BranchTee_mvgd_33532_lvgd_1163850007_building_445679,0.03780431840231848,0.03281414837321244,0.0032185523389973852,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024999215298525 47.55521244679797, 10.0254981 47.55517489624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_44_LVCableDist_mvgd_33532_lvgd_1163850007_building_445832,BranchTee_mvgd_33532_lvgd_1163850007_44,BranchTee_mvgd_33532_lvgd_1163850007_building_445832,0.014375819037468159,0.012478210924522361,0.0012239164186387938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025330741672342 47.55511267888484, 10.0254981 47.55517489624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_46_LVCableDist_mvgd_33532_lvgd_1163850007_47,BranchTee_mvgd_33532_lvgd_1163850007_46,BranchTee_mvgd_33532_lvgd_1163850007_47,0.01484743243163646,0.0018559290539545575,0.0011847724501582587,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025596799999997 47.55533649624408, 10.025534100000005 47.55526599624403, 10.025502099999999 47.555219496244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_46_LVCableDist_mvgd_33532_lvgd_1163850007_building_445833,BranchTee_mvgd_33532_lvgd_1163850007_46,BranchTee_mvgd_33532_lvgd_1163850007_building_445833,0.03871526437028503,0.03360484947340741,0.003296107692454549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025044649990427 47.55537844629749, 10.025502099999999 47.555219496244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_47_LVCableDist_mvgd_33532_lvgd_1163850007_building_445840,BranchTee_mvgd_33532_lvgd_1163850007_47,BranchTee_mvgd_33532_lvgd_1163850007_building_445840,0.008860002538628273,0.00769048220352934,0.0007543154618144348,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025503845635942 47.55538537117826, 10.025596799999997 47.55533649624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_48_LVCableDist_mvgd_33532_lvgd_1163850007_53,BranchTee_mvgd_33532_lvgd_1163850007_48,BranchTee_mvgd_33532_lvgd_1163850007_53,0.047358024335766497,0.005919753041970812,0.0037790023820809754,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026433100000006 47.555140196244054, 10.026415099999992 47.55494469624402, 10.026354800000005 47.55471799624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_49_LVCableDist_mvgd_33532_lvgd_1163850007_52,BranchTee_mvgd_33532_lvgd_1163850007_49,BranchTee_mvgd_33532_lvgd_1163850007_52,0.03028387528592528,0.00378548441074066,0.002416545843060506,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026440099999993 47.55630309624413, 10.026172600000006 47.55609959624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_49_LVCableDist_mvgd_33532_lvgd_1163850007_building_445839,BranchTee_mvgd_33532_lvgd_1163850007_49,BranchTee_mvgd_33532_lvgd_1163850007_building_445839,0.01591829474273622,0.013817079836695037,0.0013552384209614885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026220450010433 47.555960046326994, 10.026172600000006 47.55609959624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_49_LVCableDist_mvgd_33532_lvgd_1163850007_building_445848,BranchTee_mvgd_33532_lvgd_1163850007_49,BranchTee_mvgd_33532_lvgd_1163850007_building_445848,0.03799803066244384,0.03298229061500125,0.0032350444508583596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025787204436398 47.55632031250473, 10.026172600000006 47.55609959624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_4_LVCableDist_mvgd_33532_lvgd_1163850007_building_445563,BranchTee_mvgd_33532_lvgd_1163850007_4,BranchTee_mvgd_33532_lvgd_1163850007_building_445563,0.03064121568303587,0.026596575212875135,0.002608706110154607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02388236403641 47.553446201214335, 10.0241459 47.55365629624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_4_LVCableDist_mvgd_33532_lvgd_1163850007_building_445570,BranchTee_mvgd_33532_lvgd_1163850007_4,BranchTee_mvgd_33532_lvgd_1163850007_building_445570,0.02683104247376914,0.023289344867231613,0.002284318780533594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024067020265546 47.55389179015372, 10.0241459 47.55365629624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_50_LVCableDist_mvgd_33532_lvgd_1163850007_51,BranchTee_mvgd_33532_lvgd_1163850007_50,BranchTee_mvgd_33532_lvgd_1163850007_51,0.01870987323744163,0.002338734154680204,0.00149298152793351,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026737499999998 47.55652169624419, 10.026565799999995 47.556399996244146)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_50_LVCableDist_mvgd_33532_lvgd_1163850007_52,BranchTee_mvgd_33532_lvgd_1163850007_50,BranchTee_mvgd_33532_lvgd_1163850007_52,0.014336569832869043,0.0017920712291086304,0.0011440074266013084,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026440099999993 47.55630309624413, 10.026565799999995 47.556399996244146)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_50_LVCableDist_mvgd_33532_lvgd_1163850007_building_445863,BranchTee_mvgd_33532_lvgd_1163850007_50,BranchTee_mvgd_33532_lvgd_1163850007_building_445863,0.012613308692411295,0.010948351945013004,0.0010738612917821234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026425323176031 47.55646180814449, 10.026565799999995 47.556399996244146)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_51_LVCableDist_mvgd_33532_lvgd_1163850007_building_445864,BranchTee_mvgd_33532_lvgd_1163850007_51,BranchTee_mvgd_33532_lvgd_1163850007_building_445864,0.02828735257919407,0.024553422038740454,0.0024083048883173407,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026410294744784 47.556646705130674, 10.026737499999998 47.55652169624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_51_LVCableDist_mvgd_33532_lvgd_1163850007_building_445871,BranchTee_mvgd_33532_lvgd_1163850007_51,BranchTee_mvgd_33532_lvgd_1163850007_building_445871,0.020973224612795213,0.018204758963906244,0.001785600798709009,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026983299178386 47.55643296656751, 10.026737499999998 47.55652169624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_51_LVCableDist_mvgd_33532_lvgd_1163850007_building_445874,BranchTee_mvgd_33532_lvgd_1163850007_51,BranchTee_mvgd_33532_lvgd_1163850007_building_445874,0.02993106015660067,0.02598016021592938,0.002548245484827746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026568545396062 47.556765530162366, 10.026737499999998 47.55652169624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_52_LVCableDist_mvgd_33532_lvgd_1163850007_55,BranchTee_mvgd_33532_lvgd_1163850007_52,BranchTee_mvgd_33532_lvgd_1163850007_55,0.028919821328096253,0.0036149776660120317,0.002307699174977906,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026440099999993 47.55630309624413, 10.026706900000004 47.55611589624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_52_LVCableDist_mvgd_33532_lvgd_1163850007_building_445849,BranchTee_mvgd_33532_lvgd_1163850007_52,BranchTee_mvgd_33532_lvgd_1163850007_building_445849,0.023653576471759905,0.020531304377487597,0.0020137983462272238,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026135954647396 47.55635619206001, 10.026440099999993 47.55630309624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_52_LVCableDist_mvgd_33532_lvgd_1163850007_building_445850,BranchTee_mvgd_33532_lvgd_1163850007_52,BranchTee_mvgd_33532_lvgd_1163850007_building_445850,0.01292204764990565,0.011216337360118104,0.001100146450086211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026269699999068 47.55628949627043, 10.026440099999993 47.55630309624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_52_LVCableDist_mvgd_33532_lvgd_1163850007_building_445851,BranchTee_mvgd_33532_lvgd_1163850007_52,BranchTee_mvgd_33532_lvgd_1163850007_building_445851,0.03511613724095695,0.03048080712515063,0.0029896882269011796,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026093416690777 47.556514446944874, 10.026440099999993 47.55630309624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_53_LVCableDist_mvgd_33532_lvgd_1163850007_building_445826,BranchTee_mvgd_33532_lvgd_1163850007_53,BranchTee_mvgd_33532_lvgd_1163850007_building_445826,0.03411327411111612,0.029610321928448795,0.0029043073072429247,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025926388482445 47.55461833726029, 10.026354800000005 47.55471799624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_53_LVCableDist_mvgd_33532_lvgd_1163850007_building_445846,BranchTee_mvgd_33532_lvgd_1163850007_53,BranchTee_mvgd_33532_lvgd_1163850007_building_445846,0.023925624662235162,0.02076744220682012,0.002036959756795611,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026423449991892 47.5545077462758, 10.026354800000005 47.55471799624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_54_LVCableDist_mvgd_33532_lvgd_1163850007_57,BranchTee_mvgd_33532_lvgd_1163850007_54,BranchTee_mvgd_33532_lvgd_1163850007_57,0.011604260844605203,0.0014505326055756504,0.0009259788597416855,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.027784600000004 47.554543796244026, 10.027757500000002 47.55446759624401, 10.027741200000001 47.554443996243975)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_54_LVCableDist_mvgd_33532_lvgd_1163850007_building_445595,BranchTee_mvgd_33532_lvgd_1163850007_54,BranchTee_mvgd_33532_lvgd_1163850007_building_445595,0.028340166404708503,0.02459926443928698,0.002412801307478556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027595599993935 47.5542087962739, 10.027741200000001 47.554443996243975)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_54_LVCableDist_mvgd_33532_lvgd_1163850007_building_445858,BranchTee_mvgd_33532_lvgd_1163850007_54,BranchTee_mvgd_33532_lvgd_1163850007_building_445858,0.024199298158839682,0.021004990801872844,0.0020602595413134576,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027427500000003 47.55439689628358, 10.027741200000001 47.554443996243975)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_55_LVCableDist_mvgd_33532_lvgd_1163850007_56,BranchTee_mvgd_33532_lvgd_1163850007_55,BranchTee_mvgd_33532_lvgd_1163850007_56,0.016105897177184397,0.0020132371471480496,0.0012851934735834034,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026850200000005 47.556008296244116, 10.026706900000004 47.55611589624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_55_LVCableDist_mvgd_33532_lvgd_1163850007_building_445853,BranchTee_mvgd_33532_lvgd_1163850007_55,BranchTee_mvgd_33532_lvgd_1163850007_building_445853,0.012819870824727953,0.011127647875863863,0.0010914474052795512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026536766082655 47.556112227491525, 10.026706900000004 47.55611589624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_56_LVCableDist_mvgd_33532_lvgd_1163850007_building_445854,BranchTee_mvgd_33532_lvgd_1163850007_56,BranchTee_mvgd_33532_lvgd_1163850007_building_445854,0.029549094002407357,0.025648613594089587,0.0025157259708951437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027238332054209 47.55596941582956, 10.026850200000005 47.556008296244116)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_57_LVCableDist_mvgd_33532_lvgd_1163850007_building_445859,BranchTee_mvgd_33532_lvgd_1163850007_57,BranchTee_mvgd_33532_lvgd_1163850007_building_445859,0.02418245103851343,0.020990367501429658,0.002058825225319333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027469161515354 47.554584422118985, 10.027784600000004 47.554543796244026)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_58_LVCableDist_mvgd_33532_lvgd_1163850007_59,BranchTee_mvgd_33532_lvgd_1163850007_58,BranchTee_mvgd_33532_lvgd_1163850007_59,0.03642450042355889,0.01635460069017794,0.003089635459415935,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.02475150000001 47.55583709624411, 10.025000100000002 47.55600309624413, 10.025108899999994 47.55594929624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_58_LVCableDist_mvgd_33532_lvgd_1163850007_building_445686,BranchTee_mvgd_33532_lvgd_1163850007_58,BranchTee_mvgd_33532_lvgd_1163850007_building_445686,0.026964801819999773,0.023405447979759804,0.0022957066715171533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024819284130109 47.555598793754825, 10.02475150000001 47.55583709624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_58_LVCableDist_mvgd_33532_lvgd_1163850007_building_445730,BranchTee_mvgd_33532_lvgd_1163850007_58,BranchTee_mvgd_33532_lvgd_1163850007_building_445730,0.020670456685317067,0.017941956402855213,0.0017598239969482234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025002699997069 47.555762146312055, 10.02475150000001 47.55583709624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_59_LVCableDist_mvgd_33532_lvgd_1163850007_60,BranchTee_mvgd_33532_lvgd_1163850007_59,BranchTee_mvgd_33532_lvgd_1163850007_60,0.041833476170418625,0.018783230800517962,0.0035484410180999927,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025511502020063 47.55568989700278, 10.025108899999994 47.55594929624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_59_LVCableDist_mvgd_33532_lvgd_1163850007_building_445836,BranchTee_mvgd_33532_lvgd_1163850007_59,BranchTee_mvgd_33532_lvgd_1163850007_building_445836,0.0243582200108909,0.0211429349694533,0.00207378969660402,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025410175129911 47.556029026950036, 10.025108899999994 47.55594929624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_5_LVCableDist_mvgd_33532_lvgd_1163850007_8,BranchTee_mvgd_33532_lvgd_1163850007_5,BranchTee_mvgd_33532_lvgd_1163850007_8,0.05071959972483211,0.016230271911946276,0.004158782401291089,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0251294 47.553335396243924, 10.025121499999997 47.55334519624386, 10.025010599999998 47.55348369624388, 10.024870900000002 47.55365659624389, 10.024830800000002 47.553702996243906, 10.024803399999994 47.55373479624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_5_LVCableDist_mvgd_33532_lvgd_1163850007_building_34967285,BranchTee_mvgd_33532_lvgd_1163850007_5,BranchTee_mvgd_33532_lvgd_1163850007_building_34967285,0.002358266037721491,0.002046974920742254,0.0002007760751274676,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025159300000004 47.5533290962439, 10.0251294 47.553335396243924)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_60_LVCableDist_mvgd_33532_lvgd_1163850007_building_445835,BranchTee_mvgd_33532_lvgd_1163850007_60,BranchTee_mvgd_33532_lvgd_1163850007_building_445835,0.015752042621532812,0.013672772995490481,0.0013410841873665856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025325337781313 47.55562528154031, 10.025511502020063 47.55568989700278)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_60_LVStation_mvgd_33532_lvgd_1163850007,BusBar_mvgd_33532_lvgd_1163850007_LV,BranchTee_mvgd_33532_lvgd_1163850007_60,0.13218648268244265,0.059351730724416754,0.01121245423827398,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025241599999998 47.55475769624405, 10.025567199999998 47.55510809624401, 10.025817299999996 47.555344696244035, 10.025914099999996 47.55543049624405, 10.025511502020063 47.55568989700278)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_6_LVCableDist_mvgd_33532_lvgd_1163850007_9,BranchTee_mvgd_33532_lvgd_1163850007_6,BranchTee_mvgd_33532_lvgd_1163850007_9,0.04956627025218403,0.01586120648069889,0.00406421449579181,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023440351074065 47.55301059815497, 10.024086099999996 47.552924596243805)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_6_LVCableDist_mvgd_33532_lvgd_1163850007_building_445532,BranchTee_mvgd_33532_lvgd_1163850007_6,BranchTee_mvgd_33532_lvgd_1163850007_building_445532,0.015803494307230104,0.01371743305867573,0.001345464637811004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023465273551556 47.55315182740483, 10.023440351074065 47.55301059815497)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_6_LVCableDist_mvgd_33532_lvgd_1163850007_building_445567,BranchTee_mvgd_33532_lvgd_1163850007_6,BranchTee_mvgd_33532_lvgd_1163850007_building_445567,0.02102804168587013,0.018252340183335273,0.0017902677686801283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023192768507862 47.552923129323695, 10.023440351074065 47.55301059815497)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_6_LVCableDist_mvgd_33532_lvgd_1163850007_building_445575,BranchTee_mvgd_33532_lvgd_1163850007_6,BranchTee_mvgd_33532_lvgd_1163850007_building_445575,0.014843948681914968,0.012884547455902192,0.0012637716475058717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02346224045428 47.552877824480134, 10.023440351074065 47.55301059815497)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_7_LVCableDist_mvgd_33532_lvgd_1163850007_9,BranchTee_mvgd_33532_lvgd_1163850007_7,BranchTee_mvgd_33532_lvgd_1163850007_9,0.0151480531257589,0.004847377000242848,0.001242073224059481,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024086099999996 47.552924596243805, 10.024185800000005 47.55291909624384, 10.024286200000008 47.55292709624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_7_LVCableDist_mvgd_33532_lvgd_1163850007_building_445517,BranchTee_mvgd_33532_lvgd_1163850007_7,BranchTee_mvgd_33532_lvgd_1163850007_building_445517,0.007597240132842894,0.006594404435307632,0.0006468074556791027,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024319050000289 47.55286244625214, 10.024286200000008 47.55292709624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850007_9_LVCableDist_mvgd_33532_lvgd_1163850007_building_445516,BranchTee_mvgd_33532_lvgd_1163850007_9,BranchTee_mvgd_33532_lvgd_1163850007_building_445516,0.024792311618474647,0.021519726484835994,0.0021107470236495494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02376603917016 47.55287247428561, 10.024086099999996 47.552924596243805)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_10_LVCableDist_mvgd_33532_lvgd_1163850008_12,BranchTee_mvgd_33532_lvgd_1163850008_10,BranchTee_mvgd_33532_lvgd_1163850008_12,0.04864766833111677,0.04222617611140936,0.004141724366713682,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016011100000002 47.54128209624278, 10.016351199999999 47.540909896242745)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_10_LVCableDist_mvgd_33532_lvgd_1163850008_building_431775,BranchTee_mvgd_33532_lvgd_1163850008_10,BranchTee_mvgd_33532_lvgd_1163850008_building_431775,0.03567254435120711,0.030963768496847774,0.0030370591485792864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016484600036977 47.541284896340365, 10.016011100000002 47.54128209624278)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_10_LVStation_mvgd_33532_lvgd_1163850008,BusBar_mvgd_33532_lvgd_1163850008_LV,BranchTee_mvgd_33532_lvgd_1163850008_10,0.10990582308999808,0.09539825444211833,0.00935706974561012,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015132399999995 47.54207139624289, 10.015692999999995 47.541586596242816, 10.016011100000002 47.54128209624278)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_11_LVCableDist_mvgd_33532_lvgd_1163850008_3,BranchTee_mvgd_33532_lvgd_1163850008_3,BranchTee_mvgd_33532_lvgd_1163850008_11,0.04140566273823444,0.035940115256787496,0.003525160571224803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017249500000002 47.539676896242696, 10.017046899999995 47.539657696242706, 10.016775799999998 47.53960829624266, 10.016728299999999 47.53957889624267)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_11_LVCableDist_mvgd_33532_lvgd_1163850008_5,BranchTee_mvgd_33532_lvgd_1163850008_5,BranchTee_mvgd_33532_lvgd_1163850008_11,0.03720489110397043,0.03229384547824633,0.003167518800642712,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016728299999999 47.53957889624267, 10.016642800000005 47.53946639624269, 10.016548600000005 47.53938749624266, 10.016427300000002 47.53931939624265)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_11_LVCableDist_mvgd_33532_lvgd_1163850008_building_431760,BranchTee_mvgd_33532_lvgd_1163850008_11,BranchTee_mvgd_33532_lvgd_1163850008_building_431760,0.0236259304250272,0.020507307608923612,0.002011444640297953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016450846092056 47.539678008645794, 10.016728299999999 47.53957889624267)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_12_LVCableDist_mvgd_33532_lvgd_1163850008_7,BranchTee_mvgd_33532_lvgd_1163850008_7,BranchTee_mvgd_33532_lvgd_1163850008_12,0.11123833237928892,0.09655487250522278,0.009470515803389586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016351199999999 47.540909896242745, 10.016750753251829 47.54048894701767, 10.017150300000004 47.540067996242676)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_12_LVCableDist_mvgd_33532_lvgd_1163850008_building_431772,BranchTee_mvgd_33532_lvgd_1163850008_12,BranchTee_mvgd_33532_lvgd_1163850008_building_431772,0.017665672716456828,0.015333803917884527,0.0015040052206847197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016366783226434 47.54106854215541, 10.016351199999999 47.540909896242745)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_13_LVCableDist_mvgd_33532_lvgd_1163850008_21,BranchTee_mvgd_33532_lvgd_1163850008_13,BranchTee_mvgd_33532_lvgd_1163850008_21,0.008021305222024983,0.006962492932717685,0.0006829111534140802,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016676000000002 47.544549596243115, 10.016641500000002 47.5444812962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_13_LVCableDist_mvgd_33532_lvgd_1163850008_building_431816,BranchTee_mvgd_33532_lvgd_1163850008_13,BranchTee_mvgd_33532_lvgd_1163850008_building_431816,0.017780363841333274,0.015433355814277282,0.0015137696974385365,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01644316020117 47.54457582695017, 10.016676000000002 47.544549596243115)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_14_LVCableDist_mvgd_33532_lvgd_1163850008_25,BranchTee_mvgd_33532_lvgd_1163850008_14,BranchTee_mvgd_33532_lvgd_1163850008_25,0.056935685345580155,0.04942017487996357,0.004847342604917794,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015624599999999 47.543714096243065, 10.015751700000003 47.54365489624302, 10.016299300000004 47.54348599624301)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_14_LVCableDist_mvgd_33532_lvgd_1163850008_26,BranchTee_mvgd_33532_lvgd_1163850008_14,BranchTee_mvgd_33532_lvgd_1163850008_26,0.04526129072437243,0.03928680034875527,0.003853417791498536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015469 47.54398379624303, 10.015392700000001 47.54395609624307, 10.015356200000005 47.543926296243036, 10.015339700000004 47.543880796243, 10.015356900000004 47.543849396243075, 10.015418499999994 47.54380519624307, 10.015533600000001 47.543769696243004, 10.015624599999999 47.543714096243065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_14_LVCableDist_mvgd_33532_lvgd_1163850008_building_431811,BranchTee_mvgd_33532_lvgd_1163850008_14,BranchTee_mvgd_33532_lvgd_1163850008_building_431811,0.037792644026897804,0.03280401501534729,0.0032175584158186444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015329439412746 47.543439050248146, 10.015624599999999 47.543714096243065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_15_LVCableDist_mvgd_33532_lvgd_1163850008_24,BranchTee_mvgd_33532_lvgd_1163850008_15,BranchTee_mvgd_33532_lvgd_1163850008_24,0.032660734318499,0.028349517388457132,0.0027806421931873865,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015792099999997 47.54316379624297, 10.0155251 47.54293219624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_15_LVCableDist_mvgd_33532_lvgd_1163850008_building_431784,BranchTee_mvgd_33532_lvgd_1163850008_15,BranchTee_mvgd_33532_lvgd_1163850008_building_431784,0.0434609613319909,0.0377241144361681,0.003700142858324236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015182849993586 47.54324709625693, 10.0155251 47.54293219624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_15_LVStation_mvgd_33532_lvgd_1163850008,BusBar_mvgd_33532_lvgd_1163850008_LV,BranchTee_mvgd_33532_lvgd_1163850008_15,0.11602364581505234,0.10070852456746543,0.009877923803385888,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0155251 47.54293219624298, 10.015257400000003 47.54267329624295, 10.015126199999996 47.54254309624293, 10.014893299999995 47.54230579624292, 10.015023299999996 47.54216629624294, 10.015132399999995 47.54207139624289)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_16_LVCableDist_mvgd_33532_lvgd_1163850008_18,BranchTee_mvgd_33532_lvgd_1163850008_16,BranchTee_mvgd_33532_lvgd_1163850008_18,0.057380359324121374,0.049806151893337355,0.004885200884982363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017876799999996 47.54399749624309, 10.017157700000002 47.543827196243)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_16_LVCableDist_mvgd_33532_lvgd_1163850008_25,BranchTee_mvgd_33532_lvgd_1163850008_16,BranchTee_mvgd_33532_lvgd_1163850008_25,0.07526197048563366,0.06532739038153001,0.006407590491810917,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017157700000002 47.543827196243, 10.016909800000002 47.54375609624301, 10.016738500000006 47.54369069624302, 10.0165348 47.543603696243, 10.016299300000004 47.54348599624301)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_16_LVCableDist_mvgd_33532_lvgd_1163850008_building_431826,BranchTee_mvgd_33532_lvgd_1163850008_16,BranchTee_mvgd_33532_lvgd_1163850008_building_431826,0.03489470212440141,0.030288601443980427,0.0029708358697513606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01748580005081 47.54360549634844, 10.017157700000002 47.543827196243)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_17_LVCableDist_mvgd_33532_lvgd_1163850008_22,BranchTee_mvgd_33532_lvgd_1163850008_17,BranchTee_mvgd_33532_lvgd_1163850008_22,0.03325065273473677,0.028861566573751517,0.0028308661723157407,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016487799999997 47.54435359624312, 10.016136399999995 47.5441724962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_17_LVCableDist_mvgd_33532_lvgd_1163850008_23,BranchTee_mvgd_33532_lvgd_1163850008_17,BranchTee_mvgd_33532_lvgd_1163850008_23,0.03152249549060167,0.027361526085842247,0.002683735770940082,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016136399999995 47.5441724962431, 10.015767800000006 47.54403819624304)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_17_LVCableDist_mvgd_33532_lvgd_1163850008_building_431810,BranchTee_mvgd_33532_lvgd_1163850008_17,BranchTee_mvgd_33532_lvgd_1163850008_building_431810,0.03589809606412828,0.03115954738366335,0.003056261981056297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016164475947944 47.543849961976726, 10.016136399999995 47.5441724962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_17_LVCableDist_mvgd_33532_lvgd_1163850008_building_431835,BranchTee_mvgd_33532_lvgd_1163850008_17,BranchTee_mvgd_33532_lvgd_1163850008_building_431835,0.013230771888365432,0.011484309999101196,0.0011264303552534836,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01609000246908 47.54405764512319, 10.016136399999995 47.5441724962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_17_LVCableDist_mvgd_33532_lvgd_1163850008_building_431861,BranchTee_mvgd_33532_lvgd_1163850008_17,BranchTee_mvgd_33532_lvgd_1163850008_building_431861,0.01625649487275248,0.014110637549549153,0.001384031819851238,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016352198965679 47.54417314561921, 10.016136399999995 47.5441724962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_18_LVCableDist_mvgd_33532_lvgd_1163850008_building_431832,BranchTee_mvgd_33532_lvgd_1163850008_18,BranchTee_mvgd_33532_lvgd_1163850008_building_431832,0.031899145281624575,0.02768845810445013,0.0027158026648059774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018217773927606 47.54382725126184, 10.017876799999996 47.54399749624309)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_19_LVCableDist_mvgd_33532_lvgd_1163850008_24,BranchTee_mvgd_33532_lvgd_1163850008_19,BranchTee_mvgd_33532_lvgd_1163850008_24,0.06417627380921341,0.05570500566639724,0.005463785750045761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015792099999997 47.54316379624297, 10.015845899999993 47.543011596242984, 10.016234799999992 47.542901996242946, 10.0164346 47.54290659624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_19_LVCableDist_mvgd_33532_lvgd_1163850008_building_34999649,BranchTee_mvgd_33532_lvgd_1163850008_19,BranchTee_mvgd_33532_lvgd_1163850008_building_34999649,0.014125132947818296,0.01226061539870628,0.0012025737166858023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016417764738145 47.54303321403075, 10.0164346 47.54290659624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_1_LVCableDist_mvgd_33532_lvgd_1163850008_3,BranchTee_mvgd_33532_lvgd_1163850008_1,BranchTee_mvgd_33532_lvgd_1163850008_3,0.02983457925072517,0.025896414789629448,0.0025400313744192602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017218400000004 47.539944196242686, 10.017244599999996 47.53981119624271, 10.017249500000002 47.539676896242696)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_1_LVCableDist_mvgd_33532_lvgd_1163850008_7,BranchTee_mvgd_33532_lvgd_1163850008_1,BranchTee_mvgd_33532_lvgd_1163850008_7,0.014680614027107169,0.012742772975529022,0.001249865798716948,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017150300000004 47.540067996242676, 10.017218400000004 47.539944196242686)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_1_LVCableDist_mvgd_33532_lvgd_1163850008_8,BranchTee_mvgd_33532_lvgd_1163850008_1,BranchTee_mvgd_33532_lvgd_1163850008_8,0.009770626153101543,0.00848090350089214,0.0008318433710103706,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017218400000004 47.539944196242686, 10.017318999999999 47.539999696242724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_20_LVCableDist_mvgd_33532_lvgd_1163850008_21,BranchTee_mvgd_33532_lvgd_1163850008_20,BranchTee_mvgd_33532_lvgd_1163850008_21,0.00976482286964531,0.00847586625085213,0.0008313492959329378,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016641500000002 47.5444812962431, 10.016564900000004 47.54441039624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_20_LVCableDist_mvgd_33532_lvgd_1163850008_22,BranchTee_mvgd_33532_lvgd_1163850008_20,BranchTee_mvgd_33532_lvgd_1163850008_22,0.008576729130764951,0.0074446008855039774,0.0007301983681070042,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016564900000004 47.54441039624311, 10.016487799999997 47.54435359624312)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_20_LVCableDist_mvgd_33532_lvgd_1163850008_building_431877,BranchTee_mvgd_33532_lvgd_1163850008_20,BranchTee_mvgd_33532_lvgd_1163850008_building_431877,0.015251473286336963,0.013238278812540484,0.0012984671353282618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016722502289078 47.54432422860096, 10.016564900000004 47.54441039624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_21_LVCableDist_mvgd_33532_lvgd_1163850008_building_431814,BranchTee_mvgd_33532_lvgd_1163850008_21,BranchTee_mvgd_33532_lvgd_1163850008_building_431814,0.01290435172057011,0.011200977293454855,0.0010986398689028787,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016751999999846 47.544392546246236, 10.016641500000002 47.5444812962431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_22_LVCableDist_mvgd_33532_lvgd_1163850008_building_431830,BranchTee_mvgd_33532_lvgd_1163850008_22,BranchTee_mvgd_33532_lvgd_1163850008_building_431830,0.03696159178363016,0.03208266166819098,0.0031468049872570535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016788355701491 47.54409064619765, 10.016487799999997 47.54435359624312)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_23_LVCableDist_mvgd_33532_lvgd_1163850008_26,BranchTee_mvgd_33532_lvgd_1163850008_23,BranchTee_mvgd_33532_lvgd_1163850008_26,0.023339849117953577,0.020258989034383706,0.0019870884900236294,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015767800000006 47.54403819624304, 10.015632700000001 47.54400779624306, 10.015469 47.54398379624303)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_23_LVCableDist_mvgd_33532_lvgd_1163850008_building_431838,BranchTee_mvgd_33532_lvgd_1163850008_23,BranchTee_mvgd_33532_lvgd_1163850008_building_431838,0.025436505710250565,0.02207888695649749,0.002165591879699818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015778744980583 47.544267013308236, 10.015767800000006 47.54403819624304)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_24_LVCableDist_mvgd_33532_lvgd_1163850008_25,BranchTee_mvgd_33532_lvgd_1163850008_24,BranchTee_mvgd_33532_lvgd_1163850008_25,0.052386439992266845,0.04547142991328762,0.004460032771243301,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015792099999997 47.54316379624297, 10.016063899999997 47.54334689624297, 10.016299300000004 47.54348599624301)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_24_LVCableDist_mvgd_33532_lvgd_1163850008_building_431762,BranchTee_mvgd_33532_lvgd_1163850008_24,BranchTee_mvgd_33532_lvgd_1163850008_building_431762,0.036872349031010714,0.0320051989589173,0.003139207112667036,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015362349969742 47.54332264629396, 10.015792099999997 47.54316379624297)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_26_LVCableDist_mvgd_33532_lvgd_1163850008_building_431827,BranchTee_mvgd_33532_lvgd_1163850008_26,BranchTee_mvgd_33532_lvgd_1163850008_building_431827,0.018962161999280767,0.016459156615375704,0.0016143846373775524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015492014045597 47.54415374741411, 10.015469 47.54398379624303)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_27_LVCableDist_mvgd_33532_lvgd_1163850008_32,BranchTee_mvgd_33532_lvgd_1163850008_27,BranchTee_mvgd_33532_lvgd_1163850008_32,0.019172862843197608,0.016642044947895524,0.0016323231090304543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018753600000005 47.543071396242965, 10.018703600000004 47.54324059624297)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_27_LVCableDist_mvgd_33532_lvgd_1163850008_building_431788,BranchTee_mvgd_33532_lvgd_1163850008_27,BranchTee_mvgd_33532_lvgd_1163850008_building_431788,0.018969921903679333,0.01646589221239366,0.0016150452936069969,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018953635136464 47.54326086851177, 10.018703600000004 47.54324059624297)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_28_LVCableDist_mvgd_33532_lvgd_1163850008_31,BranchTee_mvgd_33532_lvgd_1163850008_28,BranchTee_mvgd_33532_lvgd_1163850008_31,0.14614122044492814,0.12685057934619762,0.012442048600937328,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0163116 47.5424000962429, 10.017194300000003 47.5425626962429, 10.017517600000003 47.54262479624296, 10.017785400000001 47.542696896242965, 10.018141199999992 47.54282239624296)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_28_LVCableDist_mvgd_33532_lvgd_1163850008_building_34999648,BranchTee_mvgd_33532_lvgd_1163850008_28,BranchTee_mvgd_33532_lvgd_1163850008_building_34999648,0.02654875104249339,0.02304431590488426,0.0022602852895249113,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016089789614517 47.54258577988101, 10.0163116 47.5424000962429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_28_LVStation_mvgd_33532_lvgd_1163850008,BusBar_mvgd_33532_lvgd_1163850008_LV,BranchTee_mvgd_33532_lvgd_1163850008_28,0.09604793852579746,0.0833696106403922,0.008177248797563923,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015132399999995 47.54207139624289, 10.01572199812606 47.54223574784166, 10.0163116 47.5424000962429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_29_LVCableDist_mvgd_33532_lvgd_1163850008_33,BranchTee_mvgd_33532_lvgd_1163850008_29,BranchTee_mvgd_33532_lvgd_1163850008_33,0.11539944749795578,0.10016672042822561,0.009824781330822062,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019151799999996 47.54189559624284, 10.019244999999993 47.541325196242774, 10.018949200000005 47.541265196242804, 10.018756100000001 47.54122179624282, 10.018638099999993 47.54113579624278)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_29_LVCableDist_mvgd_33532_lvgd_1163850008_building_431770,BranchTee_mvgd_33532_lvgd_1163850008_29,BranchTee_mvgd_33532_lvgd_1163850008_building_431770,0.015266207511752403,0.013251068120201086,0.0012997215654483739,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018788221274626 47.54104350183877, 10.018638099999993 47.54113579624278)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_2_LVCableDist_mvgd_33532_lvgd_1163850008_8,BranchTee_mvgd_33532_lvgd_1163850008_2,BranchTee_mvgd_33532_lvgd_1163850008_8,0.21253283973150014,0.18447850488694212,0.018094442575365268,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019305299999996 47.54103709624282, 10.019292500000002 47.54086139624279, 10.019259599999991 47.540785796242766, 10.019179799999996 47.54067939624272, 10.018984000000001 47.540471596242746, 10.018874699999998 47.540461796242745, 10.018554300000003 47.54044889624278, 10.018343900000005 47.54043279624274, 10.018121 47.54040199624273, 10.0179658 47.54037209624272, 10.017809299999998 47.5403284962427, 10.017710499999994 47.540288396242694, 10.017610400000004 47.540247796242745, 10.01751329999999 47.54019689624273, 10.017429599999993 47.540122496242695, 10.017318999999999 47.539999696242724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_2_LVCableDist_mvgd_33532_lvgd_1163850008_building_431781,BranchTee_mvgd_33532_lvgd_1163850008_2,BranchTee_mvgd_33532_lvgd_1163850008_building_431781,0.01303085494010998,0.011310782088015461,0.0011094099938607665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019430938298306 47.540956485097, 10.019305299999996 47.54103709624282)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_30_LVCableDist_mvgd_33532_lvgd_1163850008_32,BranchTee_mvgd_33532_lvgd_1163850008_30,BranchTee_mvgd_33532_lvgd_1163850008_32,0.04927694086074711,0.042772384667128495,0.0041952988433265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018753600000005 47.543071396242965, 10.019204599999997 47.54321309624299, 10.019359 47.54319359624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_30_LVCableDist_mvgd_33532_lvgd_1163850008_building_431793,BranchTee_mvgd_33532_lvgd_1163850008_30,BranchTee_mvgd_33532_lvgd_1163850008_building_431793,0.01717499658915506,0.014907897039386591,0.0014622304482788129,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019528126047184 47.54329725830852, 10.019359 47.54319359624298)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_31_LVCableDist_mvgd_33532_lvgd_1163850008_32,BranchTee_mvgd_33532_lvgd_1163850008_31,BranchTee_mvgd_33532_lvgd_1163850008_32,0.05380237711347298,0.04670046333449455,0.004580581637773103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018141199999992 47.54282239624296, 10.018610600000006 47.543017596242976, 10.018753600000005 47.543071396242965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_31_LVCableDist_mvgd_33532_lvgd_1163850008_building_431787,BranchTee_mvgd_33532_lvgd_1163850008_31,BranchTee_mvgd_33532_lvgd_1163850008_building_431787,0.0516235113485467,0.04480920785053854,0.004395079192538309,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017821772448196 47.54323346318367, 10.018141199999992 47.54282239624296)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_32_LVCableDist_mvgd_33532_lvgd_1163850008_33,BranchTee_mvgd_33532_lvgd_1163850008_32,BranchTee_mvgd_33532_lvgd_1163850008_33,0.13417933164530219,0.1164676598681223,0.011423647349388734,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018753600000005 47.543071396242965, 10.018862 47.54284859624294, 10.018969900000004 47.54250319624291, 10.019151799999996 47.54189559624284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_33_LVCableDist_mvgd_33532_lvgd_1163850008_building_431765,BranchTee_mvgd_33532_lvgd_1163850008_33,BranchTee_mvgd_33532_lvgd_1163850008_building_431765,0.03856482204348577,0.03347426553374565,0.003283299459869822,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019425959060763 47.542188718967125, 10.019151799999996 47.54189559624284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_3_LVCableDist_mvgd_33532_lvgd_1163850008_6,BranchTee_mvgd_33532_lvgd_1163850008_3,BranchTee_mvgd_33532_lvgd_1163850008_6,0.03579053279402125,0.031066182465210444,0.0030471043496209434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017249500000002 47.539676896242696, 10.017246099999996 47.53950519624263, 10.017266100000002 47.53935539624265)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_4_LVCableDist_mvgd_33532_lvgd_1163850008_6,BranchTee_mvgd_33532_lvgd_1163850008_4,BranchTee_mvgd_33532_lvgd_1163850008_6,0.07570588177998604,0.06571270538502788,0.006445383839108976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017266100000002 47.53935539624265, 10.017315800000008 47.53924259624262, 10.017377699999999 47.53915389624263, 10.017465500000002 47.53905659624261, 10.017576099999994 47.53896629624262, 10.0174404 47.53886609624257, 10.0173661 47.53878199624264)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_4_LVCableDist_mvgd_33532_lvgd_1163850008_building_431763,BranchTee_mvgd_33532_lvgd_1163850008_4,BranchTee_mvgd_33532_lvgd_1163850008_building_431763,0.03300493142584324,0.02864828047763193,0.002809946157700895,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017013542250002 47.53895832868212, 10.0173661 47.53878199624264)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_5_LVCableDist_mvgd_33532_lvgd_1163850008_building_431753,BranchTee_mvgd_33532_lvgd_1163850008_5,BranchTee_mvgd_33532_lvgd_1163850008_building_431753,0.01224776568082062,0.010631060610952297,0.0010427399975839675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016359050013525 47.53941944630509, 10.016427300000002 47.53931939624265)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_6_LVCableDist_mvgd_33532_lvgd_1163850008_building_431764,BranchTee_mvgd_33532_lvgd_1163850008_6,BranchTee_mvgd_33532_lvgd_1163850008_building_431764,0.017394553989350085,0.015098472862755874,0.0014809229419886995,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017047416999633 47.53940562302424, 10.017266100000002 47.53935539624265)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_7_LVCableDist_mvgd_33532_lvgd_1163850008_building_431766,BranchTee_mvgd_33532_lvgd_1163850008_7,BranchTee_mvgd_33532_lvgd_1163850008_building_431766,0.023924400394550384,0.020766379542469734,0.0020368555261207327,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016873383799911 47.539962592232285, 10.017150300000004 47.540067996242676)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_8_LVCableDist_mvgd_33532_lvgd_1163850008_9,BranchTee_mvgd_33532_lvgd_1163850008_8,BranchTee_mvgd_33532_lvgd_1163850008_9,0.22460273964397362,0.1949551780109691,0.01912203958640868,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020002999999999 47.54029809624275, 10.019752599999999 47.540343796242716, 10.019646599999996 47.54035989624275, 10.019475100000003 47.54036849624277, 10.019256699999994 47.54037189624275, 10.019168099999995 47.540383996242745, 10.019085900000004 47.540410996242706, 10.018984000000001 47.540471596242746, 10.018874699999998 47.540461796242745, 10.018554300000003 47.54044889624278, 10.018343900000005 47.54043279624274, 10.018121 47.54040199624273, 10.0179658 47.54037209624272, 10.017809299999998 47.5403284962427, 10.017710499999994 47.540288396242694, 10.017610400000004 47.540247796242745, 10.01751329999999 47.54019689624273, 10.017429599999993 47.540122496242695, 10.017318999999999 47.539999696242724)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850008_9_LVCableDist_mvgd_33532_lvgd_1163850008_building_444858,BranchTee_mvgd_33532_lvgd_1163850008_9,BranchTee_mvgd_33532_lvgd_1163850008_building_444858,0.019636248462330773,0.01704426366530311,0.0016717744450510325,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020065674942101 47.54046964384001, 10.020002999999999 47.54029809624275)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_10_LVCableDist_mvgd_33532_lvgd_1163850009_8,BranchTee_mvgd_33532_lvgd_1163850009_8,BranchTee_mvgd_33532_lvgd_1163850009_10,0.017395799913218383,0.015099554324673557,0.001481029016409559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021298199999997 47.56782749624517, 10.0210743 47.56786609624513)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_10_LVCableDist_mvgd_33532_lvgd_1163850009_building_446062,BranchTee_mvgd_33532_lvgd_1163850009_10,BranchTee_mvgd_33532_lvgd_1163850009_building_446062,0.011165957215261025,0.00969205086284657,0.0009506378961753498,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021036349984671 47.567963246275596, 10.0210743 47.56786609624513)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_11_LVCableDist_mvgd_33532_lvgd_1163850009_13,BranchTee_mvgd_33532_lvgd_1163850009_11,BranchTee_mvgd_33532_lvgd_1163850009_13,0.024947747011092033,0.021654644405627883,0.00212398035168228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021420699999995 47.568354696245194, 10.021301800000002 47.56836629624519, 10.0212504 47.56837019624521, 10.0210917 47.568359496245186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_11_LVCableDist_mvgd_33532_lvgd_1163850009_14,BranchTee_mvgd_33532_lvgd_1163850009_11,BranchTee_mvgd_33532_lvgd_1163850009_14,0.01176729307125767,0.010214010385851657,0.0010018339237096619,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0210917 47.568359496245186, 10.0209442 47.56832449624518)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_11_LVCableDist_mvgd_33532_lvgd_1163850009_building_446076,BranchTee_mvgd_33532_lvgd_1163850009_11,BranchTee_mvgd_33532_lvgd_1163850009_building_446076,0.05062494113641114,0.04394244890640487,0.004310063759705511,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020871250096205 47.56878994636112, 10.0210917 47.568359496245186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_12_LVCableDist_mvgd_33532_lvgd_1163850009_8,BranchTee_mvgd_33532_lvgd_1163850009_8,BranchTee_mvgd_33532_lvgd_1163850009_12,0.12376300640195378,0.10742628955689588,0.0105368309910311,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021298199999997 47.56782749624517, 10.0212091 47.56760809624511, 10.021161300000003 47.5675205962451, 10.020990699999997 47.56720129624508, 10.020930699999996 47.56703339624508, 10.020946099999998 47.56675289624504)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_12_LVCableDist_mvgd_33532_lvgd_1163850009_building_446050,BranchTee_mvgd_33532_lvgd_1163850009_12,BranchTee_mvgd_33532_lvgd_1163850009_building_446050,0.018060755780589834,0.015676736017551974,0.0015376414710895293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021148850003577 47.566839746307046, 10.020946099999998 47.56675289624504)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_13_LVCableDist_mvgd_33532_lvgd_1163850009_7,BranchTee_mvgd_33532_lvgd_1163850009_7,BranchTee_mvgd_33532_lvgd_1163850009_13,0.03196342421917552,0.027744252222244352,0.002721275191055523,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021420699999995 47.568354696245194, 10.021365099999999 47.56806949624518)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_13_LVStation_mvgd_33532_lvgd_1163850009,BusBar_mvgd_33532_lvgd_1163850009_LV,BranchTee_mvgd_33532_lvgd_1163850009_13,0.03461291337882283,0.030044008812818216,0.002946845175975766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021420699999995 47.568354696245194, 10.021444200000003 47.56840579624522, 10.021505700000006 47.56844199624519, 10.021708699999998 47.5685909962452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_14_LVCableDist_mvgd_33532_lvgd_1163850009_9,BranchTee_mvgd_33532_lvgd_1163850009_9,BranchTee_mvgd_33532_lvgd_1163850009_14,0.03648882229919203,0.03167229775569868,0.0031065547355860266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0209442 47.56832449624518, 10.020796699999996 47.56828339624515, 10.020617800000002 47.56823949624519, 10.020510999999994 47.568183696245185)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_14_LVCableDist_mvgd_33532_lvgd_1163850009_building_446074,BranchTee_mvgd_33532_lvgd_1163850009_14,BranchTee_mvgd_33532_lvgd_1163850009_building_446074,0.017930976723480332,0.015564087795980928,0.0015265924506213534,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020828350045033 47.56846549630336, 10.0209442 47.56832449624518)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_15_LVCableDist_mvgd_33532_lvgd_1163850009_17,BranchTee_mvgd_33532_lvgd_1163850009_15,BranchTee_mvgd_33532_lvgd_1163850009_17,0.18419363804218358,0.15988007782061534,0.01568172340101627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022017600000003 47.5683248962452, 10.022295200000006 47.56815859624514, 10.022698300000005 47.567929996245226, 10.023234900000002 47.567678496245165, 10.023605399999996 47.56751159624511, 10.023984700000003 47.567343996245114)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_15_LVCableDist_mvgd_33532_lvgd_1163850009_building_446064,BranchTee_mvgd_33532_lvgd_1163850009_15,BranchTee_mvgd_33532_lvgd_1163850009_building_446064,0.04065486342986108,0.03528842145711941,0.0034612396496949884,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024390382668855 47.567585448256516, 10.023984700000003 47.567343996245114)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_16_LVCableDist_mvgd_33532_lvgd_1163850009_17,BranchTee_mvgd_33532_lvgd_1163850009_16,BranchTee_mvgd_33532_lvgd_1163850009_17,0.023630219513960923,0.02051103053811808,0.0020118098011526705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022017600000003 47.5683248962452, 10.021955399999994 47.56821849624518, 10.021951700000004 47.5681202962452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_16_LVCableDist_mvgd_33532_lvgd_1163850009_building_446083,BranchTee_mvgd_33532_lvgd_1163850009_16,BranchTee_mvgd_33532_lvgd_1163850009_building_446083,0.021580237256148608,0.018731645938336993,0.0018372801318019773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021665846899634 47.56810623610618, 10.021951700000004 47.5681202962452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_17_LVCableDist_mvgd_33532_lvgd_1163850009_19,BranchTee_mvgd_33532_lvgd_1163850009_17,BranchTee_mvgd_33532_lvgd_1163850009_19,0.015959287890296558,0.013852661888777412,0.001358728461161634,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021869099999995 47.56842689624522, 10.021932699999995 47.568376096245224, 10.022017600000003 47.5683248962452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_18_LVCableDist_mvgd_33532_lvgd_1163850009_19,BranchTee_mvgd_33532_lvgd_1163850009_18,BranchTee_mvgd_33532_lvgd_1163850009_19,0.015911633827311766,0.013811298162106612,0.0013546713295331738,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022049399999997 47.56849329624525, 10.021994800000003 47.568490096245206, 10.021905399999996 47.56844519624521, 10.021869099999995 47.56842689624522)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_18_LVCableDist_mvgd_33532_lvgd_1163850009_building_446060,BranchTee_mvgd_33532_lvgd_1163850009_18,BranchTee_mvgd_33532_lvgd_1163850009_building_446060,0.02455704938028166,0.021315518862084482,0.002090717464619929,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022193906768402 47.56869143548108, 10.022049399999997 47.56849329624525)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_19_LVStation_mvgd_33532_lvgd_1163850009,BusBar_mvgd_33532_lvgd_1163850009_LV,BranchTee_mvgd_33532_lvgd_1163850009_19,0.021869987051271533,0.01898314876050369,0.001861948606733659,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021869099999995 47.56842689624522, 10.021708699999998 47.5685909962452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_1_LVCableDist_mvgd_33532_lvgd_1163850009_5,BranchTee_mvgd_33532_lvgd_1163850009_1,BranchTee_mvgd_33532_lvgd_1163850009_5,0.0841621548601369,0.07305275041859882,0.0071653269210519895,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021444999999995 47.569708696245335, 10.021478699999992 47.56990839624535, 10.021530499999997 47.570067996245356, 10.021606200000008 47.5704576962454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_1_LVCableDist_mvgd_33532_lvgd_1163850009_6,BranchTee_mvgd_33532_lvgd_1163850009_1,BranchTee_mvgd_33532_lvgd_1163850009_6,0.10807432564915086,0.09380851466346295,0.009201141253278275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021606200000008 47.5704576962454, 10.021641999999996 47.57061269624539, 10.021659099999994 47.57067219624543, 10.021293400000001 47.57071159624544, 10.020803000000003 47.57073929624541, 10.0206883 47.57071709624544, 10.020627599999997 47.570637096245406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_1_LVCableDist_mvgd_33532_lvgd_1163850009_building_446078,BranchTee_mvgd_33532_lvgd_1163850009_1,BranchTee_mvgd_33532_lvgd_1163850009_building_446078,0.03540419256208527,0.030730839143890014,0.003014212439127721,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021193802526138 47.57030460965121, 10.021606200000008 47.5704576962454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_2_LVCableDist_mvgd_33532_lvgd_1163850009_4,BranchTee_mvgd_33532_lvgd_1163850009_2,BranchTee_mvgd_33532_lvgd_1163850009_4,0.04838962892401374,0.042002197906043925,0.004119755624189441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021555500000002 47.56885489624524, 10.021704599999996 47.56890559624529, 10.022129999999997 47.56905009624528)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_2_LVCableDist_mvgd_33532_lvgd_1163850009_building_446067,BranchTee_mvgd_33532_lvgd_1163850009_2,BranchTee_mvgd_33532_lvgd_1163850009_building_446067,0.015858507751815295,0.013765184728575675,0.0013501483262949926,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021919817531863 47.56904091030531, 10.022129999999997 47.56905009624528)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_3_LVCableDist_mvgd_33532_lvgd_1163850009_6,BranchTee_mvgd_33532_lvgd_1163850009_3,BranchTee_mvgd_33532_lvgd_1163850009_6,0.06569184581087847,0.05702052216384251,0.005592817247425671,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019881199999999 47.57034369624539, 10.020370099999994 47.57048659624539, 10.020627599999997 47.570637096245406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_3_LVCableDist_mvgd_33532_lvgd_1163850009_building_446068,BranchTee_mvgd_33532_lvgd_1163850009_3,BranchTee_mvgd_33532_lvgd_1163850009_building_446068,0.016842475887737882,0.014619269070556482,0.0014339205798155933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020037282978434 47.570452282225936, 10.019881199999999 47.57034369624539)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_4_LVCableDist_mvgd_33532_lvgd_1163850009_5,BranchTee_mvgd_33532_lvgd_1163850009_4,BranchTee_mvgd_33532_lvgd_1163850009_5,0.10226371916497676,0.08876490823519982,0.008706442714037187,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021444999999995 47.569708696245335, 10.0214327 47.56956869624533, 10.021291900000005 47.56947489624533, 10.021403600000005 47.569266296245324, 10.021477599999997 47.56903029624529, 10.021555500000002 47.56885489624524)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_4_LVStation_mvgd_33532_lvgd_1163850009,BusBar_mvgd_33532_lvgd_1163850009_LV,BranchTee_mvgd_33532_lvgd_1163850009_4,0.031848677027891424,0.027644651660209758,0.0027115059409669362,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021555500000002 47.56885489624524, 10.021615600000006 47.568694996245235, 10.021708699999998 47.5685909962452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_5_LVCableDist_mvgd_33532_lvgd_1163850009_building_446071,BranchTee_mvgd_33532_lvgd_1163850009_5,BranchTee_mvgd_33532_lvgd_1163850009_building_446071,0.029890795227609797,0.025945210257565302,0.0025448174430891283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021841786329297 47.569717295362764, 10.021444999999995 47.569708696245335)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_6_LVCableDist_mvgd_33532_lvgd_1163850009_building_446070,BranchTee_mvgd_33532_lvgd_1163850009_6,BranchTee_mvgd_33532_lvgd_1163850009_building_446070,0.011133875992236428,0.00966420436126122,0.0009479065919284418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020484746587595 47.57066298994864, 10.020627599999997 47.570637096245406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_7_LVCableDist_mvgd_33532_lvgd_1163850009_8,BranchTee_mvgd_33532_lvgd_1163850009_7,BranchTee_mvgd_33532_lvgd_1163850009_8,0.027355992005269267,0.023745001060573725,0.002329011493267748,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021298199999997 47.56782749624517, 10.021365099999999 47.56806949624518)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_7_LVCableDist_mvgd_33532_lvgd_1163850009_building_446077,BranchTee_mvgd_33532_lvgd_1163850009_7,BranchTee_mvgd_33532_lvgd_1163850009_building_446077,0.01849169862857147,0.016050794409600035,0.0015743307216821397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021127311370163 47.56811110366489, 10.021365099999999 47.56806949624518)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850009_9_LVCableDist_mvgd_33532_lvgd_1163850009_building_446072,BranchTee_mvgd_33532_lvgd_1163850009_9,BranchTee_mvgd_33532_lvgd_1163850009_building_446072,0.018720823503726336,0.01624967480123446,0.0015938377630472062,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020278950018929 47.568244196353255, 10.020510999999994 47.568183696245185)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_10_LVCableDist_mvgd_33532_lvgd_1163850010_11,BranchTee_mvgd_33532_lvgd_1163850010_10,BranchTee_mvgd_33532_lvgd_1163850010_11,0.010094551906053078,0.003230256609936985,0.0008277085198537009,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014889000000002 47.55173109624373, 10.0150086 47.55169009624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_10_LVCableDist_mvgd_33532_lvgd_1163850010_26,BranchTee_mvgd_33532_lvgd_1163850010_10,BranchTee_mvgd_33532_lvgd_1163850010_26,0.5089565609468953,0.1628660995030065,0.041732182433831116,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.013357800000003 47.55497919624397, 10.013374799999996 47.554871696244064, 10.013370200000006 47.554753596244, 10.013352199999996 47.55466749624403, 10.013269999999995 47.554535796244, 10.013142500000006 47.55445009624399, 10.013082199999992 47.554389296243976, 10.0130518 47.55433799624394, 10.013020699999998 47.554154996243916, 10.012930099999993 47.55396869624395, 10.012925599999999 47.55391159624396, 10.012982300000004 47.553870396243944, 10.013107099999994 47.553845696243926, 10.013689700000004 47.55378219624388, 10.013935499999999 47.55375349624393, 10.014039800000006 47.55367829624394, 10.014091599999995 47.553614196243885, 10.014121599999998 47.55352229624391, 10.0141537 47.5534326962439, 10.014171499999996 47.5531270962439, 10.014228999999998 47.55298209624384, 10.014244600000003 47.552844196243804, 10.014313599999998 47.55257959624384, 10.014447600000002 47.552491296243765, 10.014542599999995 47.55240809624379, 10.014575199999994 47.5522783962438, 10.0145636 47.552050996243764, 10.014501099999999 47.55196449624377, 10.0143048 47.551878796243784, 10.014208500000006 47.5518137962437, 10.014185499999995 47.55175669624375, 10.014266300000003 47.55170469624373, 10.014519900000005 47.55169899624372, 10.014708800000003 47.55172579624375, 10.014889000000002 47.55173109624373)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_10_LVCableDist_mvgd_33532_lvgd_1163850010_building_441646,BranchTee_mvgd_33532_lvgd_1163850010_10,BranchTee_mvgd_33532_lvgd_1163850010_building_441646,0.14594439493401912,0.1266797348027286,0.012425291435743424,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01483580000251 47.553044146316225, 10.014889000000002 47.55173109624373)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_11_LVCableDist_mvgd_33532_lvgd_1163850010_12,BranchTee_mvgd_33532_lvgd_1163850010_11,BranchTee_mvgd_33532_lvgd_1163850010_12,0.02049973620407713,0.006559915585304682,0.0016808875192066192,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0150086 47.55169009624374, 10.015103599999996 47.55151719624375)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_11_LVCableDist_mvgd_33532_lvgd_1163850010_building_441620,BranchTee_mvgd_33532_lvgd_1163850010_11,BranchTee_mvgd_33532_lvgd_1163850010_building_441620,0.016763392491744827,0.01455062468283451,0.0014271876440054428,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01487852913017 47.5515676689278, 10.0150086 47.55169009624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_12_LVCableDist_mvgd_33532_lvgd_1163850010_19,BranchTee_mvgd_33532_lvgd_1163850010_12,BranchTee_mvgd_33532_lvgd_1163850010_19,0.03117814056581373,0.009977004981060394,0.002556469352943324,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015103599999996 47.55151719624375, 10.015164099999994 47.55123959624371)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_12_LVCableDist_mvgd_33532_lvgd_1163850010_building_441619,BranchTee_mvgd_33532_lvgd_1163850010_12,BranchTee_mvgd_33532_lvgd_1163850010_building_441619,0.01613171330207784,0.014002327146203565,0.0013734082711898239,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014891071860054 47.551499226390405, 10.015103599999996 47.55151719624375)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_12_LVCableDist_mvgd_33532_lvgd_1163850010_building_441623,BranchTee_mvgd_33532_lvgd_1163850010_12,BranchTee_mvgd_33532_lvgd_1163850010_building_441623,0.015710197071215678,0.013636451057815208,0.0013375215760157726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014943847948409 47.55142628588163, 10.015103599999996 47.55151719624375)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_13_LVCableDist_mvgd_33532_lvgd_1163850010_14,BranchTee_mvgd_33532_lvgd_1163850010_13,BranchTee_mvgd_33532_lvgd_1163850010_14,0.032481772350958595,0.01039416715230675,0.0026633613819663725,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015189399999995 47.55112329624372, 10.015207100000005 47.550831196243635)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_13_LVCableDist_mvgd_33532_lvgd_1163850010_19,BranchTee_mvgd_33532_lvgd_1163850010_13,BranchTee_mvgd_33532_lvgd_1163850010_19,0.013061513465449483,0.004179684308943834,0.0010709862189181088,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015164099999994 47.55123959624371, 10.015189399999995 47.55112329624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_13_LVCableDist_mvgd_33532_lvgd_1163850010_building_441618,BranchTee_mvgd_33532_lvgd_1163850010_13,BranchTee_mvgd_33532_lvgd_1163850010_building_441618,0.017536094287182172,0.015221329841274125,0.0014929732811008024,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014961950003055 47.55115699631253, 10.015189399999995 47.55112329624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_13_LVCableDist_mvgd_33532_lvgd_1163850010_building_441625,BranchTee_mvgd_33532_lvgd_1163850010_13,BranchTee_mvgd_33532_lvgd_1163850010_building_441625,0.021069522854585406,0.01828834583778013,0.0017937993576158705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015467962266829 47.551105982611865, 10.015189399999995 47.55112329624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_14_LVCableDist_mvgd_33532_lvgd_1163850010_20,BranchTee_mvgd_33532_lvgd_1163850010_14,BranchTee_mvgd_33532_lvgd_1163850010_20,0.024586761006373182,0.007867763522039418,0.0020160054403582585,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015207100000005 47.550831196243635, 10.014887899999994 47.5507848962437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_14_LVCableDist_mvgd_33532_lvgd_1163850010_21,BranchTee_mvgd_33532_lvgd_1163850010_14,BranchTee_mvgd_33532_lvgd_1163850010_21,0.049546915699689525,0.01585501302390065,0.004062627508261631,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015207100000005 47.550831196243635, 10.015497799999993 47.550814196243664, 10.015863799999996 47.55081729624368)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_15_LVCableDist_mvgd_33532_lvgd_1163850010_31,BranchTee_mvgd_33532_lvgd_1163850010_15,BranchTee_mvgd_33532_lvgd_1163850010_31,0.01395762304616273,0.004466439374772074,0.0011444632332107511,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015935800000006 47.55166759624374, 10.015959400000002 47.55179219624376)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_15_LVCableDist_mvgd_33532_lvgd_1163850010_9,BranchTee_mvgd_33532_lvgd_1163850010_9,BranchTee_mvgd_33532_lvgd_1163850010_15,0.010256918493855856,0.0032822139180338737,0.0008410218604868147,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015972500000005 47.551578696243745, 10.015935800000006 47.55166759624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_15_LVCableDist_mvgd_33532_lvgd_1163850010_building_441626,BranchTee_mvgd_33532_lvgd_1163850010_15,BranchTee_mvgd_33532_lvgd_1163850010_building_441626,0.023509350153506112,0.020406115933243305,0.0020015193269622643,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015633223621833 47.55171953765845, 10.015935800000006 47.55166759624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_16_LVCableDist_mvgd_33532_lvgd_1163850010_17,BranchTee_mvgd_33532_lvgd_1163850010_16,BranchTee_mvgd_33532_lvgd_1163850010_17,0.048308099640353395,0.015458591884913086,0.003961050081508369,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016543599999999 47.55155789624372, 10.016460399999994 47.55169669624373, 10.016479099999996 47.551854496243756, 10.016573 47.551963996243735)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_16_LVCableDist_mvgd_33532_lvgd_1163850010_22,BranchTee_mvgd_33532_lvgd_1163850010_16,BranchTee_mvgd_33532_lvgd_1163850010_22,0.0983714303375192,0.031478857708006146,0.00806602133094538,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016565099999998 47.550928896243676, 10.016824000000002 47.55101599624367, 10.016964700000006 47.55112579624368, 10.016975900000004 47.55120629624373, 10.016972300000006 47.5512229962437, 10.016905800000004 47.55130569624374, 10.016747500000001 47.5514103962437, 10.016543599999999 47.55155789624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_16_LVCableDist_mvgd_33532_lvgd_1163850010_9,BranchTee_mvgd_33532_lvgd_1163850010_9,BranchTee_mvgd_33532_lvgd_1163850010_16,0.046776243866470016,0.014968398037270405,0.0038354446968384406,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016543599999999 47.55155789624372, 10.016429400000003 47.55152439624373, 10.016262300000005 47.551502296243726, 10.0160863 47.55151279624372, 10.015972500000005 47.551578696243745)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_17_LVCableDist_mvgd_33532_lvgd_1163850010_28,BranchTee_mvgd_33532_lvgd_1163850010_17,BranchTee_mvgd_33532_lvgd_1163850010_28,0.11674995603913339,0.03735998593252269,0.00957297898960624,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016573 47.551963996243735, 10.016971199999995 47.55161529624372, 10.017281700000003 47.5515802962437, 10.017866400000004 47.55158729624378)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_17_LVCableDist_mvgd_33532_lvgd_1163850010_30,BranchTee_mvgd_33532_lvgd_1163850010_17,BranchTee_mvgd_33532_lvgd_1163850010_30,0.03278895286456934,0.01049246491666219,0.002688548822737883,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016573 47.551963996243735, 10.016842800000004 47.55219559624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_18_LVCableDist_mvgd_33532_lvgd_1163850010_25,BranchTee_mvgd_33532_lvgd_1163850010_18,BranchTee_mvgd_33532_lvgd_1163850010_25,0.019402036087090783,0.006208651547869051,0.001590880974336689,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017327899999994 47.552455996243815, 10.017540100000002 47.5525549962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_18_LVCableDist_mvgd_33532_lvgd_1163850010_33,BranchTee_mvgd_33532_lvgd_1163850010_18,BranchTee_mvgd_33532_lvgd_1163850010_33,0.01286354608312824,0.004116334746601037,0.0010547537709079925,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017188199999998 47.55238939624382, 10.017327899999994 47.552455996243815)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_18_LVCableDist_mvgd_33532_lvgd_1163850010_building_441645,BranchTee_mvgd_33532_lvgd_1163850010_18,BranchTee_mvgd_33532_lvgd_1163850010_building_441645,0.017183528614772965,0.014915302837622933,0.0014629568407167524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01725179999868 47.55260179625177, 10.017327899999994 47.552455996243815)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_19_LVCableDist_mvgd_33532_lvgd_1163850010_building_441631,BranchTee_mvgd_33532_lvgd_1163850010_19,BranchTee_mvgd_33532_lvgd_1163850010_building_441631,0.03703487425035597,0.03214627084930898,0.003153044048418737,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015639465753592 47.55132478744489, 10.015164099999994 47.55123959624371)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_1_LVCableDist_mvgd_33532_lvgd_1163850010_4,BranchTee_mvgd_33532_lvgd_1163850010_1,BranchTee_mvgd_33532_lvgd_1163850010_4,0.053499848094978174,0.011020968707565503,0.004302713081429845,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.017878399999995 47.553541596243896, 10.017860799999994 47.553482196243905, 10.017896499999997 47.5533760962439, 10.017542900000008 47.55328949624384, 10.017462000000002 47.55327309624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_1_LVCableDist_mvgd_33532_lvgd_1163850010_5,BranchTee_mvgd_33532_lvgd_1163850010_1,BranchTee_mvgd_33532_lvgd_1163850010_5,0.047018211939842604,0.009685751659607576,0.003781428971907518,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0175105 47.55382809624396, 10.017588100000001 47.5537097962439, 10.017657300000003 47.55366859624389, 10.017732499999992 47.553644196243866, 10.017815099999998 47.55365039624394, 10.017860800000003 47.553597196243935, 10.017878399999995 47.553541596243896)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_1_LVCableDist_mvgd_33532_lvgd_1163850010_building_441658,BranchTee_mvgd_33532_lvgd_1163850010_1,BranchTee_mvgd_33532_lvgd_1163850010_building_441658,0.01192111699164647,0.010347529548749136,0.0010149300555719614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018036675175498 47.55354088295634, 10.017878399999995 47.553541596243896)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_20_LVCableDist_mvgd_33532_lvgd_1163850010_building_441611,BranchTee_mvgd_33532_lvgd_1163850010_20,BranchTee_mvgd_33532_lvgd_1163850010_building_441611,0.03403540218148215,0.029542729093526503,0.0028976775122391274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014655350022581 47.55104754631193, 10.014887899999994 47.5507848962437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_21_LVCableDist_mvgd_33532_lvgd_1163850010_22,BranchTee_mvgd_33532_lvgd_1163850010_21,BranchTee_mvgd_33532_lvgd_1163850010_22,0.05435751756166052,0.017394405619731365,0.004457075541600272,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015863799999996 47.55081729624368, 10.016229799999998 47.55086039624364, 10.016565099999998 47.550928896243676)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_21_LVCableDist_mvgd_33532_lvgd_1163850010_building_441630,BranchTee_mvgd_33532_lvgd_1163850010_21,BranchTee_mvgd_33532_lvgd_1163850010_building_441630,0.036719157165517824,0.03187222841966947,0.003126164792164115,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015934900030912 47.55114424628244, 10.015863799999996 47.55081729624368)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_22_LVCableDist_mvgd_33532_lvgd_1163850010_building_441632,BranchTee_mvgd_33532_lvgd_1163850010_22,BranchTee_mvgd_33532_lvgd_1163850010_building_441632,0.02908089908002123,0.025242220401458428,0.002475865184449642,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016518466754023 47.55118871760275, 10.016565099999998 47.550928896243676)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_23_LVCableDist_mvgd_33532_lvgd_1163850010_24,BranchTee_mvgd_33532_lvgd_1163850010_23,BranchTee_mvgd_33532_lvgd_1163850010_24,0.031279610161708334,0.010009475251746667,0.002564789410119682,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018063299999996 47.55251419624387, 10.018322800000005 47.552294396243774)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_23_LVCableDist_mvgd_33532_lvgd_1163850010_25,BranchTee_mvgd_33532_lvgd_1163850010_23,BranchTee_mvgd_33532_lvgd_1163850010_25,0.05422065416020079,0.01735060933126425,0.004445853349223764,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017540100000002 47.5525549962438, 10.017591800000003 47.552576596243796, 10.017913999999996 47.552688396243845, 10.018063299999996 47.55251419624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_23_LVCableDist_mvgd_33532_lvgd_1163850010_building_441651,BranchTee_mvgd_33532_lvgd_1163850010_23,BranchTee_mvgd_33532_lvgd_1163850010_building_441651,0.021392112877022203,0.018568353977255272,0.0018212637562647692,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01784978116644 47.552387234831976, 10.018063299999996 47.55251419624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_23_LVCableDist_mvgd_33532_lvgd_1163850010_building_441653,BranchTee_mvgd_33532_lvgd_1163850010_23,BranchTee_mvgd_33532_lvgd_1163850010_building_441653,0.013177406286053175,0.011437988656294156,0.0011218869593822441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018148200005365 47.55261789631416, 10.018063299999996 47.55251419624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_24_LVCableDist_mvgd_33532_lvgd_1163850010_building_441655,BranchTee_mvgd_33532_lvgd_1163850010_24,BranchTee_mvgd_33532_lvgd_1163850010_building_441655,0.010950188471501712,0.009504763593263486,0.000932267957918072,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018452489581707 47.55233893661437, 10.018322800000005 47.552294396243774)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_25_LVStation_mvgd_33532_lvgd_1163850010,BusBar_mvgd_33532_lvgd_1163850010_LV,BranchTee_mvgd_33532_lvgd_1163850010_25,0.016794363937006465,0.005374196459842069,0.001377063414558156,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017486399999996 47.55270169624386, 10.0175151 47.55262059624383, 10.017540100000002 47.5525549962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_26_LVCableDist_mvgd_33532_lvgd_1163850010_27,BranchTee_mvgd_33532_lvgd_1163850010_26,BranchTee_mvgd_33532_lvgd_1163850010_27,0.0116383538121933,0.003724273219901856,0.0009542934344265227,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.013300200000005 47.555076396244026, 10.013357800000003 47.55497919624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_26_LVCableDist_mvgd_33532_lvgd_1163850010_building_441699,BranchTee_mvgd_33532_lvgd_1163850010_26,BranchTee_mvgd_33532_lvgd_1163850010_building_441699,0.01669217013227634,0.014488803674815861,0.0014211239745268217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01357844226794 47.55496502133664, 10.013357800000003 47.55497919624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_27_LVCableDist_mvgd_33532_lvgd_1163850010_building_441707,BranchTee_mvgd_33532_lvgd_1163850010_27,BranchTee_mvgd_33532_lvgd_1163850010_building_441707,0.015119168534705732,0.013123438288124576,0.001287203084399174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013403171432884 47.55519320740453, 10.013300200000005 47.555076396244026)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_27_LVCableDist_mvgd_33532_lvgd_1163850010_building_441713,BranchTee_mvgd_33532_lvgd_1163850010_27,BranchTee_mvgd_33532_lvgd_1163850010_building_441713,0.024239897212199928,0.021040230780189538,0.002063716029452275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013545858278052 47.55521734659006, 10.013300200000005 47.555076396244026)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_28_LVCableDist_mvgd_33532_lvgd_1163850010_building_441667,BranchTee_mvgd_33532_lvgd_1163850010_28,BranchTee_mvgd_33532_lvgd_1163850010_building_441667,0.02528290853378947,0.02194556460732926,0.0021525150521717776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01770098259298 47.55138929177925, 10.017866400000004 47.55158729624378)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_29_LVCableDist_mvgd_33532_lvgd_1163850010_31,BranchTee_mvgd_33532_lvgd_1163850010_29,BranchTee_mvgd_33532_lvgd_1163850010_31,0.02233697830788169,0.00714783305852214,0.0018315332295368717,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015959400000002 47.55179219624376, 10.016112199999997 47.55196449624378)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_29_LVCableDist_mvgd_33532_lvgd_1163850010_building_441629,BranchTee_mvgd_33532_lvgd_1163850010_29,BranchTee_mvgd_33532_lvgd_1163850010_building_441629,0.01714318335907119,0.014880283155673791,0.0014595219601900228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015893441494558 47.552007098392195, 10.016112199999997 47.55196449624378)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_29_LVCableDist_mvgd_33532_lvgd_1163850010_building_441636,BranchTee_mvgd_33532_lvgd_1163850010_29,BranchTee_mvgd_33532_lvgd_1163850010_building_441636,0.01421642217261677,0.012339854445831355,0.0012103458221070275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016255107436523 47.551880909564005, 10.016112199999997 47.55196449624378)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_29_LVCableDist_mvgd_33532_lvgd_1163850010_building_441638,BranchTee_mvgd_33532_lvgd_1163850010_29,BranchTee_mvgd_33532_lvgd_1163850010_building_441638,0.0524872198624397,0.04555890684059766,0.004468612883266926,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016180219058828 47.55243464160637, 10.016112199999997 47.55196449624378)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_2_LVCableDist_mvgd_33532_lvgd_1163850010_3,BranchTee_mvgd_33532_lvgd_1163850010_2,BranchTee_mvgd_33532_lvgd_1163850010_3,0.037699378839335246,0.00776607204090306,0.003031963945127785,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.016183199999999 47.55436269624401, 10.016667749202247 47.55444779732085)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_2_LVCableDist_mvgd_33532_lvgd_1163850010_building_441650,BranchTee_mvgd_33532_lvgd_1163850010_2,BranchTee_mvgd_33532_lvgd_1163850010_building_441650,0.032371851093568375,0.02809876674921735,0.0027560474955816085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016395850022526 47.55410949639006, 10.016183199999999 47.55436269624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_2_LVCableDist_mvgd_33532_lvgd_1163850010_building_441708,BranchTee_mvgd_33532_lvgd_1163850010_2,BranchTee_mvgd_33532_lvgd_1163850010_building_441708,0.02390216518636412,0.020747079381764056,0.0020349624836234607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015871084299667 47.554401638230274, 10.016183199999999 47.55436269624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_2_LVCableDist_mvgd_33532_lvgd_1163850010_building_441718,BranchTee_mvgd_33532_lvgd_1163850010_2,BranchTee_mvgd_33532_lvgd_1163850010_building_441718,0.02167678249350248,0.018815447204360153,0.0018454997192098885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016339315157275 47.55452659826779, 10.016183199999999 47.55436269624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_30_LVCableDist_mvgd_33532_lvgd_1163850010_32,BranchTee_mvgd_33532_lvgd_1163850010_30,BranchTee_mvgd_33532_lvgd_1163850010_32,0.04247786085008391,0.013592915472026852,0.0034829963388163447,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016842800000004 47.55219559624381, 10.0169104 47.55210989624374, 10.016880899999997 47.55204289624376, 10.017091399999996 47.551881796243755)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_30_LVCableDist_mvgd_33532_lvgd_1163850010_33,BranchTee_mvgd_33532_lvgd_1163850010_30,BranchTee_mvgd_33532_lvgd_1163850010_33,0.03381264792414668,0.010820047335726937,0.0027724872808715436,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016842800000004 47.55219559624381, 10.016969000000005 47.552275996243814, 10.017188199999998 47.55238939624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_31_LVCableDist_mvgd_33532_lvgd_1163850010_building_441635,BranchTee_mvgd_33532_lvgd_1163850010_31,BranchTee_mvgd_33532_lvgd_1163850010_building_441635,0.01957299896582769,0.016989363102338433,0.0016663895624896288,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016188858642474 47.55170950630483, 10.015959400000002 47.55179219624376)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_32_LVCableDist_mvgd_33532_lvgd_1163850010_building_441640,BranchTee_mvgd_33532_lvgd_1163850010_32,BranchTee_mvgd_33532_lvgd_1163850010_building_441640,0.015840648857619013,0.013749683208413303,0.0013486278707460881,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017100049985027 47.552024246371836, 10.017091399999996 47.551881796243755)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_33_LVCableDist_mvgd_33532_lvgd_1163850010_34,BranchTee_mvgd_33532_lvgd_1163850010_33,BranchTee_mvgd_33532_lvgd_1163850010_34,0.016220991711823275,0.005190717347783448,0.0013300494331305087,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017188199999998 47.55238939624382, 10.0171705 47.5522438962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_33_LVCableDist_mvgd_33532_lvgd_1163850010_building_441644,BranchTee_mvgd_33532_lvgd_1163850010_33,BranchTee_mvgd_33532_lvgd_1163850010_building_441644,0.011844356092313288,0.010280901088127934,0.0010083948505336606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017145250001445 47.552491946251195, 10.017188199999998 47.55238939624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_34_LVCableDist_mvgd_33532_lvgd_1163850010_building_441642,BranchTee_mvgd_33532_lvgd_1163850010_34,BranchTee_mvgd_33532_lvgd_1163850010_building_441642,0.020710088597917356,0.017976356902992263,0.0017631981454685358,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017431479127715 47.552185206128364, 10.0171705 47.5522438962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_35_LVCableDist_mvgd_33532_lvgd_1163850010_39,BranchTee_mvgd_33532_lvgd_1163850010_35,BranchTee_mvgd_33532_lvgd_1163850010_39,0.046773177786618,0.011833613980014354,0.003761722156018903,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0189071 47.55303029624385, 10.019478198173188 47.55319564774409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_35_LVCableDist_mvgd_33532_lvgd_1163850010_building_441673,BranchTee_mvgd_33532_lvgd_1163850010_35,BranchTee_mvgd_33532_lvgd_1163850010_building_441673,0.017125850802978303,0.014865238496985168,0.0014580463155729217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019429100001673 47.55304514632612, 10.019478198173188 47.55319564774409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_35_LVCableDist_mvgd_33532_lvgd_1163850010_building_441675,BranchTee_mvgd_33532_lvgd_1163850010_35,BranchTee_mvgd_33532_lvgd_1163850010_building_441675,0.013660393792751848,0.011857221812108604,0.0011630071444586716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019372990827799 47.55329579748566, 10.019478198173188 47.55319564774409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_35_LVCableDist_mvgd_33532_lvgd_1163850010_building_445481,BranchTee_mvgd_33532_lvgd_1163850010_35,BranchTee_mvgd_33532_lvgd_1163850010_building_445481,0.020229912146702528,0.017559563743337794,0.0017223172856751696,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019717600006544 47.5531130963447, 10.019478198173188 47.55319564774409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_36_LVCableDist_mvgd_33532_lvgd_1163850010_39,BranchTee_mvgd_33532_lvgd_1163850010_36,BranchTee_mvgd_33532_lvgd_1163850010_39,0.04674994735935405,0.011827736681916574,0.0037598538542043193,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0189071 47.55303029624385, 10.018637951973709 47.55340944661108)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_36_LVCableDist_mvgd_33532_lvgd_1163850010_building_441680,BranchTee_mvgd_33532_lvgd_1163850010_36,BranchTee_mvgd_33532_lvgd_1163850010_building_441680,0.01633587304437498,0.014179537802517482,0.0013907898520215856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01848759446724 47.553303482302226, 10.018637951973709 47.55340944661108)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_36_LVCableDist_mvgd_33532_lvgd_1163850010_building_441681,BranchTee_mvgd_33532_lvgd_1163850010_36,BranchTee_mvgd_33532_lvgd_1163850010_building_441681,0.028625043949923087,0.02484653814853324,0.0024370549728857864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019012198493302 47.553454329153055, 10.018637951973709 47.55340944661108)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_36_LVCableDist_mvgd_33532_lvgd_1163850010_building_441683,BranchTee_mvgd_33532_lvgd_1163850010_36,BranchTee_mvgd_33532_lvgd_1163850010_building_441683,0.016335675988196147,0.014179366757754256,0.0013907730752179797,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018421450010656 47.55340064628422, 10.018637951973709 47.55340944661108)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_36_LVCableDist_mvgd_33532_lvgd_1163850010_building_441686,BranchTee_mvgd_33532_lvgd_1163850010_36,BranchTee_mvgd_33532_lvgd_1163850010_building_441686,0.022483378671023048,0.019515572686448004,0.0019141710277666899,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018714555283216 47.553605027370516, 10.018637951973709 47.55340944661108)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_37_LVCableDist_mvgd_33532_lvgd_1163850010_40,BranchTee_mvgd_33532_lvgd_1163850010_37,BranchTee_mvgd_33532_lvgd_1163850010_40,0.03896593061875705,0.009858380446545533,0.003133826083127724,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019240499999993 47.55255419624381, 10.019716300000008 47.55269189624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_37_LVCableDist_mvgd_33532_lvgd_1163850010_43,BranchTee_mvgd_33532_lvgd_1163850010_37,BranchTee_mvgd_33532_lvgd_1163850010_43,0.05472675289668499,0.013845868482861302,0.004401386620289267,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018929000000004 47.552999196243825, 10.019240499999993 47.55255419624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_37_LVCableDist_mvgd_33532_lvgd_1163850010_building_441664,BranchTee_mvgd_33532_lvgd_1163850010_37,BranchTee_mvgd_33532_lvgd_1163850010_building_441664,0.016694917880571317,0.014491188720335904,0.0014213579100155577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019155600014926 47.55241539629727, 10.019240499999993 47.55255419624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_37_LVCableDist_mvgd_33532_lvgd_1163850010_building_441665,BranchTee_mvgd_33532_lvgd_1163850010_37,BranchTee_mvgd_33532_lvgd_1163850010_building_441665,0.022852513898097428,0.019835982063548568,0.0019455981529925136,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018937159578778 47.55255862989664, 10.019240499999993 47.55255419624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_37_LVCableDist_mvgd_33532_lvgd_1163850010_building_441669,BranchTee_mvgd_33532_lvgd_1163850010_37,BranchTee_mvgd_33532_lvgd_1163850010_building_441669,0.018537453124798393,0.016090509312325006,0.0015782261295898717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019340500008843 47.55270664628004, 10.019240499999993 47.55255419624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_38_LVCableDist_mvgd_33532_lvgd_1163850010_39,BranchTee_mvgd_33532_lvgd_1163850010_38,BranchTee_mvgd_33532_lvgd_1163850010_39,0.05051242140796209,0.012779642616214408,0.004062449971463308,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0189071 47.55303029624385, 10.018308500000007 47.552825296243846)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_38_LVCableDist_mvgd_33532_lvgd_1163850010_building_441678,BranchTee_mvgd_33532_lvgd_1163850010_38,BranchTee_mvgd_33532_lvgd_1163850010_building_441678,0.02064192466698442,0.017917190610942477,0.0017573948619122848,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018474427225726 47.552973159720665, 10.018308500000007 47.552825296243846)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_38_LVStation_mvgd_33532_lvgd_1163850010,BusBar_mvgd_33532_lvgd_1163850010_LV,BranchTee_mvgd_33532_lvgd_1163850010_38,0.07000967162784227,0.017712446921844094,0.005630511873696334,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018308500000007 47.552825296243846, 10.018176000000002 47.552902296243865, 10.018020799999995 47.552881996243855, 10.017486399999996 47.55270169624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_39_LVCableDist_mvgd_33532_lvgd_1163850010_43,BranchTee_mvgd_33532_lvgd_1163850010_39,BranchTee_mvgd_33532_lvgd_1163850010_43,0.003828928602793982,0.0009687189365068774,0.00030794070962322957,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0189071 47.55303029624385, 10.018929000000004 47.552999196243825)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_39_LVCableDist_mvgd_33532_lvgd_1163850010_building_441670,BranchTee_mvgd_33532_lvgd_1163850010_39,BranchTee_mvgd_33532_lvgd_1163850010_building_441670,0.023581548578823084,0.02046878416641844,0.002007666095916089,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01910249964521 47.553196129854676, 10.0189071 47.55303029624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_39_LVCableDist_mvgd_33532_lvgd_1163850010_building_441679,BranchTee_mvgd_33532_lvgd_1163850010_39,BranchTee_mvgd_33532_lvgd_1163850010_building_441679,0.01987538994191071,0.017251838469578496,0.0016921342716788312,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01865491189355 47.55308296876386, 10.0189071 47.55303029624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_39_LVCableDist_mvgd_33532_lvgd_1163850010_building_441693,BranchTee_mvgd_33532_lvgd_1163850010_39,BranchTee_mvgd_33532_lvgd_1163850010_building_441693,0.016799535515559873,0.01458199682750597,0.001430264758439841,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018960556189322 47.553177090433316, 10.0189071 47.55303029624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_3_LVCableDist_mvgd_33532_lvgd_1163850010_7,BranchTee_mvgd_33532_lvgd_1163850010_3,BranchTee_mvgd_33532_lvgd_1163850010_7,0.03769937883921835,0.0077660720408789805,0.003031963945118384,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.016667749202247 47.55444779732085, 10.0171523 47.55453289624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_3_LVCableDist_mvgd_33532_lvgd_1163850010_building_441661,BranchTee_mvgd_33532_lvgd_1163850010_3,BranchTee_mvgd_33532_lvgd_1163850010_building_441661,0.022321663319426182,0.019375203761261926,0.0019004030418558009,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016863409934112 47.55429689828939, 10.016667749202247 47.55444779732085)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_3_LVCableDist_mvgd_33532_lvgd_1163850010_building_441733,BranchTee_mvgd_33532_lvgd_1163850010_3,BranchTee_mvgd_33532_lvgd_1163850010_building_441733,0.02602924879636904,0.022593387955248328,0.0022160563432023304,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016791889631083 47.55466643265204, 10.016667749202247 47.55444779732085)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_40_LVCableDist_mvgd_33532_lvgd_1163850010_building_445470,BranchTee_mvgd_33532_lvgd_1163850010_40,BranchTee_mvgd_33532_lvgd_1163850010_building_445470,0.022352876696928838,0.019402296972934233,0.0019030604601988604,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019543380628205 47.552528392144964, 10.019716300000008 47.55269189624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_40_LVCableDist_mvgd_33532_lvgd_1163850010_building_445472,BranchTee_mvgd_33532_lvgd_1163850010_40,BranchTee_mvgd_33532_lvgd_1163850010_building_445472,0.00948974321790203,0.008237097113138962,0.0008079297953587752,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019644785209564 47.55276221554282, 10.019716300000008 47.55269189624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_40_LVCableDist_mvgd_33532_lvgd_1163850010_building_445477,BranchTee_mvgd_33532_lvgd_1163850010_40,BranchTee_mvgd_33532_lvgd_1163850010_building_445477,0.013338090195850956,0.01157746228999863,0.0011355671312667124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019859631085087 47.55262139252277, 10.019716300000008 47.55269189624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_40_LVCableDist_mvgd_33532_lvgd_1163850010_building_445478,BranchTee_mvgd_33532_lvgd_1163850010_40,BranchTee_mvgd_33532_lvgd_1163850010_building_445478,0.02452508706115296,0.021287775569080767,0.002087996283513139,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019561650002483 47.552886146252554, 10.019716300000008 47.55269189624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_41_LVCableDist_mvgd_33532_lvgd_1163850010_42,BranchTee_mvgd_33532_lvgd_1163850010_41,BranchTee_mvgd_33532_lvgd_1163850010_42,0.012743754297828775,0.00322416983735068,0.0010249135329590332,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018576400000002 47.5527515962438, 10.018638099999999 47.55264479624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_41_LVCableDist_mvgd_33532_lvgd_1163850010_building_441656,BranchTee_mvgd_33532_lvgd_1163850010_41,BranchTee_mvgd_33532_lvgd_1163850010_building_441656,0.018273236312263588,0.015861169119044796,0.0015557314603053653,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018550299138868 47.55249147967279, 10.018638099999999 47.55264479624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_41_LVCableDist_mvgd_33532_lvgd_1163850010_building_441666,BranchTee_mvgd_33532_lvgd_1163850010_41,BranchTee_mvgd_33532_lvgd_1163850010_building_441666,0.020734342239914924,0.017997409064246152,0.0017652630316899915,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01886583806825 47.55274963666766, 10.018638099999999 47.55264479624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_42_LVCableDist_mvgd_33532_lvgd_1163850010_43,BranchTee_mvgd_33532_lvgd_1163850010_42,BranchTee_mvgd_33532_lvgd_1163850010_43,0.038237488650926806,0.009674084628684482,0.0030752413039993533,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018929000000004 47.552999196243825, 10.018576400000002 47.5527515962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_42_LVCableDist_mvgd_33532_lvgd_1163850010_building_441663,BranchTee_mvgd_33532_lvgd_1163850010_42,BranchTee_mvgd_33532_lvgd_1163850010_building_441663,0.014803300746148182,0.012849265047656622,0.0012603109976577428,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018393400010918 47.55270299631221, 10.018576400000002 47.5527515962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_43_LVCableDist_mvgd_33532_lvgd_1163850010_building_441692,BranchTee_mvgd_33532_lvgd_1163850010_43,BranchTee_mvgd_33532_lvgd_1163850010_building_441692,0.017144641923394013,0.014881549189506004,0.0014596461382154762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019156018415394 47.55301049808214, 10.018929000000004 47.552999196243825)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_4_LVCableDist_mvgd_33532_lvgd_1163850010_building_441657,BranchTee_mvgd_33532_lvgd_1163850010_4,BranchTee_mvgd_33532_lvgd_1163850010_building_441657,0.024401751011367705,0.02118071987786717,0.0020774958023962865,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017185875934484 47.55338798123624, 10.017462000000002 47.55327309624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_4_LVStation_mvgd_33532_lvgd_1163850010,BusBar_mvgd_33532_lvgd_1163850010_LV,BranchTee_mvgd_33532_lvgd_1163850010_4,0.06909213152949702,0.014232979095076384,0.005556718920548545,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.017462000000002 47.55327309624392, 10.0173399 47.55315219624385, 10.017303200000004 47.55309179624385, 10.017335799999996 47.552990096243825, 10.017381599999995 47.552902496243846, 10.017486399999996 47.55270169624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_5_LVCableDist_mvgd_33532_lvgd_1163850010_6,BranchTee_mvgd_33532_lvgd_1163850010_5,BranchTee_mvgd_33532_lvgd_1163850010_6,0.06862573600688011,0.014136901617417303,0.005519209167012022,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0175105 47.55382809624396, 10.016890799999997 47.553703496243934, 10.016626099999998 47.55370769624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_5_LVCableDist_mvgd_33532_lvgd_1163850010_8,BranchTee_mvgd_33532_lvgd_1163850010_5,BranchTee_mvgd_33532_lvgd_1163850010_8,0.041412608987896025,0.00853099745150658,0.003330599632956436,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.01733140122069 47.554180496421544, 10.0175105 47.55382809624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_5_LVCableDist_mvgd_33532_lvgd_1163850010_building_441672,BranchTee_mvgd_33532_lvgd_1163850010_5,BranchTee_mvgd_33532_lvgd_1163850010_building_441672,0.01639511779143985,0.014230962242969788,0.0013958337815856549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017621245751656 47.5539551331742, 10.0175105 47.55382809624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_6_LVCableDist_mvgd_33532_lvgd_1163850010_building_441647,BranchTee_mvgd_33532_lvgd_1163850010_6,BranchTee_mvgd_33532_lvgd_1163850010_building_441647,0.02735946305712794,0.02374801393358705,0.0023293070087683746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01627024023713 47.55375714026005, 10.016626099999998 47.55370769624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_6_LVCableDist_mvgd_33532_lvgd_1163850010_building_441648,BranchTee_mvgd_33532_lvgd_1163850010_6,BranchTee_mvgd_33532_lvgd_1163850010_building_441648,0.01843957779780263,0.016005553528492686,0.001569893302126091,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01672919702122 47.55385822533983, 10.016626099999998 47.55370769624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_7_LVCableDist_mvgd_33532_lvgd_1163850010_8,BranchTee_mvgd_33532_lvgd_1163850010_7,BranchTee_mvgd_33532_lvgd_1163850010_8,0.04141260898819959,0.008530997451569114,0.00333059963298085,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0171523 47.55453289624399, 10.01733140122069 47.554180496421544)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_7_LVCableDist_mvgd_33532_lvgd_1163850010_building_441732,BranchTee_mvgd_33532_lvgd_1163850010_7,BranchTee_mvgd_33532_lvgd_1163850010_building_441732,0.02186597296159881,0.018979664530667767,0.0018616068585352759,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017397099999279 47.55463869629671, 10.0171523 47.55453289624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_7_LVCableDist_mvgd_33532_lvgd_1163850010_building_441736,BranchTee_mvgd_33532_lvgd_1163850010_7,BranchTee_mvgd_33532_lvgd_1163850010_building_441736,0.0350345641053965,0.030410001643484164,0.0029827433217328504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017291875821668 47.55483368797807, 10.0171523 47.55453289624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_7_LVCableDist_mvgd_33532_lvgd_1163850010_building_441738,BranchTee_mvgd_33532_lvgd_1163850010_7,BranchTee_mvgd_33532_lvgd_1163850010_building_441738,0.026375790703260547,0.022894186330430156,0.002245559937292202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017478775689362 47.554447002914316, 10.0171523 47.55453289624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_8_LVCableDist_mvgd_33532_lvgd_1163850010_building_441660,BranchTee_mvgd_33532_lvgd_1163850010_8,BranchTee_mvgd_33532_lvgd_1163850010_building_441660,0.023421244917008345,0.020329640587963244,0.0019940182972653393,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017115325790956 47.55402889892218, 10.01733140122069 47.554180496421544)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_8_LVCableDist_mvgd_33532_lvgd_1163850010_building_441662,BranchTee_mvgd_33532_lvgd_1163850010_8,BranchTee_mvgd_33532_lvgd_1163850010_building_441662,0.016463412955061027,0.014290242444992971,0.0014016482379204018,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01712215000244 47.55422334625482, 10.01733140122069 47.554180496421544)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_8_LVCableDist_mvgd_33532_lvgd_1163850010_building_441671,BranchTee_mvgd_33532_lvgd_1163850010_8,BranchTee_mvgd_33532_lvgd_1163850010_building_441671,0.011466118746300758,0.009952591071789058,0.0009761927967431569,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017425799293457 47.554261460641136, 10.01733140122069 47.554180496421544)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_9_LVCableDist_mvgd_33532_lvgd_1163850010_building_441616,BranchTee_mvgd_33532_lvgd_1163850010_9,BranchTee_mvgd_33532_lvgd_1163850010_building_441616,0.028960916948211273,0.025138075911047386,0.0024656502463871388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015607563250233 47.55149660535948, 10.015972500000005 47.551578696243745)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850010_9_LVCableDist_mvgd_33532_lvgd_1163850010_building_441634,BranchTee_mvgd_33532_lvgd_1163850010_9,BranchTee_mvgd_33532_lvgd_1163850010_building_441634,0.032453289678973075,0.02816945544134863,0.0027629809455316768,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015604705570382 47.5514265432186, 10.015972500000005 47.551578696243745)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_10_LVCableDist_mvgd_33532_lvgd_1163850011_35,BranchTee_mvgd_33532_lvgd_1163850011_10,BranchTee_mvgd_33532_lvgd_1163850011_35,0.03016676911374123,0.007632192585776532,0.0024261555258948846,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022451000000004 47.55029399624358, 10.0222167 47.55007379624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_10_LVCableDist_mvgd_33532_lvgd_1163850011_36,BranchTee_mvgd_33532_lvgd_1163850011_10,BranchTee_mvgd_33532_lvgd_1163850011_36,0.02545421923374832,0.006439917466138325,0.0020471497765787577,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0222167 47.55007379624358, 10.022018999999997 47.54988799624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_10_LVCableDist_mvgd_33532_lvgd_1163850011_building_445420,BranchTee_mvgd_33532_lvgd_1163850011_10,BranchTee_mvgd_33532_lvgd_1163850011_building_445420,0.005937002509651939,0.005153318178377883,0.0005054595380008676,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02221385000077 47.550127196252106, 10.0222167 47.55007379624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_10_LVCableDist_mvgd_33532_lvgd_1163850011_building_445436,BranchTee_mvgd_33532_lvgd_1163850011_10,BranchTee_mvgd_33532_lvgd_1163850011_building_445436,0.046141259894632594,0.04005061358854109,0.003928335868344824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0216674979392 47.550257762807064, 10.0222167 47.55007379624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_11_LVCableDist_mvgd_33532_lvgd_1163850011_34,BranchTee_mvgd_33532_lvgd_1163850011_11,BranchTee_mvgd_33532_lvgd_1163850011_34,0.030127575285585604,0.007622276547253158,0.0024230033712043303,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023942899999994 47.552382696243804, 10.0243426 47.55237219624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_11_LVCableDist_mvgd_33532_lvgd_1163850011_building_445515,BranchTee_mvgd_33532_lvgd_1163850011_11,BranchTee_mvgd_33532_lvgd_1163850011_building_445515,0.007478006272909535,0.006490909444885476,0.0006366562233597637,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024258899999896 47.55233599624661, 10.0243426 47.55237219624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_12_LVCableDist_mvgd_33532_lvgd_1163850011_26,BranchTee_mvgd_33532_lvgd_1163850011_12,BranchTee_mvgd_33532_lvgd_1163850011_26,0.04586673466271211,0.011604283869666164,0.003688821674509534,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023688299999995 47.55208539624382, 10.0237966 47.55207629624378, 10.02388389999999 47.55204129624372, 10.023911699999998 47.55197899624378, 10.023872500000003 47.55192899624375, 10.023668300000002 47.55187559624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_12_LVCableDist_mvgd_33532_lvgd_1163850011_27,BranchTee_mvgd_33532_lvgd_1163850011_12,BranchTee_mvgd_33532_lvgd_1163850011_27,0.017132761649772586,0.004334588697392464,0.0013778984482465408,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023668300000002 47.55187559624374, 10.023443400000003 47.551852496243754)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_12_LVCableDist_mvgd_33532_lvgd_1163850011_building_445578,BranchTee_mvgd_33532_lvgd_1163850011_12,BranchTee_mvgd_33532_lvgd_1163850011_building_445578,0.020017162073914567,0.017374896680157844,0.0017042043484941211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023843742591964 47.55174027006508, 10.023668300000002 47.55187559624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_13_LVCableDist_mvgd_33532_lvgd_1163850011_14,BranchTee_mvgd_33532_lvgd_1163850011_13,BranchTee_mvgd_33532_lvgd_1163850011_14,0.06641384799744861,0.0168027035433545,0.005341318578314592,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0213424 47.55198869624373, 10.021369999999994 47.55204259624378, 10.0214366 47.55206179624378, 10.021628799999995 47.55206879624378, 10.021796199999997 47.55210859624377, 10.021944299999994 47.55220079624381, 10.022005500000002 47.552296796243816)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_13_LVCableDist_mvgd_33532_lvgd_1163850011_2,BranchTee_mvgd_33532_lvgd_1163850011_2,BranchTee_mvgd_33532_lvgd_1163850011_13,0.07475787966121251,0.018913743554286766,0.006012385421865345,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022298899999996 47.55202879624376, 10.022245099999997 47.552027896243764, 10.022175199999998 47.552015096243764, 10.021925899999994 47.551944296243775, 10.021799499999998 47.551925696243785, 10.0216602 47.551949596243766, 10.0213424 47.55198869624373)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_13_LVCableDist_mvgd_33532_lvgd_1163850011_4,BranchTee_mvgd_33532_lvgd_1163850011_4,BranchTee_mvgd_33532_lvgd_1163850011_13,0.0327479279380488,0.008285225768326347,0.0026337446356598285,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0213424 47.55198869624373, 10.021173500000003 47.55200429624381, 10.021016200000005 47.551980996243714, 10.020913000000002 47.551977696243746)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_13_LVCableDist_mvgd_33532_lvgd_1163850011_building_445489,BranchTee_mvgd_33532_lvgd_1163850011_13,BranchTee_mvgd_33532_lvgd_1163850011_building_445489,0.013035150715390017,0.011314510820958535,0.001109775723972026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021415326019621 47.55188229980278, 10.0213424 47.55198869624373)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_14_LVCableDist_mvgd_33532_lvgd_1163850011_15,BranchTee_mvgd_33532_lvgd_1163850011_14,BranchTee_mvgd_33532_lvgd_1163850011_15,0.029217787733285143,0.007392100296521141,0.0023498339148040853,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022005500000002 47.552296796243816, 10.022068299999997 47.5525562962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_14_LVCableDist_mvgd_33532_lvgd_1163850011_building_445475,BranchTee_mvgd_33532_lvgd_1163850011_14,BranchTee_mvgd_33532_lvgd_1163850011_building_445475,0.020187226470110148,0.017522512576055606,0.0017186831483584745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022223262167406 47.55240272011069, 10.022005500000002 47.552296796243816)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_15_LVCableDist_mvgd_33532_lvgd_1163850011_16,BranchTee_mvgd_33532_lvgd_1163850011_15,BranchTee_mvgd_33532_lvgd_1163850011_16,0.03245308911230556,0.008210631545413306,0.0026100322903427594,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022068299999997 47.5525562962438, 10.022002199999996 47.55272299624384, 10.0221493 47.55278879624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_15_LVCableDist_mvgd_33532_lvgd_1163850011_building_445473,BranchTee_mvgd_33532_lvgd_1163850011_15,BranchTee_mvgd_33532_lvgd_1163850011_building_445473,0.019078001680700386,0.016559705458847936,0.001624246898974602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021815233197156 47.55254897925105, 10.022068299999997 47.5525562962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_16_LVCableDist_mvgd_33532_lvgd_1163850011_17,BranchTee_mvgd_33532_lvgd_1163850011_16,BranchTee_mvgd_33532_lvgd_1163850011_17,0.024937640317360604,0.0063092230002922325,0.0020056040350434484,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0221493 47.55278879624385, 10.022423400000001 47.55291469624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_16_LVCableDist_mvgd_33532_lvgd_1163850011_building_445476,BranchTee_mvgd_33532_lvgd_1163850011_16,BranchTee_mvgd_33532_lvgd_1163850011_building_445476,0.009926336383610833,0.008616059980974203,0.0008451000979609289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022215250024086 47.55271144628236, 10.0221493 47.55278879624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_17_LVCableDist_mvgd_33532_lvgd_1163850011_19,BranchTee_mvgd_33532_lvgd_1163850011_17,BranchTee_mvgd_33532_lvgd_1163850011_19,0.012952250937379435,0.003276919487156997,0.0010416818276434623,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022423400000001 47.55291469624389, 10.0223704 47.55302559624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_17_LVCableDist_mvgd_33532_lvgd_1163850011_9,BranchTee_mvgd_33532_lvgd_1163850011_9,BranchTee_mvgd_33532_lvgd_1163850011_17,0.04712940466713914,0.011923739380786204,0.0037903716216408276,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022423400000001 47.55291469624389, 10.022600500000001 47.552706496243864, 10.022632600000003 47.55266569624384, 10.022630600000001 47.55252809624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_18_LVCableDist_mvgd_33532_lvgd_1163850011_4,BranchTee_mvgd_33532_lvgd_1163850011_4,BranchTee_mvgd_33532_lvgd_1163850011_18,0.03271448815044126,0.008276765502061637,0.0026310552483680407,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020913000000002 47.551977696243746, 10.020866700000001 47.55199769624377, 10.020839800000001 47.55203579624374, 10.020825299999995 47.552071796243816, 10.020802399999999 47.5521903962438, 10.020785399999998 47.55224729624378)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_18_LVCableDist_mvgd_33532_lvgd_1163850011_building_445485,BranchTee_mvgd_33532_lvgd_1163850011_18,BranchTee_mvgd_33532_lvgd_1163850011_building_445485,0.009483956476910638,0.008232074221958433,0.0008074371286598334,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02066915000011 47.55228009625517, 10.020785399999998 47.55224729624378)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_19_LVCableDist_mvgd_33532_lvgd_1163850011_8,BranchTee_mvgd_33532_lvgd_1163850011_8,BranchTee_mvgd_33532_lvgd_1163850011_19,0.01062219436798413,0.002687415175099985,0.0008542875594614226,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0223704 47.55302559624386, 10.0223371 47.55311849624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_19_LVCableDist_mvgd_33532_lvgd_1163850011_building_445527,BranchTee_mvgd_33532_lvgd_1163850011_19,BranchTee_mvgd_33532_lvgd_1163850011_building_445527,0.011575576568214799,0.010047600461210445,0.0009855117249405606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022224600003504 47.55299264631158, 10.0223704 47.55302559624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_1_LVCableDist_mvgd_33532_lvgd_1163850011_38,BranchTee_mvgd_33532_lvgd_1163850011_1,BranchTee_mvgd_33532_lvgd_1163850011_38,0.03628978845427121,0.009181316478930616,0.0029185979598916126,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023082100000003 47.55144219624374, 10.022601300000005 47.551463296243675)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_1_LVCableDist_mvgd_33532_lvgd_1163850011_5,BranchTee_mvgd_33532_lvgd_1163850011_1,BranchTee_mvgd_33532_lvgd_1163850011_5,0.05851601270834109,0.014804551215210297,0.004706136976432419,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023842700000001 47.55154949624373, 10.023082100000003 47.55144219624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_1_LVCableDist_mvgd_33532_lvgd_1163850011_building_445494,BranchTee_mvgd_33532_lvgd_1163850011_1,BranchTee_mvgd_33532_lvgd_1163850011_building_445494,0.016620673425739693,0.014426744533542053,0.0014150369479177128,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023188929538392 47.5513113031654, 10.023082100000003 47.55144219624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_20_LVCableDist_mvgd_33532_lvgd_1163850011_31,BranchTee_mvgd_33532_lvgd_1163850011_20,BranchTee_mvgd_33532_lvgd_1163850011_31,0.037503621059022885,0.00948841612793279,0.003016220170292269,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022333199999997 47.55312949624386, 10.022232 47.553459996243916)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_20_LVCableDist_mvgd_33532_lvgd_1163850011_8,BranchTee_mvgd_33532_lvgd_1163850011_8,BranchTee_mvgd_33532_lvgd_1163850011_20,0.0012569811065327443,0.0003180162199527843,0.00010109241881560163,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0223371 47.55311849624385, 10.022333199999997 47.55312949624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_20_LVCableDist_mvgd_33532_lvgd_1163850011_building_445526,BranchTee_mvgd_33532_lvgd_1163850011_20,BranchTee_mvgd_33532_lvgd_1163850011_building_445526,0.02956830558504429,0.025665289247818444,0.002517361590497484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021968658713384 47.5532282676065, 10.022333199999997 47.55312949624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_21_LVCableDist_mvgd_33532_lvgd_1163850011_23,BranchTee_mvgd_33532_lvgd_1163850011_21,BranchTee_mvgd_33532_lvgd_1163850011_23,0.0361374150439453,0.00914276600611816,0.0029063433631176657,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023234700000001 47.55219169624379, 10.023427899999993 47.552342196243806, 10.0236035 47.55238269624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_21_LVCableDist_mvgd_33532_lvgd_1163850011_26,BranchTee_mvgd_33532_lvgd_1163850011_21,BranchTee_mvgd_33532_lvgd_1163850011_26,0.03616258141291752,0.009149133097468133,0.0029083673626026105,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023234700000001 47.55219169624379, 10.023543000000005 47.55211499624376, 10.023688299999995 47.55208539624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_21_LVCableDist_mvgd_33532_lvgd_1163850011_3,BranchTee_mvgd_33532_lvgd_1163850011_3,BranchTee_mvgd_33532_lvgd_1163850011_21,0.09882942700786444,0.025003845032989705,0.007948334127267727,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022329499999996 47.5520668962438, 10.022392400000003 47.55211259624373, 10.0224603 47.552173996243766, 10.022602900000003 47.552361196243815, 10.022736000000002 47.55238739624383, 10.022854399999993 47.55238269624381, 10.022894800000001 47.552326896243834, 10.022917399999995 47.55228739624377, 10.022936600000005 47.55223549624377, 10.023054399999996 47.55222269624378, 10.023112899999992 47.55220909624381, 10.023234700000001 47.55219169624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_21_LVCableDist_mvgd_33532_lvgd_1163850011_building_445552,BranchTee_mvgd_33532_lvgd_1163850011_21,BranchTee_mvgd_33532_lvgd_1163850011_building_445552,0.014098097448114359,0.012237148584963263,0.0012002719909971643,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023319699984262 47.55207864628737, 10.023234700000001 47.55219169624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_22_LVCableDist_mvgd_33532_lvgd_1163850011_8,BranchTee_mvgd_33532_lvgd_1163850011_8,BranchTee_mvgd_33532_lvgd_1163850011_22,0.03464225517073796,0.008764490558196704,0.002786095471313239,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0223371 47.55311849624385, 10.022384699999998 47.553123296243896, 10.022435199999997 47.55312119624387, 10.022601299999998 47.55310949624386, 10.022794599999996 47.55309659624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_22_LVCableDist_mvgd_33532_lvgd_1163850011_building_445522,BranchTee_mvgd_33532_lvgd_1163850011_22,BranchTee_mvgd_33532_lvgd_1163850011_building_445522,0.013648653582622603,0.01184703130971642,0.001162007616299754,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022720068092642 47.552984625731796, 10.022794599999996 47.55309659624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_22_LVCableDist_mvgd_33532_lvgd_1163850011_building_445530,BranchTee_mvgd_33532_lvgd_1163850011_22,BranchTee_mvgd_33532_lvgd_1163850011_building_445530,0.020174290101183972,0.01751128380782769,0.001717581782635586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02302260670826 47.553191883804246, 10.022794599999996 47.55309659624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_23_LVCableDist_mvgd_33532_lvgd_1163850011_34,BranchTee_mvgd_33532_lvgd_1163850011_23,BranchTee_mvgd_33532_lvgd_1163850011_34,0.02556325421996421,0.006467503317650945,0.0020559188904777687,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0236035 47.55238269624381, 10.023942899999994 47.552382696243804)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_23_LVCableDist_mvgd_33532_lvgd_1163850011_building_445561,BranchTee_mvgd_33532_lvgd_1163850011_23,BranchTee_mvgd_33532_lvgd_1163850011_building_445561,0.011876202907223545,0.010308544123470037,0.001011106197939219,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023571749998592 47.55227799627783, 10.0236035 47.55238269624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_24_LVCableDist_mvgd_33532_lvgd_1163850011_30,BranchTee_mvgd_33532_lvgd_1163850011_24,BranchTee_mvgd_33532_lvgd_1163850011_30,0.1646099050753123,0.04164630598405401,0.013238714073413487,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020265448184043 47.55113504752167, 10.020792099999998 47.551313296243684, 10.021062799999992 47.551400096243704, 10.0212707 47.55145639624372, 10.021415099999995 47.551484696243726, 10.021597199999999 47.551495796243714, 10.021745899999999 47.551495696243684, 10.021902099999993 47.55150089624373, 10.021839000000002 47.55159559624372, 10.021840599999996 47.551655496243725, 10.021862399999998 47.551711696243736, 10.021920299999998 47.55177339624377)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_24_LVCableDist_mvgd_33532_lvgd_1163850011_building_445429,BranchTee_mvgd_33532_lvgd_1163850011_24,BranchTee_mvgd_33532_lvgd_1163850011_building_445429,0.03710753750775549,0.03220934255673177,0.0031592303918563714,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019953438427883 47.551393514060706, 10.020265448184043 47.55113504752167)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_25_LVCableDist_mvgd_33532_lvgd_1163850011_28,BranchTee_mvgd_33532_lvgd_1163850011_25,BranchTee_mvgd_33532_lvgd_1163850011_28,0.0291273817895123,0.007369227592746612,0.002342563037394866,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023096999999998 47.55183399624375, 10.022908099999995 47.55182119624376, 10.022807899999998 47.551786496243714, 10.022778499999998 47.551732896243706)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_25_LVCableDist_mvgd_33532_lvgd_1163850011_38,BranchTee_mvgd_33532_lvgd_1163850011_25,BranchTee_mvgd_33532_lvgd_1163850011_38,0.032856990335295544,0.008312818554829772,0.002642515954084744,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022601300000005 47.551463296243675, 10.022667600000005 47.551586596243716, 10.022778499999998 47.551732896243706)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_25_LVCableDist_mvgd_33532_lvgd_1163850011_building_445537,BranchTee_mvgd_33532_lvgd_1163850011_25,BranchTee_mvgd_33532_lvgd_1163850011_building_445537,0.018106884771156215,0.015716775981363593,0.0015415687623821007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022973956340891 47.55163801581385, 10.022778499999998 47.551732896243706)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_26_LVCableDist_mvgd_33532_lvgd_1163850011_building_445508,BranchTee_mvgd_33532_lvgd_1163850011_26,BranchTee_mvgd_33532_lvgd_1163850011_building_445508,0.00956841408946154,0.008305383429652617,0.0008146276100098468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02369734999351 47.55199949626529, 10.023688299999995 47.55208539624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_27_LVCableDist_mvgd_33532_lvgd_1163850011_28,BranchTee_mvgd_33532_lvgd_1163850011_27,BranchTee_mvgd_33532_lvgd_1163850011_28,0.026171620467967692,0.006621419978395826,0.002104846607224514,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023443400000003 47.551852496243754, 10.023096999999998 47.55183399624375)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_27_LVCableDist_mvgd_33532_lvgd_1163850011_building_445542,BranchTee_mvgd_33532_lvgd_1163850011_27,BranchTee_mvgd_33532_lvgd_1163850011_building_445542,0.018107043073569102,0.01571691338785798,0.0015415822398000994,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023587200001842 47.5517218962653, 10.023443400000003 47.551852496243754)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_28_LVCableDist_mvgd_33532_lvgd_1163850011_building_445539,BranchTee_mvgd_33532_lvgd_1163850011_28,BranchTee_mvgd_33532_lvgd_1163850011_building_445539,0.01751850592353154,0.015206063141625377,0.0014914758577544947,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023271457363778 47.551729717345424, 10.023096999999998 47.55183399624375)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_29_LVCableDist_mvgd_33532_lvgd_1163850011_38,BranchTee_mvgd_33532_lvgd_1163850011_29,BranchTee_mvgd_33532_lvgd_1163850011_38,0.015647754842029515,0.003958881975033467,0.0012584671144164874,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022601300000005 47.551463296243675, 10.022555700000003 47.55132589624369)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_29_LVCableDist_mvgd_33532_lvgd_1163850011_6,BranchTee_mvgd_33532_lvgd_1163850011_6,BranchTee_mvgd_33532_lvgd_1163850011_29,0.061180580505949156,0.015478686868005137,0.004920434233852128,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022555700000003 47.55132589624369, 10.022595000000004 47.550775896243664)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_29_LVCableDist_mvgd_33532_lvgd_1163850011_building_445463,BranchTee_mvgd_33532_lvgd_1163850011_29,BranchTee_mvgd_33532_lvgd_1163850011_building_445463,0.03198054958879253,0.027759117043071917,0.002722733196404289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02232790000062 47.551082996276364, 10.022555700000003 47.55132589624369)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_29_LVCableDist_mvgd_33532_lvgd_1163850011_building_445479,BranchTee_mvgd_33532_lvgd_1163850011_29,BranchTee_mvgd_33532_lvgd_1163850011_building_445479,0.023018608134952035,0.019980151861138367,0.001959738944762207,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022807149999998 47.551208146303644, 10.022555700000003 47.55132589624369)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_29_LVCableDist_mvgd_33532_lvgd_1163850011_building_445484,BranchTee_mvgd_33532_lvgd_1163850011_29,BranchTee_mvgd_33532_lvgd_1163850011_building_445484,0.02026744420532592,0.0175921415702229,0.0017255126585895585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022305019646039 47.551259598498824, 10.022555700000003 47.55132589624369)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_2_LVCableDist_mvgd_33532_lvgd_1163850011_3,BranchTee_mvgd_33532_lvgd_1163850011_2,BranchTee_mvgd_33532_lvgd_1163850011_3,0.0048199610981386936,0.0012194501578290894,0.00038764427203842844,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022298899999996 47.55202879624376, 10.022329499999996 47.5520668962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_2_LVCableDist_mvgd_33532_lvgd_1163850011_30,BranchTee_mvgd_33532_lvgd_1163850011_2,BranchTee_mvgd_33532_lvgd_1163850011_30,0.04384628331760108,0.011093109679353072,0.0035263273358794815,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022298899999996 47.55202879624376, 10.022281500000004 47.55200309624378, 10.0222671 47.55190829624374, 10.021920299999998 47.55177339624377)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_30_LVCableDist_mvgd_33532_lvgd_1163850011_7,BranchTee_mvgd_33532_lvgd_1163850011_7,BranchTee_mvgd_33532_lvgd_1163850011_30,0.1247254008614884,0.031555526417956566,0.010031011918399847,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020433000000006 47.55128029624371, 10.020994399999996 47.551460896243704, 10.021415799999994 47.551599096243756, 10.021675899999998 47.551683796243736, 10.021920299999998 47.55177339624377)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_31_LVCableDist_mvgd_33532_lvgd_1163850011_33,BranchTee_mvgd_33532_lvgd_1163850011_31,BranchTee_mvgd_33532_lvgd_1163850011_33,0.023332052618843573,0.005903009312567424,0.0018764750105735542,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022232 47.553459996243916, 10.022157899999996 47.55366389624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_31_LVCableDist_mvgd_33532_lvgd_1163850011_building_445525,BranchTee_mvgd_33532_lvgd_1163850011_31,BranchTee_mvgd_33532_lvgd_1163850011_building_445525,0.02260422581329787,0.01962046800594255,0.0019244596103643308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022529886301655 47.55348476795522, 10.022232 47.553459996243916)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_32_LVCableDist_mvgd_33532_lvgd_1163850011_35,BranchTee_mvgd_33532_lvgd_1163850011_32,BranchTee_mvgd_33532_lvgd_1163850011_35,0.03760921093500233,0.00951513036655559,0.003024712211986233,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022587499999997 47.550619596243656, 10.022451000000004 47.55029399624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_32_LVCableDist_mvgd_33532_lvgd_1163850011_6,BranchTee_mvgd_33532_lvgd_1163850011_6,BranchTee_mvgd_33532_lvgd_1163850011_32,0.017375241758047846,0.004395936164786105,0.0013973998556526008,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022595000000004 47.550775896243664, 10.022587499999997 47.550619596243656)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_32_LVCableDist_mvgd_33532_lvgd_1163850011_building_445443,BranchTee_mvgd_33532_lvgd_1163850011_32,BranchTee_mvgd_33532_lvgd_1163850011_building_445443,0.022816053006872564,0.019804334009965386,0.001942493976229297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022332699994815 47.55050854627851, 10.022587499999997 47.550619596243656)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_33_LVCableDist_mvgd_33532_lvgd_1163850011_37,BranchTee_mvgd_33532_lvgd_1163850011_33,BranchTee_mvgd_33532_lvgd_1163850011_37,0.021500808730203543,0.0054397046087414965,0.0017291976384779964,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021995099999994 47.55354259624388, 10.022011500000001 47.55363079624392, 10.022157899999996 47.55366389624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_33_LVStation_mvgd_33532_lvgd_1163850011,BusBar_mvgd_33532_lvgd_1163850011_LV,BranchTee_mvgd_33532_lvgd_1163850011_33,0.017381977033290866,0.004397640189422589,0.0013979415386279192,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022112600000002 47.55381729624391, 10.022157899999996 47.55366389624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_34_LVCableDist_mvgd_33532_lvgd_1163850011_building_445509,BranchTee_mvgd_33532_lvgd_1163850011_34,BranchTee_mvgd_33532_lvgd_1163850011_building_445509,0.019171965789628858,0.016641266305397848,0.0016322467364364246,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024108749993141 47.55225179629077, 10.023942899999994 47.552382696243804)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_35_LVCableDist_mvgd_33532_lvgd_1163850011_building_445438,BranchTee_mvgd_33532_lvgd_1163850011_35,BranchTee_mvgd_33532_lvgd_1163850011_building_445438,0.019483542832290507,0.01691171517842816,0.0016587735212540828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022204449991955 47.550347046296366, 10.022451000000004 47.55029399624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_36_LVCableDist_mvgd_33532_lvgd_1163850011_building_445452,BranchTee_mvgd_33532_lvgd_1163850011_36,BranchTee_mvgd_33532_lvgd_1163850011_building_445452,0.019128414881490353,0.016603464117133628,0.0016285389357623607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022007824422916 47.54971600117863, 10.022018999999997 47.54988799624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_36_LVCableDist_mvgd_33532_lvgd_1163850011_building_445454,BranchTee_mvgd_33532_lvgd_1163850011_36,BranchTee_mvgd_33532_lvgd_1163850011_building_445454,0.023756974605400168,0.020621053957487347,0.0020226013697689847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021748039363485 47.54999743552938, 10.022018999999997 47.54988799624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_36_LVCableDist_mvgd_33532_lvgd_1163850011_building_445455,BranchTee_mvgd_33532_lvgd_1163850011_36,BranchTee_mvgd_33532_lvgd_1163850011_building_445455,0.018753353586105567,0.016277910912739633,0.0015966072819052167,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02226614623613 47.549867581636505, 10.022018999999997 47.54988799624358)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_37_LVCableDist_mvgd_33532_lvgd_1163850011_building_445528,BranchTee_mvgd_33532_lvgd_1163850011_37,BranchTee_mvgd_33532_lvgd_1163850011_building_445528,0.020103277027553275,0.01744964445991624,0.0017115359311590135,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021783674691171 47.55343215812249, 10.021995099999994 47.55354259624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_39_LVCableDist_mvgd_33532_lvgd_1163850011_43,BranchTee_mvgd_33532_lvgd_1163850011_39,BranchTee_mvgd_33532_lvgd_1163850011_43,0.017621166607779605,0.005638773314489474,0.0014448575693860053,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.02257179999999 47.55423579624397, 10.022803000000005 47.55421149624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_39_LVCableDist_mvgd_33532_lvgd_1163850011_building_445545,BranchTee_mvgd_33532_lvgd_1163850011_39,BranchTee_mvgd_33532_lvgd_1163850011_building_445545,0.02535539855796675,0.02200848594831514,0.0021586866470246937,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022498225784561 47.55401310696151, 10.02257179999999 47.55423579624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_3_LVCableDist_mvgd_33532_lvgd_1163850011_building_445462,BranchTee_mvgd_33532_lvgd_1163850011_3,BranchTee_mvgd_33532_lvgd_1163850011_building_445462,0.014523421154712253,0.012606329562290236,0.001236482843845598,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022198550003996 47.552162846290706, 10.022329499999996 47.5520668962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_40_LVCableDist_mvgd_33532_lvgd_1163850011_43,BranchTee_mvgd_33532_lvgd_1163850011_40,BranchTee_mvgd_33532_lvgd_1163850011_43,0.020492262787701096,0.006557524092064351,0.0016802747321840322,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023045000000003 47.55412719624392, 10.022803000000005 47.55421149624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_40_LVCableDist_mvgd_33532_lvgd_1163850011_44,BranchTee_mvgd_33532_lvgd_1163850011_40,BranchTee_mvgd_33532_lvgd_1163850011_44,0.025244936402301424,0.008078379648736455,0.0020699729059612854,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023045000000003 47.55412719624392, 10.022946599999994 47.55390999624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_41_LVCableDist_mvgd_33532_lvgd_1163850011_42,BranchTee_mvgd_33532_lvgd_1163850011_41,BranchTee_mvgd_33532_lvgd_1163850011_42,0.03132503942627966,0.010024012616409492,0.002568514408483783,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0234022 47.55341249624388, 10.023118400000007 47.5536185962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_41_LVCableDist_mvgd_33532_lvgd_1163850011_44,BranchTee_mvgd_33532_lvgd_1163850011_41,BranchTee_mvgd_33532_lvgd_1163850011_44,0.03486647522503299,0.011157272072010558,0.0028588964492542424,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023118400000007 47.5536185962439, 10.022946599999994 47.55390999624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_41_LVCableDist_mvgd_33532_lvgd_1163850011_building_445535,BranchTee_mvgd_33532_lvgd_1163850011_41,BranchTee_mvgd_33532_lvgd_1163850011_building_445535,0.016965676534860905,0.014726207232259265,0.0014444095331342035,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022928850003584 47.55370109633069, 10.023118400000007 47.5536185962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_41_LVCableDist_mvgd_33532_lvgd_1163850011_building_445546,BranchTee_mvgd_33532_lvgd_1163850011_41,BranchTee_mvgd_33532_lvgd_1163850011_building_445546,0.011232509077180163,0.009749817878992382,0.0009563039327525715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023237724687553 47.55367923890434, 10.023118400000007 47.5536185962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_42_LVCableDist_mvgd_33532_lvgd_1163850011_building_445534,BranchTee_mvgd_33532_lvgd_1163850011_42,BranchTee_mvgd_33532_lvgd_1163850011_building_445534,0.013663504257876892,0.011859921695837142,0.0011632719606285344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023228654183624 47.553376677222516, 10.0234022 47.55341249624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_43_LVCableDist_mvgd_33532_lvgd_1163850011_building_445666,BranchTee_mvgd_33532_lvgd_1163850011_43,BranchTee_mvgd_33532_lvgd_1163850011_building_445666,0.020146007609925173,0.01748673460541505,0.0017151738916262856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02300110937446 47.55433332534862, 10.022803000000005 47.55421149624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_44_LVStation_mvgd_33532_lvgd_1163850011,BusBar_mvgd_33532_lvgd_1163850011_LV,BranchTee_mvgd_33532_lvgd_1163850011_44,0.0636531185066195,0.020368997922118243,0.005219273623388233,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022112600000002 47.55381729624391, 10.022946599999994 47.55390999624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_45_LVCableDist_mvgd_33532_lvgd_1163850011_building_445547,BranchTee_mvgd_33532_lvgd_1163850011_45,BranchTee_mvgd_33532_lvgd_1163850011_building_445547,0.01810387045487684,0.015714159554833095,0.0015413121320519828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02319184065108 47.553877913368396, 10.023351199999999 47.553999896243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_45_LVCableDist_mvgd_33532_lvgd_1163850011_building_445551,BranchTee_mvgd_33532_lvgd_1163850011_45,BranchTee_mvgd_33532_lvgd_1163850011_building_445551,0.03667572969484502,0.03183453337512548,0.003122467500605431,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02362846266811 47.553728534357745, 10.023351199999999 47.553999896243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_45_LVCableDist_mvgd_33532_lvgd_1163850011_building_445553,BranchTee_mvgd_33532_lvgd_1163850011_45,BranchTee_mvgd_33532_lvgd_1163850011_building_445553,0.019420817726892428,0.016857269786942627,0.0016534332838625666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023552003817013 47.55410955011073, 10.023351199999999 47.553999896243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_45_LVCableDist_mvgd_33532_lvgd_1163850011_building_445571,BranchTee_mvgd_33532_lvgd_1163850011_45,BranchTee_mvgd_33532_lvgd_1163850011_building_445571,0.026948768498642396,0.0233915310568216,0.002294341640056792,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023704847842493 47.55403676661231, 10.023351199999999 47.553999896243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_45_LVStation_mvgd_33532_lvgd_1163850011,BusBar_mvgd_33532_lvgd_1163850011_LV,BranchTee_mvgd_33532_lvgd_1163850011_45,0.11595166309530949,0.037104532190499036,0.009507522506040495,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023351199999999 47.553999896243965, 10.023045000000003 47.55412719624392, 10.022946599999994 47.55390999624394, 10.022112600000002 47.55381729624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_46_LVCableDist_mvgd_33532_lvgd_1163850011_47,BranchTee_mvgd_33532_lvgd_1163850011_46,BranchTee_mvgd_33532_lvgd_1163850011_47,0.012959464403441536,0.0032787444940707085,0.0010422619690063453,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021196799999995 47.55362669624393, 10.021334099999995 47.553696996243914)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_46_LVCableDist_mvgd_33532_lvgd_1163850011_50,BranchTee_mvgd_33532_lvgd_1163850011_46,BranchTee_mvgd_33532_lvgd_1163850011_50,0.023646638066367805,0.005982599430791055,0.001901775473443785,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021196799999995 47.55362669624393, 10.021008300000007 47.55379689624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_46_LVCableDist_mvgd_33532_lvgd_1163850011_building_445520,BranchTee_mvgd_33532_lvgd_1163850011_46,BranchTee_mvgd_33532_lvgd_1163850011_building_445520,0.013513942138179533,0.011730101775939835,0.0011505386663774781,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021256500012855 47.55351199630807, 10.021196799999995 47.55362669624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_47_LVCableDist_mvgd_33532_lvgd_1163850011_48,BranchTee_mvgd_33532_lvgd_1163850011_47,BranchTee_mvgd_33532_lvgd_1163850011_48,0.012118225474352092,0.0030659110450110792,0.000974605519994092,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021334099999995 47.553696996243914, 10.021399999999995 47.55359749624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_47_LVCableDist_mvgd_33532_lvgd_1163850011_49,BranchTee_mvgd_33532_lvgd_1163850011_47,BranchTee_mvgd_33532_lvgd_1163850011_49,0.03221296651703918,0.008149880528810912,0.002590720485382765,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021334099999995 47.553696996243914, 10.021746599999998 47.55377359624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_47_LVCableDist_mvgd_33532_lvgd_1163850011_building_445501,BranchTee_mvgd_33532_lvgd_1163850011_47,BranchTee_mvgd_33532_lvgd_1163850011_building_445501,0.03050958947574128,0.026482323664943432,0.002597499828563894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021404433567723 47.55396742073349, 10.021334099999995 47.553696996243914)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_48_LVCableDist_mvgd_33532_lvgd_1163850011_building_445518,BranchTee_mvgd_33532_lvgd_1163850011_48,BranchTee_mvgd_33532_lvgd_1163850011_building_445518,0.03010013867108801,0.026126920366504394,0.0025626403495224645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021425700063354 47.55332714636157, 10.021399999999995 47.55359749624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_48_LVCableDist_mvgd_33532_lvgd_1163850011_building_445521,BranchTee_mvgd_33532_lvgd_1163850011_48,BranchTee_mvgd_33532_lvgd_1163850011_building_445521,0.008834137629353051,0.007668031462278449,0.0007521133968714886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02151294872901 47.55357605815948, 10.021399999999995 47.55359749624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_49_LVCableDist_mvgd_33532_lvgd_1163850011_building_445512,BranchTee_mvgd_33532_lvgd_1163850011_49,BranchTee_mvgd_33532_lvgd_1163850011_building_445512,0.018807280775387524,0.01632471971303637,0.0016011984896966618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021566352760862 47.553890744982255, 10.021746599999998 47.55377359624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_49_LVCableDist_mvgd_33532_lvgd_1163850011_building_445523,BranchTee_mvgd_33532_lvgd_1163850011_49,BranchTee_mvgd_33532_lvgd_1163850011_building_445523,0.014195858762352156,0.012322005405721672,0.0012085951117384239,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021758354243039 47.55364607780043, 10.021746599999998 47.55377359624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_49_LVCableDist_mvgd_33532_lvgd_1163850011_building_445524,BranchTee_mvgd_33532_lvgd_1163850011_49,BranchTee_mvgd_33532_lvgd_1163850011_building_445524,0.01587717480988753,0.013781387734982376,0.0013517375866218472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021800476081063 47.553911749625705, 10.021746599999998 47.55377359624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_49_LVStation_mvgd_33532_lvgd_1163850011,BusBar_mvgd_33532_lvgd_1163850011_LV,BranchTee_mvgd_33532_lvgd_1163850011_49,0.027990367741780996,0.007081563038670592,0.002251118941922711,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021746599999998 47.55377359624393, 10.022112600000002 47.55381729624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_4_LVCableDist_mvgd_33532_lvgd_1163850011_building_445469,BranchTee_mvgd_33532_lvgd_1163850011_4,BranchTee_mvgd_33532_lvgd_1163850011_building_445469,0.017887131408724676,0.015526030062773019,0.0015228595850037513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020776000002645 47.55184619629183, 10.020913000000002 47.551977696243746)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_50_LVCableDist_mvgd_33532_lvgd_1163850011_building_445529,BranchTee_mvgd_33532_lvgd_1163850011_50,BranchTee_mvgd_33532_lvgd_1163850011_building_445529,0.01522416149545434,0.013214572178054367,0.0012961418869930853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021190854960464 47.55385572671068, 10.021008300000007 47.55379689624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_51_LVCableDist_mvgd_33532_lvgd_1163850011_52,BranchTee_mvgd_33532_lvgd_1163850011_51,BranchTee_mvgd_33532_lvgd_1163850011_52,0.0321961126777023,0.010302756056864737,0.00263993855472913,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020554499999994 47.55304019624387, 10.0201424 47.5529631962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_51_LVCableDist_mvgd_33532_lvgd_1163850011_56,BranchTee_mvgd_33532_lvgd_1163850011_51,BranchTee_mvgd_33532_lvgd_1163850011_56,0.04706438959524689,0.015060604670479006,0.003859071369610816,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020420899999996 47.55345399624389, 10.020554499999994 47.55304019624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_51_LVCableDist_mvgd_33532_lvgd_1163850011_building_445488,BranchTee_mvgd_33532_lvgd_1163850011_51,BranchTee_mvgd_33532_lvgd_1163850011_building_445488,0.016463584661870787,0.014290391486503844,0.0014016628565506942,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020468020739207 47.5529041090301, 10.020554499999994 47.55304019624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_51_LVCableDist_mvgd_33532_lvgd_1163850011_building_445499,BranchTee_mvgd_33532_lvgd_1163850011_51,BranchTee_mvgd_33532_lvgd_1163850011_building_445499,0.012204408098825994,0.010593426229780963,0.0010390486561489235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020665300004842 47.553120346266425, 10.020554499999994 47.55304019624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_52_LVCableDist_mvgd_33532_lvgd_1163850011_building_445483,BranchTee_mvgd_33532_lvgd_1163850011_52,BranchTee_mvgd_33532_lvgd_1163850011_building_445483,0.01785381512463307,0.015497111528181505,0.0015200231311640448,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020155350011272 47.55280274628679, 10.0201424 47.5529631962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_53_LVCableDist_mvgd_33532_lvgd_1163850011_56,BranchTee_mvgd_33532_lvgd_1163850011_53,BranchTee_mvgd_33532_lvgd_1163850011_56,0.029834570385049212,0.009547062523215749,0.002446302552476102,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020420899999996 47.55345399624389, 10.0200493 47.55336099624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_53_LVCableDist_mvgd_33532_lvgd_1163850011_building_445482,BranchTee_mvgd_33532_lvgd_1163850011_53,BranchTee_mvgd_33532_lvgd_1163850011_building_445482,0.01868456684988793,0.016218204025702725,0.001590750974475225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020014419546342 47.55319450015241, 10.0200493 47.55336099624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_53_LVCableDist_mvgd_33532_lvgd_1163850011_building_445486,BranchTee_mvgd_33532_lvgd_1163850011_53,BranchTee_mvgd_33532_lvgd_1163850011_building_445486,0.025031380760357654,0.021727238499990444,0.0021311006916512045,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01972858426986 47.553420072937186, 10.0200493 47.55336099624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_53_LVCableDist_mvgd_33532_lvgd_1163850011_building_445490,BranchTee_mvgd_33532_lvgd_1163850011_53,BranchTee_mvgd_33532_lvgd_1163850011_building_445490,0.00969360205660173,0.008414046585130302,0.0008252857581125427,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02003248045331 47.5534474935108, 10.0200493 47.55336099624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_54_LVCableDist_mvgd_33532_lvgd_1163850011_55,BranchTee_mvgd_33532_lvgd_1163850011_54,BranchTee_mvgd_33532_lvgd_1163850011_55,0.02099535943875373,0.006718515020401193,0.0017215264279761386,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020821800000006 47.553493696243876, 10.021084400000001 47.553557096243885)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_54_LVCableDist_mvgd_33532_lvgd_1163850011_building_445513,BranchTee_mvgd_33532_lvgd_1163850011_54,BranchTee_mvgd_33532_lvgd_1163850011_building_445513,0.012867586127472349,0.011169064758646,0.001095509750687279,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021038822521621 47.55344548150951, 10.021084400000001 47.553557096243885)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_54_LVCableDist_mvgd_33532_lvgd_1163850011_building_445514,BranchTee_mvgd_33532_lvgd_1163850011_54,BranchTee_mvgd_33532_lvgd_1163850011_building_445514,0.013549073162100479,0.011760595504703215,0.001153529622014049,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020921491769665 47.55360882313541, 10.021084400000001 47.553557096243885)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_54_LVStation_mvgd_33532_lvgd_1163850011,BusBar_mvgd_33532_lvgd_1163850011_LV,BranchTee_mvgd_33532_lvgd_1163850011_54,0.08462878096703189,0.027081209909450205,0.006939184986432294,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021084400000001 47.553557096243885, 10.021196799999995 47.55362669624393, 10.021334099999995 47.553696996243914, 10.021746599999998 47.55377359624393, 10.022112600000002 47.55381729624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_55_LVCableDist_mvgd_33532_lvgd_1163850011_56,BranchTee_mvgd_33532_lvgd_1163850011_55,BranchTee_mvgd_33532_lvgd_1163850011_56,0.0305152526416355,0.00976488084532336,0.0025021154809085045,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020821800000006 47.553493696243876, 10.020420899999996 47.55345399624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_55_LVCableDist_mvgd_33532_lvgd_1163850011_58,BranchTee_mvgd_33532_lvgd_1163850011_55,BranchTee_mvgd_33532_lvgd_1163850011_58,0.052388016079149655,0.01676416514532789,0.004295585148355454,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020821800000006 47.553493696243876, 10.020991 47.5533271962439, 10.021192799999996 47.553095196243866)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_55_LVCableDist_mvgd_33532_lvgd_1163850011_building_445500,BranchTee_mvgd_33532_lvgd_1163850011_55,BranchTee_mvgd_33532_lvgd_1163850011_building_445500,0.016757679573509463,0.014545665869806214,0.0014267012623663598,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020717870071513 47.55336033839864, 10.020821800000006 47.553493696243876)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_56_LVCableDist_mvgd_33532_lvgd_1163850011_building_445498,BranchTee_mvgd_33532_lvgd_1163850011_56,BranchTee_mvgd_33532_lvgd_1163850011_building_445498,0.02148606639853082,0.01864990563392475,0.0018292626923437241,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020322450009633 47.553272496337435, 10.020420899999996 47.55345399624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_57_LVCableDist_mvgd_33532_lvgd_1163850011_58,BranchTee_mvgd_33532_lvgd_1163850011_57,BranchTee_mvgd_33532_lvgd_1163850011_58,0.03272506624924537,0.010472021199758519,0.0026833104034102695,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0213449 47.55281929624385, 10.021192799999996 47.553095196243866)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_57_LVCableDist_mvgd_33532_lvgd_1163850011_building_445464,BranchTee_mvgd_33532_lvgd_1163850011_57,BranchTee_mvgd_33532_lvgd_1163850011_building_445464,0.030419431388584238,0.026404066445291117,0.002589824024990061,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020996600010646 47.552680696307995, 10.0213449 47.55281929624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_57_LVCableDist_mvgd_33532_lvgd_1163850011_building_445465,BranchTee_mvgd_33532_lvgd_1163850011_57,BranchTee_mvgd_33532_lvgd_1163850011_building_445465,0.014176708417195252,0.012305382906125479,0.0012069647057212746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021225180752275 47.5527208384481, 10.0213449 47.55281929624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_58_LVCableDist_mvgd_33532_lvgd_1163850011_building_445466,BranchTee_mvgd_33532_lvgd_1163850011_58,BranchTee_mvgd_33532_lvgd_1163850011_building_445466,0.028492836615994017,0.024731782182682807,0.002425799215823283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020929600007412 47.55291099630117, 10.021192799999996 47.553095196243866)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_58_LVCableDist_mvgd_33532_lvgd_1163850011_building_445467,BranchTee_mvgd_33532_lvgd_1163850011_58,BranchTee_mvgd_33532_lvgd_1163850011_building_445467,0.01808815343841273,0.01570051718454225,0.001539974029892217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02110287950039 47.55294424016143, 10.021192799999996 47.553095196243866)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_58_LVCableDist_mvgd_33532_lvgd_1163850011_building_445510,BranchTee_mvgd_33532_lvgd_1163850011_58,BranchTee_mvgd_33532_lvgd_1163850011_building_445510,0.018061443737229326,0.015677333163915053,0.0015377000417646466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020964167284273 47.553144232942614, 10.021192799999996 47.553095196243866)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_58_LVCableDist_mvgd_33532_lvgd_1163850011_building_445511,BranchTee_mvgd_33532_lvgd_1163850011_58,BranchTee_mvgd_33532_lvgd_1163850011_building_445511,0.020237986600535645,0.01756657236926494,0.0017230047217504387,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021450191332672 47.55304290634059, 10.021192799999996 47.553095196243866)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_5_LVCableDist_mvgd_33532_lvgd_1163850011_building_445451,BranchTee_mvgd_33532_lvgd_1163850011_5,BranchTee_mvgd_33532_lvgd_1163850011_building_445451,0.0257548143730244,0.02235517887578518,0.002192691775542168,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023584350003388 47.55139764627037, 10.023842700000001 47.55154949624373)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_5_LVCableDist_mvgd_33532_lvgd_1163850011_building_445458,BranchTee_mvgd_33532_lvgd_1163850011_5,BranchTee_mvgd_33532_lvgd_1163850011_building_445458,0.01698895311723357,0.01474641130575874,0.0014463912352731534,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023746827015966 47.55141109111164, 10.023842700000001 47.55154949624373)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_6_LVCableDist_mvgd_33532_lvgd_1163850011_building_445449,BranchTee_mvgd_33532_lvgd_1163850011_6,BranchTee_mvgd_33532_lvgd_1163850011_building_445449,0.016998880479137394,0.014755028255891258,0.0014472364226809935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022379239940895 47.55073102569907, 10.022595000000004 47.550775896243664)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_6_LVCableDist_mvgd_33532_lvgd_1163850011_building_445453,BranchTee_mvgd_33532_lvgd_1163850011_6,BranchTee_mvgd_33532_lvgd_1163850011_building_445453,0.02528900059654876,0.021950852517804324,0.002153033713099203,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022336289608537 47.55092097186349, 10.022595000000004 47.550775896243664)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_6_LVCableDist_mvgd_33532_lvgd_1163850011_building_445459,BranchTee_mvgd_33532_lvgd_1163850011_6,BranchTee_mvgd_33532_lvgd_1163850011_building_445459,0.018649258059868497,0.016187555995965854,0.0015877448843377225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022463099999399 47.55091794626844, 10.022595000000004 47.550775896243664)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_6_LVCableDist_mvgd_33532_lvgd_1163850011_building_445474,BranchTee_mvgd_33532_lvgd_1163850011_6,BranchTee_mvgd_33532_lvgd_1163850011_building_445474,0.023156972561329633,0.02010025218323412,0.0019715188991952528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022761749999473 47.55095099633853, 10.022595000000004 47.550775896243664)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_7_LVCableDist_mvgd_33532_lvgd_1163850011_building_445468,BranchTee_mvgd_33532_lvgd_1163850011_7,BranchTee_mvgd_33532_lvgd_1163850011_building_445468,0.06660410525820118,0.05781236336411862,0.005670484426786135,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02000538384263 47.55180500563652, 10.020433000000006 47.55128029624371)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850011_9_LVCableDist_mvgd_33532_lvgd_1163850011_building_445559,BranchTee_mvgd_33532_lvgd_1163850011_9,BranchTee_mvgd_33532_lvgd_1163850011_building_445559,0.01411236135584386,0.01224952965687247,0.0012014863796047687,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02244470963168 47.55254402049148, 10.022630600000001 47.55252809624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_10_LVCableDist_mvgd_33532_lvgd_1163850012_11,BranchTee_mvgd_33532_lvgd_1163850012_10,BranchTee_mvgd_33532_lvgd_1163850012_11,0.04123728737750253,0.01043303370650814,0.0033164994324258058,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019531 47.55962729624444, 10.019539000000005 47.55966559624444, 10.0195974 47.55999569624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_10_LVCableDist_mvgd_33532_lvgd_1163850012_building_445972,BranchTee_mvgd_33532_lvgd_1163850012_10,BranchTee_mvgd_33532_lvgd_1163850012_building_445972,0.031013343552724983,0.026919582203765283,0.002640388020476274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020005476637603 47.560033248437755, 10.0195974 47.55999569624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_11_LVCableDist_mvgd_33532_lvgd_1163850012_13,BranchTee_mvgd_33532_lvgd_1163850012_11,BranchTee_mvgd_33532_lvgd_1163850012_13,0.04835063923435891,0.012232711726292804,0.0038885891331848286,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019531 47.55962729624444, 10.0195202 47.55956709624446, 10.0200619 47.55949319624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_11_LVCableDist_mvgd_33532_lvgd_1163850012_26,BranchTee_mvgd_33532_lvgd_1163850012_11,BranchTee_mvgd_33532_lvgd_1163850012_26,0.03602266994992212,0.009113735497330296,0.0028971150151005476,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019056799999994 47.55966339624444, 10.019304000000005 47.559655896244465, 10.019531 47.55962729624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_12_LVCableDist_mvgd_33532_lvgd_1163850012_24,BranchTee_mvgd_33532_lvgd_1163850012_12,BranchTee_mvgd_33532_lvgd_1163850012_24,0.015312604554306525,0.003874088952239551,0.0012315127289634557,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018930900000004 47.5598963962445, 10.018939299999996 47.560034096244465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_12_LVCableDist_mvgd_33532_lvgd_1163850012_25,BranchTee_mvgd_33532_lvgd_1163850012_12,BranchTee_mvgd_33532_lvgd_1163850012_25,0.02341096791223825,0.005922974881796278,0.0018828217550467602,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018930900000004 47.5598963962445, 10.018897699999993 47.55968689624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_12_LVCableDist_mvgd_33532_lvgd_1163850012_9,BranchTee_mvgd_33532_lvgd_1163850012_9,BranchTee_mvgd_33532_lvgd_1163850012_12,0.036859850414474316,0.009325542154862003,0.0029644450630279986,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018455000000003 47.5599518962445, 10.018586400000002 47.55991159624448, 10.018930900000004 47.5598963962445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_12_LVCableDist_mvgd_33532_lvgd_1163850012_building_441923,BranchTee_mvgd_33532_lvgd_1163850012_12,BranchTee_mvgd_33532_lvgd_1163850012_building_441923,0.018444152449094985,0.016009524325814446,0.0015702827749492858,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01915443712549 47.55982856485545, 10.018930900000004 47.5598963962445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_13_LVCableDist_mvgd_33532_lvgd_1163850012_14,BranchTee_mvgd_33532_lvgd_1163850012_13,BranchTee_mvgd_33532_lvgd_1163850012_14,0.04906222574819279,0.012412743114292777,0.003945818316269734,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0200619 47.55949319624441, 10.019975799999997 47.559055496244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_13_LVCableDist_mvgd_33532_lvgd_1163850012_18,BranchTee_mvgd_33532_lvgd_1163850012_13,BranchTee_mvgd_33532_lvgd_1163850012_18,0.007332714087416819,0.0018551766641164552,0.0005897318581223185,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020157699999997 47.55948139624441, 10.0200619 47.55949319624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_14_LVCableDist_mvgd_33532_lvgd_1163850012_15,BranchTee_mvgd_33532_lvgd_1163850012_14,BranchTee_mvgd_33532_lvgd_1163850012_15,0.03046588088935488,0.007707867865006784,0.0024502115222307572,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019975799999997 47.559055496244355, 10.0200221 47.55878309624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_14_LVCableDist_mvgd_33532_lvgd_1163850012_building_445740,BranchTee_mvgd_33532_lvgd_1163850012_14,BranchTee_mvgd_33532_lvgd_1163850012_building_445740,0.022985280671524833,0.019951223622883554,0.001956901539145607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020276774405716 47.559021141922805, 10.019975799999997 47.559055496244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_14_LVCableDist_mvgd_33532_lvgd_1163850012_building_445748,BranchTee_mvgd_33532_lvgd_1163850012_14,BranchTee_mvgd_33532_lvgd_1163850012_building_445748,0.024739055334606515,0.021473500030438457,0.002106212934840278,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019749648151452 47.559216990643684, 10.019975799999997 47.559055496244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_14_LVCableDist_mvgd_33532_lvgd_1163850012_building_445837,BranchTee_mvgd_33532_lvgd_1163850012_14,BranchTee_mvgd_33532_lvgd_1163850012_building_445837,0.016703155731912195,0.014498339175299786,0.0014220592572907374,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019754579107827 47.559044695049884, 10.019975799999997 47.559055496244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_15_LVCableDist_mvgd_33532_lvgd_1163850012_19,BranchTee_mvgd_33532_lvgd_1163850012_15,BranchTee_mvgd_33532_lvgd_1163850012_19,0.009323939578694802,0.002358956713409785,0.0007498757141233332,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0200221 47.55878309624441, 10.0200371 47.558699796244376)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_15_LVCableDist_mvgd_33532_lvgd_1163850012_building_445830,BranchTee_mvgd_33532_lvgd_1163850012_15,BranchTee_mvgd_33532_lvgd_1163850012_building_445830,0.025789984301526743,0.022385706373725212,0.0021956860434043453,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01969021238251 47.558840309819324, 10.0200221 47.55878309624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_16_LVCableDist_mvgd_33532_lvgd_1163850012_17,BranchTee_mvgd_33532_lvgd_1163850012_16,BranchTee_mvgd_33532_lvgd_1163850012_17,0.010946462245588129,0.0027694549481337965,0.0008803667295625649,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019080299999997 47.560771396244554, 10.018963999999997 47.56071229624459)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_16_LVCableDist_mvgd_33532_lvgd_1163850012_8,BranchTee_mvgd_33532_lvgd_1163850012_8,BranchTee_mvgd_33532_lvgd_1163850012_16,0.04545125109366145,0.011499166526696348,0.003655406503227184,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019418700000001 47.561098996244624, 10.019310500000007 47.56091929624457, 10.0192354 47.56087099624455, 10.019080299999997 47.560771396244554)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_16_LVCableDist_mvgd_33532_lvgd_1163850012_building_441945,BranchTee_mvgd_33532_lvgd_1163850012_16,BranchTee_mvgd_33532_lvgd_1163850012_building_441945,0.024083811995663434,0.02090474881223586,0.002050427377255979,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019313465389889 47.56062303696584, 10.019080299999997 47.560771396244554)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_17_LVCableDist_mvgd_33532_lvgd_1163850012_22,BranchTee_mvgd_33532_lvgd_1163850012_17,BranchTee_mvgd_33532_lvgd_1163850012_22,0.022011106984961417,0.0055688100671952385,0.0017702382592341445,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018812999999994 47.56087519624456, 10.018931900000004 47.560790596244516, 10.018963999999997 47.56071229624459)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_17_LVCableDist_mvgd_33532_lvgd_1163850012_23,BranchTee_mvgd_33532_lvgd_1163850012_17,BranchTee_mvgd_33532_lvgd_1163850012_23,0.058251986157761594,0.014737752497913684,0.004684902701318097,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018963999999997 47.56071229624459, 10.018954299999992 47.56060039624449, 10.018946999999999 47.56038539624447, 10.018952400000002 47.56018829624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_18_LVCableDist_mvgd_33532_lvgd_1163850012_building_445750,BranchTee_mvgd_33532_lvgd_1163850012_18,BranchTee_mvgd_33532_lvgd_1163850012_building_445750,0.022803602046514337,0.019793526576374443,0.0019414339368137663,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02029905981057 47.55929989420158, 10.020157699999997 47.55948139624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_18_LVStation_mvgd_33532_lvgd_1163850012,BusBar_mvgd_33532_lvgd_1163850012_LV,BranchTee_mvgd_33532_lvgd_1163850012_18,0.06606424079778847,0.016714252921840485,0.005313201499016176,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014800000001 47.55935469624443, 10.020157699999997 47.55948139624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_19_LVCableDist_mvgd_33532_lvgd_1163850012_building_445824,BranchTee_mvgd_33532_lvgd_1163850012_19,BranchTee_mvgd_33532_lvgd_1163850012_building_445824,0.024377026693638608,0.021159259170078312,0.002075390844179338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019742105647618 47.558609484987755, 10.0200371 47.558699796244376)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_1_LVCableDist_mvgd_33532_lvgd_1163850012_4,BranchTee_mvgd_33532_lvgd_1163850012_1,BranchTee_mvgd_33532_lvgd_1163850012_4,0.05318906980102691,0.010956948379011544,0.00427771880801743,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.020290999999999 47.560246296244486, 10.020202000000003 47.55977139624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_1_LVCableDist_mvgd_33532_lvgd_1163850012_5,BranchTee_mvgd_33532_lvgd_1163850012_1,BranchTee_mvgd_33532_lvgd_1163850012_5,0.04120976041237241,0.008489210644948716,0.0033142855825332392,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.020401199999997 47.56060959624453, 10.020290999999999 47.560246296244486)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_1_LVCableDist_mvgd_33532_lvgd_1163850012_building_445973,BranchTee_mvgd_33532_lvgd_1163850012_1,BranchTee_mvgd_33532_lvgd_1163850012_building_445973,0.020592165268896668,0.017873999453402307,0.0017531584880303892,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02006831784892 47.56035385627088, 10.020290999999999 47.560246296244486)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_1_LVCableDist_mvgd_33532_lvgd_1163850012_building_445975,BranchTee_mvgd_33532_lvgd_1163850012_1,BranchTee_mvgd_33532_lvgd_1163850012_building_445975,0.025184018641737242,0.021859728181027927,0.0021440958475195285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020598724518583 47.56015756020467, 10.020290999999999 47.560246296244486)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_20_LVCableDist_mvgd_33532_lvgd_1163850012_21,BranchTee_mvgd_33532_lvgd_1163850012_20,BranchTee_mvgd_33532_lvgd_1163850012_21,0.034180785020389765,0.00864773861015861,0.0027489818397181064,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018002899999995 47.560929796244544, 10.018452599999996 47.560888096244554)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_20_LVCableDist_mvgd_33532_lvgd_1163850012_building_442009,BranchTee_mvgd_33532_lvgd_1163850012_20,BranchTee_mvgd_33532_lvgd_1163850012_building_442009,0.017634513278917182,0.015306757526100114,0.0015013523946369705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018087071966152 47.56107790355766, 10.018002899999995 47.560929796244544)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_21_LVCableDist_mvgd_33532_lvgd_1163850012_22,BranchTee_mvgd_33532_lvgd_1163850012_21,BranchTee_mvgd_33532_lvgd_1163850012_22,0.027178298747411168,0.006876109583095025,0.002185808478257551,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018452599999996 47.560888096244554, 10.018812999999994 47.56087519624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_21_LVCableDist_mvgd_33532_lvgd_1163850012_building_441932,BranchTee_mvgd_33532_lvgd_1163850012_21,BranchTee_mvgd_33532_lvgd_1163850012_building_441932,0.03051473841007235,0.0264867929399428,0.0025979381942145647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018219335326545 47.56066352821885, 10.018452599999996 47.560888096244554)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_21_LVCableDist_mvgd_33532_lvgd_1163850012_building_441933,BranchTee_mvgd_33532_lvgd_1163850012_21,BranchTee_mvgd_33532_lvgd_1163850012_building_441933,0.017346624921918977,0.015056870432225672,0.0014768423972624414,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018438950000208 47.56073224629599, 10.018452599999996 47.560888096244554)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_21_LVCableDist_mvgd_33532_lvgd_1163850012_building_441938,BranchTee_mvgd_33532_lvgd_1163850012_21,BranchTee_mvgd_33532_lvgd_1163850012_building_441938,0.017597788247409023,0.015274880198751032,0.0014982257297199517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018377066082362 47.561037979310115, 10.018452599999996 47.560888096244554)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_22_LVCableDist_mvgd_33532_lvgd_1163850012_building_441937,BranchTee_mvgd_33532_lvgd_1163850012_22,BranchTee_mvgd_33532_lvgd_1163850012_building_441937,0.01562302301135262,0.013560783973854074,0.0013300998240538345,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018664949999437 47.560776696281, 10.018812999999994 47.56087519624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_22_LVCableDist_mvgd_33532_lvgd_1163850012_building_441939,BranchTee_mvgd_33532_lvgd_1163850012_22,BranchTee_mvgd_33532_lvgd_1163850012_building_441939,0.022561930130269633,0.01958375535307404,0.001920858675992461,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018679573955561 47.56105701169651, 10.018812999999994 47.56087519624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_23_LVCableDist_mvgd_33532_lvgd_1163850012_24,BranchTee_mvgd_33532_lvgd_1163850012_23,BranchTee_mvgd_33532_lvgd_1163850012_24,0.017161192462280643,0.004341781692957003,0.0013801849898583398,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018952400000002 47.56018829624447, 10.018939299999996 47.560034096244465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_23_LVCableDist_mvgd_33532_lvgd_1163850012_building_441926,BranchTee_mvgd_33532_lvgd_1163850012_23,BranchTee_mvgd_33532_lvgd_1163850012_building_441926,0.024188144090536854,0.02099530907058599,0.0020593099156055333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019243076219206 47.560280910024304, 10.018952400000002 47.56018829624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_24_LVCableDist_mvgd_33532_lvgd_1163850012_building_441922,BranchTee_mvgd_33532_lvgd_1163850012_24,BranchTee_mvgd_33532_lvgd_1163850012_building_441922,0.016904372204558694,0.014672995073556946,0.0014391902565006444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01872291327215 47.560074559649735, 10.018939299999996 47.560034096244465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_24_LVCableDist_mvgd_33532_lvgd_1163850012_building_441925,BranchTee_mvgd_33532_lvgd_1163850012_24,BranchTee_mvgd_33532_lvgd_1163850012_building_441925,0.018034789518551607,0.015654197302102796,0.0015354307772600902,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019174564714321 47.56006441963017, 10.018939299999996 47.560034096244465)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_25_LVCableDist_mvgd_33532_lvgd_1163850012_26,BranchTee_mvgd_33532_lvgd_1163850012_25,BranchTee_mvgd_33532_lvgd_1163850012_26,0.012262735706648384,0.003102472133782041,0.000986227722468347,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018897699999993 47.55968689624447, 10.019056799999994 47.55966339624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_25_LVCableDist_mvgd_33532_lvgd_1163850012_7,BranchTee_mvgd_33532_lvgd_1163850012_7,BranchTee_mvgd_33532_lvgd_1163850012_25,0.037292126177112674,0.009434907922809507,0.002999210742649876,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018897699999993 47.55968689624447, 10.018890100000004 47.55935129624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_25_LVCableDist_mvgd_33532_lvgd_1163850012_building_441834,BranchTee_mvgd_33532_lvgd_1163850012_25,BranchTee_mvgd_33532_lvgd_1163850012_building_441834,0.014244989228521134,0.012364650650356345,0.0012127779401423476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018716786915554 47.559724331610596, 10.018897699999993 47.55968689624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_26_LVCableDist_mvgd_33532_lvgd_1163850012_building_441801,BranchTee_mvgd_33532_lvgd_1163850012_26,BranchTee_mvgd_33532_lvgd_1163850012_building_441801,0.018010788432728717,0.015633364359608527,0.0015333873929543175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019154295552344 47.55951537465795, 10.019056799999994 47.55966339624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_27_LVCableDist_mvgd_33532_lvgd_1163850012_28,BranchTee_mvgd_33532_lvgd_1163850012_27,BranchTee_mvgd_33532_lvgd_1163850012_28,0.006653830111500612,0.002987569720063775,0.0005643978425061717,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.023580199999996 47.55914129624439, 10.023498500000002 47.559164096244366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_27_LVCableDist_mvgd_33532_lvgd_1163850012_building_445791,BranchTee_mvgd_33532_lvgd_1163850012_27,BranchTee_mvgd_33532_lvgd_1163850012_building_445791,0.027904948216121026,0.024221495051593052,0.0023757480665248317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023561809595206 47.558890453479115, 10.023580199999996 47.55914129624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_27_LVCableDist_mvgd_33532_lvgd_1163850012_building_445792,BranchTee_mvgd_33532_lvgd_1163850012_27,BranchTee_mvgd_33532_lvgd_1163850012_building_445792,0.022178151854532258,0.019250635809734,0.0018881848831763695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023607441494878 47.558942542290474, 10.023580199999996 47.55914129624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_27_LVCableDist_mvgd_33532_lvgd_1163850012_building_445810,BranchTee_mvgd_33532_lvgd_1163850012_27,BranchTee_mvgd_33532_lvgd_1163850012_building_445810,0.020214853722240612,0.01754649303090485,0.0017210352541686702,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023676799998743 47.558971546272105, 10.023580199999996 47.55914129624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_28_LVCableDist_mvgd_33532_lvgd_1163850012_31,BranchTee_mvgd_33532_lvgd_1163850012_28,BranchTee_mvgd_33532_lvgd_1163850012_31,0.028603649047465117,0.012843038422311838,0.002426247370261182,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.023498500000002 47.559164096244366, 10.0231414 47.559251796244425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_28_LVCableDist_mvgd_33532_lvgd_1163850012_building_445795,BranchTee_mvgd_33532_lvgd_1163850012_28,BranchTee_mvgd_33532_lvgd_1163850012_building_445795,0.013465534323356353,0.011688083792673314,0.0011464173624574651,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02339664382072 47.55906448977143, 10.023498500000002 47.559164096244366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_29_LVCableDist_mvgd_33532_lvgd_1163850012_31,BranchTee_mvgd_33532_lvgd_1163850012_29,BranchTee_mvgd_33532_lvgd_1163850012_31,0.04107327610395494,0.01844190097067577,0.0034839585666103516,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022601699999996 47.55929779624443, 10.022948300000003 47.55928129624442, 10.0231414 47.559251796244425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_29_LVCableDist_mvgd_33532_lvgd_1163850012_33,BranchTee_mvgd_33532_lvgd_1163850012_29,BranchTee_mvgd_33532_lvgd_1163850012_33,0.012151495553478355,0.005456021503511782,0.0010307263273452894,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022601699999996 47.55929779624443, 10.022440500000004 47.55930259624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_29_LVCableDist_mvgd_33532_lvgd_1163850012_34,BranchTee_mvgd_33532_lvgd_1163850012_29,BranchTee_mvgd_33532_lvgd_1163850012_34,0.03413857344123349,0.015328219475113838,0.002895736271229399,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022683599999997 47.55959999624443, 10.022601699999996 47.55929779624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_2_LVCableDist_mvgd_33532_lvgd_1163850012_3,BranchTee_mvgd_33532_lvgd_1163850012_2,BranchTee_mvgd_33532_lvgd_1163850012_3,0.062300087080306495,0.012833817938543136,0.005010470294771079,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.020901499999994 47.56121039624458, 10.020748900000003 47.56093859624452, 10.020507199999996 47.56072409624453)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_2_LVCableDist_mvgd_33532_lvgd_1163850012_5,BranchTee_mvgd_33532_lvgd_1163850012_2,BranchTee_mvgd_33532_lvgd_1163850012_5,0.015018904379545882,0.0030938943021864515,0.0012078919593919721,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.020507199999996 47.56072409624453, 10.020401199999997 47.56060959624453)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_2_LVCableDist_mvgd_33532_lvgd_1163850012_building_445985,BranchTee_mvgd_33532_lvgd_1163850012_2,BranchTee_mvgd_33532_lvgd_1163850012_building_445985,0.020741383374929315,0.018003520769438647,0.001765862493934717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020357261957153 47.56088068907816, 10.020507199999996 47.56072409624453)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_30_LVCableDist_mvgd_33532_lvgd_1163850012_33,BranchTee_mvgd_33532_lvgd_1163850012_30,BranchTee_mvgd_33532_lvgd_1163850012_33,0.04401422414622552,0.01976238664165526,0.0037334186072433885,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022440500000004 47.55930259624443, 10.021856399999995 47.559316296244404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_30_LVCableDist_mvgd_33532_lvgd_1163850012_building_445782,BranchTee_mvgd_33532_lvgd_1163850012_30,BranchTee_mvgd_33532_lvgd_1163850012_building_445782,0.015453388527077028,0.01341354124150286,0.0013156576256697912,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021846058647975 47.55917738820213, 10.021856399999995 47.559316296244404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_30_LVStation_mvgd_33532_lvgd_1163850012,BusBar_mvgd_33532_lvgd_1163850012_LV,BranchTee_mvgd_33532_lvgd_1163850012_30,0.06355059236346976,0.028534215971197922,0.005390552000709618,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021014800000001 47.55935469624443, 10.021331699999998 47.55933209624442, 10.021856399999995 47.559316296244404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_31_LVCableDist_mvgd_33532_lvgd_1163850012_38,BranchTee_mvgd_33532_lvgd_1163850012_31,BranchTee_mvgd_33532_lvgd_1163850012_38,0.032018307319795825,0.014376219986588326,0.0027158889345187736,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0231414 47.559251796244425, 10.0230849 47.55907189624443, 10.023108300000004 47.558995496244385, 10.0231357 47.558976996244404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_32_LVCableDist_mvgd_33532_lvgd_1163850012_36,BranchTee_mvgd_33532_lvgd_1163850012_32,BranchTee_mvgd_33532_lvgd_1163850012_36,0.004702832627920127,0.002111571849936137,0.0003989083797432789,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0227698 47.56011409624445, 10.022813100000008 47.560083596244525)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_32_LVCableDist_mvgd_33532_lvgd_1163850012_building_445995,BranchTee_mvgd_33532_lvgd_1163850012_32,BranchTee_mvgd_33532_lvgd_1163850012_building_445995,0.021543461780284295,0.018699724825286767,0.0018341491721956915,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022672549998028 47.5602964462519, 10.0227698 47.56011409624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_32_LVCableDist_mvgd_33532_lvgd_1163850012_building_446004,BranchTee_mvgd_33532_lvgd_1163850012_32,BranchTee_mvgd_33532_lvgd_1163850012_building_446004,0.01139736322247832,0.009892911277111182,0.0009703391466478776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022663249998034 47.56018694625184, 10.0227698 47.56011409624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_32_LVCableDist_mvgd_33532_lvgd_1163850012_building_446005,BranchTee_mvgd_33532_lvgd_1163850012_32,BranchTee_mvgd_33532_lvgd_1163850012_building_446005,0.016120886275052284,0.013992929286745382,0.0013724864888477472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022667899998027 47.56024169625183, 10.0227698 47.56011409624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_33_LVCableDist_mvgd_33532_lvgd_1163850012_35,BranchTee_mvgd_33532_lvgd_1163850012_33,BranchTee_mvgd_33532_lvgd_1163850012_35,0.055497087335548596,0.02491819221366132,0.0047074295304627475,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022440500000004 47.55930259624443, 10.022325300000004 47.559002596244376, 10.022256699999994 47.558818896244325)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_34_LVCableDist_mvgd_33532_lvgd_1163850012_37,BranchTee_mvgd_33532_lvgd_1163850012_34,BranchTee_mvgd_33532_lvgd_1163850012_37,0.040728302797145996,0.018287007955918554,0.0034546968952387513,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022791300000002 47.55995919624447, 10.022760400000005 47.55986519624449, 10.022683599999997 47.55959999624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_34_LVCableDist_mvgd_33532_lvgd_1163850012_building_445796,BranchTee_mvgd_33532_lvgd_1163850012_34,BranchTee_mvgd_33532_lvgd_1163850012_building_445796,0.018111642839165804,0.015720905984395916,0.0015419738507838645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022484615128239 47.559508444753746, 10.022683599999997 47.55959999624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_34_LVCableDist_mvgd_33532_lvgd_1163850012_building_445801,BranchTee_mvgd_33532_lvgd_1163850012_34,BranchTee_mvgd_33532_lvgd_1163850012_building_445801,0.009696968022732969,0.008416968243732217,0.0008255723269126833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022802966503088 47.55963272440868, 10.022683599999997 47.55959999624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_35_LVCableDist_mvgd_33532_lvgd_1163850012_building_445767,BranchTee_mvgd_33532_lvgd_1163850012_35,BranchTee_mvgd_33532_lvgd_1163850012_building_445767,0.017053685440254717,0.014802598962141094,0.0014519023614744306,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022069180208549 47.5589049414723, 10.022256699999994 47.558818896244325)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_36_LVCableDist_mvgd_33532_lvgd_1163850012_37,BranchTee_mvgd_33532_lvgd_1163850012_36,BranchTee_mvgd_33532_lvgd_1163850012_37,0.01391896787921614,0.006249616577768047,0.0011806486353422387,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022813100000008 47.560083596244525, 10.022791300000002 47.55995919624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_36_LVCableDist_mvgd_33532_lvgd_1163850012_building_446002,BranchTee_mvgd_33532_lvgd_1163850012_36,BranchTee_mvgd_33532_lvgd_1163850012_building_446002,0.01032643390564132,0.008963344630096666,0.0008791632650746443,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02293929999601 47.560119946339285, 10.022813100000008 47.560083596244525)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_37_LVCableDist_mvgd_33532_lvgd_1163850012_building_446001,BranchTee_mvgd_33532_lvgd_1163850012_37,BranchTee_mvgd_33532_lvgd_1163850012_building_446001,0.01090556031330562,0.009466026351949278,0.0009284684432325123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022663928443526 47.56000589727473, 10.022791300000002 47.55995919624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_38_LVCableDist_mvgd_33532_lvgd_1163850012_building_445794,BranchTee_mvgd_33532_lvgd_1163850012_38,BranchTee_mvgd_33532_lvgd_1163850012_building_445794,0.0160375741976741,0.01392061440358112,0.0013653935351100645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023323397910582 47.559045180335396, 10.0231357 47.558976996244404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_38_LVCableDist_mvgd_33532_lvgd_1163850012_building_445829,BranchTee_mvgd_33532_lvgd_1163850012_38,BranchTee_mvgd_33532_lvgd_1163850012_building_445829,0.010102779584597852,0.008769212679430935,0.0008601219711552391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023257150926078 47.55901561263834, 10.0231357 47.558976996244404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_39_LVCableDist_mvgd_33532_lvgd_1163850012_47,BranchTee_mvgd_33532_lvgd_1163850012_39,BranchTee_mvgd_33532_lvgd_1163850012_47,0.02423364484967749,0.003974317755347108,0.0019489853601139437,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021071099999999 47.55965759624446, 10.021085199999995 47.55987549624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_39_LVCableDist_mvgd_33532_lvgd_1163850012_51,BranchTee_mvgd_33532_lvgd_1163850012_39,BranchTee_mvgd_33532_lvgd_1163850012_51,0.057635119242623586,0.009452159555790268,0.0046352913203557885,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021085199999995 47.55987549624444, 10.0210937 47.56039419624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_39_LVCableDist_mvgd_33532_lvgd_1163850012_54,BranchTee_mvgd_33532_lvgd_1163850012_39,BranchTee_mvgd_33532_lvgd_1163850012_54,0.07116105884515364,0.011670413650605197,0.005723111928053904,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022027099999997 47.55987989624447, 10.021514800000006 47.559899096244486, 10.021443299999994 47.55990179624445, 10.021180600000005 47.559884196244454, 10.021085199999995 47.55987549624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_3_LVCableDist_mvgd_33532_lvgd_1163850012_6,BranchTee_mvgd_33532_lvgd_1163850012_3,BranchTee_mvgd_33532_lvgd_1163850012_6,0.011914422082688123,0.002454370949033753,0.0009582146787005698,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.020901499999994 47.56121039624458, 10.021058299999996 47.561224696244565)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_3_LVCableDist_mvgd_33532_lvgd_1163850012_building_445986,BranchTee_mvgd_33532_lvgd_1163850012_3,BranchTee_mvgd_33532_lvgd_1163850012_building_445986,0.023439572762516434,0.020345549157864264,0.001995578677997537,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020595566801656 47.561171545864475, 10.020901499999994 47.56121039624458)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_40_LVCableDist_mvgd_33532_lvgd_1163850012_41,BranchTee_mvgd_33532_lvgd_1163850012_40,BranchTee_mvgd_33532_lvgd_1163850012_41,0.03477700617716769,0.0057034290130555014,0.0027969327902729437,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022821900000002 47.56103589624456, 10.023169600000001 47.56102439624456, 10.023211999999997 47.56095289624458)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_40_LVCableDist_mvgd_33532_lvgd_1163850012_44,BranchTee_mvgd_33532_lvgd_1163850012_40,BranchTee_mvgd_33532_lvgd_1163850012_44,0.019752054781408308,0.0032393369841509628,0.0015885545009811325,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.023211999999997 47.56095289624458, 10.023194999999998 47.560775496244545)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_40_LVCableDist_mvgd_33532_lvgd_1163850012_building_446024,BranchTee_mvgd_33532_lvgd_1163850012_40,BranchTee_mvgd_33532_lvgd_1163850012_building_446024,0.021756629779121253,0.018884754648277248,0.0018522976904140232,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023495620218796 47.56091560275421, 10.023211999999997 47.56095289624458)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_41_LVCableDist_mvgd_33532_lvgd_1163850012_building_446012,BranchTee_mvgd_33532_lvgd_1163850012_41,BranchTee_mvgd_33532_lvgd_1163850012_building_446012,0.019064971092204005,0.016548394908033077,0.001623137511665004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022956275699649 47.560890471576634, 10.022821900000002 47.56103589624456)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_42_LVCableDist_mvgd_33532_lvgd_1163850012_43,BranchTee_mvgd_33532_lvgd_1163850012_42,BranchTee_mvgd_33532_lvgd_1163850012_43,0.046837005207773216,0.007681268854074808,0.003766855461808313,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022062050178441 47.559614848013226, 10.021440499999999 47.559629696244485)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_42_LVCableDist_mvgd_33532_lvgd_1163850012_building_445743,BranchTee_mvgd_33532_lvgd_1163850012_42,BranchTee_mvgd_33532_lvgd_1163850012_building_445743,0.012139425180059454,0.010537021056291606,0.0010335161949373466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021961649046583 47.55952937150432, 10.022062050178441 47.559614848013226)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_42_LVCableDist_mvgd_33532_lvgd_1163850012_building_445745,BranchTee_mvgd_33532_lvgd_1163850012_42,BranchTee_mvgd_33532_lvgd_1163850012_building_445745,0.016115527715645613,0.013988278057180392,0.0013720302763132837,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022226508812174 47.559522044263005, 10.022062050178441 47.559614848013226)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_43_LVCableDist_mvgd_33532_lvgd_1163850012_53,BranchTee_mvgd_33532_lvgd_1163850012_43,BranchTee_mvgd_33532_lvgd_1163850012_53,0.015131434223963888,0.0024815552127300778,0.0012169421464648224,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021440499999999 47.559629696244485, 10.021239599999996 47.55962749624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_43_LVCableDist_mvgd_33532_lvgd_1163850012_building_445742,BranchTee_mvgd_33532_lvgd_1163850012_43,BranchTee_mvgd_33532_lvgd_1163850012_building_445742,0.02318899397025624,0.020128046766182416,0.001974245111039675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02171420021668 47.55953407237756, 10.021440499999999 47.559629696244485)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_43_LVCableDist_mvgd_33532_lvgd_1163850012_building_445780,BranchTee_mvgd_33532_lvgd_1163850012_43,BranchTee_mvgd_33532_lvgd_1163850012_building_445780,0.010213027603914026,0.008864907960197375,0.0008695081745160206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021448791214144 47.55953794804345, 10.021440499999999 47.559629696244485)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_44_LVCableDist_mvgd_33532_lvgd_1163850012_49,BranchTee_mvgd_33532_lvgd_1163850012_44,BranchTee_mvgd_33532_lvgd_1163850012_49,0.016378317720250554,0.002686044106121091,0.001317222467279326,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.023080200000003 47.56065029624457, 10.023194999999998 47.560775496244545)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_44_LVCableDist_mvgd_33532_lvgd_1163850012_building_446017,BranchTee_mvgd_33532_lvgd_1163850012_44,BranchTee_mvgd_33532_lvgd_1163850012_building_446017,0.03143259328994471,0.027283490975672006,0.0026760817528163824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023485024589073 47.560572043353915, 10.023194999999998 47.560775496244545)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_45_LVCableDist_mvgd_33532_lvgd_1163850012_50,BranchTee_mvgd_33532_lvgd_1163850012_45,BranchTee_mvgd_33532_lvgd_1163850012_50,0.09242722129347682,0.015158064292130199,0.007433438192827004,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021550300000005 47.56040509624449, 10.0223936 47.56037669624454, 10.022351299999999 47.56011869624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_45_LVCableDist_mvgd_33532_lvgd_1163850012_51,BranchTee_mvgd_33532_lvgd_1163850012_45,BranchTee_mvgd_33532_lvgd_1163850012_51,0.034406633783291,0.005642687940459724,0.0027671456749655396,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0210937 47.56039419624449, 10.021550300000005 47.56040509624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_45_LVCableDist_mvgd_33532_lvgd_1163850012_52,BranchTee_mvgd_33532_lvgd_1163850012_45,BranchTee_mvgd_33532_lvgd_1163850012_52,0.02513199400024228,0.004121647016039734,0.002021234885663332,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021550300000005 47.56040509624449, 10.021488700000006 47.560271596244455, 10.021469199999999 47.56018629624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_46_LVCableDist_mvgd_33532_lvgd_1163850012_49,BranchTee_mvgd_33532_lvgd_1163850012_46,BranchTee_mvgd_33532_lvgd_1163850012_49,0.08872970985106007,0.014551672415573853,0.007136066678355052,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021904699999995 47.560693596244555, 10.022432699999996 47.560657696244554, 10.0225608 47.56065619624456, 10.023080200000003 47.56065029624457)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_46_LVCableDist_mvgd_33532_lvgd_1163850012_51,BranchTee_mvgd_33532_lvgd_1163850012_46,BranchTee_mvgd_33532_lvgd_1163850012_51,0.08013950374218994,0.01314287861371915,0.006445201311201168,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0210937 47.56039419624449, 10.021094300000005 47.56043099624455, 10.0212052 47.56059439624455, 10.0214668 47.56070199624457, 10.021784199999999 47.560701796244516, 10.021904699999995 47.560693596244555)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_46_LVCableDist_mvgd_33532_lvgd_1163850012_building_445967,BranchTee_mvgd_33532_lvgd_1163850012_46,BranchTee_mvgd_33532_lvgd_1163850012_building_445967,0.01819445758581384,0.015792789184486414,0.0015490244631951482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021990032330606 47.56054039443621, 10.021904699999995 47.560693596244555)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_47_LVCableDist_mvgd_33532_lvgd_1163850012_53,BranchTee_mvgd_33532_lvgd_1163850012_47,BranchTee_mvgd_33532_lvgd_1163850012_53,0.013122741782085652,0.002152129652262047,0.0010553935149454365,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021071099999999 47.55965759624446, 10.021239599999996 47.55962749624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_47_LVCableDist_mvgd_33532_lvgd_1163850012_building_445756,BranchTee_mvgd_33532_lvgd_1163850012_47,BranchTee_mvgd_33532_lvgd_1163850012_building_445756,0.015969234189179282,0.013861295276207617,0.0013595752608100942,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020870871291622 47.55970491827085, 10.021071099999999 47.55965759624446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_47_LVCableDist_mvgd_33532_lvgd_1163850012_building_445779,BranchTee_mvgd_33532_lvgd_1163850012_47,BranchTee_mvgd_33532_lvgd_1163850012_building_445779,0.021042529891880483,0.01826491594615226,0.0017915012534065623,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020973333366433 47.55948017954107, 10.021071099999999 47.55965759624446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_47_LVStation_mvgd_33532_lvgd_1163850012,BusBar_mvgd_33532_lvgd_1163850012_LV,BranchTee_mvgd_33532_lvgd_1163850012_47,0.033920567172597754,0.005562973016306032,0.0027280538786568246,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021014800000001 47.55935469624443, 10.021071099999999 47.55965759624446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_48_LVCableDist_mvgd_33532_lvgd_1163850012_52,BranchTee_mvgd_33532_lvgd_1163850012_48,BranchTee_mvgd_33532_lvgd_1163850012_52,0.014476733639671472,0.0023741843169061217,0.001164288001289424,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021469199999999 47.56018629624449, 10.0214822 47.56013159624448, 10.021592500000006 47.56012719624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_48_LVCableDist_mvgd_33532_lvgd_1163850012_building_445987,BranchTee_mvgd_33532_lvgd_1163850012_48,BranchTee_mvgd_33532_lvgd_1163850012_building_445987,0.011869430104520854,0.010302665330724102,0.0010105295807456929,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021552042896165 47.56002394764968, 10.021592500000006 47.56012719624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_48_LVCableDist_mvgd_33532_lvgd_1163850012_building_445993,BranchTee_mvgd_33532_lvgd_1163850012_48,BranchTee_mvgd_33532_lvgd_1163850012_building_445993,0.017119235758215896,0.014859496638131398,0.0014574831294425427,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021768702094024 47.56002984577888, 10.021592500000006 47.56012719624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_49_LVCableDist_mvgd_33532_lvgd_1163850012_building_445999,BranchTee_mvgd_33532_lvgd_1163850012_49,BranchTee_mvgd_33532_lvgd_1163850012_building_445999,0.024889438969328152,0.021604033025376838,0.002119016170548148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02287383622831 47.560475318524716, 10.023080200000003 47.56065029624457)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_4_LVCableDist_mvgd_33532_lvgd_1163850012_building_445749,BranchTee_mvgd_33532_lvgd_1163850012_4,BranchTee_mvgd_33532_lvgd_1163850012_building_445749,0.01656823301499994,0.014381226257019947,0.0014105723202302563,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019988726688162 47.55980800485247, 10.020202000000003 47.55977139624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_4_LVCableDist_mvgd_33532_lvgd_1163850012_building_445755,BranchTee_mvgd_33532_lvgd_1163850012_4,BranchTee_mvgd_33532_lvgd_1163850012_building_445755,0.018378943975465165,0.015952923370703764,0.0015647311106370195,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020443699985329 47.55974849628339, 10.020202000000003 47.55977139624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_4_LVStation_mvgd_33532_lvgd_1163850012,BusBar_mvgd_33532_lvgd_1163850012_LV,BranchTee_mvgd_33532_lvgd_1163850012_4,0.09845774097280309,0.020282294640397436,0.007918441362667648,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.020202000000003 47.55977139624448, 10.020157699999997 47.55948139624441, 10.021014800000001 47.55935469624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_50_LVCableDist_mvgd_33532_lvgd_1163850012_building_445996,BranchTee_mvgd_33532_lvgd_1163850012_50,BranchTee_mvgd_33532_lvgd_1163850012_building_445996,0.013142728917746342,0.011407888700603825,0.0011189346266966907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022445520106485 47.56001912757805, 10.022351299999999 47.56011869624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_50_LVCableDist_mvgd_33532_lvgd_1163850012_building_445998,BranchTee_mvgd_33532_lvgd_1163850012_50,BranchTee_mvgd_33532_lvgd_1163850012_building_445998,0.015077287638621845,0.013087085670323762,0.0012836374638101294,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022212324189798 47.56002101675581, 10.022351299999999 47.56011869624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_52_LVCableDist_mvgd_33532_lvgd_1163850012_building_445988,BranchTee_mvgd_33532_lvgd_1163850012_52,BranchTee_mvgd_33532_lvgd_1163850012_building_445988,0.009145257650082528,0.007938083640271635,0.000778601272139367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021347822303216 47.560183687806706, 10.021469199999999 47.56018629624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_53_LVCableDist_mvgd_33532_lvgd_1163850012_building_445781,BranchTee_mvgd_33532_lvgd_1163850012_53,BranchTee_mvgd_33532_lvgd_1163850012_building_445781,0.013326859421002783,0.011567713977430415,0.001134610974981294,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021296578596955 47.559741053915296, 10.021239599999996 47.55962749624448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_54_LVCableDist_mvgd_33532_lvgd_1163850012_building_445997,BranchTee_mvgd_33532_lvgd_1163850012_54,BranchTee_mvgd_33532_lvgd_1163850012_building_445997,0.016771256885648435,0.01455745097674284,0.0014278571961746918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021981021959492 47.5600275762034, 10.022027099999997 47.55987989624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_55_LVCableDist_mvgd_33532_lvgd_1163850012_56,BranchTee_mvgd_33532_lvgd_1163850012_55,BranchTee_mvgd_33532_lvgd_1163850012_56,0.04917725286486221,0.0426858554867004,0.004186811690379824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022016399999995 47.56099299624452, 10.021405999999999 47.56115029624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_55_LVCableDist_mvgd_33532_lvgd_1163850012_building_445976,BranchTee_mvgd_33532_lvgd_1163850012_55,BranchTee_mvgd_33532_lvgd_1163850012_building_445976,0.02055838433275156,0.017844677600828356,0.0017502824750340357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02176100986877 47.56092762509484, 10.022016399999995 47.56099299624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_55_LVStation_mvgd_33532_lvgd_1163850012,BusBar_mvgd_33532_lvgd_1163850012_LV,BranchTee_mvgd_33532_lvgd_1163850012_55,0.23024160467966676,0.19984971286195075,0.01960211654631513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021014800000001 47.55935469624443, 10.021071099999999 47.55965759624446, 10.021085199999995 47.55987549624444, 10.0210937 47.56039419624449, 10.021094300000005 47.56043099624455, 10.0212052 47.56059439624455, 10.0214668 47.56070199624457, 10.021784199999999 47.560701796244516, 10.021904699999995 47.560693596244555, 10.022016399999995 47.56099299624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_56_LVCableDist_mvgd_33532_lvgd_1163850012_building_445966,BranchTee_mvgd_33532_lvgd_1163850012_56,BranchTee_mvgd_33532_lvgd_1163850012_building_445966,0.017794251918430534,0.015445410665197702,0.001514952088893128,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021471030866829 47.56099632739882, 10.021405999999999 47.56115029624452)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_57_LVCableDist_mvgd_33532_lvgd_1163850012_60,BranchTee_mvgd_33532_lvgd_1163850012_57,BranchTee_mvgd_33532_lvgd_1163850012_60,0.035724012922046036,0.009038175269277648,0.0028730955917477545,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021322899999998 47.55902809624438, 10.021447100000003 47.55897019624437, 10.021566699999996 47.55883769624435, 10.021638999999999 47.55879649624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_57_LVCableDist_mvgd_33532_lvgd_1163850012_66,BranchTee_mvgd_33532_lvgd_1163850012_57,BranchTee_mvgd_33532_lvgd_1163850012_66,0.02320517841404954,0.005870910138754534,0.0018662711815889532,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014799999996 47.55903109624437, 10.021322899999998 47.55902809624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_57_LVCableDist_mvgd_33532_lvgd_1163850012_building_445768,BranchTee_mvgd_33532_lvgd_1163850012_57,BranchTee_mvgd_33532_lvgd_1163850012_building_445768,0.0177919271481406,0.01544339276458604,0.0015147541645508698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021229288412332 47.559175122058534, 10.021322899999998 47.55902809624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_58_LVCableDist_mvgd_33532_lvgd_1163850012_62,BranchTee_mvgd_33532_lvgd_1163850012_58,BranchTee_mvgd_33532_lvgd_1163850012_62,0.027577565773895505,0.006977124140795563,0.0022179194378024814,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020187599999996 47.55858659624431, 10.020531700000005 47.55850169624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_58_LVCableDist_mvgd_33532_lvgd_1163850012_building_445714,BranchTee_mvgd_33532_lvgd_1163850012_58,BranchTee_mvgd_33532_lvgd_1163850012_building_445714,0.024164846789510926,0.020975087013295483,0.002057326449539267,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020050478606366 47.55838996585205, 10.020187599999996 47.55858659624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_58_LVCableDist_mvgd_33532_lvgd_1163850012_building_445731,BranchTee_mvgd_33532_lvgd_1163850012_58,BranchTee_mvgd_33532_lvgd_1163850012_building_445731,0.020127047822661344,0.017470277510070048,0.0017135597091671422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020255249998753 47.55841134625727, 10.020187599999996 47.55858659624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_58_LVCableDist_mvgd_33532_lvgd_1163850012_building_445737,BranchTee_mvgd_33532_lvgd_1163850012_58,BranchTee_mvgd_33532_lvgd_1163850012_building_445737,0.01706966727248259,0.014816471192514887,0.0014532630092964878,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020278872225179 47.558727220929654, 10.020187599999996 47.55858659624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_59_LVCableDist_mvgd_33532_lvgd_1163850012_60,BranchTee_mvgd_33532_lvgd_1163850012_59,BranchTee_mvgd_33532_lvgd_1163850012_60,0.0440418577252401,0.011142590004485746,0.003542056363009566,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021638999999999 47.55879649624435, 10.022218500000003 47.558743196244336)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_59_LVCableDist_mvgd_33532_lvgd_1163850012_61,BranchTee_mvgd_33532_lvgd_1163850012_59,BranchTee_mvgd_33532_lvgd_1163850012_61,0.032103989904693604,0.008122309445887483,0.0025819560661889617,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022218500000003 47.558743196244336, 10.022145699999996 47.558458496244334)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_59_LVCableDist_mvgd_33532_lvgd_1163850012_building_445820,BranchTee_mvgd_33532_lvgd_1163850012_59,BranchTee_mvgd_33532_lvgd_1163850012_building_445820,0.019434688384595392,0.0168693095178288,0.0016546141922793832,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022470102755046 47.55870429999626, 10.022218500000003 47.558743196244336)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_5_LVCableDist_mvgd_33532_lvgd_1163850012_building_445981,BranchTee_mvgd_33532_lvgd_1163850012_5,BranchTee_mvgd_33532_lvgd_1163850012_building_445981,0.024101495721568847,0.02092009828632176,0.002051932919473917,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020708982796894 47.56055012937247, 10.020401199999997 47.56060959624453)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_60_LVCableDist_mvgd_33532_lvgd_1163850012_building_445760,BranchTee_mvgd_33532_lvgd_1163850012_60,BranchTee_mvgd_33532_lvgd_1163850012_building_445760,0.012910619273394262,0.01120641752930622,0.0010991734705561947,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021752362650833 47.55870932816875, 10.021638999999999 47.55879649624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_60_LVCableDist_mvgd_33532_lvgd_1163850012_building_445766,BranchTee_mvgd_33532_lvgd_1163850012_60,BranchTee_mvgd_33532_lvgd_1163850012_building_445766,0.0232969058476282,0.02022171427574128,0.0019834324219078383,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021867089305871 47.5589381418644, 10.021638999999999 47.55879649624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_61_LVCableDist_mvgd_33532_lvgd_1163850012_building_445764,BranchTee_mvgd_33532_lvgd_1163850012_61,BranchTee_mvgd_33532_lvgd_1163850012_building_445764,0.02048599738363068,0.01778184572899143,0.001744119655698782,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02195820910474 47.5585920851495, 10.022145699999996 47.558458496244334)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_62_LVCableDist_mvgd_33532_lvgd_1163850012_65,BranchTee_mvgd_33532_lvgd_1163850012_62,BranchTee_mvgd_33532_lvgd_1163850012_65,0.03639571248917099,0.009208115259760261,0.002927116876240534,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020531700000005 47.55850169624434, 10.021014800000001 47.55849279624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_62_LVCableDist_mvgd_33532_lvgd_1163850012_building_445734,BranchTee_mvgd_33532_lvgd_1163850012_62,BranchTee_mvgd_33532_lvgd_1163850012_building_445734,0.018949015698710527,0.01644774562648074,0.0016132653986705024,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020449442534723 47.55834052138197, 10.020531700000005 47.55850169624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_62_LVCableDist_mvgd_33532_lvgd_1163850012_building_445739,BranchTee_mvgd_33532_lvgd_1163850012_62,BranchTee_mvgd_33532_lvgd_1163850012_building_445739,0.02121674922555703,0.018416138327783504,0.0018063337928518133,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020710219336923 47.55864942109209, 10.020531700000005 47.55850169624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_63_LVCableDist_mvgd_33532_lvgd_1163850012_64,BranchTee_mvgd_33532_lvgd_1163850012_63,BranchTee_mvgd_33532_lvgd_1163850012_64,0.044100158005218125,0.011157339975320186,0.0035467451497303644,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021186600000004 47.5584940962443, 10.021191499999995 47.55889099624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_63_LVCableDist_mvgd_33532_lvgd_1163850012_building_445759,BranchTee_mvgd_33532_lvgd_1163850012_63,BranchTee_mvgd_33532_lvgd_1163850012_building_445759,0.007203366311594064,0.0062525219584636475,0.0006132741567803052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02119081171534 47.55895582690122, 10.021191499999995 47.55889099624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_64_LVCableDist_mvgd_33532_lvgd_1163850012_65,BranchTee_mvgd_33532_lvgd_1163850012_64,BranchTee_mvgd_33532_lvgd_1163850012_65,0.012939074804440525,0.003273585925523453,0.001040622140156906,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014800000001 47.55849279624441, 10.021186600000004 47.5584940962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_64_LVCableDist_mvgd_33532_lvgd_1163850012_building_445817,BranchTee_mvgd_33532_lvgd_1163850012_64,BranchTee_mvgd_33532_lvgd_1163850012_building_445817,0.042898171225757224,0.03723561262395727,0.003652228506489979,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021637090050856 47.558257804860894, 10.021186600000004 47.5584940962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_65_LVCableDist_mvgd_33532_lvgd_1163850012_66,BranchTee_mvgd_33532_lvgd_1163850012_65,BranchTee_mvgd_33532_lvgd_1163850012_66,0.05980922924826455,0.015131734999810933,0.004810143621714322,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014800000001 47.55849279624441, 10.021014799999996 47.55903109624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_65_LVCableDist_mvgd_33532_lvgd_1163850012_building_445738,BranchTee_mvgd_33532_lvgd_1163850012_65,BranchTee_mvgd_33532_lvgd_1163850012_building_445738,0.025947195205470626,0.022522165438348504,0.002209070533430581,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020818328053805 47.55830095711712, 10.021014800000001 47.55849279624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_66_LVCableDist_mvgd_33532_lvgd_1163850012_building_445741,BranchTee_mvgd_33532_lvgd_1163850012_66,BranchTee_mvgd_33532_lvgd_1163850012_building_445741,0.024233413247006154,0.021034602698401343,0.002063164003064223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020710175787341 47.558960822594976, 10.021014799999996 47.55903109624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_66_LVCableDist_mvgd_33532_lvgd_1163850012_building_445751,BranchTee_mvgd_33532_lvgd_1163850012_66,BranchTee_mvgd_33532_lvgd_1163850012_building_445751,0.033400371627745444,0.028991522572883045,0.002843612813801429,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020709649998897 47.5592492462777, 10.021014799999996 47.55903109624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_66_LVStation_mvgd_33532_lvgd_1163850012,BusBar_mvgd_33532_lvgd_1163850012_LV,BranchTee_mvgd_33532_lvgd_1163850012_66,0.035954431939834615,0.009096471280778158,0.002891626988702173,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014800000001 47.55935469624443, 10.021014799999996 47.55903109624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_6_LVCableDist_mvgd_33532_lvgd_1163850012_building_445965,BranchTee_mvgd_33532_lvgd_1163850012_6,BranchTee_mvgd_33532_lvgd_1163850012_building_445965,0.021740769462182917,0.018870987893174773,0.0018509473880587242,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021072774662846 47.56102926940478, 10.021058299999996 47.561224696244565)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_7_LVCableDist_mvgd_33532_lvgd_1163850012_building_441831,BranchTee_mvgd_33532_lvgd_1163850012_7,BranchTee_mvgd_33532_lvgd_1163850012_building_441831,0.016660952147993763,0.014461706464458586,0.001418466163975599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018700407973242 47.55942846519647, 10.018890100000004 47.55935129624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_7_LVCableDist_mvgd_33532_lvgd_1163850012_building_441836,BranchTee_mvgd_33532_lvgd_1163850012_7,BranchTee_mvgd_33532_lvgd_1163850012_building_441836,0.014090156214776245,0.01223025559442578,0.0011995958969366152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019021880090664 47.559261273614894, 10.018890100000004 47.55935129624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_8_LVCableDist_mvgd_33532_lvgd_1163850012_building_441948,BranchTee_mvgd_33532_lvgd_1163850012_8,BranchTee_mvgd_33532_lvgd_1163850012_building_441948,0.015463975264124933,0.013422730529260442,0.0013165589504053746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019219000178044 47.56113141549211, 10.019418700000001 47.561098996244624)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_8_LVCableDist_mvgd_33532_lvgd_1163850012_building_445978,BranchTee_mvgd_33532_lvgd_1163850012_8,BranchTee_mvgd_33532_lvgd_1163850012_building_445978,0.015619732828551341,0.013557928095182564,0.001329819707231251,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019592310498497 47.5611759189537, 10.019418700000001 47.561098996244624)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_9_LVCableDist_mvgd_33532_lvgd_1163850012_building_441921,BranchTee_mvgd_33532_lvgd_1163850012_9,BranchTee_mvgd_33532_lvgd_1163850012_building_441921,0.022437360864286614,0.01947562923020078,0.0019102532023497398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018286607692191 47.56011849241002, 10.018455000000003 47.5599518962445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850012_9_LVCableDist_mvgd_33532_lvgd_1163850012_building_442014,BranchTee_mvgd_33532_lvgd_1163850012_9,BranchTee_mvgd_33532_lvgd_1163850012_building_442014,0.013062966263546718,0.011338654716758552,0.0011121438607713063,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018418764266194 47.55983692002308, 10.018455000000003 47.5599518962445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_10_LVCableDist_mvgd_33532_lvgd_1163850013_11,BranchTee_mvgd_33532_lvgd_1163850013_10,BranchTee_mvgd_33532_lvgd_1163850013_11,0.03194473760010631,0.02772803223689228,0.002719684265360921,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0120902 47.55138469624373, 10.012494899999997 47.551470696243726)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_10_LVCableDist_mvgd_33532_lvgd_1163850013_12,BranchTee_mvgd_33532_lvgd_1163850013_10,BranchTee_mvgd_33532_lvgd_1163850013_12,0.010735852618577735,0.009318720072925474,0.0009140200119184118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012494899999997 47.551470696243726, 10.012612700000002 47.5515250962437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_10_LVCableDist_mvgd_33532_lvgd_1163850013_building_441617,BranchTee_mvgd_33532_lvgd_1163850013_10,BranchTee_mvgd_33532_lvgd_1163850013_building_441617,0.015547988579124306,0.013495654086679897,0.0013237116055232507,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012315157693441 47.55153951024117, 10.012494899999997 47.551470696243726)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_11_LVCableDist_mvgd_33532_lvgd_1163850013_9,BranchTee_mvgd_33532_lvgd_1163850013_9,BranchTee_mvgd_33532_lvgd_1163850013_11,0.07274591012811198,0.0631434499912012,0.006193380256287576,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011226500000006 47.55110319624368, 10.011965499999999 47.551310196243705, 10.0120902 47.55138469624373)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_11_LVCableDist_mvgd_33532_lvgd_1163850013_building_441615,BranchTee_mvgd_33532_lvgd_1163850013_11,BranchTee_mvgd_33532_lvgd_1163850013_building_441615,0.01278310943934296,0.01109573899334969,0.0010883176452966706,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012241339444069 47.55133235837812, 10.0120902 47.55138469624373)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_12_LVCableDist_mvgd_33532_lvgd_1163850013_building_441603,BranchTee_mvgd_33532_lvgd_1163850013_12,BranchTee_mvgd_33532_lvgd_1163850013_building_441603,0.01087053913499285,0.009435627969173794,0.0009254868395391604,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012510018967882 47.5515938501722, 10.012612700000002 47.5515250962437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_1_LVCableDist_mvgd_33532_lvgd_1163850013_3,BranchTee_mvgd_33532_lvgd_1163850013_1,BranchTee_mvgd_33532_lvgd_1163850013_3,0.03460517786698712,0.03003729438854482,0.002946186596459871,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008992999999995 47.548526896243445, 10.009395299999994 47.54867729624346)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_1_LVCableDist_mvgd_33532_lvgd_1163850013_building_431799,BranchTee_mvgd_33532_lvgd_1163850013_1,BranchTee_mvgd_33532_lvgd_1163850013_building_431799,0.02960772512255126,0.025699505406374494,0.0025207176580053026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008706805201266 47.54870955994722, 10.008992999999995 47.548526896243445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_2_LVCableDist_mvgd_33532_lvgd_1163850013_4,BranchTee_mvgd_33532_lvgd_1163850013_2,BranchTee_mvgd_33532_lvgd_1163850013_4,0.02934212321148472,0.025468962947568737,0.0024981050653642206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0113647 47.550618496243615, 10.010989900000002 47.55054649624362)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_2_LVCableDist_mvgd_33532_lvgd_1163850013_5,BranchTee_mvgd_33532_lvgd_1163850013_2,BranchTee_mvgd_33532_lvgd_1163850013_5,0.014162744103655157,0.012293261881972677,0.001205775823712382,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011421099999998 47.55049689624366, 10.0113647 47.550618496243615)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_2_LVCableDist_mvgd_33532_lvgd_1163850013_building_441590,BranchTee_mvgd_33532_lvgd_1163850013_2,BranchTee_mvgd_33532_lvgd_1163850013_building_441590,0.02098282091818292,0.018213088556982775,0.0017864178009049656,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011108603957808 47.55069282066604, 10.0113647 47.550618496243615)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_2_LVStation_mvgd_33532_lvgd_1163850013,BusBar_mvgd_33532_lvgd_1163850013_LV,BranchTee_mvgd_33532_lvgd_1163850013_2,0.01275756486060587,0.011073566299005895,0.0010861428523862944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0113647 47.550618496243615, 10.011309700000002 47.550727096243655)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_3_LVCableDist_mvgd_33532_lvgd_1163850013_6,BranchTee_mvgd_33532_lvgd_1163850013_3,BranchTee_mvgd_33532_lvgd_1163850013_6,0.2132437329751962,0.18509556022247028,0.018154966007845275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009395299999994 47.54867729624346, 10.009869099999994 47.54889379624348, 10.010265700000003 47.549077596243514, 10.010853500000003 47.54939529624354, 10.0108818 47.54948389624357, 10.010915400000002 47.54958829624355, 10.010941099999998 47.54974169624357, 10.010938399999999 47.54987689624357, 10.0109391 47.550002696243595, 10.010967000000004 47.550084196243624)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_3_LVCableDist_mvgd_33532_lvgd_1163850013_building_441583,BranchTee_mvgd_33532_lvgd_1163850013_3,BranchTee_mvgd_33532_lvgd_1163850013_building_441583,0.025175311467068317,0.021852170353415298,0.002143354543388649,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00925530006519 47.548883046365745, 10.009395299999994 47.54867729624346)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_4_LVCableDist_mvgd_33532_lvgd_1163850013_building_441588,BranchTee_mvgd_33532_lvgd_1163850013_4,BranchTee_mvgd_33532_lvgd_1163850013_building_441588,0.018715661864135168,0.016245194498069326,0.0015933983157067617,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010777779500227 47.55063422275172, 10.010989900000002 47.55054649624362)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_5_LVCableDist_mvgd_33532_lvgd_1163850013_6,BranchTee_mvgd_33532_lvgd_1163850013_5,BranchTee_mvgd_33532_lvgd_1163850013_6,0.061868571819169146,0.05370192033903882,0.005267314554381766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010967000000004 47.550084196243624, 10.011038599999996 47.55013499624356, 10.011187100000004 47.5501861962436, 10.0112888 47.55023349624361, 10.011349199999993 47.55028779624364, 10.0114224 47.55038699624365, 10.011433699999996 47.55043539624362, 10.011421099999998 47.55049689624366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_5_LVCableDist_mvgd_33532_lvgd_1163850013_building_441594,BranchTee_mvgd_33532_lvgd_1163850013_5,BranchTee_mvgd_33532_lvgd_1163850013_building_441594,0.018564807127629635,0.016114252586782524,0.0015805549717305102,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011624513595873 47.55059125115963, 10.011421099999998 47.55049689624366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_6_LVCableDist_mvgd_33532_lvgd_1163850013_7,BranchTee_mvgd_33532_lvgd_1163850013_6,BranchTee_mvgd_33532_lvgd_1163850013_7,0.23141378568289925,0.20086716597275656,0.019701912709005658,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010967000000004 47.550084196243624, 10.0109391 47.550002696243595, 10.010938399999999 47.54987689624357, 10.010941099999998 47.54974169624357, 10.010915400000002 47.54958829624355, 10.0108818 47.54948389624357, 10.010853500000003 47.54939529624354, 10.0109938 47.54948729624356, 10.0111763 47.54972289624361, 10.011336499999995 47.54985419624361, 10.011585599999998 47.55000319624362, 10.011965100000005 47.550147096243585, 10.012353699999997 47.550285096243634)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_7_LVCableDist_mvgd_33532_lvgd_1163850013_building_441599,BranchTee_mvgd_33532_lvgd_1163850013_7,BranchTee_mvgd_33532_lvgd_1163850013_building_441599,0.024011425353733323,0.020841917207040525,0.0020442645840740756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012433712998028 47.55049428849969, 10.012353699999997 47.550285096243634)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_8_LVCableDist_mvgd_33532_lvgd_1163850013_9,BranchTee_mvgd_33532_lvgd_1163850013_8,BranchTee_mvgd_33532_lvgd_1163850013_9,0.01701857030202408,0.014772119022156902,0.0014489127583004317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011259800000001 47.550951696243665, 10.011226500000006 47.55110319624368)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_8_LVCableDist_mvgd_33532_lvgd_1163850013_building_441591,BranchTee_mvgd_33532_lvgd_1163850013_8,BranchTee_mvgd_33532_lvgd_1163850013_building_441591,0.019999404390735834,0.017359483011158704,0.001702692509763904,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010997256122629 47.55097858169381, 10.011259800000001 47.550951696243665)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_8_LVStation_mvgd_33532_lvgd_1163850013,BusBar_mvgd_33532_lvgd_1163850013_LV,BranchTee_mvgd_33532_lvgd_1163850013_8,0.025236112442698758,0.021904945600262522,0.0021485309658345214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011309700000002 47.550727096243655, 10.011259800000001 47.550951696243665)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850013_9_LVCableDist_mvgd_33532_lvgd_1163850013_building_441593,BranchTee_mvgd_33532_lvgd_1163850013_9,BranchTee_mvgd_33532_lvgd_1163850013_building_441593,0.02040991554780102,0.017715806695491287,0.0017376422641992503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011260168300877 47.5512854683959, 10.011226500000006 47.55110319624368)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_10_LVCableDist_mvgd_33532_lvgd_1163850014_11,BranchTee_mvgd_33532_lvgd_1163850014_10,BranchTee_mvgd_33532_lvgd_1163850014_11,0.04730610103338014,0.011968443561445176,0.0038045823865969553,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023136700000002 47.55470039624399, 10.023369299999995 47.55430489624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_10_LVCableDist_mvgd_33532_lvgd_1163850014_6,BranchTee_mvgd_33532_lvgd_1163850014_6,BranchTee_mvgd_33532_lvgd_1163850014_10,0.004561221449735076,0.0011539890267829743,0.00036683519482582787,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023369299999995 47.55430489624399, 10.023317800000003 47.55428329624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_10_LVCableDist_mvgd_33532_lvgd_1163850014_8,BranchTee_mvgd_33532_lvgd_1163850014_8,BranchTee_mvgd_33532_lvgd_1163850014_10,0.021132573463793082,0.00534654108633965,0.0016995824011596533,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023369299999995 47.55430489624399, 10.023634200000004 47.554367596244006)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_10_LVCableDist_mvgd_33532_lvgd_1163850014_building_445558,BranchTee_mvgd_33532_lvgd_1163850014_10,BranchTee_mvgd_33532_lvgd_1163850014_building_445558,0.01291398558092078,0.011209339484239236,0.00109946006842176,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023510606909573 47.55423906137805, 10.023369299999995 47.55430489624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_11_LVCableDist_mvgd_33532_lvgd_1163850014_7,BranchTee_mvgd_33532_lvgd_1163850014_7,BranchTee_mvgd_33532_lvgd_1163850014_11,0.012768110823186029,0.0032303320382660655,0.0010268724009559439,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022971500000006 47.554674596244055, 10.023136700000002 47.55470039624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_11_LVCableDist_mvgd_33532_lvgd_1163850014_9,BranchTee_mvgd_33532_lvgd_1163850014_9,BranchTee_mvgd_33532_lvgd_1163850014_11,0.020544792101849778,0.005197832401767994,0.001652310219179542,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023136700000002 47.55470039624399, 10.023225600000005 47.554726896243984, 10.023397900000003 47.55475009624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_11_LVCableDist_mvgd_33532_lvgd_1163850014_building_445678,BranchTee_mvgd_33532_lvgd_1163850014_11,BranchTee_mvgd_33532_lvgd_1163850014_building_445678,0.013946509012528967,0.012105569822875143,0.0011873661819642894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023072950000957 47.554818246303526, 10.023136700000002 47.55470039624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_12_LVCableDist_mvgd_33532_lvgd_1163850014_13,BranchTee_mvgd_33532_lvgd_1163850014_12,BranchTee_mvgd_33532_lvgd_1163850014_13,0.038700459116759366,0.012384146917362997,0.003173266137151024,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023353500000002 47.55655429624416, 10.023626598440895 47.55684934660727)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_12_LVCableDist_mvgd_33532_lvgd_1163850014_building_445710,BranchTee_mvgd_33532_lvgd_1163850014_12,BranchTee_mvgd_33532_lvgd_1163850014_building_445710,0.020363665066144985,0.017675661277413848,0.00173370462950023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023796601675768 47.556706824438585, 10.023626598440895 47.55684934660727)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_12_LVCableDist_mvgd_33532_lvgd_1163850014_building_445719,BranchTee_mvgd_33532_lvgd_1163850014_12,BranchTee_mvgd_33532_lvgd_1163850014_building_445719,0.015033861599373413,0.013049391868256122,0.0012799402941188526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023441699996564 47.55690034636016, 10.023626598440895 47.55684934660727)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_13_LVCableDist_mvgd_33532_lvgd_1163850014_15,BranchTee_mvgd_33532_lvgd_1163850014_13,BranchTee_mvgd_33532_lvgd_1163850014_15,0.05578131881411405,0.017850022020516495,0.004573820934382639,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022828600000002 47.55620009624414, 10.023353500000002 47.55655429624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_13_LVCableDist_mvgd_33532_lvgd_1163850014_building_445708,BranchTee_mvgd_33532_lvgd_1163850014_13,BranchTee_mvgd_33532_lvgd_1163850014_building_445708,0.028664787097300602,0.02488103520045692,0.0024404385916192263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023027452590073 47.556687397839816, 10.023353500000002 47.55655429624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_13_LVCableDist_mvgd_33532_lvgd_1163850014_building_445712,BranchTee_mvgd_33532_lvgd_1163850014_13,BranchTee_mvgd_33532_lvgd_1163850014_building_445712,0.014137417494519765,0.012271278385243155,0.0012036195881150596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02351084248783 47.55648490195617, 10.023353500000002 47.55655429624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_14_LVCableDist_mvgd_33532_lvgd_1163850014_15,BranchTee_mvgd_33532_lvgd_1163850014_14,BranchTee_mvgd_33532_lvgd_1163850014_15,0.007417366140568363,0.0023735571649818763,0.0006081911516786961,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022737400000002 47.55617489624409, 10.022771299999999 47.55618429624414, 10.022828600000002 47.55620009624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_14_LVCableDist_mvgd_33532_lvgd_1163850014_building_445687,BranchTee_mvgd_33532_lvgd_1163850014_14,BranchTee_mvgd_33532_lvgd_1163850014_building_445687,0.018914657136347456,0.016417922394349593,0.0016103402082178829,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022803183501422 47.55601060204837, 10.022737400000002 47.55617489624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_14_LVCableDist_mvgd_33532_lvgd_1163850014_building_445688,BranchTee_mvgd_33532_lvgd_1163850014_14,BranchTee_mvgd_33532_lvgd_1163850014_building_445688,0.020566996228080493,0.017852152725973867,0.0017510156673524147,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022516782562102 47.55606580177423, 10.022737400000002 47.55617489624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_14_LVCableDist_mvgd_33532_lvgd_1163850014_building_445689,BranchTee_mvgd_33532_lvgd_1163850014_14,BranchTee_mvgd_33532_lvgd_1163850014_building_445689,0.023810421982671588,0.02066744628095894,0.002027151727728081,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022621961957208 47.55637440126184, 10.022737400000002 47.55617489624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_14_LVStation_mvgd_33532_lvgd_1163850014,BusBar_mvgd_33532_lvgd_1163850014_LV,BranchTee_mvgd_33532_lvgd_1163850014_14,0.34430166356511605,0.11017653234083713,0.028231210556435238,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0220596 47.554534796243956, 10.0221315 47.55460579624395, 10.022150100000003 47.55466109624403, 10.022182299999999 47.554783896244004, 10.022228000000007 47.55493279624405, 10.022324100000004 47.555069396244036, 10.022528700000004 47.55521999624407, 10.022780400000002 47.55538379624406, 10.022840399999993 47.555411196244066, 10.022914499999995 47.5554697962441, 10.022992799999995 47.55551839624412, 10.023043499999998 47.55554739624405, 10.023142599999995 47.55559599624411, 10.022939099999997 47.55568579624407, 10.02249609999999 47.55582619624412, 10.021919099999998 47.55597929624409, 10.022152600000004 47.556355996244186, 10.022737400000002 47.55617489624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_15_LVCableDist_mvgd_33532_lvgd_1163850014_building_445696,BranchTee_mvgd_33532_lvgd_1163850014_15,BranchTee_mvgd_33532_lvgd_1163850014_building_445696,0.024450671960077344,0.021223183261347135,0.0020816607930785607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023142596782192 47.55625601236543, 10.022828600000002 47.55620009624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_16_LVCableDist_mvgd_33532_lvgd_1163850014_22,BranchTee_mvgd_33532_lvgd_1163850014_16,BranchTee_mvgd_33532_lvgd_1163850014_22,0.006123895695517553,0.001549345610965941,0.0004925129146467354,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023052700000006 47.55534659624406, 10.022971400000001 47.555347496244075)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_16_LVCableDist_mvgd_33532_lvgd_1163850014_25,BranchTee_mvgd_33532_lvgd_1163850014_16,BranchTee_mvgd_33532_lvgd_1163850014_25,0.009785750860685727,0.002475794967753489,0.000787016781153031,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023165 47.555302296244086, 10.023052700000006 47.55534659624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_16_LVCableDist_mvgd_33532_lvgd_1163850014_building_445695,BranchTee_mvgd_33532_lvgd_1163850014_16,BranchTee_mvgd_33532_lvgd_1163850014_building_445695,0.008897958561784672,0.007723428031629095,0.0007575469298654915,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023036395170665 47.55526727838356, 10.023052700000006 47.55534659624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_17_LVCableDist_mvgd_33532_lvgd_1163850014_18,BranchTee_mvgd_33532_lvgd_1163850014_17,BranchTee_mvgd_33532_lvgd_1163850014_18,0.04629917241557129,0.011713690621139536,0.003723600382157977,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0214995 47.55542509624403, 10.021976700000003 47.5551623962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_17_LVCableDist_mvgd_33532_lvgd_1163850014_41,BranchTee_mvgd_33532_lvgd_1163850014_17,BranchTee_mvgd_33532_lvgd_1163850014_41,0.015296030886549001,0.003869895814296897,0.0012301797955139818,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021347099999998 47.55551609624407, 10.0214995 47.55542509624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_17_LVCableDist_mvgd_33532_lvgd_1163850014_building_445628,BranchTee_mvgd_33532_lvgd_1163850014_17,BranchTee_mvgd_33532_lvgd_1163850014_building_445628,0.0177535488306441,0.015410080384999079,0.0015114867435586277,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021497855134967 47.555265312906755, 10.0214995 47.55542509624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_18_LVCableDist_mvgd_33532_lvgd_1163850014_19,BranchTee_mvgd_33532_lvgd_1163850014_18,BranchTee_mvgd_33532_lvgd_1163850014_19,0.02826754528805344,0.00715168895787752,0.0022734108828663157,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021976700000003 47.5551623962441, 10.022115799999998 47.55511189624401, 10.022324100000004 47.555069396244036)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_18_LVCableDist_mvgd_33532_lvgd_1163850014_building_445637,BranchTee_mvgd_33532_lvgd_1163850014_18,BranchTee_mvgd_33532_lvgd_1163850014_building_445637,0.01930128870875548,0.016753518599199758,0.0016432569226117542,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021741225795195 47.555093842100405, 10.021976700000003 47.5551623962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_18_LVCableDist_mvgd_33532_lvgd_1163850014_building_445640,BranchTee_mvgd_33532_lvgd_1163850014_18,BranchTee_mvgd_33532_lvgd_1163850014_building_445640,0.030023405028501777,0.02606031556473954,0.0025561074650462144,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022100758978027 47.55541919667441, 10.021976700000003 47.5551623962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_19_LVCableDist_mvgd_33532_lvgd_1163850014_20,BranchTee_mvgd_33532_lvgd_1163850014_19,BranchTee_mvgd_33532_lvgd_1163850014_20,0.022747331819338083,0.0057550749502925345,0.0018294489736294876,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022324100000004 47.555069396244036, 10.022528700000004 47.55521999624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_19_LVCableDist_mvgd_33532_lvgd_1163850014_37,BranchTee_mvgd_33532_lvgd_1163850014_19,BranchTee_mvgd_33532_lvgd_1163850014_37,0.016814786926744662,0.0042541410924663995,0.0013523254036669112,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022228000000007 47.55493279624405, 10.022324100000004 47.555069396244036)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_1_LVCableDist_mvgd_33532_lvgd_1163850014_4,BranchTee_mvgd_33532_lvgd_1163850014_1,BranchTee_mvgd_33532_lvgd_1163850014_4,0.026601457988089466,0.006730168870986635,0.0021394161917480804,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0238513 47.55490619624402, 10.023810700000004 47.55503709624406, 10.023752799999999 47.555135196244066)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_1_LVCableDist_mvgd_33532_lvgd_1163850014_9,BranchTee_mvgd_33532_lvgd_1163850014_1,BranchTee_mvgd_33532_lvgd_1163850014_9,0.04269979835482272,0.010803048983770148,0.0034341215442246806,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023397900000003 47.55475009624399, 10.023651499999994 47.55476119624406, 10.023777000000006 47.55480249624402, 10.023825699999994 47.554844696244004, 10.0238513 47.55490619624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_1_LVCableDist_mvgd_33532_lvgd_1163850014_building_445660,BranchTee_mvgd_33532_lvgd_1163850014_1,BranchTee_mvgd_33532_lvgd_1163850014_building_445660,0.009300387265279169,0.008072736146262319,0.000791808567150624,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023962277530133 47.55494290529405, 10.0238513 47.55490619624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_1_LVCableDist_mvgd_33532_lvgd_1163850014_building_445662,BranchTee_mvgd_33532_lvgd_1163850014_1,BranchTee_mvgd_33532_lvgd_1163850014_building_445662,0.026295640845551128,0.02282461625393838,0.0022387362059592985,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024177617462433 47.554822030027445, 10.0238513 47.55490619624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_1_LVCableDist_mvgd_33532_lvgd_1163850014_building_445681,BranchTee_mvgd_33532_lvgd_1163850014_1,BranchTee_mvgd_33532_lvgd_1163850014_building_445681,0.01772383263345248,0.015384286725836752,0.0015089567908966235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02361839922065 47.55492905234511, 10.0238513 47.55490619624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_20_LVCableDist_mvgd_33532_lvgd_1163850014_21,BranchTee_mvgd_33532_lvgd_1163850014_20,BranchTee_mvgd_33532_lvgd_1163850014_21,0.02627891003693613,0.006648564239344841,0.002113475346339472,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022528700000004 47.55521999624407, 10.022780400000002 47.55538379624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_20_LVCableDist_mvgd_33532_lvgd_1163850014_building_445683,BranchTee_mvgd_33532_lvgd_1163850014_20,BranchTee_mvgd_33532_lvgd_1163850014_building_445683,0.012716251637911298,0.011037706421707007,0.0010826255618979416,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02240498129565 47.5552978799059, 10.022528700000004 47.55521999624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_20_LVCableDist_mvgd_33532_lvgd_1163850014_building_445684,BranchTee_mvgd_33532_lvgd_1163850014_20,BranchTee_mvgd_33532_lvgd_1163850014_building_445684,0.014462059326679235,0.012553067495557575,0.001231258672018479,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022720500001832 47.555213746289326, 10.022528700000004 47.55521999624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_21_LVCableDist_mvgd_33532_lvgd_1163850014_23,BranchTee_mvgd_33532_lvgd_1163850014_21,BranchTee_mvgd_33532_lvgd_1163850014_23,0.00544871526090195,0.0013785249610081933,0.0004382116821798953,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022780400000002 47.55538379624406, 10.022840399999993 47.555411196244066)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_21_LVCableDist_mvgd_33532_lvgd_1163850014_building_445692,BranchTee_mvgd_33532_lvgd_1163850014_21,BranchTee_mvgd_33532_lvgd_1163850014_building_445692,0.018089358447436303,0.01570156313237471,0.0015400766209393577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02258202690074 47.55547558729968, 10.022780400000002 47.55538379624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_22_LVCableDist_mvgd_33532_lvgd_1163850014_23,BranchTee_mvgd_33532_lvgd_1163850014_22,BranchTee_mvgd_33532_lvgd_1163850014_23,0.012142177769952816,0.0030719709757980624,0.0009765318779050256,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022840399999993 47.555411196244066, 10.022971400000001 47.555347496244075)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_22_LVCableDist_mvgd_33532_lvgd_1163850014_building_445685,BranchTee_mvgd_33532_lvgd_1163850014_22,BranchTee_mvgd_33532_lvgd_1163850014_building_445685,0.009393779982798266,0.008153801025068895,0.0007997597579700828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022875366418825 47.55529354712057, 10.022971400000001 47.555347496244075)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_23_LVCableDist_mvgd_33532_lvgd_1163850014_28,BranchTee_mvgd_33532_lvgd_1163850014_23,BranchTee_mvgd_33532_lvgd_1163850014_28,0.03077981759651092,0.007787293851917263,0.0024754598103048334,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022840399999993 47.555411196244066, 10.022914499999995 47.5554697962441, 10.022992799999995 47.55551839624412, 10.023043499999998 47.55554739624405, 10.023142599999995 47.55559599624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_24_LVCableDist_mvgd_33532_lvgd_1163850014_25,BranchTee_mvgd_33532_lvgd_1163850014_24,BranchTee_mvgd_33532_lvgd_1163850014_25,0.013007800406294996,0.003290973502792634,0.0010461493810119344,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023103499999994 47.55519289624404, 10.023165 47.555302296244086)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_24_LVCableDist_mvgd_33532_lvgd_1163850014_building_445693,BranchTee_mvgd_33532_lvgd_1163850014_24,BranchTee_mvgd_33532_lvgd_1163850014_building_445693,0.0132216080718519,0.011476355806367449,0.0011256501739324003,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022980915871686 47.55510771524766, 10.023103499999994 47.55519289624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_25_LVCableDist_mvgd_33532_lvgd_1163850014_building_445697,BranchTee_mvgd_33532_lvgd_1163850014_25,BranchTee_mvgd_33532_lvgd_1163850014_building_445697,0.00918633560126798,0.007973739301900607,0.0007820985322793898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023269933178552 47.555260146581446, 10.023165 47.555302296244086)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_26_LVCableDist_mvgd_33532_lvgd_1163850014_38,BranchTee_mvgd_33532_lvgd_1163850014_26,BranchTee_mvgd_33532_lvgd_1163850014_38,0.004778420431870509,0.0012089403692632388,0.0003843033734279106,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024363200000002 47.555612696244054, 10.024312999999994 47.55558639624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_26_LVCableDist_mvgd_33532_lvgd_1163850014_building_445729,BranchTee_mvgd_33532_lvgd_1163850014_26,BranchTee_mvgd_33532_lvgd_1163850014_building_445729,0.015668262876340707,0.013600052176663734,0.0013339514177189752,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024506700013474 47.55571479634618, 10.024363200000002 47.555612696244054)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_27_LVCableDist_mvgd_33532_lvgd_1163850014_32,BranchTee_mvgd_33532_lvgd_1163850014_27,BranchTee_mvgd_33532_lvgd_1163850014_32,0.03772318962043918,0.009543966973971113,0.0030338789217675896,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024722799999994 47.554873096244, 10.024357099999996 47.55510509624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_27_LVCableDist_mvgd_33532_lvgd_1163850014_building_445670,BranchTee_mvgd_33532_lvgd_1163850014_27,BranchTee_mvgd_33532_lvgd_1163850014_building_445670,0.01292205102543968,0.011216340290081643,0.001100146737469595,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02480491207002 47.55497521398726, 10.024722799999994 47.554873096244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_28_LVCableDist_mvgd_33532_lvgd_1163850014_29,BranchTee_mvgd_33532_lvgd_1163850014_28,BranchTee_mvgd_33532_lvgd_1163850014_29,0.00802100462931422,0.002029314171216498,0.0006450874679772998,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023142599999995 47.55559599624411, 10.023179699999996 47.555615096244104, 10.023226799999994 47.55564019624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_28_LVCableDist_mvgd_33532_lvgd_1163850014_34,BranchTee_mvgd_33532_lvgd_1163850014_28,BranchTee_mvgd_33532_lvgd_1163850014_34,0.14718391790845897,0.03723753123084012,0.011837233029831114,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022152600000004 47.556355996244186, 10.021919099999998 47.55597929624409, 10.02249609999999 47.55582619624412, 10.022939099999997 47.55568579624407, 10.023142599999995 47.55559599624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_29_LVCableDist_mvgd_33532_lvgd_1163850014_33,BranchTee_mvgd_33532_lvgd_1163850014_29,BranchTee_mvgd_33532_lvgd_1163850014_33,0.05501561705061341,0.013918951113805193,0.004424618453988261,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0238362 47.55536759624411, 10.023542599999997 47.55550809624409, 10.023226799999994 47.55564019624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_29_LVCableDist_mvgd_33532_lvgd_1163850014_building_445691,BranchTee_mvgd_33532_lvgd_1163850014_29,BranchTee_mvgd_33532_lvgd_1163850014_building_445691,0.015417790859697704,0.013382642466217608,0.0013126269413340158,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023206014959388 47.5557782439617, 10.023226799999994 47.55564019624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_2_LVCableDist_mvgd_33532_lvgd_1163850014_8,BranchTee_mvgd_33532_lvgd_1163850014_2,BranchTee_mvgd_33532_lvgd_1163850014_8,0.02126339568460666,0.005379639108205485,0.0017101037484322098,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023905899999995 47.55441959624394, 10.023634200000004 47.554367596244006)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_2_LVCableDist_mvgd_33532_lvgd_1163850014_building_445574,BranchTee_mvgd_33532_lvgd_1163850014_2,BranchTee_mvgd_33532_lvgd_1163850014_building_445574,0.014326597130686536,0.012435486309435913,0.0012197258052407173,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02383160000469 47.5543008962905, 10.023905899999995 47.55441959624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_2_LVCableDist_mvgd_33532_lvgd_1163850014_building_445576,BranchTee_mvgd_33532_lvgd_1163850014_2,BranchTee_mvgd_33532_lvgd_1163850014_building_445576,0.03145155253001621,0.027299947596054072,0.0026776958886891244,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024011231835145 47.55414567498012, 10.023905899999995 47.55441959624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_2_LVCableDist_mvgd_33532_lvgd_1163850014_building_445581,BranchTee_mvgd_33532_lvgd_1163850014_2,BranchTee_mvgd_33532_lvgd_1163850014_building_445581,0.01481618299927314,0.012860446843369086,0.0012614077561149551,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024004351437162 47.55430414680295, 10.023905899999995 47.55441959624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_2_LVCableDist_mvgd_33532_lvgd_1163850014_building_445652,BranchTee_mvgd_33532_lvgd_1163850014_2,BranchTee_mvgd_33532_lvgd_1163850014_building_445652,0.01824568648686115,0.015837255870595476,0.0015533859463869725,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023775226432036 47.55455787527229, 10.023905899999995 47.55441959624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_2_LVCableDist_mvgd_33532_lvgd_1163850014_building_445653,BranchTee_mvgd_33532_lvgd_1163850014_2,BranchTee_mvgd_33532_lvgd_1163850014_building_445653,0.020887814876085157,0.018130623312441915,0.001778329256211249,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024048600009099 47.55458079634615, 10.023905899999995 47.55441959624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_30_LVCableDist_mvgd_33532_lvgd_1163850014_33,BranchTee_mvgd_33532_lvgd_1163850014_30,BranchTee_mvgd_33532_lvgd_1163850014_33,0.01793068056760562,0.004536462183604222,0.00144207089523341,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024028699999997 47.55546209624404, 10.0239819 47.555440696244055, 10.023883899999992 47.55539609624405, 10.0238362 47.55536759624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_30_LVCableDist_mvgd_33532_lvgd_1163850014_38,BranchTee_mvgd_33532_lvgd_1163850014_30,BranchTee_mvgd_33532_lvgd_1163850014_38,0.025479567811332027,0.006446330656267003,0.0020491884301497257,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024312999999994 47.55558639624412, 10.024028699999997 47.55546209624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_30_LVCableDist_mvgd_33532_lvgd_1163850014_building_445671,BranchTee_mvgd_33532_lvgd_1163850014_30,BranchTee_mvgd_33532_lvgd_1163850014_building_445671,0.022371409139575305,0.019418383133151366,0.0019046382597505504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024264950000982 47.55534004629268, 10.024028699999997 47.55546209624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_30_LVCableDist_mvgd_33532_lvgd_1163850014_building_445672,BranchTee_mvgd_33532_lvgd_1163850014_30,BranchTee_mvgd_33532_lvgd_1163850014_building_445672,0.01879582920924023,0.016314779753620518,0.001600223535866882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023885777458718 47.55560077679337, 10.024028699999997 47.55546209624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_31_LVCableDist_mvgd_33532_lvgd_1163850014_39,BranchTee_mvgd_33532_lvgd_1163850014_31,BranchTee_mvgd_33532_lvgd_1163850014_39,0.00994539335674447,0.002516184519256351,0.0007998559924891944,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020968300000003 47.55518889624408, 10.021089199999995 47.55522489624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_31_LVCableDist_mvgd_33532_lvgd_1163850014_building_445626,BranchTee_mvgd_33532_lvgd_1163850014_31,BranchTee_mvgd_33532_lvgd_1163850014_building_445626,0.015732760198135583,0.013656035851981685,0.0013394425365830368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021001500000066 47.55504909632756, 10.020968300000003 47.55518889624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_32_LVCableDist_mvgd_33532_lvgd_1163850014_33,BranchTee_mvgd_33532_lvgd_1163850014_32,BranchTee_mvgd_33532_lvgd_1163850014_33,0.048884814374172,0.012367858036665515,0.003931550046975986,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0238362 47.55536759624411, 10.024357099999996 47.55510509624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_32_LVCableDist_mvgd_33532_lvgd_1163850014_building_445674,BranchTee_mvgd_33532_lvgd_1163850014_32,BranchTee_mvgd_33532_lvgd_1163850014_building_445674,0.014809630814501894,0.012854759546987643,0.0012608499217057585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024519068541471 47.55518067524143, 10.024357099999996 47.55510509624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_34_LVCableDist_mvgd_33532_lvgd_1163850014_43,BranchTee_mvgd_33532_lvgd_1163850014_34,BranchTee_mvgd_33532_lvgd_1163850014_43,0.03824980547141434,0.009677200784267828,0.0030762318814779896,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022152600000004 47.556355996244186, 10.022339499999998 47.55667609624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_34_LVCableDist_mvgd_33532_lvgd_1163850014_building_445636,BranchTee_mvgd_33532_lvgd_1163850014_34,BranchTee_mvgd_33532_lvgd_1163850014_building_445636,0.024282202215096815,0.021076951522704036,0.002067317757291302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022266317695712 47.556151493623716, 10.022152600000004 47.556355996244186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_35_LVCableDist_mvgd_33532_lvgd_1163850014_36,BranchTee_mvgd_33532_lvgd_1163850014_35,BranchTee_mvgd_33532_lvgd_1163850014_36,0.013857863863643688,0.003506039557501853,0.0011145155406968442,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022150100000003 47.55466109624403, 10.022182299999999 47.554783896244004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_35_LVCableDist_mvgd_33532_lvgd_1163850014_building_445624,BranchTee_mvgd_33532_lvgd_1163850014_35,BranchTee_mvgd_33532_lvgd_1163850014_building_445624,0.012876128033454238,0.011176479133038278,0.0010962369843113568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02198141174121 47.554679935986016, 10.022150100000003 47.55466109624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_35_LVStation_mvgd_33532_lvgd_1163850014,BusBar_mvgd_33532_lvgd_1163850014_LV,BranchTee_mvgd_33532_lvgd_1163850014_35,0.01587039285178188,0.004015209391500816,0.0012763727255741932,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0220596 47.554534796243956, 10.0221315 47.55460579624395, 10.022150100000003 47.55466109624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_36_LVCableDist_mvgd_33532_lvgd_1163850014_37,BranchTee_mvgd_33532_lvgd_1163850014_36,BranchTee_mvgd_33532_lvgd_1163850014_37,0.016898169084519427,0.004275236778383415,0.0013590313946891365,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022182299999999 47.554783896244004, 10.022228000000007 47.55493279624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_36_LVCableDist_mvgd_33532_lvgd_1163850014_40,BranchTee_mvgd_33532_lvgd_1163850014_36,BranchTee_mvgd_33532_lvgd_1163850014_40,0.0716121347506154,0.018117870091905696,0.005759389604874641,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021368500000005 47.555090696244065, 10.021798400000005 47.55485509624404, 10.022182299999999 47.554783896244004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_36_LVCableDist_mvgd_33532_lvgd_1163850014_building_34967279,BranchTee_mvgd_33532_lvgd_1163850014_36,BranchTee_mvgd_33532_lvgd_1163850014_building_34967279,0.00974830902486985,0.008461532233587029,0.0008299433540730088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0222613 47.554714396244016, 10.022182299999999 47.554783896244004)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_37_LVCableDist_mvgd_33532_lvgd_1163850014_building_445625,BranchTee_mvgd_33532_lvgd_1163850014_37,BranchTee_mvgd_33532_lvgd_1163850014_building_445625,0.013098292876515235,0.011369318216815224,0.001115151468304093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022056518996525 47.55495244323171, 10.022228000000007 47.55493279624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_37_LVCableDist_mvgd_33532_lvgd_1163850014_building_445664,BranchTee_mvgd_33532_lvgd_1163850014_37,BranchTee_mvgd_33532_lvgd_1163850014_building_445664,0.020242074505935917,0.017570120671152375,0.0017233527544102958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02248757229429 47.5548855551141, 10.022228000000007 47.55493279624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_38_LVCableDist_mvgd_33532_lvgd_1163850014_building_445680,BranchTee_mvgd_33532_lvgd_1163850014_38,BranchTee_mvgd_33532_lvgd_1163850014_building_445680,0.029352598291255885,0.02547805531681011,0.0024989968839162673,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024561349988305 47.55538279628195, 10.024312999999994 47.55558639624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_39_LVCableDist_mvgd_33532_lvgd_1163850014_40,BranchTee_mvgd_33532_lvgd_1163850014_39,BranchTee_mvgd_33532_lvgd_1163850014_40,0.025783940150807812,0.006523336858154377,0.002073667506134444,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021089199999995 47.55522489624407, 10.021368500000005 47.555090696244065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_39_LVCableDist_mvgd_33532_lvgd_1163850014_44,BranchTee_mvgd_33532_lvgd_1163850014_39,BranchTee_mvgd_33532_lvgd_1163850014_44,0.006395865242977688,0.0016181539064733551,0.0005143860034736384,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021089199999995 47.55522489624407, 10.0211376 47.555272196244076)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_3_LVCableDist_mvgd_33532_lvgd_1163850014_7,BranchTee_mvgd_33532_lvgd_1163850014_3,BranchTee_mvgd_33532_lvgd_1163850014_7,0.03590471955564074,0.009083894047577108,0.00288762888154119,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022495699999997 47.554654496244005, 10.022971500000006 47.554674596244055)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_3_LVCableDist_mvgd_33532_lvgd_1163850014_building_445658,BranchTee_mvgd_33532_lvgd_1163850014_3,BranchTee_mvgd_33532_lvgd_1163850014_building_445658,0.015155869996703982,0.013155295157139056,0.0012903277426750352,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022661350010134 47.55457704627522, 10.022495699999997 47.554654496244005)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_3_LVStation_mvgd_33532_lvgd_1163850014,BusBar_mvgd_33532_lvgd_1163850014_LV,BranchTee_mvgd_33532_lvgd_1163850014_3,0.04190980017921125,0.010603179445340446,0.003370586121124512,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0220596 47.554534796243956, 10.0221315 47.55460579624395, 10.022150100000003 47.55466109624403, 10.022495699999997 47.554654496244005)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_40_LVCableDist_mvgd_33532_lvgd_1163850014_building_445605,BranchTee_mvgd_33532_lvgd_1163850014_40,BranchTee_mvgd_33532_lvgd_1163850014_building_445605,0.014507706602266269,0.012592689330767121,0.0012351449514653395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021387968926176 47.55496079105936, 10.021368500000005 47.555090696244065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_40_LVCableDist_mvgd_33532_lvgd_1163850014_building_445627,BranchTee_mvgd_33532_lvgd_1163850014_40,BranchTee_mvgd_33532_lvgd_1163850014_building_445627,0.017318621850359386,0.015032563766111947,0.0014744582952530344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021169913955896 47.55501211227773, 10.021368500000005 47.555090696244065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_41_LVCableDist_mvgd_33532_lvgd_1163850014_42,BranchTee_mvgd_33532_lvgd_1163850014_41,BranchTee_mvgd_33532_lvgd_1163850014_42,0.027414519426255845,0.006935873414842729,0.002204806472479233,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021347099999998 47.55551609624407, 10.021521700000003 47.5557325962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_41_LVCableDist_mvgd_33532_lvgd_1163850014_45,BranchTee_mvgd_33532_lvgd_1163850014_41,BranchTee_mvgd_33532_lvgd_1163850014_45,0.03931635545481548,0.009947037930068316,0.0031620089206469966,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020861399999998 47.55560269624407, 10.020993199999992 47.555617596244055, 10.021171900000004 47.555585696244066, 10.021235500000007 47.5555659962441, 10.021347099999998 47.55551609624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_42_LVCableDist_mvgd_33532_lvgd_1163850014_building_445638,BranchTee_mvgd_33532_lvgd_1163850014_42,BranchTee_mvgd_33532_lvgd_1163850014_building_445638,0.021655150217513547,0.01879667038880176,0.0018436580086481197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021722567205215 47.55559313848922, 10.021521700000003 47.5557325962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_43_LVCableDist_mvgd_33532_lvgd_1163850014_building_445654,BranchTee_mvgd_33532_lvgd_1163850014_43,BranchTee_mvgd_33532_lvgd_1163850014_building_445654,0.029046753183972825,0.025212581763688412,0.0024729580998032745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021972082087713 47.55659660215184, 10.022339499999998 47.55667609624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_43_LVCableDist_mvgd_33532_lvgd_1163850014_building_445700,BranchTee_mvgd_33532_lvgd_1163850014_43,BranchTee_mvgd_33532_lvgd_1163850014_building_445700,0.021370198794542324,0.01854933255366274,0.0018193980534984347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022389050432112 47.55648671319073, 10.022339499999998 47.55667609624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_43_LVCableDist_mvgd_33532_lvgd_1163850014_building_445702,BranchTee_mvgd_33532_lvgd_1163850014_43,BranchTee_mvgd_33532_lvgd_1163850014_building_445702,0.031436672376841154,0.02728703162309812,0.0026764290346938603,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022686551344247 47.55651888504006, 10.022339499999998 47.55667609624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_43_LVCableDist_mvgd_33532_lvgd_1163850014_building_445704,BranchTee_mvgd_33532_lvgd_1163850014_43,BranchTee_mvgd_33532_lvgd_1163850014_building_445704,0.015177505637909046,0.013174074893705052,0.001292169739741751,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022335157159038 47.556812666533204, 10.022339499999998 47.55667609624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_44_LVCableDist_mvgd_33532_lvgd_1163850014_building_445629,BranchTee_mvgd_33532_lvgd_1163850014_44,BranchTee_mvgd_33532_lvgd_1163850014_building_445629,0.01683040596890911,0.014608792381013107,0.0014328929811940699,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020989334945183 47.55538553335887, 10.0211376 47.555272196244076)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_45_LVCableDist_mvgd_33532_lvgd_1163850014_building_445619,BranchTee_mvgd_33532_lvgd_1163850014_45,BranchTee_mvgd_33532_lvgd_1163850014_building_445619,0.020167999909643367,0.01750582392157044,0.0017170462535862246,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020722760242975 47.55575799388701, 10.020861399999998 47.55560269624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_46_LVCableDist_mvgd_33532_lvgd_1163850014_47,BranchTee_mvgd_33532_lvgd_1163850014_46,BranchTee_mvgd_33532_lvgd_1163850014_47,0.03030140152084222,0.0076662545847730815,0.002436983306530624,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018703499999997 47.55410759624395, 10.018303200000005 47.55408029624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_46_LVCableDist_mvgd_33532_lvgd_1163850014_48,BranchTee_mvgd_33532_lvgd_1163850014_46,BranchTee_mvgd_33532_lvgd_1163850014_48,0.039261766174762784,0.009933226842214985,0.003157618590248832,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019223799999997 47.55412769624398, 10.018912800000004 47.55411979624392, 10.018703499999997 47.55410759624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_46_LVCableDist_mvgd_33532_lvgd_1163850014_building_441688,BranchTee_mvgd_33532_lvgd_1163850014_46,BranchTee_mvgd_33532_lvgd_1163850014_building_441688,0.014196762211337477,0.01232278959944093,0.0012086720288200631,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018772150000652 47.553988596289535, 10.018703499999997 47.55410759624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_47_LVCableDist_mvgd_33532_lvgd_1163850014_49,BranchTee_mvgd_33532_lvgd_1163850014_47,BranchTee_mvgd_33532_lvgd_1163850014_49,0.03840414610388569,0.00971624896428308,0.0030886446916443227,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018368799999994 47.55378859624388, 10.018220500000002 47.554000996243936, 10.018227300000001 47.554053396243965, 10.018303200000005 47.55408029624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_47_LVCableDist_mvgd_33532_lvgd_1163850014_building_441687,BranchTee_mvgd_33532_lvgd_1163850014_47,BranchTee_mvgd_33532_lvgd_1163850014_building_441687,0.016985314369960272,0.014743252873125516,0.0014460814426610273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01847355824983 47.55398012417744, 10.018303200000005 47.55408029624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_48_LVCableDist_mvgd_33532_lvgd_1163850014_51,BranchTee_mvgd_33532_lvgd_1163850014_48,BranchTee_mvgd_33532_lvgd_1163850014_51,0.004383341070648041,0.0011089852908739543,0.0003525292059065934,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0192819 47.55412999624396, 10.019223799999997 47.55412769624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_48_LVCableDist_mvgd_33532_lvgd_1163850014_52,BranchTee_mvgd_33532_lvgd_1163850014_48,BranchTee_mvgd_33532_lvgd_1163850014_52,0.03350643801469022,0.008477128817716626,0.0026947476355817616,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019223799999997 47.55412769624398, 10.019194200000003 47.55442859624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_48_LVCableDist_mvgd_33532_lvgd_1163850014_building_441689,BranchTee_mvgd_33532_lvgd_1163850014_48,BranchTee_mvgd_33532_lvgd_1163850014_building_441689,0.02623416998912169,0.022771259550557626,0.0022335027517640495,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0191226212779 47.553901762119935, 10.019223799999997 47.55412769624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_49_LVCableDist_mvgd_33532_lvgd_1163850014_building_441682,BranchTee_mvgd_33532_lvgd_1163850014_49,BranchTee_mvgd_33532_lvgd_1163850014_building_441682,0.015743989901065635,0.013665783234124972,0.0013403986016083899,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018577800007925 47.55379124626655, 10.018368799999994 47.55378859624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_49_LVCableDist_mvgd_33532_lvgd_1163850014_building_441685,BranchTee_mvgd_33532_lvgd_1163850014_49,BranchTee_mvgd_33532_lvgd_1163850014_building_441685,0.02463338740896828,0.021381780270984467,0.0020972166676519483,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018239000009878 47.55358509628598, 10.018368799999994 47.55378859624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_4_LVCableDist_mvgd_33532_lvgd_1163850014_5,BranchTee_mvgd_33532_lvgd_1163850014_4,BranchTee_mvgd_33532_lvgd_1163850014_5,0.014629338444006965,0.0037012226263337623,0.001176561207873818,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023752799999999 47.555135196244066, 10.023580199999994 47.55519559624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_4_LVCableDist_mvgd_33532_lvgd_1163850014_building_445703,BranchTee_mvgd_33532_lvgd_1163850014_4,BranchTee_mvgd_33532_lvgd_1163850014_building_445703,0.012000979308408601,0.010416850039698666,0.0010217293064849666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023620550018759 47.555074946272775, 10.023752799999999 47.555135196244066)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_50_LVCableDist_mvgd_33532_lvgd_1163850014_51,BranchTee_mvgd_33532_lvgd_1163850014_50,BranchTee_mvgd_33532_lvgd_1163850014_51,0.026761339685474953,0.006770618940425163,0.002152274640796393,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019636900000002 47.55414019624395, 10.0192819 47.55412999624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_50_LVCableDist_mvgd_33532_lvgd_1163850014_building_441696,BranchTee_mvgd_33532_lvgd_1163850014_50,BranchTee_mvgd_33532_lvgd_1163850014_building_441696,0.022337948099486592,0.019389338950354364,0.0019017894817962254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019451534990433 47.55429714204662, 10.019636900000002 47.55414019624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_50_LVCableDist_mvgd_33532_lvgd_1163850014_building_445493,BranchTee_mvgd_33532_lvgd_1163850014_50,BranchTee_mvgd_33532_lvgd_1163850014_building_445493,0.01884532008730802,0.016357737835783363,0.0016044370487166297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019778800003495 47.55427989630648, 10.019636900000002 47.55414019624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_50_LVStation_mvgd_33532_lvgd_1163850014,BusBar_mvgd_33532_lvgd_1163850014_LV,BranchTee_mvgd_33532_lvgd_1163850014_50,0.2118287172296446,0.05359266545910009,0.01703627627182083,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0220596 47.554534796243956, 10.021999200000003 47.55448659624401, 10.022001499999996 47.55425239624398, 10.021654500000002 47.55425919624396, 10.020906299999993 47.554191096243976, 10.020525200000005 47.554179096243956, 10.019636900000002 47.55414019624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_51_LVCableDist_mvgd_33532_lvgd_1163850014_building_441691,BranchTee_mvgd_33532_lvgd_1163850014_51,BranchTee_mvgd_33532_lvgd_1163850014_building_441691,0.026637597595494788,0.023121434712889476,0.0022678494328042934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01936705807897 47.55389730275858, 10.0192819 47.55412999624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_52_LVCableDist_mvgd_33532_lvgd_1163850014_54,BranchTee_mvgd_33532_lvgd_1163850014_52,BranchTee_mvgd_33532_lvgd_1163850014_54,0.016941199082212362,0.0042861233677997275,0.001362492072439821,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019194200000003 47.55442859624399, 10.019205000000003 47.554580896244005)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_52_LVCableDist_mvgd_33532_lvgd_1163850014_building_441756,BranchTee_mvgd_33532_lvgd_1163850014_52,BranchTee_mvgd_33532_lvgd_1163850014_building_441756,0.021110576476046604,0.01832398038120845,0.0017972945463922444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018926279858093 47.554372768609575, 10.019194200000003 47.55442859624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_53_LVCableDist_mvgd_33532_lvgd_1163850014_54,BranchTee_mvgd_33532_lvgd_1163850014_53,BranchTee_mvgd_33532_lvgd_1163850014_54,0.015532802322925648,0.003929798987700189,0.0012492220842845617,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019218500000003 47.554720396244036, 10.019205000000003 47.554580896244005)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_53_LVCableDist_mvgd_33532_lvgd_1163850014_building_441764,BranchTee_mvgd_33532_lvgd_1163850014_53,BranchTee_mvgd_33532_lvgd_1163850014_building_441764,0.018956957168544043,0.016454638822296228,0.0016139415128655985,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0190802999942 47.55486299631051, 10.019218500000003 47.554720396244036)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_53_LVCableDist_mvgd_33532_lvgd_1163850014_building_445593,BranchTee_mvgd_33532_lvgd_1163850014_53,BranchTee_mvgd_33532_lvgd_1163850014_building_445593,0.025676156615135406,0.02228690394193753,0.002185995077351773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019548462895969 47.55477849823574, 10.019218500000003 47.554720396244036)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_54_LVCableDist_mvgd_33532_lvgd_1163850014_building_441763,BranchTee_mvgd_33532_lvgd_1163850014_54,BranchTee_mvgd_33532_lvgd_1163850014_building_441763,0.022125028916086167,0.019204525099162793,0.0018836621470177512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019496920040243 47.55455862073315, 10.019205000000003 47.554580896244005)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_55_LVCableDist_mvgd_33532_lvgd_1163850014_61,BranchTee_mvgd_33532_lvgd_1163850014_55,BranchTee_mvgd_33532_lvgd_1163850014_61,0.0855914207505516,0.014036993003090461,0.006883670493190294,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020525200000005 47.554179096243956, 10.020906299999993 47.554191096243976, 10.021654500000002 47.55425919624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_55_LVCableDist_mvgd_33532_lvgd_1163850014_62,BranchTee_mvgd_33532_lvgd_1163850014_55,BranchTee_mvgd_33532_lvgd_1163850014_62,0.02293636453239815,0.003761563783313297,0.0018446518864650117,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020575399999998 47.553975496243915, 10.020569200000004 47.553996796243936, 10.020525200000005 47.554179096243956)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_55_LVCableDist_mvgd_33532_lvgd_1163850014_63,BranchTee_mvgd_33532_lvgd_1163850014_55,BranchTee_mvgd_33532_lvgd_1163850014_63,0.016388546761750285,0.0026877216689270467,0.0013180451356090237,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020525200000005 47.554179096243956, 10.020526300000004 47.55432659624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_55_LVCableDist_mvgd_33532_lvgd_1163850014_building_34967277,BranchTee_mvgd_33532_lvgd_1163850014_55,BranchTee_mvgd_33532_lvgd_1163850014_building_34967277,0.011250535897136524,0.009765465158714503,0.000957838685023933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020651000000012 47.55423369624394, 10.020525200000005 47.554179096243956)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_56_LVCableDist_mvgd_33532_lvgd_1163850014_60,BranchTee_mvgd_33532_lvgd_1163850014_56,BranchTee_mvgd_33532_lvgd_1163850014_60,0.05218385008282188,0.008558151413582788,0.004196874241439343,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020469399999993 47.55394459624394, 10.019806899999995 47.553807096243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_56_LVCableDist_mvgd_33532_lvgd_1163850014_building_445495,BranchTee_mvgd_33532_lvgd_1163850014_56,BranchTee_mvgd_33532_lvgd_1163850014_building_445495,0.0278345975863345,0.024160430704938347,0.0023697586136364156,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019976510415118 47.554029673614274, 10.019806899999995 47.553807096243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_56_LVCableDist_mvgd_33532_lvgd_1163850014_building_445502,BranchTee_mvgd_33532_lvgd_1163850014_56,BranchTee_mvgd_33532_lvgd_1163850014_building_445502,0.015019536041885648,0.013036957284356741,0.0012787206568258586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019658601073225 47.55371672102794, 10.019806899999995 47.553807096243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_56_LVCableDist_mvgd_33532_lvgd_1163850014_building_445503,BranchTee_mvgd_33532_lvgd_1163850014_56,BranchTee_mvgd_33532_lvgd_1163850014_building_445503,0.011363503970323072,0.009863521446240427,0.0009674564660487667,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019854950005188 47.55371014627573, 10.019806899999995 47.553807096243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_56_LVCableDist_mvgd_33532_lvgd_1163850014_building_445507,BranchTee_mvgd_33532_lvgd_1163850014_56,BranchTee_mvgd_33532_lvgd_1163850014_building_445507,0.017834067446431404,0.01547997054350246,0.0015183418699073457,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019676228674644 47.55394095481283, 10.019806899999995 47.553807096243965)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_57_LVCableDist_mvgd_33532_lvgd_1163850014_59,BranchTee_mvgd_33532_lvgd_1163850014_57,BranchTee_mvgd_33532_lvgd_1163850014_59,0.026021922030449667,0.004267595212993746,0.002092807144528565,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022001499999996 47.55425239624398, 10.021999200000003 47.55448659624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_57_LVCableDist_mvgd_33532_lvgd_1163850014_61,BranchTee_mvgd_33532_lvgd_1163850014_57,BranchTee_mvgd_33532_lvgd_1163850014_61,0.026145643385115734,0.0042878855151589805,0.002102757406260689,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022001499999996 47.55425239624398, 10.021654500000002 47.55425919624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_57_LVCableDist_mvgd_33532_lvgd_1163850014_building_445533,BranchTee_mvgd_33532_lvgd_1163850014_57,BranchTee_mvgd_33532_lvgd_1163850014_building_445533,0.01763230501395147,0.015304840752109874,0.0015011643892272478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021885553700004 47.554114530901614, 10.022001499999996 47.55425239624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_58_LVCableDist_mvgd_33532_lvgd_1163850014_62,BranchTee_mvgd_33532_lvgd_1163850014_58,BranchTee_mvgd_33532_lvgd_1163850014_62,0.01728926323054881,0.0028354391698100045,0.00139048505218745,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020641500000002 47.55382649624394, 10.020627900000004 47.55385399624391, 10.020575399999998 47.553975496243915)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_58_LVCableDist_mvgd_33532_lvgd_1163850014_building_445497,BranchTee_mvgd_33532_lvgd_1163850014_58,BranchTee_mvgd_33532_lvgd_1163850014_building_445497,0.021739019390060583,0.018869468830572587,0.0018507983918868369,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020542750009726 47.55364264634607, 10.020641500000002 47.55382649624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_59_LVCableDist_mvgd_33532_lvgd_1163850014_building_445611,BranchTee_mvgd_33532_lvgd_1163850014_59,BranchTee_mvgd_33532_lvgd_1163850014_building_445611,0.014248859957021312,0.0123680104426945,0.0012131074829775151,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021840740123599 47.55441653549989, 10.021999200000003 47.55448659624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_59_LVStation_mvgd_33532_lvgd_1163850014,BusBar_mvgd_33532_lvgd_1163850014_LV,BranchTee_mvgd_33532_lvgd_1163850014_59,0.007026705043308229,0.0011523796271025496,0.0005651211505407867,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0220596 47.554534796243956, 10.021999200000003 47.55448659624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_5_LVCableDist_mvgd_33532_lvgd_1163850014_building_445701,BranchTee_mvgd_33532_lvgd_1163850014_5,BranchTee_mvgd_33532_lvgd_1163850014_building_445701,0.01503266109666191,0.013048349831902539,0.0012798380867263279,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023405283179336 47.55513042701925, 10.023580199999994 47.55519559624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_60_LVCableDist_mvgd_33532_lvgd_1163850014_62,BranchTee_mvgd_33532_lvgd_1163850014_60,BranchTee_mvgd_33532_lvgd_1163850014_62,0.008690497724726551,0.0014252416268551544,0.0006989312974858175,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020575399999998 47.553975496243915, 10.020469399999993 47.55394459624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_60_LVCableDist_mvgd_33532_lvgd_1163850014_building_445496,BranchTee_mvgd_33532_lvgd_1163850014_60,BranchTee_mvgd_33532_lvgd_1163850014_building_445496,0.023755017739883044,0.02061935539821848,0.0020224347677945697,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020240040744463 47.553797837605174, 10.020469399999993 47.55394459624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_60_LVCableDist_mvgd_33532_lvgd_1163850014_building_445505,BranchTee_mvgd_33532_lvgd_1163850014_60,BranchTee_mvgd_33532_lvgd_1163850014_building_445505,0.015076260904172115,0.013086194464821396,0.0012835500505540686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020308750006752 47.55402554632402, 10.020469399999993 47.55394459624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_61_LVCableDist_mvgd_33532_lvgd_1163850014_building_34967278,BranchTee_mvgd_33532_lvgd_1163850014_61,BranchTee_mvgd_33532_lvgd_1163850014_building_34967278,0.020315756054488123,0.01763407625529569,0.0017296257922656511,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021399800000005 47.554198996243954, 10.021654500000002 47.55425919624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_61_LVCableDist_mvgd_33532_lvgd_1163850014_building_445519,BranchTee_mvgd_33532_lvgd_1163850014_61,BranchTee_mvgd_33532_lvgd_1163850014_building_445519,0.01350014055347412,0.011718122000415537,0.0011493636386395688,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021551292418087 47.554159854137886, 10.021654500000002 47.55425919624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_61_LVCableDist_mvgd_33532_lvgd_1163850014_building_445531,BranchTee_mvgd_33532_lvgd_1163850014_61,BranchTee_mvgd_33532_lvgd_1163850014_building_445531,0.019406468545768354,0.01684481469772693,0.001652211635320247,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021622421012957 47.55408589123938, 10.021654500000002 47.55425919624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_61_LVCableDist_mvgd_33532_lvgd_1163850014_building_445690,BranchTee_mvgd_33532_lvgd_1163850014_61,BranchTee_mvgd_33532_lvgd_1163850014_building_445690,0.013893955255511499,0.01205995316178398,0.0011828919042965482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02156407518655 47.55436819329421, 10.021654500000002 47.55425919624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_63_LVCableDist_mvgd_33532_lvgd_1163850014_building_445506,BranchTee_mvgd_33532_lvgd_1163850014_63,BranchTee_mvgd_33532_lvgd_1163850014_building_445506,0.012804288009638513,0.011114121992366228,0.001090120728643815,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020356999997615 47.55431609631913, 10.020526300000004 47.55432659624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_64_LVCableDist_mvgd_33532_lvgd_1163850014_65,BranchTee_mvgd_33532_lvgd_1163850014_64,BranchTee_mvgd_33532_lvgd_1163850014_65,0.009336996073177024,0.0029878387434166477,0.0007655922988493408,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020622100000002 47.555060296244065, 10.0205356 47.55512049624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_64_LVCableDist_mvgd_33532_lvgd_1163850014_74,BranchTee_mvgd_33532_lvgd_1163850014_64,BranchTee_mvgd_33532_lvgd_1163850014_74,0.014235630912174188,0.00455540189189574,0.0011672586461647474,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020692699999994 47.554944096244, 10.020678299999997 47.55498489624404, 10.020662900000003 47.55502439624404, 10.020622100000002 47.555060296244065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_64_LVCableDist_mvgd_33532_lvgd_1163850014_building_445661,BranchTee_mvgd_33532_lvgd_1163850014_64,BranchTee_mvgd_33532_lvgd_1163850014_building_445661,0.013466291741953646,0.011688741232015765,0.0011464818469264608,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020733532848622 47.55515507945745, 10.020622100000002 47.555060296244065)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_65_LVCableDist_mvgd_33532_lvgd_1163850014_68,BranchTee_mvgd_33532_lvgd_1163850014_65,BranchTee_mvgd_33532_lvgd_1163850014_68,0.03503640757302054,0.011211650423366573,0.0028728301486930156,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0205356 47.55512049624409, 10.020420000000001 47.555256696244044, 10.020512499999997 47.55530319624408, 10.020563200000002 47.55537559624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_65_LVCableDist_mvgd_33532_lvgd_1163850014_building_445657,BranchTee_mvgd_33532_lvgd_1163850014_65,BranchTee_mvgd_33532_lvgd_1163850014_building_445657,0.012413996294235825,0.010775348783396695,0.0010568924000668454,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020372542790572 47.55510416482062, 10.0205356 47.55512049624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_66_LVCableDist_mvgd_33532_lvgd_1163850014_69,BranchTee_mvgd_33532_lvgd_1163850014_66,BranchTee_mvgd_33532_lvgd_1163850014_69,0.02496400848748659,0.007988482715995709,0.0020469380619463134,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020208199999994 47.554684396244035, 10.0202216 47.554459896244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_66_LVCableDist_mvgd_33532_lvgd_1163850014_75,BranchTee_mvgd_33532_lvgd_1163850014_66,BranchTee_mvgd_33532_lvgd_1163850014_75,0.05638285514944613,0.018042513647822764,0.004623144248026445,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0202216 47.554459896244, 10.020534899999998 47.55444249624398, 10.020560600000007 47.55455839624399, 10.020612100000003 47.554732096244024)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_66_LVCableDist_mvgd_33532_lvgd_1163850014_building_445583,BranchTee_mvgd_33532_lvgd_1163850014_66,BranchTee_mvgd_33532_lvgd_1163850014_building_445583,0.015420965845887707,0.01338539835423053,0.0013128972506441683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020087376466256 47.55435508665868, 10.0202216 47.554459896244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_66_LVCableDist_mvgd_33532_lvgd_1163850014_building_445603,BranchTee_mvgd_33532_lvgd_1163850014_66,BranchTee_mvgd_33532_lvgd_1163850014_building_445603,0.035892230265063434,0.03115445587007506,0.003055762583577434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019765429962757 47.55455337181453, 10.0202216 47.554459896244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_67_LVCableDist_mvgd_33532_lvgd_1163850014_71,BranchTee_mvgd_33532_lvgd_1163850014_67,BranchTee_mvgd_33532_lvgd_1163850014_71,0.03865387442988431,0.01236923981756298,0.003169446399278551,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021178200000003 47.554805496244015, 10.0209894 47.55448199624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_67_LVCableDist_mvgd_33532_lvgd_1163850014_building_445682,BranchTee_mvgd_33532_lvgd_1163850014_67,BranchTee_mvgd_33532_lvgd_1163850014_building_445682,0.01994112155165202,0.017308893506833952,0.0016977304743144004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021180599991164 47.55460614626983, 10.0209894 47.55448199624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_68_LVCableDist_mvgd_33532_lvgd_1163850014_70,BranchTee_mvgd_33532_lvgd_1163850014_68,BranchTee_mvgd_33532_lvgd_1163850014_70,0.025517329213667856,0.008165545348373713,0.002092307909318859,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020563200000002 47.55537559624404, 10.020645799999992 47.555485196244085, 10.020755600000001 47.55556149624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_68_LVCableDist_mvgd_33532_lvgd_1163850014_building_445673,BranchTee_mvgd_33532_lvgd_1163850014_68,BranchTee_mvgd_33532_lvgd_1163850014_building_445673,0.011218159603266201,0.009737362535635062,0.0009550822592829519,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02046321771703 47.55545043707341, 10.020563200000002 47.55537559624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_68_LVCableDist_mvgd_33532_lvgd_1163850014_building_445677,BranchTee_mvgd_33532_lvgd_1163850014_68,BranchTee_mvgd_33532_lvgd_1163850014_building_445677,0.012639966344974711,0.01097149078743805,0.0010761308486379587,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020726003761364 47.55534796531496, 10.020563200000002 47.55537559624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_69_LVCableDist_mvgd_33532_lvgd_1163850014_building_445602,BranchTee_mvgd_33532_lvgd_1163850014_69,BranchTee_mvgd_33532_lvgd_1163850014_building_445602,0.03942021375882459,0.03421674554265974,0.0033561250819816573,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019766851676899 47.554875118386136, 10.020208199999994 47.554684396244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_69_LVCableDist_mvgd_33532_lvgd_1163850014_building_445612,BranchTee_mvgd_33532_lvgd_1163850014_69,BranchTee_mvgd_33532_lvgd_1163850014_building_445612,0.013282874360203418,0.011529534944656566,0.001130866211782282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020111712176682 47.55478446821691, 10.020208199999994 47.554684396244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_69_LVCableDist_mvgd_33532_lvgd_1163850014_building_445617,BranchTee_mvgd_33532_lvgd_1163850014_69,BranchTee_mvgd_33532_lvgd_1163850014_building_445617,0.031962486462144904,0.027743438249141775,0.0027211953530843105,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020148899992833 47.55496924628116, 10.020208199999994 47.554684396244035)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_6_LVCableDist_mvgd_33532_lvgd_1163850014_building_445557,BranchTee_mvgd_33532_lvgd_1163850014_6,BranchTee_mvgd_33532_lvgd_1163850014_building_445557,0.013811203205107106,0.011988124382032967,0.001175846629665448,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023409450339539 47.55417562961072, 10.023317800000003 47.55428329624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_6_LVCableDist_mvgd_33532_lvgd_1163850014_building_445667,BranchTee_mvgd_33532_lvgd_1163850014_6,BranchTee_mvgd_33532_lvgd_1163850014_building_445667,0.015678941692869333,0.01360932138941058,0.0013348605818401256,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023203014993097 47.554401022309435, 10.023317800000003 47.55428329624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_70_LVCableDist_mvgd_33532_lvgd_1163850014_building_445614,BranchTee_mvgd_33532_lvgd_1163850014_70,BranchTee_mvgd_33532_lvgd_1163850014_building_445614,0.03689861291778574,0.032027996012638026,0.0031414431454215835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020515716261157 47.555851064475256, 10.020755600000001 47.55556149624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_71_LVCableDist_mvgd_33532_lvgd_1163850014_73,BranchTee_mvgd_33532_lvgd_1163850014_71,BranchTee_mvgd_33532_lvgd_1163850014_73,0.020052878373546464,0.006416921079534869,0.0016442471574614102,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021178200000003 47.554805496244015, 10.021405400000008 47.55471139624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_71_LVCableDist_mvgd_33532_lvgd_1163850014_74,BranchTee_mvgd_33532_lvgd_1163850014_71,BranchTee_mvgd_33532_lvgd_1163850014_74,0.039964689430385475,0.012788700617723352,0.0032769274201266633,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020692699999994 47.554944096244, 10.020752200000004 47.554933796244015, 10.020883600000001 47.554912196244075, 10.021178200000003 47.554805496244015)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_71_LVCableDist_mvgd_33532_lvgd_1163850014_building_445604,BranchTee_mvgd_33532_lvgd_1163850014_71,BranchTee_mvgd_33532_lvgd_1163850014_building_445604,0.013257165271763835,0.011507219455891008,0.001128677412982893,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021329431065032 47.55486655149068, 10.021178200000003 47.554805496244015)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_71_LVCableDist_mvgd_33532_lvgd_1163850014_building_445699,BranchTee_mvgd_33532_lvgd_1163850014_71,BranchTee_mvgd_33532_lvgd_1163850014_building_445699,0.018458524397996546,0.016021999177461003,0.0015715063618755411,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020991685430545 47.554697723975856, 10.021178200000003 47.554805496244015)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_72_LVCableDist_mvgd_33532_lvgd_1163850014_73,BranchTee_mvgd_33532_lvgd_1163850014_72,BranchTee_mvgd_33532_lvgd_1163850014_73,0.017692827331989333,0.0056617047462365865,0.0014507334311894113,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021613099999998 47.554636996243985, 10.021405400000008 47.55471139624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_72_LVCableDist_mvgd_33532_lvgd_1163850014_building_445613,BranchTee_mvgd_33532_lvgd_1163850014_72,BranchTee_mvgd_33532_lvgd_1163850014_building_445613,0.012659785585588538,0.01098869388829085,0.0010778182025152573,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021591788113463 47.554523974020015, 10.021613099999998 47.554636996243985)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_72_LVCableDist_mvgd_33532_lvgd_1163850014_building_445618,BranchTee_mvgd_33532_lvgd_1163850014_72,BranchTee_mvgd_33532_lvgd_1163850014_building_445618,0.013659431885165038,0.011856386876323254,0.0011629252503776704,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021733846332248 47.554728726994455, 10.021613099999998 47.554636996243985)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_72_LVStation_mvgd_33532_lvgd_1163850014,BusBar_mvgd_33532_lvgd_1163850014_LV,BranchTee_mvgd_33532_lvgd_1163850014_72,0.03571007162712442,0.011427222920679814,0.002928067615624718,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0220596 47.554534796243956, 10.021846500000006 47.554564996243975, 10.021613099999998 47.554636996243985)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_73_LVCableDist_mvgd_33532_lvgd_1163850014_building_445606,BranchTee_mvgd_33532_lvgd_1163850014_73,BranchTee_mvgd_33532_lvgd_1163850014_building_445606,0.01672725815017319,0.01451926007435033,0.001424111268752599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021489015566427 47.554850869093315, 10.021405400000008 47.55471139624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_73_LVCableDist_mvgd_33532_lvgd_1163850014_building_445694,BranchTee_mvgd_33532_lvgd_1163850014_73,BranchTee_mvgd_33532_lvgd_1163850014_building_445694,0.015157008290459824,0.013156283196119127,0.0012904246537736917,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0213833999946 47.55457579631122, 10.021405400000008 47.55471139624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_73_LVCableDist_mvgd_33532_lvgd_1163850014_building_445705,BranchTee_mvgd_33532_lvgd_1163850014_73,BranchTee_mvgd_33532_lvgd_1163850014_building_445705,0.013324761147292084,0.011565892675849529,0.0011344323339147482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021231262403823 47.55469021525767, 10.021405400000008 47.55471139624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_74_LVCableDist_mvgd_33532_lvgd_1163850014_75,BranchTee_mvgd_33532_lvgd_1163850014_74,BranchTee_mvgd_33532_lvgd_1163850014_75,0.024405034547346185,0.007809611055150779,0.0020011046760827,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020612100000003 47.554732096244024, 10.020634600000001 47.55481879624404, 10.020668300000002 47.554904796244045, 10.020692699999994 47.554944096244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_75_LVCableDist_mvgd_33532_lvgd_1163850014_building_445634,BranchTee_mvgd_33532_lvgd_1163850014_75,BranchTee_mvgd_33532_lvgd_1163850014_building_445634,0.01306334982145255,0.011338987645020813,0.0011121765158024544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020467126543963 47.55466755052218, 10.020612100000003 47.554732096244024)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_75_LVCableDist_mvgd_33532_lvgd_1163850014_building_445639,BranchTee_mvgd_33532_lvgd_1163850014_75,BranchTee_mvgd_33532_lvgd_1163850014_building_445639,0.013516208783529967,0.011732069224104011,0.001150731642127409,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020791472990854 47.55472828384745, 10.020612100000003 47.554732096244024)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_76_LVCableDist_mvgd_33532_lvgd_1163850014_building_445616,BranchTee_mvgd_33532_lvgd_1163850014_76,BranchTee_mvgd_33532_lvgd_1163850014_building_445616,0.013441030291696533,0.011666814293192591,0.0011443311587710434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022244891641485 47.55438441917619, 10.022202899999995 47.55450199624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_76_LVCableDist_mvgd_33532_lvgd_1163850014_building_445655,BranchTee_mvgd_33532_lvgd_1163850014_76,BranchTee_mvgd_33532_lvgd_1163850014_building_445655,0.01347812119559855,0.01169900919777954,0.0011474889730249314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022344699998822 47.55457599626703, 10.022202899999995 47.55450199624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_76_LVStation_mvgd_33532_lvgd_1163850014,BusBar_mvgd_33532_lvgd_1163850014_LV,BranchTee_mvgd_33532_lvgd_1163850014_76,0.011391403716153057,0.009887738425620853,0.0009698317711989059,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0220596 47.554534796243956, 10.022202899999995 47.55450199624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_7_LVCableDist_mvgd_33532_lvgd_1163850014_building_445656,BranchTee_mvgd_33532_lvgd_1163850014_7,BranchTee_mvgd_33532_lvgd_1163850014_building_445656,0.023598437994069563,0.02048344417885238,0.0020091040127796426,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022864200014153 47.554475046275606, 10.022971500000006 47.554674596244055)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_7_LVCableDist_mvgd_33532_lvgd_1163850014_building_445665,BranchTee_mvgd_33532_lvgd_1163850014_7,BranchTee_mvgd_33532_lvgd_1163850014_building_445665,0.014570959896401163,0.012647593190076209,0.0012405301573463342,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022848994372687 47.55477609834236, 10.022971500000006 47.554674596244055)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_7_LVCableDist_mvgd_33532_lvgd_1163850014_building_445668,BranchTee_mvgd_33532_lvgd_1163850014_7,BranchTee_mvgd_33532_lvgd_1163850014_building_445668,0.009900826555832583,0.008593917450462682,0.0008429282636485273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023061237783795 47.55460947748555, 10.022971500000006 47.554674596244055)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_8_LVCableDist_mvgd_33532_lvgd_1163850014_building_445572,BranchTee_mvgd_33532_lvgd_1163850014_8,BranchTee_mvgd_33532_lvgd_1163850014_building_445572,0.020461253502467712,0.017760368040141975,0.001742013031906616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023725283513068 47.554194096892395, 10.023634200000004 47.554367596244006)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_8_LVCableDist_mvgd_33532_lvgd_1163850014_building_445676,BranchTee_mvgd_33532_lvgd_1163850014_8,BranchTee_mvgd_33532_lvgd_1163850014_building_445676,0.017174158990262266,0.014907170003547647,0.0014621591374870972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023554491922228 47.554512418366656, 10.023634200000004 47.554367596244006)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850014_9_LVCableDist_mvgd_33532_lvgd_1163850014_building_445675,BranchTee_mvgd_33532_lvgd_1163850014_9,BranchTee_mvgd_33532_lvgd_1163850014_building_445675,0.012266881156409462,0.010647652843763414,0.0010443674349050894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023365079705846 47.55464195559848, 10.023397900000003 47.55475009624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_10_LVCableDist_mvgd_33532_lvgd_1163850015_3,BranchTee_mvgd_33532_lvgd_1163850015_3,BranchTee_mvgd_33532_lvgd_1163850015_10,0.04688091479789801,0.015001892735327363,0.0038440272493410455,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015691300000006 47.565036996244906, 10.015071299999997 47.56499859624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_10_LVCableDist_mvgd_33532_lvgd_1163850015_building_441979,BranchTee_mvgd_33532_lvgd_1163850015_10,BranchTee_mvgd_33532_lvgd_1163850015_building_441979,0.0202384050408702,0.017566935575475333,0.0017230403465725338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015805059559359 47.56520202576026, 10.015691300000006 47.565036996244906)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_10_LVStation_mvgd_33532_lvgd_1163850015,BusBar_mvgd_33532_lvgd_1163850015_LV,BranchTee_mvgd_33532_lvgd_1163850015_10,0.04254986797030378,0.01361595775049721,0.0034889006035574445,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016221000000002 47.56496159624492, 10.016063700000002 47.56503699624489, 10.015691300000006 47.565036996244906)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_11_LVCableDist_mvgd_33532_lvgd_1163850015_2,BranchTee_mvgd_33532_lvgd_1163850015_2,BranchTee_mvgd_33532_lvgd_1163850015_11,0.06659239940346492,0.021309567809108778,0.005460281630796996,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014091599999992 47.564937996244886, 10.013683099999998 47.56480289624491, 10.0132946 47.5646782962449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_11_LVCableDist_mvgd_33532_lvgd_1163850015_9,BranchTee_mvgd_33532_lvgd_1163850015_9,BranchTee_mvgd_33532_lvgd_1163850015_11,0.07841971721820065,0.02509430950982421,0.0064300692759924226,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014106400000003 47.56564269624497, 10.014106299999996 47.56558819624496, 10.014104700000008 47.5649733962449, 10.014091599999992 47.564937996244886)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_12_LVCableDist_mvgd_33532_lvgd_1163850015_8,BranchTee_mvgd_33532_lvgd_1163850015_8,BranchTee_mvgd_33532_lvgd_1163850015_12,0.10217032075545146,0.03269450264174447,0.008377513509516241,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015064850696046 47.56462409632206, 10.0151626 47.56425599624483, 10.015354000000002 47.56372609624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_12_LVCableDist_mvgd_33532_lvgd_1163850015_building_441976,BranchTee_mvgd_33532_lvgd_1163850015_12,BranchTee_mvgd_33532_lvgd_1163850015_building_441976,0.020763447803029557,0.018022672693029654,0.0017677409967003248,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015621978995595 47.56377010458204, 10.015354000000002 47.56372609624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_13_LVCableDist_mvgd_33532_lvgd_1163850015_3,BranchTee_mvgd_33532_lvgd_1163850015_3,BranchTee_mvgd_33532_lvgd_1163850015_13,0.013433028158954256,0.004298569010865362,0.001101448777328487,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015071299999997 47.56499859624491, 10.0150707 47.56511949624494)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_13_LVCableDist_mvgd_33532_lvgd_1163850015_6,BranchTee_mvgd_33532_lvgd_1163850015_6,BranchTee_mvgd_33532_lvgd_1163850015_13,0.05555405162069487,0.01777729651862236,0.004555186031711675,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015103699999994 47.56561899624497, 10.0150707 47.56511949624494)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_13_LVCableDist_mvgd_33532_lvgd_1163850015_building_442000,BranchTee_mvgd_33532_lvgd_1163850015_13,BranchTee_mvgd_33532_lvgd_1163850015_building_442000,0.03168849819086249,0.02750561642966864,0.0026978687695440613,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014687148779336 47.56523685304652, 10.0150707 47.56511949624494)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_14_LVCableDist_mvgd_33532_lvgd_1163850015_2,BranchTee_mvgd_33532_lvgd_1163850015_2,BranchTee_mvgd_33532_lvgd_1163850015_14,0.052810289535450444,0.01689929265134414,0.0043302097003654,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0132946 47.5646782962449, 10.013632102720774 47.56426164680915)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_14_LVCableDist_mvgd_33532_lvgd_1163850015_building_441874,BranchTee_mvgd_33532_lvgd_1163850015_14,BranchTee_mvgd_33532_lvgd_1163850015_building_441874,0.025264176982905895,0.021929305621162316,0.002150920301110066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013297062881675 47.56427363453452, 10.013632102720774 47.56426164680915)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_14_LVCableDist_mvgd_33532_lvgd_1163850015_building_441875,BranchTee_mvgd_33532_lvgd_1163850015_14,BranchTee_mvgd_33532_lvgd_1163850015_building_441875,0.035207236042538975,0.03055988088492383,0.002997444120230385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014030156330795 47.56442787161928, 10.013632102720774 47.56426164680915)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_15_LVCableDist_mvgd_33532_lvgd_1163850015_2,BranchTee_mvgd_33532_lvgd_1163850015_2,BranchTee_mvgd_33532_lvgd_1163850015_15,0.03762710009008898,0.012040672028828475,0.0030852554538135877,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0132946 47.5646782962449, 10.013010301532027 47.56495679663406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_15_LVCableDist_mvgd_33532_lvgd_1163850015_7,BranchTee_mvgd_33532_lvgd_1163850015_7,BranchTee_mvgd_33532_lvgd_1163850015_15,0.03762710009008898,0.012040672028828475,0.0030852554538135877,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.013010301532027 47.56495679663406, 10.012726000000006 47.5652352962449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_15_LVCableDist_mvgd_33532_lvgd_1163850015_building_441876,BranchTee_mvgd_33532_lvgd_1163850015_15,BranchTee_mvgd_33532_lvgd_1163850015_building_441876,0.032655454573847685,0.02834493457009979,0.0027801926907174315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013358550093946 47.56513194637359, 10.013010301532027 47.56495679663406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_16_LVCableDist_mvgd_33532_lvgd_1163850015_18,BranchTee_mvgd_33532_lvgd_1163850015_16,BranchTee_mvgd_33532_lvgd_1163850015_18,0.05765347833808816,0.05004321919746053,0.004908453462422658,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016100399999997 47.56360659624478, 10.016063700000002 47.5641248962448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_16_LVCableDist_mvgd_33532_lvgd_1163850015_19,BranchTee_mvgd_33532_lvgd_1163850015_16,BranchTee_mvgd_33532_lvgd_1163850015_19,0.03320928585218852,0.028825660119699635,0.0028273443133797907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016063700000002 47.5641248962448, 10.016124899999994 47.56442089624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_16_LVCableDist_mvgd_33532_lvgd_1163850015_building_442004,BranchTee_mvgd_33532_lvgd_1163850015_16,BranchTee_mvgd_33532_lvgd_1163850015_building_442004,0.03329516349165715,0.028900201910758403,0.0028346556917899983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01567790000672 47.564271296271635, 10.016063700000002 47.5641248962448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_16_LVCableDist_mvgd_33532_lvgd_1163850015_building_442005,BranchTee_mvgd_33532_lvgd_1163850015_16,BranchTee_mvgd_33532_lvgd_1163850015_building_442005,0.022152231642594306,0.019228137065771856,0.0018859781099217275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016328206794238 47.56403763438171, 10.016063700000002 47.5641248962448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_16_LVCableDist_mvgd_33532_lvgd_1163850015_building_442006,BranchTee_mvgd_33532_lvgd_1163850015_16,BranchTee_mvgd_33532_lvgd_1163850015_building_442006,0.013210009486290246,0.011466288234099934,0.0011246627032870829,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016200741426195 47.56419912077635, 10.016063700000002 47.5641248962448)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_17_LVCableDist_mvgd_33532_lvgd_1163850015_19,BranchTee_mvgd_33532_lvgd_1163850015_17,BranchTee_mvgd_33532_lvgd_1163850015_19,0.04621947674144318,0.04011850581157268,0.003934995028617788,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016124899999994 47.56442089624489, 10.016191199999993 47.56466869624487, 10.016231999999995 47.564830496244916)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_17_LVCableDist_mvgd_33532_lvgd_1163850015_building_441985,BranchTee_mvgd_33532_lvgd_1163850015_17,BranchTee_mvgd_33532_lvgd_1163850015_building_441985,0.023097365657229592,0.020048513390475284,0.0019664441366094043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016508175925216 47.56474004244258, 10.016231999999995 47.564830496244916)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_17_LVStation_mvgd_33532_lvgd_1163850015,BusBar_mvgd_33532_lvgd_1163850015_LV,BranchTee_mvgd_33532_lvgd_1163850015_17,0.014589778980724177,0.012663928155268586,0.0012421323607565643,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016231999999995 47.564830496244916, 10.016221000000002 47.56496159624492)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_18_LVCableDist_mvgd_33532_lvgd_1163850015_20,BranchTee_mvgd_33532_lvgd_1163850015_18,BranchTee_mvgd_33532_lvgd_1163850015_20,0.05642085750228433,0.048973304311982796,0.0048035116239809935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01615895057311 47.56310034632374, 10.016100399999997 47.56360659624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_18_LVCableDist_mvgd_33532_lvgd_1163850015_building_441981,BranchTee_mvgd_33532_lvgd_1163850015_18,BranchTee_mvgd_33532_lvgd_1163850015_building_441981,0.01953014834564518,0.016952168764020017,0.0016627413823439591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016358275246061 47.563587841906994, 10.016100399999997 47.56360659624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_18_LVCableDist_mvgd_33532_lvgd_1163850015_building_441982,BranchTee_mvgd_33532_lvgd_1163850015_18,BranchTee_mvgd_33532_lvgd_1163850015_building_441982,0.04792939619112898,0.04160271589389995,0.004080572715952731,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01666950555991 47.563413421637634, 10.016100399999997 47.56360659624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_18_LVCableDist_mvgd_33532_lvgd_1163850015_building_441983,BranchTee_mvgd_33532_lvgd_1163850015_18,BranchTee_mvgd_33532_lvgd_1163850015_building_441983,0.02934462007237596,0.025471130222822335,0.0024983176410116937,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016349950005065 47.56380944628616, 10.016100399999997 47.56360659624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_18_LVCableDist_mvgd_33532_lvgd_1163850015_building_441984,BranchTee_mvgd_33532_lvgd_1163850015_18,BranchTee_mvgd_33532_lvgd_1163850015_building_441984,0.040489131640154274,0.03514456626365391,0.00344712971564644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016636224680754 47.56363688805039, 10.016100399999997 47.56360659624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_18_LVCableDist_mvgd_33532_lvgd_1163850015_building_441991,BranchTee_mvgd_33532_lvgd_1163850015_18,BranchTee_mvgd_33532_lvgd_1163850015_building_441991,0.04792112235181072,0.04159553420137171,0.00407986830476333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016648973929966 47.563825210149524, 10.016100399999997 47.56360659624478)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_19_LVCableDist_mvgd_33532_lvgd_1163850015_building_441972,BranchTee_mvgd_33532_lvgd_1163850015_19,BranchTee_mvgd_33532_lvgd_1163850015_building_441972,0.023270351300428423,0.02019866492877187,0.001981171643149938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01641203097868 47.56449833190423, 10.016124899999994 47.56442089624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_19_LVCableDist_mvgd_33532_lvgd_1163850015_building_441974,BranchTee_mvgd_33532_lvgd_1163850015_19,BranchTee_mvgd_33532_lvgd_1163850015_building_441974,0.04309063838507267,0.03740267411824308,0.0036686146140029476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016696163334329 47.5644435680861, 10.016124899999994 47.56442089624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_19_LVCableDist_mvgd_33532_lvgd_1163850015_building_442012,BranchTee_mvgd_33532_lvgd_1163850015_19,BranchTee_mvgd_33532_lvgd_1163850015_building_442012,0.02739221913120424,0.02377644620588528,0.0023320957679178636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016403665222148 47.564262507678784, 10.016124899999994 47.56442089624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_19_LVCableDist_mvgd_33532_lvgd_1163850015_building_442013,BranchTee_mvgd_33532_lvgd_1163850015_19,BranchTee_mvgd_33532_lvgd_1163850015_building_442013,0.03466479647862176,0.030089043343443686,0.002951262355791976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016526160386922 47.56426797736834, 10.016124899999994 47.56442089624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_1_LVCableDist_mvgd_33532_lvgd_1163850015_11,BranchTee_mvgd_33532_lvgd_1163850015_1,BranchTee_mvgd_33532_lvgd_1163850015_11,0.06620020563589313,0.0211840658034858,0.005428123479957429,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014091599999992 47.564937996244886, 10.014967099999996 47.56499219624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_1_LVCableDist_mvgd_33532_lvgd_1163850015_3,BranchTee_mvgd_33532_lvgd_1163850015_1,BranchTee_mvgd_33532_lvgd_1163850015_3,0.007878480978409133,0.002521113913090923,0.0006460005248399653,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015071299999997 47.56499859624491, 10.014967099999996 47.56499219624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_1_LVCableDist_mvgd_33532_lvgd_1163850015_8,BranchTee_mvgd_33532_lvgd_1163850015_1,BranchTee_mvgd_33532_lvgd_1163850015_8,0.04155587221416349,0.013297879108532319,0.003407397356685992,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015064850696046 47.56462409632206, 10.014967099999996 47.56499219624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_20_LVCableDist_mvgd_33532_lvgd_1163850015_building_441969,BranchTee_mvgd_33532_lvgd_1163850015_20,BranchTee_mvgd_33532_lvgd_1163850015_building_441969,0.019886911356109253,0.01726183905710283,0.0016931151721733897,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01641208266153 47.56315137083266, 10.01615895057311 47.56310034632374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_20_LVCableDist_mvgd_33532_lvgd_1163850015_building_441971,BranchTee_mvgd_33532_lvgd_1163850015_20,BranchTee_mvgd_33532_lvgd_1163850015_building_441971,0.028547993359362648,0.024779658235926778,0.0024304951043588557,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016441478351854 47.5629290209445, 10.01615895057311 47.56310034632374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_20_LVCableDist_mvgd_33532_lvgd_1163850015_building_441975,BranchTee_mvgd_33532_lvgd_1163850015_20,BranchTee_mvgd_33532_lvgd_1163850015_building_441975,0.03743791579969212,0.03249611091413276,0.0031873578616589053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016638964220652 47.56318807751545, 10.01615895057311 47.56310034632374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_20_LVCableDist_mvgd_33532_lvgd_1163850015_building_441980,BranchTee_mvgd_33532_lvgd_1163850015_20,BranchTee_mvgd_33532_lvgd_1163850015_building_441980,0.034483904546717195,0.029932029146550524,0.002935861730277683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01641987416788 47.56335540083622, 10.01615895057311 47.56310034632374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_21_LVCableDist_mvgd_33532_lvgd_1163850015_22,BranchTee_mvgd_33532_lvgd_1163850015_21,BranchTee_mvgd_33532_lvgd_1163850015_22,0.04170454547385925,0.03619954547130983,0.003550606598781596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0165336 47.56539009624491, 10.016450100000002 47.56519069624494, 10.016331199999994 47.56504319624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_21_LVCableDist_mvgd_33532_lvgd_1163850015_building_442065,BranchTee_mvgd_33532_lvgd_1163850015_21,BranchTee_mvgd_33532_lvgd_1163850015_building_442065,0.04580523799406764,0.039758946578850714,0.003899727917726374,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015930339672607 47.565443074618074, 10.0165336 47.56539009624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_21_LVCableDist_mvgd_33532_lvgd_1163850015_building_442067,BranchTee_mvgd_33532_lvgd_1163850015_21,BranchTee_mvgd_33532_lvgd_1163850015_building_442067,0.022859670239324958,0.019842193767734065,0.001946207423567145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016236370028551 47.56534823309313, 10.0165336 47.56539009624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_21_LVCableDist_mvgd_33532_lvgd_1163850015_building_442068,BranchTee_mvgd_33532_lvgd_1163850015_21,BranchTee_mvgd_33532_lvgd_1163850015_building_442068,0.015203507931098996,0.013196644884193929,0.0012943835011611522,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016701549998563 47.56531414646183, 10.0165336 47.56539009624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_21_LVCableDist_mvgd_33532_lvgd_1163850015_building_442073,BranchTee_mvgd_33532_lvgd_1163850015_21,BranchTee_mvgd_33532_lvgd_1163850015_building_442073,0.0203121442157393,0.01763094117926171,0.0017293182905689032,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01668400723621 47.56554185406673, 10.0165336 47.56539009624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_22_LVCableDist_mvgd_33532_lvgd_1163850015_building_441986,BranchTee_mvgd_33532_lvgd_1163850015_22,BranchTee_mvgd_33532_lvgd_1163850015_building_441986,0.037333513484024396,0.03240548970413318,0.003178469344910287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016764299999878 47.56487964632448, 10.016331199999994 47.56504319624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_22_LVCableDist_mvgd_33532_lvgd_1163850015_building_441987,BranchTee_mvgd_33532_lvgd_1163850015_22,BranchTee_mvgd_33532_lvgd_1163850015_building_441987,0.016229818440597035,0.014087482406438225,0.0013817606641542543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01653053178998 47.564987631565515, 10.016331199999994 47.56504319624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_22_LVStation_mvgd_33532_lvgd_1163850015,BusBar_mvgd_33532_lvgd_1163850015_LV,BranchTee_mvgd_33532_lvgd_1163850015_22,0.012290630161857004,0.01066826698049188,0.0010463893578033835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016221000000002 47.56496159624492, 10.016331199999994 47.56504319624489)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_4_LVCableDist_mvgd_33532_lvgd_1163850015_9,BranchTee_mvgd_33532_lvgd_1163850015_4,BranchTee_mvgd_33532_lvgd_1163850015_9,0.06994716486056266,0.02238309275538005,0.00573535753082636,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014106400000003 47.56564269624497, 10.013522999999998 47.56613259624505)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_4_LVCableDist_mvgd_33532_lvgd_1163850015_building_442051,BranchTee_mvgd_33532_lvgd_1163850015_4,BranchTee_mvgd_33532_lvgd_1163850015_building_442051,0.05851804027017988,0.05079365895451613,0.004982059810753785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013215361811481 47.565648943985686, 10.013522999999998 47.56613259624505)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_5_LVCableDist_mvgd_33532_lvgd_1163850015_7,BranchTee_mvgd_33532_lvgd_1163850015_5,BranchTee_mvgd_33532_lvgd_1163850015_7,0.15208766468071333,0.048668052697828264,0.012470514490632736,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0116363 47.56638549624505, 10.012033099999998 47.565900396245034, 10.0122529 47.56568619624497, 10.012726000000006 47.5652352962449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_5_LVCableDist_mvgd_33532_lvgd_1163850015_building_442038,BranchTee_mvgd_33532_lvgd_1163850015_5,BranchTee_mvgd_33532_lvgd_1163850015_building_442038,0.03141754996973515,0.02727043337373011,0.002674801007243046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011960347014963 47.566563620861324, 10.0116363 47.56638549624505)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_6_LVCableDist_mvgd_33532_lvgd_1163850015_building_442056,BranchTee_mvgd_33532_lvgd_1163850015_6,BranchTee_mvgd_33532_lvgd_1163850015_building_442056,0.011864912456816623,0.010298744012516828,0.0010101449610461527,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01494819999132 47.56563624633723, 10.015103699999994 47.56561899624497)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_6_LVCableDist_mvgd_33532_lvgd_1163850015_building_442062,BranchTee_mvgd_33532_lvgd_1163850015_6,BranchTee_mvgd_33532_lvgd_1163850015_building_442062,0.01782895537106429,0.015475533262083804,0.00151790664232422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015338931327378 47.56563727930237, 10.015103699999994 47.56561899624497)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_7_LVCableDist_mvgd_33532_lvgd_1163850015_building_442044,BranchTee_mvgd_33532_lvgd_1163850015_7,BranchTee_mvgd_33532_lvgd_1163850015_building_442044,0.026343959393202658,0.022866556753299908,0.0022428499099257544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012958763298968 47.56541230665812, 10.012726000000006 47.5652352962449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_8_LVCableDist_mvgd_33532_lvgd_1163850015_building_441977,BranchTee_mvgd_33532_lvgd_1163850015_8,BranchTee_mvgd_33532_lvgd_1163850015_building_441977,0.03883120009751705,0.0337054816846448,0.0033059781311193842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015571810993347 47.56468808966013, 10.015064850696046 47.56462409632206)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_8_LVCableDist_mvgd_33532_lvgd_1163850015_building_441998,BranchTee_mvgd_33532_lvgd_1163850015_8,BranchTee_mvgd_33532_lvgd_1163850015_building_441998,0.029771548040857562,0.025841703699464365,0.002534665076162266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014672002555209 47.564593902846624, 10.015064850696046 47.56462409632206)" -Branch_LVCableDist_mvgd_33532_lvgd_1163850015_9_LVCableDist_mvgd_33532_lvgd_1163850015_building_442055,BranchTee_mvgd_33532_lvgd_1163850015_9,BranchTee_mvgd_33532_lvgd_1163850015_building_442055,0.03633721086917781,0.03154069903444634,0.0030936469688727644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014584469384088 47.565687248388485, 10.014106400000003 47.56564269624497)" -Branch_LVCableDist_mvgd_33532_lvgd_1163860000_1_LVCableDist_mvgd_33532_lvgd_1163860000_building_431786,BranchTee_mvgd_33532_lvgd_1163860000_1,BranchTee_mvgd_33532_lvgd_1163860000_building_431786,0.030246427996324713,0.02625389950080985,0.0025750950073448907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00857480004571 47.5463864463555, 10.008776600000001 47.546621796243286)" -Branch_LVCableDist_mvgd_33532_lvgd_1163860000_1_LVCableDist_mvgd_33532_lvgd_1163860000_building_431791,BranchTee_mvgd_33532_lvgd_1163860000_1,BranchTee_mvgd_33532_lvgd_1163860000_building_431791,0.024022874810632713,0.020851855335629194,0.002045239358328477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009015799997325 47.546764796325945, 10.008776600000001 47.546621796243286)" -Branch_LVCableDist_mvgd_33532_lvgd_1163860000_1_LVStation_mvgd_33532_lvgd_1163860000,BusBar_mvgd_33532_lvgd_1163860000_LV,BranchTee_mvgd_33532_lvgd_1163860000_1,0.035822213308312374,0.031093681151615142,0.0030498015386639307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0088695 47.54693799624336, 10.008776600000001 47.546621796243286)" -Branch_LVCableDist_mvgd_33532_lvgd_1163880000_1_LVCableDist_mvgd_33532_lvgd_1163880000_building_431738,BranchTee_mvgd_33532_lvgd_1163880000_1,BranchTee_mvgd_33532_lvgd_1163880000_building_431738,0.07699652497246433,0.06683298367609904,0.006555265536267343,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00985636748941 47.54082564815172, 10.009561100000003 47.54148909624284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163880000_1_LVCableDist_mvgd_33532_lvgd_1163880000_building_431744,BranchTee_mvgd_33532_lvgd_1163880000_1,BranchTee_mvgd_33532_lvgd_1163880000_building_431744,0.05724445329759335,0.04968818546231103,0.004873630231732898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009644779679162 47.54097700894561, 10.009561100000003 47.54148909624284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163880000_1_LVCableDist_mvgd_33532_lvgd_1163880000_building_431750,BranchTee_mvgd_33532_lvgd_1163880000_1,BranchTee_mvgd_33532_lvgd_1163880000_building_431750,0.016108143340023733,0.0139818684191406,0.0013714015915377267,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009505000008353 47.5413491962806, 10.009561100000003 47.54148909624284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163880000_1_LVStation_mvgd_33532_lvgd_1163880000,BusBar_mvgd_33532_lvgd_1163880000_LV,BranchTee_mvgd_33532_lvgd_1163880000_1,0.056784260097742886,0.04928873776484082,0.00483445068922649,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009561100000003 47.54148909624284, 10.009866 47.54102169624281)" -Branch_LVCableDist_mvgd_33532_lvgd_1163880000_2_LVCableDist_mvgd_33532_lvgd_1163880000_building_431734,BranchTee_mvgd_33532_lvgd_1163880000_2,BranchTee_mvgd_33532_lvgd_1163880000_building_431734,0.015841160763449245,0.013750127542673945,0.0013486714529551286,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01071480002616 47.53967289632189, 10.010761599999995 47.539533896242666)" -Branch_LVCableDist_mvgd_33532_lvgd_1163880000_2_LVStation_mvgd_33532_lvgd_1163880000,BusBar_mvgd_33532_lvgd_1163880000_LV,BranchTee_mvgd_33532_lvgd_1163880000_2,0.630281347662689,0.547084209771214,0.053660364515969186,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009866 47.54102169624281, 10.010112699999999 47.54050639624272, 10.009626499999994 47.54036969624278, 10.008618800000002 47.54004649624273, 10.007803099999995 47.53974989624267, 10.007064300000001 47.53947909624263, 10.007165699999996 47.539374696242625, 10.0073184 47.53929149624259, 10.007523600000006 47.53922979624264, 10.007758500000007 47.539194096242596, 10.008135900000003 47.539161196242645, 10.008523499999999 47.53913129624258, 10.009040999999995 47.53906579624263, 10.009342800000004 47.53902719624262, 10.009446200000003 47.53900549624264, 10.009635199999998 47.53903719624259, 10.009778600000006 47.539076696242645, 10.010311699999994 47.539272996242644, 10.010693200000006 47.53939409624262, 10.0107604 47.53946729624264, 10.010761599999995 47.539533896242666)" -Branch_Generator_mvgd_33532_lvgd_1163890000_water_399_LVStation_mvgd_33532_lvgd_1163890000,BusBar_mvgd_33532_lvgd_1163890000_LV,Bus_mvgd_33532_lvgd_1163890000_gen_399,0.88929900297034,0.7719115345782551,0.07571239231501904,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.098590999999995 47.558323996203825, 10.0977125 47.55219599624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163890000_building_447046_LVStation_mvgd_33532_lvgd_1163890000,BusBar_mvgd_33532_lvgd_1163890000_LV,BranchTee_mvgd_33532_lvgd_1163890000_building_447046,0.014099364689500666,0.012238248550486578,0.0012003798803309849,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09765259885293 47.5523162241268, 10.0977125 47.55219599624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163900000_1_LVCableDist_mvgd_33532_lvgd_1163900000_2,BranchTee_mvgd_33532_lvgd_1163900000_1,BranchTee_mvgd_33532_lvgd_1163900000_2,0.4568675299017793,0.39656101595474447,0.03889640440884524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017163399999994 47.53640379624241, 10.0172535 47.53649969624238, 10.017382399999999 47.536597296242384, 10.017450300000005 47.53664079624238, 10.017381300000006 47.53667559624244, 10.017337399999997 47.536734496242445, 10.017241299999997 47.53695829624242, 10.017189299999993 47.53704329624245, 10.0171169 47.53711179624242, 10.017026700000004 47.53716569624246, 10.016929000000005 47.53718959624242, 10.016707799999999 47.53719139624244, 10.0164731 47.53716489624246, 10.0157926 47.53700009624246, 10.015473399999998 47.53688089624245, 10.015173 47.53675619624243, 10.015079099999994 47.536642096242375, 10.015043200000004 47.53643539624238, 10.015010099999996 47.53638319624242, 10.014965999999996 47.536340796242335, 10.014890099999995 47.53635789624237, 10.014794699999994 47.53638359624241, 10.0147762 47.5364534962424, 10.014746099999998 47.536537596242404, 10.014553699999997 47.53667439624237, 10.014090999999997 47.53700589624247, 10.014012800000001 47.53708379624245, 10.013976399999995 47.537147296242466, 10.013971199999993 47.53722479624246, 10.014013399999994 47.53733169624245, 10.014049 47.537434896242445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163900000_1_LVCableDist_mvgd_33532_lvgd_1163900000_building_431736,BranchTee_mvgd_33532_lvgd_1163900000_1,BranchTee_mvgd_33532_lvgd_1163900000_building_431736,0.056037544843678115,0.048640588924312604,0.004770877472485521,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01395314439945 47.537935049765764, 10.014049 47.537434896242445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163900000_1_LVStation_mvgd_33532_lvgd_1163900000,BusBar_mvgd_33532_lvgd_1163900000_LV,BranchTee_mvgd_33532_lvgd_1163900000_1,0.048277133978451056,0.04190455229329552,0.0041101781239072524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014049 47.537434896242445, 10.014048500000001 47.53750289624249, 10.014046299999993 47.53758719624248, 10.0140421 47.537762896242526, 10.013885199999995 47.53775869624249)" -Branch_LVCableDist_mvgd_33532_lvgd_1163900000_2_LVCableDist_mvgd_33532_lvgd_1163900000_building_431695,BranchTee_mvgd_33532_lvgd_1163900000_2,BranchTee_mvgd_33532_lvgd_1163900000_building_431695,0.020320274455711215,0.017637998227557333,0.0017300104761176478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016893700030344 47.53640254630676, 10.017163399999994 47.53640379624241)" -Branch_LVCableDist_mvgd_33532_lvgd_1163910000_building_442340_LVStation_mvgd_33532_lvgd_1163910000,BusBar_mvgd_33532_lvgd_1163910000_LV,BranchTee_mvgd_33532_lvgd_1163910000_building_442340,0.0316512466667838,0.02747328210676834,0.0026946972805443462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01757713879938 47.57227366721396, 10.017450000000006 47.57254519624557)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_1_LVCableDist_mvgd_33532_lvgd_1163930000_3,BranchTee_mvgd_33532_lvgd_1163930000_1,BranchTee_mvgd_33532_lvgd_1163930000_3,0.5100992024619996,0.44276610773701564,0.04342839788123469,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032083200000004 47.54062869624272, 10.031889500000002 47.540447296242725, 10.031654700000006 47.54025669624274, 10.031559499999993 47.54017059624275, 10.031461799999999 47.54000289624268, 10.031412099999992 47.53976299624271, 10.031391399999995 47.53947389624265, 10.031469099999999 47.539184096242636, 10.031544400000003 47.539083196242636, 10.031669000000006 47.53905469624258, 10.031838 47.53906879624265, 10.032736999999996 47.539258196242656, 10.032964700000006 47.539262596242594, 10.033215199999999 47.53929789624261, 10.033412900000004 47.539358596242636, 10.033575900000006 47.53943159624263, 10.033666800000006 47.53949489624264, 10.033854099999996 47.5396573962427, 10.034099500000007 47.539942496242695, 10.034262 47.540180396242725, 10.034382899999995 47.540419796242766, 10.034475199999996 47.54071429624279)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_1_LVCableDist_mvgd_33532_lvgd_1163930000_4,BranchTee_mvgd_33532_lvgd_1163930000_1,BranchTee_mvgd_33532_lvgd_1163930000_4,0.022090142441079447,0.01917424363885696,0.0018806920115814417,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034520800000001 47.540910696242804, 10.034475199999996 47.54071429624279)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_1_LVCableDist_mvgd_33532_lvgd_1163930000_building_444963,BranchTee_mvgd_33532_lvgd_1163930000_1,BranchTee_mvgd_33532_lvgd_1163930000_building_444963,0.023777397842988254,0.020638781327713806,0.0020243401462338713,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034190549999899 47.54080674625411, 10.034475199999996 47.54071429624279)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_2_LVCableDist_mvgd_33532_lvgd_1163930000_4,BranchTee_mvgd_33532_lvgd_1163930000_2,BranchTee_mvgd_33532_lvgd_1163930000_4,0.04807504602305608,0.04172913994801268,0.004092972929130356,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034605100000006 47.541339596242864, 10.034520800000001 47.540910696242804)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_2_LVCableDist_mvgd_33532_lvgd_1163930000_building_444966,BranchTee_mvgd_33532_lvgd_1163930000_2,BranchTee_mvgd_33532_lvgd_1163930000_building_444966,0.01822094117465317,0.01581577693959895,0.0015512792007596973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034371399998582 47.54129734630091, 10.034605100000006 47.541339596242864)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_2_LVStation_mvgd_33532_lvgd_1163930000,BusBar_mvgd_33532_lvgd_1163930000_LV,BranchTee_mvgd_33532_lvgd_1163930000_2,0.011419022801700094,0.009911711791875681,0.0009721831817293742,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034605100000006 47.541339596242864, 10.0346109 47.54144229624284)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_3_LVCableDist_mvgd_33532_lvgd_1163930000_building_444961,BranchTee_mvgd_33532_lvgd_1163930000_3,BranchTee_mvgd_33532_lvgd_1163930000_building_444961,0.018412230545907578,0.015981816113847778,0.0015675650347409932,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03183886540187 47.54062482932374, 10.032083200000004 47.54062869624272)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_4_LVCableDist_mvgd_33532_lvgd_1163930000_building_444964,BranchTee_mvgd_33532_lvgd_1163930000_4,BranchTee_mvgd_33532_lvgd_1163930000_building_444964,0.023927542296060877,0.02076910671298084,0.002037123018695202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034353927673617 47.541093935701056, 10.034520800000001 47.540910696242804)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_5_LVCableDist_mvgd_33532_lvgd_1163930000_6,BranchTee_mvgd_33532_lvgd_1163930000_5,BranchTee_mvgd_33532_lvgd_1163930000_6,0.14852742100869595,0.1289218014355481,0.01264520294230381,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036489600000001 47.54210809624289, 10.035846100000002 47.54222139624288, 10.0357062 47.542226896242944, 10.035562500000001 47.54220809624292, 10.035429699999995 47.542156596242904, 10.035097999999998 47.54199539624285, 10.0346567 47.54190939624289)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_5_LVCableDist_mvgd_33532_lvgd_1163930000_7,BranchTee_mvgd_33532_lvgd_1163930000_5,BranchTee_mvgd_33532_lvgd_1163930000_7,0.015858171020568107,0.013764892445853117,0.0013501196579526165,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036489600000001 47.54210809624289, 10.036699900000007 47.542101796242925)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_5_LVCableDist_mvgd_33532_lvgd_1163930000_building_444985,BranchTee_mvgd_33532_lvgd_1163930000_5,BranchTee_mvgd_33532_lvgd_1163930000_building_444985,0.023642266653881142,0.02052148745556883,0.002012835460442591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036262016799311 47.54225461799286, 10.036489600000001 47.54210809624289)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_5_LVCableDist_mvgd_33532_lvgd_1163930000_building_444993,BranchTee_mvgd_33532_lvgd_1163930000_5,BranchTee_mvgd_33532_lvgd_1163930000_building_444993,0.016035918965405713,0.013919177661972159,0.0013652526133340833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036582381471838 47.54223799278265, 10.036489600000001 47.54210809624289)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_6_LVCableDist_mvgd_33532_lvgd_1163930000_building_444968,BranchTee_mvgd_33532_lvgd_1163930000_6,BranchTee_mvgd_33532_lvgd_1163930000_building_444968,0.031402638847925615,0.027257490519999435,0.002673531516666165,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034755102179332 47.541634748358206, 10.0346567 47.54190939624289)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_6_LVCableDist_mvgd_33532_lvgd_1163930000_building_444969,BranchTee_mvgd_33532_lvgd_1163930000_6,BranchTee_mvgd_33532_lvgd_1163930000_building_444969,0.027646898198164245,0.023997507636006565,0.0023537784206226274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034925450024284 47.54173994629752, 10.0346567 47.54190939624289)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_6_LVCableDist_mvgd_33532_lvgd_1163930000_building_444980,BranchTee_mvgd_33532_lvgd_1163930000_6,BranchTee_mvgd_33532_lvgd_1163930000_building_444980,0.021859743824116158,0.018974257639332824,0.0018610765274550706,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034755250008695 47.54209444627497, 10.0346567 47.54190939624289)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_6_LVStation_mvgd_33532_lvgd_1163930000,BusBar_mvgd_33532_lvgd_1163930000_LV,BranchTee_mvgd_33532_lvgd_1163930000_6,0.05602238463644128,0.048627429864431033,0.004769586775482535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0346109 47.54144229624284, 10.034517699999997 47.54177969624285, 10.034569700000002 47.54184019624283, 10.0346567 47.54190939624289)" -Branch_LVCableDist_mvgd_33532_lvgd_1163930000_7_LVCableDist_mvgd_33532_lvgd_1163930000_building_444986,BranchTee_mvgd_33532_lvgd_1163930000_7,BranchTee_mvgd_33532_lvgd_1163930000_building_444986,0.006057602161074418,0.005257998675812595,0.0005157270499299884,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036633299999492 47.54207124624713, 10.036699900000007 47.542101796242925)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_100_LVCableDist_mvgd_33532_lvgd_1163940000_101,BranchTee_mvgd_33532_lvgd_1163940000_100,BranchTee_mvgd_33532_lvgd_1163940000_101,0.045616094444505595,0.01459715022224179,0.003740317585719473,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089634100000003 47.554681896244006, 10.0896434 47.55451519624398, 10.089629500000004 47.554425696243946, 10.089544 47.55428329624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_100_LVCableDist_mvgd_33532_lvgd_1163940000_102,BranchTee_mvgd_33532_lvgd_1163940000_100,BranchTee_mvgd_33532_lvgd_1163940000_102,0.09532503501577921,0.03050401120504935,0.007816230415398683,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089736699999996 47.55373409624389, 10.0898894 47.55373609624391, 10.089883100000003 47.55425889624394, 10.089733199999996 47.554276896243984, 10.089544 47.55428329624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_100_LVCableDist_mvgd_33532_lvgd_1163940000_103,BranchTee_mvgd_33532_lvgd_1163940000_100,BranchTee_mvgd_33532_lvgd_1163940000_103,0.014660365042779703,0.004691316813689505,0.0012020849625626088,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089544 47.55428329624397, 10.089349499999997 47.55428849624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_100_LVCableDist_mvgd_33532_lvgd_1163940000_105,BranchTee_mvgd_33532_lvgd_1163940000_100,BranchTee_mvgd_33532_lvgd_1163940000_105,0.04170049744077744,0.013344159181048781,0.0034192559843267446,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089544 47.55428329624397, 10.089417199999994 47.554147496243985, 10.089324599999998 47.55404449624397, 10.0892401 47.5539699962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_101_LVCableDist_mvgd_33532_lvgd_1163940000_104,BranchTee_mvgd_33532_lvgd_1163940000_101,BranchTee_mvgd_33532_lvgd_1163940000_104,0.2487981304519847,0.0796154017446351,0.02040034408811107,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.088720799999999 47.556742496244176, 10.0888543 47.55664039624423, 10.088979299999997 47.55641899624416, 10.089003799999995 47.55625839624413, 10.088988799999996 47.555966096244134, 10.0889737 47.555802096244086, 10.089003999999997 47.55553939624407, 10.089113399999993 47.55545459624406, 10.089349399999998 47.55526529624408, 10.089461400000001 47.55514579624405, 10.089552999999995 47.55500279624405, 10.089610499999997 47.55482779624404, 10.089634100000003 47.554681896244006)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_101_LVCableDist_mvgd_33532_lvgd_1163940000_building_446851,BranchTee_mvgd_33532_lvgd_1163940000_101,BranchTee_mvgd_33532_lvgd_1163940000_building_446851,0.025307564828294805,0.02196696627095989,0.0021546142190845786,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089298203073739 47.554688074681486, 10.089634100000003 47.554681896244006)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_102_LVCableDist_mvgd_33532_lvgd_1163940000_97,BranchTee_mvgd_33532_lvgd_1163940000_97,BranchTee_mvgd_33532_lvgd_1163940000_102,0.026404487060039762,0.008449435859212723,0.0021650509210672827,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089772600000003 47.55349769624387, 10.089736699999996 47.55373409624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_102_LVCableDist_mvgd_33532_lvgd_1163940000_building_446813,BranchTee_mvgd_33532_lvgd_1163940000_102,BranchTee_mvgd_33532_lvgd_1163940000_building_446813,0.021973823898570742,0.019073279143959405,0.0018707889811107959,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089767932915512 47.553930730061914, 10.089736699999996 47.55373409624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_103_LVCableDist_mvgd_33532_lvgd_1163940000_92,BranchTee_mvgd_33532_lvgd_1163940000_92,BranchTee_mvgd_33532_lvgd_1163940000_103,0.03770790197960098,0.012066528633472313,0.0030918808506605,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089349499999997 47.55428849624399, 10.088879200000001 47.55440489624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_103_LVCableDist_mvgd_33532_lvgd_1163940000_building_446807,BranchTee_mvgd_33532_lvgd_1163940000_103,BranchTee_mvgd_33532_lvgd_1163940000_building_446807,0.010580437781262842,0.009183819994136148,0.0009007884339057774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08929622530733 47.55420038372826, 10.089349499999997 47.55428849624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_103_LVCableDist_mvgd_33532_lvgd_1163940000_building_446850,BranchTee_mvgd_33532_lvgd_1163940000_103,BranchTee_mvgd_33532_lvgd_1163940000_building_446850,0.015511246557840532,0.013463762012205581,0.0013205834941449714,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089370464416106 47.55442737645426, 10.089349499999997 47.55428849624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_104_LVCableDist_mvgd_33532_lvgd_1163940000_93,BranchTee_mvgd_33532_lvgd_1163940000_93,BranchTee_mvgd_33532_lvgd_1163940000_104,0.33551744700677505,0.10736558304216802,0.027510943728026642,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.088720799999999 47.556742496244176, 10.088681600000005 47.55629489624413, 10.088718799999995 47.55613669624417, 10.088858999999996 47.55586469624412, 10.088887599999996 47.55559319624407, 10.088775399999996 47.55557769624411, 10.088680899999995 47.55553449624408, 10.0882415 47.55552319624411, 10.088137199999998 47.555526196244074, 10.087649300000006 47.55554049624407, 10.087546900000003 47.55554549624407, 10.087449100000006 47.55555019624407, 10.087360699999996 47.55552679624408, 10.0873118 47.55543539624408, 10.087288200000001 47.55538709624407, 10.087242399999997 47.55529839624404, 10.087194099999998 47.55519909624407, 10.087078800000002 47.55506379624406, 10.087012800000004 47.55498709624405, 10.0867576 47.55487889624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_104_LVCableDist_mvgd_33532_lvgd_1163940000_building_446859,BranchTee_mvgd_33532_lvgd_1163940000_104,BranchTee_mvgd_33532_lvgd_1163940000_building_446859,0.028022933503577326,0.024323906281105118,0.0023857929989282807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08835086602274 47.55676960654979, 10.088720799999999 47.556742496244176)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_104_LVStation_mvgd_33532_lvgd_1163940000,BusBar_mvgd_33532_lvgd_1163940000_LV,BranchTee_mvgd_33532_lvgd_1163940000_104,0.05338623059056035,0.017083593788979314,0.004377434314462648,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.088636700000006 47.55721959624428, 10.088720799999999 47.556742496244176)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_105_LVCableDist_mvgd_33532_lvgd_1163940000_110,BranchTee_mvgd_33532_lvgd_1163940000_105,BranchTee_mvgd_33532_lvgd_1163940000_110,0.0702523921242169,0.022480765479749407,0.005760384813757736,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0892401 47.5539699962439, 10.0888834 47.553969396243936, 10.088326002125267 47.554067999093625)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_105_LVCableDist_mvgd_33532_lvgd_1163940000_99,BranchTee_mvgd_33532_lvgd_1163940000_99,BranchTee_mvgd_33532_lvgd_1163940000_105,0.024216034125499414,0.007749130920159813,0.001985607479092241,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0892401 47.5539699962439, 10.0892608 47.55375249624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_105_LVCableDist_mvgd_33532_lvgd_1163940000_building_446800,BranchTee_mvgd_33532_lvgd_1163940000_105,BranchTee_mvgd_33532_lvgd_1163940000_building_446800,0.015795707190119995,0.013710673841024156,0.001344801664768558,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089421934225792 47.553899153611546, 10.0892401 47.5539699962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_106_LVCableDist_mvgd_33532_lvgd_1163940000_107,BranchTee_mvgd_33532_lvgd_1163940000_106,BranchTee_mvgd_33532_lvgd_1163940000_107,0.01534530027452374,0.004910496087847597,0.0012582466161098612,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.087211199999997 47.554265196243975, 10.087007999999997 47.554275296243986)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_106_LVCableDist_mvgd_33532_lvgd_1163940000_111,BranchTee_mvgd_33532_lvgd_1163940000_106,BranchTee_mvgd_33532_lvgd_1163940000_111,0.043386862244956845,0.013883795918386191,0.003557530424736896,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.08776860212526 47.55416659909366, 10.087211199999997 47.554265196243975)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_106_LVCableDist_mvgd_33532_lvgd_1163940000_building_446826,BranchTee_mvgd_33532_lvgd_1163940000_106,BranchTee_mvgd_33532_lvgd_1163940000_building_446826,0.027122026371885762,0.02354191889079684,0.0023090923234904324,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087412849994218 47.55406294630703, 10.087211199999997 47.554265196243975)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_106_LVCableDist_mvgd_33532_lvgd_1163940000_building_446829,BranchTee_mvgd_33532_lvgd_1163940000_106,BranchTee_mvgd_33532_lvgd_1163940000_building_446829,0.019231713489125283,0.016693127308560745,0.0016373334859425906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087343621468664 47.55441318961573, 10.087211199999997 47.554265196243975)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_107_LVCableDist_mvgd_33532_lvgd_1163940000_108,BranchTee_mvgd_33532_lvgd_1163940000_107,BranchTee_mvgd_33532_lvgd_1163940000_108,0.02618502549334599,0.008379208157870717,0.0021470560451952833,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.087007999999997 47.554275296243986, 10.086876999999996 47.55405699624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_107_LVCableDist_mvgd_33532_lvgd_1163940000_building_446823,BranchTee_mvgd_33532_lvgd_1163940000_107,BranchTee_mvgd_33532_lvgd_1163940000_building_446823,0.022720445758622834,0.01972134691848462,0.001934354246550679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08698756782213 47.554479318007054, 10.087007999999997 47.554275296243986)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_108_LVCableDist_mvgd_33532_lvgd_1163940000_109,BranchTee_mvgd_33532_lvgd_1163940000_108,BranchTee_mvgd_33532_lvgd_1163940000_109,0.054890360525498574,0.017564915368159545,0.00450076630321282,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.086876999999996 47.55405699624394, 10.086868999999998 47.55356299624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_108_LVCableDist_mvgd_33532_lvgd_1163940000_building_446769,BranchTee_mvgd_33532_lvgd_1163940000_108,BranchTee_mvgd_33532_lvgd_1163940000_building_446769,0.019830785966137215,0.017213122218607102,0.0016883368158160756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086751631597872 47.55421395142205, 10.086876999999996 47.55405699624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_108_LVCableDist_mvgd_33532_lvgd_1163940000_building_446819,BranchTee_mvgd_33532_lvgd_1163940000_108,BranchTee_mvgd_33532_lvgd_1163940000_building_446819,0.01832723057390766,0.015908036138151848,0.0015603283784472967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087108930074079 47.55410690066683, 10.086876999999996 47.55405699624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_109_LVCableDist_mvgd_33532_lvgd_1163940000_building_446796,BranchTee_mvgd_33532_lvgd_1163940000_109,BranchTee_mvgd_33532_lvgd_1163940000_building_446796,0.013496146209661835,0.011714654909986473,0.0011490235715476834,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087047474247395 47.55357384344577, 10.086868999999998 47.55356299624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_109_LVCableDist_mvgd_33532_lvgd_1163940000_building_446805,BranchTee_mvgd_33532_lvgd_1163940000_109,BranchTee_mvgd_33532_lvgd_1163940000_building_446805,0.04457089945151822,0.038687540723917814,0.0037946398386091112,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087316499999408 47.55330049625954, 10.086868999999998 47.55356299624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_109_LVCableDist_mvgd_33532_lvgd_1163940000_building_446816,BranchTee_mvgd_33532_lvgd_1163940000_109,BranchTee_mvgd_33532_lvgd_1163940000_building_446816,0.02691535731463397,0.023362530149102285,0.0022914971067075963,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087037149999684 47.55377674628612, 10.086868999999998 47.55356299624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_10_LVCableDist_mvgd_33532_lvgd_1163940000_16,BranchTee_mvgd_33532_lvgd_1163940000_10,BranchTee_mvgd_33532_lvgd_1163940000_16,0.07187557045208752,0.023000182544668006,0.005893478243136684,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.093422599999997 47.557816396244306, 10.094373599999999 47.55787079624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_10_LVCableDist_mvgd_33532_lvgd_1163940000_4,BranchTee_mvgd_33532_lvgd_1163940000_4,BranchTee_mvgd_33532_lvgd_1163940000_10,0.024364507189729486,0.007796642300713435,0.0019977816123648955,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.094373599999999 47.55787079624427, 10.094694800000001 47.55789699624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_10_LVCableDist_mvgd_33532_lvgd_1163940000_building_446990,BranchTee_mvgd_33532_lvgd_1163940000_10,BranchTee_mvgd_33532_lvgd_1163940000_building_446990,0.01536569841358371,0.01333742622299066,0.0013081919383668942,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094498800035153 47.557761596300644, 10.094373599999999 47.55787079624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_110_LVCableDist_mvgd_33532_lvgd_1163940000_111,BranchTee_mvgd_33532_lvgd_1163940000_110,BranchTee_mvgd_33532_lvgd_1163940000_111,0.043386862244172465,0.013883795918135189,0.0035575304246725802,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.088326002125267 47.554067999093625, 10.08776860212526 47.55416659909366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_110_LVCableDist_mvgd_33532_lvgd_1163940000_building_446792,BranchTee_mvgd_33532_lvgd_1163940000_110,BranchTee_mvgd_33532_lvgd_1163940000_building_446792,0.01977722212203187,0.017166628801923663,0.0016837765422013985,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088317179318475 47.55424589978808, 10.088326002125267 47.554067999093625)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_110_LVCableDist_mvgd_33532_lvgd_1163940000_building_446793,BranchTee_mvgd_33532_lvgd_1163940000_110,BranchTee_mvgd_33532_lvgd_1163940000_building_446793,0.024568313541726214,0.021325296154218354,0.002091676463345376,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088613656338236 47.554172266162176, 10.088326002125267 47.554067999093625)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_110_LVCableDist_mvgd_33532_lvgd_1163940000_building_446835,BranchTee_mvgd_33532_lvgd_1163940000_110,BranchTee_mvgd_33532_lvgd_1163940000_building_446835,0.019637335777483257,0.017045207454855466,0.001671867015976132,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088119141961354 47.5539604179521, 10.088326002125267 47.554067999093625)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_111_LVCableDist_mvgd_33532_lvgd_1163940000_building_446831,BranchTee_mvgd_33532_lvgd_1163940000_111,BranchTee_mvgd_33532_lvgd_1163940000_building_446831,0.021661146859300383,0.018801875473872732,0.001844168545704859,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087773512052234 47.553971670500864, 10.08776860212526 47.55416659909366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_111_LVCableDist_mvgd_33532_lvgd_1163940000_building_446832,BranchTee_mvgd_33532_lvgd_1163940000_111,BranchTee_mvgd_33532_lvgd_1163940000_building_446832,0.022642923145526957,0.019654057290317398,0.0019277541913651948,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08765834998867 47.55435619628375, 10.08776860212526 47.55416659909366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_111_LVCableDist_mvgd_33532_lvgd_1163940000_building_446838,BranchTee_mvgd_33532_lvgd_1163940000_111,BranchTee_mvgd_33532_lvgd_1163940000_building_446838,0.022738393154171126,0.019736925257820538,0.0019358822368534306,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087993364580294 47.55430322903509, 10.08776860212526 47.55416659909366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_112_LVCableDist_mvgd_33532_lvgd_1163940000_96,BranchTee_mvgd_33532_lvgd_1163940000_96,BranchTee_mvgd_33532_lvgd_1163940000_112,0.006210706146981247,0.001987425967033999,0.0005092503798094889,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.086230499999997 47.55423779624396, 10.086150299999996 47.554224796244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_112_LVCableDist_mvgd_33532_lvgd_1163940000_building_446750,BranchTee_mvgd_33532_lvgd_1163940000_112,BranchTee_mvgd_33532_lvgd_1163940000_building_446750,0.02384487965064761,0.02069735553676213,0.0020300853557512176,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085847749551077 47.55416158827426, 10.086150299999996 47.554224796244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_112_LVCableDist_mvgd_33532_lvgd_1163940000_building_446756,BranchTee_mvgd_33532_lvgd_1163940000_112,BranchTee_mvgd_33532_lvgd_1163940000_building_446756,0.0143026691289543,0.012414716803932333,0.0012176886431069305,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08597704955107 47.554172088274285, 10.086150299999996 47.554224796244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_113_LVCableDist_mvgd_33532_lvgd_1163940000_114,BranchTee_mvgd_33532_lvgd_1163940000_113,BranchTee_mvgd_33532_lvgd_1163940000_114,0.019890172190512298,0.005032213564199611,0.0015996625621081456,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095187200000007 47.5590265962444, 10.095030900000003 47.55888229624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_113_LVCableDist_mvgd_33532_lvgd_1163940000_136,BranchTee_mvgd_33532_lvgd_1163940000_113,BranchTee_mvgd_33532_lvgd_1163940000_136,0.012830690913398881,0.0032461648010899172,0.00103190539043879,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095030900000003 47.55888229624438, 10.094895400000004 47.55881229624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_113_LVCableDist_mvgd_33532_lvgd_1163940000_building_447041,BranchTee_mvgd_33532_lvgd_1163940000_113,BranchTee_mvgd_33532_lvgd_1163940000_building_447041,0.02415465654134002,0.020966241877883138,0.002056458880741004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095202900000778 47.558698796288006, 10.095030900000003 47.55888229624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_113_LVCableDist_mvgd_33532_lvgd_1163940000_building_447047,BranchTee_mvgd_33532_lvgd_1163940000_113,BranchTee_mvgd_33532_lvgd_1163940000_building_447047,0.029710233834087645,0.025788482967988077,0.0025294449586742867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095323375933603 47.55870283697212, 10.095030900000003 47.55888229624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_114_LVCableDist_mvgd_33532_lvgd_1163940000_123,BranchTee_mvgd_33532_lvgd_1163940000_114,BranchTee_mvgd_33532_lvgd_1163940000_123,0.015720055735635084,0.003977174101115677,0.0012642818972951877,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095320100000002 47.55913569624437, 10.095187200000007 47.5590265962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_114_LVCableDist_mvgd_33532_lvgd_1163940000_building_447022,BranchTee_mvgd_33532_lvgd_1163940000_114,BranchTee_mvgd_33532_lvgd_1163940000_building_447022,0.013535935555478835,0.01174919206215563,0.0011524111234850999,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095331650003613 47.558954096267655, 10.095187200000007 47.5590265962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_115_LVCableDist_mvgd_33532_lvgd_1163940000_116,BranchTee_mvgd_33532_lvgd_1163940000_115,BranchTee_mvgd_33532_lvgd_1163940000_116,0.021892188690963783,0.005538723738813837,0.0017606742825608543,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095911099999995 47.55910129624443, 10.095851999999995 47.55909889624439, 10.095621499999996 47.559084396244366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_115_LVCableDist_mvgd_33532_lvgd_1163940000_123,BranchTee_mvgd_33532_lvgd_1163940000_115,BranchTee_mvgd_33532_lvgd_1163940000_123,0.023709859445511912,0.005998594439714513,0.0019068600384426699,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095320100000002 47.55913569624437, 10.095457400000004 47.559094696244394, 10.095621499999996 47.559084396244366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_115_LVCableDist_mvgd_33532_lvgd_1163940000_building_447024,BranchTee_mvgd_33532_lvgd_1163940000_115,BranchTee_mvgd_33532_lvgd_1163940000_building_447024,0.029062692436327718,0.025226417034732457,0.0024743151224958346,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095552050000867 47.558827096255754, 10.095621499999996 47.559084396244366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_116_LVCableDist_mvgd_33532_lvgd_1163940000_118,BranchTee_mvgd_33532_lvgd_1163940000_116,BranchTee_mvgd_33532_lvgd_1163940000_118,0.00596824156860461,0.0015099651168569662,0.0004799944669895031,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095911099999995 47.55910129624443, 10.095990200000006 47.55910459624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_116_LVCableDist_mvgd_33532_lvgd_1163940000_137,BranchTee_mvgd_33532_lvgd_1163940000_116,BranchTee_mvgd_33532_lvgd_1163940000_137,0.01341153343808102,0.003393117959834498,0.0010786195180146993,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095911099999995 47.55910129624443, 10.095909099999993 47.55922199624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_117_LVCableDist_mvgd_33532_lvgd_1163940000_139,BranchTee_mvgd_33532_lvgd_1163940000_117,BranchTee_mvgd_33532_lvgd_1163940000_139,0.025973418707481107,0.00657127493299272,0.0020889062758408794,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.093990099999994 47.55884229624436, 10.093666799999996 47.55876089624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_117_LVCableDist_mvgd_33532_lvgd_1163940000_140,BranchTee_mvgd_33532_lvgd_1163940000_117,BranchTee_mvgd_33532_lvgd_1163940000_140,0.026083031369388877,0.006599006936455386,0.00209772184917566,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.093666799999996 47.55876089624438, 10.093327899999998 47.558712496244354)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_117_LVCableDist_mvgd_33532_lvgd_1163940000_building_447015,BranchTee_mvgd_33532_lvgd_1163940000_117,BranchTee_mvgd_33532_lvgd_1163940000_building_447015,0.017438729159633484,0.015136816910561863,0.0014846838905694447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093854435886145 47.55866891692738, 10.093666799999996 47.55876089624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_118_LVCableDist_mvgd_33532_lvgd_1163940000_building_447029,BranchTee_mvgd_33532_lvgd_1163940000_118,BranchTee_mvgd_33532_lvgd_1163940000_building_447029,0.01880014603785527,0.016318526760858376,0.0016005910583993116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096040861037041 47.55893890922967, 10.095990200000006 47.55910459624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_119_LVCableDist_mvgd_33532_lvgd_1163940000_120,BranchTee_mvgd_33532_lvgd_1163940000_119,BranchTee_mvgd_33532_lvgd_1163940000_120,0.02653571859762807,0.0067135368051999015,0.0021341291162632805,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.091346899999996 47.55938879624445, 10.090999800000002 47.55934769624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_119_LVCableDist_mvgd_33532_lvgd_1163940000_132,BranchTee_mvgd_33532_lvgd_1163940000_119,BranchTee_mvgd_33532_lvgd_1163940000_132,0.028123136380849678,0.007115153504354968,0.0022617968294395183,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.090999800000002 47.55934769624441, 10.090631200000004 47.55930709624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_119_LVCableDist_mvgd_33532_lvgd_1163940000_building_447028,BranchTee_mvgd_33532_lvgd_1163940000_119,BranchTee_mvgd_33532_lvgd_1163940000_building_447028,0.01901794834394295,0.01650757916254248,0.0016191341283797647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091187237565734 47.55923298523446, 10.090999800000002 47.55934769624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_11_LVCableDist_mvgd_33532_lvgd_1163940000_13,BranchTee_mvgd_33532_lvgd_1163940000_11,BranchTee_mvgd_33532_lvgd_1163940000_13,0.018126709712439182,0.005800547107980538,0.0014863098635318314,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.096015500000002 47.5581872962443, 10.096249499999997 47.558225496244305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_11_LVCableDist_mvgd_33532_lvgd_1163940000_building_447013,BranchTee_mvgd_33532_lvgd_1163940000_11,BranchTee_mvgd_33532_lvgd_1163940000_building_447013,0.013182903516382124,0.011442760252219684,0.0011223549779653316,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09632830001056 47.55811954628322, 10.096249499999997 47.558225496244305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_11_LVCableDist_mvgd_33532_lvgd_1163940000_building_447014,BranchTee_mvgd_33532_lvgd_1163940000_11,BranchTee_mvgd_33532_lvgd_1163940000_building_447014,0.01299439517788486,0.011279135014404059,0.001106305913217383,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096287700002089 47.55833954629983, 10.096249499999997 47.558225496244305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_11_LVCableDist_mvgd_33532_lvgd_1163940000_building_447027,BranchTee_mvgd_33532_lvgd_1163940000_11,BranchTee_mvgd_33532_lvgd_1163940000_building_447027,0.04061671285687132,0.03525530675976431,0.003457991618223464,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096111894780172 47.55857896284315, 10.096249499999997 47.558225496244305)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_120_LVCableDist_mvgd_33532_lvgd_1163940000_122,BranchTee_mvgd_33532_lvgd_1163940000_120,BranchTee_mvgd_33532_lvgd_1163940000_122,0.032340679365042695,0.008182191879355802,0.0026009917620562215,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.091761599999998 47.559464396244415, 10.091346899999996 47.55938879624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_120_LVCableDist_mvgd_33532_lvgd_1163940000_building_447035,BranchTee_mvgd_33532_lvgd_1163940000_120,BranchTee_mvgd_33532_lvgd_1163940000_building_447035,0.019046009158036482,0.016531935949175666,0.0016215231464245753,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091570563274612 47.55930877607876, 10.091346899999996 47.55938879624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_121_LVCableDist_mvgd_33532_lvgd_1163940000_142,BranchTee_mvgd_33532_lvgd_1163940000_121,BranchTee_mvgd_33532_lvgd_1163940000_142,0.010014868870950048,0.002533761824350362,0.0008054435448740294,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.092700699999995 47.55874199624437, 10.092592599999994 47.558794496244325)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_121_LVCableDist_mvgd_33532_lvgd_1163940000_building_446958,BranchTee_mvgd_33532_lvgd_1163940000_121,BranchTee_mvgd_33532_lvgd_1163940000_building_446958,0.03401215423958932,0.02952254987996353,0.0028956982484693184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092622522969085 47.55909994182828, 10.092592599999994 47.558794496244325)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_121_LVStation_mvgd_33532_lvgd_1163940000,BusBar_mvgd_33532_lvgd_1163940000_LV,BranchTee_mvgd_33532_lvgd_1163940000_121,0.508871558319599,0.12874450425485853,0.040925879020483634,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.092592599999994 47.558794496244325, 10.092308200000005 47.55887019624437, 10.092105899999996 47.55888569624435, 10.091827700000003 47.55886059624441, 10.091186900000006 47.558786896244385, 10.090685599999995 47.55873149624438, 10.090358000000002 47.55870619624437, 10.089914300000006 47.558689296244374, 10.089616400000002 47.558707296244364, 10.089414000000003 47.55870669624436, 10.089151400000004 47.55867089624441, 10.089003600000003 47.558634896244364, 10.088885500000002 47.55858509624437, 10.088892600000003 47.558502796244376, 10.088954300000003 47.558419696244314, 10.089061099999995 47.55835499624432, 10.089231600000005 47.55829439624434, 10.089457 47.558256996244324, 10.089427199999998 47.55800149624434, 10.089418199999997 47.55797189624432, 10.089403500000007 47.55790049624435, 10.0894054 47.55787189624426, 10.089409999999996 47.55777339624429, 10.089326300000003 47.55772489624426, 10.089040500000001 47.557704996244226, 10.088857499999996 47.55767619624423, 10.088716800000002 47.557649096244305, 10.0886214 47.55760619624425, 10.088587499999997 47.55754509624424, 10.088599399999998 47.55735189624423, 10.088636700000006 47.55721959624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_122_LVCableDist_mvgd_33532_lvgd_1163940000_131,BranchTee_mvgd_33532_lvgd_1163940000_122,BranchTee_mvgd_33532_lvgd_1163940000_131,0.05200721389703143,0.013157825115948952,0.0041826683164822255,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.092435800000002 47.559557096244426, 10.092142100000002 47.559537396244444, 10.091761599999998 47.559464396244415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_122_LVCableDist_mvgd_33532_lvgd_1163940000_building_447049,BranchTee_mvgd_33532_lvgd_1163940000_122,BranchTee_mvgd_33532_lvgd_1163940000_building_447049,0.01829333157152986,0.01587861180408792,0.001557442313627092,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091978600577134 47.55939040001117, 10.091761599999998 47.559464396244415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_123_LVCableDist_mvgd_33532_lvgd_1163940000_124,BranchTee_mvgd_33532_lvgd_1163940000_123,BranchTee_mvgd_33532_lvgd_1163940000_124,0.03504222097141103,0.00886568190576699,0.0028182626296129297,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095320100000002 47.55913569624437, 10.095231399999998 47.55920969624439, 10.095149499999993 47.55931969624442, 10.095043999999996 47.55938499624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_124_LVCableDist_mvgd_33532_lvgd_1163940000_125,BranchTee_mvgd_33532_lvgd_1163940000_124,BranchTee_mvgd_33532_lvgd_1163940000_125,0.029476254509997475,0.007457492391029361,0.0023706210463731473,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.095043999999996 47.55938499624445, 10.094946899999998 47.55943959624442, 10.094711000000002 47.55952179624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_124_LVCableDist_mvgd_33532_lvgd_1163940000_building_447037,BranchTee_mvgd_33532_lvgd_1163940000_124,BranchTee_mvgd_33532_lvgd_1163940000_building_447037,0.015127394224362708,0.01313057818674683,0.0012879033962631145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094901200010568 47.55928924628581, 10.095043999999996 47.55938499624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_125_LVCableDist_mvgd_33532_lvgd_1163940000_126,BranchTee_mvgd_33532_lvgd_1163940000_125,BranchTee_mvgd_33532_lvgd_1163940000_126,0.027084712890741006,0.006852432361357475,0.0021782818570788023,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.094711000000002 47.55952179624442, 10.094382800000004 47.55962149624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_125_LVCableDist_mvgd_33532_lvgd_1163940000_building_447032,BranchTee_mvgd_33532_lvgd_1163940000_125,BranchTee_mvgd_33532_lvgd_1163940000_building_447032,0.03195374215471566,0.02773584819029319,0.0027204508875756403,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094620722137764 47.55924079096983, 10.094711000000002 47.55952179624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_126_LVCableDist_mvgd_33532_lvgd_1163940000_127,BranchTee_mvgd_33532_lvgd_1163940000_126,BranchTee_mvgd_33532_lvgd_1163940000_127,0.03430694263079947,0.008679656485592265,0.0027591280367627803,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.094382800000004 47.55962149624447, 10.0942393 47.55966039624444, 10.094137100000001 47.55968309624444, 10.093943700000002 47.55968629624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_126_LVCableDist_mvgd_33532_lvgd_1163940000_building_447031,BranchTee_mvgd_33532_lvgd_1163940000_126,BranchTee_mvgd_33532_lvgd_1163940000_building_447031,0.015572949159104607,0.013517319870102799,0.0013258366784374975,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094267845071013 47.55950499101401, 10.094382800000004 47.55962149624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_127_LVCableDist_mvgd_33532_lvgd_1163940000_128,BranchTee_mvgd_33532_lvgd_1163940000_127,BranchTee_mvgd_33532_lvgd_1163940000_128,0.02494388933772255,0.006310804002443805,0.002006106611080856,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.093943700000002 47.55968629624443, 10.093614900000002 47.559659196244475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_127_LVCableDist_mvgd_33532_lvgd_1163940000_building_447021,BranchTee_mvgd_33532_lvgd_1163940000_127,BranchTee_mvgd_33532_lvgd_1163940000_building_447021,0.0193140300214335,0.016764578058604276,0.0016443416817994564,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093850463824642 47.55952436091712, 10.093943700000002 47.55968629624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_127_LVCableDist_mvgd_33532_lvgd_1163940000_building_447026,BranchTee_mvgd_33532_lvgd_1163940000_127,BranchTee_mvgd_33532_lvgd_1163940000_building_447026,0.012919107936021152,0.01121378568846636,0.0010998961711921904,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093850668350866 47.559783991460726, 10.093943700000002 47.55968629624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_128_LVCableDist_mvgd_33532_lvgd_1163940000_129,BranchTee_mvgd_33532_lvgd_1163940000_128,BranchTee_mvgd_33532_lvgd_1163940000_129,0.03194929706789707,0.00808317215817796,0.002569514930070102,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.093614900000002 47.559659196244475, 10.093222199999998 47.55955039624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_128_LVCableDist_mvgd_33532_lvgd_1163940000_building_447002,BranchTee_mvgd_33532_lvgd_1163940000_128,BranchTee_mvgd_33532_lvgd_1163940000_building_447002,0.02134071416070723,0.018523739891493876,0.0018168878154831765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093527849986895 47.55947641295612, 10.093614900000002 47.559659196244475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_128_LVCableDist_mvgd_33532_lvgd_1163940000_building_447003,BranchTee_mvgd_33532_lvgd_1163940000_128,BranchTee_mvgd_33532_lvgd_1163940000_building_447003,0.018950616525012943,0.016449135143711234,0.001613401688477004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093585599999999 47.55948979627804, 10.093614900000002 47.559659196244475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_128_LVCableDist_mvgd_33532_lvgd_1163940000_building_447215,BranchTee_mvgd_33532_lvgd_1163940000_128,BranchTee_mvgd_33532_lvgd_1163940000_building_447215,0.033161011301912416,0.028783757810059978,0.0028232343552249657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093540020705785 47.559953309529206, 10.093614900000002 47.559659196244475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_129_LVCableDist_mvgd_33532_lvgd_1163940000_130,BranchTee_mvgd_33532_lvgd_1163940000_129,BranchTee_mvgd_33532_lvgd_1163940000_130,0.01616348954947933,0.00408936285601827,0.0012999449606405033,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.093222199999998 47.55955039624441, 10.093010200000005 47.55952769624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_129_LVCableDist_mvgd_33532_lvgd_1163940000_building_446993,BranchTee_mvgd_33532_lvgd_1163940000_129,BranchTee_mvgd_33532_lvgd_1163940000_building_446993,0.015240038105859369,0.013228353075885933,0.00129749357652788,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093238850000136 47.55941369627783, 10.093222199999998 47.55955039624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_129_LVCableDist_mvgd_33532_lvgd_1163940000_building_446994,BranchTee_mvgd_33532_lvgd_1163940000_129,BranchTee_mvgd_33532_lvgd_1163940000_building_446994,0.014970948571973907,0.012994783360473352,0.001274584057581662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093300450500935 47.55942652918803, 10.093222199999998 47.55955039624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_129_LVCableDist_mvgd_33532_lvgd_1163940000_building_446995,BranchTee_mvgd_33532_lvgd_1163940000_129,BranchTee_mvgd_33532_lvgd_1163940000_building_446995,0.016224346624773713,0.014082732870303582,0.0013812948092900216,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09336210000015 47.559439346277884, 10.093222199999998 47.55955039624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_129_LVCableDist_mvgd_33532_lvgd_1163940000_building_446996,BranchTee_mvgd_33532_lvgd_1163940000_129,BranchTee_mvgd_33532_lvgd_1163940000_building_446996,0.021038963801368195,0.01826182057958759,0.0017911976465847898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093470099999996 47.55946307961141, 10.093222199999998 47.55955039624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_12_LVCableDist_mvgd_33532_lvgd_1163940000_14,BranchTee_mvgd_33532_lvgd_1163940000_12,BranchTee_mvgd_33532_lvgd_1163940000_14,0.030596539859224114,0.009790892754951716,0.002508780672506851,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.092099100000002 47.55769029624424, 10.092488900000005 47.55776789624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_12_LVCableDist_mvgd_33532_lvgd_1163940000_3,BranchTee_mvgd_33532_lvgd_1163940000_3,BranchTee_mvgd_33532_lvgd_1163940000_12,0.03758725013135118,0.012027920042032379,0.0030819879338017963,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.091636400000004 47.55756349624425, 10.092099100000002 47.55769029624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_12_LVCableDist_mvgd_33532_lvgd_1163940000_building_446952,BranchTee_mvgd_33532_lvgd_1163940000_12,BranchTee_mvgd_33532_lvgd_1163940000_building_446952,0.02424279194856443,0.021042743411353926,0.0020639624790879385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091867682218371 47.557841968485086, 10.092099100000002 47.55769029624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_12_LVCableDist_mvgd_33532_lvgd_1163940000_building_446957,BranchTee_mvgd_33532_lvgd_1163940000_12,BranchTee_mvgd_33532_lvgd_1163940000_building_446957,0.019122876237973933,0.016598656574561374,0.0016280673913780675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091997708232698 47.55753250425992, 10.092099100000002 47.55769029624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_130_LVCableDist_mvgd_33532_lvgd_1163940000_131,BranchTee_mvgd_33532_lvgd_1163940000_130,BranchTee_mvgd_33532_lvgd_1163940000_131,0.04338025516519591,0.010975204556794566,0.0034888471280084517,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.093010200000005 47.55952769624442, 10.092435800000002 47.559557096244426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_130_LVCableDist_mvgd_33532_lvgd_1163940000_building_446983,BranchTee_mvgd_33532_lvgd_1163940000_130,BranchTee_mvgd_33532_lvgd_1163940000_building_446983,0.014950733718028212,0.012977236867248488,0.001272863022308469,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092972617374208 47.559395569571436, 10.093010200000005 47.55952769624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_130_LVCableDist_mvgd_33532_lvgd_1163940000_building_447208,BranchTee_mvgd_33532_lvgd_1163940000_130,BranchTee_mvgd_33532_lvgd_1163940000_building_447208,0.038477960646907665,0.033398869841515855,0.0032759043271722863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092982399997963 47.559873496288795, 10.093010200000005 47.55952769624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_131_LVCableDist_mvgd_33532_lvgd_1163940000_building_446978,BranchTee_mvgd_33532_lvgd_1163940000_131,BranchTee_mvgd_33532_lvgd_1163940000_building_446978,0.015386784966482596,0.013355729350906892,0.001309987187614132,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092338924656149 47.55943516955295, 10.092435800000002 47.559557096244426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_131_LVCableDist_mvgd_33532_lvgd_1163940000_building_446982,BranchTee_mvgd_33532_lvgd_1163940000_131,BranchTee_mvgd_33532_lvgd_1163940000_building_446982,0.022604539530177055,0.019620740312193685,0.001924486319328755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092663573825625 47.559424591137166, 10.092435800000002 47.559557096244426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_132_LVCableDist_mvgd_33532_lvgd_1163940000_133,BranchTee_mvgd_33532_lvgd_1163940000_132,BranchTee_mvgd_33532_lvgd_1163940000_133,0.041543355010896905,0.010510468817756918,0.003341114852037285,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.090631200000004 47.55930709624441, 10.090320300000004 47.55928419624443, 10.090082199999996 47.5592708962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_132_LVCableDist_mvgd_33532_lvgd_1163940000_building_446927,BranchTee_mvgd_33532_lvgd_1163940000_132,BranchTee_mvgd_33532_lvgd_1163940000_building_446927,0.01708309438129343,0.014828125922962699,0.0014544061552199034,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090527014572872 47.559170522412686, 10.090631200000004 47.55930709624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_132_LVCableDist_mvgd_33532_lvgd_1163940000_building_446928,BranchTee_mvgd_33532_lvgd_1163940000_132,BranchTee_mvgd_33532_lvgd_1163940000_building_446928,0.016833154300466533,0.01461117793280495,0.0014331269663401145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090754610423309 47.55918077524097, 10.090631200000004 47.55930709624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_133_LVCableDist_mvgd_33532_lvgd_1163940000_134,BranchTee_mvgd_33532_lvgd_1163940000_133,BranchTee_mvgd_33532_lvgd_1163940000_134,0.027206197412729168,0.00688316794542048,0.002188052222052956,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.090082199999996 47.5592708962444, 10.0897216 47.55925609624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_133_LVCableDist_mvgd_33532_lvgd_1163940000_building_446919,BranchTee_mvgd_33532_lvgd_1163940000_133,BranchTee_mvgd_33532_lvgd_1163940000_building_446919,0.01783106954496699,0.015477368365031347,0.0015180866370879706,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089964286100468 47.55913173106569, 10.090082199999996 47.5592708962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_133_LVCableDist_mvgd_33532_lvgd_1163940000_building_446924,BranchTee_mvgd_33532_lvgd_1163940000_133,BranchTee_mvgd_33532_lvgd_1163940000_building_446924,0.01533304573264286,0.013309083695934002,0.0013054119818154155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090101200000397 47.55913349628499, 10.090082199999996 47.5592708962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_134_LVCableDist_mvgd_33532_lvgd_1163940000_135,BranchTee_mvgd_33532_lvgd_1163940000_134,BranchTee_mvgd_33532_lvgd_1163940000_135,0.05964687840380306,0.015090660236162174,0.004797086592075555,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0897216 47.55925609624437, 10.088930099999995 47.55923649624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_134_LVCableDist_mvgd_33532_lvgd_1163940000_building_446909,BranchTee_mvgd_33532_lvgd_1163940000_134,BranchTee_mvgd_33532_lvgd_1163940000_building_446909,0.021532204638946985,0.01868995362660598,0.0018331907711422446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08951860911973 47.55911962231979, 10.0897216 47.55925609624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_134_LVCableDist_mvgd_33532_lvgd_1163940000_building_446923,BranchTee_mvgd_33532_lvgd_1163940000_134,BranchTee_mvgd_33532_lvgd_1163940000_building_446923,0.015375277614661639,0.013345740969526303,0.0013090074843504769,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08965560000118 47.5591251462813, 10.0897216 47.55925609624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_135_LVCableDist_mvgd_33532_lvgd_1163940000_building_446901,BranchTee_mvgd_33532_lvgd_1163940000_135,BranchTee_mvgd_33532_lvgd_1163940000_building_446901,0.017814640746587007,0.015463108168037523,0.0015166879358366986,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08904750000153 47.55909729628006, 10.088930099999995 47.55923649624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_135_LVCableDist_mvgd_33532_lvgd_1163940000_building_446905,BranchTee_mvgd_33532_lvgd_1163940000_135,BranchTee_mvgd_33532_lvgd_1163940000_building_446905,0.02337432443057712,0.020288913605740942,0.0019900236202619616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089172641619665 47.559105219708194, 10.088930099999995 47.55923649624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_136_LVCableDist_mvgd_33532_lvgd_1163940000_138,BranchTee_mvgd_33532_lvgd_1163940000_136,BranchTee_mvgd_33532_lvgd_1163940000_138,0.053994506715791174,0.013660610199095168,0.004342495888192878,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.094895400000004 47.55881229624437, 10.094729799999996 47.55878239624432, 10.094548000000003 47.5588121962444, 10.094403 47.55885679624435, 10.094204399999995 47.55886829624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_136_LVCableDist_mvgd_33532_lvgd_1163940000_building_447010,BranchTee_mvgd_33532_lvgd_1163940000_136,BranchTee_mvgd_33532_lvgd_1163940000_building_447010,0.016681197674366505,0.014479279581350127,0.0014201898106121489,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094884400000494 47.55866234628509, 10.094895400000004 47.55881229624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_136_LVCableDist_mvgd_33532_lvgd_1163940000_building_447011,BranchTee_mvgd_33532_lvgd_1163940000_136,BranchTee_mvgd_33532_lvgd_1163940000_building_447011,0.018507086800557248,0.016064151342883692,0.0015756408269566387,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095009792020246 47.55866487073735, 10.094895400000004 47.55881229624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_137_LVCableDist_mvgd_33532_lvgd_1163940000_building_447042,BranchTee_mvgd_33532_lvgd_1163940000_137,BranchTee_mvgd_33532_lvgd_1163940000_building_447042,0.012928927306513066,0.011222308902053342,0.0011007321645178179,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095828099814295 47.559324596277825, 10.095909099999993 47.55922199624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_138_LVCableDist_mvgd_33532_lvgd_1163940000_139,BranchTee_mvgd_33532_lvgd_1163940000_138,BranchTee_mvgd_33532_lvgd_1163940000_139,0.016395440221570228,0.004148046376057268,0.0013185995405428643,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.094204399999995 47.55886829624438, 10.093990099999994 47.55884229624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_138_LVCableDist_mvgd_33532_lvgd_1163940000_building_447012,BranchTee_mvgd_33532_lvgd_1163940000_138,BranchTee_mvgd_33532_lvgd_1163940000_building_447012,0.03324437883799397,0.028856120831378767,0.002830332030559202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094034449999992 47.55914444626868, 10.094204399999995 47.55886829624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_138_LVCableDist_mvgd_33532_lvgd_1163940000_building_447017,BranchTee_mvgd_33532_lvgd_1163940000_138,BranchTee_mvgd_33532_lvgd_1163940000_building_447017,0.015824780364036284,0.013735909355983494,0.0013472768722544999,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094221600001978 47.55872634626591, 10.094204399999995 47.55886829624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_138_LVCableDist_mvgd_33532_lvgd_1163940000_building_447019,BranchTee_mvgd_33532_lvgd_1163940000_138,BranchTee_mvgd_33532_lvgd_1163940000_building_447019,0.03637349641697478,0.03157219488993411,0.0030967362173943457,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094327189506881 47.559184908742715, 10.094204399999995 47.55886829624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_139_LVCableDist_mvgd_33532_lvgd_1163940000_building_447008,BranchTee_mvgd_33532_lvgd_1163940000_139,BranchTee_mvgd_33532_lvgd_1163940000_building_447008,0.030610465147181805,0.026569883747753806,0.00260608809683546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093722123347218 47.55904945057447, 10.093990099999994 47.55884229624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_13_LVCableDist_mvgd_33532_lvgd_1163940000_2,BranchTee_mvgd_33532_lvgd_1163940000_2,BranchTee_mvgd_33532_lvgd_1163940000_13,0.04074218287734886,0.013037498520751636,0.0033406784371278367,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0955113 47.558054396244295, 10.096015500000002 47.5581872962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_13_LVCableDist_mvgd_33532_lvgd_1163940000_building_447007,BranchTee_mvgd_33532_lvgd_1163940000_13,BranchTee_mvgd_33532_lvgd_1163940000_building_447007,0.020386009979279033,0.0176950566620142,0.0017356070119652943,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09581510001827 47.55831064628728, 10.096015500000002 47.5581872962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_140_LVCableDist_mvgd_33532_lvgd_1163940000_141,BranchTee_mvgd_33532_lvgd_1163940000_140,BranchTee_mvgd_33532_lvgd_1163940000_141,0.029385089334288683,0.007434427601575037,0.0023632891079086366,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.093327899999998 47.558712496244354, 10.092940000000006 47.55868389624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_140_LVCableDist_mvgd_33532_lvgd_1163940000_building_446960,BranchTee_mvgd_33532_lvgd_1163940000_140,BranchTee_mvgd_33532_lvgd_1163940000_building_446960,0.03601473834997214,0.031260792887775814,0.003066192574115362,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09338344998497 47.55839054628663, 10.093327899999998 47.558712496244354)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_140_LVCableDist_mvgd_33532_lvgd_1163940000_building_446966,BranchTee_mvgd_33532_lvgd_1163940000_140,BranchTee_mvgd_33532_lvgd_1163940000_building_446966,0.01862299849750062,0.016164762695830538,0.0015855092197509222,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093531076074822 47.5586169477716, 10.093327899999998 47.558712496244354)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_140_LVCableDist_mvgd_33532_lvgd_1163940000_building_446976,BranchTee_mvgd_33532_lvgd_1163940000_140,BranchTee_mvgd_33532_lvgd_1163940000_building_446976,0.03584544235130806,0.031113843960935392,0.0030517791934352926,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093367574746955 47.55903399159678, 10.093327899999998 47.558712496244354)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_141_LVCableDist_mvgd_33532_lvgd_1163940000_142,BranchTee_mvgd_33532_lvgd_1163940000_141,BranchTee_mvgd_33532_lvgd_1163940000_142,0.019594968579507998,0.004957527050615524,0.0015759208790196517,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.092940000000006 47.55868389624434, 10.092796399999997 47.558698896244394, 10.092700699999995 47.55874199624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_141_LVCableDist_mvgd_33532_lvgd_1163940000_building_446959,BranchTee_mvgd_33532_lvgd_1163940000_141,BranchTee_mvgd_33532_lvgd_1163940000_building_446959,0.037275288835823754,0.03235495070949502,0.003173512263667368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093000750000007 47.55901684628886, 10.092940000000006 47.55868389624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_141_LVCableDist_mvgd_33532_lvgd_1163940000_building_446961,BranchTee_mvgd_33532_lvgd_1163940000_141,BranchTee_mvgd_33532_lvgd_1163940000_building_446961,0.016835219381698432,0.014612970423314239,0.0014333027814932516,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093129806701024 47.55860384598684, 10.092940000000006 47.55868389624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_142_LVCableDist_mvgd_33532_lvgd_1163940000_building_447069,BranchTee_mvgd_33532_lvgd_1163940000_142,BranchTee_mvgd_33532_lvgd_1163940000_building_447069,0.013690736713800946,0.01188355946757922,0.0011655904546105772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092568949987896 47.55865709627189, 10.092700699999995 47.55874199624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_143_LVCableDist_mvgd_33532_lvgd_1163940000_164,BranchTee_mvgd_33532_lvgd_1163940000_143,BranchTee_mvgd_33532_lvgd_1163940000_164,0.06507746913036098,0.013405958640854362,0.005233840612714461,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0896744 47.558262396244324, 10.090534200000006 47.55832089624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_143_LVCableDist_mvgd_33532_lvgd_1163940000_165,BranchTee_mvgd_33532_lvgd_1163940000_143,BranchTee_mvgd_33532_lvgd_1163940000_165,0.06667493159224545,0.013735035908002563,0.005362316166881288,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.090534200000006 47.55832089624432, 10.091398799999999 47.55844999624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_143_LVCableDist_mvgd_33532_lvgd_1163940000_building_446897,BranchTee_mvgd_33532_lvgd_1163940000_143,BranchTee_mvgd_33532_lvgd_1163940000_building_446897,0.02661731290603651,0.023103827602439692,0.0022661224519338282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090289690405518 47.558147918325304, 10.090534200000006 47.55832089624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_143_LVCableDist_mvgd_33532_lvgd_1163940000_building_446900,BranchTee_mvgd_33532_lvgd_1163940000_143,BranchTee_mvgd_33532_lvgd_1163940000_building_446900,0.016375013134049154,0.014213511400354666,0.001394122128134297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090647782429844 47.55819522062677, 10.090534200000006 47.55832089624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_144_LVCableDist_mvgd_33532_lvgd_1163940000_145,BranchTee_mvgd_33532_lvgd_1163940000_144,BranchTee_mvgd_33532_lvgd_1163940000_145,0.021836450492111536,0.004498308801374976,0.0017561915506302676,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0875923 47.55849089624434, 10.087302399999997 47.55849469624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_144_LVCableDist_mvgd_33532_lvgd_1163940000_147,BranchTee_mvgd_33532_lvgd_1163940000_144,BranchTee_mvgd_33532_lvgd_1163940000_147,0.08215886603329223,0.0169247264028582,0.0066076080629109465,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.088606099999993 47.55864289624437, 10.088494200000003 47.55864789624437, 10.088441299999996 47.55863599624439, 10.088362000000004 47.55859139624434, 10.088309099999998 47.55854679624432, 10.088247399999998 47.55851409624436, 10.088137300000003 47.55849979624431, 10.087996700000003 47.55849719624436, 10.0875923 47.55849089624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_144_LVCableDist_mvgd_33532_lvgd_1163940000_building_446858,BranchTee_mvgd_33532_lvgd_1163940000_144,BranchTee_mvgd_33532_lvgd_1163940000_building_446858,0.012242256923431158,0.010626279009538246,0.001042270997619674,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087572950000729 47.558381496306545, 10.0875923 47.55849089624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_144_LVCableDist_mvgd_33532_lvgd_1163940000_building_446888,BranchTee_mvgd_33532_lvgd_1163940000_144,BranchTee_mvgd_33532_lvgd_1163940000_building_446888,0.021652055674902613,0.018793984325815468,0.0018433945480759027,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087629900003305 47.55868409629699, 10.0875923 47.55849089624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_145_LVCableDist_mvgd_33532_lvgd_1163940000_building_446870,BranchTee_mvgd_33532_lvgd_1163940000_145,BranchTee_mvgd_33532_lvgd_1163940000_building_446870,0.04727759451555168,0.04103695203949886,0.004025080171816211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08668284087476 47.55856331927464, 10.087302399999997 47.55849469624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_145_LVCableDist_mvgd_33532_lvgd_1163940000_building_446874,BranchTee_mvgd_33532_lvgd_1163940000_145,BranchTee_mvgd_33532_lvgd_1163940000_building_446874,0.040512040997514716,0.035164451585842776,0.0034490801532904326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086802100002949 47.55862869625205, 10.087302399999997 47.55849469624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_146_LVCableDist_mvgd_33532_lvgd_1163940000_147,BranchTee_mvgd_33532_lvgd_1163940000_146,BranchTee_mvgd_33532_lvgd_1163940000_147,0.013406371285098855,0.002761712484730364,0.001078204353038431,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.088773999999995 47.55860279624437, 10.088606099999993 47.55864289624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_146_LVCableDist_mvgd_33532_lvgd_1163940000_160,BranchTee_mvgd_33532_lvgd_1163940000_146,BranchTee_mvgd_33532_lvgd_1163940000_160,0.008624203611478589,0.0017765859439645892,0.0006935996085474227,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.088885500000002 47.55858509624437, 10.088773999999995 47.55860279624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_146_LVCableDist_mvgd_33532_lvgd_1163940000_building_446891,BranchTee_mvgd_33532_lvgd_1163940000_146,BranchTee_mvgd_33532_lvgd_1163940000_building_446891,0.024439587270488682,0.021213561750784177,0.002080717074077388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088805100003137 47.558821746284515, 10.088773999999995 47.55860279624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_147_LVCableDist_mvgd_33532_lvgd_1163940000_building_446886,BranchTee_mvgd_33532_lvgd_1163940000_147,BranchTee_mvgd_33532_lvgd_1163940000_building_446886,0.018717026466583978,0.016246378972994892,0.0015935144940850273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088672371854965 47.558805253840475, 10.088606099999993 47.55864289624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_147_LVCableDist_mvgd_33532_lvgd_1163940000_building_446904,BranchTee_mvgd_33532_lvgd_1163940000_147,BranchTee_mvgd_33532_lvgd_1163940000_building_446904,0.01727039575619411,0.01499070351637649,0.0014703524625139146,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088559666949914 47.55849067851254, 10.088606099999993 47.55864289624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_148_LVCableDist_mvgd_33532_lvgd_1163940000_149,BranchTee_mvgd_33532_lvgd_1163940000_148,BranchTee_mvgd_33532_lvgd_1163940000_149,0.03453974912669879,0.007115188320099951,0.002777851446099748,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0874437 47.55794929624432, 10.087706200000001 47.557977396244276, 10.087897800000002 47.55799239624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_148_LVCableDist_mvgd_33532_lvgd_1163940000_building_446881,BranchTee_mvgd_33532_lvgd_1163940000_148,BranchTee_mvgd_33532_lvgd_1163940000_building_446881,0.016120055434900984,0.013992208117494055,0.0013724157534760937,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087529731722977 47.55808214444125, 10.0874437 47.55794929624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_149_LVCableDist_mvgd_33532_lvgd_1163940000_150,BranchTee_mvgd_33532_lvgd_1163940000_149,BranchTee_mvgd_33532_lvgd_1163940000_150,0.115207455655253,0.02373273586498212,0.009265533345928056,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.087897800000002 47.55799239624429, 10.088300200000006 47.55799479624433, 10.088412500000004 47.557996696244295, 10.088649400000005 47.55800449624427, 10.089134799999997 47.55800089624432, 10.089427199999998 47.55800149624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_149_LVCableDist_mvgd_33532_lvgd_1163940000_building_446853,BranchTee_mvgd_33532_lvgd_1163940000_149,BranchTee_mvgd_33532_lvgd_1163940000_building_446853,0.02141547387241643,0.018588631321257463,0.0018232526450887188,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087792573860265 47.5581714619889, 10.087897800000002 47.55799239624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_14_LVCableDist_mvgd_33532_lvgd_1163940000_17,BranchTee_mvgd_33532_lvgd_1163940000_14,BranchTee_mvgd_33532_lvgd_1163940000_17,0.03451564113483633,0.011045005163147626,0.002830129608664045,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.092488900000005 47.55776789624427, 10.092942500000001 47.55781229624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_14_LVCableDist_mvgd_33532_lvgd_1163940000_building_446968,BranchTee_mvgd_33532_lvgd_1163940000_14,BranchTee_mvgd_33532_lvgd_1163940000_building_446968,0.01444729896802731,0.012540255504247705,0.001230002016988807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092480473889188 47.55789780078763, 10.092488900000005 47.55776789624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_150_LVCableDist_mvgd_33532_lvgd_1163940000_153,BranchTee_mvgd_33532_lvgd_1163940000_150,BranchTee_mvgd_33532_lvgd_1163940000_153,0.028476642180833577,0.005866188289251717,0.002290227452779827,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089457 47.558256996244324, 10.089427199999998 47.55800149624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_150_LVCableDist_mvgd_33532_lvgd_1163940000_163,BranchTee_mvgd_33532_lvgd_1163940000_150,BranchTee_mvgd_33532_lvgd_1163940000_163,0.033791466074543954,0.006961042011356054,0.00271767095228969,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089427199999998 47.55800149624434, 10.089418199999997 47.55797189624432, 10.089403500000007 47.55790049624435, 10.0894054 47.55787189624426, 10.089409999999996 47.55777339624429, 10.089326300000003 47.55772489624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_151_LVCableDist_mvgd_33532_lvgd_1163940000_154,BranchTee_mvgd_33532_lvgd_1163940000_151,BranchTee_mvgd_33532_lvgd_1163940000_154,0.026891028065445195,0.00553955178148171,0.002162704799177717,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.088857499999996 47.55767619624423, 10.088716800000002 47.557649096244305, 10.0886214 47.55760619624425, 10.088587499999997 47.55754509624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_151_LVCableDist_mvgd_33532_lvgd_1163940000_163,BranchTee_mvgd_33532_lvgd_1163940000_151,BranchTee_mvgd_33532_lvgd_1163940000_163,0.03578594283578089,0.007371904224170863,0.0028780762909356426,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089326300000003 47.55772489624426, 10.089040500000001 47.557704996244226, 10.088857499999996 47.55767619624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_151_LVCableDist_mvgd_33532_lvgd_1163940000_building_446926,BranchTee_mvgd_33532_lvgd_1163940000_151,BranchTee_mvgd_33532_lvgd_1163940000_building_446926,0.022491160888700273,0.019522327651391835,0.0019148335836853302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08892223985731 47.55747858142719, 10.088857499999996 47.55767619624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_152_LVCableDist_mvgd_33532_lvgd_1163940000_168,BranchTee_mvgd_33532_lvgd_1163940000_152,BranchTee_mvgd_33532_lvgd_1163940000_168,0.07218281130548759,0.014869659128930443,0.005805286136647119,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.09289899999999 47.55826129624435, 10.093855900000007 47.55822409624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_152_LVCableDist_mvgd_33532_lvgd_1163940000_169,BranchTee_mvgd_33532_lvgd_1163940000_152,BranchTee_mvgd_33532_lvgd_1163940000_169,0.041372029912315006,0.00852263816193689,0.0033273360700576252,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.093855900000007 47.55822409624431, 10.094396900000003 47.55815939624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_152_LVCableDist_mvgd_33532_lvgd_1163940000_building_446988,BranchTee_mvgd_33532_lvgd_1163940000_152,BranchTee_mvgd_33532_lvgd_1163940000_building_446988,0.01726201299432425,0.01498342727907345,0.001469638777967711,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093805750006563 47.558375696275796, 10.093855900000007 47.55822409624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_153_LVCableDist_mvgd_33532_lvgd_1163940000_162,BranchTee_mvgd_33532_lvgd_1163940000_153,BranchTee_mvgd_33532_lvgd_1163940000_162,0.017476032048667375,0.003600062602025479,0.001405505891788626,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089231600000005 47.55829439624434, 10.089457 47.558256996244324)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_153_LVCableDist_mvgd_33532_lvgd_1163940000_164,BranchTee_mvgd_33532_lvgd_1163940000_153,BranchTee_mvgd_33532_lvgd_1163940000_164,0.01638348919358663,0.0033749987738788457,0.0013176383818429317,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089457 47.558256996244324, 10.0896744 47.558262396244324)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_154_LVCableDist_mvgd_33532_lvgd_1163940000_building_446914,BranchTee_mvgd_33532_lvgd_1163940000_154,BranchTee_mvgd_33532_lvgd_1163940000_building_446914,0.028545596856087978,0.024777578071084366,0.0024302910728739332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088229433000357 47.557629370767955, 10.088587499999997 47.55754509624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_154_LVStation_mvgd_33532_lvgd_1163940000,BusBar_mvgd_33532_lvgd_1163940000_LV,BranchTee_mvgd_33532_lvgd_1163940000_154,0.036450089977783914,0.007508718535423486,0.002931490173360458,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.088587499999997 47.55754509624424, 10.088599399999998 47.55735189624423, 10.088636700000006 47.55721959624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_155_LVCableDist_mvgd_33532_lvgd_1163940000_156,BranchTee_mvgd_33532_lvgd_1163940000_155,BranchTee_mvgd_33532_lvgd_1163940000_156,0.03646806956572692,0.007512422330539745,0.002932936177620204,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.092308200000005 47.55887019624437, 10.092105899999996 47.55888569624435, 10.091827700000003 47.55886059624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_155_LVCableDist_mvgd_33532_lvgd_1163940000_building_447005,BranchTee_mvgd_33532_lvgd_1163940000_155,BranchTee_mvgd_33532_lvgd_1163940000_building_447005,0.014518810951633165,0.012602327906017587,0.0012360903442442154,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092222349998131 47.55875319629326, 10.092308200000005 47.55887019624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_155_LVCableDist_mvgd_33532_lvgd_1163940000_building_447023,BranchTee_mvgd_33532_lvgd_1163940000_155,BranchTee_mvgd_33532_lvgd_1163940000_building_447023,0.028118961790902987,0.024407258834503794,0.0023939685746784565,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092255271323882 47.5591207204478, 10.092308200000005 47.55887019624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_155_LVCableDist_mvgd_33532_lvgd_1163940000_building_447066,BranchTee_mvgd_33532_lvgd_1163940000_155,BranchTee_mvgd_33532_lvgd_1163940000_building_447066,0.01634796068416814,0.014190029873857946,0.0013918189593557057,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092329149998125 47.55872374629333, 10.092308200000005 47.55887019624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_156_LVCableDist_mvgd_33532_lvgd_1163940000_172,BranchTee_mvgd_33532_lvgd_1163940000_156,BranchTee_mvgd_33532_lvgd_1163940000_172,0.04894846833154525,0.010083384476298321,0.003936669401980293,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.091827700000003 47.55886059624441, 10.091186900000006 47.558786896244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_156_LVCableDist_mvgd_33532_lvgd_1163940000_building_446987,BranchTee_mvgd_33532_lvgd_1163940000_156,BranchTee_mvgd_33532_lvgd_1163940000_building_446987,0.020645381861921493,0.017920191456147858,0.0017576891976739473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091637100008043 47.558727046281874, 10.091827700000003 47.55886059624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_156_LVCableDist_mvgd_33532_lvgd_1163940000_building_447000,BranchTee_mvgd_33532_lvgd_1163940000_156,BranchTee_mvgd_33532_lvgd_1163940000_building_447000,0.012246208146083308,0.010629708670800311,0.0010426073934984104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091867733595818 47.55875376835201, 10.091827700000003 47.55886059624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_156_LVCableDist_mvgd_33532_lvgd_1163940000_building_447016,BranchTee_mvgd_33532_lvgd_1163940000_156,BranchTee_mvgd_33532_lvgd_1163940000_building_447016,0.02490967050512145,0.021621593998445418,0.0021207386260664847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091694450004509 47.55906579627078, 10.091827700000003 47.55886059624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_157_LVCableDist_mvgd_33532_lvgd_1163940000_170,BranchTee_mvgd_33532_lvgd_1163940000_157,BranchTee_mvgd_33532_lvgd_1163940000_170,0.024831188917741328,0.005115224917054713,0.001997042705507237,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.090685599999995 47.55873149624438, 10.090358000000002 47.55870619624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_157_LVCableDist_mvgd_33532_lvgd_1163940000_172,BranchTee_mvgd_33532_lvgd_1163940000_157,BranchTee_mvgd_33532_lvgd_1163940000_172,0.038251457678137084,0.007879800281696239,0.0030763647598268506,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.091186900000006 47.558786896244385, 10.090685599999995 47.55873149624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_157_LVCableDist_mvgd_33532_lvgd_1163940000_building_446910,BranchTee_mvgd_33532_lvgd_1163940000_157,BranchTee_mvgd_33532_lvgd_1163940000_building_446910,0.023012506980266613,0.01997485605887142,0.0019592195097740037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090935500007022 47.55861229629303, 10.090685599999995 47.55873149624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_157_LVCableDist_mvgd_33532_lvgd_1163940000_building_446912,BranchTee_mvgd_33532_lvgd_1163940000_157,BranchTee_mvgd_33532_lvgd_1163940000_building_446912,0.024519318419928198,0.021282768388497676,0.0020875051577769416,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090555260297053 47.55893372486513, 10.090685599999995 47.55873149624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_157_LVCableDist_mvgd_33532_lvgd_1163940000_building_446916,BranchTee_mvgd_33532_lvgd_1163940000_157,BranchTee_mvgd_33532_lvgd_1163940000_building_446916,0.02794702949704479,0.024258021603434876,0.002379330747310233,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090865350004751 47.5589515462862, 10.090685599999995 47.55873149624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_158_LVCableDist_mvgd_33532_lvgd_1163940000_170,BranchTee_mvgd_33532_lvgd_1163940000_158,BranchTee_mvgd_33532_lvgd_1163940000_170,0.033467719297895535,0.00689435017536648,0.0026916336916140535,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.090358000000002 47.55870619624437, 10.089914300000006 47.558689296244374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_158_LVCableDist_mvgd_33532_lvgd_1163940000_171,BranchTee_mvgd_33532_lvgd_1163940000_158,BranchTee_mvgd_33532_lvgd_1163940000_171,0.022523668626291987,0.004639875737016149,0.0018114609123391953,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089914300000006 47.558689296244374, 10.089616400000002 47.558707296244364)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_158_LVCableDist_mvgd_33532_lvgd_1163940000_building_446915,BranchTee_mvgd_33532_lvgd_1163940000_158,BranchTee_mvgd_33532_lvgd_1163940000_building_446915,0.021756544028033925,0.018884680216333445,0.0018522903898099028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090087523221564 47.55853258262445, 10.089914300000006 47.558689296244374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_158_LVCableDist_mvgd_33532_lvgd_1163940000_building_446931,BranchTee_mvgd_33532_lvgd_1163940000_158,BranchTee_mvgd_33532_lvgd_1163940000_building_446931,0.02351066823980155,0.020407260032147743,0.0020016315450872954,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090050649999682 47.55887964628329, 10.089914300000006 47.558689296244374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_159_LVCableDist_mvgd_33532_lvgd_1163940000_166,BranchTee_mvgd_33532_lvgd_1163940000_159,BranchTee_mvgd_33532_lvgd_1163940000_166,0.020172532038285073,0.004155541599886725,0.0016223712884679967,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089414000000003 47.55870669624436, 10.089151400000004 47.55867089624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_159_LVCableDist_mvgd_33532_lvgd_1163940000_171,BranchTee_mvgd_33532_lvgd_1163940000_159,BranchTee_mvgd_33532_lvgd_1163940000_171,0.015242838680007892,0.0031400247680816256,0.0012259018244343586,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089616400000002 47.558707296244364, 10.089414000000003 47.55870669624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_159_LVCableDist_mvgd_33532_lvgd_1163940000_building_446895,BranchTee_mvgd_33532_lvgd_1163940000_159,BranchTee_mvgd_33532_lvgd_1163940000_building_446895,0.015542114411550139,0.01349055530922552,0.0013232114955732631,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089456050000427 47.55856974628801, 10.089414000000003 47.55870669624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_159_LVCableDist_mvgd_33532_lvgd_1163940000_building_446906,BranchTee_mvgd_33532_lvgd_1163940000_159,BranchTee_mvgd_33532_lvgd_1163940000_building_446906,0.022819402988745838,0.01980724179423139,0.0019427791841750953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089247950001116 47.558878496279824, 10.089414000000003 47.55870669624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_15_LVCableDist_mvgd_33532_lvgd_1163940000_5,BranchTee_mvgd_33532_lvgd_1163940000_5,BranchTee_mvgd_33532_lvgd_1163940000_15,0.046500450119803076,0.014880144038336984,0.0038128308318582907,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.090538800000001 47.557429396244274, 10.091151 47.55748379624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_15_LVCableDist_mvgd_33532_lvgd_1163940000_building_446871,BranchTee_mvgd_33532_lvgd_1163940000_15,BranchTee_mvgd_33532_lvgd_1163940000_building_446871,0.025814623756570947,0.022407093420703583,0.002197783776653235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09031967764609 47.557250736685155, 10.090538800000001 47.557429396244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_15_LVCableDist_mvgd_33532_lvgd_1163940000_building_446878,BranchTee_mvgd_33532_lvgd_1163940000_15,BranchTee_mvgd_33532_lvgd_1163940000_building_446878,0.01710157797299599,0.014844169680560518,0.001455979795740921,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09066686117577 47.55730228575534, 10.090538800000001 47.557429396244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_15_LVCableDist_mvgd_33532_lvgd_1163940000_building_446882,BranchTee_mvgd_33532_lvgd_1163940000_15,BranchTee_mvgd_33532_lvgd_1163940000_building_446882,0.03244782507996536,0.028164712169409932,0.002762515705086636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090614579540384 47.5577168815062, 10.090538800000001 47.557429396244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_15_LVCableDist_mvgd_33532_lvgd_1163940000_building_446890,BranchTee_mvgd_33532_lvgd_1163940000_15,BranchTee_mvgd_33532_lvgd_1163940000_building_446890,0.040575623656359645,0.03521964133372017,0.0034544934003477444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090715550090685 47.557774373193055, 10.090538800000001 47.557429396244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_160_LVCableDist_mvgd_33532_lvgd_1163940000_161,BranchTee_mvgd_33532_lvgd_1163940000_160,BranchTee_mvgd_33532_lvgd_1163940000_161,0.03028321632670938,0.0062383425633021315,0.002435520766439953,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.088885500000002 47.55858509624437, 10.088892600000003 47.558502796244376, 10.088954300000003 47.558419696244314, 10.089061099999995 47.55835499624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_160_LVCableDist_mvgd_33532_lvgd_1163940000_166,BranchTee_mvgd_33532_lvgd_1163940000_160,BranchTee_mvgd_33532_lvgd_1163940000_166,0.022302726096134408,0.004594361575803688,0.0017936916597412153,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089151400000004 47.55867089624441, 10.089003600000003 47.558634896244364, 10.088885500000002 47.55858509624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_161_LVCableDist_mvgd_33532_lvgd_1163940000_162,BranchTee_mvgd_33532_lvgd_1163940000_161,BranchTee_mvgd_33532_lvgd_1163940000_162,0.014498441703201763,0.0029866789908595632,0.0011660338673479308,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.089061099999995 47.55835499624432, 10.089231600000005 47.55829439624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_161_LVCableDist_mvgd_33532_lvgd_1163940000_building_446939,BranchTee_mvgd_33532_lvgd_1163940000_161,BranchTee_mvgd_33532_lvgd_1163940000_building_446939,0.01848578962495991,0.0160456653944652,0.001573827645890831,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088859664809851 47.55825992506309, 10.089061099999995 47.55835499624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_162_LVCableDist_mvgd_33532_lvgd_1163940000_building_446943,BranchTee_mvgd_33532_lvgd_1163940000_162,BranchTee_mvgd_33532_lvgd_1163940000_building_446943,0.015279112470754294,0.013262269624614726,0.0013008202570194843,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089196150011661 47.55815899628551, 10.089231600000005 47.55829439624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_163_LVCableDist_mvgd_33532_lvgd_1163940000_building_446868,BranchTee_mvgd_33532_lvgd_1163940000_163,BranchTee_mvgd_33532_lvgd_1163940000_building_446868,0.026538674917125464,0.023035569828064904,0.00225942743681809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089538822870246 47.55753436349146, 10.089326300000003 47.55772489624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_164_LVCableDist_mvgd_33532_lvgd_1163940000_building_446884,BranchTee_mvgd_33532_lvgd_1163940000_164,BranchTee_mvgd_33532_lvgd_1163940000_building_446884,0.018933896789535297,0.016434622413316637,0.0016119782176672328,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089755022164866 47.558100983545486, 10.0896744 47.558262396244324)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_165_LVCableDist_mvgd_33532_lvgd_1163940000_167,BranchTee_mvgd_33532_lvgd_1163940000_165,BranchTee_mvgd_33532_lvgd_1163940000_167,0.09008156994465963,0.018556803408599883,0.007244789718066631,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.091398799999999 47.55844999624435, 10.091917700000005 47.55850929624432, 10.0921172 47.55848499624431, 10.0925115 47.558315096244314)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_165_LVCableDist_mvgd_33532_lvgd_1163940000_building_446942,BranchTee_mvgd_33532_lvgd_1163940000_165,BranchTee_mvgd_33532_lvgd_1163940000_building_446942,0.030981218496598385,0.026891697655047397,0.002637652984403508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091131500011679 47.55823804627607, 10.091398799999999 47.55844999624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_165_LVCableDist_mvgd_33532_lvgd_1163940000_building_446945,BranchTee_mvgd_33532_lvgd_1163940000_165,BranchTee_mvgd_33532_lvgd_1163940000_building_446945,0.02220226399227605,0.01927156514529561,0.0018902377221274018,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091518548588953 47.55826739378423, 10.091398799999999 47.55844999624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_166_LVCableDist_mvgd_33532_lvgd_1163940000_building_446892,BranchTee_mvgd_33532_lvgd_1163940000_166,BranchTee_mvgd_33532_lvgd_1163940000_building_446892,0.015839006525883364,0.01374825766446676,0.001348488047284839,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089175989152713 47.55852931776002, 10.089151400000004 47.55867089624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_166_LVCableDist_mvgd_33532_lvgd_1163940000_building_446896,BranchTee_mvgd_33532_lvgd_1163940000_166,BranchTee_mvgd_33532_lvgd_1163940000_building_446896,0.02265652653124452,0.019665865029120242,0.001928912345003983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089113600001124 47.55887319627978, 10.089151400000004 47.55867089624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_167_LVCableDist_mvgd_33532_lvgd_1163940000_168,BranchTee_mvgd_33532_lvgd_1163940000_167,BranchTee_mvgd_33532_lvgd_1163940000_168,0.0297884571922301,0.0061364221815994,0.0023957298758882336,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0925115 47.558315096244314, 10.09289899999999 47.55826129624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_167_LVCableDist_mvgd_33532_lvgd_1163940000_building_446974,BranchTee_mvgd_33532_lvgd_1163940000_167,BranchTee_mvgd_33532_lvgd_1163940000_building_446974,0.006120253471816657,0.0053123800135368585,0.0005210610046540159,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092455325767233 47.55827529198487, 10.0925115 47.558315096244314)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_168_LVCableDist_mvgd_33532_lvgd_1163940000_building_446979,BranchTee_mvgd_33532_lvgd_1163940000_168,BranchTee_mvgd_33532_lvgd_1163940000_building_446979,0.019285553107976423,0.016739860097723536,0.0016419172382361761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092833636214657 47.558429123832404, 10.09289899999999 47.55826129624435)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_169_LVCableDist_mvgd_33532_lvgd_1163940000_building_446989,BranchTee_mvgd_33532_lvgd_1163940000_169,BranchTee_mvgd_33532_lvgd_1163940000_building_446989,0.02691632490169779,0.023363370014673684,0.0022915794843231456,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094368699998038 47.55840089627648, 10.094396900000003 47.55815939624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_169_LVCableDist_mvgd_33532_lvgd_1163940000_building_446991,BranchTee_mvgd_33532_lvgd_1163940000_169,BranchTee_mvgd_33532_lvgd_1163940000_building_446991,0.038009513260857046,0.032992257510423915,0.003236022046687156,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094735949998649 47.55841279628323, 10.094396900000003 47.55815939624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_16_LVCableDist_mvgd_33532_lvgd_1163940000_17,BranchTee_mvgd_33532_lvgd_1163940000_16,BranchTee_mvgd_33532_lvgd_1163940000_17,0.03615971466446143,0.011571108692627658,0.0029649363519847318,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.092942500000001 47.55781229624422, 10.093422599999997 47.557816396244306)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_16_LVCableDist_mvgd_33532_lvgd_1163940000_building_446953,BranchTee_mvgd_33532_lvgd_1163940000_16,BranchTee_mvgd_33532_lvgd_1163940000_building_446953,0.02384044252512394,0.020693504111807582,0.002029707591481521,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09367999749671 47.55794129429055, 10.093422599999997 47.557816396244306)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_16_LVCableDist_mvgd_33532_lvgd_1163940000_building_446967,BranchTee_mvgd_33532_lvgd_1163940000_16,BranchTee_mvgd_33532_lvgd_1163940000_building_446967,0.02381316927172834,0.0206698309278602,0.0020273856241185785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093579249602781 47.557630217544755, 10.093422599999997 47.557816396244306)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_170_LVCableDist_mvgd_33532_lvgd_1163940000_building_446932,BranchTee_mvgd_33532_lvgd_1163940000_170,BranchTee_mvgd_33532_lvgd_1163940000_building_446932,0.023503506313586234,0.02040104348019285,0.00200102179902266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090175899999661 47.55887799628332, 10.090358000000002 47.55870619624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_170_LVCableDist_mvgd_33532_lvgd_1163940000_building_446933,BranchTee_mvgd_33532_lvgd_1163940000_170,BranchTee_mvgd_33532_lvgd_1163940000_building_446933,0.01694554328194336,0.014708731568726837,0.001442695445140875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090507686579983 47.558592320768746, 10.090358000000002 47.55870619624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_171_LVCableDist_mvgd_33532_lvgd_1163940000_building_446908,BranchTee_mvgd_33532_lvgd_1163940000_171,BranchTee_mvgd_33532_lvgd_1163940000_building_446908,0.02159058581719162,0.018740628489322324,0.0018381611789087067,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089563482913295 47.55889827999448, 10.089616400000002 47.558707296244364)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_171_LVCableDist_mvgd_33532_lvgd_1163940000_building_446913,BranchTee_mvgd_33532_lvgd_1163940000_171,BranchTee_mvgd_33532_lvgd_1163940000_building_446913,0.01523509878484119,0.013224065745242153,0.0012970730567595577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089585400000413 47.558571796288, 10.089616400000002 47.558707296244364)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_171_LVCableDist_mvgd_33532_lvgd_1163940000_building_446920,BranchTee_mvgd_33532_lvgd_1163940000_171,BranchTee_mvgd_33532_lvgd_1163940000_building_446920,0.022066071386380608,0.019153349963378367,0.0018786426703242183,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089682050000494 47.55890084627661, 10.089616400000002 47.558707296244364)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_172_LVCableDist_mvgd_33532_lvgd_1163940000_building_446965,BranchTee_mvgd_33532_lvgd_1163940000_172,BranchTee_mvgd_33532_lvgd_1163940000_building_446965,0.013231952689943722,0.01148533493487115,0.00112653088534746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091260150005125 47.55867864626739, 10.091186900000006 47.558786896244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_172_LVCableDist_mvgd_33532_lvgd_1163940000_building_446973,BranchTee_mvgd_33532_lvgd_1163940000_172,BranchTee_mvgd_33532_lvgd_1163940000_building_446973,0.018516209302152965,0.016072069674268774,0.0015764174908429157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091394840884968 47.558697967821445, 10.091186900000006 47.558786896244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_172_LVCableDist_mvgd_33532_lvgd_1163940000_building_446984,BranchTee_mvgd_33532_lvgd_1163940000_172,BranchTee_mvgd_33532_lvgd_1163940000_building_446984,0.02393689100214589,0.02077722138986263,0.0020379189409894835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091309550013534 47.558985646276135, 10.091186900000006 47.558786896244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_173_LVCableDist_mvgd_33532_lvgd_1163940000_177,BranchTee_mvgd_33532_lvgd_1163940000_173,BranchTee_mvgd_33532_lvgd_1163940000_177,0.02529912498681336,0.021959640488553995,0.002153895674942299,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0862641 47.557044496244224, 10.086598900000006 47.55706309624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_173_LVCableDist_mvgd_33532_lvgd_1163940000_181,BranchTee_mvgd_33532_lvgd_1163940000_173,BranchTee_mvgd_33532_lvgd_1163940000_181,0.042152656933222614,0.03658850621803723,0.0035887575362040522,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085715199999997 47.55710829624423, 10.085827200000002 47.55708689624424, 10.086029800000006 47.5570528962442, 10.0862641 47.557044496244224)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_173_LVCableDist_mvgd_33532_lvgd_1163940000_building_446847,BranchTee_mvgd_33532_lvgd_1163940000_173,BranchTee_mvgd_33532_lvgd_1163940000_building_446847,0.018155387055867802,0.01575887596449325,0.0015456981092002043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086366843794098 47.556896674273474, 10.0862641 47.557044496244224)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_174_LVCableDist_mvgd_33532_lvgd_1163940000_180,BranchTee_mvgd_33532_lvgd_1163940000_174,BranchTee_mvgd_33532_lvgd_1163940000_180,0.02144726142699489,0.018616222918631565,0.001825958947237873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084748599999996 47.557142096244185, 10.085029800000003 47.55717259624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_174_LVCableDist_mvgd_33532_lvgd_1163940000_building_446713,BranchTee_mvgd_33532_lvgd_1163940000_174,BranchTee_mvgd_33532_lvgd_1163940000_building_446713,0.0160278925471325,0.01391221073091101,0.0013645692668700076,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084614791989921 47.55725427501334, 10.084748599999996 47.557142096244185)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_175_LVCableDist_mvgd_33532_lvgd_1163940000_180,BranchTee_mvgd_33532_lvgd_1163940000_175,BranchTee_mvgd_33532_lvgd_1163940000_180,0.02459754011393077,0.021350664818891908,0.00209416473072607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085029800000003 47.55717259624419, 10.0852206 47.55718279624423, 10.085355299999996 47.55717479624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_175_LVCableDist_mvgd_33532_lvgd_1163940000_181,BranchTee_mvgd_33532_lvgd_1163940000_175,BranchTee_mvgd_33532_lvgd_1163940000_181,0.028093567176442062,0.02438521630915171,0.0023918065493007913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085355299999996 47.55717479624423, 10.085715199999997 47.55710829624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_175_LVCableDist_mvgd_33532_lvgd_1163940000_building_446863,BranchTee_mvgd_33532_lvgd_1163940000_175,BranchTee_mvgd_33532_lvgd_1163940000_building_446863,0.023963948286345436,0.020800707112547837,0.0020402225213482297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085565197991391 47.55733689262764, 10.085355299999996 47.55717479624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_176_LVCableDist_mvgd_33532_lvgd_1163940000_177,BranchTee_mvgd_33532_lvgd_1163940000_176,BranchTee_mvgd_33532_lvgd_1163940000_177,0.03097039590344818,0.026882303644193018,0.00263673157954899,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086598900000006 47.55706309624426, 10.086606099999996 47.55678439624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_176_LVCableDist_mvgd_33532_lvgd_1163940000_building_446844,BranchTee_mvgd_33532_lvgd_1163940000_176,BranchTee_mvgd_33532_lvgd_1163940000_building_446844,0.022654657236990658,0.01966424248170789,0.0019287531985982993,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086347966094113 47.55667971559361, 10.086606099999996 47.55678439624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_176_LVCableDist_mvgd_33532_lvgd_1163940000_building_446852,BranchTee_mvgd_33532_lvgd_1163940000_176,BranchTee_mvgd_33532_lvgd_1163940000_building_446852,0.01956126175728568,0.01697917520532397,0.0016653902898773265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086844188115986 47.55671402647332, 10.086606099999996 47.55678439624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_176_LVCableDist_mvgd_33532_lvgd_1163940000_building_446854,BranchTee_mvgd_33532_lvgd_1163940000_176,BranchTee_mvgd_33532_lvgd_1163940000_building_446854,0.042275236133749935,0.03669490496409494,0.003599193581323846,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087160665472737 47.556725490070995, 10.086606099999996 47.55678439624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_177_LVCableDist_mvgd_33532_lvgd_1163940000_179,BranchTee_mvgd_33532_lvgd_1163940000_177,BranchTee_mvgd_33532_lvgd_1163940000_179,0.0211438255354063,0.01835284056473267,0.001800125276909133,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086598900000006 47.55706309624426, 10.086877800000002 47.557084896244255)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_177_LVCableDist_mvgd_33532_lvgd_1163940000_building_446864,BranchTee_mvgd_33532_lvgd_1163940000_177,BranchTee_mvgd_33532_lvgd_1163940000_building_446864,0.031543796255457716,0.027380015149737296,0.0026855492575851864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086687322529885 47.557340598837314, 10.086598900000006 47.55706309624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_178_LVCableDist_mvgd_33532_lvgd_1163940000_179,BranchTee_mvgd_33532_lvgd_1163940000_178,BranchTee_mvgd_33532_lvgd_1163940000_179,0.03876651895804966,0.033649338455587104,0.0033004713625405593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086877800000002 47.557084896244255, 10.0873888 47.5571268962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_178_LVCableDist_mvgd_33532_lvgd_1163940000_182,BranchTee_mvgd_33532_lvgd_1163940000_178,BranchTee_mvgd_33532_lvgd_1163940000_182,0.03627943586751531,0.03149055033300329,0.0030887281692595168,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0873888 47.5571268962442, 10.087867 47.55716629624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_178_LVCableDist_mvgd_33532_lvgd_1163940000_building_446849,BranchTee_mvgd_33532_lvgd_1163940000_178,BranchTee_mvgd_33532_lvgd_1163940000_building_446849,0.03969346036786518,0.034453923599306976,0.003379388522504282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087540238895905 47.55678470501278, 10.0873888 47.5571268962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_178_LVCableDist_mvgd_33532_lvgd_1163940000_building_446855,BranchTee_mvgd_33532_lvgd_1163940000_178,BranchTee_mvgd_33532_lvgd_1163940000_building_446855,0.022880297167582497,0.019860097941461607,0.0019479635416773332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087180432764647 47.556977038647894, 10.0873888 47.5571268962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_178_LVCableDist_mvgd_33532_lvgd_1163940000_building_446866,BranchTee_mvgd_33532_lvgd_1163940000_178,BranchTee_mvgd_33532_lvgd_1163940000_building_446866,0.02619101110990012,0.022733797643393304,0.002229828327318969,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087585124917183 47.557321463448446, 10.0873888 47.5571268962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_179_LVCableDist_mvgd_33532_lvgd_1163940000_building_446848,BranchTee_mvgd_33532_lvgd_1163940000_179,BranchTee_mvgd_33532_lvgd_1163940000_building_446848,0.01705538621407707,0.014804075233818898,0.0014520471605290197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086780326501417 47.55694634176253, 10.086877800000002 47.557084896244255)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_17_LVCableDist_mvgd_33532_lvgd_1163940000_building_446963,BranchTee_mvgd_33532_lvgd_1163940000_17,BranchTee_mvgd_33532_lvgd_1163940000_building_446963,0.016220959918309286,0.01407979320909246,0.0013810064747167973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092845725470166 47.55768187158693, 10.092942500000001 47.55781229624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_17_LVCableDist_mvgd_33532_lvgd_1163940000_building_446981,BranchTee_mvgd_33532_lvgd_1163940000_17,BranchTee_mvgd_33532_lvgd_1163940000_building_446981,0.01790459727222521,0.015541190432291482,0.0015243465790350681,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09311996797122 47.557919521377265, 10.092942500000001 47.55781229624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_180_LVCableDist_mvgd_33532_lvgd_1163940000_building_446662,BranchTee_mvgd_33532_lvgd_1163940000_180,BranchTee_mvgd_33532_lvgd_1163940000_building_446662,0.01891189792612183,0.016415527399873748,0.001610105296892913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084975760318727 47.557006372997826, 10.085029800000003 47.55717259624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_180_LVCableDist_mvgd_33532_lvgd_1163940000_building_446722,BranchTee_mvgd_33532_lvgd_1163940000_180,BranchTee_mvgd_33532_lvgd_1163940000_building_446722,0.012767656052225337,0.011082325453331593,0.0010870019877909976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085004507059761 47.55728622330785, 10.085029800000003 47.55717259624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_181_LVCableDist_mvgd_33532_lvgd_1163940000_building_446840,BranchTee_mvgd_33532_lvgd_1163940000_181,BranchTee_mvgd_33532_lvgd_1163940000_building_446840,0.011444689509487125,0.009933990494234825,0.0009743683723603272,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0856417433635 47.55701812601092, 10.085715199999997 47.55710829624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_182_LVCableDist_mvgd_33532_lvgd_1163940000_building_446867,BranchTee_mvgd_33532_lvgd_1163940000_182,BranchTee_mvgd_33532_lvgd_1163940000_building_446867,0.011054834486859766,0.009595596334594277,0.0009411772225664399,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087930200769016 47.55707649284789, 10.087867 47.55716629624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_182_LVCableDist_mvgd_33532_lvgd_1163940000_building_446872,BranchTee_mvgd_33532_lvgd_1163940000_182,BranchTee_mvgd_33532_lvgd_1163940000_building_446872,0.026489044048491776,0.022992490234090862,0.0022552020055690075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088016304809685 47.55738215570128, 10.087867 47.55716629624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_182_LVCableDist_mvgd_33532_lvgd_1163940000_building_446873,BranchTee_mvgd_33532_lvgd_1163940000_182,BranchTee_mvgd_33532_lvgd_1163940000_building_446873,0.03971399111629519,0.03447174428894423,0.0033811364521370174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087882208622089 47.55752358457879, 10.087867 47.55716629624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_182_LVStation_mvgd_33532_lvgd_1163940000,BusBar_mvgd_33532_lvgd_1163940000_LV,BranchTee_mvgd_33532_lvgd_1163940000_182,0.058277380150739355,0.05058476597084176,0.0049615706914398075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087867 47.55716629624423, 10.088342000000006 47.557203396244255, 10.088636700000006 47.55721959624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_18_LVCableDist_mvgd_33532_lvgd_1163940000_6,BranchTee_mvgd_33532_lvgd_1163940000_6,BranchTee_mvgd_33532_lvgd_1163940000_18,0.04447374236532713,0.014231597556904682,0.0036466497778357347,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.088786199999996 47.557237896244224, 10.089367200000005 47.557309496244265)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_18_LVCableDist_mvgd_33532_lvgd_1163940000_building_446899,BranchTee_mvgd_33532_lvgd_1163940000_18,BranchTee_mvgd_33532_lvgd_1163940000_building_446899,0.01901271460209414,0.016503036274617713,0.001618688542457809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088866175887688 47.55707558813344, 10.088786199999996 47.557237896244224)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_18_LVStation_mvgd_33532_lvgd_1163940000,BusBar_mvgd_33532_lvgd_1163940000_LV,BranchTee_mvgd_33532_lvgd_1163940000_18,0.011441317221073197,0.0036612215107434233,0.0009381373071698741,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.088636700000006 47.55721959624428, 10.088786199999996 47.557237896244224)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_19_LVCableDist_mvgd_33532_lvgd_1163940000_20,BranchTee_mvgd_33532_lvgd_1163940000_19,BranchTee_mvgd_33532_lvgd_1163940000_20,0.02707103522828003,0.005576633257025686,0.0021771818341948168,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.096959000000005 47.55870689624438, 10.096688799999999 47.55886759624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_19_LVCableDist_mvgd_33532_lvgd_1163940000_27,BranchTee_mvgd_33532_lvgd_1163940000_19,BranchTee_mvgd_33532_lvgd_1163940000_27,0.0636162401521745,0.013104945471347947,0.005116321605403531,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.096959000000005 47.55870689624438, 10.097095300000003 47.558806896244384, 10.097181799999998 47.55889029624438, 10.097235800000002 47.55893399624437, 10.097288499999996 47.55896099624437, 10.097350199999992 47.5589815962444, 10.0975122 47.55903039624442, 10.097600899999994 47.55905739624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_19_LVCableDist_mvgd_33532_lvgd_1163940000_33,BranchTee_mvgd_33532_lvgd_1163940000_19,BranchTee_mvgd_33532_lvgd_1163940000_33,0.038758899163930195,0.00798433322776962,0.0031171756255905453,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.097087799999995 47.558376796244296, 10.097069900000001 47.55854049624433, 10.097026400000004 47.55863929624433, 10.096959000000005 47.55870689624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_1_LVCableDist_mvgd_33532_lvgd_1163940000_15,BranchTee_mvgd_33532_lvgd_1163940000_1,BranchTee_mvgd_33532_lvgd_1163940000_15,0.04461781910704064,0.014277702114253006,0.0036584634321453952,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089952999320053 47.55736944781641, 10.090538800000001 47.557429396244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_1_LVCableDist_mvgd_33532_lvgd_1163940000_6,BranchTee_mvgd_33532_lvgd_1163940000_1,BranchTee_mvgd_33532_lvgd_1163940000_6,0.04461781910604985,0.014277702113935952,0.0036584634320641547,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089367200000005 47.557309496244265, 10.089952999320053 47.55736944781641)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_1_LVCableDist_mvgd_33532_lvgd_1163940000_building_446861,BranchTee_mvgd_33532_lvgd_1163940000_1,BranchTee_mvgd_33532_lvgd_1163940000_building_446861,0.0195023230320742,0.016928016391840404,0.0016603724141450319,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089914219350883 47.55719590162723, 10.089952999320053 47.55736944781641)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_20_LVCableDist_mvgd_33532_lvgd_1163940000_30,BranchTee_mvgd_33532_lvgd_1163940000_20,BranchTee_mvgd_33532_lvgd_1163940000_30,0.009668933783215485,0.0019918003593423898,0.0007776217943397358,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.096688799999999 47.55886759624438, 10.096591399999992 47.558924296244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_20_LVCableDist_mvgd_33532_lvgd_1163940000_building_447094,BranchTee_mvgd_33532_lvgd_1163940000_20,BranchTee_mvgd_33532_lvgd_1163940000_building_447094,0.016709693387236015,0.014504013860120861,0.0014226158547040305,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09689802057323 47.55891766442041, 10.096688799999999 47.55886759624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_21_LVCableDist_mvgd_33532_lvgd_1163940000_24,BranchTee_mvgd_33532_lvgd_1163940000_21,BranchTee_mvgd_33532_lvgd_1163940000_24,0.026087003326441007,0.005373922685246847,0.002098041292915701,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.096498100000007 47.55897729624436, 10.096363499999999 47.559046896244396, 10.096203800000001 47.55909879624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_21_LVCableDist_mvgd_33532_lvgd_1163940000_30,BranchTee_mvgd_33532_lvgd_1163940000_21,BranchTee_mvgd_33532_lvgd_1163940000_30,0.009167523610062851,0.0018885098636729472,0.0007372959955196014,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.096591399999992 47.558924296244385, 10.096498100000007 47.55897729624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_21_LVCableDist_mvgd_33532_lvgd_1163940000_building_447090,BranchTee_mvgd_33532_lvgd_1163940000_21,BranchTee_mvgd_33532_lvgd_1163940000_building_447090,0.00684570276558944,0.0059420700005316344,0.0005828236979116518,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096527088832914 47.55903569171114, 10.096498100000007 47.55897729624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_22_LVCableDist_mvgd_33532_lvgd_1163940000_40,BranchTee_mvgd_33532_lvgd_1163940000_22,BranchTee_mvgd_33532_lvgd_1163940000_40,0.06804627175018106,0.014017531980537299,0.005472605886324314,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.102131600000005 47.55860099624434, 10.101843600000006 47.55918149624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_22_LVCableDist_mvgd_33532_lvgd_1163940000_building_447168,BranchTee_mvgd_33532_lvgd_1163940000_22,BranchTee_mvgd_33532_lvgd_1163940000_building_447168,0.029777922154171254,0.025847236429820647,0.002535207750073127,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101728472658431 47.55892510144836, 10.101843600000006 47.55918149624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_22_LVCableDist_mvgd_33532_lvgd_1163940000_building_447172,BranchTee_mvgd_33532_lvgd_1163940000_22,BranchTee_mvgd_33532_lvgd_1163940000_building_447172,0.0349310287361245,0.030320132942956064,0.002973928614339027,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101783883675163 47.55886972523469, 10.101843600000006 47.55918149624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_23_LVCableDist_mvgd_33532_lvgd_1163940000_28,BranchTee_mvgd_33532_lvgd_1163940000_23,BranchTee_mvgd_33532_lvgd_1163940000_28,0.07575791058797766,0.015606129581123398,0.006092812681075277,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.099646299999996 47.55874359624436, 10.099647499999996 47.559204796244394, 10.099590299999994 47.559255896244395, 10.099640800000005 47.55929109624441, 10.0997905 47.559326296244414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_23_LVCableDist_mvgd_33532_lvgd_1163940000_building_447137,BranchTee_mvgd_33532_lvgd_1163940000_23,BranchTee_mvgd_33532_lvgd_1163940000_building_447137,0.014138364933040637,0.012272100761879273,0.0012037002503408657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09992510870922 47.55923759084604, 10.0997905 47.559326296244414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_23_LVCableDist_mvgd_33532_lvgd_1163940000_building_447138,BranchTee_mvgd_33532_lvgd_1163940000_23,BranchTee_mvgd_33532_lvgd_1163940000_building_447138,0.048446446641034334,0.042051515684417805,0.004124592923306092,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10035360000505 47.559115446268734, 10.0997905 47.559326296244414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_24_LVCableDist_mvgd_33532_lvgd_1163940000_building_447034,BranchTee_mvgd_33532_lvgd_1163940000_24,BranchTee_mvgd_33532_lvgd_1163940000_building_447034,0.011102700666296676,0.009637144178345514,0.0009452524131874163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096173900003736 47.559000946286055, 10.096203800000001 47.55909879624443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_25_LVCableDist_mvgd_33532_lvgd_1163940000_31,BranchTee_mvgd_33532_lvgd_1163940000_25,BranchTee_mvgd_33532_lvgd_1163940000_31,0.050917185976726544,0.010488940311205668,0.004095003069592303,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.097323999999999 47.55830729624427, 10.097506599999996 47.558091996244315, 10.097586400000006 47.5579932962443, 10.097659599999997 47.55790949624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_25_LVCableDist_mvgd_33532_lvgd_1163940000_building_447152,BranchTee_mvgd_33532_lvgd_1163940000_25,BranchTee_mvgd_33532_lvgd_1163940000_building_447152,0.020019279895214386,0.017376734949046086,0.0017043846537869072,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097863680543064 47.5580249442152, 10.097659599999997 47.55790949624431)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_26_LVCableDist_mvgd_33532_lvgd_1163940000_27,BranchTee_mvgd_33532_lvgd_1163940000_26,BranchTee_mvgd_33532_lvgd_1163940000_27,0.037055276210048824,0.0076333868992700575,0.0029801621380666885,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.097600899999994 47.55905739624441, 10.097669000000005 47.559074096244366, 10.097725600000002 47.55908569624443, 10.0977744 47.55910879624439, 10.097804000000002 47.55913199624444, 10.097828400000003 47.55914479624439, 10.097864399999995 47.55916149624441, 10.097950899999997 47.559175696244395, 10.0980428 47.55918099624446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_26_LVCableDist_mvgd_33532_lvgd_1163940000_building_447127,BranchTee_mvgd_33532_lvgd_1163940000_26,BranchTee_mvgd_33532_lvgd_1163940000_building_447127,0.01496809573162365,0.012992307095049328,0.001274341174853705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09808107903001 47.55931319020871, 10.0980428 47.55918099624446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_27_LVCableDist_mvgd_33532_lvgd_1163940000_building_447106,BranchTee_mvgd_33532_lvgd_1163940000_27,BranchTee_mvgd_33532_lvgd_1163940000_building_447106,0.024508869074228865,0.021273698356430656,0.0020866155301507094,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097719200003977 47.55885189628183, 10.097600899999994 47.55905739624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_28_LVCableDist_mvgd_33532_lvgd_1163940000_38,BranchTee_mvgd_33532_lvgd_1163940000_28,BranchTee_mvgd_33532_lvgd_1163940000_38,0.02193314823551626,0.004518228536516349,0.0017639684445899216,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.099646299999996 47.55874359624436, 10.099936299999996 47.55872539624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_28_LVCableDist_mvgd_33532_lvgd_1163940000_44,BranchTee_mvgd_33532_lvgd_1163940000_28,BranchTee_mvgd_33532_lvgd_1163940000_44,0.06825712537386534,0.01406096782701626,0.005489563740920136,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.099646299999996 47.55874359624436, 10.0987411 47.55877459624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_28_LVCableDist_mvgd_33532_lvgd_1163940000_building_447122,BranchTee_mvgd_33532_lvgd_1163940000_28,BranchTee_mvgd_33532_lvgd_1163940000_building_447122,0.035634407409845255,0.03093066563174568,0.0030338122776658594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.099198049999917 47.558640896255596, 10.099646299999996 47.55874359624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_28_LVCableDist_mvgd_33532_lvgd_1163940000_building_447128,BranchTee_mvgd_33532_lvgd_1163940000_28,BranchTee_mvgd_33532_lvgd_1163940000_building_447128,0.026420666817606547,0.02293313879768248,0.0022493805622603954,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.099367923008986 47.558888321755816, 10.099646299999996 47.55874359624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_29_LVCableDist_mvgd_33532_lvgd_1163940000_30,BranchTee_mvgd_33532_lvgd_1163940000_29,BranchTee_mvgd_33532_lvgd_1163940000_30,0.05030405261214323,0.010362634838101504,0.0040456919585818525,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.096684999999997 47.55929849624439, 10.096758100000002 47.559256396244415, 10.096802999999998 47.559221996244425, 10.096814400000005 47.55919839624436, 10.096810400000006 47.5591604962444, 10.096591399999992 47.558924296244385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_29_LVCableDist_mvgd_33532_lvgd_1163940000_building_447108,BranchTee_mvgd_33532_lvgd_1163940000_29,BranchTee_mvgd_33532_lvgd_1163940000_building_447108,0.012663300349196866,0.01099174470310288,0.0010781174395101483,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096582130022592 47.55920834201451, 10.096684999999997 47.55929849624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_29_LVCableDist_mvgd_33532_lvgd_1163940000_building_447199,BranchTee_mvgd_33532_lvgd_1163940000_29,BranchTee_mvgd_33532_lvgd_1163940000_building_447199,0.11801754229854686,0.10243922671513866,0.010047678489143596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097372368489516 47.56025304171057, 10.096684999999997 47.55929849624439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_2_LVCableDist_mvgd_33532_lvgd_1163940000_9,BranchTee_mvgd_33532_lvgd_1163940000_2,BranchTee_mvgd_33532_lvgd_1163940000_9,0.03436043438249936,0.010995339002399795,0.0028174033428085892,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.095077500000007 47.557958596244326, 10.0955113 47.558054396244295)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_2_LVCableDist_mvgd_33532_lvgd_1163940000_building_447001,BranchTee_mvgd_33532_lvgd_1163940000_2,BranchTee_mvgd_33532_lvgd_1163940000_building_447001,0.024102842719543813,0.02092126748056403,0.00205204759905726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095306128783362 47.55822089370891, 10.0955113 47.558054396244295)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_2_LVCableDist_mvgd_33532_lvgd_1163940000_building_447006,BranchTee_mvgd_33532_lvgd_1163940000_2,BranchTee_mvgd_33532_lvgd_1163940000_building_447006,0.019023684047209558,0.016512557752977896,0.001619622449871719,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095757100800997 47.55801492456287, 10.0955113 47.558054396244295)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_2_LVCableDist_mvgd_33532_lvgd_1163940000_building_447040,BranchTee_mvgd_33532_lvgd_1163940000_2,BranchTee_mvgd_33532_lvgd_1163940000_building_447040,0.04689207370061106,0.040702319972130405,0.0039922580241595765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095350764691986 47.55846217373598, 10.0955113 47.558054396244295)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_31_LVCableDist_mvgd_33532_lvgd_1163940000_32,BranchTee_mvgd_33532_lvgd_1163940000_31,BranchTee_mvgd_33532_lvgd_1163940000_32,0.01468469976039447,0.0030250481506412605,0.0011810136291181329,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.097323999999999 47.55830729624427, 10.097474900000002 47.55839099624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_31_LVCableDist_mvgd_33532_lvgd_1163940000_43,BranchTee_mvgd_33532_lvgd_1163940000_31,BranchTee_mvgd_33532_lvgd_1163940000_43,0.013729370153166878,0.0028282502515523766,0.0011041814633370632,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.097160099999996 47.55825319624433, 10.097323999999999 47.55830729624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_32_LVCableDist_mvgd_33532_lvgd_1163940000_44,BranchTee_mvgd_33532_lvgd_1163940000_32,BranchTee_mvgd_33532_lvgd_1163940000_44,0.10710467864874292,0.02206356380164104,0.008613869353164449,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.097474900000002 47.55839099624433, 10.097865900000002 47.5585976962444, 10.0981164 47.55868759624434, 10.098320899999994 47.55873609624435, 10.098521399999996 47.5587691962444, 10.0987411 47.55877459624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_32_LVCableDist_mvgd_33532_lvgd_1163940000_building_447100,BranchTee_mvgd_33532_lvgd_1163940000_32,BranchTee_mvgd_33532_lvgd_1163940000_building_447100,0.013850626497079193,0.01202234379946474,0.0011792030168177674,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097441600004927 47.55851359626037, 10.097474900000002 47.55839099624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_32_LVCableDist_mvgd_33532_lvgd_1163940000_building_447139,BranchTee_mvgd_33532_lvgd_1163940000_32,BranchTee_mvgd_33532_lvgd_1163940000_building_447139,0.023248188233802213,0.02017942738694032,0.001979284742580273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097781850014137 47.55836874628869, 10.097474900000002 47.55839099624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_33_LVCableDist_mvgd_33532_lvgd_1163940000_43,BranchTee_mvgd_33532_lvgd_1163940000_33,BranchTee_mvgd_33532_lvgd_1163940000_43,0.0147727487870519,0.0030431862501326913,0.0011880949520058823,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.097160099999996 47.55825319624433, 10.097087799999995 47.558376796244296)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_33_LVCableDist_mvgd_33532_lvgd_1163940000_building_447112,BranchTee_mvgd_33532_lvgd_1163940000_33,BranchTee_mvgd_33532_lvgd_1163940000_building_447112,0.01973984010904615,0.01713418121465206,0.001680593943746608,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096831144158704 47.55841287012378, 10.097087799999995 47.558376796244296)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_34_LVCableDist_mvgd_33532_lvgd_1163940000_35,BranchTee_mvgd_33532_lvgd_1163940000_34,BranchTee_mvgd_33532_lvgd_1163940000_35,0.019015793626384375,0.003917253487035181,0.0015293408655060164,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.101248999999996 47.558506496244355, 10.101501499999998 47.55850629624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_34_LVCableDist_mvgd_33532_lvgd_1163940000_37,BranchTee_mvgd_33532_lvgd_1163940000_34,BranchTee_mvgd_33532_lvgd_1163940000_37,0.03373029613416983,0.006948441003638985,0.002712751373786013,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.101501499999998 47.55850629624433, 10.1017099 47.558522996244356, 10.101940499999994 47.558562996244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_34_LVCableDist_mvgd_33532_lvgd_1163940000_building_447111,BranchTee_mvgd_33532_lvgd_1163940000_34,BranchTee_mvgd_33532_lvgd_1163940000_building_447111,0.013672297717529227,0.011867554418815368,0.001164020610817931,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101460862586155 47.558386365196895, 10.101501499999998 47.55850629624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_34_LVCableDist_mvgd_33532_lvgd_1163940000_building_447114,BranchTee_mvgd_33532_lvgd_1163940000_34,BranchTee_mvgd_33532_lvgd_1163940000_building_447114,0.014864953368026478,0.012902779523446982,0.0012655599268472594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101603437416264 47.558391727329536, 10.101501499999998 47.55850629624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_35_LVCableDist_mvgd_33532_lvgd_1163940000_39,BranchTee_mvgd_33532_lvgd_1163940000_35,BranchTee_mvgd_33532_lvgd_1163940000_39,0.021570791013710074,0.004443582948824275,0.0017348259476682828,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.100968199999995 47.55854479624434, 10.101248999999996 47.558506496244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_35_LVCableDist_mvgd_33532_lvgd_1163940000_building_447104,BranchTee_mvgd_33532_lvgd_1163940000_35,BranchTee_mvgd_33532_lvgd_1163940000_building_447104,0.02317214631692415,0.020113423003090162,0.0019728107496669468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101214347829096 47.55829926811656, 10.101248999999996 47.558506496244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_35_LVCableDist_mvgd_33532_lvgd_1163940000_building_447161,BranchTee_mvgd_33532_lvgd_1163940000_35,BranchTee_mvgd_33532_lvgd_1163940000_building_447161,0.02242374704940107,0.01946381243888013,0.0019090941608011992,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10131295151154 47.55870360456783, 10.101248999999996 47.558506496244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_35_LVCableDist_mvgd_33532_lvgd_1163940000_building_447167,BranchTee_mvgd_33532_lvgd_1163940000_35,BranchTee_mvgd_33532_lvgd_1163940000_building_447167,0.04467472360212237,0.03877766008664222,0.0038034791320256775,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101245458804181 47.55890857429782, 10.101248999999996 47.558506496244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_36_LVCableDist_mvgd_33532_lvgd_1163940000_38,BranchTee_mvgd_33532_lvgd_1163940000_36,BranchTee_mvgd_33532_lvgd_1163940000_38,0.03411541824266168,0.007027776157988305,0.002743724731527402,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.099936299999996 47.55872539624437, 10.100137199999995 47.558694696244345, 10.100366999999997 47.558633196244365)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_36_LVCableDist_mvgd_33532_lvgd_1163940000_39,BranchTee_mvgd_33532_lvgd_1163940000_36,BranchTee_mvgd_33532_lvgd_1163940000_39,0.046329032731547294,0.009543780742698743,0.003726001891260161,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.100366999999997 47.558633196244365, 10.100968199999995 47.55854479624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_36_LVCableDist_mvgd_33532_lvgd_1163940000_building_447096,BranchTee_mvgd_33532_lvgd_1163940000_36,BranchTee_mvgd_33532_lvgd_1163940000_building_447096,0.04380845994511457,0.038025743232359445,0.0037297279036665413,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10029768110778 47.55824171904739, 10.100366999999997 47.558633196244365)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_36_LVCableDist_mvgd_33532_lvgd_1163940000_building_447129,BranchTee_mvgd_33532_lvgd_1163940000_36,BranchTee_mvgd_33532_lvgd_1163940000_building_447129,0.017369854970346394,0.01507703411426067,0.0014788201376334067,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100509208504807 47.558756274181285, 10.100366999999997 47.558633196244365)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_36_LVCableDist_mvgd_33532_lvgd_1163940000_building_447136,BranchTee_mvgd_33532_lvgd_1163940000_36,BranchTee_mvgd_33532_lvgd_1163940000_building_447136,0.025247686653398112,0.02191499201514956,0.002149516361273265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100497376565286 47.55884254177232, 10.100366999999997 47.558633196244365)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_36_LVCableDist_mvgd_33532_lvgd_1163940000_building_447140,BranchTee_mvgd_33532_lvgd_1163940000_36,BranchTee_mvgd_33532_lvgd_1163940000_building_447140,0.040236167606573094,0.03492499348250545,0.0034255930760144185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100489100000988 47.55898574625547, 10.100366999999997 47.558633196244365)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_36_LVCableDist_mvgd_33532_lvgd_1163940000_building_447141,BranchTee_mvgd_33532_lvgd_1163940000_36,BranchTee_mvgd_33532_lvgd_1163940000_building_447141,0.025646006587998253,0.022260733718382483,0.0021834281896398874,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10058668456646 47.558456821693746, 10.100366999999997 47.558633196244365)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_36_LVCableDist_mvgd_33532_lvgd_1163940000_building_447153,BranchTee_mvgd_33532_lvgd_1163940000_36,BranchTee_mvgd_33532_lvgd_1163940000_building_447153,0.04340680555149366,0.0376771072186965,0.0036955321889257124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100590150000478 47.55899339625534, 10.100366999999997 47.558633196244365)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_37_LVCableDist_mvgd_33532_lvgd_1163940000_40,BranchTee_mvgd_33532_lvgd_1163940000_37,BranchTee_mvgd_33532_lvgd_1163940000_40,0.014998423025045745,0.003089675143159423,0.0012062447511274423,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.101940499999994 47.558562996244355, 10.102131600000005 47.55860099624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_37_LVCableDist_mvgd_33532_lvgd_1163940000_building_447121,BranchTee_mvgd_33532_lvgd_1163940000_37,BranchTee_mvgd_33532_lvgd_1163940000_building_447121,0.017822814715014117,0.015470203172632252,0.0015173838443019695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101890161292467 47.55840625801535, 10.101940499999994 47.558562996244355)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_38_LVCableDist_mvgd_33532_lvgd_1163940000_building_447095,BranchTee_mvgd_33532_lvgd_1163940000_38,BranchTee_mvgd_33532_lvgd_1163940000_building_447095,0.03539541460975372,0.03072321988126623,0.0030134651091875894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.099931999540408 47.5584068409506, 10.099936299999996 47.55872539624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_38_LVCableDist_mvgd_33532_lvgd_1163940000_building_447123,BranchTee_mvgd_33532_lvgd_1163940000_38,BranchTee_mvgd_33532_lvgd_1163940000_building_447123,0.01810521713745058,0.015715328475307103,0.001541426784782961,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.099843950305665 47.55857494879787, 10.099936299999996 47.55872539624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_38_LVCableDist_mvgd_33532_lvgd_1163940000_building_447131,BranchTee_mvgd_33532_lvgd_1163940000_38,BranchTee_mvgd_33532_lvgd_1163940000_building_447131,0.01936871888420279,0.016812047991488024,0.0016489977363091553,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100026100004436 47.55888874629525, 10.099936299999996 47.55872539624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_39_LVCableDist_mvgd_33532_lvgd_1163940000_building_447103,BranchTee_mvgd_33532_lvgd_1163940000_39,BranchTee_mvgd_33532_lvgd_1163940000_building_447103,0.023654502913662168,0.020532108529058762,0.0020138772208605324,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10090370302813 47.5583364375631, 10.100968199999995 47.55854479624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_39_LVCableDist_mvgd_33532_lvgd_1163940000_building_447150,BranchTee_mvgd_33532_lvgd_1163940000_39,BranchTee_mvgd_33532_lvgd_1163940000_building_447150,0.02546382087025186,0.022102596515378613,0.0021679174148721927,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101019625068082 47.55877131025488, 10.100968199999995 47.55854479624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_39_LVCableDist_mvgd_33532_lvgd_1163940000_building_447151,BranchTee_mvgd_33532_lvgd_1163940000_39,BranchTee_mvgd_33532_lvgd_1163940000_building_447151,0.03468720361742995,0.030108492739929195,0.0029531700359742724,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100746349999325 47.5588183963907, 10.100968199999995 47.55854479624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_3_LVCableDist_mvgd_33532_lvgd_1163940000_5,BranchTee_mvgd_33532_lvgd_1163940000_3,BranchTee_mvgd_33532_lvgd_1163940000_5,0.03761374427109273,0.012036398166749673,0.00308416033584543,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.091151 47.55748379624426, 10.091636400000004 47.55756349624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_3_LVCableDist_mvgd_33532_lvgd_1163940000_building_446936,BranchTee_mvgd_33532_lvgd_1163940000_3,BranchTee_mvgd_33532_lvgd_1163940000_building_446936,0.031826663090148186,0.027625543562248625,0.002709631736806977,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091326510399638 47.55775826516108, 10.091636400000004 47.55756349624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_3_LVCableDist_mvgd_33532_lvgd_1163940000_building_446938,BranchTee_mvgd_33532_lvgd_1163940000_3,BranchTee_mvgd_33532_lvgd_1163940000_building_446938,0.020644137791495574,0.017919111603018158,0.0017575832810499095,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091485250004746 47.557408496262035, 10.091636400000004 47.55756349624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_3_LVCableDist_mvgd_33532_lvgd_1163940000_building_446941,BranchTee_mvgd_33532_lvgd_1163940000_3,BranchTee_mvgd_33532_lvgd_1163940000_building_446941,0.03721158379897241,0.03229965473750805,0.003168088597694032,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091380171053636 47.55784986605659, 10.091636400000004 47.55756349624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_3_LVCableDist_mvgd_33532_lvgd_1163940000_building_446946,BranchTee_mvgd_33532_lvgd_1163940000_3,BranchTee_mvgd_33532_lvgd_1163940000_building_446946,0.02002337272104128,0.01738028752186383,0.0017047331053579174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091413639407397 47.557661884356946, 10.091636400000004 47.55756349624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_3_LVCableDist_mvgd_33532_lvgd_1163940000_building_446949,BranchTee_mvgd_33532_lvgd_1163940000_3,BranchTee_mvgd_33532_lvgd_1163940000_building_446949,0.019787600230170708,0.017175636999788173,0.0016846601048639796,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091725250001016 47.5577310962723, 10.091636400000004 47.55756349624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_40_LVCableDist_mvgd_33532_lvgd_1163940000_building_447182,BranchTee_mvgd_33532_lvgd_1163940000_40,BranchTee_mvgd_33532_lvgd_1163940000_building_447182,0.012032120138210412,0.010443880279966638,0.0010243805483227456,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102211438239825 47.55850719211438, 10.102131600000005 47.55860099624434)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_41_LVCableDist_mvgd_33532_lvgd_1163940000_42,BranchTee_mvgd_33532_lvgd_1163940000_41,BranchTee_mvgd_33532_lvgd_1163940000_42,0.019944500250453273,0.004108567051593374,0.0016040318839384011,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.096783199999999 47.55819249624427, 10.096815100000004 47.55801429624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_41_LVCableDist_mvgd_33532_lvgd_1163940000_43,BranchTee_mvgd_33532_lvgd_1163940000_41,BranchTee_mvgd_33532_lvgd_1163940000_43,0.029639086931290626,0.006105651907845869,0.002383716806718768,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.096783199999999 47.55819249624427, 10.096936199999993 47.558193596244294, 10.097160099999996 47.55825319624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_41_LVStation_mvgd_33532_lvgd_1163940000,BusBar_mvgd_33532_lvgd_1163940000_LV,BranchTee_mvgd_33532_lvgd_1163940000_41,0.6278303886737333,0.12933306006678905,0.05049311582100032,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.088636700000006 47.55721959624428, 10.088786199999996 47.557237896244224, 10.089367200000005 47.557309496244265, 10.089952999320053 47.55736944781641, 10.090538800000001 47.557429396244274, 10.091151 47.55748379624426, 10.091636400000004 47.55756349624425, 10.092099100000002 47.55769029624424, 10.092488900000005 47.55776789624427, 10.092942500000001 47.55781229624422, 10.093422599999997 47.557816396244306, 10.094373599999999 47.55787079624427, 10.094694800000001 47.55789699624432, 10.094851499999995 47.55791919624427, 10.094925400000003 47.55793209624427, 10.095077500000007 47.557958596244326, 10.0955113 47.558054396244295, 10.096015500000002 47.5581872962443, 10.096249499999997 47.558225496244305, 10.0965016 47.558227696244344, 10.096608500000006 47.5582210962443, 10.096783199999999 47.55819249624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_42_LVCableDist_mvgd_33532_lvgd_1163940000_building_447088,BranchTee_mvgd_33532_lvgd_1163940000_42,BranchTee_mvgd_33532_lvgd_1163940000_building_447088,0.04864685089372439,0.042225466575752775,0.0041416547724148715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096907349999942 47.55758094626226, 10.096815100000004 47.55801429624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_42_LVCableDist_mvgd_33532_lvgd_1163940000_building_447091,BranchTee_mvgd_33532_lvgd_1163940000_42,BranchTee_mvgd_33532_lvgd_1163940000_building_447091,0.009872975897806583,0.008569743079296114,0.0008405571376946549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096684645109331 47.55800551895903, 10.096815100000004 47.55801429624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_42_LVCableDist_mvgd_33532_lvgd_1163940000_building_447099,BranchTee_mvgd_33532_lvgd_1163940000_42,BranchTee_mvgd_33532_lvgd_1163940000_building_447099,0.014425034958562632,0.012520930344032365,0.0012281065224324602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097000604063584 47.55804662776962, 10.096815100000004 47.55801429624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_43_LVCableDist_mvgd_33532_lvgd_1163940000_building_447135,BranchTee_mvgd_33532_lvgd_1163940000_43,BranchTee_mvgd_33532_lvgd_1163940000_building_447135,0.01319555933362038,0.01145374550158249,0.0011234324583140214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09719713943834 47.558137115431926, 10.097160099999996 47.55825319624433)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_44_LVCableDist_mvgd_33532_lvgd_1163940000_building_447120,BranchTee_mvgd_33532_lvgd_1163940000_44,BranchTee_mvgd_33532_lvgd_1163940000_building_447120,0.01410436090095974,0.012242585262033055,0.001200805243589928,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09864796080848 47.55866446644213, 10.0987411 47.55877459624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_44_LVCableDist_mvgd_33532_lvgd_1163940000_building_447124,BranchTee_mvgd_33532_lvgd_1163940000_44,BranchTee_mvgd_33532_lvgd_1163940000_building_447124,0.02208340281780021,0.019168393645850584,0.0018801182191898293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.098927201244765 47.55862099211291, 10.0987411 47.55877459624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_44_LVCableDist_mvgd_33532_lvgd_1163940000_building_447126,BranchTee_mvgd_33532_lvgd_1163940000_44,BranchTee_mvgd_33532_lvgd_1163940000_building_447126,0.011561923411943004,0.010035749521566528,0.0009843493339780883,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.098758685022354 47.55887797146843, 10.0987411 47.55877459624438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_45_LVCableDist_mvgd_33532_lvgd_1163940000_46,BranchTee_mvgd_33532_lvgd_1163940000_45,BranchTee_mvgd_33532_lvgd_1163940000_46,0.036623076926430374,0.004577884615803797,0.0029223916513677595,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0890398 47.55311719624388, 10.088615100000002 47.552956696243875)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_45_LVCableDist_mvgd_33532_lvgd_1163940000_48,BranchTee_mvgd_33532_lvgd_1163940000_45,BranchTee_mvgd_33532_lvgd_1163940000_48,0.06432253333174404,0.008040316666468005,0.005132710033652409,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088615100000002 47.552956696243875, 10.088231499999996 47.55279849624385, 10.088054099999999 47.55275179624382, 10.087839999999996 47.552741096243786)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_45_LVCableDist_mvgd_33532_lvgd_1163940000_building_446773,BranchTee_mvgd_33532_lvgd_1163940000_45,BranchTee_mvgd_33532_lvgd_1163940000_building_446773,0.018324420159320575,0.01590559669829026,0.0015600891077283657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08885523778855 47.55293021282143, 10.088615100000002 47.552956696243875)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_46_LVCableDist_mvgd_33532_lvgd_1163940000_68,BranchTee_mvgd_33532_lvgd_1163940000_46,BranchTee_mvgd_33532_lvgd_1163940000_68,0.028486005950389776,0.003560750743798722,0.0022730822464060354,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089384700000004 47.55322239624389, 10.0890398 47.55311719624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_46_LVCableDist_mvgd_33532_lvgd_1163940000_building_446780,BranchTee_mvgd_33532_lvgd_1163940000_46,BranchTee_mvgd_33532_lvgd_1163940000_building_446780,0.019802164008575315,0.017188278359443372,0.0016859000236095036,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088845272401379 47.55323709852685, 10.0890398 47.55311719624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_47_LVCableDist_mvgd_33532_lvgd_1163940000_84,BranchTee_mvgd_33532_lvgd_1163940000_47,BranchTee_mvgd_33532_lvgd_1163940000_84,0.009214511867010187,0.0011518139833762734,0.0007352853668105055,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0807098 47.551239996243716, 10.080590000000003 47.5512231962437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_47_LVCableDist_mvgd_33532_lvgd_1163940000_building_446606,BranchTee_mvgd_33532_lvgd_1163940000_47,BranchTee_mvgd_33532_lvgd_1163940000_building_446606,0.08921702323407571,0.07744037616717772,0.007595684063194431,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080768649972187 47.55042939649964, 10.080590000000003 47.5512231962437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_48_LVCableDist_mvgd_33532_lvgd_1163940000_86,BranchTee_mvgd_33532_lvgd_1163940000_48,BranchTee_mvgd_33532_lvgd_1163940000_86,0.05286028233405716,0.006607535291757145,0.00421806305604285,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.087839999999996 47.552741096243786, 10.087449999999997 47.55275109624381, 10.087319899999999 47.552770396243844, 10.087144400000005 47.552791996243876)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_48_LVCableDist_mvgd_33532_lvgd_1163940000_building_446726,BranchTee_mvgd_33532_lvgd_1163940000_48,BranchTee_mvgd_33532_lvgd_1163940000_building_446726,0.015287291259939927,0.013269368813627856,0.0013015165759104493,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087845160187307 47.552878641990894, 10.087839999999996 47.552741096243786)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_49_LVCableDist_mvgd_33532_lvgd_1163940000_69,BranchTee_mvgd_33532_lvgd_1163940000_49,BranchTee_mvgd_33532_lvgd_1163940000_69,0.01442300435392766,0.0018028755442409574,0.0011509045948332156,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086374500000003 47.55060269624367, 10.086470299999997 47.55049029624366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_49_LVCableDist_mvgd_33532_lvgd_1163940000_building_446720,BranchTee_mvgd_33532_lvgd_1163940000_49,BranchTee_mvgd_33532_lvgd_1163940000_building_446720,0.01883213360848775,0.016346291972167366,0.0016033143893474419,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086704121585534 47.55043027010872, 10.086470299999997 47.55049029624366)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_4_LVCableDist_mvgd_33532_lvgd_1163940000_7,BranchTee_mvgd_33532_lvgd_1163940000_4,BranchTee_mvgd_33532_lvgd_1163940000_7,0.057379334001529815,0.018361386880489543,0.004704851097760817,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.094694800000001 47.55789699624432, 10.094822199999996 47.55782639624426, 10.094995199999996 47.55777479624427, 10.0951628 47.557757596244265, 10.095398900000001 47.55773319624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_4_LVCableDist_mvgd_33532_lvgd_1163940000_9,BranchTee_mvgd_33532_lvgd_1163940000_4,BranchTee_mvgd_33532_lvgd_1163940000_9,0.02963069179441133,0.009481821374211625,0.002429585411580967,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.094694800000001 47.55789699624432, 10.094851499999995 47.55791919624427, 10.094925400000003 47.55793209624427, 10.095077500000007 47.557958596244326)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_50_LVCableDist_mvgd_33532_lvgd_1163940000_77,BranchTee_mvgd_33532_lvgd_1163940000_50,BranchTee_mvgd_33532_lvgd_1163940000_77,0.014813345572461082,0.0018516681965576353,0.001182052439688478,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086481700000006 47.55259649624381, 10.086318399999994 47.552522196243835)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_50_LVCableDist_mvgd_33532_lvgd_1163940000_82,BranchTee_mvgd_33532_lvgd_1163940000_50,BranchTee_mvgd_33532_lvgd_1163940000_82,0.027827240513351524,0.0034784050641689405,0.002220515100907104,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086773399999997 47.552750196243835, 10.086481700000006 47.55259649624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_50_LVCableDist_mvgd_33532_lvgd_1163940000_building_446737,BranchTee_mvgd_33532_lvgd_1163940000_50,BranchTee_mvgd_33532_lvgd_1163940000_building_446737,0.021986961357505767,0.019084682458315006,0.0018719074670661257,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086759550059458 47.55253579634366, 10.086481700000006 47.55259649624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_51_LVCableDist_mvgd_33532_lvgd_1163940000_56,BranchTee_mvgd_33532_lvgd_1163940000_51,BranchTee_mvgd_33532_lvgd_1163940000_56,0.02663517281379093,0.003329396601723866,0.0021253923262680645,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086085199999998 47.55228979624379, 10.086028299999997 47.55205319624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_51_LVCableDist_mvgd_33532_lvgd_1163940000_64,BranchTee_mvgd_33532_lvgd_1163940000_51,BranchTee_mvgd_33532_lvgd_1163940000_64,0.02136248123721279,0.0026703101546515988,0.0017046502385788488,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086131400000001 47.55247949624382, 10.086085199999998 47.55228979624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_51_LVCableDist_mvgd_33532_lvgd_1163940000_building_446735,BranchTee_mvgd_33532_lvgd_1163940000_51,BranchTee_mvgd_33532_lvgd_1163940000_building_446735,0.017474981861385262,0.015168284255682408,0.0014877703426719908,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08631714999921 47.552293446369355, 10.086085199999998 47.55228979624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_52_LVCableDist_mvgd_33532_lvgd_1163940000_53,BranchTee_mvgd_33532_lvgd_1163940000_52,BranchTee_mvgd_33532_lvgd_1163940000_53,0.008090598257830008,0.001011324782228751,0.0006456010468686065,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085896000000002 47.55092699624367, 10.085939099999996 47.550860296243634)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_52_LVCableDist_mvgd_33532_lvgd_1163940000_72,BranchTee_mvgd_33532_lvgd_1163940000_52,BranchTee_mvgd_33532_lvgd_1163940000_72,0.07430467566724792,0.00928808445840599,0.005929249589371399,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085997699999998 47.55159219624372, 10.085896000000002 47.55092699624367)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_52_LVCableDist_mvgd_33532_lvgd_1163940000_building_34328680,BranchTee_mvgd_33532_lvgd_1163940000_52,BranchTee_mvgd_33532_lvgd_1163940000_building_34328680,0.09915760366463952,0.0860687999809071,0.008441996858872838,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084598016764247 47.55077801375015, 10.085896000000002 47.55092699624367)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_52_LVCableDist_mvgd_33532_lvgd_1163940000_building_34328681,BranchTee_mvgd_33532_lvgd_1163940000_52,BranchTee_mvgd_33532_lvgd_1163940000_building_34328681,0.08139302796022921,0.07064914826947895,0.006929571318588016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084819705879923 47.55086158633855, 10.085896000000002 47.55092699624367)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_52_LVCableDist_mvgd_33532_lvgd_1163940000_building_446704,BranchTee_mvgd_33532_lvgd_1163940000_52,BranchTee_mvgd_33532_lvgd_1163940000_building_446704,0.017512167251530545,0.015200561174328513,0.0014909362012163758,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085713549998577 47.551024696285765, 10.085896000000002 47.55092699624367)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_52_LVCableDist_mvgd_33532_lvgd_1163940000_building_446718,BranchTee_mvgd_33532_lvgd_1163940000_52,BranchTee_mvgd_33532_lvgd_1163940000_building_446718,0.035590221820087545,0.03089231253983599,0.0030300504420006534,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086151500000506 47.55119644630824, 10.085896000000002 47.55092699624367)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_53_LVCableDist_mvgd_33532_lvgd_1163940000_55,BranchTee_mvgd_33532_lvgd_1163940000_53,BranchTee_mvgd_33532_lvgd_1163940000_55,0.0282904994686576,0.0035363124335822,0.002257481522546865,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085939099999996 47.550860296243634, 10.0862363 47.550704596243676)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_53_LVCableDist_mvgd_33532_lvgd_1163940000_building_446717,BranchTee_mvgd_33532_lvgd_1163940000_53,BranchTee_mvgd_33532_lvgd_1163940000_building_446717,0.017305692241636365,0.015021340865740364,0.0014733575050746496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08616324998408 47.55089449631581, 10.085939099999996 47.550860296243634)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_54_LVCableDist_mvgd_33532_lvgd_1163940000_80,BranchTee_mvgd_33532_lvgd_1163940000_54,BranchTee_mvgd_33532_lvgd_1163940000_80,0.06445747950544323,0.008057184938180403,0.005143478259713665,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089090000000002 47.55216399624374, 10.088349299999997 47.55245459624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_54_LVCableDist_mvgd_33532_lvgd_1163940000_building_446751,BranchTee_mvgd_33532_lvgd_1163940000_54,BranchTee_mvgd_33532_lvgd_1163940000_building_446751,0.024334726933981272,0.021122542978695744,0.0020717895627348406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08849684999905 47.55225974627088, 10.088349299999997 47.55245459624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_54_LVCableDist_mvgd_33532_lvgd_1163940000_building_446761,BranchTee_mvgd_33532_lvgd_1163940000_54,BranchTee_mvgd_33532_lvgd_1163940000_building_446761,0.02504665854773993,0.021740499619438258,0.002132401399093953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088018495375922 47.55243159315306, 10.088349299999997 47.55245459624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_54_LVCableDist_mvgd_33532_lvgd_1163940000_building_446767,BranchTee_mvgd_33532_lvgd_1163940000_54,BranchTee_mvgd_33532_lvgd_1163940000_building_446767,0.022022414666543172,0.019115455930559473,0.0018749258611425162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088240049999573 47.55227074627435, 10.088349299999997 47.55245459624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_54_LVCableDist_mvgd_33532_lvgd_1163940000_building_446768,BranchTee_mvgd_33532_lvgd_1163940000_54,BranchTee_mvgd_33532_lvgd_1163940000_building_446768,0.018443277142196884,0.016008764559426895,0.0015702082538050545,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088365375717387 47.55262023297368, 10.088349299999997 47.55245459624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_54_LVCableDist_mvgd_33532_lvgd_1163940000_building_446770,BranchTee_mvgd_33532_lvgd_1163940000_54,BranchTee_mvgd_33532_lvgd_1163940000_building_446770,0.034913318689648414,0.030304760622614824,0.0029724208312624286,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088738924098303 47.55262482201484, 10.088349299999997 47.55245459624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_55_LVCableDist_mvgd_33532_lvgd_1163940000_69,BranchTee_mvgd_33532_lvgd_1163940000_55,BranchTee_mvgd_33532_lvgd_1163940000_69,0.015379588764601777,0.0019224485955752222,0.0012272366381838689,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0862363 47.550704596243676, 10.086374500000003 47.55060269624367)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_55_LVCableDist_mvgd_33532_lvgd_1163940000_building_446703,BranchTee_mvgd_33532_lvgd_1163940000_55,BranchTee_mvgd_33532_lvgd_1163940000_building_446703,0.029553605694909786,0.025652529743181694,0.0025161100835857098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086535149999994 47.550876946270094, 10.0862363 47.550704596243676)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_55_LVCableDist_mvgd_33532_lvgd_1163940000_building_446719,BranchTee_mvgd_33532_lvgd_1163940000_55,BranchTee_mvgd_33532_lvgd_1163940000_building_446719,0.05824240181677947,0.05055440477696458,0.004958592735393021,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086596515987848 47.55116843528047, 10.0862363 47.550704596243676)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_56_LVCableDist_mvgd_33532_lvgd_1163940000_72,BranchTee_mvgd_33532_lvgd_1163940000_56,BranchTee_mvgd_33532_lvgd_1163940000_72,0.05127234641748745,0.006409043302185931,0.0040913514016722346,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086028299999997 47.55205319624379, 10.085997699999998 47.55159219624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_56_LVCableDist_mvgd_33532_lvgd_1163940000_building_446738,BranchTee_mvgd_33532_lvgd_1163940000_56,BranchTee_mvgd_33532_lvgd_1163940000_building_446738,0.017427003635296145,0.015126639155437055,0.0014836856127171559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085901400000001 47.551922046315234, 10.086028299999997 47.55205319624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_56_LVCableDist_mvgd_33532_lvgd_1163940000_building_446748,BranchTee_mvgd_33532_lvgd_1163940000_56,BranchTee_mvgd_33532_lvgd_1163940000_building_446748,0.04164535132690183,0.036148164951750786,0.003545566977167016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086567681594026 47.55197075948647, 10.086028299999997 47.55205319624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_57_LVCableDist_mvgd_33532_lvgd_1163940000_66,BranchTee_mvgd_33532_lvgd_1163940000_57,BranchTee_mvgd_33532_lvgd_1163940000_66,0.029492361590071483,0.0036865451987589354,0.0023533858573129124,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089570400000003 47.55285209624383, 10.089601400000005 47.55279289624384, 10.089643799999996 47.55271199624384, 10.089656799999998 47.5526737962438, 10.089682400000004 47.552598196243814)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_57_LVCableDist_mvgd_33532_lvgd_1163940000_76,BranchTee_mvgd_33532_lvgd_1163940000_57,BranchTee_mvgd_33532_lvgd_1163940000_76,0.03876030210743627,0.004845037763429534,0.003092934640931727,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089682400000004 47.552598196243814, 10.089679999999992 47.55238999624383, 10.089621799999996 47.55225499624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_57_LVCableDist_mvgd_33532_lvgd_1163940000_83,BranchTee_mvgd_33532_lvgd_1163940000_57,BranchTee_mvgd_33532_lvgd_1163940000_83,0.011067122463438984,0.001383390307929873,0.0008831171219389697,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089682400000004 47.552598196243814, 10.089823500000003 47.55257039624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_57_LVCableDist_mvgd_33532_lvgd_1163940000_building_446781,BranchTee_mvgd_33532_lvgd_1163940000_57,BranchTee_mvgd_33532_lvgd_1163940000_building_446781,0.014997359805337401,0.013017708311032864,0.0012768326350064217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08949225001386 47.552558146298374, 10.089682400000004 47.552598196243814)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_58_LVCableDist_mvgd_33532_lvgd_1163940000_59,BranchTee_mvgd_33532_lvgd_1163940000_58,BranchTee_mvgd_33532_lvgd_1163940000_59,0.02176827720850038,0.0027210346510625474,0.0017370313178920857,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085709400000004 47.55284939624388, 10.085725499999997 47.55293079624387, 10.085746900000002 47.552977896243824, 10.085827399999998 47.55301229624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_58_LVCableDist_mvgd_33532_lvgd_1163940000_building_446733,BranchTee_mvgd_33532_lvgd_1163940000_58,BranchTee_mvgd_33532_lvgd_1163940000_building_446733,0.016812324655721776,0.0145930978011665,0.0014313535895237345,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086025876903584 47.553081532782315, 10.085827399999998 47.55301229624391)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_59_LVCableDist_mvgd_33532_lvgd_1163940000_60,BranchTee_mvgd_33532_lvgd_1163940000_59,BranchTee_mvgd_33532_lvgd_1163940000_60,0.009057521102789805,0.0011321901378487256,0.000722758060608978,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085712099999997 47.55276789624379, 10.085709400000004 47.55284939624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_59_LVCableDist_mvgd_33532_lvgd_1163940000_building_446730,BranchTee_mvgd_33532_lvgd_1163940000_59,BranchTee_mvgd_33532_lvgd_1163940000_building_446730,0.013506391529584043,0.011723547847678949,0.0011498958289984983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08553380000186 47.55287404630417, 10.085709400000004 47.55284939624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_5_LVCableDist_mvgd_33532_lvgd_1163940000_building_446883,BranchTee_mvgd_33532_lvgd_1163940000_5,BranchTee_mvgd_33532_lvgd_1163940000_building_446883,0.02337356094695523,0.02028825090195714,0.0019899586194339907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090924975542368 47.557627965848106, 10.091151 47.55748379624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_5_LVCableDist_mvgd_33532_lvgd_1163940000_building_446934,BranchTee_mvgd_33532_lvgd_1163940000_5,BranchTee_mvgd_33532_lvgd_1163940000_building_446934,0.03985837898826146,0.03459707296181094,0.0033934292256263916,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091266802702263 47.557833837500716, 10.091151 47.55748379624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_5_LVCableDist_mvgd_33532_lvgd_1163940000_building_446940,BranchTee_mvgd_33532_lvgd_1163940000_5,BranchTee_mvgd_33532_lvgd_1163940000_building_446940,0.025642730076331836,0.022257889706256032,0.002183149236738913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09103134999701 47.55769987194808, 10.091151 47.55748379624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_60_LVCableDist_mvgd_33532_lvgd_1163940000_62,BranchTee_mvgd_33532_lvgd_1163940000_60,BranchTee_mvgd_33532_lvgd_1163940000_62,0.02571245422059223,0.003214056777574029,0.0020517626550434816,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085749599999998 47.552537996243835, 10.085720100000001 47.55268649624381, 10.085712099999997 47.55276789624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_60_LVCableDist_mvgd_33532_lvgd_1163940000_building_446731,BranchTee_mvgd_33532_lvgd_1163940000_60,BranchTee_mvgd_33532_lvgd_1163940000_building_446731,0.01361843697966301,0.011820803298347492,0.0011594350605113606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085892896517302 47.55276947427094, 10.085712099999997 47.55276789624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_61_LVCableDist_mvgd_33532_lvgd_1163940000_65,BranchTee_mvgd_33532_lvgd_1163940000_61,BranchTee_mvgd_33532_lvgd_1163940000_65,0.016771704929257343,0.002096463116157168,0.0013383225708458373,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091652299999996 47.552280096243805, 10.091669499999997 47.5521295962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_61_LVCableDist_mvgd_33532_lvgd_1163940000_building_446820,BranchTee_mvgd_33532_lvgd_1163940000_61,BranchTee_mvgd_33532_lvgd_1163940000_building_446820,0.03052776967281355,0.02649810407600216,0.0025990476389274528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091293733893187 47.55202662578024, 10.091669499999997 47.5521295962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_61_LVCableDist_mvgd_33532_lvgd_1163940000_building_446824,BranchTee_mvgd_33532_lvgd_1163940000_61,BranchTee_mvgd_33532_lvgd_1163940000_building_446824,0.014514275335101204,0.012598390990867845,0.0012357041947296972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091573193112795 47.55201644965532, 10.091669499999997 47.5521295962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_62_LVCableDist_mvgd_33532_lvgd_1163940000_63,BranchTee_mvgd_33532_lvgd_1163940000_62,BranchTee_mvgd_33532_lvgd_1163940000_63,0.0186423069427843,0.0023302883678480374,0.001487589977250396,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085813499999999 47.55237589624381, 10.085749599999998 47.552537996243835)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_62_LVCableDist_mvgd_33532_lvgd_1163940000_building_446729,BranchTee_mvgd_33532_lvgd_1163940000_62,BranchTee_mvgd_33532_lvgd_1163940000_building_446729,0.01617662982854664,0.014041314691178482,0.0013772323367314187,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08556960593225 47.552458566393724, 10.085749599999998 47.552537996243835)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_63_LVCableDist_mvgd_33532_lvgd_1163940000_64,BranchTee_mvgd_33532_lvgd_1163940000_63,BranchTee_mvgd_33532_lvgd_1163940000_64,0.026580770897702572,0.0033225963622128215,0.002121051246305985,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086131400000001 47.55247949624382, 10.085957100000003 47.55242689624379, 10.085813499999999 47.55237589624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_63_LVCableDist_mvgd_33532_lvgd_1163940000_70,BranchTee_mvgd_33532_lvgd_1163940000_63,BranchTee_mvgd_33532_lvgd_1163940000_70,0.011946891070441229,0.0014933613838051536,0.000953319536591446,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085813499999999 47.55237589624381, 10.085672999999998 47.55232599624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_64_LVCableDist_mvgd_33532_lvgd_1163940000_77,BranchTee_mvgd_33532_lvgd_1163940000_64,BranchTee_mvgd_33532_lvgd_1163940000_77,0.014862336735068475,0.0018577920918835594,0.0011859617607125486,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086318399999994 47.552522196243835, 10.086131400000001 47.55247949624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_65_LVCableDist_mvgd_33532_lvgd_1163940000_71,BranchTee_mvgd_33532_lvgd_1163940000_65,BranchTee_mvgd_33532_lvgd_1163940000_71,0.01806540080601313,0.0022581751007516413,0.00144155491359068,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091446400000002 47.55236349624377, 10.091652299999996 47.552280096243805)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_65_LVCableDist_mvgd_33532_lvgd_1163940000_building_446827,BranchTee_mvgd_33532_lvgd_1163940000_65,BranchTee_mvgd_33532_lvgd_1163940000_building_446827,0.015611555666397207,0.013550830318432776,0.001329123526861129,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091472500001927 47.552210196268746, 10.091652299999996 47.552280096243805)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_66_LVCableDist_mvgd_33532_lvgd_1163940000_67,BranchTee_mvgd_33532_lvgd_1163940000_66,BranchTee_mvgd_33532_lvgd_1163940000_67,0.035168816906523466,0.004396102113315433,0.002806346859456058,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089417999999995 47.553151296243875, 10.089570400000003 47.55285209624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_66_LVCableDist_mvgd_33532_lvgd_1163940000_building_446782,BranchTee_mvgd_33532_lvgd_1163940000_66,BranchTee_mvgd_33532_lvgd_1163940000_building_446782,0.02963268824313781,0.02572117339504362,0.0025228429472195523,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089209752148815 47.55274551830531, 10.089570400000003 47.55285209624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_67_LVCableDist_mvgd_33532_lvgd_1163940000_68,BranchTee_mvgd_33532_lvgd_1163940000_67,BranchTee_mvgd_33532_lvgd_1163940000_68,0.008288233380377706,0.0010360291725472132,0.0006613716287154204,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089384700000004 47.55322239624389, 10.089417999999995 47.553151296243875)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_67_LVCableDist_mvgd_33532_lvgd_1163940000_79,BranchTee_mvgd_33532_lvgd_1163940000_67,BranchTee_mvgd_33532_lvgd_1163940000_79,0.021667650556346736,0.002708456319543342,0.0017290016679325907,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089417999999995 47.553151296243875, 10.089698699999994 47.55319399624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_68_LVStation_mvgd_33532_lvgd_1163940000,BusBar_mvgd_33532_lvgd_1163940000_LV,BranchTee_mvgd_33532_lvgd_1163940000_68,0.47335094468114497,0.05916886808514312,0.037771726599653874,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088636700000006 47.55721959624428, 10.088720799999999 47.556742496244176, 10.0888543 47.55664039624423, 10.088979299999997 47.55641899624416, 10.089003799999995 47.55625839624413, 10.088988799999996 47.555966096244134, 10.0889737 47.555802096244086, 10.089003999999997 47.55553939624407, 10.089113399999993 47.55545459624406, 10.089349399999998 47.55526529624408, 10.089461400000001 47.55514579624405, 10.089552999999995 47.55500279624405, 10.089610499999997 47.55482779624404, 10.089634100000003 47.554681896244006, 10.0896434 47.55451519624398, 10.089629500000004 47.554425696243946, 10.089544 47.55428329624397, 10.089417199999994 47.554147496243985, 10.089324599999998 47.55404449624397, 10.0892401 47.5539699962439, 10.0892608 47.55375249624394, 10.0893239 47.55346999624389, 10.089384700000004 47.55322239624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_69_LVCableDist_mvgd_33532_lvgd_1163940000_building_446701,BranchTee_mvgd_33532_lvgd_1163940000_69,BranchTee_mvgd_33532_lvgd_1163940000_building_446701,0.0189694775762029,0.016465506536144116,0.001615007464827138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086607799996232 47.550666996282516, 10.086374500000003 47.55060269624367)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_6_LVCableDist_mvgd_33532_lvgd_1163940000_building_446860,BranchTee_mvgd_33532_lvgd_1163940000_6,BranchTee_mvgd_33532_lvgd_1163940000_building_446860,0.025254366232567892,0.02192078988986893,0.002150085041679869,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089607429577192 47.55715090717404, 10.089367200000005 47.557309496244265)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_6_LVCableDist_mvgd_33532_lvgd_1163940000_building_446921,BranchTee_mvgd_33532_lvgd_1163940000_6,BranchTee_mvgd_33532_lvgd_1163940000_building_446921,0.026305240256392675,0.02283294854254884,0.0022395534725447785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089219829759749 47.55709485019887, 10.089367200000005 47.557309496244265)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_70_LVCableDist_mvgd_33532_lvgd_1163940000_87,BranchTee_mvgd_33532_lvgd_1163940000_70,BranchTee_mvgd_33532_lvgd_1163940000_87,0.15050490996415483,0.018813113745519354,0.012009758034603586,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.085672999999998 47.55232599624382, 10.0852209 47.55215349624378, 10.084592999999995 47.551924796243775, 10.084278999999999 47.55181359624374, 10.084078299999994 47.55174759624376, 10.083899000000002 47.55170649624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_70_LVCableDist_mvgd_33532_lvgd_1163940000_building_446734,BranchTee_mvgd_33532_lvgd_1163940000_70,BranchTee_mvgd_33532_lvgd_1163940000_building_446734,0.013178942968104538,0.01143932249631474,0.001122017788129322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085733700023638 47.55221474629332, 10.085672999999998 47.55232599624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_71_LVCableDist_mvgd_33532_lvgd_1163940000_73,BranchTee_mvgd_33532_lvgd_1163940000_71,BranchTee_mvgd_33532_lvgd_1163940000_73,0.01445811157046788,0.001807263946308485,0.0011537060262019126,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0912886 47.55243759624381, 10.091446400000002 47.55236349624377)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_71_LVCableDist_mvgd_33532_lvgd_1163940000_building_446825,BranchTee_mvgd_33532_lvgd_1163940000_71,BranchTee_mvgd_33532_lvgd_1163940000_building_446825,0.020002891095723653,0.017362509471088132,0.0017029893579275056,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091330576505165 47.55220149040226, 10.091446400000002 47.55236349624377)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_72_LVCableDist_mvgd_33532_lvgd_1163940000_building_446716,BranchTee_mvgd_33532_lvgd_1163940000_72,BranchTee_mvgd_33532_lvgd_1163940000_building_446716,0.03309729094208981,0.028728448537733955,0.00281780938469736,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085619142500834 47.55144094673817, 10.085997699999998 47.55159219624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_72_LVCableDist_mvgd_33532_lvgd_1163940000_building_446725,BranchTee_mvgd_33532_lvgd_1163940000_72,BranchTee_mvgd_33532_lvgd_1163940000_building_446725,0.042330725619134105,0.0367430698374084,0.003603917798569938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086526563878545 47.55146327750425, 10.085997699999998 47.55159219624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_72_LVCableDist_mvgd_33532_lvgd_1163940000_building_446739,BranchTee_mvgd_33532_lvgd_1163940000_72,BranchTee_mvgd_33532_lvgd_1163940000_building_446739,0.013516144555030297,0.011732013473766298,0.0011507261738952976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086150025900997 47.551656500548354, 10.085997699999998 47.55159219624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_72_LVCableDist_mvgd_33532_lvgd_1163940000_building_446741,BranchTee_mvgd_33532_lvgd_1163940000_72,BranchTee_mvgd_33532_lvgd_1163940000_building_446741,0.03173476628908579,0.027545777138926465,0.0027018079040676034,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086330751054925 47.551767132556925, 10.085997699999998 47.55159219624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_73_LVCableDist_mvgd_33532_lvgd_1163940000_75,BranchTee_mvgd_33532_lvgd_1163940000_73,BranchTee_mvgd_33532_lvgd_1163940000_75,0.026554324245332793,0.003319290530666599,0.0021189408972425426,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091017500000003 47.55259039624383, 10.0912886 47.55243759624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_73_LVCableDist_mvgd_33532_lvgd_1163940000_building_446795,BranchTee_mvgd_33532_lvgd_1163940000_73,BranchTee_mvgd_33532_lvgd_1163940000_building_446795,0.05052539297746262,0.043856041104437554,0.004301588512078589,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09085453196767 47.552090897131414, 10.0912886 47.55243759624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_73_LVCableDist_mvgd_33532_lvgd_1163940000_building_446836,BranchTee_mvgd_33532_lvgd_1163940000_73,BranchTee_mvgd_33532_lvgd_1163940000_building_446836,0.012417049198963628,0.010777998704700429,0.0010571523157079062,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09128468982551 47.552325870478846, 10.0912886 47.55243759624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_74_LVCableDist_mvgd_33532_lvgd_1163940000_85,BranchTee_mvgd_33532_lvgd_1163940000_74,BranchTee_mvgd_33532_lvgd_1163940000_85,0.023432527846314093,0.0029290659807892617,0.001869832616360273,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.087085200000008 47.552792096243856, 10.087085200000006 47.55258119624384)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_74_LVCableDist_mvgd_33532_lvgd_1163940000_building_446723,BranchTee_mvgd_33532_lvgd_1163940000_74,BranchTee_mvgd_33532_lvgd_1163940000_building_446723,0.047648891475559244,0.041359237800785424,0.004056691340846616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086788201069938 47.5522025460993, 10.087085200000006 47.55258119624384)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_74_LVCableDist_mvgd_33532_lvgd_1163940000_building_446746,BranchTee_mvgd_33532_lvgd_1163940000_74,BranchTee_mvgd_33532_lvgd_1163940000_building_446746,0.040034602987488316,0.03475003539313986,0.0034084324366051746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086958109268068 47.55223132670415, 10.087085200000006 47.55258119624384)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_74_LVCableDist_mvgd_33532_lvgd_1163940000_building_446754,BranchTee_mvgd_33532_lvgd_1163940000_74,BranchTee_mvgd_33532_lvgd_1163940000_building_446754,0.0241583717971557,0.02096946671993115,0.002056775187073214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087243643396222 47.55239214056054, 10.087085200000006 47.55258119624384)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_75_LVCableDist_mvgd_33532_lvgd_1163940000_90,BranchTee_mvgd_33532_lvgd_1163940000_75,BranchTee_mvgd_33532_lvgd_1163940000_90,0.015080314182601784,0.001885039272825223,0.0012033555879471486,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.090861400000003 47.55267539624386, 10.091017500000003 47.55259039624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_75_LVCableDist_mvgd_33532_lvgd_1163940000_building_446776,BranchTee_mvgd_33532_lvgd_1163940000_75,BranchTee_mvgd_33532_lvgd_1163940000_building_446776,0.024766682966019336,0.021497480814504782,0.0021085650729414968,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090875835450543 47.55238923932633, 10.091017500000003 47.55259039624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_76_LVCableDist_mvgd_33532_lvgd_1163940000_88,BranchTee_mvgd_33532_lvgd_1163940000_76,BranchTee_mvgd_33532_lvgd_1163940000_88,0.013452901212258056,0.001681612651532257,0.0010734938046946382,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089621799999996 47.55225499624385, 10.089515899999999 47.55215749624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_76_LVCableDist_mvgd_33532_lvgd_1163940000_building_446783,BranchTee_mvgd_33532_lvgd_1163940000_76,BranchTee_mvgd_33532_lvgd_1163940000_building_446783,0.05722238717420108,0.049669032067206534,0.004871751584634939,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090182801616983 47.55190768540705, 10.089621799999996 47.55225499624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_76_LVCableDist_mvgd_33532_lvgd_1163940000_building_446786,BranchTee_mvgd_33532_lvgd_1163940000_76,BranchTee_mvgd_33532_lvgd_1163940000_building_446786,0.037131541074617386,0.032230177652767894,0.003161273987390761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090108349994617 47.55220114628263, 10.089621799999996 47.55225499624385)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_77_LVCableDist_mvgd_33532_lvgd_1163940000_building_446736,BranchTee_mvgd_33532_lvgd_1163940000_77,BranchTee_mvgd_33532_lvgd_1163940000_building_446736,0.01079783636135492,0.00937252196165607,0.0009192971318011785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08621455000791 47.55258919626649, 10.086318399999994 47.552522196243835)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_78_LVCableDist_mvgd_33532_lvgd_1163940000_80,BranchTee_mvgd_33532_lvgd_1163940000_78,BranchTee_mvgd_33532_lvgd_1163940000_80,0.01885995306591565,0.0023574941332394563,0.0015049573659727943,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089328600000004 47.552112496243794, 10.089090000000002 47.55216399624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_78_LVCableDist_mvgd_33532_lvgd_1163940000_88,BranchTee_mvgd_33532_lvgd_1163940000_78,BranchTee_mvgd_33532_lvgd_1163940000_88,0.014967276927703096,0.001870909615962887,0.001194335615904028,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089515899999999 47.55215749624381, 10.089328600000004 47.552112496243794)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_78_LVCableDist_mvgd_33532_lvgd_1163940000_building_446757,BranchTee_mvgd_33532_lvgd_1163940000_78,BranchTee_mvgd_33532_lvgd_1163940000_building_446757,0.03071954515930854,0.02666456519827981,0.002615374859380208,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089221712871936 47.5518456768282, 10.089328600000004 47.552112496243794)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_78_LVCableDist_mvgd_33532_lvgd_1163940000_building_446758,BranchTee_mvgd_33532_lvgd_1163940000_78,BranchTee_mvgd_33532_lvgd_1163940000_building_446758,0.038172399326675197,0.03313364261555407,0.003249889703883085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089541512426168 47.551800715879374, 10.089328600000004 47.552112496243794)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_78_LVCableDist_mvgd_33532_lvgd_1163940000_building_446759,BranchTee_mvgd_33532_lvgd_1163940000_78,BranchTee_mvgd_33532_lvgd_1163940000_building_446759,0.00851708852018676,0.007392832835522108,0.000725120735847302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089266700000058 47.55204834625228, 10.089328600000004 47.552112496243794)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_79_LVCableDist_mvgd_33532_lvgd_1163940000_building_446803,BranchTee_mvgd_33532_lvgd_1163940000_79,BranchTee_mvgd_33532_lvgd_1163940000_building_446803,0.017545853612456575,0.015229800935612306,0.0014938041623470846,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089676814978608 47.553036777095244, 10.089698699999994 47.55319399624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_7_LVCableDist_mvgd_33532_lvgd_1163940000_building_446999,BranchTee_mvgd_33532_lvgd_1163940000_7,BranchTee_mvgd_33532_lvgd_1163940000_building_446999,0.008057162016085882,0.006993616629962546,0.0006859638990598415,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095387449996064 47.55766109627623, 10.095398900000001 47.55773319624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_80_LVCableDist_mvgd_33532_lvgd_1163940000_building_446749,BranchTee_mvgd_33532_lvgd_1163940000_80,BranchTee_mvgd_33532_lvgd_1163940000_building_446749,0.039129881146569165,0.03396473683522203,0.0033314069876539836,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088737499999812 47.55190529628047, 10.089090000000002 47.55216399624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_80_LVCableDist_mvgd_33532_lvgd_1163940000_building_446752,BranchTee_mvgd_33532_lvgd_1163940000_80,BranchTee_mvgd_33532_lvgd_1163940000_building_446752,0.01955922003795208,0.016977402992942408,0.0016652164636898842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088837674539333 47.552122392069336, 10.089090000000002 47.55216399624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_80_LVCableDist_mvgd_33532_lvgd_1163940000_building_446755,BranchTee_mvgd_33532_lvgd_1163940000_80,BranchTee_mvgd_33532_lvgd_1163940000_building_446755,0.03277338044504339,0.028447294226297663,0.002790232564589141,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088927865804951 47.55189027150333, 10.089090000000002 47.55216399624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_80_LVCableDist_mvgd_33532_lvgd_1163940000_building_446762,BranchTee_mvgd_33532_lvgd_1163940000_80,BranchTee_mvgd_33532_lvgd_1163940000_building_446762,0.014356685734615529,0.01246160321764628,0.001222287463555046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089233448507658 47.552249082060044, 10.089090000000002 47.55216399624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_80_LVCableDist_mvgd_33532_lvgd_1163940000_building_446775,BranchTee_mvgd_33532_lvgd_1163940000_80,BranchTee_mvgd_33532_lvgd_1163940000_building_446775,0.01315048974414415,0.011414625097917122,0.001119595361422533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08907367479614 47.55228183661623, 10.089090000000002 47.55216399624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_81_LVCableDist_mvgd_33532_lvgd_1163940000_83,BranchTee_mvgd_33532_lvgd_1163940000_81,BranchTee_mvgd_33532_lvgd_1163940000_83,0.026143704042864684,0.0032679630053580855,0.0020861748613907128,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089823500000003 47.55257039624382, 10.090042 47.552576496243844, 10.090167799999996 47.552593996243836)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_81_LVCableDist_mvgd_33532_lvgd_1163940000_89,BranchTee_mvgd_33532_lvgd_1163940000_81,BranchTee_mvgd_33532_lvgd_1163940000_89,0.013380755027639767,0.0016725943784549708,0.0010677367950356717,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.090167799999996 47.552593996243836, 10.090341800000006 47.55261829624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_81_LVCableDist_mvgd_33532_lvgd_1163940000_building_446766,BranchTee_mvgd_33532_lvgd_1163940000_81,BranchTee_mvgd_33532_lvgd_1163940000_building_446766,0.03532527036171099,0.030662334673965144,0.003007493227054905,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09029999999953 47.5522889462662, 10.090167799999996 47.552593996243836)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_82_LVCableDist_mvgd_33532_lvgd_1163940000_85,BranchTee_mvgd_33532_lvgd_1163940000_82,BranchTee_mvgd_33532_lvgd_1163940000_85,0.024235160782745027,0.0030293950978431284,0.001933879878070437,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.087085200000008 47.552792096243856, 10.086961900000004 47.55279229624381, 10.086773399999997 47.552750196243835)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_82_LVCableDist_mvgd_33532_lvgd_1163940000_building_446743,BranchTee_mvgd_33532_lvgd_1163940000_82,BranchTee_mvgd_33532_lvgd_1163940000_building_446743,0.023249607881427183,0.020180659641078794,0.0019794056073485587,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086553129145587 47.55289679923568, 10.086773399999997 47.552750196243835)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_82_LVCableDist_mvgd_33532_lvgd_1163940000_building_446745,BranchTee_mvgd_33532_lvgd_1163940000_82,BranchTee_mvgd_33532_lvgd_1163940000_building_446745,0.04270769133968791,0.0370702760828491,0.003636011589779142,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086466450001282 47.553073396260686, 10.086773399999997 47.552750196243835)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_83_LVCableDist_mvgd_33532_lvgd_1163940000_building_446798,BranchTee_mvgd_33532_lvgd_1163940000_83,BranchTee_mvgd_33532_lvgd_1163940000_building_446798,0.013782159437222063,0.01196291439150875,0.00117337392572552,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089931322228276 47.55247017176123, 10.089823500000003 47.55257039624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_84_LVCableDist_mvgd_33532_lvgd_1163940000_87,BranchTee_mvgd_33532_lvgd_1163940000_84,BranchTee_mvgd_33532_lvgd_1163940000_87,0.24636181684325822,0.030795227105407278,0.019658799237563283,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.083899000000002 47.55170649624374, 10.083682399999997 47.551678496243746, 10.083434200000001 47.55166389624377, 10.082959299999999 47.55162949624375, 10.082530000000002 47.55157759624373, 10.081831499999995 47.55144009624374, 10.080979300000001 47.55129579624369, 10.0807098 47.551239996243716)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_84_LVCableDist_mvgd_33532_lvgd_1163940000_building_446609,BranchTee_mvgd_33532_lvgd_1163940000_84,BranchTee_mvgd_33532_lvgd_1163940000_building_446609,0.028188593404683084,0.024467699075264915,0.0023998968125854346,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080739490781117 47.55098708900986, 10.0807098 47.551239996243716)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_85_LVCableDist_mvgd_33532_lvgd_1163940000_86,BranchTee_mvgd_33532_lvgd_1163940000_85,BranchTee_mvgd_33532_lvgd_1163940000_86,0.004458860028899393,0.0005573575036124241,0.0003558012165184579,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.087144400000005 47.552791996243876, 10.087085200000008 47.552792096243856)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_86_LVCableDist_mvgd_33532_lvgd_1163940000_building_446777,BranchTee_mvgd_33532_lvgd_1163940000_86,BranchTee_mvgd_33532_lvgd_1163940000_building_446777,0.01787184894495804,0.01551276488422358,0.0015215584794269152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08713250000073 47.55295264627033, 10.087144400000005 47.552791996243876)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_87_LVCableDist_mvgd_33532_lvgd_1163940000_building_34328679,BranchTee_mvgd_33532_lvgd_1163940000_87,BranchTee_mvgd_33532_lvgd_1163940000_building_34328679,0.07902579245240192,0.06859438784868487,0.006728031608240853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084110712864849 47.55100986524256, 10.083899000000002 47.55170649624374)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_88_LVCableDist_mvgd_33532_lvgd_1163940000_building_446785,BranchTee_mvgd_33532_lvgd_1163940000_88,BranchTee_mvgd_33532_lvgd_1163940000_building_446785,0.020493165434154584,0.017788067596846178,0.001744729923169663,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089766150003362 47.55208509629259, 10.089515899999999 47.55215749624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_89_LVCableDist_mvgd_33532_lvgd_1163940000_90,BranchTee_mvgd_33532_lvgd_1163940000_89,BranchTee_mvgd_33532_lvgd_1163940000_90,0.03964664514074711,0.004955830642593389,0.0031636616714867762,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.090341800000006 47.55261829624383, 10.090861400000003 47.55267539624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_89_LVCableDist_mvgd_33532_lvgd_1163940000_building_446765,BranchTee_mvgd_33532_lvgd_1163940000_89,BranchTee_mvgd_33532_lvgd_1163940000_building_446765,0.03120818816891548,0.027088707330618637,0.0026569765379177764,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090220076261193 47.55288678885026, 10.090341800000006 47.55261829624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_89_LVCableDist_mvgd_33532_lvgd_1163940000_building_446771,BranchTee_mvgd_33532_lvgd_1163940000_89,BranchTee_mvgd_33532_lvgd_1163940000_building_446771,0.013895204081989194,0.012061037143166621,0.0011829982258373312,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090397732002547 47.552499119892765, 10.090341800000006 47.55261829624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_89_LVCableDist_mvgd_33532_lvgd_1163940000_building_446772,BranchTee_mvgd_33532_lvgd_1163940000_89,BranchTee_mvgd_33532_lvgd_1163940000_building_446772,0.03739657607467835,0.0324602280328208,0.003183838314838338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090649824481417 47.55235430759575, 10.090341800000006 47.55261829624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_89_LVCableDist_mvgd_33532_lvgd_1163940000_building_446778,BranchTee_mvgd_33532_lvgd_1163940000_89,BranchTee_mvgd_33532_lvgd_1163940000_building_446778,0.01794217788136986,0.015573810401029037,0.001527546085402998,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090494123452732 47.552742450219164, 10.090341800000006 47.55261829624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_8_LVCableDist_mvgd_33532_lvgd_1163940000_9,BranchTee_mvgd_33532_lvgd_1163940000_8,BranchTee_mvgd_33532_lvgd_1163940000_9,0.016221129481507293,0.005190761434082334,0.0013300607296340386,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.094902800000002 47.5580439962443, 10.095077500000007 47.557958596244326)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_8_LVCableDist_mvgd_33532_lvgd_1163940000_building_447004,BranchTee_mvgd_33532_lvgd_1163940000_8,BranchTee_mvgd_33532_lvgd_1163940000_building_447004,0.04244629633855101,0.03684338522186228,0.003613757161505683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095072250005824 47.5584083462908, 10.094902800000002 47.5580439962443)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_90_LVCableDist_mvgd_33532_lvgd_1163940000_91,BranchTee_mvgd_33532_lvgd_1163940000_90,BranchTee_mvgd_33532_lvgd_1163940000_91,0.05492179376357644,0.006865224220447055,0.004382564356764487,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.090861400000003 47.55267539624386, 10.091306500000002 47.55270859624382, 10.091433000000004 47.552705296243836, 10.091587599999993 47.55269979624384)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_90_LVCableDist_mvgd_33532_lvgd_1163940000_building_446843,BranchTee_mvgd_33532_lvgd_1163940000_90,BranchTee_mvgd_33532_lvgd_1163940000_building_446843,0.02137675255279802,0.018555021215828683,0.0018199560218696302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090991899600088 47.552846246301726, 10.090861400000003 47.55267539624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_91_LVCableDist_mvgd_33532_lvgd_1163940000_building_446842,BranchTee_mvgd_33532_lvgd_1163940000_91,BranchTee_mvgd_33532_lvgd_1163940000_building_446842,0.012643350223619412,0.01097442799410165,0.0010764189424586402,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091596630886118 47.55258616675208, 10.091587599999993 47.55269979624384)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_92_LVCableDist_mvgd_33532_lvgd_1163940000_building_446802,BranchTee_mvgd_33532_lvgd_1163940000_92,BranchTee_mvgd_33532_lvgd_1163940000_building_446802,0.014512161171272778,0.01259655589666477,0.0012355242008236418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088943904354549 47.55428186548566, 10.088879200000001 47.55440489624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_93_LVCableDist_mvgd_33532_lvgd_1163940000_94,BranchTee_mvgd_33532_lvgd_1163940000_93,BranchTee_mvgd_33532_lvgd_1163940000_94,0.04536792698263521,0.014517736634443269,0.0037199689536600933,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0867576 47.55487889624399, 10.08629 47.55462149624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_93_LVCableDist_mvgd_33532_lvgd_1163940000_building_446822,BranchTee_mvgd_33532_lvgd_1163940000_93,BranchTee_mvgd_33532_lvgd_1163940000_building_446822,0.013109738101251552,0.011379252671886346,0.0011161258822441462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08674031703643 47.55476148812982, 10.0867576 47.55487889624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_94_LVCableDist_mvgd_33532_lvgd_1163940000_95,BranchTee_mvgd_33532_lvgd_1163940000_94,BranchTee_mvgd_33532_lvgd_1163940000_95,0.014456362939575947,0.004626036140664303,0.0011853576941844482,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.08629 47.55462149624401, 10.086224500000004 47.55449919624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_94_LVCableDist_mvgd_33532_lvgd_1163940000_building_446817,BranchTee_mvgd_33532_lvgd_1163940000_94,BranchTee_mvgd_33532_lvgd_1163940000_building_446817,0.020926846676750665,0.018164502915419576,0.0017816523129052047,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08651784999506 47.554513696285284, 10.08629 47.55462149624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_94_LVCableDist_mvgd_33532_lvgd_1163940000_building_446821,BranchTee_mvgd_33532_lvgd_1163940000_94,BranchTee_mvgd_33532_lvgd_1163940000_building_446821,0.018715097742609287,0.01624470484058486,0.0015933502880016387,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08636375002566 47.554782346328835, 10.08629 47.55462149624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_95_LVCableDist_mvgd_33532_lvgd_1163940000_96,BranchTee_mvgd_33532_lvgd_1163940000_95,BranchTee_mvgd_33532_lvgd_1163940000_96,0.029046970148251233,0.009295030447440395,0.0023817228234991696,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.086224500000004 47.55449919624398, 10.086230499999997 47.55423779624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_95_LVCableDist_mvgd_33532_lvgd_1163940000_building_446815,BranchTee_mvgd_33532_lvgd_1163940000_95,BranchTee_mvgd_33532_lvgd_1163940000_building_446815,0.023559367918611514,0.020449531353354793,0.0020057776974785157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085948475584805 47.55439944139583, 10.086224500000004 47.55449919624398)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_96_LVCableDist_mvgd_33532_lvgd_1163940000_building_446764,BranchTee_mvgd_33532_lvgd_1163940000_96,BranchTee_mvgd_33532_lvgd_1163940000_building_446764,0.013899224302827388,0.012064526694854173,0.0011833404960257354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086390949994884 47.554299596279805, 10.086230499999997 47.55423779624396)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_97_LVCableDist_mvgd_33532_lvgd_1163940000_building_446788,BranchTee_mvgd_33532_lvgd_1163940000_97,BranchTee_mvgd_33532_lvgd_1163940000_building_446788,0.019958615202294007,0.017324077995591197,0.0016992198340640508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089552561756355 47.55359780045185, 10.089772600000003 47.55349769624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_97_LVCableDist_mvgd_33532_lvgd_1163940000_building_446804,BranchTee_mvgd_33532_lvgd_1163940000_97,BranchTee_mvgd_33532_lvgd_1163940000_building_446804,0.019348182876045204,0.01679422273640724,0.0016472493588781468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089570620827823 47.553390099225346, 10.089772600000003 47.55349769624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_98_LVCableDist_mvgd_33532_lvgd_1163940000_99,BranchTee_mvgd_33532_lvgd_1163940000_98,BranchTee_mvgd_33532_lvgd_1163940000_99,0.03174541456655249,0.010158532661296798,0.0026029833069922815,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0892608 47.55375249624394, 10.0893239 47.55346999624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_98_LVCableDist_mvgd_33532_lvgd_1163940000_building_446787,BranchTee_mvgd_33532_lvgd_1163940000_98,BranchTee_mvgd_33532_lvgd_1163940000_building_446787,0.02325025006416336,0.020181217055693795,0.0019794602809635035,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089058187953965 47.55357652058412, 10.0893239 47.55346999624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940000_99_LVCableDist_mvgd_33532_lvgd_1163940000_building_446799,BranchTee_mvgd_33532_lvgd_1163940000_99,BranchTee_mvgd_33532_lvgd_1163940000_building_446799,0.01755099487816112,0.015234263554243852,0.0014942418751126652,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089031500001672 47.55378064629499, 10.0892608 47.55375249624394)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_10_LVCableDist_mvgd_33532_lvgd_1163940001_23,BranchTee_mvgd_33532_lvgd_1163940001_10,BranchTee_mvgd_33532_lvgd_1163940001_23,0.1367385953324021,0.04375635050636867,0.01121195882717586,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.07525913044398 47.555503199151275, 10.075821700000006 47.555635896244105, 10.07644810000001 47.555769696244106, 10.076952198340157 47.55593984741499)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_10_LVCableDist_mvgd_33532_lvgd_1163940001_9,BranchTee_mvgd_33532_lvgd_1163940001_9,BranchTee_mvgd_33532_lvgd_1163940001_10,0.04486189788981162,0.014355807324739718,0.0036784768106385914,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0746965637773 47.55537049915125, 10.07525913044398 47.555503199151275)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_10_LVCableDist_mvgd_33532_lvgd_1163940001_building_446621,BranchTee_mvgd_33532_lvgd_1163940001_10,BranchTee_mvgd_33532_lvgd_1163940001_building_446621,0.04108092744586203,0.03565824502300824,0.0034975135303841956,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074976630185178 47.555819493595855, 10.07525913044398 47.555503199151275)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_11_LVCableDist_mvgd_33532_lvgd_1163940001_16,BranchTee_mvgd_33532_lvgd_1163940001_11,BranchTee_mvgd_33532_lvgd_1163940001_16,0.05293730531934199,0.016939937702189437,0.0043406244317434105,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.082249399999995 47.55686149624417, 10.082952299999997 47.55686279624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_11_LVCableDist_mvgd_33532_lvgd_1163940001_22,BranchTee_mvgd_33532_lvgd_1163940001_11,BranchTee_mvgd_33532_lvgd_1163940001_22,0.02764005638835809,0.008844818044274588,0.002266362130265756,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.082249399999995 47.55686149624417, 10.0822225 47.55710959624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_11_LVCableDist_mvgd_33532_lvgd_1163940001_6,BranchTee_mvgd_33532_lvgd_1163940001_6,BranchTee_mvgd_33532_lvgd_1163940001_11,0.008572898923088946,0.002743327655388463,0.0007029397188230206,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.082249399999995 47.55686149624417, 10.082135700000006 47.55685779624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_11_LVCableDist_mvgd_33532_lvgd_1163940001_building_446676,BranchTee_mvgd_33532_lvgd_1163940001_11,BranchTee_mvgd_33532_lvgd_1163940001_building_446676,0.019472862764826737,0.016902444879869607,0.0016578642506318657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082431798258193 47.556737271650945, 10.082249399999995 47.55686149624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_12_LVCableDist_mvgd_33532_lvgd_1163940001_19,BranchTee_mvgd_33532_lvgd_1163940001_12,BranchTee_mvgd_33532_lvgd_1163940001_19,0.020127171474086675,0.006440694871707737,0.001650338862457905,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.081996099999998 47.55738479624422, 10.082134900000005 47.55753959624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_12_LVCableDist_mvgd_33532_lvgd_1163940001_5,BranchTee_mvgd_33532_lvgd_1163940001_5,BranchTee_mvgd_33532_lvgd_1163940001_12,0.02949841973401788,0.009439494314885721,0.0024187396888242577,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.082134900000005 47.55753959624426, 10.082227899999996 47.55779749624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_12_LVCableDist_mvgd_33532_lvgd_1163940001_building_446678,BranchTee_mvgd_33532_lvgd_1163940001_12,BranchTee_mvgd_33532_lvgd_1163940001_building_446678,0.012238309170969502,0.010622852360401527,0.0010419348971831043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082239264398963 47.5574551641709, 10.082134900000005 47.55753959624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_13_LVCableDist_mvgd_33532_lvgd_1163940001_14,BranchTee_mvgd_33532_lvgd_1163940001_13,BranchTee_mvgd_33532_lvgd_1163940001_14,0.2225013601029243,0.07120043523293577,0.018244125459971495,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.081878100000003 47.557377696244224, 10.081749100000005 47.557344896244224, 10.081501300000003 47.55729819624419, 10.080820600000001 47.557189696244194, 10.080283300000005 47.557132596244216, 10.0797969 47.557089896244214, 10.078972300000002 47.55705959624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_13_LVCableDist_mvgd_33532_lvgd_1163940001_18,BranchTee_mvgd_33532_lvgd_1163940001_13,BranchTee_mvgd_33532_lvgd_1163940001_18,0.22069231200260078,0.07062153984083225,0.01809579153297816,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.081878100000003 47.557377696244224, 10.081770599999997 47.55738569624421, 10.081417399999994 47.55735999624426, 10.08080539921759 47.557326999674615, 10.080193399217574 47.557293999674606, 10.079581399999997 47.557260996244224, 10.079216499999996 47.55726099624424, 10.079113399999999 47.55726369624424, 10.079038099999998 47.55729579624422, 10.079026199999996 47.55734129624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_13_LVCableDist_mvgd_33532_lvgd_1163940001_19,BranchTee_mvgd_33532_lvgd_1163940001_13,BranchTee_mvgd_33532_lvgd_1163940001_19,0.008921746724570754,0.002854958951862641,0.0007315436925413173,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.081996099999998 47.55738479624422, 10.081878100000003 47.557377696244224)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_14_LVCableDist_mvgd_33532_lvgd_1163940001_building_446647,BranchTee_mvgd_33532_lvgd_1163940001_14,BranchTee_mvgd_33532_lvgd_1163940001_building_446647,0.0803325627374582,0.06972866445611371,0.006839286320275081,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07790617245357 47.557082499346734, 10.078972300000002 47.55705959624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_14_LVCableDist_mvgd_33532_lvgd_1163940001_building_446648,BranchTee_mvgd_33532_lvgd_1163940001_14,BranchTee_mvgd_33532_lvgd_1163940001_building_446648,0.05934800306198498,0.05151406665780296,0.005052720486510904,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07820892534397 47.55719217517891, 10.078972300000002 47.55705959624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_14_LVCableDist_mvgd_33532_lvgd_1163940001_building_446659,BranchTee_mvgd_33532_lvgd_1163940001_14,BranchTee_mvgd_33532_lvgd_1163940001_building_446659,0.02827480776992397,0.024542533144294006,0.002407236858871898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078670173559287 47.55690853486878, 10.078972300000002 47.55705959624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_15_LVCableDist_mvgd_33532_lvgd_1163940001_8,BranchTee_mvgd_33532_lvgd_1163940001_8,BranchTee_mvgd_33532_lvgd_1163940001_15,0.1398696893430445,0.044758300589774244,0.011468694659849876,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.074005799999997 47.55498379624402, 10.074157399999994 47.554704596244015, 10.074223099999998 47.55450289624395, 10.074297299999998 47.554396596244004, 10.073857999999996 47.554298096243976, 10.073400800000002 47.55420519624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_15_LVCableDist_mvgd_33532_lvgd_1163940001_building_34328708,BranchTee_mvgd_33532_lvgd_1163940001_15,BranchTee_mvgd_33532_lvgd_1163940001_building_34328708,0.02919831346363388,0.02534413608643421,0.0024858615117206886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07338565660911 47.5544677896241, 10.073400800000002 47.55420519624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_16_LVCableDist_mvgd_33532_lvgd_1163940001_building_446682,BranchTee_mvgd_33532_lvgd_1163940001_16,BranchTee_mvgd_33532_lvgd_1163940001_building_446682,0.018436296793760784,0.016002705616984362,0.0015696139667570265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082759274231307 47.5569648521462, 10.082952299999997 47.55686279624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_17_LVCableDist_mvgd_33532_lvgd_1163940001_building_446689,BranchTee_mvgd_33532_lvgd_1163940001_17,BranchTee_mvgd_33532_lvgd_1163940001_building_446689,0.017986474002232827,0.015612259433938094,0.0015313173313726983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0840601793442 47.55690532053557, 10.084084000000002 47.55706639624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_17_LVCableDist_mvgd_33532_lvgd_1163940001_building_446690,BranchTee_mvgd_33532_lvgd_1163940001_17,BranchTee_mvgd_33532_lvgd_1163940001_building_446690,0.020288294603869984,0.017610239716159146,0.00172728780232549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084277915858713 47.55693964065865, 10.084084000000002 47.55706639624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_17_LVCableDist_mvgd_33532_lvgd_1163940001_building_446707,BranchTee_mvgd_33532_lvgd_1163940001_17,BranchTee_mvgd_33532_lvgd_1163940001_building_446707,0.016093400085209302,0.013969071273961674,0.0013701463926802198,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084028079030507 47.557206195100306, 10.084084000000002 47.55706639624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_18_LVCableDist_mvgd_33532_lvgd_1163940001_20,BranchTee_mvgd_33532_lvgd_1163940001_18,BranchTee_mvgd_33532_lvgd_1163940001_20,0.037174864546634226,0.011895956654922952,0.0030481741434412357,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.079026199999996 47.55734129624424, 10.0790539 47.55737079624421, 10.079184800000005 47.557426996244274, 10.079442599999995 47.55751259624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_18_LVCableDist_mvgd_33532_lvgd_1163940001_building_446649,BranchTee_mvgd_33532_lvgd_1163940001_18,BranchTee_mvgd_33532_lvgd_1163940001_building_446649,0.03796765180600889,0.03295592176761571,0.0032324580812697263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078528350018656 47.55728749631246, 10.079026199999996 47.55734129624424)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_19_LVCableDist_mvgd_33532_lvgd_1163940001_22,BranchTee_mvgd_33532_lvgd_1163940001_19,BranchTee_mvgd_33532_lvgd_1163940001_22,0.03559212005910969,0.0113894784189151,0.0029183961097783463,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0822225 47.55710959624421, 10.082202399999998 47.55717809624419, 10.082160100000001 47.55723149624423, 10.0821407 47.55725839624427, 10.081996099999998 47.55738479624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_1_LVCableDist_mvgd_33532_lvgd_1163940001_16,BranchTee_mvgd_33532_lvgd_1163940001_1,BranchTee_mvgd_33532_lvgd_1163940001_16,0.04334788478233396,0.013871323130346867,0.00355433444553985,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.082952299999997 47.55686279624422, 10.083145299999998 47.5568787962442, 10.083510899999999 47.55695179624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_1_LVCableDist_mvgd_33532_lvgd_1163940001_17,BranchTee_mvgd_33532_lvgd_1163940001_1,BranchTee_mvgd_33532_lvgd_1163940001_17,0.045000807291199374,0.014400258333183799,0.0036898667659418555,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.083510899999999 47.55695179624421, 10.084084000000002 47.55706639624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_1_LVCableDist_mvgd_33532_lvgd_1163940001_building_446684,BranchTee_mvgd_33532_lvgd_1163940001_1,BranchTee_mvgd_33532_lvgd_1163940001_building_446684,0.017208453462302643,0.014936937605278694,0.0014650788714716005,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.083390732275316 47.55682006645944, 10.083510899999999 47.55695179624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_20_LVCableDist_mvgd_33532_lvgd_1163940001_building_446656,BranchTee_mvgd_33532_lvgd_1163940001_20,BranchTee_mvgd_33532_lvgd_1163940001_building_446656,0.014455148842803474,0.012547069195553415,0.0012306703330407665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07947672391829 47.557384567622485, 10.079442599999995 47.55751259624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_21_LVCableDist_mvgd_33532_lvgd_1163940001_24,BranchTee_mvgd_33532_lvgd_1163940001_21,BranchTee_mvgd_33532_lvgd_1163940001_24,0.06547206570121088,0.02095106102438748,0.00536841923224131,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.077910900000001 47.55624539624413, 10.078760599999995 47.55636989624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_21_LVCableDist_mvgd_33532_lvgd_1163940001_building_446644,BranchTee_mvgd_33532_lvgd_1163940001_21,BranchTee_mvgd_33532_lvgd_1163940001_building_446644,0.03072251044883359,0.026667139069587557,0.0026156273157116536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078439400007168 47.55619944627449, 10.078760599999995 47.55636989624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_21_LVCableDist_mvgd_33532_lvgd_1163940001_building_446651,BranchTee_mvgd_33532_lvgd_1163940001_21,BranchTee_mvgd_33532_lvgd_1163940001_building_446651,0.01303867938128064,0.011317573702951595,0.0011100761445677616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078795121801338 47.55625490027986, 10.078760599999995 47.55636989624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_21_LVCableDist_mvgd_33532_lvgd_1163940001_building_446653,BranchTee_mvgd_33532_lvgd_1163940001_21,BranchTee_mvgd_33532_lvgd_1163940001_building_446653,0.023852326934254865,0.020703819778933222,0.002030719396334048,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079048794350761 47.55628086755709, 10.078760599999995 47.55636989624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_22_LVCableDist_mvgd_33532_lvgd_1163940001_building_446668,BranchTee_mvgd_33532_lvgd_1163940001_22,BranchTee_mvgd_33532_lvgd_1163940001_building_446668,0.02346537473422191,0.02036794526930462,0.0019977753846144803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.081937800001816 47.5570237962851, 10.0822225 47.55710959624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_22_LVCableDist_mvgd_33532_lvgd_1163940001_building_446670,BranchTee_mvgd_33532_lvgd_1163940001_22,BranchTee_mvgd_33532_lvgd_1163940001_building_446670,0.012456631211650693,0.010812355891712802,0.0010605222158912768,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08210550104398 47.55703035220815, 10.0822225 47.55710959624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_23_LVCableDist_mvgd_33532_lvgd_1163940001_3,BranchTee_mvgd_33532_lvgd_1163940001_3,BranchTee_mvgd_33532_lvgd_1163940001_23,0.04241264602546857,0.013572046728149942,0.0034776490122131183,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.076952198340157 47.55593984741499, 10.077456299999998 47.556109996244125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_23_LVCableDist_mvgd_33532_lvgd_1163940001_building_446624,BranchTee_mvgd_33532_lvgd_1163940001_23,BranchTee_mvgd_33532_lvgd_1163940001_building_446624,0.03239352335531381,0.028117578272412385,0.002757892610417162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.076589200011417 47.55609624628604, 10.076952198340157 47.55593984741499)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_23_LVCableDist_mvgd_33532_lvgd_1163940001_building_446625,BranchTee_mvgd_33532_lvgd_1163940001_23,BranchTee_mvgd_33532_lvgd_1163940001_building_446625,0.021818410613878354,0.01893838041284641,0.0018575575352840336,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07699407039192 47.55613415668962, 10.076952198340157 47.55593984741499)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_24_LVCableDist_mvgd_33532_lvgd_1163940001_3,BranchTee_mvgd_33532_lvgd_1163940001_3,BranchTee_mvgd_33532_lvgd_1163940001_24,0.037397291299249125,0.01196713321575972,0.0030664121514178302,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.077456299999998 47.556109996244125, 10.077910900000001 47.55624539624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_24_LVCableDist_mvgd_33532_lvgd_1163940001_building_446641,BranchTee_mvgd_33532_lvgd_1163940001_24,BranchTee_mvgd_33532_lvgd_1163940001_building_446641,0.016341707284967963,0.014184601923352191,0.0013912865627017513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077845693942935 47.55610511580702, 10.077910900000001 47.55624539624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_24_LVCableDist_mvgd_33532_lvgd_1163940001_building_446645,BranchTee_mvgd_33532_lvgd_1163940001_24,BranchTee_mvgd_33532_lvgd_1163940001_building_446645,0.06521296292911632,0.05660485182247297,0.005552046518462949,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077826416056277 47.55682953336446, 10.077910900000001 47.55624539624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_25_LVCableDist_mvgd_33532_lvgd_1163940001_26,BranchTee_mvgd_33532_lvgd_1163940001_25,BranchTee_mvgd_33532_lvgd_1163940001_26,0.0695949575366561,0.06040842314181749,0.0059251170984818205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072091199999996 47.55496609624402, 10.073011599999996 47.55502169624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_25_LVCableDist_mvgd_33532_lvgd_1163940001_27,BranchTee_mvgd_33532_lvgd_1163940001_25,BranchTee_mvgd_33532_lvgd_1163940001_27,0.03935619233787023,0.03416117494927136,0.003350674479964033,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073011599999996 47.55502169624404, 10.073531200000005 47.55505929624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_25_LVCableDist_mvgd_33532_lvgd_1163940001_building_34328706,BranchTee_mvgd_33532_lvgd_1163940001_25,BranchTee_mvgd_33532_lvgd_1163940001_building_34328706,0.02652310754223551,0.023022057346660425,0.0022581020747171024,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073164085351653 47.55480651604067, 10.073011599999996 47.55502169624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_25_LVCableDist_mvgd_33532_lvgd_1163940001_building_446570,BranchTee_mvgd_33532_lvgd_1163940001_25,BranchTee_mvgd_33532_lvgd_1163940001_building_446570,0.037574334715334834,0.03261452253291063,0.0031989721808314583,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072838982531668 47.554704407289286, 10.073011599999996 47.55502169624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_25_LVCableDist_mvgd_33532_lvgd_1163940001_building_446579,BranchTee_mvgd_33532_lvgd_1163940001_25,BranchTee_mvgd_33532_lvgd_1163940001_building_446579,0.0295401306435883,0.025640833398634644,0.002514962855973051,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072756400010483 47.5552235963011, 10.073011599999996 47.55502169624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_25_LVCableDist_mvgd_33532_lvgd_1163940001_building_446585,BranchTee_mvgd_33532_lvgd_1163940001_25,BranchTee_mvgd_33532_lvgd_1163940001_building_446585,0.017379638484692983,0.015085526204713508,0.0014796530782686197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073159320616039 47.55490152242526, 10.073011599999996 47.55502169624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_26_LVCableDist_mvgd_33532_lvgd_1163940001_building_446560,BranchTee_mvgd_33532_lvgd_1163940001_26,BranchTee_mvgd_33532_lvgd_1163940001_building_446560,0.016936699138884088,0.014701054852551389,0.0014419424799101063,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071941752096235 47.554852196160574, 10.072091199999996 47.55496609624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_26_LVCableDist_mvgd_33532_lvgd_1163940001_building_446565,BranchTee_mvgd_33532_lvgd_1163940001_26,BranchTee_mvgd_33532_lvgd_1163940001_building_446565,0.03271997861672537,0.02840094143931762,0.00278568608453862,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072518775634562 47.55491394316578, 10.072091199999996 47.55496609624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_26_LVCableDist_mvgd_33532_lvgd_1163940001_building_446571,BranchTee_mvgd_33532_lvgd_1163940001_26,BranchTee_mvgd_33532_lvgd_1163940001_building_446571,0.02690212780203407,0.02335104693216557,0.0022903707835645877,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07181491382594 47.555119563994666, 10.072091199999996 47.55496609624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_26_LVCableDist_mvgd_33532_lvgd_1163940001_building_446575,BranchTee_mvgd_33532_lvgd_1163940001_26,BranchTee_mvgd_33532_lvgd_1163940001_building_446575,0.022464088747882065,0.019498829033161632,0.0019125287384762503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072093559270403 47.55516827339009, 10.072091199999996 47.55496609624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_26_LVCableDist_mvgd_33532_lvgd_1163940001_building_446578,BranchTee_mvgd_33532_lvgd_1163940001_26,BranchTee_mvgd_33532_lvgd_1163940001_building_446578,0.036921150678564295,0.032047558788993805,0.00314336194638759,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072426920141087 47.55520823824326, 10.072091199999996 47.55496609624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_27_LVCableDist_mvgd_33532_lvgd_1163940001_building_34328707,BranchTee_mvgd_33532_lvgd_1163940001_27,BranchTee_mvgd_33532_lvgd_1163940001_building_34328707,0.04055094002261555,0.035198215939630295,0.003452391905849773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07351868746349 47.554694424439866, 10.073531200000005 47.55505929624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_27_LVStation_mvgd_33532_lvgd_1163940001,BusBar_mvgd_33532_lvgd_1163940001_LV,BranchTee_mvgd_33532_lvgd_1163940001_27,0.017239924485387394,0.014964254453316258,0.0014677582250280411,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073531200000005 47.55505929624403, 10.073738500000001 47.55512509624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_28_LVCableDist_mvgd_33532_lvgd_1163940001_41,BranchTee_mvgd_33532_lvgd_1163940001_28,BranchTee_mvgd_33532_lvgd_1163940001_41,0.05706156316796466,0.018259700213748693,0.004678795297686603,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0727017 47.555703796244124, 10.073119699999996 47.55577039624413, 10.073434300000004 47.55583389624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_28_LVCableDist_mvgd_33532_lvgd_1163940001_48,BranchTee_mvgd_33532_lvgd_1163940001_28,BranchTee_mvgd_33532_lvgd_1163940001_48,0.09888168482380993,0.03164213914361918,0.008107859937505336,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.071452799999992 47.555633596244114, 10.071574799999995 47.55560709624408, 10.071679900000003 47.555565896244076, 10.071816699999996 47.55554289624409, 10.071977300000004 47.55554409624409, 10.072335800000001 47.55562739624407, 10.0727017 47.555703796244124)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_28_LVCableDist_mvgd_33532_lvgd_1163940001_49,BranchTee_mvgd_33532_lvgd_1163940001_28,BranchTee_mvgd_33532_lvgd_1163940001_49,0.007744996779450119,0.002478398969424038,0.0006350554120927644,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.072649599999998 47.55576389624412, 10.0727017 47.555703796244124)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_29_LVCableDist_mvgd_33532_lvgd_1163940001_47,BranchTee_mvgd_33532_lvgd_1163940001_29,BranchTee_mvgd_33532_lvgd_1163940001_47,0.020404488864971145,0.006529436436790766,0.0016730776595114954,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073476599999994 47.55544009624411, 10.073421899999998 47.55543669624406, 10.073337899999999 47.555434196244036, 10.073206899999995 47.55542369624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_29_LVCableDist_mvgd_33532_lvgd_1163940001_building_446567,BranchTee_mvgd_33532_lvgd_1163940001_29,BranchTee_mvgd_33532_lvgd_1163940001_building_446567,0.022425531662121283,0.019465361482721273,0.001909246097661526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073249100026237 47.55522389630129, 10.073206899999995 47.55542369624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_29_LVCableDist_mvgd_33532_lvgd_1163940001_building_446584,BranchTee_mvgd_33532_lvgd_1163940001_29,BranchTee_mvgd_33532_lvgd_1163940001_building_446584,0.013299293828750558,0.011543787043355484,0.001132264118718074,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073062062661583 47.5554921718727, 10.073206899999995 47.55542369624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_2_LVCableDist_mvgd_33532_lvgd_1163940001_21,BranchTee_mvgd_33532_lvgd_1163940001_2,BranchTee_mvgd_33532_lvgd_1163940001_21,0.0625539848448395,0.02001727515034864,0.005129149534198323,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.078760599999995 47.55636989624412, 10.079576100000004 47.55647669624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_2_LVCableDist_mvgd_33532_lvgd_1163940001_6,BranchTee_mvgd_33532_lvgd_1163940001_2,BranchTee_mvgd_33532_lvgd_1163940001_6,0.19921099466902847,0.06374751829408912,0.016334418711266573,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.079576100000004 47.55647669624417, 10.0800472 47.556578396244205, 10.0806963 47.556755796244246, 10.080900200000006 47.55679199624419, 10.0810997 47.556808396244165, 10.0815133 47.55683899624419, 10.082135700000006 47.55685779624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_2_LVCableDist_mvgd_33532_lvgd_1163940001_building_446654,BranchTee_mvgd_33532_lvgd_1163940001_2,BranchTee_mvgd_33532_lvgd_1163940001_building_446654,0.01971139238174268,0.017109488587352645,0.0016781719850095839,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079439918680006 47.55632519756574, 10.079576100000004 47.55647669624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_30_LVCableDist_mvgd_33532_lvgd_1163940001_36,BranchTee_mvgd_33532_lvgd_1163940001_30,BranchTee_mvgd_33532_lvgd_1163940001_36,0.04042357406347692,0.012935543700312616,0.003314553926382179,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.068851600000004 47.55574219624414, 10.069119899999995 47.555633596244114, 10.069173500000003 47.55560459624409, 10.069231200000004 47.55550659624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_30_LVCableDist_mvgd_33532_lvgd_1163940001_building_446547,BranchTee_mvgd_33532_lvgd_1163940001_30,BranchTee_mvgd_33532_lvgd_1163940001_building_446547,0.018032612507772102,0.015652307656746186,0.0015352454327430477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.068837735741512 47.555580169961694, 10.068851600000004 47.55574219624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_31_LVCableDist_mvgd_33532_lvgd_1163940001_36,BranchTee_mvgd_33532_lvgd_1163940001_31,BranchTee_mvgd_33532_lvgd_1163940001_36,0.028136989033910913,0.009003836490851493,0.002307108404924156,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.069231200000004 47.55550659624411, 10.069603900000004 47.55552409624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_31_LVCableDist_mvgd_33532_lvgd_1163940001_43,BranchTee_mvgd_33532_lvgd_1163940001_31,BranchTee_mvgd_33532_lvgd_1163940001_43,0.028000037726194294,0.008960012072382175,0.0022958790046241607,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.069603900000004 47.55552409624406, 10.069961799999996 47.55559229624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_31_LVCableDist_mvgd_33532_lvgd_1163940001_building_446568,BranchTee_mvgd_33532_lvgd_1163940001_31,BranchTee_mvgd_33532_lvgd_1163940001_building_446568,0.010548698315346322,0.009156270137720609,0.0008980862258887727,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0694887483368 47.55557814631675, 10.069603900000004 47.55552409624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_31_LVCableDist_mvgd_33532_lvgd_1163940001_building_446576,BranchTee_mvgd_33532_lvgd_1163940001_31,BranchTee_mvgd_33532_lvgd_1163940001_building_446576,0.018343000765494055,0.01592172466444884,0.001561671007786005,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06968276262692 47.55536789667981, 10.069603900000004 47.55552409624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_32_LVCableDist_mvgd_33532_lvgd_1163940001_42,BranchTee_mvgd_33532_lvgd_1163940001_32,BranchTee_mvgd_33532_lvgd_1163940001_42,0.03005210478751188,0.009616673532003803,0.002464139409421844,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.072059600000003 47.555908796244104, 10.072338500000003 47.555915996244124, 10.072456500000003 47.555901496244125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_32_LVCableDist_mvgd_33532_lvgd_1163940001_49,BranchTee_mvgd_33532_lvgd_1163940001_32,BranchTee_mvgd_33532_lvgd_1163940001_49,0.021100338970928674,0.006752108470697175,0.001730134284372355,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.072456500000003 47.555901496244125, 10.072649599999998 47.55576389624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_32_LVCableDist_mvgd_33532_lvgd_1163940001_building_446595,BranchTee_mvgd_33532_lvgd_1163940001_32,BranchTee_mvgd_33532_lvgd_1163940001_building_446595,0.014066675682213054,0.01220987449216093,0.0011975968310574767,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072463207372634 47.55577497353816, 10.072456500000003 47.555901496244125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_32_LVCableDist_mvgd_33532_lvgd_1163940001_building_446598,BranchTee_mvgd_33532_lvgd_1163940001_32,BranchTee_mvgd_33532_lvgd_1163940001_building_446598,0.013328573675088835,0.011569201949977109,0.0011347569217072628,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072489550008507 47.55601934626313, 10.072456500000003 47.555901496244125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_33_LVCableDist_mvgd_33532_lvgd_1163940001_34,BranchTee_mvgd_33532_lvgd_1163940001_33,BranchTee_mvgd_33532_lvgd_1163940001_34,0.03945958767248944,0.012627068055196622,0.003235511314459513,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.070178900000005 47.55560979624411, 10.070702300000002 47.55562579624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_33_LVCableDist_mvgd_33532_lvgd_1163940001_43,BranchTee_mvgd_33532_lvgd_1163940001_33,BranchTee_mvgd_33532_lvgd_1163940001_43,0.016465984517402752,0.005269115045568881,0.0013501377574432895,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.069961799999996 47.55559229624411, 10.070178900000005 47.55560979624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_33_LVCableDist_mvgd_33532_lvgd_1163940001_building_446599,BranchTee_mvgd_33532_lvgd_1163940001_33,BranchTee_mvgd_33532_lvgd_1163940001_building_446599,0.02799612083940133,0.024300632888600352,0.002383510244823842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070192700000565 47.555357996272505, 10.070178900000005 47.55560979624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_33_LVCableDist_mvgd_33532_lvgd_1163940001_building_446643,BranchTee_mvgd_33532_lvgd_1163940001_33,BranchTee_mvgd_33532_lvgd_1163940001_building_446643,0.025304533013884876,0.021964334656052072,0.0021543560990133046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070293249998683 47.55582394629178, 10.070178900000005 47.55560979624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_34_LVCableDist_mvgd_33532_lvgd_1163940001_37,BranchTee_mvgd_33532_lvgd_1163940001_34,BranchTee_mvgd_33532_lvgd_1163940001_37,0.04546169499301017,0.014547742397763255,0.003727657514955275,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.070702300000002 47.55562579624413, 10.071305099999998 47.55564719624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_34_LVCableDist_mvgd_33532_lvgd_1163940001_building_446608,BranchTee_mvgd_33532_lvgd_1163940001_34,BranchTee_mvgd_33532_lvgd_1163940001_building_446608,0.0236443953164172,0.020523335134650128,0.0020130166887274512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070488214447158 47.555470148935, 10.070702300000002 47.55562579624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_34_LVCableDist_mvgd_33532_lvgd_1163940001_building_446652,BranchTee_mvgd_33532_lvgd_1163940001_34,BranchTee_mvgd_33532_lvgd_1163940001_building_446652,0.02308178855183317,0.02003499246299119,0.0019651179460807213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070659971606265 47.55583154903441, 10.070702300000002 47.55562579624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_34_LVCableDist_mvgd_33532_lvgd_1163940001_building_446657,BranchTee_mvgd_33532_lvgd_1163940001_34,BranchTee_mvgd_33532_lvgd_1163940001_building_446657,0.01883197975467571,0.016346158427058517,0.0016033012906706892,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070832515244188 47.555770490235425, 10.070702300000002 47.55562579624413)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_35_LVCableDist_mvgd_33532_lvgd_1163940001_45,BranchTee_mvgd_33532_lvgd_1163940001_35,BranchTee_mvgd_33532_lvgd_1163940001_45,0.05445519659559024,0.017425662910588877,0.0044650847894943,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.066482400000002 47.555341196244015, 10.066969499999992 47.55530369624407, 10.067202299999998 47.55530259624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_35_LVCableDist_mvgd_33532_lvgd_1163940001_building_446549,BranchTee_mvgd_33532_lvgd_1163940001_35,BranchTee_mvgd_33532_lvgd_1163940001_building_446549,0.01405533667273254,0.012200032231931845,0.0011966314599827484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.066601082457804 47.55543881950901, 10.066482400000002 47.555341196244015)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_36_LVCableDist_mvgd_33532_lvgd_1163940001_44,BranchTee_mvgd_33532_lvgd_1163940001_36,BranchTee_mvgd_33532_lvgd_1163940001_44,0.07151420804881845,0.022884546575621903,0.005863848127533309,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.06829249880725 47.55541064881588, 10.069041699999996 47.55549289624405, 10.069231200000004 47.55550659624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_37_LVCableDist_mvgd_33532_lvgd_1163940001_48,BranchTee_mvgd_33532_lvgd_1163940001_37,BranchTee_mvgd_33532_lvgd_1163940001_48,0.011226027468467459,0.003592328789909587,0.0009204845015646929,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.071305099999998 47.55564719624407, 10.071452799999992 47.555633596244114)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_37_LVCableDist_mvgd_33532_lvgd_1163940001_building_446557,BranchTee_mvgd_33532_lvgd_1163940001_37,BranchTee_mvgd_33532_lvgd_1163940001_building_446557,0.019055773395464676,0.016540411307263338,0.0016223544458776854,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071158824481357 47.55578714043297, 10.071305099999998 47.55564719624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_37_LVCableDist_mvgd_33532_lvgd_1163940001_building_446615,BranchTee_mvgd_33532_lvgd_1163940001_37,BranchTee_mvgd_33532_lvgd_1163940001_building_446615,0.02192611890987925,0.019031871213775187,0.0018667275138122496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071099260242736 47.5555076457382, 10.071305099999998 47.55564719624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_38_LVCableDist_mvgd_33532_lvgd_1163940001_42,BranchTee_mvgd_33532_lvgd_1163940001_38,BranchTee_mvgd_33532_lvgd_1163940001_42,0.31846620995561337,0.10190918718579628,0.02611281785650295,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.071544599999998 47.55787059624429, 10.071718100000002 47.557772296244295, 10.071992899999993 47.55770139624427, 10.072182299999994 47.557671796244286, 10.072359999999996 47.557638896244256, 10.072374499999999 47.5576003962443, 10.072186799999999 47.55723529624421, 10.072005899999995 47.557059596244216, 10.07186639999999 47.556958296244225, 10.071458700000006 47.556842396244186, 10.071381800000003 47.55681329624422, 10.071355800000003 47.5567862962442, 10.071349199999998 47.55675549624419, 10.071405199999997 47.55650609624416, 10.071469700000003 47.55625709624413, 10.071557799999997 47.55614949624414, 10.071748399999997 47.55601739624414, 10.071877199999998 47.555944996244115, 10.072059600000003 47.555908796244104)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_38_LVCableDist_mvgd_33532_lvgd_1163940001_building_446601,BranchTee_mvgd_33532_lvgd_1163940001_38,BranchTee_mvgd_33532_lvgd_1163940001_building_446601,0.015639838532456003,0.01357537984617181,0.001331531449779837,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071359917461445 47.55793497235676, 10.071544599999998 47.55787059624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_39_LVCableDist_mvgd_33532_lvgd_1163940001_40,BranchTee_mvgd_33532_lvgd_1163940001_39,BranchTee_mvgd_33532_lvgd_1163940001_40,0.06094107332766954,0.019501143464854254,0.004996897937796981,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.074846500000003 47.558294896244306, 10.074792999999998 47.558270896244345, 10.074123099999994 47.55804989624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_39_LVCableDist_mvgd_33532_lvgd_1163940001_41,BranchTee_mvgd_33532_lvgd_1163940001_39,BranchTee_mvgd_33532_lvgd_1163940001_41,0.483052215914687,0.15457670909269985,0.03960814094254592,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.074123099999994 47.55804989624432, 10.074047799999999 47.55799529624429, 10.074001499999996 47.55793569624428, 10.074008800000005 47.55787889624432, 10.074039599999997 47.55782319624425, 10.074124800000002 47.55778829624429, 10.074731002194142 47.557601147935145, 10.075337199999998 47.55741399624423, 10.075846600000002 47.5573170962442, 10.076147699999995 47.55729619624422, 10.076227099999999 47.557284296244205, 10.076267699999997 47.55725719624426, 10.076270100000004 47.557215096244214, 10.076253699999999 47.557170796244236, 10.076209100000003 47.557134196244206, 10.076103000000002 47.557082096244166, 10.075630998414749 47.55690854727184, 10.075159000000003 47.55673499624415, 10.074451000000002 47.55640899624418, 10.073904199999996 47.556216096244135, 10.073662499999994 47.55608929624413, 10.0734911 47.55595029624413, 10.073434300000004 47.55583389624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_39_LVCableDist_mvgd_33532_lvgd_1163940001_building_446660,BranchTee_mvgd_33532_lvgd_1163940001_39,BranchTee_mvgd_33532_lvgd_1163940001_building_446660,0.02659733478681226,0.02308648659495304,0.0022644215715827086,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074472824437052 47.55801654200746, 10.074123099999994 47.55804989624432)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_3_LVCableDist_mvgd_33532_lvgd_1163940001_building_446627,BranchTee_mvgd_33532_lvgd_1163940001_3,BranchTee_mvgd_33532_lvgd_1163940001_building_446627,0.016271185901615814,0.014123389362602526,0.0013852825723395428,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077562459402824 47.55598244760424, 10.077456299999998 47.556109996244125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_3_LVCableDist_mvgd_33532_lvgd_1163940001_building_446642,BranchTee_mvgd_33532_lvgd_1163940001_3,BranchTee_mvgd_33532_lvgd_1163940001_building_446642,0.024418363960725113,0.021195139917909396,0.0020789101817389557,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077559534990685 47.556318328301856, 10.077456299999998 47.556109996244125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_40_LVCableDist_mvgd_33532_lvgd_1163940001_building_446666,BranchTee_mvgd_33532_lvgd_1163940001_40,BranchTee_mvgd_33532_lvgd_1163940001_building_446666,0.02325639636258765,0.02018655204272608,0.001979983559361467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075115053296377 47.558191557923294, 10.074846500000003 47.558294896244306)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_41_LVCableDist_mvgd_33532_lvgd_1163940001_47,BranchTee_mvgd_33532_lvgd_1163940001_41,BranchTee_mvgd_33532_lvgd_1163940001_47,0.04391169991568785,0.014051743973020113,0.003600564787792054,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073434300000004 47.55583389624414, 10.073435300000002 47.55572139624412, 10.073437700000001 47.555693096244084, 10.073476599999994 47.55544009624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_41_LVCableDist_mvgd_33532_lvgd_1163940001_building_446605,BranchTee_mvgd_33532_lvgd_1163940001_41,BranchTee_mvgd_33532_lvgd_1163940001_building_446605,0.018588062859359957,0.016134438561924442,0.0015825348987049675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073227314895396 47.555925023114824, 10.073434300000004 47.55583389624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_42_LVCableDist_mvgd_33532_lvgd_1163940001_building_446593,BranchTee_mvgd_33532_lvgd_1163940001_42,BranchTee_mvgd_33532_lvgd_1163940001_building_446593,0.016474603331785465,0.014299955691989783,0.0014026009548242593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072025171335529 47.55576236867613, 10.072059600000003 47.555908796244104)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_43_LVCableDist_mvgd_33532_lvgd_1163940001_building_446638,BranchTee_mvgd_33532_lvgd_1163940001_43,BranchTee_mvgd_33532_lvgd_1163940001_building_446638,0.025294340401020254,0.02195548746808558,0.0021534883288917327,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07002393978689 47.555816021012646, 10.069961799999996 47.55559229624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_44_LVCableDist_mvgd_33532_lvgd_1163940001_45,BranchTee_mvgd_33532_lvgd_1163940001_44,BranchTee_mvgd_33532_lvgd_1163940001_45,0.08300300779546294,0.02656096249454814,0.006805878791369759,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.067202299999998 47.55530259624405, 10.067543299999995 47.55532839624411, 10.06829249880725 47.55541064881588)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_44_LVCableDist_mvgd_33532_lvgd_1163940001_building_446537,BranchTee_mvgd_33532_lvgd_1163940001_44,BranchTee_mvgd_33532_lvgd_1163940001_building_446537,0.029770076010999808,0.025840425977547835,0.0025345397517193987,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06796143046414 47.55526426832248, 10.06829249880725 47.55541064881588)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_44_LVCableDist_mvgd_33532_lvgd_1163940001_building_446546,BranchTee_mvgd_33532_lvgd_1163940001_44,BranchTee_mvgd_33532_lvgd_1163940001_building_446546,0.0271337768083661,0.023552118269661776,0.0023100927222918484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.068566988816972 47.5555688203869, 10.06829249880725 47.55541064881588)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_45_LVCableDist_mvgd_33532_lvgd_1163940001_building_446550,BranchTee_mvgd_33532_lvgd_1163940001_45,BranchTee_mvgd_33532_lvgd_1163940001_building_446550,0.013739575120568302,0.011925951204653286,0.0011697484179062291,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.067276074383276 47.55541569237405, 10.067202299999998 47.55530259624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_46_LVCableDist_mvgd_33532_lvgd_1163940001_47,BranchTee_mvgd_33532_lvgd_1163940001_46,BranchTee_mvgd_33532_lvgd_1163940001_47,0.016605287379539296,0.005313691961452574,0.001361559974784238,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073476599999994 47.55544009624411, 10.073534000000004 47.55529579624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_46_LVCableDist_mvgd_33532_lvgd_1163940001_building_446574,BranchTee_mvgd_33532_lvgd_1163940001_46,BranchTee_mvgd_33532_lvgd_1163940001_building_446574,0.011703735332163422,0.01015884226831785,0.0009964227982491739,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07366118388892 47.55535631950126, 10.073534000000004 47.55529579624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_46_LVStation_mvgd_33532_lvgd_1163940001,BusBar_mvgd_33532_lvgd_1163940001_LV,BranchTee_mvgd_33532_lvgd_1163940001_46,0.02443177357639283,0.007818167544445706,0.0020032971579640652,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073738500000001 47.55512509624403, 10.073534000000004 47.55529579624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_47_LVCableDist_mvgd_33532_lvgd_1163940001_building_446580,BranchTee_mvgd_33532_lvgd_1163940001_47,BranchTee_mvgd_33532_lvgd_1163940001_building_446580,0.019610503161123675,0.01702191674385535,0.0016695825631994287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073678200003346 47.555551796283765, 10.073476599999994 47.55544009624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_48_LVCableDist_mvgd_33532_lvgd_1163940001_building_446558,BranchTee_mvgd_33532_lvgd_1163940001_48,BranchTee_mvgd_33532_lvgd_1163940001_building_446558,0.023282374263004,0.02020910086028747,0.001982195244049377,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071472999999408 47.55584269628261, 10.071452799999992 47.555633596244114)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_48_LVCableDist_mvgd_33532_lvgd_1163940001_building_446622,BranchTee_mvgd_33532_lvgd_1163940001_48,BranchTee_mvgd_33532_lvgd_1163940001_building_446622,0.016285781026442573,0.014136057930952153,0.0013865251598304533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071409455344149 47.55548999512413, 10.071452799999992 47.555633596244114)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_49_LVCableDist_mvgd_33532_lvgd_1163940001_building_446600,BranchTee_mvgd_33532_lvgd_1163940001_49,BranchTee_mvgd_33532_lvgd_1163940001_building_446600,0.013943180568138194,0.012102680733143953,0.0011870828076586046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072713712233904 47.55588162265798, 10.072649599999998 47.55576389624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_4_LVCableDist_mvgd_33532_lvgd_1163940001_7,BranchTee_mvgd_33532_lvgd_1163940001_4,BranchTee_mvgd_33532_lvgd_1163940001_7,0.025472687402167314,0.008151259968693541,0.002088647478616775,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073823700000004 47.55514659624404, 10.074133999999999 47.55523779624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_4_LVCableDist_mvgd_33532_lvgd_1163940001_9,BranchTee_mvgd_33532_lvgd_1163940001_4,BranchTee_mvgd_33532_lvgd_1163940001_9,0.0448618978899651,0.014355807324788833,0.0036784768106511764,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.074133999999999 47.55523779624404, 10.0746965637773 47.55537049915125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_4_LVCableDist_mvgd_33532_lvgd_1163940001_building_446583,BranchTee_mvgd_33532_lvgd_1163940001_4,BranchTee_mvgd_33532_lvgd_1163940001_building_446583,0.040748579345913624,0.035369766872253024,0.0034692183567199965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074056984273376 47.555600812480876, 10.074133999999999 47.55523779624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_5_LVCableDist_mvgd_33532_lvgd_1163940001_building_446683,BranchTee_mvgd_33532_lvgd_1163940001_5,BranchTee_mvgd_33532_lvgd_1163940001_building_446683,0.023523062587478633,0.02041801832593145,0.002002686764659882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082435609489178 47.55763937430145, 10.082227899999996 47.55779749624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_5_LVCableDist_mvgd_33532_lvgd_1163940001_building_446691,BranchTee_mvgd_33532_lvgd_1163940001_5,BranchTee_mvgd_33532_lvgd_1163940001_building_446691,0.021271048249229412,0.01846326988033113,0.0018109566575675886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082504029954366 47.55775724113754, 10.082227899999996 47.55779749624428)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_6_LVCableDist_mvgd_33532_lvgd_1163940001_building_446669,BranchTee_mvgd_33532_lvgd_1163940001_6,BranchTee_mvgd_33532_lvgd_1163940001_building_446669,0.00866575513568971,0.007521875457778668,0.0007377777894136612,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08212870000109 47.55693564625293, 10.082135700000006 47.55685779624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_7_LVCableDist_mvgd_33532_lvgd_1163940001_8,BranchTee_mvgd_33532_lvgd_1163940001_7,BranchTee_mvgd_33532_lvgd_1163940001_8,0.022699543580853382,0.007263853945873082,0.001861261975125054,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073823700000004 47.55514659624404, 10.074005799999997 47.55498379624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_7_LVStation_mvgd_33532_lvgd_1163940001,BusBar_mvgd_33532_lvgd_1163940001_LV,BranchTee_mvgd_33532_lvgd_1163940001_7,0.006847120080714504,0.0021910784258286414,0.0005614335019536978,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073823700000004 47.55514659624404, 10.073738500000001 47.55512509624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_8_LVCableDist_mvgd_33532_lvgd_1163940001_building_446566,BranchTee_mvgd_33532_lvgd_1163940001_8,BranchTee_mvgd_33532_lvgd_1163940001_building_446566,0.026112115771375448,0.02266531648955389,0.0022231114021877647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074338807570967 47.55491838440514, 10.074005799999997 47.55498379624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_8_LVCableDist_mvgd_33532_lvgd_1163940001_building_446596,BranchTee_mvgd_33532_lvgd_1163940001_8,BranchTee_mvgd_33532_lvgd_1163940001_building_446596,0.011932356002603416,0.010357285010259764,0.0010158869130562978,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073924138099521 47.554891768367305, 10.074005799999997 47.55498379624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_9_LVCableDist_mvgd_33532_lvgd_1163940001_building_446586,BranchTee_mvgd_33532_lvgd_1163940001_9,BranchTee_mvgd_33532_lvgd_1163940001_building_446586,0.03333647953389035,0.028936064235416826,0.0028381732223258654,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074391141980696 47.55558767144102, 10.0746965637773 47.55537049915125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_9_LVCableDist_mvgd_33532_lvgd_1163940001_building_446616,BranchTee_mvgd_33532_lvgd_1163940001_9,BranchTee_mvgd_33532_lvgd_1163940001_building_446616,0.0214501873956745,0.018618762659445464,0.0018262080559041732,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07449480606352 47.55523424071875, 10.0746965637773 47.55537049915125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940001_9_LVCableDist_mvgd_33532_lvgd_1163940001_building_446619,BranchTee_mvgd_33532_lvgd_1163940001_9,BranchTee_mvgd_33532_lvgd_1163940001_building_446619,0.031232159197168406,0.027109514183142176,0.0026590173632073787,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074811042429099 47.55564067233315, 10.0746965637773 47.55537049915125)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_10_LVCableDist_mvgd_33532_lvgd_1163940002_4,BranchTee_mvgd_33532_lvgd_1163940002_4,BranchTee_mvgd_33532_lvgd_1163940002_10,0.1338169627446242,0.11615312366233381,0.011392796289982104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036742699999998 47.560687696244564, 10.0367614 47.560508096244504, 10.0367997 47.56038829624451, 10.036856800000002 47.560275896244555, 10.037026599999999 47.560054096244464, 10.037287000000001 47.55991629624442, 10.037464199999992 47.55984629624444, 10.037695399999995 47.55978019624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_10_LVCableDist_mvgd_33532_lvgd_1163940002_5,BranchTee_mvgd_33532_lvgd_1163940002_5,BranchTee_mvgd_33532_lvgd_1163940002_10,0.1597097883543553,0.13862809629158038,0.013597237950391472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037695399999995 47.55978019624444, 10.037751800000002 47.55976559624441, 10.038279099999993 47.559720696244476, 10.038809500000005 47.55970259624445, 10.0391315 47.55967459624441, 10.039484899999996 47.559613596244475, 10.039770400000005 47.55953429624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_10_LVCableDist_mvgd_33532_lvgd_1163940002_6,BranchTee_mvgd_33532_lvgd_1163940002_6,BranchTee_mvgd_33532_lvgd_1163940002_10,0.026654825805487073,0.02313638879916278,0.002269316193690637,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037695399999995 47.55978019624444, 10.037730800000002 47.55983479624446, 10.0377559 47.55988129624452, 10.037762100000002 47.55991219624448, 10.037650199999995 47.55997669624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_11_LVCableDist_mvgd_33532_lvgd_1163940002_14,BranchTee_mvgd_33532_lvgd_1163940002_11,BranchTee_mvgd_33532_lvgd_1163940002_14,0.034282745971099045,0.02975742350291397,0.002918735660256395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039993899999994 47.55944579624444, 10.040167899999995 47.55963419624446, 10.040280999999995 47.55967379624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_11_LVCableDist_mvgd_33532_lvgd_1163940002_building_445971,BranchTee_mvgd_33532_lvgd_1163940002_11,BranchTee_mvgd_33532_lvgd_1163940002_building_445971,0.011205461468780044,0.009726340554901078,0.0009540011761639182,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040427743416819 47.5596571072602, 10.040280999999995 47.55967379624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_12_LVCableDist_mvgd_33532_lvgd_1163940002_8,BranchTee_mvgd_33532_lvgd_1163940002_8,BranchTee_mvgd_33532_lvgd_1163940002_12,0.054282915912850824,0.04711757101235452,0.00462149334686033,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040132800000002 47.56002289624449, 10.040838200000003 47.55992239624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_12_LVCableDist_mvgd_33532_lvgd_1163940002_building_446143,BranchTee_mvgd_33532_lvgd_1163940002_12,BranchTee_mvgd_33532_lvgd_1163940002_building_446143,0.01045064284453906,0.009071157989059903,0.0008897380614923251,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040829203007458 47.559828535538394, 10.040838200000003 47.55992239624447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_13_LVCableDist_mvgd_33532_lvgd_1163940002_15,BranchTee_mvgd_33532_lvgd_1163940002_13,BranchTee_mvgd_33532_lvgd_1163940002_15,0.03751821680650801,0.03256581218804896,0.0031941944613976085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043902399999997 47.55633619624416, 10.043856099999996 47.55629289624413, 10.043791500000003 47.55625489624415, 10.043599700000003 47.556257596244095, 10.043461499999996 47.556279396244186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_13_LVCableDist_mvgd_33532_lvgd_1163940002_building_446286,BranchTee_mvgd_33532_lvgd_1163940002_13,BranchTee_mvgd_33532_lvgd_1163940002_building_446286,0.016350091456440962,0.014191879384190755,0.0013920003672575644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043262199996585 47.55633774625791, 10.043461499999996 47.556279396244186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_14_LVCableDist_mvgd_33532_lvgd_1163940002_23,BranchTee_mvgd_33532_lvgd_1163940002_14,BranchTee_mvgd_33532_lvgd_1163940002_23,0.09421493301177807,0.08177856185422336,0.008021191912163751,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039993899999994 47.55944579624444, 10.040255999999996 47.5593060962444, 10.040473899999999 47.559175196244425, 10.040678300000005 47.55902209624439, 10.040872 47.5588478962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_14_LVCableDist_mvgd_33532_lvgd_1163940002_5,BranchTee_mvgd_33532_lvgd_1163940002_5,BranchTee_mvgd_33532_lvgd_1163940002_14,0.01949311856794054,0.016920026916972388,0.0016595887722009731,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039770400000005 47.55953429624445, 10.039993899999994 47.55944579624444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_15_LVCableDist_mvgd_33532_lvgd_1163940002_17,BranchTee_mvgd_33532_lvgd_1163940002_15,BranchTee_mvgd_33532_lvgd_1163940002_17,0.06975875742169868,0.06055060144203445,0.005939062555652105,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043195099999995 47.556740296244186, 10.043350200000003 47.55663989624417, 10.04371489999999 47.55642649624413, 10.043902399999997 47.55633619624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_15_LVCableDist_mvgd_33532_lvgd_1163940002_19,BranchTee_mvgd_33532_lvgd_1163940002_15,BranchTee_mvgd_33532_lvgd_1163940002_19,0.01546205104325194,0.013421060305542683,0.00131639512770328,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044077099999997 47.55626309624415, 10.043902399999997 47.55633619624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_16_LVCableDist_mvgd_33532_lvgd_1163940002_19,BranchTee_mvgd_33532_lvgd_1163940002_16,BranchTee_mvgd_33532_lvgd_1163940002_19,0.048414920184935664,0.04202415072052416,0.004121908850340226,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044440799999993 47.55662239624418, 10.044077099999997 47.55626309624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_16_LVCableDist_mvgd_33532_lvgd_1163940002_9,BranchTee_mvgd_33532_lvgd_1163940002_9,BranchTee_mvgd_33532_lvgd_1163940002_16,0.019682842144403637,0.017084706981342356,0.0016757412988591658,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044588600000003 47.556768496244196, 10.044440799999993 47.55662239624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_16_LVCableDist_mvgd_33532_lvgd_1163940002_building_446333,BranchTee_mvgd_33532_lvgd_1163940002_16,BranchTee_mvgd_33532_lvgd_1163940002_building_446333,0.024142072376708776,0.020955318822983217,0.0020553875006918475,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044463059712017 47.55640563476481, 10.044440799999993 47.55662239624418)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_17_LVCableDist_mvgd_33532_lvgd_1163940002_18,BranchTee_mvgd_33532_lvgd_1163940002_17,BranchTee_mvgd_33532_lvgd_1163940002_18,0.019341445467965047,0.01678837466619366,0.0016466757550822949,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043195099999995 47.556740296244186, 10.043137100000004 47.55670519624419, 10.042996200000003 47.55663029624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_17_LVCableDist_mvgd_33532_lvgd_1163940002_20,BranchTee_mvgd_33532_lvgd_1163940002_17,BranchTee_mvgd_33532_lvgd_1163940002_20,0.02110179334968859,0.018316356627529697,0.0017965467759501895,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043001299999993 47.55687729624422, 10.0430899 47.55680979624421, 10.043195099999995 47.556740296244186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_17_LVCableDist_mvgd_33532_lvgd_1163940002_building_446271,BranchTee_mvgd_33532_lvgd_1163940002_17,BranchTee_mvgd_33532_lvgd_1163940002_building_446271,0.019885420511456954,0.017260545003944635,0.0016929882458923318,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043341150018097 47.55688939636051, 10.043195099999995 47.556740296244186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_18_LVCableDist_mvgd_33532_lvgd_1163940002_building_446283,BranchTee_mvgd_33532_lvgd_1163940002_18,BranchTee_mvgd_33532_lvgd_1163940002_building_446283,0.010973185921031775,0.009524725379455581,0.000934225895479285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042851667668897 47.556642784611604, 10.042996200000003 47.55663029624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_19_LVCableDist_mvgd_33532_lvgd_1163940002_22,BranchTee_mvgd_33532_lvgd_1163940002_19,BranchTee_mvgd_33532_lvgd_1163940002_22,0.023190715453927292,0.02012954101400889,0.0019743916732719853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044077099999997 47.55626309624415, 10.044340599999996 47.55615509624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_1_LVCableDist_mvgd_33532_lvgd_1163940002_20,BranchTee_mvgd_33532_lvgd_1163940002_1,BranchTee_mvgd_33532_lvgd_1163940002_20,0.052994223658087494,0.045998986135219945,0.004511777747000131,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042569400000001 47.557253696244274, 10.042859099999992 47.55699309624422, 10.043001299999993 47.55687729624422)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_1_LVCableDist_mvgd_33532_lvgd_1163940002_23,BranchTee_mvgd_33532_lvgd_1163940002_1,BranchTee_mvgd_33532_lvgd_1163940002_23,0.21848831684783943,0.18964785902392461,0.018601474988928467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040872 47.5588478962444, 10.041158499999995 47.558570896244326, 10.041523 47.55820749624431, 10.041629999999996 47.5581053962443, 10.0419612 47.55781699624426, 10.042272300000002 47.55752869624428, 10.042569400000001 47.557253696244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_1_LVCableDist_mvgd_33532_lvgd_1163940002_25,BranchTee_mvgd_33532_lvgd_1163940002_1,BranchTee_mvgd_33532_lvgd_1163940002_25,0.013968812284650835,0.012124929063076925,0.0011892650192317992,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042692900000004 47.557347496244205, 10.042569400000001 47.557253696244274)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_20_LVCableDist_mvgd_33532_lvgd_1163940002_21,BranchTee_mvgd_33532_lvgd_1163940002_20,BranchTee_mvgd_33532_lvgd_1163940002_21,0.01712576365225884,0.014865162850160672,0.001458038895808095,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043001299999993 47.55687729624422, 10.042943899999992 47.55684979624424, 10.042816699999992 47.55678729624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_21_LVCableDist_mvgd_33532_lvgd_1163940002_building_446284,BranchTee_mvgd_33532_lvgd_1163940002_21,BranchTee_mvgd_33532_lvgd_1163940002_building_446284,0.00950722948025722,0.008252275188863267,0.0008094185260906634,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042741863844075 47.55685620773599, 10.042816699999992 47.55678729624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_22_LVCableDist_mvgd_33532_lvgd_1163940002_building_446299,BranchTee_mvgd_33532_lvgd_1163940002_22,BranchTee_mvgd_33532_lvgd_1163940002_building_446299,0.015000204529435056,0.013020177531549628,0.0012770748267396748,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044511584902057 47.556224330553874, 10.044340599999996 47.55615509624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_22_LVStation_mvgd_33532_lvgd_1163940002,BusBar_mvgd_33532_lvgd_1163940002_LV,BranchTee_mvgd_33532_lvgd_1163940002_22,0.11394183427903146,0.0989015121541993,0.00970068427965463,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044340599999996 47.55615509624412, 10.044591800000005 47.55607259624417, 10.044930799999996 47.555961396244136, 10.045465499999995 47.555835296244105, 10.045738800000006 47.55576749624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_23_LVCableDist_mvgd_33532_lvgd_1163940002_3,BranchTee_mvgd_33532_lvgd_1163940002_3,BranchTee_mvgd_33532_lvgd_1163940002_23,0.10351925858104792,0.0898547164483496,0.008813335775334951,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042168700000003 47.55910599624441, 10.041973699999994 47.55911539624437, 10.041804799999994 47.559108696244415, 10.041682300000005 47.55907989624438, 10.041616599999998 47.55905459624441, 10.041492099999994 47.55901799624435, 10.041353899999994 47.558978696244374, 10.040872 47.5588478962444)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_24_LVCableDist_mvgd_33532_lvgd_1163940002_4,BranchTee_mvgd_33532_lvgd_1163940002_4,BranchTee_mvgd_33532_lvgd_1163940002_24,0.08899276580513932,0.07724572071886093,0.007576591422381298,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036922600000004 47.561478196244565, 10.036859699999995 47.56122189624458, 10.036766399999992 47.56091059624455, 10.036742699999998 47.560687696244564)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_24_LVCableDist_mvgd_33532_lvgd_1163940002_building_446148,BranchTee_mvgd_33532_lvgd_1163940002_24,BranchTee_mvgd_33532_lvgd_1163940002_building_446148,0.01923745731955323,0.016698112953372205,0.0016378224993579876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036690678951661 47.56155079158211, 10.036922600000004 47.561478196244565)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_25_LVCableDist_mvgd_33532_lvgd_1163940002_building_446287,BranchTee_mvgd_33532_lvgd_1163940002_25,BranchTee_mvgd_33532_lvgd_1163940002_building_446287,0.021646350705640555,0.018789032412496,0.0018429088431898394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04293149863782 47.557238865938025, 10.042692900000004 47.557347496244205)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_26_LVCableDist_mvgd_33532_lvgd_1163940002_31,BranchTee_mvgd_33532_lvgd_1163940002_26,BranchTee_mvgd_33532_lvgd_1163940002_31,0.06265147294644331,0.054381478517512793,0.0053339685336329145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.046556900000004 47.55557269624411, 10.047344500000003 47.55539119624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_26_LVCableDist_mvgd_33532_lvgd_1163940002_building_446308,BranchTee_mvgd_33532_lvgd_1163940002_26,BranchTee_mvgd_33532_lvgd_1163940002_building_446308,0.04487531017259326,0.03895176922981095,0.0038205565031527006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.047076349974859 47.55577054629387, 10.046556900000004 47.55557269624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_26_LVCableDist_mvgd_33532_lvgd_1163940002_building_446350,BranchTee_mvgd_33532_lvgd_1163940002_26,BranchTee_mvgd_33532_lvgd_1163940002_building_446350,0.05320392650283321,0.04618100820445923,0.0045296312518370106,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045964115864534 47.55583316548142, 10.046556900000004 47.55557269624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_26_LVCableDist_mvgd_33532_lvgd_1163940002_building_446356,BranchTee_mvgd_33532_lvgd_1163940002_26,BranchTee_mvgd_33532_lvgd_1163940002_building_446356,0.0729293330576955,0.0633026610940797,0.006208996363758532,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045849649969528 47.55602104630231, 10.046556900000004 47.55557269624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_26_LVStation_mvgd_33532_lvgd_1163940002,BusBar_mvgd_33532_lvgd_1163940002_LV,BranchTee_mvgd_33532_lvgd_1163940002_26,0.06530506380846357,0.056684795385746375,0.005559887725848098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045738800000006 47.55576749624408, 10.046556900000004 47.55557269624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_27_LVCableDist_mvgd_33532_lvgd_1163940002_34,BranchTee_mvgd_33532_lvgd_1163940002_27,BranchTee_mvgd_33532_lvgd_1163940002_34,0.18152473417932186,0.15756346926765136,0.015454500503384396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.046281299999999 47.5519025962438, 10.04682092954349 47.55208409892719, 10.047360562876833 47.55226559892721, 10.047900200000008 47.55244709624381, 10.048445048156292 47.55262199761081)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_27_LVCableDist_mvgd_33532_lvgd_1163940002_36,BranchTee_mvgd_33532_lvgd_1163940002_27,BranchTee_mvgd_33532_lvgd_1163940002_36,0.045406195215798015,0.03941257744731268,0.0038657545485019486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048989900000004 47.55279689624379, 10.048445048156292 47.55262199761081)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_27_LVCableDist_mvgd_33532_lvgd_1163940002_building_446264,BranchTee_mvgd_33532_lvgd_1163940002_27,BranchTee_mvgd_33532_lvgd_1163940002_building_446264,0.022569843307440614,0.019590623990858452,0.0019215323814305942,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048255497856806 47.55246466855344, 10.048445048156292 47.55262199761081)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_28_LVCableDist_mvgd_33532_lvgd_1163940002_34,BranchTee_mvgd_33532_lvgd_1163940002_28,BranchTee_mvgd_33532_lvgd_1163940002_34,0.02604924312611334,0.02261074303346638,0.002217758603671104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.046281299999999 47.5519025962438, 10.045973800000002 47.551795296243725)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_28_LVCableDist_mvgd_33532_lvgd_1163940002_35,BranchTee_mvgd_33532_lvgd_1163940002_28,BranchTee_mvgd_33532_lvgd_1163940002_35,0.02648957728048501,0.02299295307946099,0.002255247403427019,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045794199999992 47.55161769624372, 10.045885399999994 47.551652096243714, 10.045963099999998 47.55172089624375, 10.045992000000002 47.55176289624371, 10.045973800000002 47.551795296243725)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_28_LVCableDist_mvgd_33532_lvgd_1163940002_41,BranchTee_mvgd_33532_lvgd_1163940002_28,BranchTee_mvgd_33532_lvgd_1163940002_41,0.11365947247960026,0.09865642211229303,0.009676644797700975,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045973800000002 47.551795296243725, 10.045354199999997 47.55157349624375, 10.045111299999995 47.55147749624372, 10.0450617 47.55145489624374, 10.044993199999995 47.551390796243744, 10.044944899999996 47.55129599624367, 10.044943299999998 47.55115859624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_29_LVCableDist_mvgd_33532_lvgd_1163940002_34,BranchTee_mvgd_33532_lvgd_1163940002_29,BranchTee_mvgd_33532_lvgd_1163940002_34,0.06917027361642888,0.06003979749906027,0.005888960715228577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045567799999995 47.55206199624372, 10.045736300000002 47.551948396243766, 10.045781499999993 47.55192979624374, 10.045855800000005 47.55193989624374, 10.046090699999999 47.55202309624376, 10.046161000000003 47.552023196243745, 10.046220200000004 47.551977196243776, 10.046235799999993 47.55194859624379, 10.046281299999999 47.5519025962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_29_LVCableDist_mvgd_33532_lvgd_1163940002_43,BranchTee_mvgd_33532_lvgd_1163940002_29,BranchTee_mvgd_33532_lvgd_1163940002_43,0.07375320685895607,0.06401778355357388,0.006279138640147867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044839000000003 47.55228289624382, 10.044873300000004 47.55225989624376, 10.0449042 47.55219959624382, 10.044939300000003 47.552131296243815, 10.045049700000007 47.55207019624376, 10.045152000000003 47.552061496243795, 10.045250999999993 47.55207189624378, 10.045311300000002 47.55210989624374, 10.0453696 47.552129796243804, 10.045418500000002 47.55213449624376, 10.045457900000002 47.55212789624378, 10.045531699999996 47.55208359624379, 10.045567799999995 47.55206199624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_29_LVCableDist_mvgd_33532_lvgd_1163940002_building_446254,BranchTee_mvgd_33532_lvgd_1163940002_29,BranchTee_mvgd_33532_lvgd_1163940002_building_446254,0.01603278915504322,0.013916460986577514,0.001364986150165627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045772104372965 47.552102502418066, 10.045567799999995 47.55206199624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_2_LVCableDist_mvgd_33532_lvgd_1163940002_24,BranchTee_mvgd_33532_lvgd_1163940002_2,BranchTee_mvgd_33532_lvgd_1163940002_24,0.023210768388642906,0.020146946961342043,0.0019760989232016322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0369243 47.561687096244604, 10.036922600000004 47.561478196244565)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_2_LVCableDist_mvgd_33532_lvgd_1163940002_building_446135,BranchTee_mvgd_33532_lvgd_1163940002_2,BranchTee_mvgd_33532_lvgd_1163940002_building_446135,0.020820986510422888,0.018072616291047068,0.0017726396788903555,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036652060998449 47.56165437522361, 10.0369243 47.561687096244604)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_30_LVCableDist_mvgd_33532_lvgd_1163940002_33,BranchTee_mvgd_33532_lvgd_1163940002_30,BranchTee_mvgd_33532_lvgd_1163940002_33,0.07801123811698646,0.06771375468554425,0.006641655332532333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049259499999998 47.55505869624402, 10.0494392 47.55500619624404, 10.049600799999997 47.55494469624402, 10.049721600000005 47.55488859624404, 10.049849599999998 47.55481969624401, 10.050092199999998 47.554653496244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_30_LVCableDist_mvgd_33532_lvgd_1163940002_37,BranchTee_mvgd_33532_lvgd_1163940002_30,BranchTee_mvgd_33532_lvgd_1163940002_37,0.030034458825509834,0.026069910260542537,0.0025570485539407814,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048871799999999 47.55512049624408, 10.048991800000005 47.555107096244065, 10.049093899999995 47.55509129624402, 10.049259499999998 47.55505869624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_30_LVCableDist_mvgd_33532_lvgd_1163940002_building_446305,BranchTee_mvgd_33532_lvgd_1163940002_30,BranchTee_mvgd_33532_lvgd_1163940002_building_446305,0.024725664802837825,0.021461877048863234,0.0021050729029823863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049331299996151 47.55527584627673, 10.049259499999998 47.55505869624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_31_LVCableDist_mvgd_33532_lvgd_1163940002_46,BranchTee_mvgd_33532_lvgd_1163940002_31,BranchTee_mvgd_33532_lvgd_1163940002_46,0.04647005048776271,0.040336003823378035,0.003956328165978588,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.047344500000003 47.55539119624403, 10.047926600000004 47.55525249624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_31_LVCableDist_mvgd_33532_lvgd_1163940002_building_446310,BranchTee_mvgd_33532_lvgd_1163940002_31,BranchTee_mvgd_33532_lvgd_1163940002_building_446310,0.043794286814639254,0.03801344095510687,0.0037285212435766335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.047502746853844 47.55577047905872, 10.047344500000003 47.55539119624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_32_LVCableDist_mvgd_33532_lvgd_1163940002_37,BranchTee_mvgd_33532_lvgd_1163940002_32,BranchTee_mvgd_33532_lvgd_1163940002_37,0.037153088654880526,0.0322488809524363,0.0031631084871988945,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048386799999996 47.55518159624408, 10.048871799999999 47.55512049624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_32_LVCableDist_mvgd_33532_lvgd_1163940002_46,BranchTee_mvgd_33532_lvgd_1163940002_32,BranchTee_mvgd_33532_lvgd_1163940002_46,0.035543668111470965,0.030851903920756797,0.0030260869914191,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.047926600000004 47.55525249624406, 10.048386799999996 47.55518159624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_32_LVCableDist_mvgd_33532_lvgd_1163940002_building_446291,BranchTee_mvgd_33532_lvgd_1163940002_32,BranchTee_mvgd_33532_lvgd_1163940002_building_446291,0.018344187389910484,0.0159227546544423,0.0015617720336198889,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048366494697342 47.55534612494023, 10.048386799999996 47.55518159624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_33_LVCableDist_mvgd_33532_lvgd_1163940002_39,BranchTee_mvgd_33532_lvgd_1163940002_33,BranchTee_mvgd_33532_lvgd_1163940002_39,0.019275606813169362,0.016731226713831007,0.0016410704389347064,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.050092199999998 47.554653496244, 10.050180800000003 47.55468759624402, 10.0502769 47.554737396244, 10.050303200000004 47.554750996244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_33_LVCableDist_mvgd_33532_lvgd_1163940002_42,BranchTee_mvgd_33532_lvgd_1163940002_33,BranchTee_mvgd_33532_lvgd_1163940002_42,0.16207929649071656,0.14068482935394197,0.013798971145879827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.050092199999998 47.554653496244, 10.050294399999997 47.55447519624399, 10.050519600000003 47.55421549624394, 10.050637000000004 47.55409169624396, 10.050914600000002 47.55385639624396, 10.051048200000004 47.553768896243966, 10.051162099999996 47.55368829624387, 10.051242599999995 47.5535827962439, 10.051282900000004 47.553457896243906)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_35_LVCableDist_mvgd_33532_lvgd_1163940002_building_446248,BranchTee_mvgd_33532_lvgd_1163940002_35,BranchTee_mvgd_33532_lvgd_1163940002_building_446248,0.006477015743409319,0.005622049665279289,0.0005514347315780322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04577245000267 47.55167409624876, 10.045794199999992 47.55161769624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_35_LVCableDist_mvgd_33532_lvgd_1163940002_building_446259,BranchTee_mvgd_33532_lvgd_1163940002_35,BranchTee_mvgd_33532_lvgd_1163940002_building_446259,0.013020900430383129,0.011302141573572556,0.0011085624951643488,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045650800010499 47.55155224627197, 10.045794199999992 47.55161769624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_36_LVCableDist_mvgd_33532_lvgd_1163940002_40,BranchTee_mvgd_33532_lvgd_1163940002_36,BranchTee_mvgd_33532_lvgd_1163940002_40,0.020986437289033072,0.018216227566880707,0.0017867256884519533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049247799999991 47.55286839624383, 10.048989900000004 47.55279689624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_36_LVCableDist_mvgd_33532_lvgd_1163940002_building_446270,BranchTee_mvgd_33532_lvgd_1163940002_36,BranchTee_mvgd_33532_lvgd_1163940002_building_446270,0.020306000337051308,0.017625608292560536,0.0017287952181804184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048870918886877 47.552632898033906, 10.048989900000004 47.55279689624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_36_LVCableDist_mvgd_33532_lvgd_1163940002_building_446272,BranchTee_mvgd_33532_lvgd_1163940002_36,BranchTee_mvgd_33532_lvgd_1163940002_building_446272,0.015304414336690598,0.013284231644247439,0.0013029743860510845,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049091105466301 47.552677451442996, 10.048989900000004 47.55279689624379)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_37_LVCableDist_mvgd_33532_lvgd_1163940002_building_446300,BranchTee_mvgd_33532_lvgd_1163940002_37,BranchTee_mvgd_33532_lvgd_1163940002_building_446300,0.03557940052273543,0.030882919653734353,0.0030291291474667066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048750373216153 47.55542996398187, 10.048871799999999 47.55512049624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_38_LVCableDist_mvgd_33532_lvgd_1163940002_42,BranchTee_mvgd_33532_lvgd_1163940002_38,BranchTee_mvgd_33532_lvgd_1163940002_42,0.3078053457645676,0.2671750401236447,0.026205673252019022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051282900000004 47.553457896243906, 10.0513651 47.55334849624386, 10.051420000000007 47.55326369624385, 10.0514937 47.55326269624386, 10.051565800000004 47.55325219624388, 10.051633600000002 47.55323279624393, 10.051694799999996 47.55320509624386, 10.051775299999994 47.55314409624389, 10.051820399999997 47.553078096243866, 10.051836899999996 47.553006196243864, 10.051823399999998 47.552933996243894, 10.0517811 47.55286709624382, 10.051713100000002 47.55281069624384, 10.051764100000002 47.552653096243816, 10.0518002 47.55260579624384, 10.051879299999994 47.55254369624377, 10.051452299999996 47.552373696243784, 10.050968299999992 47.552198596243805, 10.0504393 47.551908496243755, 10.050301000000001 47.55181129624372, 10.0502751 47.55177639624376, 10.050269900000009 47.55174599624377, 10.050150700000001 47.551723996243744, 10.049938699999995 47.55166459624376)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_38_LVCableDist_mvgd_33532_lvgd_1163940002_building_446258,BranchTee_mvgd_33532_lvgd_1163940002_38,BranchTee_mvgd_33532_lvgd_1163940002_building_446258,0.024782453538224364,0.021511169671178748,0.002109907734684995,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.050101289991883 47.55147067995778, 10.049938699999995 47.55166459624376)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_39_LVCableDist_mvgd_33532_lvgd_1163940002_44,BranchTee_mvgd_33532_lvgd_1163940002_39,BranchTee_mvgd_33532_lvgd_1163940002_44,0.056434806166105515,0.04898541175217959,0.004804699173617249,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.050936200000004 47.554923196244005, 10.050665699999996 47.554957996243985, 10.050303200000004 47.554750996244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_39_LVCableDist_mvgd_33532_lvgd_1163940002_building_446311,BranchTee_mvgd_33532_lvgd_1163940002_39,BranchTee_mvgd_33532_lvgd_1163940002_building_446311,0.026675937685425206,0.02315471391094908,0.002271113599210091,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.05019119472053 47.5549787683731, 10.050303200000004 47.554750996244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_3_LVCableDist_mvgd_33532_lvgd_1163940002_7,BranchTee_mvgd_33532_lvgd_1163940002_3,BranchTee_mvgd_33532_lvgd_1163940002_7,0.012986048159692665,0.011271889802613233,0.0011055952717864163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0423408 47.55909869624441, 10.042168700000003 47.55910599624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_3_LVCableDist_mvgd_33532_lvgd_1163940002_building_446289,BranchTee_mvgd_33532_lvgd_1163940002_3,BranchTee_mvgd_33532_lvgd_1163940002_building_446289,0.01913161499036997,0.016606241811641137,0.0016288113839469816,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042089166480066 47.5589424634241, 10.042168700000003 47.55910599624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_40_LVCableDist_mvgd_33532_lvgd_1163940002_45,BranchTee_mvgd_33532_lvgd_1163940002_40,BranchTee_mvgd_33532_lvgd_1163940002_45,0.02935523030023208,0.025480339900601445,0.002499220965687996,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049626700000005 47.55293029624381, 10.049247799999991 47.55286839624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_40_LVCableDist_mvgd_33532_lvgd_1163940002_building_446273,BranchTee_mvgd_33532_lvgd_1163940002_40,BranchTee_mvgd_33532_lvgd_1163940002_building_446273,0.016931547481161487,0.014696583213648171,0.0014415038823976122,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049228801510337 47.55271655251758, 10.049247799999991 47.55286839624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_41_LVCableDist_mvgd_33532_lvgd_1163940002_building_446233,BranchTee_mvgd_33532_lvgd_1163940002_41,BranchTee_mvgd_33532_lvgd_1163940002_building_446233,0.024310570400587758,0.021101575107710175,0.002069732944064234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045257399984736 47.551108246285, 10.044943299999998 47.55115859624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_41_LVCableDist_mvgd_33532_lvgd_1163940002_building_446245,BranchTee_mvgd_33532_lvgd_1163940002_41,BranchTee_mvgd_33532_lvgd_1163940002_building_446245,0.029263772981117812,0.02540095494761026,0.002491434549193959,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04532498164639 47.551207798263796, 10.044943299999998 47.55115859624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_41_LVCableDist_mvgd_33532_lvgd_1163940002_building_446251,BranchTee_mvgd_33532_lvgd_1163940002_41,BranchTee_mvgd_33532_lvgd_1163940002_building_446251,0.04619499290045781,0.04009725383759738,0.003932910543908066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045555867406962 47.55117904964621, 10.044943299999998 47.55115859624372)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_42_LVCableDist_mvgd_33532_lvgd_1163940002_45,BranchTee_mvgd_33532_lvgd_1163940002_42,BranchTee_mvgd_33532_lvgd_1163940002_45,0.15659258344625962,0.13592236243135336,0.013331847974534372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051282900000004 47.553457896243906, 10.051285999999992 47.55333909624392, 10.051289900000002 47.553241396243855, 10.051219399999999 47.55321369624389, 10.051159000000006 47.55317669624385, 10.0511115 47.55313189624388, 10.050935099999998 47.553115796243866, 10.050870499999995 47.55310989624388, 10.050639299999998 47.55307319624386, 10.050340300000006 47.55303799624384, 10.050067499999999 47.55299159624389, 10.049626700000005 47.55293029624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_43_LVCableDist_mvgd_33532_lvgd_1163940002_47,BranchTee_mvgd_33532_lvgd_1163940002_43,BranchTee_mvgd_33532_lvgd_1163940002_47,0.003420473775301606,0.0029689712369617943,0.00029120942620409834,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044794399999994 47.5522886962438, 10.044839000000003 47.55228289624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_43_LVCableDist_mvgd_33532_lvgd_1163940002_building_446244,BranchTee_mvgd_33532_lvgd_1163940002_43,BranchTee_mvgd_33532_lvgd_1163940002_building_446244,0.03642965843726501,0.03162094352354603,0.0031015176923529543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04505537666393 47.552576132507454, 10.044839000000003 47.55228289624382)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_44_LVCableDist_mvgd_33532_lvgd_1163940002_building_446312,BranchTee_mvgd_33532_lvgd_1163940002_44,BranchTee_mvgd_33532_lvgd_1163940002_building_446312,0.0295592194868478,0.02565740251458389,0.0025165880258932643,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.05088690223002 47.55465926213196, 10.050936200000004 47.554923196244005)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_45_LVCableDist_mvgd_33532_lvgd_1163940002_building_446269,BranchTee_mvgd_33532_lvgd_1163940002_45,BranchTee_mvgd_33532_lvgd_1163940002_building_446269,0.03379170272623339,0.029331197966370584,0.002876929632503378,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049808499996905 47.55265224625901, 10.049626700000005 47.55293029624381)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_46_LVCableDist_mvgd_33532_lvgd_1163940002_building_446293,BranchTee_mvgd_33532_lvgd_1163940002_46,BranchTee_mvgd_33532_lvgd_1163940002_building_446293,0.019734669243408616,0.01712969290327868,0.0016801537109267695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048027382440393 47.55541644942294, 10.047926600000004 47.55525249624406)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_47_LVCableDist_mvgd_33532_lvgd_1163940002_building_446242,BranchTee_mvgd_33532_lvgd_1163940002_47,BranchTee_mvgd_33532_lvgd_1163940002_building_446242,0.036862420056606574,0.0319965806091345,0.003138361787975497,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044610474668453 47.55259615243734, 10.044794399999994 47.5522886962438)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_4_LVCableDist_mvgd_33532_lvgd_1163940002_building_446134,BranchTee_mvgd_33532_lvgd_1163940002_4,BranchTee_mvgd_33532_lvgd_1163940002_building_446134,0.021571839242351135,0.018724356462360786,0.0018365651487499582,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037028945626535 47.56068031588594, 10.036742699999998 47.560687696244564)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_5_LVCableDist_mvgd_33532_lvgd_1163940002_8,BranchTee_mvgd_33532_lvgd_1163940002_5,BranchTee_mvgd_33532_lvgd_1163940002_8,0.064193473584032,0.05571993507093978,0.005465250090042147,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039770400000005 47.55953429624445, 10.039784000000003 47.559561596244436, 10.039841199999994 47.55967589624449, 10.039979800000001 47.55995659624449, 10.040044700000003 47.560013296244506, 10.040132800000002 47.56002289624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_5_LVCableDist_mvgd_33532_lvgd_1163940002_building_445968,BranchTee_mvgd_33532_lvgd_1163940002_5,BranchTee_mvgd_33532_lvgd_1163940002_building_445968,0.014464855082366552,0.012555494211494166,0.0012314966947203016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039707531741417 47.55941128039511, 10.039770400000005 47.55953429624445)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_6_LVCableDist_mvgd_33532_lvgd_1163940002_building_446141,BranchTee_mvgd_33532_lvgd_1163940002_6,BranchTee_mvgd_33532_lvgd_1163940002_building_446141,0.012832428808008573,0.01113854820535144,0.001092516556322847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03777978410901 47.56005169431776, 10.037650199999995 47.55997669624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_7_LVCableDist_mvgd_33532_lvgd_1163940002_building_446290,BranchTee_mvgd_33532_lvgd_1163940002_7,BranchTee_mvgd_33532_lvgd_1163940002_building_446290,0.01773668465626962,0.015395442281642031,0.0015100509756312548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04240530533267 47.5589451645064, 10.0423408 47.55909869624441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_8_LVCableDist_mvgd_33532_lvgd_1163940002_building_446138,BranchTee_mvgd_33532_lvgd_1163940002_8,BranchTee_mvgd_33532_lvgd_1163940002_building_446138,0.017461310198142725,0.015156417251987886,0.0014866063760785725,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04018752057953 47.55987017826217, 10.040132800000002 47.56002289624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_9_LVCableDist_mvgd_33532_lvgd_1163940002_building_446342,BranchTee_mvgd_33532_lvgd_1163940002_9,BranchTee_mvgd_33532_lvgd_1163940002_building_446342,0.013574063880283453,0.011782287448086038,0.0011556572608093065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04470355000195 47.55667439625796, 10.044588600000003 47.556768496244196)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940002_9_LVCableDist_mvgd_33532_lvgd_1163940002_building_446347,BranchTee_mvgd_33532_lvgd_1163940002_9,BranchTee_mvgd_33532_lvgd_1163940002_building_446347,0.014011967898429147,0.0121623881358365,0.001192939165666312,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044417699984105 47.55681834629733, 10.044588600000003 47.556768496244196)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_10_LVCableDist_mvgd_33532_lvgd_1163940003_12,BranchTee_mvgd_33532_lvgd_1163940003_10,BranchTee_mvgd_33532_lvgd_1163940003_12,0.02030360402428368,0.006497153287770777,0.0016648055496706388,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.109281 47.55713849624423, 10.109052899999996 47.55704109624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_10_LVCableDist_mvgd_33532_lvgd_1163940003_17,BranchTee_mvgd_33532_lvgd_1163940003_10,BranchTee_mvgd_33532_lvgd_1163940003_17,0.0343664158201091,0.010997253062434913,0.002817893794184404,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.109281 47.55713849624423, 10.109334199999997 47.55683129624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_10_LVCableDist_mvgd_33532_lvgd_1163940003_23,BranchTee_mvgd_33532_lvgd_1163940003_10,BranchTee_mvgd_33532_lvgd_1163940003_23,0.437083083116835,0.1398665865973872,0.0358388757764267,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1059175 47.55883549624442, 10.1061677 47.55868779624436, 10.106358000000002 47.558559396244355, 10.1064338 47.55850219624434, 10.106480599999996 47.55845509624435, 10.106505899999998 47.55841749624429, 10.106552799999998 47.55832029624434, 10.106573999999995 47.55822779624437, 10.106567999999998 47.558149896244295, 10.106833300000002 47.558131696244324, 10.1071675 47.55809059624432, 10.107599400000005 47.55803099624431, 10.1078578 47.55799299624433, 10.108283900000004 47.55792679624434, 10.109929700000002 47.5576737962443, 10.109882199999994 47.55758209624427, 10.109718499999994 47.55727729624424, 10.109281 47.55713849624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_10_LVCableDist_mvgd_33532_lvgd_1163940003_building_448071,BranchTee_mvgd_33532_lvgd_1163940003_10,BranchTee_mvgd_33532_lvgd_1163940003_building_448071,0.02695088488591708,0.023393368080976026,0.0022945218232607494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109349731615355 47.55737654395808, 10.109281 47.55713849624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_10_LVCableDist_mvgd_33532_lvgd_1163940003_building_448095,BranchTee_mvgd_33532_lvgd_1163940003_10,BranchTee_mvgd_33532_lvgd_1163940003_building_448095,0.02083907623092227,0.018088318168440528,0.0017741797863353695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109507493393465 47.55703074810997, 10.109281 47.55713849624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_11_LVCableDist_mvgd_33532_lvgd_1163940003_14,BranchTee_mvgd_33532_lvgd_1163940003_11,BranchTee_mvgd_33532_lvgd_1163940003_14,0.03135782858267134,0.010034505146454828,0.0025712029739948412,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.110386800000002 47.55548129624408, 10.1106401 47.555257296244015)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_11_LVCableDist_mvgd_33532_lvgd_1163940003_7,BranchTee_mvgd_33532_lvgd_1163940003_7,BranchTee_mvgd_33532_lvgd_1163940003_11,0.053702942590590226,0.017184941628988874,0.004403403294879446,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1106401 47.555257296244015, 10.110814799999995 47.55510699624403, 10.110923399999997 47.555057296244044, 10.111054699999997 47.55502939624405, 10.111216499999998 47.555036496244014)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_11_LVCableDist_mvgd_33532_lvgd_1163940003_building_448061,BranchTee_mvgd_33532_lvgd_1163940003_11,BranchTee_mvgd_33532_lvgd_1163940003_building_448061,0.027370418523940412,0.02375752327878028,0.0023302397261092574,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110763272149836 47.55548905387773, 10.1106401 47.555257296244015)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_11_LVCableDist_mvgd_33532_lvgd_1163940003_building_448096,BranchTee_mvgd_33532_lvgd_1163940003_11,BranchTee_mvgd_33532_lvgd_1163940003_building_448096,0.020922219128042575,0.018160486203140955,0.0017812583365462145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110402367935176 47.55515988398954, 10.1106401 47.555257296244015)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_12_LVCableDist_mvgd_33532_lvgd_1163940003_13,BranchTee_mvgd_33532_lvgd_1163940003_12,BranchTee_mvgd_33532_lvgd_1163940003_13,0.015750379678670323,0.005040121497174504,0.0012914613320427534,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.10887589999999 47.55696559624419, 10.109052899999996 47.55704109624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_12_LVCableDist_mvgd_33532_lvgd_1163940003_building_448078,BranchTee_mvgd_33532_lvgd_1163940003_12,BranchTee_mvgd_33532_lvgd_1163940003_building_448078,0.010058694966916797,0.00873094723128378,0.0008563687319659705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109143050014476 47.556974296272024, 10.109052899999996 47.55704109624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_13_LVCableDist_mvgd_33532_lvgd_1163940003_19,BranchTee_mvgd_33532_lvgd_1163940003_13,BranchTee_mvgd_33532_lvgd_1163940003_19,0.01921871764707771,0.006149989647064868,0.00157584967467552,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.10887589999999 47.55696559624419, 10.108659899999996 47.55687349624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_13_LVCableDist_mvgd_33532_lvgd_1163940003_building_448044,BranchTee_mvgd_33532_lvgd_1163940003_13,BranchTee_mvgd_33532_lvgd_1163940003_building_448044,0.020090403755975185,0.01743847046018646,0.0017104399373652022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108650105990138 47.55706189029663, 10.10887589999999 47.55696559624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_14_LVCableDist_mvgd_33532_lvgd_1163940003_20,BranchTee_mvgd_33532_lvgd_1163940003_14,BranchTee_mvgd_33532_lvgd_1163940003_20,0.040787603044293526,0.013052032974173929,0.0033444026895268694,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1101772 47.55581739624412, 10.110233900000003 47.55567589624409, 10.110386800000002 47.55548129624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_14_LVCableDist_mvgd_33532_lvgd_1163940003_building_448024,BranchTee_mvgd_33532_lvgd_1163940003_14,BranchTee_mvgd_33532_lvgd_1163940003_building_448024,0.03671045726639095,0.03186467690722735,0.00312542410745223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109937052263138 47.555353927868445, 10.110386800000002 47.55548129624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_14_LVCableDist_mvgd_33532_lvgd_1163940003_building_448072,BranchTee_mvgd_33532_lvgd_1163940003_14,BranchTee_mvgd_33532_lvgd_1163940003_building_448072,0.01637692525059039,0.014215171117512459,0.0013942849203079511,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110576700000323 47.55555309624532, 10.110386800000002 47.55548129624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_15_LVCableDist_mvgd_33532_lvgd_1163940003_28,BranchTee_mvgd_33532_lvgd_1163940003_15,BranchTee_mvgd_33532_lvgd_1163940003_28,0.009816437677267137,0.003141260056725484,0.0008049043856235694,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1073785 47.560520696244524, 10.107401199999996 47.56060769624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_15_LVCableDist_mvgd_33532_lvgd_1163940003_building_34328719,BranchTee_mvgd_33532_lvgd_1163940003_15,BranchTee_mvgd_33532_lvgd_1163940003_building_34328719,0.0942867531490224,0.08184090173335144,0.008027306474745064,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108512581628188 47.56099844897529, 10.107401199999996 47.56060769624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_15_LVCableDist_mvgd_33532_lvgd_1163940003_building_34328720,BranchTee_mvgd_33532_lvgd_1163940003_15,BranchTee_mvgd_33532_lvgd_1163940003_building_34328720,0.040586982434871355,0.03522950075346833,0.0034554604545016625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107939893667151 47.56059633127986, 10.107401199999996 47.56060769624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_16_LVCableDist_mvgd_33532_lvgd_1163940003_17,BranchTee_mvgd_33532_lvgd_1163940003_16,BranchTee_mvgd_33532_lvgd_1163940003_17,0.04671725612318773,0.014949521959420073,0.0038306079633077116,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.109334199999997 47.55683129624419, 10.109421599999992 47.55664259624415, 10.109596299999994 47.55645399624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_16_LVCableDist_mvgd_33532_lvgd_1163940003_26,BranchTee_mvgd_33532_lvgd_1163940003_16,BranchTee_mvgd_33532_lvgd_1163940003_26,0.06330459360331014,0.020257469953059246,0.005190696125889076,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.109596299999994 47.55645399624417, 10.110054900000002 47.5559764962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_16_LVCableDist_mvgd_33532_lvgd_1163940003_building_448058,BranchTee_mvgd_33532_lvgd_1163940003_16,BranchTee_mvgd_33532_lvgd_1163940003_building_448058,0.022583212760369877,0.019602228676001053,0.0019226706186959422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109553136183333 47.55625285884161, 10.109596299999994 47.55645399624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_16_LVCableDist_mvgd_33532_lvgd_1163940003_building_448082,BranchTee_mvgd_33532_lvgd_1163940003_16,BranchTee_mvgd_33532_lvgd_1163940003_building_448082,0.013515105010476496,0.011731111149093598,0.0011506376700233451,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109694572905944 47.556555772281065, 10.109596299999994 47.55645399624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_16_LVCableDist_mvgd_33532_lvgd_1163940003_building_448083,BranchTee_mvgd_33532_lvgd_1163940003_16,BranchTee_mvgd_33532_lvgd_1163940003_building_448083,0.022212316666925802,0.019280290866891595,0.0018910935783066566,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10989030001335 47.556438096291735, 10.109596299999994 47.55645399624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_16_LVCableDist_mvgd_33532_lvgd_1163940003_building_448087,BranchTee_mvgd_33532_lvgd_1163940003_16,BranchTee_mvgd_33532_lvgd_1163940003_building_448087,0.02949859290974197,0.02560477864565603,0.0025114264512426446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109855452872905 47.55665306244038, 10.109596299999994 47.55645399624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_17_LVCableDist_mvgd_33532_lvgd_1163940003_building_448075,BranchTee_mvgd_33532_lvgd_1163940003_17,BranchTee_mvgd_33532_lvgd_1163940003_building_448075,0.01203815354634761,0.010449117278229727,0.0010248942155621716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109178049999912 47.556808146265496, 10.109334199999997 47.55683129624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_17_LVCableDist_mvgd_33532_lvgd_1163940003_building_448076,BranchTee_mvgd_33532_lvgd_1163940003_17,BranchTee_mvgd_33532_lvgd_1163940003_building_448076,0.010505549690234277,0.009118817131123353,0.0008944126744494647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109467300002514 47.556802996255534, 10.109334199999997 47.55683129624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_17_LVCableDist_mvgd_33532_lvgd_1163940003_building_448089,BranchTee_mvgd_33532_lvgd_1163940003_17,BranchTee_mvgd_33532_lvgd_1163940003_building_448089,0.025132262437808143,0.021814803796017468,0.002139689471257408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109665780188726 47.55680579252332, 10.109334199999997 47.55683129624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_18_LVCableDist_mvgd_33532_lvgd_1163940003_2,BranchTee_mvgd_33532_lvgd_1163940003_2,BranchTee_mvgd_33532_lvgd_1163940003_18,0.16446893354909867,0.052630058735711575,0.013485723667259664,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.103497100000002 47.559449996244446, 10.103651499999993 47.559285196244396, 10.1036709 47.559226196244424, 10.103673200000005 47.55916319624439, 10.103656599999995 47.55908729624439, 10.1036039 47.55897579624439, 10.103587499999998 47.558913496244365, 10.104286499999997 47.55908759624438, 10.104502199999997 47.55910909624438, 10.104670699999996 47.559115596244396, 10.104873600000003 47.55911799624436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_18_LVCableDist_mvgd_33532_lvgd_1163940003_building_447207,BranchTee_mvgd_33532_lvgd_1163940003_18,BranchTee_mvgd_33532_lvgd_1163940003_building_447207,0.018704500686062362,0.01623550659550213,0.0015924480846932067,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103741600034075 47.55947959634955, 10.103497100000002 47.559449996244446)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_19_LVCableDist_mvgd_33532_lvgd_1163940003_25,BranchTee_mvgd_33532_lvgd_1163940003_19,BranchTee_mvgd_33532_lvgd_1163940003_25,0.034802905825433716,0.01113692986413879,0.0028536840402102357,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.108659899999996 47.55687349624423, 10.108341299999998 47.55710039624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_19_LVCableDist_mvgd_33532_lvgd_1163940003_9,BranchTee_mvgd_33532_lvgd_1163940003_9,BranchTee_mvgd_33532_lvgd_1163940003_19,0.014370132463487083,0.004598442388315867,0.0011782871772963242,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.108659899999996 47.55687349624423, 10.108502700000003 47.5568001962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_1_LVCableDist_mvgd_33532_lvgd_1163940003_15,BranchTee_mvgd_33532_lvgd_1163940003_1,BranchTee_mvgd_33532_lvgd_1163940003_15,0.021434670778969135,0.006859094649270123,0.0017575480109595892,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107401199999996 47.56060769624451, 10.107289 47.56078499624455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_1_LVCableDist_mvgd_33532_lvgd_1163940003_building_448123,BranchTee_mvgd_33532_lvgd_1163940003_1,BranchTee_mvgd_33532_lvgd_1163940003_building_448123,0.015714044436433327,0.013639790570824128,0.001337849129767396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107491246782383 47.560819804192626, 10.107289 47.56078499624455)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_20_LVCableDist_mvgd_33532_lvgd_1163940003_26,BranchTee_mvgd_33532_lvgd_1163940003_20,BranchTee_mvgd_33532_lvgd_1163940003_26,0.01993262398403467,0.006378439674891094,0.0016343868304577883,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.110054900000002 47.5559764962441, 10.1101772 47.55581739624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_20_LVCableDist_mvgd_33532_lvgd_1163940003_building_448055,BranchTee_mvgd_33532_lvgd_1163940003_20,BranchTee_mvgd_33532_lvgd_1163940003_building_448055,0.023354153122239343,0.02027140491010375,0.0019883062923381966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10987210001439 47.555779846286654, 10.1101772 47.55581739624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_20_LVCableDist_mvgd_33532_lvgd_1163940003_building_448088,BranchTee_mvgd_33532_lvgd_1163940003_20,BranchTee_mvgd_33532_lvgd_1163940003_building_448088,0.017071976983538226,0.01481847602171118,0.0014534596515382925,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110348467219099 47.55591804708257, 10.1101772 47.55581739624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_21_LVCableDist_mvgd_33532_lvgd_1163940003_23,BranchTee_mvgd_33532_lvgd_1163940003_21,BranchTee_mvgd_33532_lvgd_1163940003_23,0.018973410609910354,0.006071491395171313,0.001555735584765126,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1059175 47.55883549624442, 10.106152699999996 47.558896696244354)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_21_LVCableDist_mvgd_33532_lvgd_1163940003_building_447200,BranchTee_mvgd_33532_lvgd_1163940003_21,BranchTee_mvgd_33532_lvgd_1163940003_building_447200,0.031092335988871442,0.026988147638340412,0.0026471132122233283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105903809551123 47.55911997644994, 10.106152699999996 47.558896696244354)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_22_LVCableDist_mvgd_33532_lvgd_1163940003_3,BranchTee_mvgd_33532_lvgd_1163940003_3,BranchTee_mvgd_33532_lvgd_1163940003_22,0.04069783840316346,0.013023308289012308,0.0033370423867678718,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.102466200000007 47.558154496244306, 10.102035300000004 47.55804189624429, 10.101957800000001 47.55803309624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_22_LVCableDist_mvgd_33532_lvgd_1163940003_building_447110,BranchTee_mvgd_33532_lvgd_1163940003_22,BranchTee_mvgd_33532_lvgd_1163940003_building_447110,0.019530905066346745,0.016952825597588976,0.001662805807396094,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101844868731098 47.55787485749006, 10.101957800000001 47.55803309624427)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_23_LVCableDist_mvgd_33532_lvgd_1163940003_24,BranchTee_mvgd_33532_lvgd_1163940003_23,BranchTee_mvgd_33532_lvgd_1163940003_24,0.034636475407861536,0.011083672130515691,0.002840037483545873,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1059175 47.55883549624442, 10.105505599999994 47.55897419624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_24_LVCableDist_mvgd_33532_lvgd_1163940003_3,BranchTee_mvgd_33532_lvgd_1163940003_3,BranchTee_mvgd_33532_lvgd_1163940003_24,0.2638182310345694,0.08442183393106222,0.021631925770682837,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.105505599999994 47.55897419624437, 10.105406900000002 47.558857296244334, 10.105279000000003 47.55883759624434, 10.105117000000003 47.55895099624442, 10.104937800000004 47.558977196244406, 10.104244799999998 47.55871049624436, 10.103599999999993 47.55848599624438, 10.102996899999999 47.558298596244335, 10.102674400000003 47.55821289624431, 10.102466200000007 47.558154496244306)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_25_LVCableDist_mvgd_33532_lvgd_1163940003_building_448042,BranchTee_mvgd_33532_lvgd_1163940003_25,BranchTee_mvgd_33532_lvgd_1163940003_building_448042,0.018320601040303114,0.015902281702983103,0.001559763958778033,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108264734688618 47.55694388806785, 10.108341299999998 47.55710039624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_25_LVCableDist_mvgd_33532_lvgd_1163940003_building_448113,BranchTee_mvgd_33532_lvgd_1163940003_25,BranchTee_mvgd_33532_lvgd_1163940003_building_448113,0.025190692350725144,0.021865520960429426,0.002144664028155513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108006839322742 47.557097722285036, 10.108341299999998 47.55710039624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_25_LVCableDist_mvgd_33532_lvgd_1163940003_building_448131,BranchTee_mvgd_33532_lvgd_1163940003_25,BranchTee_mvgd_33532_lvgd_1163940003_building_448131,0.0201149570724168,0.017459782738857784,0.0017125303370180223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108590405689664 47.55716569498034, 10.108341299999998 47.55710039624423)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_26_LVCableDist_mvgd_33532_lvgd_1163940003_building_448057,BranchTee_mvgd_33532_lvgd_1163940003_26,BranchTee_mvgd_33532_lvgd_1163940003_building_448057,0.00805262073869162,0.006989674801184326,0.0006855772675955789,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110160015679586 47.555989755493776, 10.110054900000002 47.5559764962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_26_LVCableDist_mvgd_33532_lvgd_1163940003_building_448064,BranchTee_mvgd_33532_lvgd_1163940003_26,BranchTee_mvgd_33532_lvgd_1163940003_building_448064,0.01663499861483235,0.014439178797674479,0.0014162565538465932,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11000034951025 47.55612157976656, 10.110054900000002 47.5559764962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_26_LVCableDist_mvgd_33532_lvgd_1163940003_building_448065,BranchTee_mvgd_33532_lvgd_1163940003_26,BranchTee_mvgd_33532_lvgd_1163940003_building_448065,0.027527090841284487,0.023893514850234936,0.00234357836240148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110090560989107 47.55622306503902, 10.110054900000002 47.5559764962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_26_LVCableDist_mvgd_33532_lvgd_1163940003_building_448091,BranchTee_mvgd_33532_lvgd_1163940003_26,BranchTee_mvgd_33532_lvgd_1163940003_building_448091,0.027186292863899182,0.02359770220586449,0.0023145637901622468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110328250005997 47.556136296258984, 10.110054900000002 47.5559764962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_26_LVCableDist_mvgd_33532_lvgd_1163940003_building_448099,BranchTee_mvgd_33532_lvgd_1163940003_26,BranchTee_mvgd_33532_lvgd_1163940003_building_448099,0.026581619439548926,0.023072845673528467,0.0022630836115339575,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110370350005999 47.556083796258946, 10.110054900000002 47.5559764962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_27_LVCableDist_mvgd_33532_lvgd_1163940003_28,BranchTee_mvgd_33532_lvgd_1163940003_27,BranchTee_mvgd_33532_lvgd_1163940003_28,0.014956325894654775,0.004786024286289528,0.0012263524407944324,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107237800000005 47.56042569624451, 10.1073785 47.560520696244524)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_27_LVCableDist_mvgd_33532_lvgd_1163940003_4,BranchTee_mvgd_33532_lvgd_1163940003_4,BranchTee_mvgd_33532_lvgd_1163940003_27,0.203657877496939,0.06517052079902048,0.016699043395720925,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.105110299999998 47.55929529624442, 10.105227500000002 47.55934379624439, 10.1056647 47.559581296244446, 10.106250196425426 47.55989669783918, 10.106835700000005 47.56021209624453, 10.107237800000005 47.56042569624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_27_LVCableDist_mvgd_33532_lvgd_1163940003_building_447212,BranchTee_mvgd_33532_lvgd_1163940003_27,BranchTee_mvgd_33532_lvgd_1163940003_building_447212,0.014988174554227738,0.013009735513069677,0.0012760506288046786,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107074017990493 47.560502345464, 10.107237800000005 47.56042569624451)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_28_LVCableDist_mvgd_33532_lvgd_1163940003_building_34328718,BranchTee_mvgd_33532_lvgd_1163940003_28,BranchTee_mvgd_33532_lvgd_1163940003_building_34328718,0.03397789096555233,0.02949280935809942,0.0028927811705942493,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107828964592349 47.56050333646587, 10.1073785 47.560520696244524)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_29_LVCableDist_mvgd_33532_lvgd_1163940003_7,BranchTee_mvgd_33532_lvgd_1163940003_7,BranchTee_mvgd_33532_lvgd_1163940003_29,0.12782143083848202,0.04090285786831425,0.010480790857240636,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.111216499999998 47.555036496244014, 10.111391000000001 47.55498489624404, 10.1116315 47.55481849624405, 10.111829199999999 47.554718596244015, 10.112113099999998 47.55462149624402, 10.112649099999997 47.554440896243996)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_29_LVCableDist_mvgd_33532_lvgd_1163940003_building_448003,BranchTee_mvgd_33532_lvgd_1163940003_29,BranchTee_mvgd_33532_lvgd_1163940003_building_448003,0.01708504857836325,0.014829822166019302,0.001454572530010291,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.112560206729276 47.55429942672013, 10.112649099999997 47.554440896243996)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_2_LVCableDist_mvgd_33532_lvgd_1163940003_24,BranchTee_mvgd_33532_lvgd_1163940003_2,BranchTee_mvgd_33532_lvgd_1163940003_24,0.05023633860093113,0.016075628352297963,0.004119157130819493,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.104873600000003 47.55911799624436, 10.104969199999994 47.55909959624436, 10.105046100000004 47.55908609624441, 10.1051716 47.5590551962444, 10.105505599999994 47.55897419624437)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_2_LVCableDist_mvgd_33532_lvgd_1163940003_4,BranchTee_mvgd_33532_lvgd_1163940003_2,BranchTee_mvgd_33532_lvgd_1163940003_4,0.027468351468254545,0.008789872469841455,0.0022522830877690523,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.104873600000003 47.55911799624436, 10.104925399999999 47.55919539624436, 10.104965499999997 47.5592305962444, 10.105019800000003 47.55925889624437, 10.105110299999998 47.55929529624442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_30_LVCableDist_mvgd_33532_lvgd_1163940003_32,BranchTee_mvgd_33532_lvgd_1163940003_30,BranchTee_mvgd_33532_lvgd_1163940003_32,0.11935486115495783,0.1036000194825034,0.010161534019812889,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105361600000005 47.55503319624405, 10.105463899999993 47.555167196244, 10.105644299999994 47.55534499624405, 10.105892399999995 47.55556849624406, 10.106084300000004 47.55571849624413, 10.1063184 47.555883996244106)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_30_LVCableDist_mvgd_33532_lvgd_1163940003_35,BranchTee_mvgd_33532_lvgd_1163940003_30,BranchTee_mvgd_33532_lvgd_1163940003_35,0.03696388327324439,0.03208465068117613,0.0031470000781770686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105361600000005 47.55503319624405, 10.105413099999993 47.55497969624406, 10.1054809 47.554909396244014, 10.105604899999996 47.55474479624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_30_LVCableDist_mvgd_33532_lvgd_1163940003_45,BranchTee_mvgd_33532_lvgd_1163940003_30,BranchTee_mvgd_33532_lvgd_1163940003_45,0.175367839584825,0.1522192847596281,0.01493031997757275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103577400000002 47.55404149624392, 10.104047 47.55420959624399, 10.104249000000003 47.554299996243955, 10.104553199999993 47.554459696244, 10.1048679 47.554676696244016, 10.105169899999993 47.55488509624401, 10.105361600000005 47.55503319624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_31_LVCableDist_mvgd_33532_lvgd_1163940003_33,BranchTee_mvgd_33532_lvgd_1163940003_31,BranchTee_mvgd_33532_lvgd_1163940003_33,0.022555908742112808,0.01957852878815392,0.0019203460321000382,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102578500000005 47.55336029624387, 10.1027045 47.55332549624386, 10.102865500000007 47.55334449624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_31_LVCableDist_mvgd_33532_lvgd_1163940003_42,BranchTee_mvgd_33532_lvgd_1163940003_31,BranchTee_mvgd_33532_lvgd_1163940003_42,0.01808061148245873,0.015693970766774177,0.001539331929174568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102865500000007 47.55334449624389, 10.102956099999997 47.553394996243945, 10.103061200000003 47.55343799624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_31_LVCableDist_mvgd_33532_lvgd_1163940003_building_447079,BranchTee_mvgd_33532_lvgd_1163940003_31,BranchTee_mvgd_33532_lvgd_1163940003_building_447079,0.022012855609784096,0.019107158669292596,0.001874112030189049,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102883841689934 47.553146763816706, 10.102865500000007 47.55334449624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_31_LVCableDist_mvgd_33532_lvgd_1163940003_building_447086,BranchTee_mvgd_33532_lvgd_1163940003_31,BranchTee_mvgd_33532_lvgd_1163940003_building_447086,0.020017005768748916,0.01737476100727406,0.0017041910411160818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103045954986985 47.55321222864538, 10.102865500000007 47.55334449624389)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_32_LVCableDist_mvgd_33532_lvgd_1163940003_41,BranchTee_mvgd_33532_lvgd_1163940003_32,BranchTee_mvgd_33532_lvgd_1163940003_41,0.033709475833950356,0.02925982502386891,0.00286992906834376,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1063184 47.555883996244106, 10.1066321 47.55610039624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_32_LVCableDist_mvgd_33532_lvgd_1163940003_building_447162,BranchTee_mvgd_33532_lvgd_1163940003_32,BranchTee_mvgd_33532_lvgd_1163940003_building_447162,0.01403550470149632,0.012182818080898807,0.0011949430222564024,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106342449930647 47.55600926291439, 10.1063184 47.555883996244106)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_33_LVCableDist_mvgd_33532_lvgd_1163940003_43,BranchTee_mvgd_33532_lvgd_1163940003_33,BranchTee_mvgd_33532_lvgd_1163940003_43,0.01642146637480997,0.014253832813335055,0.0013980770251678476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102408799999994 47.55345309624388, 10.102578500000005 47.55336029624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_33_LVCableDist_mvgd_33532_lvgd_1163940003_building_447073,BranchTee_mvgd_33532_lvgd_1163940003_33,BranchTee_mvgd_33532_lvgd_1163940003_building_447073,0.015774552606530108,0.013692311662468135,0.0013430006235814335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102391450942498 47.553296429334594, 10.102578500000005 47.55336029624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_34_LVCableDist_mvgd_33532_lvgd_1163940003_36,BranchTee_mvgd_33532_lvgd_1163940003_34,BranchTee_mvgd_33532_lvgd_1163940003_36,0.3634989975772543,0.3155171298970567,0.030947272648188414,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105725100000006 47.55454969624397, 10.105999599999999 47.554031196243905, 10.106173999999998 47.55357479624385, 10.106255200000001 47.55330869624387, 10.106290199999998 47.553201496243894, 10.106334799999997 47.55315829624386, 10.106396799999999 47.553137996243834, 10.106460600000002 47.55313559624387, 10.106542999999993 47.55315349624387, 10.106732500000001 47.553196896243904, 10.106854500000008 47.553213896243854, 10.106922999999993 47.55321369624389, 10.1070144 47.55319449624386, 10.107172899999993 47.553161196243884, 10.1072636 47.553142196243904, 10.107387 47.55309379624385, 10.107607400000004 47.55312429624384, 10.107887000000005 47.553189896243886, 10.108165199999995 47.55326959624388, 10.1083543 47.55329859624389, 10.108894499999998 47.553365996243855)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_34_LVCableDist_mvgd_33532_lvgd_1163940003_building_447999,BranchTee_mvgd_33532_lvgd_1163940003_34,BranchTee_mvgd_33532_lvgd_1163940003_building_447999,0.012085620264363708,0.010490318389467698,0.001028935397171886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109018935715214 47.55329731597324, 10.108894499999998 47.553365996243855)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_35_LVCableDist_mvgd_33532_lvgd_1163940003_36,BranchTee_mvgd_33532_lvgd_1163940003_35,BranchTee_mvgd_33532_lvgd_1163940003_36,0.023491147438731423,0.020390315976818875,0.0019999695995054512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105725100000006 47.55454969624397, 10.105604899999996 47.55474479624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_35_LVCableDist_mvgd_33532_lvgd_1163940003_building_447177,BranchTee_mvgd_33532_lvgd_1163940003_35,BranchTee_mvgd_33532_lvgd_1163940003_building_447177,0.028337914579082666,0.024597309854643753,0.002412609593437903,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1053039826529 47.554591696282046, 10.105604899999996 47.55474479624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_35_LVCableDist_mvgd_33532_lvgd_1163940003_building_447179,BranchTee_mvgd_33532_lvgd_1163940003_35,BranchTee_mvgd_33532_lvgd_1163940003_building_447179,0.018514034370428666,0.016070181833532083,0.0015762323233307308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105359379220463 47.55473658852412, 10.105604899999996 47.55474479624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_36_LVCableDist_mvgd_33532_lvgd_1163940003_building_447084,BranchTee_mvgd_33532_lvgd_1163940003_36,BranchTee_mvgd_33532_lvgd_1163940003_building_447084,0.02956008452025429,0.025658153363580724,0.0025166616723815874,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105699900007409 47.55428419625943, 10.105725100000006 47.55454969624397)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_37_LVCableDist_mvgd_33532_lvgd_1163940003_38,BranchTee_mvgd_33532_lvgd_1163940003_37,BranchTee_mvgd_33532_lvgd_1163940003_38,0.026255780664832976,0.022790017617075022,0.0022353426233395046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102521500000003 47.55354649624393, 10.102770900000007 47.5537115962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_37_LVCableDist_mvgd_33532_lvgd_1163940003_43,BranchTee_mvgd_33532_lvgd_1163940003_37,BranchTee_mvgd_33532_lvgd_1163940003_43,0.013407039506868943,0.011637310291962242,0.001141437279853642,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102408799999994 47.55345309624388, 10.102521500000003 47.55354649624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_37_LVCableDist_mvgd_33532_lvgd_1163940003_building_447052,BranchTee_mvgd_33532_lvgd_1163940003_37,BranchTee_mvgd_33532_lvgd_1163940003_building_447052,0.015687564235610737,0.01361680575651012,0.0013355946806489734,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102721915275861 47.55350804277406, 10.102521500000003 47.55354649624393)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_38_LVCableDist_mvgd_33532_lvgd_1163940003_44,BranchTee_mvgd_33532_lvgd_1163940003_38,BranchTee_mvgd_33532_lvgd_1163940003_44,0.03680185967001296,0.03194401419357125,0.0031332058485971665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102770900000007 47.5537115962439, 10.1031839 47.55388859624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_38_LVCableDist_mvgd_33532_lvgd_1163940003_building_447056,BranchTee_mvgd_33532_lvgd_1163940003_38,BranchTee_mvgd_33532_lvgd_1163940003_building_447056,0.008184311873280252,0.007103982706007259,0.0006967890769117724,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10268426535609 47.55375606283197, 10.102770900000007 47.5537115962439)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_39_LVCableDist_mvgd_33532_lvgd_1163940003_40,BranchTee_mvgd_33532_lvgd_1163940003_39,BranchTee_mvgd_33532_lvgd_1163940003_40,0.03714757930968636,0.03224409884080776,0.0031626394371905772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1016323 47.55293419624386, 10.101955399999994 47.55318679624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_39_LVCableDist_mvgd_33532_lvgd_1163940003_building_447057,BranchTee_mvgd_33532_lvgd_1163940003_39,BranchTee_mvgd_33532_lvgd_1163940003_building_447057,0.018116789046791263,0.015725372892614817,0.0015424119842905612,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10162175002308 47.55309709629373, 10.1016323 47.55293419624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_39_LVCableDist_mvgd_33532_lvgd_1163940003_building_447065,BranchTee_mvgd_33532_lvgd_1163940003_39,BranchTee_mvgd_33532_lvgd_1163940003_building_447065,0.023337119854358573,0.02025662003358324,0.0019868561282697698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10193940000805 47.552962096309784, 10.1016323 47.55293419624386)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_3_LVCableDist_mvgd_33532_lvgd_1163940003_building_447175,BranchTee_mvgd_33532_lvgd_1163940003_3,BranchTee_mvgd_33532_lvgd_1163940003_building_447175,0.02272507611062721,0.01972536606402442,0.0019347484615743562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102379625071794 47.55795856540067, 10.102466200000007 47.558154496244306)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_40_LVCableDist_mvgd_33532_lvgd_1163940003_43,BranchTee_mvgd_33532_lvgd_1163940003_40,BranchTee_mvgd_33532_lvgd_1163940003_43,0.04518493388497226,0.03922052261215592,0.00384691698697577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101955399999994 47.55318679624383, 10.102408799999994 47.55345309624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_40_LVCableDist_mvgd_33532_lvgd_1163940003_building_447067,BranchTee_mvgd_33532_lvgd_1163940003_40,BranchTee_mvgd_33532_lvgd_1163940003_building_447067,0.024538908461066013,0.0212997725442053,0.00208917299826157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102269957186184 47.55324431903717, 10.101955399999994 47.55318679624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_40_LVCableDist_mvgd_33532_lvgd_1163940003_building_447072,BranchTee_mvgd_33532_lvgd_1163940003_40,BranchTee_mvgd_33532_lvgd_1163940003_building_447072,0.01668437230348675,0.014482035159426499,0.001420460089522396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101978366813555 47.55333615082549, 10.101955399999994 47.55318679624383)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_41_LVCableDist_mvgd_33532_lvgd_1163940003_building_447163,BranchTee_mvgd_33532_lvgd_1163940003_41,BranchTee_mvgd_33532_lvgd_1163940003_building_447163,0.021401176697065656,0.018576221373052988,0.0018220354241702886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106434511520495 47.55623883221237, 10.1066321 47.55610039624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_41_LVStation_mvgd_33532_lvgd_1163940003,BusBar_mvgd_33532_lvgd_1163940003_LV,BranchTee_mvgd_33532_lvgd_1163940003_41,0.14913310502441518,0.12944753516119237,0.012696769159812096,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1066321 47.55610039624415, 10.106873000000009 47.556257196244154, 10.1070859 47.55638549624417, 10.107231899999995 47.55645049624415, 10.1077097 47.55657899624414, 10.107986899999998 47.556643896244175, 10.108337700000003 47.55674169624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_42_LVCableDist_mvgd_33532_lvgd_1163940003_building_447053,BranchTee_mvgd_33532_lvgd_1163940003_42,BranchTee_mvgd_33532_lvgd_1163940003_building_447053,0.009758161039281123,0.008470083782096014,0.0008307821266092517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103187820474597 47.55341938902018, 10.103061200000003 47.55343799624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_42_LVCableDist_mvgd_33532_lvgd_1163940003_building_447054,BranchTee_mvgd_33532_lvgd_1163940003_42,BranchTee_mvgd_33532_lvgd_1163940003_building_447054,0.0162920205806034,0.014141473863963751,0.0013870563777570646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1029891000013 47.553576246249165, 10.103061200000003 47.55343799624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_42_LVCableDist_mvgd_33532_lvgd_1163940003_building_447070,BranchTee_mvgd_33532_lvgd_1163940003_42,BranchTee_mvgd_33532_lvgd_1163940003_building_447070,0.0202752080887058,0.017598880620996633,0.0017261736535781756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103321509829462 47.553391487933595, 10.103061200000003 47.55343799624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_42_LVCableDist_mvgd_33532_lvgd_1163940003_building_447071,BranchTee_mvgd_33532_lvgd_1163940003_42,BranchTee_mvgd_33532_lvgd_1163940003_building_447071,0.02515504823778498,0.02183458187039736,0.0021416293895765506,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103303100003153 47.55359409625453, 10.103061200000003 47.55343799624387)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_43_LVCableDist_mvgd_33532_lvgd_1163940003_building_447075,BranchTee_mvgd_33532_lvgd_1163940003_43,BranchTee_mvgd_33532_lvgd_1163940003_building_447075,0.01376988235952729,0.011952257888069688,0.0011723286901862877,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102282099996414 47.55354244626269, 10.102408799999994 47.55345309624388)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_44_LVCableDist_mvgd_33532_lvgd_1163940003_45,BranchTee_mvgd_33532_lvgd_1163940003_44,BranchTee_mvgd_33532_lvgd_1163940003_45,0.03416140749607295,0.02965210170659132,0.0029084052469832474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1031839 47.55388859624395, 10.103577400000002 47.55404149624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_44_LVCableDist_mvgd_33532_lvgd_1163940003_building_447063,BranchTee_mvgd_33532_lvgd_1163940003_44,BranchTee_mvgd_33532_lvgd_1163940003_building_447063,0.020778985093617107,0.01803615906125965,0.001769063797509218,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102921461677271 47.553946284012454, 10.1031839 47.55388859624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_44_LVCableDist_mvgd_33532_lvgd_1163940003_building_447064,BranchTee_mvgd_33532_lvgd_1163940003_44,BranchTee_mvgd_33532_lvgd_1163940003_building_447064,0.019392691628056156,0.01683285633315274,0.001651038707660108,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10319895042677 47.554062837504326, 10.1031839 47.55388859624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_44_LVCableDist_mvgd_33532_lvgd_1163940003_building_447076,BranchTee_mvgd_33532_lvgd_1163940003_44,BranchTee_mvgd_33532_lvgd_1163940003_building_447076,0.03012756642128621,0.026150727653676428,0.0025649754703045502,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103461100000196 47.553693096246505, 10.1031839 47.55388859624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_44_LVCableDist_mvgd_33532_lvgd_1163940003_building_447078,BranchTee_mvgd_33532_lvgd_1163940003_44,BranchTee_mvgd_33532_lvgd_1163940003_building_447078,0.01257217370822756,0.010912646778741522,0.0010703591760145485,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103333133037603 47.55383789594533, 10.1031839 47.55388859624395)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_45_LVCableDist_mvgd_33532_lvgd_1163940003_building_447081,BranchTee_mvgd_33532_lvgd_1163940003_45,BranchTee_mvgd_33532_lvgd_1163940003_building_447081,0.01904629250234415,0.01653218189203472,0.0016215472695544908,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103346700255129 47.5541117128138, 10.103577400000002 47.55404149624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_45_LVCableDist_mvgd_33532_lvgd_1163940003_building_447083,BranchTee_mvgd_33532_lvgd_1163940003_45,BranchTee_mvgd_33532_lvgd_1163940003_building_447083,0.015307416732026017,0.013286837723398583,0.0013032300014658785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103442053706004 47.55414427833497, 10.103577400000002 47.55404149624392)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_46_LVCableDist_mvgd_33532_lvgd_1163940003_47,BranchTee_mvgd_33532_lvgd_1163940003_46,BranchTee_mvgd_33532_lvgd_1163940003_47,0.007832496203928837,0.0025063987852572277,0.0006422299771252055,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.106633499999996 47.556628396244186, 10.106731499999999 47.556604796244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_46_LVCableDist_mvgd_33532_lvgd_1163940003_62,BranchTee_mvgd_33532_lvgd_1163940003_46,BranchTee_mvgd_33532_lvgd_1163940003_62,0.02455054431379846,0.007856174180415508,0.002013035832070144,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.106731499999999 47.556604796244144, 10.106928300000002 47.55656059624418, 10.107007000000001 47.55650039624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_46_LVCableDist_mvgd_33532_lvgd_1163940003_building_447183,BranchTee_mvgd_33532_lvgd_1163940003_46,BranchTee_mvgd_33532_lvgd_1163940003_building_447183,0.014238705983338262,0.012359196793537612,0.001212243002486162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10678146895104 47.55672839025856, 10.106731499999999 47.556604796244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_47_LVCableDist_mvgd_33532_lvgd_1163940003_52,BranchTee_mvgd_33532_lvgd_1163940003_47,BranchTee_mvgd_33532_lvgd_1163940003_52,0.021185274309288113,0.006779287778972196,0.0017370986057063816,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.106493699999994 47.55678709624421, 10.106559200000001 47.55666959624417, 10.106633499999996 47.556628396244186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_47_LVCableDist_mvgd_33532_lvgd_1163940003_building_447171,BranchTee_mvgd_33532_lvgd_1163940003_47,BranchTee_mvgd_33532_lvgd_1163940003_building_447171,0.012931926297461788,0.011224912026196831,0.0011009874900927935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10657356949514 47.55651932619361, 10.106633499999996 47.556628396244186)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_48_LVCableDist_mvgd_33532_lvgd_1163940003_51,BranchTee_mvgd_33532_lvgd_1163940003_48,BranchTee_mvgd_33532_lvgd_1163940003_51,0.015935139661454323,0.005099244691665383,0.0013066108318225938,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107394500000007 47.5571990962442, 10.107390899999999 47.55705569624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_48_LVCableDist_mvgd_33532_lvgd_1163940003_60,BranchTee_mvgd_33532_lvgd_1163940003_48,BranchTee_mvgd_33532_lvgd_1163940003_60,0.024797122669835376,0.00793507925434732,0.0020332541644936856,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107390899999999 47.55705569624421, 10.107495599999995 47.55684409624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_48_LVCableDist_mvgd_33532_lvgd_1163940003_building_447187,BranchTee_mvgd_33532_lvgd_1163940003_48,BranchTee_mvgd_33532_lvgd_1163940003_building_447187,0.020612161798305675,0.017891356440929325,0.001754860935772371,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107127150004441 47.557105246269124, 10.107390899999999 47.55705569624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_48_LVCableDist_mvgd_33532_lvgd_1163940003_building_448019,BranchTee_mvgd_33532_lvgd_1163940003_48,BranchTee_mvgd_33532_lvgd_1163940003_building_448019,0.021807993867751663,0.018929338677208443,0.001856670683092863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107670894289253 47.55700563496373, 10.107390899999999 47.55705569624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_49_LVCableDist_mvgd_33532_lvgd_1163940003_60,BranchTee_mvgd_33532_lvgd_1163940003_49,BranchTee_mvgd_33532_lvgd_1163940003_60,0.024648490981700112,0.007887517114144036,0.0020210670247637853,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107495599999995 47.55684409624425, 10.107613700000002 47.55663719624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_49_LVCableDist_mvgd_33532_lvgd_1163940003_63,BranchTee_mvgd_33532_lvgd_1163940003_49,BranchTee_mvgd_33532_lvgd_1163940003_63,0.009699710627249338,0.003103907400719788,0.0007953332848261989,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107613700000002 47.55663719624416, 10.1077097 47.55657899624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_49_LVCableDist_mvgd_33532_lvgd_1163940003_building_447181,BranchTee_mvgd_33532_lvgd_1163940003_49,BranchTee_mvgd_33532_lvgd_1163940003_building_447181,0.01971502405737898,0.017112640881804954,0.0016784811755626127,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107360565461574 47.55668241742235, 10.107613700000002 47.55663719624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_49_LVCableDist_mvgd_33532_lvgd_1163940003_building_448045,BranchTee_mvgd_33532_lvgd_1163940003_49,BranchTee_mvgd_33532_lvgd_1163940003_building_448045,0.018210911135950216,0.015807070866004788,0.0015504252717406873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107762987215516 47.55676612792825, 10.107613700000002 47.55663719624416)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_4_LVCableDist_mvgd_33532_lvgd_1163940003_5,BranchTee_mvgd_33532_lvgd_1163940003_4,BranchTee_mvgd_33532_lvgd_1163940003_5,0.07071760845233462,0.022629634704747076,0.005798530490944971,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.105110299999998 47.55929529624442, 10.1051192 47.55933299624445, 10.105094600000003 47.55937569624441, 10.105063700000004 47.55940289624437, 10.105017999999996 47.55941019624444, 10.104953500000004 47.559404696244414, 10.104872800000003 47.55939199624443, 10.104774400000004 47.559377496244416, 10.104651699999993 47.5593843962444, 10.104524000000005 47.559429196244444, 10.104386000000005 47.559529196244426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_50_LVCableDist_mvgd_33532_lvgd_1163940003_63,BranchTee_mvgd_33532_lvgd_1163940003_50,BranchTee_mvgd_33532_lvgd_1163940003_63,0.022087244972365114,0.007067918391156836,0.001811056202778051,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1077097 47.55657899624414, 10.107986899999998 47.556643896244175)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_50_LVCableDist_mvgd_33532_lvgd_1163940003_building_448022,BranchTee_mvgd_33532_lvgd_1163940003_50,BranchTee_mvgd_33532_lvgd_1163940003_building_448022,0.011528849307033663,0.010007041198505219,0.000981533498586392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107982633936063 47.55674761906583, 10.107986899999998 47.556643896244175)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_50_LVCableDist_mvgd_33532_lvgd_1163940003_building_448023,BranchTee_mvgd_33532_lvgd_1163940003_50,BranchTee_mvgd_33532_lvgd_1163940003_building_448023,0.015875732028297063,0.01378013540056185,0.0013516147522934184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108041480898109 47.556781908064, 10.107986899999998 47.556643896244175)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_50_LVCableDist_mvgd_33532_lvgd_1163940003_building_448030,BranchTee_mvgd_33532_lvgd_1163940003_50,BranchTee_mvgd_33532_lvgd_1163940003_building_448030,0.016436054806105015,0.014266495571699152,0.0013993190427904717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10820335000166 47.5566249962535, 10.107986899999998 47.556643896244175)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_50_LVCableDist_mvgd_33532_lvgd_1163940003_building_448039,BranchTee_mvgd_33532_lvgd_1163940003_50,BranchTee_mvgd_33532_lvgd_1163940003_building_448039,0.016457902373357522,0.014285459260074329,0.0014011790826391902,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10797610984361 47.55649595131686, 10.107986899999998 47.556643896244175)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_50_LVCableDist_mvgd_33532_lvgd_1163940003_building_448041,BranchTee_mvgd_33532_lvgd_1163940003_50,BranchTee_mvgd_33532_lvgd_1163940003_building_448041,0.010591664410691403,0.009193564708480139,0.0009017442372619394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10807180000044 47.55656789624642, 10.107986899999998 47.556643896244175)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_50_LVStation_mvgd_33532_lvgd_1163940003,BusBar_mvgd_33532_lvgd_1163940003_LV,BranchTee_mvgd_33532_lvgd_1163940003_50,0.02856748289871109,0.00914159452758755,0.002342406994000328,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.108337700000003 47.55674169624417, 10.107986899999998 47.556643896244175)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_51_LVCableDist_mvgd_33532_lvgd_1163940003_55,BranchTee_mvgd_33532_lvgd_1163940003_51,BranchTee_mvgd_33532_lvgd_1163940003_55,0.016087532505088223,0.005148010401628231,0.0013191063696349136,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107363900000005 47.557342396244245, 10.107394500000007 47.5571990962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_51_LVCableDist_mvgd_33532_lvgd_1163940003_building_447194,BranchTee_mvgd_33532_lvgd_1163940003_51,BranchTee_mvgd_33532_lvgd_1163940003_building_447194,0.011768771323737784,0.010215293509004396,0.0010019597779289302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107253074535596 47.557244155508506, 10.107394500000007 47.5571990962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_51_LVCableDist_mvgd_33532_lvgd_1163940003_building_448105,BranchTee_mvgd_33532_lvgd_1163940003_51,BranchTee_mvgd_33532_lvgd_1163940003_building_448105,0.019339758787354607,0.0167869106274238,0.0016465321558837562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107612232558498 47.55729137560904, 10.107394500000007 47.5571990962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_52_LVCableDist_mvgd_33532_lvgd_1163940003_57,BranchTee_mvgd_33532_lvgd_1163940003_52,BranchTee_mvgd_33532_lvgd_1163940003_57,0.014193863317447403,0.004542036261583169,0.0011638338885003258,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1063544 47.55684239624419, 10.106361799999998 47.556821796244215, 10.1063784 47.55680369624421, 10.106402599999994 47.55679019624421, 10.106431999999996 47.55678249624423, 10.106463400000003 47.55678139624416, 10.106493699999994 47.55678709624421)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_52_LVCableDist_mvgd_33532_lvgd_1163940003_58,BranchTee_mvgd_33532_lvgd_1163940003_52,BranchTee_mvgd_33532_lvgd_1163940003_58,0.010209821717595598,0.0032671429496305914,0.0008371601335542024,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.106493699999994 47.55678709624421, 10.106521700000004 47.55680009624418, 10.1065414 47.55681879624419, 10.106550500000003 47.55684089624421, 10.106548 47.5568637962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_53_LVCableDist_mvgd_33532_lvgd_1163940003_63,BranchTee_mvgd_33532_lvgd_1163940003_53,BranchTee_mvgd_33532_lvgd_1163940003_63,0.03871396207901852,0.012388467865285926,0.003174373320214639,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1077097 47.55657899624414, 10.107231899999995 47.55645049624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_53_LVCableDist_mvgd_33532_lvgd_1163940003_64,BranchTee_mvgd_33532_lvgd_1163940003_53,BranchTee_mvgd_33532_lvgd_1163940003_64,0.013155585779055227,0.004209787449297673,0.0010786997317296218,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1070859 47.55638549624417, 10.107231899999995 47.55645049624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_53_LVCableDist_mvgd_33532_lvgd_1163940003_building_448033,BranchTee_mvgd_33532_lvgd_1163940003_53,BranchTee_mvgd_33532_lvgd_1163940003_building_448033,0.020027384430675168,0.017383769685826046,0.0017050746509265512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107485224247345 47.556395666727305, 10.107231899999995 47.55645049624415)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_54_LVCableDist_mvgd_33532_lvgd_1163940003_56,BranchTee_mvgd_33532_lvgd_1163940003_54,BranchTee_mvgd_33532_lvgd_1163940003_56,0.018645631537984823,0.005966602092155143,0.001528859153499285,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.106372100000002 47.55714659624419, 10.1063634 47.55719409624423, 10.106373799999997 47.55723379624423, 10.106453500000004 47.557292296244256)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_54_LVCableDist_mvgd_33532_lvgd_1163940003_58,BranchTee_mvgd_33532_lvgd_1163940003_54,BranchTee_mvgd_33532_lvgd_1163940003_58,0.03508213134325604,0.011226282029841932,0.002876579295216405,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.106548 47.5568637962442, 10.106533999999998 47.556884696244175, 10.106510399999996 47.556901196244176, 10.106479800000006 47.55691129624418, 10.106464799999996 47.55696309624418, 10.106372100000002 47.55714659624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_54_LVCableDist_mvgd_33532_lvgd_1163940003_building_447184,BranchTee_mvgd_33532_lvgd_1163940003_54,BranchTee_mvgd_33532_lvgd_1163940003_building_447184,0.01851071275928228,0.01606729867505702,0.001575949530788073,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106616896054627 47.55713164423666, 10.106372100000002 47.55714659624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_54_LVCableDist_mvgd_33532_lvgd_1163940003_building_447225,BranchTee_mvgd_33532_lvgd_1163940003_54,BranchTee_mvgd_33532_lvgd_1163940003_building_447225,0.010593788616744749,0.009195408519334442,0.0009019250861345139,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10627007263388 47.5570809610737, 10.106372100000002 47.55714659624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_54_LVCableDist_mvgd_33532_lvgd_1163940003_building_447229,BranchTee_mvgd_33532_lvgd_1163940003_54,BranchTee_mvgd_33532_lvgd_1163940003_building_447229,0.01003677100424204,0.008711917231682091,0.0008545021880278949,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10648480304534 47.55709838272817, 10.106372100000002 47.55714659624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_55_LVCableDist_mvgd_33532_lvgd_1163940003_59,BranchTee_mvgd_33532_lvgd_1163940003_55,BranchTee_mvgd_33532_lvgd_1163940003_59,0.010329289536257159,0.003305372651602291,0.0008469559652339836,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107302700000002 47.55742559624426, 10.107363900000005 47.557342396244245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_55_LVCableDist_mvgd_33532_lvgd_1163940003_building_448108,BranchTee_mvgd_33532_lvgd_1163940003_55,BranchTee_mvgd_33532_lvgd_1163940003_building_448108,0.02968167274455274,0.02576369194227178,0.0025270133485987235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10775785000708 47.557334596272234, 10.107363900000005 47.557342396244245)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_56_LVCableDist_mvgd_33532_lvgd_1163940003_building_447186,BranchTee_mvgd_33532_lvgd_1163940003_56,BranchTee_mvgd_33532_lvgd_1163940003_building_447186,0.025874248965503232,0.022458848102056804,0.002202860097660531,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106746413328404 47.557170587587414, 10.106453500000004 47.557292296244256)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_57_LVCableDist_mvgd_33532_lvgd_1163940003_61,BranchTee_mvgd_33532_lvgd_1163940003_57,BranchTee_mvgd_33532_lvgd_1163940003_61,0.004723577711527595,0.0015115448676888306,0.0003873124386708047,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.106369500000003 47.556883096244235, 10.106357100000004 47.55686359624421, 10.1063544 47.55684239624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_57_LVCableDist_mvgd_33532_lvgd_1163940003_building_447174,BranchTee_mvgd_33532_lvgd_1163940003_57,BranchTee_mvgd_33532_lvgd_1163940003_building_447174,0.015397985865178553,0.013365451730974984,0.0013109408003287718,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10615341141052 47.556816991788715, 10.1063544 47.55684239624419)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_58_LVCableDist_mvgd_33532_lvgd_1163940003_building_447176,BranchTee_mvgd_33532_lvgd_1163940003_58,BranchTee_mvgd_33532_lvgd_1163940003_building_447176,0.014030388374501112,0.012178377109066964,0.0011945074327017315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10672630633457 47.5569003753518, 10.106548 47.5568637962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_59_LVCableDist_mvgd_33532_lvgd_1163940003_building_447193,BranchTee_mvgd_33532_lvgd_1163940003_59,BranchTee_mvgd_33532_lvgd_1163940003_building_447193,0.01863492990132975,0.016175119154354222,0.0015865250255986322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107104737923489 47.557324981033375, 10.107302700000002 47.55742559624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_59_LVCableDist_mvgd_33532_lvgd_1163940003_building_448122,BranchTee_mvgd_33532_lvgd_1163940003_59,BranchTee_mvgd_33532_lvgd_1163940003_building_448122,0.019795909501562906,0.017182849447356603,0.001685367532639561,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107514971850057 47.55753066991113, 10.107302700000002 47.55742559624426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_5_LVCableDist_mvgd_33532_lvgd_1163940003_6,BranchTee_mvgd_33532_lvgd_1163940003_5,BranchTee_mvgd_33532_lvgd_1163940003_6,0.02151937505124009,0.006886200016396829,0.001764493385898385,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.104386000000005 47.559529196244426, 10.104237800000005 47.559694796244436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_5_LVCableDist_mvgd_33532_lvgd_1163940003_building_447221,BranchTee_mvgd_33532_lvgd_1163940003_5,BranchTee_mvgd_33532_lvgd_1163940003_building_447221,0.01771899168501445,0.015380084782592543,0.001508544646290487,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104506566257148 47.55966613987383, 10.104386000000005 47.559529196244426)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_60_LVCableDist_mvgd_33532_lvgd_1163940003_building_447170,BranchTee_mvgd_33532_lvgd_1163940003_60,BranchTee_mvgd_33532_lvgd_1163940003_building_447170,0.008516465164065316,0.007392291762408694,0.0007250676650768849,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107390058964079 47.55681657746444, 10.107495599999995 47.55684409624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_60_LVCableDist_mvgd_33532_lvgd_1163940003_building_447188,BranchTee_mvgd_33532_lvgd_1163940003_60,BranchTee_mvgd_33532_lvgd_1163940003_building_447188,0.02111791922261076,0.01833035388522614,0.0017979196869880151,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10722156225207 47.556884375881374, 10.107495599999995 47.55684409624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_60_LVCableDist_mvgd_33532_lvgd_1163940003_building_447189,BranchTee_mvgd_33532_lvgd_1163940003_60,BranchTee_mvgd_33532_lvgd_1163940003_building_447189,0.009672572977243823,0.008395793344247638,0.0008234954019994116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107417532255745 47.55677497156472, 10.107495599999995 47.55684409624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_60_LVCableDist_mvgd_33532_lvgd_1163940003_building_448017,BranchTee_mvgd_33532_lvgd_1163940003_60,BranchTee_mvgd_33532_lvgd_1163940003_building_448017,0.01595478585428964,0.013848754121523409,0.0013583451705976802,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107705549087449 47.5568249072474, 10.107495599999995 47.55684409624425)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_61_LVCableDist_mvgd_33532_lvgd_1163940003_building_447157,BranchTee_mvgd_33532_lvgd_1163940003_61,BranchTee_mvgd_33532_lvgd_1163940003_building_447157,0.02955141477786687,0.025650628027188444,0.0025159235551288814,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106006350009233 47.55698384626885, 10.106369500000003 47.556883096244235)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_62_LVCableDist_mvgd_33532_lvgd_1163940003_64,BranchTee_mvgd_33532_lvgd_1163940003_62,BranchTee_mvgd_33532_lvgd_1163940003_64,0.014081210277347522,0.004505987288751207,0.0011545968384612667,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1070859 47.55638549624417, 10.107007000000001 47.55650039624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_62_LVCableDist_mvgd_33532_lvgd_1163940003_building_447180,BranchTee_mvgd_33532_lvgd_1163940003_62,BranchTee_mvgd_33532_lvgd_1163940003_building_447180,0.01354320434752485,0.01175550137365157,0.0011530299678031593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10684224998824 47.556451546284265, 10.107007000000001 47.55650039624417)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_63_LVCableDist_mvgd_33532_lvgd_1163940003_building_448034,BranchTee_mvgd_33532_lvgd_1163940003_63,BranchTee_mvgd_33532_lvgd_1163940003_building_448034,0.014602871989894696,0.012675292887228596,0.001243247062385141,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107869164926214 47.55650422447865, 10.1077097 47.55657899624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_65_LVCableDist_mvgd_33532_lvgd_1163940003_68,BranchTee_mvgd_33532_lvgd_1163940003_65,BranchTee_mvgd_33532_lvgd_1163940003_68,0.014676873990537059,0.012739526623786166,0.0012495473826216606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108928099999996 47.556459896244135, 10.109062900000003 47.556364496244115)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_65_LVCableDist_mvgd_33532_lvgd_1163940003_69,BranchTee_mvgd_33532_lvgd_1163940003_65,BranchTee_mvgd_33532_lvgd_1163940003_69,0.015501098058892472,0.013454953115118665,0.0013197194797570123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108731499999994 47.55650119624411, 10.108928099999996 47.556459896244135)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_65_LVCableDist_mvgd_33532_lvgd_1163940003_building_448067,BranchTee_mvgd_33532_lvgd_1163940003_65,BranchTee_mvgd_33532_lvgd_1163940003_building_448067,0.018374725574177134,0.015949261798385753,0.0015643719679277678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109000150000414 47.5566178962699, 10.108928099999996 47.556459896244135)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_65_LVCableDist_mvgd_33532_lvgd_1163940003_building_448069,BranchTee_mvgd_33532_lvgd_1163940003_65,BranchTee_mvgd_33532_lvgd_1163940003_building_448069,0.02150725333805384,0.018668295897430732,0.0018310664882231341,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109086300000437 47.5566210462699, 10.108928099999996 47.556459896244135)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_66_LVCableDist_mvgd_33532_lvgd_1163940003_71,BranchTee_mvgd_33532_lvgd_1163940003_66,BranchTee_mvgd_33532_lvgd_1163940003_71,0.010860788810832798,0.009427164687802869,0.0009246567246221991,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109329799999996 47.55596939624412, 10.109337799999999 47.5558717962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_66_LVCableDist_mvgd_33532_lvgd_1163940003_building_448015,BranchTee_mvgd_33532_lvgd_1163940003_66,BranchTee_mvgd_33532_lvgd_1163940003_building_448015,0.02836520646897551,0.024620999215070744,0.00241493314745931,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109232071153041 47.55562677010016, 10.109337799999999 47.5558717962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_66_LVCableDist_mvgd_33532_lvgd_1163940003_building_448048,BranchTee_mvgd_33532_lvgd_1163940003_66,BranchTee_mvgd_33532_lvgd_1163940003_building_448048,0.0154521490941227,0.013412465413698503,0.0013155521038669185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109542909063189 47.55587518114626, 10.109337799999999 47.5558717962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_67_LVCableDist_mvgd_33532_lvgd_1163940003_68,BranchTee_mvgd_33532_lvgd_1163940003_67,BranchTee_mvgd_33532_lvgd_1163940003_68,0.013008215606891646,0.011291131146781949,0.0011074825453056105,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109062900000003 47.556364496244115, 10.109152000000003 47.55626419624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_67_LVCableDist_mvgd_33532_lvgd_1163940003_70,BranchTee_mvgd_33532_lvgd_1163940003_67,BranchTee_mvgd_33532_lvgd_1163940003_70,0.033165708143551395,0.02878783466860261,0.002823634230987363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109152000000003 47.55626419624409, 10.1093281 47.5559905962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_67_LVCableDist_mvgd_33532_lvgd_1163940003_building_448047,BranchTee_mvgd_33532_lvgd_1163940003_67,BranchTee_mvgd_33532_lvgd_1163940003_building_448047,0.020466572763318914,0.017764985158560818,0.001742465898673639,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109418844207793 47.556229337035006, 10.109152000000003 47.55626419624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_67_LVCableDist_mvgd_33532_lvgd_1163940003_building_448060,BranchTee_mvgd_33532_lvgd_1163940003_67,BranchTee_mvgd_33532_lvgd_1163940003_building_448060,0.01668654853383786,0.014483924127371262,0.0014206453675959805,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108934345174712 47.556236123407785, 10.109152000000003 47.55626419624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_67_LVCableDist_mvgd_33532_lvgd_1163940003_building_448063,BranchTee_mvgd_33532_lvgd_1163940003_67,BranchTee_mvgd_33532_lvgd_1163940003_building_448063,0.009061806241430671,0.007865647817561822,0.0007714964561326171,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109269840495811 47.556247715931775, 10.109152000000003 47.55626419624409)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_68_LVCableDist_mvgd_33532_lvgd_1163940003_building_448070,BranchTee_mvgd_33532_lvgd_1163940003_68,BranchTee_mvgd_33532_lvgd_1163940003_building_448070,0.017402011146435376,0.015104945675105907,0.001481557823171418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109259376522902 47.556446916308474, 10.109062900000003 47.556364496244115)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_69_LVCableDist_mvgd_33532_lvgd_1163940003_73,BranchTee_mvgd_33532_lvgd_1163940003_69,BranchTee_mvgd_33532_lvgd_1163940003_73,0.028536548526779164,0.024769724121244313,0.0024295207238055816,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108421399999997 47.55661019624414, 10.108482599999995 47.55654239624415, 10.108569899999999 47.5565099962442, 10.108731499999994 47.55650119624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_69_LVCableDist_mvgd_33532_lvgd_1163940003_building_448031,BranchTee_mvgd_33532_lvgd_1163940003_69,BranchTee_mvgd_33532_lvgd_1163940003_building_448031,0.014673584564949887,0.012736671402376502,0.0012492673302661366,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108686326581985 47.55637272978782, 10.108731499999994 47.55650119624411)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_6_LVCableDist_mvgd_33532_lvgd_1163940003_building_447204,BranchTee_mvgd_33532_lvgd_1163940003_6,BranchTee_mvgd_33532_lvgd_1163940003_building_447204,0.02591341932822043,0.022492847976895332,0.002206194951134178,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104475531196366 47.55986340595176, 10.104237800000005 47.559694796244436)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_70_LVCableDist_mvgd_33532_lvgd_1163940003_71,BranchTee_mvgd_33532_lvgd_1163940003_70,BranchTee_mvgd_33532_lvgd_1163940003_71,0.0023589501179621703,0.002047568702391164,0.0002008343157769952,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1093281 47.5559905962441, 10.109329799999996 47.55596939624412)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_70_LVCableDist_mvgd_33532_lvgd_1163940003_building_448049,BranchTee_mvgd_33532_lvgd_1163940003_70,BranchTee_mvgd_33532_lvgd_1163940003_building_448049,0.021413014778320336,0.018586496827582052,0.001823043284798961,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1096116006321 47.556005188629754, 10.1093281 47.5559905962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_70_LVCableDist_mvgd_33532_lvgd_1163940003_building_448062,BranchTee_mvgd_33532_lvgd_1163940003_70,BranchTee_mvgd_33532_lvgd_1163940003_building_448062,0.01107624413780077,0.009614179911611068,0.0009429999794636799,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109384200001784 47.55608274625117, 10.1093281 47.5559905962441)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_71_LVCableDist_mvgd_33532_lvgd_1163940003_72,BranchTee_mvgd_33532_lvgd_1163940003_71,BranchTee_mvgd_33532_lvgd_1163940003_72,0.029527274015714276,0.02562967384563999,0.002513868279176951,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109329799999996 47.55596939624412, 10.108974200000004 47.555857496244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_72_LVCableDist_mvgd_33532_lvgd_1163940003_building_448011,BranchTee_mvgd_33532_lvgd_1163940003_72,BranchTee_mvgd_33532_lvgd_1163940003_building_448011,0.020043661555200556,0.017397898229914083,0.0017064604390964583,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109044835196004 47.55568356527599, 10.108974200000004 47.555857496244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_72_LVCableDist_mvgd_33532_lvgd_1163940003_building_448051,BranchTee_mvgd_33532_lvgd_1163940003_72,BranchTee_mvgd_33532_lvgd_1163940003_building_448051,0.011231246990557877,0.009748722387804238,0.0009561964822807248,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10888201817159 47.555778040283144, 10.108974200000004 47.555857496244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_72_LVCableDist_mvgd_33532_lvgd_1163940003_building_448052,BranchTee_mvgd_33532_lvgd_1163940003_72,BranchTee_mvgd_33532_lvgd_1163940003_building_448052,0.006763050695745955,0.005870328003907489,0.0005757869353416536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109063284928473 47.55584983696682, 10.108974200000004 47.555857496244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_72_LVCableDist_mvgd_33532_lvgd_1163940003_building_448053,BranchTee_mvgd_33532_lvgd_1163940003_72,BranchTee_mvgd_33532_lvgd_1163940003_building_448053,0.019368553775149774,0.016811904676830004,0.0016489836793931406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109013926115514 47.55602972536714, 10.108974200000004 47.555857496244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_72_LVCableDist_mvgd_33532_lvgd_1163940003_building_448054,BranchTee_mvgd_33532_lvgd_1163940003_72,BranchTee_mvgd_33532_lvgd_1163940003_building_448054,0.014203117627169063,0.012328306100382746,0.0012092131108803813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109148644809343 47.55580892431244, 10.108974200000004 47.555857496244144)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_73_LVCableDist_mvgd_33532_lvgd_1163940003_building_448027,BranchTee_mvgd_33532_lvgd_1163940003_73,BranchTee_mvgd_33532_lvgd_1163940003_building_448027,0.018172885713534436,0.01577406479934789,0.0015471878952337175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108212750001748 47.55652804627018, 10.108421399999997 47.55661019624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_73_LVCableDist_mvgd_33532_lvgd_1163940003_building_448029,BranchTee_mvgd_33532_lvgd_1163940003_73,BranchTee_mvgd_33532_lvgd_1163940003_building_448029,0.011080016993024293,0.009617454749945086,0.0009433211896459437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108301718604528 47.55655220348384, 10.108421399999997 47.55661019624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_73_LVStation_mvgd_33532_lvgd_1163940003,BusBar_mvgd_33532_lvgd_1163940003_LV,BranchTee_mvgd_33532_lvgd_1163940003_73,0.015912232297162734,0.013811817633937252,0.0013547222815571767,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108337700000003 47.55674169624417, 10.108421399999997 47.55661019624414)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_7_LVCableDist_mvgd_33532_lvgd_1163940003_8,BranchTee_mvgd_33532_lvgd_1163940003_7,BranchTee_mvgd_33532_lvgd_1163940003_8,0.07634197561760697,0.024429432197634233,0.006259703672757016,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.111216499999998 47.555036496244014, 10.111509299999996 47.555103596244024, 10.111677600000002 47.55513919624405, 10.111915799999995 47.55515069624404, 10.112203500000005 47.55512919624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_8_LVCableDist_mvgd_33532_lvgd_1163940003_building_448080,BranchTee_mvgd_33532_lvgd_1163940003_8,BranchTee_mvgd_33532_lvgd_1163940003_building_448080,0.013519725827596798,0.01173512201835402,0.0011510310732740624,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.112205052548722 47.55500751918485, 10.112203500000005 47.55512919624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_8_LVCableDist_mvgd_33532_lvgd_1163940003_building_448085,BranchTee_mvgd_33532_lvgd_1163940003_8,BranchTee_mvgd_33532_lvgd_1163940003_building_448085,0.021679541163554857,0.018817841729965618,0.0018457345845460417,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.112199217290106 47.55532429709501, 10.112203500000005 47.55512919624402)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_9_LVCableDist_mvgd_33532_lvgd_1163940003_building_448035,BranchTee_mvgd_33532_lvgd_1163940003_9,BranchTee_mvgd_33532_lvgd_1163940003_building_448035,0.01582174712662984,0.0137332765059147,0.0013470186310333423,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108611800711214 47.556678501207735, 10.108502700000003 47.5568001962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_9_LVCableDist_mvgd_33532_lvgd_1163940003_building_448037,BranchTee_mvgd_33532_lvgd_1163940003_9,BranchTee_mvgd_33532_lvgd_1163940003_building_448037,0.019690507354704987,0.017091360383883928,0.0016763938931020183,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108246422566296 47.5568352837247, 10.108502700000003 47.5568001962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_9_LVCableDist_mvgd_33532_lvgd_1163940003_building_448038,BranchTee_mvgd_33532_lvgd_1163940003_9,BranchTee_mvgd_33532_lvgd_1163940003_building_448038,0.009143796885464416,0.007936815696583114,0.0007784769067870199,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108427040363244 47.55686456186561, 10.108502700000003 47.5568001962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940003_9_LVStation_mvgd_33532_lvgd_1163940003,BusBar_mvgd_33532_lvgd_1163940003_LV,BranchTee_mvgd_33532_lvgd_1163940003_9,0.0140240464649478,0.004487694868783297,0.0011499096591797184,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.108337700000003 47.55674169624417, 10.108502700000003 47.5568001962442)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_10_LVCableDist_mvgd_33532_lvgd_1163940004_29,BranchTee_mvgd_33532_lvgd_1163940004_10,BranchTee_mvgd_33532_lvgd_1163940004_29,0.05428850811725657,0.017372322597522104,0.004451417072991153,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035319899999998 47.56661759624504, 10.0354434 47.566768996245074, 10.035516000000003 47.56685809624508, 10.0355049 47.56707179624508)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_10_LVCableDist_mvgd_33532_lvgd_1163940004_31,BranchTee_mvgd_33532_lvgd_1163940004_10,BranchTee_mvgd_33532_lvgd_1163940004_31,0.05747877209316927,0.018393207069814167,0.004713004580591354,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0355049 47.56707179624508, 10.0354375 47.56720639624513, 10.035398800000001 47.56733529624509, 10.035406599999998 47.56738959624513, 10.035436199999998 47.56743109624509, 10.035643599999997 47.567457396245146)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_10_LVCableDist_mvgd_33532_lvgd_1163940004_building_446227,BranchTee_mvgd_33532_lvgd_1163940004_10,BranchTee_mvgd_33532_lvgd_1163940004_building_446227,0.020376360571325542,0.01768668097591057,0.0017347854887676496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035272710823415 47.566977604714275, 10.0355049 47.56707179624508)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_10_LVCableDist_mvgd_33532_lvgd_1163940004_building_446236,BranchTee_mvgd_33532_lvgd_1163940004_10,BranchTee_mvgd_33532_lvgd_1163940004_building_446236,0.024788649181399242,0.021516547489454543,0.0021104352141549294,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035833900005288 47.5670797462763, 10.0355049 47.56707179624508)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_11_LVCableDist_mvgd_33532_lvgd_1163940004_14,BranchTee_mvgd_33532_lvgd_1163940004_11,BranchTee_mvgd_33532_lvgd_1163940004_14,0.09664303636100535,0.030925771635521713,0.007924300684666223,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.036457499999996 47.56547579624494, 10.0369924 47.56528199624499, 10.037613499999996 47.56509959624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_11_LVCableDist_mvgd_33532_lvgd_1163940004_17,BranchTee_mvgd_33532_lvgd_1163940004_11,BranchTee_mvgd_33532_lvgd_1163940004_17,0.03786337259927589,0.012116279231768286,0.003104628752468276,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035986099999999 47.565582996244956, 10.0360928 47.56557849624494, 10.036249799999995 47.565543396244934, 10.0363425 47.565516796244964, 10.036411300000003 47.56549229624493, 10.036457499999996 47.56547579624494)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_11_LVCableDist_mvgd_33532_lvgd_1163940004_8,BranchTee_mvgd_33532_lvgd_1163940004_8,BranchTee_mvgd_33532_lvgd_1163940004_11,0.006718772606010045,0.0021500072339232144,0.0005509095778307374,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.036457499999996 47.56547579624494, 10.036464200000005 47.56541549624494)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_12_LVCableDist_mvgd_33532_lvgd_1163940004_20,BranchTee_mvgd_33532_lvgd_1163940004_12,BranchTee_mvgd_33532_lvgd_1163940004_20,0.0651097866669989,0.02083513173343965,0.0053387139569628875,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.036900800000007 47.56763349624518, 10.037224699999994 47.567678096245146, 10.037481999999999 47.56770789624513, 10.037692500000006 47.567698996245134, 10.037754699999995 47.56769729624512)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_12_LVCableDist_mvgd_33532_lvgd_1163940004_31,BranchTee_mvgd_33532_lvgd_1163940004_12,BranchTee_mvgd_33532_lvgd_1163940004_31,0.0966934112496721,0.03094189159989507,0.007928431202288422,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035643599999997 47.567457396245146, 10.035971799999993 47.56750399624514, 10.036052900000003 47.56751299624514, 10.036140600000003 47.56752639624518, 10.0366618 47.5675928962451, 10.036900800000007 47.56763349624518)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_12_LVCableDist_mvgd_33532_lvgd_1163940004_building_446223,BranchTee_mvgd_33532_lvgd_1163940004_12,BranchTee_mvgd_33532_lvgd_1163940004_building_446223,0.09765972907306165,0.08476864483541752,0.008314472068743252,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036760524535952 47.5685073030315, 10.036900800000007 47.56763349624518)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_13_LVCableDist_mvgd_33532_lvgd_1163940004_20,BranchTee_mvgd_33532_lvgd_1163940004_13,BranchTee_mvgd_33532_lvgd_1163940004_20,0.013583986048201406,0.00434687553542445,0.00111382665524044,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.037932700000006 47.56771719624515, 10.037754699999995 47.56769729624512)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_13_LVCableDist_mvgd_33532_lvgd_1163940004_building_446209,BranchTee_mvgd_33532_lvgd_1163940004_13,BranchTee_mvgd_33532_lvgd_1163940004_building_446209,0.011883140598280816,0.010314566039307749,0.0010116968532591214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037917524049167 47.56782365191671, 10.037932700000006 47.56771719624515)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_14_LVCableDist_mvgd_33532_lvgd_1163940004_32,BranchTee_mvgd_33532_lvgd_1163940004_14,BranchTee_mvgd_33532_lvgd_1163940004_32,0.12036283565354049,0.03851610740913296,0.0098692191066398,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.038968300000008 47.565642296244945, 10.0387212 47.565516796244964, 10.038474200000003 47.56543399624498, 10.0382321 47.565398396244944, 10.037945400000002 47.56529699624496, 10.037759300000001 47.56520199624495, 10.037613499999996 47.56509959624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_14_LVCableDist_mvgd_33532_lvgd_1163940004_9,BranchTee_mvgd_33532_lvgd_1163940004_9,BranchTee_mvgd_33532_lvgd_1163940004_14,0.10117799701608803,0.03237695904514817,0.008296147360610545,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.038921100000003 47.56492829624491, 10.038536299999995 47.56493919624492, 10.0381952 47.5649660962449, 10.037921400000002 47.56501659624489, 10.037613499999996 47.56509959624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_15_LVCableDist_mvgd_33532_lvgd_1163940004_21,BranchTee_mvgd_33532_lvgd_1163940004_15,BranchTee_mvgd_33532_lvgd_1163940004_21,0.023147351369727853,0.007407152438312913,0.0018979802292444852,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.036929000000004 47.56514299624492, 10.036679500000005 47.56526469624499)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_15_LVCableDist_mvgd_33532_lvgd_1163940004_building_446177,BranchTee_mvgd_33532_lvgd_1163940004_15,BranchTee_mvgd_33532_lvgd_1163940004_building_446177,0.01266872699050082,0.010996455027754712,0.0010785794483440562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036783303811502 47.565085979670734, 10.036929000000004 47.56514299624492)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_16_LVCableDist_mvgd_33532_lvgd_1163940004_26,BranchTee_mvgd_33532_lvgd_1163940004_16,BranchTee_mvgd_33532_lvgd_1163940004_26,0.015588959760383837,0.0049884671233228275,0.0012782256141145808,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035144299999999 47.56622419624501, 10.0351969 47.56635989624506)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_16_LVCableDist_mvgd_33532_lvgd_1163940004_building_446203,BranchTee_mvgd_33532_lvgd_1163940004_16,BranchTee_mvgd_33532_lvgd_1163940004_building_446203,0.019769230371834617,0.01715969196275245,0.0016830961472788842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034914300004274 47.56613839629134, 10.035144299999999 47.56622419624501)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_16_LVCableDist_mvgd_33532_lvgd_1163940004_building_446204,BranchTee_mvgd_33532_lvgd_1163940004_16,BranchTee_mvgd_33532_lvgd_1163940004_building_446204,0.02510401595899381,0.021790285852406624,0.0021372846462453863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03522177115898 47.56600443786831, 10.035144299999999 47.56622419624501)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_16_LVCableDist_mvgd_33532_lvgd_1163940004_building_446212,BranchTee_mvgd_33532_lvgd_1163940004_16,BranchTee_mvgd_33532_lvgd_1163940004_building_446212,0.019198938060406803,0.016664678236433104,0.0016345430789938163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035398783116923 47.566213519791965, 10.035144299999999 47.56622419624501)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_16_LVCableDist_mvgd_33532_lvgd_1163940004_building_446213,BranchTee_mvgd_33532_lvgd_1163940004_16,BranchTee_mvgd_33532_lvgd_1163940004_building_446213,0.05344826430729193,0.046393093418729395,0.0045504334788121666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03582630000163 47.56609084626773, 10.035144299999999 47.56622419624501)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_17_LVCableDist_mvgd_33532_lvgd_1163940004_18,BranchTee_mvgd_33532_lvgd_1163940004_17,BranchTee_mvgd_33532_lvgd_1163940004_18,0.02151936736397458,0.006886197556471866,0.0017644927555766814,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035747099999996 47.565493696244914, 10.035793600000002 47.56553199624499, 10.035900600000002 47.56557809624498, 10.035986099999999 47.565582996244956)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_17_LVCableDist_mvgd_33532_lvgd_1163940004_building_446198,BranchTee_mvgd_33532_lvgd_1163940004_17,BranchTee_mvgd_33532_lvgd_1163940004_building_446198,0.013271229738155145,0.011519427412718665,0.0011298748217211953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036015967545527 47.56546527916919, 10.035986099999999 47.565582996244956)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_18_LVCableDist_mvgd_33532_lvgd_1163940004_19,BranchTee_mvgd_33532_lvgd_1163940004_18,BranchTee_mvgd_33532_lvgd_1163940004_19,0.038250760780533605,0.012240243449770753,0.0031363928665272037,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035747099999996 47.565493696244914, 10.0357719 47.56537419624492, 10.035831599999996 47.56515429624495)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_18_LVCableDist_mvgd_33532_lvgd_1163940004_6,BranchTee_mvgd_33532_lvgd_1163940004_6,BranchTee_mvgd_33532_lvgd_1163940004_18,0.0290758538939548,0.009304273246065536,0.0023840911626415735,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035747099999996 47.565493696244914, 10.035584199999997 47.56558399624495, 10.035423100000004 47.565631496244976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_19_LVCableDist_mvgd_33532_lvgd_1163940004_25,BranchTee_mvgd_33532_lvgd_1163940004_19,BranchTee_mvgd_33532_lvgd_1163940004_25,0.025541054223692298,0.008173137351581535,0.0020942532549977568,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035831599999996 47.56515429624495, 10.035718400000002 47.565238496244895, 10.0355656 47.565290696244936)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_19_LVCableDist_mvgd_33532_lvgd_1163940004_30,BranchTee_mvgd_33532_lvgd_1163940004_19,BranchTee_mvgd_33532_lvgd_1163940004_30,0.0503659676305063,0.016117109641762016,0.004129786136762332,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.036043800000005 47.56472589624488, 10.036027700000005 47.56478749624494, 10.0359131 47.56496969624492, 10.035831599999996 47.56515429624495)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_19_LVCableDist_mvgd_33532_lvgd_1163940004_building_446174,BranchTee_mvgd_33532_lvgd_1163940004_19,BranchTee_mvgd_33532_lvgd_1163940004_building_446174,0.020670311195151198,0.017941830117391238,0.0017598116103285607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03603263577148 47.56528097152551, 10.035831599999996 47.56515429624495)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_1_LVCableDist_mvgd_33532_lvgd_1163940004_16,BranchTee_mvgd_33532_lvgd_1163940004_1,BranchTee_mvgd_33532_lvgd_1163940004_16,0.046112846154682724,0.014756110769498471,0.0037810490244789244,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035012500000002 47.56581889624501, 10.035144299999999 47.56622419624501)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_1_LVCableDist_mvgd_33532_lvgd_1163940004_33,BranchTee_mvgd_33532_lvgd_1163940004_1,BranchTee_mvgd_33532_lvgd_1163940004_33,0.01597954342955222,0.00511345389745671,0.001310251744020608,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035062200000004 47.56568229624497, 10.035012899999996 47.565755996244945, 10.035012500000002 47.56581889624501)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_1_LVCableDist_mvgd_33532_lvgd_1163940004_building_446194,BranchTee_mvgd_33532_lvgd_1163940004_1,BranchTee_mvgd_33532_lvgd_1163940004_building_446194,0.01916850420600261,0.016638261650810265,0.0016319520270342254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034777845707458 47.56588578368532, 10.035012500000002 47.56581889624501)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_20_LVCableDist_mvgd_33532_lvgd_1163940004_building_446208,BranchTee_mvgd_33532_lvgd_1163940004_20,BranchTee_mvgd_33532_lvgd_1163940004_building_446208,0.006399022101200989,0.0055543511838424585,0.0005447945743112065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037780627112872 47.56775214307458, 10.037754699999995 47.56769729624512)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_21_LVCableDist_mvgd_33532_lvgd_1163940004_8,BranchTee_mvgd_33532_lvgd_1163940004_8,BranchTee_mvgd_33532_lvgd_1163940004_21,0.02331431663066733,0.007460581321813545,0.0019116706406946786,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.036679500000005 47.56526469624499, 10.036464200000005 47.56541549624494)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_21_LVCableDist_mvgd_33532_lvgd_1163940004_building_446175,BranchTee_mvgd_33532_lvgd_1163940004_21,BranchTee_mvgd_33532_lvgd_1163940004_building_446175,0.01457951139318291,0.012655015889282766,0.0012412582075038826,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03651704021272 47.565193311873145, 10.036679500000005 47.56526469624499)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_22_LVCableDist_mvgd_33532_lvgd_1163940004_23,BranchTee_mvgd_33532_lvgd_1163940004_22,BranchTee_mvgd_33532_lvgd_1163940004_23,0.020167168866266016,0.006453494037205125,0.0016536184713585157,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035086800000002 47.56528279624492, 10.0348695 47.565176696244954)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_22_LVCableDist_mvgd_33532_lvgd_1163940004_25,BranchTee_mvgd_33532_lvgd_1163940004_22,BranchTee_mvgd_33532_lvgd_1163940004_25,0.03608847529591736,0.011548312094693557,0.0029590950394785703,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0355656 47.565290696244936, 10.035327299999995 47.56529269624494, 10.035086800000002 47.56528279624492)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_22_LVCableDist_mvgd_33532_lvgd_1163940004_building_446189,BranchTee_mvgd_33532_lvgd_1163940004_22,BranchTee_mvgd_33532_lvgd_1163940004_building_446189,0.01141994937981011,0.009912516061675177,0.0009722620679590245,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035018150013736 47.565374446284906, 10.035086800000002 47.56528279624492)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_23_LVCableDist_mvgd_33532_lvgd_1163940004_building_446125,BranchTee_mvgd_33532_lvgd_1163940004_23,BranchTee_mvgd_33532_lvgd_1163940004_building_446125,0.03018256062781068,0.026198462624939668,0.0025696575209146672,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034808780951716 47.5649081809939, 10.0348695 47.565176696244954)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_23_LVCableDist_mvgd_33532_lvgd_1163940004_building_446127,BranchTee_mvgd_33532_lvgd_1163940004_23,BranchTee_mvgd_33532_lvgd_1163940004_building_446127,0.015268931031275591,0.013253432135147214,0.0012999534381682675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034894322241328 47.565040305286765, 10.0348695 47.565176696244954)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_23_LVCableDist_mvgd_33532_lvgd_1163940004_building_446132,BranchTee_mvgd_33532_lvgd_1163940004_23,BranchTee_mvgd_33532_lvgd_1163940004_building_446132,0.02062324566034066,0.017900977233175693,0.001755804584317973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035109571624568 47.565087358677026, 10.0348695 47.565176696244954)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_24_LVCableDist_mvgd_33532_lvgd_1163940004_32,BranchTee_mvgd_33532_lvgd_1163940004_24,BranchTee_mvgd_33532_lvgd_1163940004_32,0.050701438216945116,0.01622446022942244,0.00415729323813146,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.039204400000001 47.566001096244975, 10.039276900000004 47.56584049624501, 10.039143400000004 47.565762696244995, 10.038968300000008 47.565642296244945)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_24_LVCableDist_mvgd_33532_lvgd_1163940004_building_446214,BranchTee_mvgd_33532_lvgd_1163940004_24,BranchTee_mvgd_33532_lvgd_1163940004_building_446214,0.014902480430458939,0.012935353013638358,0.0012687548744001371,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039394631169788 47.56596409460104, 10.039204400000001 47.566001096244975)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_24_LVCableDist_mvgd_33532_lvgd_1163940004_building_446221,BranchTee_mvgd_33532_lvgd_1163940004_24,BranchTee_mvgd_33532_lvgd_1163940004_building_446221,0.011448716370471068,0.009937485809568887,0.0009747112078718886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039053890681835 47.56601569739644, 10.039204400000001 47.566001096244975)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_25_LVCableDist_mvgd_33532_lvgd_1163940004_building_446133,BranchTee_mvgd_33532_lvgd_1163940004_25,BranchTee_mvgd_33532_lvgd_1163940004_building_446133,0.019201222894813436,0.01666666147269806,0.0016347376033083517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035457805795206 47.56513408188496, 10.0355656 47.565290696244936)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_26_LVCableDist_mvgd_33532_lvgd_1163940004_29,BranchTee_mvgd_33532_lvgd_1163940004_26,BranchTee_mvgd_33532_lvgd_1163940004_29,0.030093338277320383,0.009629868248742523,0.002467520372849981,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0351969 47.56635989624506, 10.035319899999998 47.56661759624504)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_26_LVCableDist_mvgd_33532_lvgd_1163940004_building_446210,BranchTee_mvgd_33532_lvgd_1163940004_26,BranchTee_mvgd_33532_lvgd_1163940004_building_446210,0.019162951646889602,0.016633442029500175,0.0016314792979155463,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035000026610899 47.56646919078349, 10.0351969 47.56635989624506)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_26_LVCableDist_mvgd_33532_lvgd_1163940004_building_446218,BranchTee_mvgd_33532_lvgd_1163940004_26,BranchTee_mvgd_33532_lvgd_1163940004_building_446218,0.04642503227693556,0.04029692801638007,0.003952495443319414,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035805737672984 47.56629402743356, 10.0351969 47.56635989624506)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_27_LVCableDist_mvgd_33532_lvgd_1163940004_32,BranchTee_mvgd_33532_lvgd_1163940004_27,BranchTee_mvgd_33532_lvgd_1163940004_32,0.05361551271300311,0.017156964068160998,0.004396234432383902,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0396704 47.56571899624502, 10.0394299 47.56570159624495, 10.039344500000006 47.56569539624496, 10.038968300000008 47.565642296244945)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_27_LVCableDist_mvgd_33532_lvgd_1163940004_building_446216,BranchTee_mvgd_33532_lvgd_1163940004_27,BranchTee_mvgd_33532_lvgd_1163940004_building_446216,0.014738876171439954,0.01279334451680988,0.0012548260722741028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03977334379636 47.565831820766725, 10.0396704 47.56571899624502)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_28_LVCableDist_mvgd_33532_lvgd_1163940004_4,BranchTee_mvgd_33532_lvgd_1163940004_4,BranchTee_mvgd_33532_lvgd_1163940004_28,0.10012853313493236,0.032041130603178355,0.008210095973308212,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0341349 47.56499189624492, 10.034056499999997 47.564876996244905, 10.033974599999993 47.56481559624493, 10.033879099999991 47.5647725962449, 10.033759399999992 47.56475209624487, 10.033614699999996 47.56476659624489, 10.033442199999998 47.564907196244896, 10.033344199999997 47.565048596244935, 10.033244799999999 47.56511159624493)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_28_LVCableDist_mvgd_33532_lvgd_1163940004_building_446215,BranchTee_mvgd_33532_lvgd_1163940004_28,BranchTee_mvgd_33532_lvgd_1163940004_building_446215,0.01176995205058708,0.010216318379909585,0.0010020603016606922,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033344650000139 47.565193096285256, 10.033244799999999 47.56511159624493)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_29_LVCableDist_mvgd_33532_lvgd_1163940004_building_446219,BranchTee_mvgd_33532_lvgd_1163940004_29,BranchTee_mvgd_33532_lvgd_1163940004_building_446219,0.01777402041126933,0.015427849716981778,0.0015132296358124466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035435595684177 47.56647815743607, 10.035319899999998 47.56661759624504)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_2_LVCableDist_mvgd_33532_lvgd_1163940004_33,BranchTee_mvgd_33532_lvgd_1163940004_2,BranchTee_mvgd_33532_lvgd_1163940004_33,0.11671180375585039,0.03734777720187212,0.009569850671458083,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035062200000004 47.56568229624497, 10.034852599999997 47.565710796244986, 10.034695700000002 47.56569799624496, 10.0345927 47.565622496244956, 10.034536399999997 47.56555699624498, 10.0344581 47.565514796244955, 10.034198900000003 47.56553199624499, 10.034129499999993 47.56539049624495, 10.034151900000003 47.56516459624495)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_2_LVCableDist_mvgd_33532_lvgd_1163940004_4,BranchTee_mvgd_33532_lvgd_1163940004_2,BranchTee_mvgd_33532_lvgd_1163940004_4,0.019231014840211228,0.006153924748867593,0.0015768579900144895,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034151900000003 47.56516459624495, 10.0341349 47.56499189624492)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_2_LVCableDist_mvgd_33532_lvgd_1163940004_building_446111,BranchTee_mvgd_33532_lvgd_1163940004_2,BranchTee_mvgd_33532_lvgd_1163940004_building_446111,0.029228005807105422,0.025369909040567507,0.002488389433544688,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033775331012029 47.565100814834366, 10.034151900000003 47.56516459624495)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_2_LVCableDist_mvgd_33532_lvgd_1163940004_building_446113,BranchTee_mvgd_33532_lvgd_1163940004_2,BranchTee_mvgd_33532_lvgd_1163940004_building_446113,0.0223475737744161,0.019397694036193174,0.0019026089844315882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034437707780526 47.56521877707248, 10.034151900000003 47.56516459624495)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_30_LVCableDist_mvgd_33532_lvgd_1163940004_5,BranchTee_mvgd_33532_lvgd_1163940004_5,BranchTee_mvgd_33532_lvgd_1163940004_30,0.03153063994175658,0.010089804781362106,0.002585372739584593,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0359819 47.56444529624484, 10.036002400000005 47.564558296244876, 10.036043800000005 47.56472589624488)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_30_LVCableDist_mvgd_33532_lvgd_1163940004_building_446173,BranchTee_mvgd_33532_lvgd_1163940004_30,BranchTee_mvgd_33532_lvgd_1163940004_building_446173,0.011797457545901564,0.010240193149842558,0.0010044020414412536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036178054145722 47.564671164387555, 10.036043800000005 47.56472589624488)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_31_LVCableDist_mvgd_33532_lvgd_1163940004_building_446237,BranchTee_mvgd_33532_lvgd_1163940004_31,BranchTee_mvgd_33532_lvgd_1163940004_building_446237,0.01977112060074749,0.017161332681448822,0.0016832570760020003,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035810386720128 47.56731995884946, 10.035643599999997 47.567457396245146)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_33_LVCableDist_mvgd_33532_lvgd_1163940004_6,BranchTee_mvgd_33532_lvgd_1163940004_6,BranchTee_mvgd_33532_lvgd_1163940004_33,0.02775551545284172,0.00888176494490935,0.0022758292618687086,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035423100000004 47.565631496244976, 10.035062200000004 47.56568229624497)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_34_LVCableDist_mvgd_33532_lvgd_1163940004_36,BranchTee_mvgd_33532_lvgd_1163940004_34,BranchTee_mvgd_33532_lvgd_1163940004_36,0.22685403782213373,0.19690930482961208,0.019313708721664224,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041935999999998 47.56279989624472, 10.0414431 47.562770596244675, 10.041357000000007 47.562776796244705, 10.041264000000004 47.56279859624468, 10.040616499999997 47.563116196244735, 10.040232899999994 47.56341679624479, 10.0400841 47.56351449624481, 10.039940900000001 47.56355549624479, 10.039375101086927 47.563654797712736)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_34_LVCableDist_mvgd_33532_lvgd_1163940004_40,BranchTee_mvgd_33532_lvgd_1163940004_34,BranchTee_mvgd_33532_lvgd_1163940004_40,0.044011347823287784,0.038201849910613796,0.003747001201597726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039375101086927 47.563654797712736, 10.038809300000006 47.56375409624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_34_LVCableDist_mvgd_33532_lvgd_1163940004_building_34328732,BranchTee_mvgd_33532_lvgd_1163940004_34,BranchTee_mvgd_33532_lvgd_1163940004_building_34328732,0.0442804010572591,0.0384353881177009,0.003769907630072312,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039775819403019 47.563946466089135, 10.039375101086927 47.563654797712736)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_35_LVCableDist_mvgd_33532_lvgd_1163940004_40,BranchTee_mvgd_33532_lvgd_1163940004_35,BranchTee_mvgd_33532_lvgd_1163940004_40,0.045707682055859476,0.03967426802448602,0.003891422282117197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038203800000002 47.56378289624483, 10.038809300000006 47.56375409624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_35_LVCableDist_mvgd_33532_lvgd_1163940004_43,BranchTee_mvgd_33532_lvgd_1163940004_35,BranchTee_mvgd_33532_lvgd_1163940004_43,0.05371098691771184,0.046621136644573874,0.004572800935970782,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038203800000002 47.56378289624483, 10.038403599999999 47.563624896244754, 10.0386644 47.56341379624475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_35_LVCableDist_mvgd_33532_lvgd_1163940004_44,BranchTee_mvgd_33532_lvgd_1163940004_35,BranchTee_mvgd_33532_lvgd_1163940004_44,0.07102644910575592,0.06165095782379614,0.00604699022654485,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0375262 47.56422759624481, 10.038203800000002 47.56378289624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_35_LVCableDist_mvgd_33532_lvgd_1163940004_building_446157,BranchTee_mvgd_33532_lvgd_1163940004_35,BranchTee_mvgd_33532_lvgd_1163940004_building_446157,0.018549712838311656,0.016101150743654518,0.0015792698867919887,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038129452652298 47.563623730189775, 10.038203800000002 47.56378289624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_35_LVCableDist_mvgd_33532_lvgd_1163940004_building_446163,BranchTee_mvgd_33532_lvgd_1163940004_35,BranchTee_mvgd_33532_lvgd_1163940004_building_446163,0.04623917931480703,0.0401356076452525,0.003936672449776653,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037613257758736 47.56366886281832, 10.038203800000002 47.56378289624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_35_LVCableDist_mvgd_33532_lvgd_1163940004_building_446168,BranchTee_mvgd_33532_lvgd_1163940004_35,BranchTee_mvgd_33532_lvgd_1163940004_building_446168,0.032176450607913874,0.027929159127669242,0.002739411652992103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037789256369908 47.563853125510384, 10.038203800000002 47.56378289624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_35_LVCableDist_mvgd_33532_lvgd_1163940004_building_446170,BranchTee_mvgd_33532_lvgd_1163940004_35,BranchTee_mvgd_33532_lvgd_1163940004_building_446170,0.019199043857892,0.016664770068650255,0.0016345520862913376,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038284549985692 47.56394679629565, 10.038203800000002 47.56378289624483)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_36_LVCableDist_mvgd_33532_lvgd_1163940004_building_446365,BranchTee_mvgd_33532_lvgd_1163940004_36,BranchTee_mvgd_33532_lvgd_1163940004_building_446365,0.035567935561649104,0.03087296806751142,0.003028153053229847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041789856680623 47.56310430986495, 10.041935999999998 47.56279989624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_36_LVCableDist_mvgd_33532_lvgd_1163940004_building_446367,BranchTee_mvgd_33532_lvgd_1163940004_36,BranchTee_mvgd_33532_lvgd_1163940004_building_446367,0.032439767668850344,0.0281577183365621,0.0027618297199800005,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042364077564775 47.56283257691557, 10.041935999999998 47.56279989624472)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_37_LVCableDist_mvgd_33532_lvgd_1163940004_38,BranchTee_mvgd_33532_lvgd_1163940004_37,BranchTee_mvgd_33532_lvgd_1163940004_38,0.036364445248105344,0.03156433847535544,0.0030959656265738644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036154999999995 47.56436919624487, 10.036610400000004 47.56447809624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_37_LVCableDist_mvgd_33532_lvgd_1163940004_building_446159,BranchTee_mvgd_33532_lvgd_1163940004_37,BranchTee_mvgd_33532_lvgd_1163940004_building_446159,0.015320222208388993,0.013297952876881645,0.0013043202233675515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036267678337241 47.56425438754369, 10.036154999999995 47.56436919624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_37_LVStation_mvgd_33532_lvgd_1163940004,BusBar_mvgd_33532_lvgd_1163940004_LV,BranchTee_mvgd_33532_lvgd_1163940004_37,0.013036604446933686,0.011315772659938439,0.0011098994905483826,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0359923 47.56432909624486, 10.036154999999995 47.56436919624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_38_LVCableDist_mvgd_33532_lvgd_1163940004_39,BranchTee_mvgd_33532_lvgd_1163940004_38,BranchTee_mvgd_33532_lvgd_1163940004_39,0.014446442261376006,0.012539511882874374,0.0012299290794167805,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036610400000004 47.56447809624487, 10.036683000000002 47.56449249624483, 10.0367969 47.56450809624488)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_38_LVCableDist_mvgd_33532_lvgd_1163940004_building_446164,BranchTee_mvgd_33532_lvgd_1163940004_38,BranchTee_mvgd_33532_lvgd_1163940004_building_446164,0.015465986916582604,0.0134244766435937,0.001316730216784363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036639228680176 47.56434027611946, 10.036610400000004 47.56447809624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_38_LVCableDist_mvgd_33532_lvgd_1163940004_building_446166,BranchTee_mvgd_33532_lvgd_1163940004_38,BranchTee_mvgd_33532_lvgd_1163940004_building_446166,0.01337247924109139,0.011607311981267326,0.001138494916944967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036508350008276 47.56457659632062, 10.036610400000004 47.56447809624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_39_LVCableDist_mvgd_33532_lvgd_1163940004_44,BranchTee_mvgd_33532_lvgd_1163940004_39,BranchTee_mvgd_33532_lvgd_1163940004_44,0.06402270042012032,0.05557170396466443,0.005450710947706698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0367969 47.56450809624488, 10.036873299999995 47.56450869624486, 10.037370199999996 47.56430239624484, 10.0375262 47.56422759624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_39_LVCableDist_mvgd_33532_lvgd_1163940004_building_446176,BranchTee_mvgd_33532_lvgd_1163940004_39,BranchTee_mvgd_33532_lvgd_1163940004_building_446176,0.015218006739709742,0.013209229850068057,0.0012956178885628817,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036746344053114 47.56464070784881, 10.0367969 47.56450809624488)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_3_LVCableDist_mvgd_33532_lvgd_1163940004_7,BranchTee_mvgd_33532_lvgd_1163940004_3,BranchTee_mvgd_33532_lvgd_1163940004_7,0.2992669011665583,0.09576540837329865,0.024538559622170247,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.042632599999997 47.56494639624488, 10.0429135 47.565512596244986, 10.041702000000004 47.56527689624496, 10.040791299999999 47.5651159962449, 10.039929699999995 47.56496129624493)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_3_LVCableDist_mvgd_33532_lvgd_1163940004_building_446368,BranchTee_mvgd_33532_lvgd_1163940004_3,BranchTee_mvgd_33532_lvgd_1163940004_building_446368,0.016193423712580982,0.014055891782520293,0.0013786621203387929,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042687596718674 47.56480549729363, 10.042632599999997 47.56494639624488)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_40_LVCableDist_mvgd_33532_lvgd_1163940004_building_446158,BranchTee_mvgd_33532_lvgd_1163940004_40,BranchTee_mvgd_33532_lvgd_1163940004_building_446158,0.01752669281082734,0.015213169359798131,0.0014921728660955678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038756109270743 47.56390766716081, 10.038809300000006 47.56375409624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_41_LVCableDist_mvgd_33532_lvgd_1163940004_45,BranchTee_mvgd_33532_lvgd_1163940004_41,BranchTee_mvgd_33532_lvgd_1163940004_45,0.0672796690823651,0.058398752763492906,0.0057280000127904965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0397919 47.562734496244715, 10.039839500000003 47.562436196244725, 10.0398758 47.56237359624472, 10.039973900000003 47.5622941962447, 10.040129099999996 47.56221009624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_41_LVCableDist_mvgd_33532_lvgd_1163940004_47,BranchTee_mvgd_33532_lvgd_1163940004_41,BranchTee_mvgd_33532_lvgd_1163940004_47,0.029492596125562435,0.025599573436988193,0.0025109159020629953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0395286 47.56291959624471, 10.039722500000002 47.5628297962447, 10.0397919 47.562734496244715)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_41_LVCableDist_mvgd_33532_lvgd_1163940004_building_446171,BranchTee_mvgd_33532_lvgd_1163940004_41,BranchTee_mvgd_33532_lvgd_1163940004_building_446171,0.01821674742537106,0.01581213676522208,0.0015509221568522403,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03955960002893 47.562688746286184, 10.0397919 47.562734496244715)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_42_LVCableDist_mvgd_33532_lvgd_1163940004_48,BranchTee_mvgd_33532_lvgd_1163940004_42,BranchTee_mvgd_33532_lvgd_1163940004_48,0.15047604012191212,0.13061320282581973,0.012811102841302446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041720599999998 47.56183469624462, 10.042144199999997 47.56176749624465, 10.042216799999995 47.56175599624464, 10.043080299999996 47.56166179624466, 10.0436935 47.56164059624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_42_LVCableDist_mvgd_33532_lvgd_1163940004_49,BranchTee_mvgd_33532_lvgd_1163940004_42,BranchTee_mvgd_33532_lvgd_1163940004_49,0.050375584191410264,0.04372600707814411,0.004288834217354376,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041059099999996 47.56189979624467, 10.041607099999995 47.561852696244664, 10.041720599999998 47.56183469624462)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_42_LVCableDist_mvgd_33532_lvgd_1163940004_building_446360,BranchTee_mvgd_33532_lvgd_1163940004_42,BranchTee_mvgd_33532_lvgd_1163940004_building_446360,0.016142749466722825,0.014011906537115412,0.0013743478589150584,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041760681263957 47.561691968988136, 10.041720599999998 47.56183469624462)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_43_LVCableDist_mvgd_33532_lvgd_1163940004_47,BranchTee_mvgd_33532_lvgd_1163940004_43,BranchTee_mvgd_33532_lvgd_1163940004_47,0.08521840718366218,0.07396957743541877,0.007255253245083935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0386644 47.56341379624475, 10.039129999999995 47.56312709624473, 10.0395286 47.56291959624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_43_LVCableDist_mvgd_33532_lvgd_1163940004_building_446156,BranchTee_mvgd_33532_lvgd_1163940004_43,BranchTee_mvgd_33532_lvgd_1163940004_building_446156,0.014718679310222174,0.012775813641272848,0.0012531065688506818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038713349990688 47.563542046282784, 10.0386644 47.56341379624475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_44_LVCableDist_mvgd_33532_lvgd_1163940004_building_446191,BranchTee_mvgd_33532_lvgd_1163940004_44,BranchTee_mvgd_33532_lvgd_1163940004_building_446191,0.016151080179355935,0.014019137595680952,0.0013750571121370174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037658149997089 47.56434219628682, 10.0375262 47.56422759624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_44_LVCableDist_mvgd_33532_lvgd_1163940004_building_446193,BranchTee_mvgd_33532_lvgd_1163940004_44,BranchTee_mvgd_33532_lvgd_1163940004_building_446193,0.042339985286204466,0.03675110722842548,0.0036047061403353016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038064344175282 47.564338023094486, 10.0375262 47.56422759624481)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_45_LVCableDist_mvgd_33532_lvgd_1163940004_46,BranchTee_mvgd_33532_lvgd_1163940004_45,BranchTee_mvgd_33532_lvgd_1163940004_46,0.11424654517294822,0.09916600121011905,0.009726626500061748,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039890400000004 47.561237496244566, 10.039786800000003 47.56135389624455, 10.039940900000001 47.561654896244626, 10.040134499999997 47.56211269624467, 10.040129099999996 47.56221009624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_45_LVCableDist_mvgd_33532_lvgd_1163940004_49,BranchTee_mvgd_33532_lvgd_1163940004_45,BranchTee_mvgd_33532_lvgd_1163940004_49,0.07811532084463468,0.06780409849314291,0.006650516640464309,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040129099999996 47.56221009624467, 10.040503699999999 47.5620929962446, 10.040885899999997 47.561951096244634, 10.041059099999996 47.56189979624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_46_LVCableDist_mvgd_33532_lvgd_1163940004_building_446137,BranchTee_mvgd_33532_lvgd_1163940004_46,BranchTee_mvgd_33532_lvgd_1163940004_building_446137,0.0231679475256223,0.020109778452240157,0.0019724532764962437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039990299021438 47.56104027662786, 10.039890400000004 47.561237496244566)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_47_LVCableDist_mvgd_33532_lvgd_1163940004_building_446178,BranchTee_mvgd_33532_lvgd_1163940004_47,BranchTee_mvgd_33532_lvgd_1163940004_building_446178,0.01761537717469124,0.015290147387631995,0.0014997232010522522,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039507549981323 47.56307749630973, 10.0395286 47.56291959624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_48_LVCableDist_mvgd_33532_lvgd_1163940004_building_446362,BranchTee_mvgd_33532_lvgd_1163940004_48,BranchTee_mvgd_33532_lvgd_1163940004_building_446362,0.021740175334239827,0.01887047219012017,0.0018508968056924308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043965928458926 47.56157584423986, 10.0436935 47.56164059624463)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_49_LVCableDist_mvgd_33532_lvgd_1163940004_building_446150,BranchTee_mvgd_33532_lvgd_1163940004_49,BranchTee_mvgd_33532_lvgd_1163940004_building_446150,0.0122330733811784,0.010618307694862852,0.0010414891369051563,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0410742002529 47.562009420325055, 10.041059099999996 47.56189979624467)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_4_LVCableDist_mvgd_33532_lvgd_1163940004_building_446112,BranchTee_mvgd_33532_lvgd_1163940004_4,BranchTee_mvgd_33532_lvgd_1163940004_building_446112,0.02518770033214443,0.021862923888301366,0.0021444092961881546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034450105908736 47.564916023700796, 10.0341349 47.56499189624492)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_50_LVCableDist_mvgd_33532_lvgd_1163940004_66,BranchTee_mvgd_33532_lvgd_1163940004_50,BranchTee_mvgd_33532_lvgd_1163940004_66,0.016349470122246745,0.005231830439118959,0.0013405840934021549,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0323076 47.563954496244826, 10.0325245 47.56394789624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_50_LVCableDist_mvgd_33532_lvgd_1163940004_69,BranchTee_mvgd_33532_lvgd_1163940004_50,BranchTee_mvgd_33532_lvgd_1163940004_69,0.015703749156726638,0.0050251997301525245,0.0012876378358977812,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0325245 47.56394789624484, 10.032718300000004 47.56389569624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_50_LVCableDist_mvgd_33532_lvgd_1163940004_building_446116,BranchTee_mvgd_33532_lvgd_1163940004_50,BranchTee_mvgd_33532_lvgd_1163940004_building_446116,0.025160533403788606,0.02183934299448851,0.002142096381037232,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032449350002246 47.56416854626538, 10.0325245 47.56394789624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_51_LVCableDist_mvgd_33532_lvgd_1163940004_61,BranchTee_mvgd_33532_lvgd_1163940004_51,BranchTee_mvgd_33532_lvgd_1163940004_61,0.04640696555989855,0.014850228979167537,0.0038051655122455052,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035586100000007 47.564043596244844, 10.036035099999998 47.563757496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_51_LVCableDist_mvgd_33532_lvgd_1163940004_building_446154,BranchTee_mvgd_33532_lvgd_1163940004_51,BranchTee_mvgd_33532_lvgd_1163940004_building_446154,0.013451517954342912,0.011675917584369647,0.0011452240485933618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036119075190765 47.56365063985645, 10.036035099999998 47.563757496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_51_LVCableDist_mvgd_33532_lvgd_1163940004_building_446207,BranchTee_mvgd_33532_lvgd_1163940004_51,BranchTee_mvgd_33532_lvgd_1163940004_building_446207,0.02661484045564925,0.023101681515503552,0.0022659119545273606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03574965001483 47.563616246297855, 10.036035099999998 47.563757496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_51_LVCableDist_mvgd_33532_lvgd_1163940004_building_446211,BranchTee_mvgd_33532_lvgd_1163940004_51,BranchTee_mvgd_33532_lvgd_1163940004_building_446211,0.02625861835224243,0.02279248072974643,0.002235584215989102,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035690505667157 47.56379369873778, 10.036035099999998 47.563757496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_52_LVCableDist_mvgd_33532_lvgd_1163940004_55,BranchTee_mvgd_33532_lvgd_1163940004_52,BranchTee_mvgd_33532_lvgd_1163940004_55,0.02994197127736526,0.009581430808756883,0.002455108949673047,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035869399999997 47.56421759624487, 10.036082200000005 47.56414489624482, 10.036144400000003 47.56410919624484, 10.036173899999994 47.564060396244855)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_52_LVCableDist_mvgd_33532_lvgd_1163940004_building_446161,BranchTee_mvgd_33532_lvgd_1163940004_52,BranchTee_mvgd_33532_lvgd_1163940004_building_446161,0.016682719099468526,0.01448060017833868,0.0014203193404258756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036392200010827 47.564085996291816, 10.036173899999994 47.564060396244855)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_53_LVCableDist_mvgd_33532_lvgd_1163940004_67,BranchTee_mvgd_33532_lvgd_1163940004_53,BranchTee_mvgd_33532_lvgd_1163940004_67,0.02747953267743418,0.008793450456778937,0.002253199897369556,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.031838599999995 47.563916396244764, 10.031477000000004 47.56388309624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_53_LVCableDist_mvgd_33532_lvgd_1163940004_68,BranchTee_mvgd_33532_lvgd_1163940004_53,BranchTee_mvgd_33532_lvgd_1163940004_68,0.01677605376794505,0.005368337205742416,0.0013755620618410526,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.031838599999995 47.563916396244764, 10.0320594 47.56393649624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_53_LVCableDist_mvgd_33532_lvgd_1163940004_building_446104,BranchTee_mvgd_33532_lvgd_1163940004_53,BranchTee_mvgd_33532_lvgd_1163940004_building_446104,0.025386827351258537,0.02203576614089241,0.0021613624052564556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031868300009624 47.563688796292574, 10.031838599999995 47.563916396244764)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_53_LVCableDist_mvgd_33532_lvgd_1163940004_building_446106,BranchTee_mvgd_33532_lvgd_1163940004_53,BranchTee_mvgd_33532_lvgd_1163940004_building_446106,0.030344437844713912,0.026338972049211675,0.0025834392875781907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031618062231892 47.564144975430615, 10.031838599999995 47.563916396244764)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_53_LVCableDist_mvgd_33532_lvgd_1163940004_building_446107,BranchTee_mvgd_33532_lvgd_1163940004_53,BranchTee_mvgd_33532_lvgd_1163940004_building_446107,0.031295543854733224,0.027164532065908437,0.0026644137529978447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031823221501503 47.56419787149373, 10.031838599999995 47.563916396244764)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_54_LVCableDist_mvgd_33532_lvgd_1163940004_57,BranchTee_mvgd_33532_lvgd_1163940004_54,BranchTee_mvgd_33532_lvgd_1163940004_57,0.01564907251004892,0.005007703203215654,0.001283154593182962,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034941899999998 47.562877296244764, 10.034792500000004 47.562779396244714)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_54_LVCableDist_mvgd_33532_lvgd_1163940004_building_446181,BranchTee_mvgd_33532_lvgd_1163940004_54,BranchTee_mvgd_33532_lvgd_1163940004_building_446181,0.015694594661405915,0.013622908166100334,0.0013361932311411796,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03465567564528 47.56288595114171, 10.034792500000004 47.562779396244714)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_55_LVCableDist_mvgd_33532_lvgd_1163940004_61,BranchTee_mvgd_33532_lvgd_1163940004_55,BranchTee_mvgd_33532_lvgd_1163940004_61,0.028790020310185644,0.009212806499259407,0.0023606540755130023,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035586100000007 47.564043596244844, 10.035869399999997 47.56421759624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_55_LVCableDist_mvgd_33532_lvgd_1163940004_building_446120,BranchTee_mvgd_33532_lvgd_1163940004_55,BranchTee_mvgd_33532_lvgd_1163940004_building_446120,0.020048951044387364,0.017402489506528233,0.0017069107711884994,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035658734147315 47.564327942444365, 10.035869399999997 47.56421759624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_55_LVStation_mvgd_33532_lvgd_1163940004,BusBar_mvgd_33532_lvgd_1163940004_LV,BranchTee_mvgd_33532_lvgd_1163940004_55,0.015558555642970958,0.004978737805750706,0.001275732611229908,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035869399999997 47.56421759624487, 10.035941700000006 47.56427029624488, 10.0359923 47.56432909624486)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_56_LVCableDist_mvgd_33532_lvgd_1163940004_65,BranchTee_mvgd_33532_lvgd_1163940004_56,BranchTee_mvgd_33532_lvgd_1163940004_65,0.28187120282875266,0.09019878490520085,0.02311218945170506,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0280832 47.56454249624488, 10.028340099999994 47.56463829624486, 10.028485399999996 47.56463599624492, 10.028668200000002 47.56460289624488, 10.028941799999998 47.56469069624489, 10.029250399999993 47.56479519624488, 10.029312900000004 47.56485399624487, 10.029603300000003 47.56478309624489, 10.029811199999996 47.564693396244884, 10.030016399999996 47.564540696244904, 10.0301254 47.56441389624488, 10.030212600000002 47.564283796244865, 10.030349899999997 47.564132796244834, 10.030552600000002 47.56400949624484, 10.0308485 47.56390009624483, 10.031048600000002 47.56387919624479)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_56_LVCableDist_mvgd_33532_lvgd_1163940004_building_446033,BranchTee_mvgd_33532_lvgd_1163940004_56,BranchTee_mvgd_33532_lvgd_1163940004_building_446033,0.016475916666376905,0.014301095666415154,0.0014027127684027025,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028287150038915 47.564488796333045, 10.0280832 47.56454249624488)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_57_LVCableDist_mvgd_33532_lvgd_1163940004_58,BranchTee_mvgd_33532_lvgd_1163940004_57,BranchTee_mvgd_33532_lvgd_1163940004_58,0.014265491799918319,0.004564957375973862,0.0011697071066240365,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0350965 47.5629514962447, 10.034941899999998 47.562877296244764)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_57_LVCableDist_mvgd_33532_lvgd_1163940004_building_446187,BranchTee_mvgd_33532_lvgd_1163940004_57,BranchTee_mvgd_33532_lvgd_1163940004_building_446187,0.008326547080859899,0.007227442866186392,0.0007088985786668729,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035024266798494 47.56282729734361, 10.034941899999998 47.562877296244764)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_58_LVCableDist_mvgd_33532_lvgd_1163940004_60,BranchTee_mvgd_33532_lvgd_1163940004_58,BranchTee_mvgd_33532_lvgd_1163940004_60,0.23822181854889596,0.0762309819356467,0.019533133383536124,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0350965 47.5629514962447, 10.0352147 47.562851996244746, 10.0354819 47.56271789624472, 10.035709299999999 47.5626454962447, 10.036048600000003 47.56254489624473, 10.036241000000006 47.56246699624466, 10.036298000000007 47.56254209624472, 10.036317699999998 47.5626052962447, 10.036321899999999 47.56290549624473, 10.036333199999996 47.56332269624479, 10.036367400000001 47.56347659624483, 10.036427800000002 47.56366789624479)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_58_LVCableDist_mvgd_33532_lvgd_1163940004_64,BranchTee_mvgd_33532_lvgd_1163940004_58,BranchTee_mvgd_33532_lvgd_1163940004_64,0.08751853637029443,0.028005931638494217,0.0071761321228514365,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034274199999997 47.563472396244784, 10.034557499999998 47.56339239624475, 10.034746699999998 47.56329069624475, 10.034928700000002 47.56315119624476, 10.0350965 47.5629514962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_59_LVCableDist_mvgd_33532_lvgd_1163940004_61,BranchTee_mvgd_33532_lvgd_1163940004_59,BranchTee_mvgd_33532_lvgd_1163940004_61,0.02693275203139448,0.008618480650046235,0.0022083663075846754,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.035301600000002 47.56389669624484, 10.035586100000007 47.564043596244844)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_59_LVCableDist_mvgd_33532_lvgd_1163940004_63,BranchTee_mvgd_33532_lvgd_1163940004_59,BranchTee_mvgd_33532_lvgd_1163940004_63,0.052889768701451984,0.016924725984464636,0.004336726639746423,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034756400000003 47.56359659624476, 10.035301600000002 47.56389669624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_59_LVCableDist_mvgd_33532_lvgd_1163940004_building_446202,BranchTee_mvgd_33532_lvgd_1163940004_59,BranchTee_mvgd_33532_lvgd_1163940004_building_446202,0.01983659819367485,0.017218167232109772,0.001688831652367206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03532520212923 47.563718879511754, 10.035301600000002 47.56389669624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_5_LVCableDist_mvgd_33532_lvgd_1163940004_building_446122,BranchTee_mvgd_33532_lvgd_1163940004_5,BranchTee_mvgd_33532_lvgd_1163940004_building_446122,0.015866311925988114,0.013771958751757683,0.0013508127515273313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03577708384403 47.56447882093662, 10.0359819 47.56444529624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_5_LVStation_mvgd_33532_lvgd_1163940004,BusBar_mvgd_33532_lvgd_1163940004_LV,BranchTee_mvgd_33532_lvgd_1163940004_5,0.012934459573196751,0.0041390270634229604,0.0010605683628233673,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0359923 47.56432909624486, 10.0359819 47.56444529624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_60_LVCableDist_mvgd_33532_lvgd_1163940004_building_446153,BranchTee_mvgd_33532_lvgd_1163940004_60,BranchTee_mvgd_33532_lvgd_1163940004_building_446153,0.022695417514388045,0.019699622402488823,0.00193222341289391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036684373490958 47.56356072087208, 10.036427800000002 47.56366789624479)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_60_LVCableDist_mvgd_33532_lvgd_1163940004_building_446162,BranchTee_mvgd_33532_lvgd_1163940004_60,BranchTee_mvgd_33532_lvgd_1163940004_building_446162,0.020242116057457897,0.017570156737873453,0.0017233562919889086,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036434836402485 47.56385001807506, 10.036427800000002 47.56366789624479)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_61_LVCableDist_mvgd_33532_lvgd_1163940004_building_446119,BranchTee_mvgd_33532_lvgd_1163940004_61,BranchTee_mvgd_33532_lvgd_1163940004_building_446119,0.02073278869563451,0.017996060587810756,0.0017651307673406057,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03533260216576 47.5641164193125, 10.035586100000007 47.564043596244844)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_62_LVCableDist_mvgd_33532_lvgd_1163940004_64,BranchTee_mvgd_33532_lvgd_1163940004_62,BranchTee_mvgd_33532_lvgd_1163940004_64,0.006069478448266412,0.001942233103445252,0.0004976703343994984,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034274199999997 47.563472396244784, 10.0341981 47.56349039624475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_62_LVCableDist_mvgd_33532_lvgd_1163940004_71,BranchTee_mvgd_33532_lvgd_1163940004_62,BranchTee_mvgd_33532_lvgd_1163940004_71,0.017337533791785938,0.0055480108133715,0.001421600935461791,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0339786 47.563537496244784, 10.0341981 47.56349039624475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_62_LVCableDist_mvgd_33532_lvgd_1163940004_building_446165,BranchTee_mvgd_33532_lvgd_1163940004_62,BranchTee_mvgd_33532_lvgd_1163940004_building_446165,0.033722920151751136,0.029271494691719985,0.0028710736793917213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034231272043478 47.56379307723874, 10.0341981 47.56349039624475)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_63_LVCableDist_mvgd_33532_lvgd_1163940004_64,BranchTee_mvgd_33532_lvgd_1163940004_63,BranchTee_mvgd_33532_lvgd_1163940004_64,0.038997203282536745,0.012479105050411759,0.003197597843651392,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034274199999997 47.563472396244784, 10.034517899999996 47.563518596244776, 10.034756400000003 47.56359659624476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_63_LVCableDist_mvgd_33532_lvgd_1163940004_building_446169,BranchTee_mvgd_33532_lvgd_1163940004_63,BranchTee_mvgd_33532_lvgd_1163940004_building_446169,0.02507314133019857,0.021763486674612358,0.002134656068005539,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034556976714862 47.56377731071136, 10.034756400000003 47.56359659624476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_63_LVCableDist_mvgd_33532_lvgd_1163940004_building_446195,BranchTee_mvgd_33532_lvgd_1163940004_63,BranchTee_mvgd_33532_lvgd_1163940004_building_446195,0.017439389320913767,0.01513738993055315,0.0014847400948265921,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034983850037838 47.56356704635459, 10.034756400000003 47.56359659624476)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_65_LVCableDist_mvgd_33532_lvgd_1163940004_67,BranchTee_mvgd_33532_lvgd_1163940004_65,BranchTee_mvgd_33532_lvgd_1163940004_67,0.03226237960132143,0.010323961472422857,0.0026453721487880357,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.031048600000002 47.56387919624479, 10.031477000000004 47.56388309624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_65_LVCableDist_mvgd_33532_lvgd_1163940004_building_446093,BranchTee_mvgd_33532_lvgd_1163940004_65,BranchTee_mvgd_33532_lvgd_1163940004_building_446093,0.026636793450800247,0.023120736715294615,0.0022677809702080372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031190850007004 47.56365969625965, 10.031048600000002 47.56387919624479)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_66_LVCableDist_mvgd_33532_lvgd_1163940004_68,BranchTee_mvgd_33532_lvgd_1163940004_66,BranchTee_mvgd_33532_lvgd_1163940004_68,0.018796707443413392,0.006014946381892285,0.001541246708215097,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0320594 47.56393649624482, 10.0323076 47.563954496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_66_LVCableDist_mvgd_33532_lvgd_1163940004_building_446096,BranchTee_mvgd_33532_lvgd_1163940004_66,BranchTee_mvgd_33532_lvgd_1163940004_building_446096,0.0264762771059039,0.022981408527924584,0.0022541150643235453,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032237800009334 47.56372094629816, 10.0323076 47.563954496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_66_LVCableDist_mvgd_33532_lvgd_1163940004_building_446115,BranchTee_mvgd_33532_lvgd_1163940004_66,BranchTee_mvgd_33532_lvgd_1163940004_building_446115,0.02534067033377984,0.0219957018497209,0.002157432727832141,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032216200001065 47.5641739962659, 10.0323076 47.563954496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_66_LVCableDist_mvgd_33532_lvgd_1163940004_building_446118,BranchTee_mvgd_33532_lvgd_1163940004_66,BranchTee_mvgd_33532_lvgd_1163940004_building_446118,0.04359979561910957,0.037844622597387106,0.0037119628153668006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032324151244445 47.56434674519825, 10.0323076 47.563954496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_66_LVCableDist_mvgd_33532_lvgd_1163940004_building_446123,BranchTee_mvgd_33532_lvgd_1163940004_66,BranchTee_mvgd_33532_lvgd_1163940004_building_446123,0.04470581935783873,0.03880465120260402,0.0038061265363837906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03241835000041 47.56434979626591, 10.0323076 47.563954496244826)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_67_LVCableDist_mvgd_33532_lvgd_1163940004_building_446099,BranchTee_mvgd_33532_lvgd_1163940004_67,BranchTee_mvgd_33532_lvgd_1163940004_building_446099,0.027744143530791694,0.024081916584727192,0.0023620576121544993,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031307077873834 47.5641046600747, 10.031477000000004 47.56388309624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_67_LVCableDist_mvgd_33532_lvgd_1163940004_building_446103,BranchTee_mvgd_33532_lvgd_1163940004_67,BranchTee_mvgd_33532_lvgd_1163940004_building_446103,0.024056902428505497,0.02088139130794277,0.002048136373106774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031447867273084 47.56366748022721, 10.031477000000004 47.56388309624484)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_68_LVCableDist_mvgd_33532_lvgd_1163940004_building_446110,BranchTee_mvgd_33532_lvgd_1163940004_68,BranchTee_mvgd_33532_lvgd_1163940004_building_446110,0.033045849897796936,0.02868379771128774,0.002813429840231902,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03190593014434 47.56421513864123, 10.0320594 47.56393649624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_68_LVCableDist_mvgd_33532_lvgd_1163940004_building_446114,BranchTee_mvgd_33532_lvgd_1163940004_68,BranchTee_mvgd_33532_lvgd_1163940004_building_446114,0.025961676055329484,0.02253473481602599,0.0022103033918751615,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032122264506805 47.56416624036618, 10.0320594 47.56393649624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_69_LVCableDist_mvgd_33532_lvgd_1163940004_70,BranchTee_mvgd_33532_lvgd_1163940004_69,BranchTee_mvgd_33532_lvgd_1163940004_70,0.03506466178405571,0.011220691770897828,0.0028751468687825458,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.032718300000004 47.56389569624482, 10.033139199999995 47.56376069624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_69_LVCableDist_mvgd_33532_lvgd_1163940004_building_446097,BranchTee_mvgd_33532_lvgd_1163940004_69,BranchTee_mvgd_33532_lvgd_1163940004_building_446097,0.018877447784005696,0.016385624676516945,0.0016071723096001207,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032648389715108 47.56373253524524, 10.032718300000004 47.56389569624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_69_LVCableDist_mvgd_33532_lvgd_1163940004_building_446124,BranchTee_mvgd_33532_lvgd_1163940004_69,BranchTee_mvgd_33532_lvgd_1163940004_building_446124,0.024235958274410278,0.021036811782188122,0.0020633806794718543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032789800476383 47.56410837478585, 10.032718300000004 47.56389569624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_6_LVCableDist_mvgd_33532_lvgd_1163940004_building_446196,BranchTee_mvgd_33532_lvgd_1163940004_6,BranchTee_mvgd_33532_lvgd_1163940004_building_446196,0.01802780900540593,0.015648138216692347,0.0015348364761891566,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035403736786884 47.565469773128555, 10.035423100000004 47.565631496244976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_6_LVCableDist_mvgd_33532_lvgd_1163940004_building_446197,BranchTee_mvgd_33532_lvgd_1163940004_6,BranchTee_mvgd_33532_lvgd_1163940004_building_446197,0.01001276870592919,0.008691083236746538,0.0008524587004941691,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03532467669164 47.565570901356296, 10.035423100000004 47.565631496244976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_6_LVCableDist_mvgd_33532_lvgd_1163940004_building_446201,BranchTee_mvgd_33532_lvgd_1163940004_6,BranchTee_mvgd_33532_lvgd_1163940004_building_446201,0.02233162605914068,0.01938385141933411,0.0019012512412300013,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035376524864667 47.5658299929314, 10.035423100000004 47.565631496244976)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_70_LVCableDist_mvgd_33532_lvgd_1163940004_71,BranchTee_mvgd_33532_lvgd_1163940004_70,BranchTee_mvgd_33532_lvgd_1163940004_71,0.06789944403601186,0.021727822091523796,0.005567453498182158,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.033139199999995 47.56376069624482, 10.0339786 47.563537496244784)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_70_LVCableDist_mvgd_33532_lvgd_1163940004_building_446098,BranchTee_mvgd_33532_lvgd_1163940004_70,BranchTee_mvgd_33532_lvgd_1163940004_building_446098,0.01595213955778999,0.01384645713616171,0.0013581198724267676,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033015436587327 47.56364417467077, 10.033139199999995 47.56376069624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_70_LVCableDist_mvgd_33532_lvgd_1163940004_building_446108,BranchTee_mvgd_33532_lvgd_1163940004_70,BranchTee_mvgd_33532_lvgd_1163940004_building_446108,0.028275706146617428,0.024543312935263926,0.002407313344113009,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033352747040837 47.56355136737869, 10.033139199999995 47.56376069624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_70_LVCableDist_mvgd_33532_lvgd_1163940004_building_446121,BranchTee_mvgd_33532_lvgd_1163940004_70,BranchTee_mvgd_33532_lvgd_1163940004_building_446121,0.018171077131924566,0.015772494950510522,0.001547033917730175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033333097609855 47.56385804749884, 10.033139199999995 47.56376069624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_70_LVCableDist_mvgd_33532_lvgd_1163940004_building_446126,BranchTee_mvgd_33532_lvgd_1163940004_70,BranchTee_mvgd_33532_lvgd_1163940004_building_446126,0.031584628359594295,0.027415457416127848,0.0026890255870054493,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033518468620805 47.56388208859298, 10.033139199999995 47.56376069624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_70_LVCableDist_mvgd_33532_lvgd_1163940004_building_446128,BranchTee_mvgd_33532_lvgd_1163940004_70,BranchTee_mvgd_33532_lvgd_1163940004_building_446128,0.026551904568252512,0.02304705316524318,0.002260553771754907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03313685819382 47.56399966504848, 10.033139199999995 47.56376069624482)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_71_LVCableDist_mvgd_33532_lvgd_1163940004_building_446117,BranchTee_mvgd_33532_lvgd_1163940004_71,BranchTee_mvgd_33532_lvgd_1163940004_building_446117,0.026551497979835335,0.02304670024649707,0.002260519155971409,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03366990912328 47.56342201518372, 10.0339786 47.563537496244784)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_71_LVCableDist_mvgd_33532_lvgd_1163940004_building_446147,BranchTee_mvgd_33532_lvgd_1163940004_71,BranchTee_mvgd_33532_lvgd_1163940004_building_446147,0.016951139460449974,0.014713589051670577,0.0014431718878908863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034118846458512 47.563656831776306, 10.0339786 47.563537496244784)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_71_LVCableDist_mvgd_33532_lvgd_1163940004_building_446151,BranchTee_mvgd_33532_lvgd_1163940004_71,BranchTee_mvgd_33532_lvgd_1163940004_building_446151,0.029388129185695177,0.025508896133183412,0.0025020218833935026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033966163096206 47.56380186285808, 10.0339786 47.563537496244784)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_71_LVCableDist_mvgd_33532_lvgd_1163940004_building_446160,BranchTee_mvgd_33532_lvgd_1163940004_71,BranchTee_mvgd_33532_lvgd_1163940004_building_446160,0.034230071306518825,0.02971170189405834,0.002914251088862028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034092183890916 47.56383580213031, 10.0339786 47.563537496244784)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_7_LVCableDist_mvgd_33532_lvgd_1163940004_9,BranchTee_mvgd_33532_lvgd_1163940004_7,BranchTee_mvgd_33532_lvgd_1163940004_9,0.0760833756255373,0.024346680200171937,0.006238499619455569,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.039929699999995 47.56496129624493, 10.039390800000003 47.564931696244926, 10.038921100000003 47.56492829624491)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_7_LVCableDist_mvgd_33532_lvgd_1163940004_building_34328731,BranchTee_mvgd_33532_lvgd_1163940004_7,BranchTee_mvgd_33532_lvgd_1163940004_building_34328731,0.05678019975397678,0.049285213386451844,0.004834105003085916,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039780144483865 47.564460413899624, 10.039929699999995 47.56496129624493)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_8_LVCableDist_mvgd_33532_lvgd_1163940004_building_446205,BranchTee_mvgd_33532_lvgd_1163940004_8,BranchTee_mvgd_33532_lvgd_1163940004_building_446205,0.006667962705164703,0.005787791628082962,0.0005676914137867119,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036406513878743 47.56536996456823, 10.036464200000005 47.56541549624494)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940004_9_LVCableDist_mvgd_33532_lvgd_1163940004_building_34328730,BranchTee_mvgd_33532_lvgd_1163940004_9,BranchTee_mvgd_33532_lvgd_1163940004_building_34328730,0.06293062252125402,0.05462378034844849,0.005357734535902169,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039082867589793 47.56437261489198, 10.038921100000003 47.56492829624491)" -Branch_Generator_mvgd_33532_lvgd_1163940005_pv_rooftop_246_LVStation_mvgd_33532_lvgd_1163940005,BusBar_mvgd_33532_lvgd_1163940005_LV,Bus_mvgd_33532_lvgd_1163940005_gen_246,0.041489627761077695,0.03601299689661544,0.0035323091148856123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059508095502018 47.55548952227469, 10.0598717 47.555341996244074)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_10_LVCableDist_mvgd_33532_lvgd_1163940005_3,BranchTee_mvgd_33532_lvgd_1163940005_3,BranchTee_mvgd_33532_lvgd_1163940005_10,0.06377717534256856,0.05535858819734951,0.005429807639671173,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.053874399999994 47.55504379624405, 10.0547098 47.55494989624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_10_LVCableDist_mvgd_33532_lvgd_1163940005_building_446329,BranchTee_mvgd_33532_lvgd_1163940005_10,BranchTee_mvgd_33532_lvgd_1163940005_building_446329,0.03343101284994243,0.029018119153750032,0.002846221520466163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.053976974385096 47.5547510496373, 10.053874399999994 47.55504379624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_11_LVCableDist_mvgd_33532_lvgd_1163940005_12,BranchTee_mvgd_33532_lvgd_1163940005_11,BranchTee_mvgd_33532_lvgd_1163940005_12,0.041076352536244,0.03565427400145979,0.0034971240355678858,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.058998599999997 47.55537339624407, 10.059543399999999 47.55535609624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_11_LVCableDist_mvgd_33532_lvgd_1163940005_6,BranchTee_mvgd_33532_lvgd_1163940005_6,BranchTee_mvgd_33532_lvgd_1163940005_11,0.019062982872960307,0.016546669133729548,0.0016229682403233242,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.058998599999997 47.55537339624407, 10.059024100000006 47.555202696244024)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_11_LVCableDist_mvgd_33532_lvgd_1163940005_9,BranchTee_mvgd_33532_lvgd_1163940005_9,BranchTee_mvgd_33532_lvgd_1163940005_11,0.04980366687533983,0.043229582847794976,0.004240142800787566,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0583608 47.555289396244085, 10.058619700000001 47.55536549624404, 10.058998599999997 47.55537339624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_11_LVCableDist_mvgd_33532_lvgd_1163940005_building_446332,BranchTee_mvgd_33532_lvgd_1163940005_11,BranchTee_mvgd_33532_lvgd_1163940005_building_446332,0.015435835201444372,0.013398304954853715,0.001314163185360858,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.058979515717029 47.555511720055605, 10.058998599999997 47.55537339624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_11_LVCableDist_mvgd_33532_lvgd_1163940005_building_446335,BranchTee_mvgd_33532_lvgd_1163940005_11,BranchTee_mvgd_33532_lvgd_1163940005_building_446335,0.024588408766013183,0.021342738808899444,0.0020933873136890642,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059224740733612 47.55553300830566, 10.058998599999997 47.55537339624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_12_LVCableDist_mvgd_33532_lvgd_1163940005_building_446344,BranchTee_mvgd_33532_lvgd_1163940005_12,BranchTee_mvgd_33532_lvgd_1163940005_building_446344,0.021116215630739513,0.018328875167481898,0.001797774648012744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059694911382431 47.555196181355655, 10.059543399999999 47.55535609624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_12_LVCableDist_mvgd_33532_lvgd_1163940005_building_446345,BranchTee_mvgd_33532_lvgd_1163940005_12,BranchTee_mvgd_33532_lvgd_1163940005_building_446345,0.04002632532604802,0.034742850383009685,0.003407727700011155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06002627901912 47.555205623993814, 10.059543399999999 47.55535609624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_12_LVCableDist_mvgd_33532_lvgd_1163940005_building_446349,BranchTee_mvgd_33532_lvgd_1163940005_12,BranchTee_mvgd_33532_lvgd_1163940005_building_446349,0.015061128561184684,0.013073059591108306,0.0012822617258341678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059508095502018 47.55548952227469, 10.059543399999999 47.55535609624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_12_LVStation_mvgd_33532_lvgd_1163940005,BusBar_mvgd_33532_lvgd_1163940005_LV,BranchTee_mvgd_33532_lvgd_1163940005_12,0.02477533726151804,0.02150499274299766,0.0021093018750899524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059543399999999 47.55535609624408, 10.0598717 47.555341996244074)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_13_LVCableDist_mvgd_33532_lvgd_1163940005_14,BranchTee_mvgd_33532_lvgd_1163940005_13,BranchTee_mvgd_33532_lvgd_1163940005_14,0.12771383245212126,0.11085560656844125,0.01087319310420065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.060875799999998 47.55525019624408, 10.060931000000004 47.55547939624405, 10.0609356 47.555505396244065, 10.0609607 47.555582796244074, 10.061042600000002 47.55563869624409, 10.061153499999993 47.55567639624412, 10.061334099999995 47.55568759624406, 10.062109800000005 47.555700996244106)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_13_LVCableDist_mvgd_33532_lvgd_1163940005_15,BranchTee_mvgd_33532_lvgd_1163940005_13,BranchTee_mvgd_33532_lvgd_1163940005_15,0.04208491834879736,0.036529709126756106,0.003582990465441869,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.060875799999998 47.55525019624408, 10.06142950054595 47.55519919764838)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_13_LVCableDist_mvgd_33532_lvgd_1163940005_building_446352,BranchTee_mvgd_33532_lvgd_1163940005_13,BranchTee_mvgd_33532_lvgd_1163940005_building_446352,0.027608542699493945,0.023964215063160745,0.0023505129423604634,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.061120699992303 47.555065296305344, 10.060875799999998 47.55525019624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_13_LVStation_mvgd_33532_lvgd_1163940005,BusBar_mvgd_33532_lvgd_1163940005_LV,BranchTee_mvgd_33532_lvgd_1163940005_13,0.07631452312474324,0.06624100607227713,0.006497201835215438,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0598717 47.555341996244074, 10.060347799999995 47.55530299624407, 10.060875799999998 47.55525019624408)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_14_LVCableDist_mvgd_33532_lvgd_1163940005_building_446346,BranchTee_mvgd_33532_lvgd_1163940005_14,BranchTee_mvgd_33532_lvgd_1163940005_building_446346,0.017807957232403776,0.015457306877726477,0.0015161189204142213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.062183726925081 47.555548753320146, 10.062109800000005 47.555700996244106)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_15_LVCableDist_mvgd_33532_lvgd_1163940005_16,BranchTee_mvgd_33532_lvgd_1163940005_15,BranchTee_mvgd_33532_lvgd_1163940005_16,0.04208491834978262,0.03652970912761131,0.0035829904655257515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06142950054595 47.55519919764838, 10.061983199999995 47.55514819624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_15_LVCableDist_mvgd_33532_lvgd_1163940005_building_446355,BranchTee_mvgd_33532_lvgd_1163940005_15,BranchTee_mvgd_33532_lvgd_1163940005_building_446355,0.016919479662936793,0.014686108347429137,0.0014404764626155563,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0614845531753 47.555051559707984, 10.06142950054595 47.55519919764838)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_16_LVCableDist_mvgd_33532_lvgd_1163940005_17,BranchTee_mvgd_33532_lvgd_1163940005_16,BranchTee_mvgd_33532_lvgd_1163940005_17,0.02941925664773952,0.0255359147702379,0.002504671987138363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.061983199999995 47.55514819624401, 10.062371500000003 47.55511939624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_16_LVCableDist_mvgd_33532_lvgd_1163940005_building_446357,BranchTee_mvgd_33532_lvgd_1163940005_16,BranchTee_mvgd_33532_lvgd_1163940005_building_446357,0.022796381831356998,0.019787259429617874,0.0019408192281940946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0617298466666 47.55503593864708, 10.061983199999995 47.55514819624401)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_17_LVCableDist_mvgd_33532_lvgd_1163940005_18,BranchTee_mvgd_33532_lvgd_1163940005_17,BranchTee_mvgd_33532_lvgd_1163940005_18,0.04769587626364267,0.041400020596841836,0.004060691492310104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.062371500000003 47.55511939624407, 10.062718600000002 47.55512329624401, 10.063004500000005 47.55513119624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_17_LVCableDist_mvgd_33532_lvgd_1163940005_building_446343,BranchTee_mvgd_33532_lvgd_1163940005_17,BranchTee_mvgd_33532_lvgd_1163940005_building_446343,0.014355105332930692,0.01246023142898384,0.001222152912642498,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06250540000004 47.555027446255046, 10.062371500000003 47.55511939624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_18_LVCableDist_mvgd_33532_lvgd_1163940005_19,BranchTee_mvgd_33532_lvgd_1163940005_18,BranchTee_mvgd_33532_lvgd_1163940005_19,0.07096995171720229,0.06160191809053159,0.006042180199284435,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.063004500000005 47.55513119624405, 10.063195399999996 47.55510889624403, 10.063468099999996 47.55507209624403, 10.063622400000003 47.55503369624401, 10.063628699999999 47.554826196243994)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_18_LVCableDist_mvgd_33532_lvgd_1163940005_building_446353,BranchTee_mvgd_33532_lvgd_1163940005_18,BranchTee_mvgd_33532_lvgd_1163940005_building_446353,0.014262034976195586,0.012379446359337768,0.0012142291667049776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.062892999997608 47.55502744629373, 10.063004500000005 47.55513119624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_19_LVCableDist_mvgd_33532_lvgd_1163940005_21,BranchTee_mvgd_33532_lvgd_1163940005_19,BranchTee_mvgd_33532_lvgd_1163940005_21,0.11442625266940594,0.09932198731704435,0.009741926286104811,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.063628699999999 47.554826196243994, 10.063734 47.554830596244045, 10.064602900000002 47.554848396244054, 10.065004399999996 47.55483919624402, 10.0650152 47.554742696244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_19_LVCableDist_mvgd_33532_lvgd_1163940005_building_446358,BranchTee_mvgd_33532_lvgd_1163940005_19,BranchTee_mvgd_33532_lvgd_1163940005_building_446358,0.02850779091969007,0.02474476251829098,0.002427072382783385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.063353578336207 47.55464998407479, 10.063628699999999 47.554826196243994)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_19_LVCableDist_mvgd_33532_lvgd_1163940005_building_446535,BranchTee_mvgd_33532_lvgd_1163940005_19,BranchTee_mvgd_33532_lvgd_1163940005_building_446535,0.025476551468346917,0.022113646674525124,0.0021690012618507215,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.063597122780603 47.55459790143124, 10.063628699999999 47.554826196243994)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_1_LVCableDist_mvgd_33532_lvgd_1163940005_2,BranchTee_mvgd_33532_lvgd_1163940005_1,BranchTee_mvgd_33532_lvgd_1163940005_2,0.14241666070353995,0.12361766149067267,0.01212495015890735,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.057419099999997 47.55517239624403, 10.056603399999995 47.55506489624405, 10.0555555 47.55495679624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_1_LVCableDist_mvgd_33532_lvgd_1163940005_5,BranchTee_mvgd_33532_lvgd_1163940005_1,BranchTee_mvgd_33532_lvgd_1163940005_5,0.028674809333421813,0.024889734501410132,0.002441291856348579,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.057419099999997 47.55517239624403, 10.057793599999997 47.55521889624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_1_LVCableDist_mvgd_33532_lvgd_1163940005_building_446313,BranchTee_mvgd_33532_lvgd_1163940005_1,BranchTee_mvgd_33532_lvgd_1163940005_building_446313,0.03065425948818707,0.026607897235746376,0.002609816622692673,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.057220111636385 47.555413076251234, 10.057419099999997 47.55517239624403)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_20_LVCableDist_mvgd_33532_lvgd_1163940005_21,BranchTee_mvgd_33532_lvgd_1163940005_20,BranchTee_mvgd_33532_lvgd_1163940005_21,0.028888828558075005,0.025075503188409103,0.0024595128455161997,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0650152 47.554742696244, 10.065043500000003 47.554483396244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_20_LVCableDist_mvgd_33532_lvgd_1163940005_building_446539,BranchTee_mvgd_33532_lvgd_1163940005_20,BranchTee_mvgd_33532_lvgd_1163940005_building_446539,0.011297404882309122,0.009806147437844318,0.0009618289773563679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065151800000038 47.55455374626567, 10.065043500000003 47.554483396244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_21_LVCableDist_mvgd_33532_lvgd_1163940005_building_446541,BranchTee_mvgd_33532_lvgd_1163940005_21,BranchTee_mvgd_33532_lvgd_1163940005_building_446541,0.01593280882722342,0.01382967806202993,0.00135647410890797,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065189773390424 47.55466169949057, 10.0650152 47.554742696244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_21_LVCableDist_mvgd_33532_lvgd_1163940005_building_446542,BranchTee_mvgd_33532_lvgd_1163940005_21,BranchTee_mvgd_33532_lvgd_1163940005_building_446542,0.007129909709055003,0.006188761627459743,0.0006070202701898675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065099650000118 47.55471369625027, 10.0650152 47.554742696244)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_2_LVCableDist_mvgd_33532_lvgd_1163940005_7,BranchTee_mvgd_33532_lvgd_1163940005_2,BranchTee_mvgd_33532_lvgd_1163940005_7,0.03373525772067339,0.0292822037015445,0.0028721240649823214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055109199999995 47.55493099624401, 10.0555555 47.55495679624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_2_LVCableDist_mvgd_33532_lvgd_1163940005_building_446341,BranchTee_mvgd_33532_lvgd_1163940005_2,BranchTee_mvgd_33532_lvgd_1163940005_building_446341,0.012588771053513019,0.010927053274449301,0.0010717722268708335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055514072994447 47.55484702927649, 10.0555555 47.55495679624407)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_3_LVCableDist_mvgd_33532_lvgd_1163940005_7,BranchTee_mvgd_33532_lvgd_1163940005_3,BranchTee_mvgd_33532_lvgd_1163940005_7,0.0301540651244449,0.02617372852801817,0.0025672314946593383,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055109199999995 47.55493099624401, 10.0547098 47.55494989624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_3_LVCableDist_mvgd_33532_lvgd_1163940005_building_446328,BranchTee_mvgd_33532_lvgd_1163940005_3,BranchTee_mvgd_33532_lvgd_1163940005_building_446328,0.041280550426512304,0.03583151777021268,0.0035145088642096075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.05441067341645 47.55463857156333, 10.0547098 47.55494989624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_3_LVCableDist_mvgd_33532_lvgd_1163940005_building_446331,BranchTee_mvgd_33532_lvgd_1163940005_3,BranchTee_mvgd_33532_lvgd_1163940005_building_446331,0.023225863940922818,0.020160049900721008,0.0019773841156651467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.054428156915955 47.55486475797469, 10.0547098 47.55494989624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_4_LVCableDist_mvgd_33532_lvgd_1163940005_7,BranchTee_mvgd_33532_lvgd_1163940005_4,BranchTee_mvgd_33532_lvgd_1163940005_7,0.04294396504446065,0.03727536165859185,0.0036561272622017203,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055109199999995 47.55493099624401, 10.055227500000004 47.55455289624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_4_LVCableDist_mvgd_33532_lvgd_1163940005_building_446338,BranchTee_mvgd_33532_lvgd_1163940005_4,BranchTee_mvgd_33532_lvgd_1163940005_building_446338,0.007297853833889179,0.006334537127815808,0.0006213185561701474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055148671147556 47.55451470176916, 10.055227500000004 47.55455289624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_4_LVCableDist_mvgd_33532_lvgd_1163940005_building_446339,BranchTee_mvgd_33532_lvgd_1163940005_4,BranchTee_mvgd_33532_lvgd_1163940005_building_446339,0.008939134217707796,0.007759168500970367,0.0007610525083094873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0553327000053 47.55459014627812, 10.055227500000004 47.55455289624404)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_5_LVCableDist_mvgd_33532_lvgd_1163940005_9,BranchTee_mvgd_33532_lvgd_1163940005_5,BranchTee_mvgd_33532_lvgd_1163940005_9,0.043491707329432014,0.03775080196194699,0.003702760485255789,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.057793599999997 47.55521889624405, 10.058075299999997 47.555243396244045, 10.0583608 47.555289396244085)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_5_LVCableDist_mvgd_33532_lvgd_1163940005_building_446314,BranchTee_mvgd_33532_lvgd_1163940005_5,BranchTee_mvgd_33532_lvgd_1163940005_building_446314,0.03434251814363063,0.029809305748671387,0.0029238244933272933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.057657165195662 47.55551383112688, 10.057793599999997 47.55521889624405)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_6_LVCableDist_mvgd_33532_lvgd_1163940005_8,BranchTee_mvgd_33532_lvgd_1163940005_6,BranchTee_mvgd_33532_lvgd_1163940005_8,0.04645960485740593,0.04032693701622835,0.003955438854666073,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059024100000006 47.555202696244024, 10.059203400000005 47.55480259624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_6_LVCableDist_mvgd_33532_lvgd_1163940005_building_446337,BranchTee_mvgd_33532_lvgd_1163940005_6,BranchTee_mvgd_33532_lvgd_1163940005_building_446337,0.025557684315143235,0.022184069985544327,0.0021759086820836914,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059357388163612 47.55515942669589, 10.059024100000006 47.555202696244024)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_8_LVCableDist_mvgd_33532_lvgd_1163940005_building_446317,BranchTee_mvgd_33532_lvgd_1163940005_8,BranchTee_mvgd_33532_lvgd_1163940005_building_446317,0.019766857493236426,0.017157632304129217,0.0016828941271318446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0590708927205 47.554956166703654, 10.059203400000005 47.55480259624399)" -Branch_LVCableDist_mvgd_33532_lvgd_1163940005_9_LVCableDist_mvgd_33532_lvgd_1163940005_building_446318,BranchTee_mvgd_33532_lvgd_1163940005_9,BranchTee_mvgd_33532_lvgd_1163940005_building_446318,0.015721034179488547,0.013645857667796059,0.0013384442166466239,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.058257821332921 47.55541247457989, 10.0583608 47.555289396244085)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_1_LVCableDist_mvgd_33532_lvgd_1163980000_building_446370,BranchTee_mvgd_33532_lvgd_1163980000_1,BranchTee_mvgd_33532_lvgd_1163980000_building_446370,0.020646485939203405,0.017921149795228554,0.001757783195679157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0506767124009 47.56232077281203, 10.050635599999998 47.56250449624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_1_LVStation_mvgd_33532_lvgd_1163980000,BusBar_mvgd_33532_lvgd_1163980000_LV,BranchTee_mvgd_33532_lvgd_1163980000_1,0.06184301126414875,0.053679733777281115,0.005265138401295987,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0513544 47.56223849624466, 10.050976399999998 47.56240189624465, 10.050635599999998 47.56250449624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_2_LVCableDist_mvgd_33532_lvgd_1163980000_3,BranchTee_mvgd_33532_lvgd_1163980000_2,BranchTee_mvgd_33532_lvgd_1163980000_3,0.2257090356084808,0.19591544290816132,0.019216226483955535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051416600000003 47.56269649624471, 10.0514717 47.56272569624471, 10.051702500000003 47.56279319624471, 10.051755000000002 47.56279349624469, 10.052194300000005 47.56279619624477, 10.052463400000002 47.56279949624474, 10.052650399999996 47.56283599624473, 10.052840500000002 47.56291109624475, 10.053319000000007 47.563306996244776, 10.053534999999995 47.56341719624478, 10.053703299999999 47.563462096244784, 10.053731799999998 47.56339929624482, 10.053771199999998 47.563268396244794)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_2_LVCableDist_mvgd_33532_lvgd_1163980000_building_446384,BranchTee_mvgd_33532_lvgd_1163980000_2,BranchTee_mvgd_33532_lvgd_1163980000_building_446384,0.059952161970899344,0.05203847659074063,0.005104156860755735,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051528823722016 47.56216229695371, 10.051416600000003 47.56269649624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_2_LVCableDist_mvgd_33532_lvgd_1163980000_building_446394,BranchTee_mvgd_33532_lvgd_1163980000_2,BranchTee_mvgd_33532_lvgd_1163980000_building_446394,0.018059566521351253,0.015675703740532888,0.0015375402209343678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051180172690168 47.56272375272389, 10.051416600000003 47.56269649624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_2_LVStation_mvgd_33532_lvgd_1163980000,BusBar_mvgd_33532_lvgd_1163980000_LV,BranchTee_mvgd_33532_lvgd_1163980000_2,0.05124618278768099,0.0444816866597071,0.004362954510135085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051416600000003 47.56269649624471, 10.051396700000007 47.56264979624473, 10.051391300000008 47.5625596962447, 10.0513759 47.56248249624468, 10.051365699999998 47.562310896244654, 10.0513544 47.56223849624466)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_3_LVCableDist_mvgd_33532_lvgd_1163980000_building_446378,BranchTee_mvgd_33532_lvgd_1163980000_3,BranchTee_mvgd_33532_lvgd_1163980000_building_446378,0.017134684202373872,0.01487290588766052,0.0014587983661186648,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.053573063348413 47.5631925713402, 10.053771199999998 47.563268396244794)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_4_LVCableDist_mvgd_33532_lvgd_1163980000_5,BranchTee_mvgd_33532_lvgd_1163980000_4,BranchTee_mvgd_33532_lvgd_1163980000_5,0.1721585268977797,0.14943360134727277,0.01465708820691794,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048245999999999 47.56059759624454, 10.048100699999999 47.560575496244525, 10.047890700000004 47.56058749624453, 10.047876700000007 47.560510496244525, 10.047839000000005 47.56046599624451, 10.047779900000002 47.560430696244495, 10.047688499999996 47.56041069624451, 10.047485499999993 47.56037989624454, 10.047363100000004 47.56035719624448, 10.047295900000005 47.56033269624449, 10.047247500000003 47.560297296244464, 10.0470298 47.560031496244484, 10.047008300000003 47.55996349624449, 10.047016300000001 47.55992719624451, 10.047036500000004 47.55988909624442, 10.047071399999998 47.55985829624446, 10.0471265 47.55983649624445, 10.047221999999996 47.55984369624446, 10.047407499999998 47.55988819624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_4_LVCableDist_mvgd_33532_lvgd_1163980000_building_446375,BranchTee_mvgd_33532_lvgd_1163980000_4,BranchTee_mvgd_33532_lvgd_1163980000_building_446375,0.01633478218621467,0.014178590937634334,0.0013906969794548589,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048170400007438 47.560735396268655, 10.048245999999999 47.56059759624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_4_LVStation_mvgd_33532_lvgd_1163980000,BusBar_mvgd_33532_lvgd_1163980000_LV,BranchTee_mvgd_33532_lvgd_1163980000_4,0.3317011443443296,0.2879165932908781,0.028240093700831737,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0513544 47.56223849624466, 10.051307499999998 47.56209329624469, 10.051006700000004 47.56153429624455, 10.050779899999998 47.56123139624461, 10.050625599999995 47.56110769624458, 10.0504846 47.561050196244565, 10.050218100000004 47.561021496244614, 10.050182700000002 47.5610176962446, 10.049680700000005 47.56100989624455, 10.0492804 47.560990796244575, 10.048959899999998 47.56091549624459, 10.048498400000003 47.560703696244566, 10.048428200000004 47.56067149624454, 10.048337000000004 47.56063449624457, 10.048245999999999 47.56059759624454)" -Branch_LVCableDist_mvgd_33532_lvgd_1163980000_5_LVCableDist_mvgd_33532_lvgd_1163980000_building_446371,BranchTee_mvgd_33532_lvgd_1163980000_5,BranchTee_mvgd_33532_lvgd_1163980000_building_446371,0.009261389598194631,0.00803888617123294,0.0007884884164928441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.047406519612409 47.559971548687116, 10.047407499999998 47.55988819624449)" -Branch_LVCableDist_mvgd_33532_lvgd_1164000000_building_446387_LVStation_mvgd_33532_lvgd_1164000000,BusBar_mvgd_33532_lvgd_1164000000_LV,BranchTee_mvgd_33532_lvgd_1164000000_building_446387,0.01700278477753843,0.014758417186903357,0.0014475688235622121,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.058863726561917 47.565628434212776, 10.058768199999996 47.56576709624502)" -Branch_LVCableDist_mvgd_33532_lvgd_1164650000_building_431401_LVStation_mvgd_33532_lvgd_1164650000,BusBar_mvgd_33532_lvgd_1164650000_LV,BranchTee_mvgd_33532_lvgd_1164650000_building_431401,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006545348901419 47.511165158297686, 10.006545348901419 47.511165158297686)" -Branch_LVCableDist_mvgd_33532_lvgd_1165560000_building_442271_LVStation_mvgd_33532_lvgd_1165560000,BusBar_mvgd_33532_lvgd_1165560000_LV,BranchTee_mvgd_33532_lvgd_1165560000_building_442271,0.027862219537178413,0.024184406558270862,0.002372110268110125,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008300057214763 47.57223794176855, 10.008001799999994 47.57208949624548)" -Branch_LVCableDist_mvgd_33532_lvgd_1165580000_building_430919_LVStation_mvgd_33532_lvgd_1165580000,BusBar_mvgd_33532_lvgd_1165580000_LV,BranchTee_mvgd_33532_lvgd_1165580000_building_430919,0.011647730989084885,0.01011023049852568,0.0009916547474807097,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00497080004529 47.50384399629569, 10.00487026241384 47.50392359944945)" -Branch_LVCableDist_mvgd_33532_lvgd_1165580000_building_430922_LVStation_mvgd_33532_lvgd_1165580000,BusBar_mvgd_33532_lvgd_1165580000_LV,BranchTee_mvgd_33532_lvgd_1165580000_building_430922,0.003986822245570147,0.003460561709154887,0.00033942672704977665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.004835850003975 47.50395084624699, 10.00487026241384 47.50392359944945)" -Branch_LVCableDist_mvgd_33532_lvgd_1166160000_building_431459_LVStation_mvgd_33532_lvgd_1166160000,BusBar_mvgd_33532_lvgd_1166160000_LV,BranchTee_mvgd_33532_lvgd_1166160000_building_431459,0.01050352636030089,0.009117060880741172,0.0008942404138833473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.007413250026959 47.52283874630099, 10.007437925988821 47.52293178918052)" -Branch_LVCableDist_mvgd_33532_lvgd_1166160000_building_431460_LVStation_mvgd_33532_lvgd_1166160000,BusBar_mvgd_33532_lvgd_1166160000_LV,BranchTee_mvgd_33532_lvgd_1166160000_building_431460,0.009334769681787005,0.00810258008379112,0.0007947357884774048,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.007459856262065 47.52301447891101, 10.007437925988821 47.52293178918052)" -Branch_LVCableDist_mvgd_33532_lvgd_1166370000_building_431436_LVStation_mvgd_33532_lvgd_1166370000,BusBar_mvgd_33532_lvgd_1166370000_LV,BranchTee_mvgd_33532_lvgd_1166370000_building_431436,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010055050033241 47.51512089628523, 10.010055050033241 47.51512089628523)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_10_LVCableDist_mvgd_33532_lvgd_1166640000_12,BranchTee_mvgd_33532_lvgd_1166640000_10,BranchTee_mvgd_33532_lvgd_1166640000_12,0.015723105149874426,0.013647655270091002,0.001338620533185611,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0017151 47.5278922962416, 10.0015165 47.527848896241615)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_10_LVCableDist_mvgd_33532_lvgd_1166640000_9,BranchTee_mvgd_33532_lvgd_1166640000_9,BranchTee_mvgd_33532_lvgd_1166640000_10,0.026904279369302238,0.023352914492554343,0.0022905539618933114,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002059399999993 47.52795519624159, 10.0018989 47.52791949624162, 10.0017151 47.5278922962416)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_10_LVCableDist_mvgd_33532_lvgd_1166640000_building_431592,BranchTee_mvgd_33532_lvgd_1166640000_10,BranchTee_mvgd_33532_lvgd_1166640000_building_431592,0.013618337638283988,0.011820717070030502,0.0011594266028683894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001661464944748 47.5280093447294, 10.0017151 47.5278922962416)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_11_LVCableDist_mvgd_33532_lvgd_1166640000_5,BranchTee_mvgd_33532_lvgd_1166640000_5,BranchTee_mvgd_33532_lvgd_1166640000_11,0.022574684247880866,0.01959482592716059,0.0019219445253558227,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000547499999998 47.52753119624159, 10.000688499999997 47.52755879624157, 10.000840899999996 47.52756649624161)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_11_LVCableDist_mvgd_33532_lvgd_1166640000_7,BranchTee_mvgd_33532_lvgd_1166640000_7,BranchTee_mvgd_33532_lvgd_1166640000_11,0.022138430308173754,0.019216157507494818,0.0018848031034923607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000840899999996 47.52756649624161, 10.0009675 47.52758049624157, 10.001022100000007 47.52759529624155, 10.001090599999996 47.52765079624159)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_11_LVCableDist_mvgd_33532_lvgd_1166640000_building_431608,BranchTee_mvgd_33532_lvgd_1166640000_11,BranchTee_mvgd_33532_lvgd_1166640000_building_431608,0.018968485235725308,0.016464645184609567,0.0016149229797762176,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000856320247514 47.52773689997258, 10.000840899999996 47.52756649624161)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_12_LVCableDist_mvgd_33532_lvgd_1166640000_13,BranchTee_mvgd_33532_lvgd_1166640000_12,BranchTee_mvgd_33532_lvgd_1166640000_13,0.17827180646142166,0.154739928008514,0.0151775554728295,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000305600000006 47.52884329624169, 10.000216599999996 47.52875819624168, 10.000190499999995 47.52868279624164, 10.000197800000004 47.52863989624164, 10.000214199999995 47.52860369624168, 10.0002721 47.528564796241696, 10.0003262 47.528548596241656, 10.000534200000004 47.52852959624172, 10.0008166 47.52852759624168, 10.000941300000004 47.52852179624164, 10.001061700000001 47.528500496241676, 10.001138199999993 47.528478396241624, 10.001197100000004 47.52843689624165, 10.001241800000003 47.52837719624165, 10.001275 47.52825389624166, 10.001396100000001 47.52803839624163, 10.0015165 47.527848896241615)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_12_LVCableDist_mvgd_33532_lvgd_1166640000_8,BranchTee_mvgd_33532_lvgd_1166640000_8,BranchTee_mvgd_33532_lvgd_1166640000_12,0.016666688197198107,0.014466685355167958,0.0014189545149197098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0015165 47.527848896241615, 10.001601100000006 47.5277102962416)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_13_LVCableDist_mvgd_33532_lvgd_1166640000_building_431614,BranchTee_mvgd_33532_lvgd_1166640000_13,BranchTee_mvgd_33532_lvgd_1166640000_building_431614,0.023485450564044306,0.020385371089590456,0.001999484583768517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000598500029314 47.528915546293646, 10.000305600000006 47.52884329624169)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_14_LVCableDist_mvgd_33532_lvgd_1166640000_15,BranchTee_mvgd_33532_lvgd_1166640000_14,BranchTee_mvgd_33532_lvgd_1166640000_15,0.012060360195069907,0.010468392649320679,0.0010267848265877644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002924500000002 47.52634719624145, 10.002946400000003 47.52641599624144, 10.002958299999998 47.526453296241485)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_14_LVCableDist_mvgd_33532_lvgd_1166640000_19,BranchTee_mvgd_33532_lvgd_1166640000_14,BranchTee_mvgd_33532_lvgd_1166640000_19,0.35012278259049884,0.30390657528855297,0.02980845968046372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.005959700000002 47.525792696241425, 10.005704499999998 47.52563299624142, 10.005519400000006 47.525544196241405, 10.005299600000003 47.525472096241366, 10.005154600000003 47.52544349624141, 10.0051068 47.525439496241404, 10.004991400000003 47.52544329624137, 10.0047372 47.525498996241424, 10.004272199999999 47.52562699624142, 10.003789400000004 47.525775496241465, 10.003640700000002 47.525786796241405, 10.003483299999996 47.52579229624146, 10.0033884 47.52577009624143, 10.003343799999998 47.525734696241415, 10.003297599999996 47.525656096241406, 10.003255699999993 47.52561159624142, 10.0031499 47.5255516962414, 10.003056500000001 47.52552939624139, 10.002981600000002 47.52552509624142, 10.0028944 47.52584449624143, 10.002879100000001 47.525969496241466, 10.002885499999994 47.526144496241415, 10.002924500000002 47.52634719624145)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_14_LVCableDist_mvgd_33532_lvgd_1166640000_building_431450,BranchTee_mvgd_33532_lvgd_1166640000_14,BranchTee_mvgd_33532_lvgd_1166640000_building_431450,0.013935660884380344,0.012096153647642138,0.001186442603132503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003109172948914 47.52635379219151, 10.002924500000002 47.52634719624145)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_15_LVCableDist_mvgd_33532_lvgd_1166640000_21,BranchTee_mvgd_33532_lvgd_1166640000_15,BranchTee_mvgd_33532_lvgd_1166640000_21,0.033575010438649994,0.029143109060748195,0.0028584810663469396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002958299999998 47.526453296241485, 10.003035400000002 47.52659779624149, 10.003119600000002 47.52673489624151)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_15_LVCableDist_mvgd_33532_lvgd_1166640000_building_431454,BranchTee_mvgd_33532_lvgd_1166640000_15,BranchTee_mvgd_33532_lvgd_1166640000_building_431454,0.025866776635599237,0.02245236211970014,0.002202223924707105,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003291278574475 47.52639674911151, 10.002958299999998 47.526453296241485)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_16_LVCableDist_mvgd_33532_lvgd_1166640000_17,BranchTee_mvgd_33532_lvgd_1166640000_16,BranchTee_mvgd_33532_lvgd_1166640000_17,0.03083746487726495,0.026766919513465978,0.0026254142093825937,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0031976 47.526873296241526, 10.003241899999997 47.52701249624156, 10.003266300000002 47.52709139624155, 10.003275099999996 47.527145596241546)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_16_LVCableDist_mvgd_33532_lvgd_1166640000_21,BranchTee_mvgd_33532_lvgd_1166640000_16,BranchTee_mvgd_33532_lvgd_1166640000_21,0.016462146241460283,0.014289142937587526,0.0014015403935207455,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003119600000002 47.52673489624151, 10.0031976 47.526873296241526)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_16_LVCableDist_mvgd_33532_lvgd_1166640000_building_431595,BranchTee_mvgd_33532_lvgd_1166640000_16,BranchTee_mvgd_33532_lvgd_1166640000_building_431595,0.012292961183339652,0.010670290307138819,0.0010465878143544418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003036879541833 47.526892248828574, 10.0031976 47.526873296241526)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_17_LVCableDist_mvgd_33532_lvgd_1166640000_20,BranchTee_mvgd_33532_lvgd_1166640000_17,BranchTee_mvgd_33532_lvgd_1166640000_20,0.040456253237059744,0.03511602780976786,0.003444330541751642,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003275099999996 47.527145596241546, 10.003256000000004 47.52722499624158, 10.003095299999995 47.527486896241584)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_17_LVCableDist_mvgd_33532_lvgd_1166640000_building_431621,BranchTee_mvgd_33532_lvgd_1166640000_17,BranchTee_mvgd_33532_lvgd_1166640000_building_431621,0.009296108176649893,0.008069021897332107,0.0007914442576934355,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003395266060705 47.52716452059647, 10.003275099999996 47.527145596241546)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_18_LVCableDist_mvgd_33532_lvgd_1166640000_22,BranchTee_mvgd_33532_lvgd_1166640000_18,BranchTee_mvgd_33532_lvgd_1166640000_22,0.035651942954823934,0.030945886484787175,0.003035305204180394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002681100000002 47.52669719624153, 10.002468700000005 47.526684296241505, 10.002378000000006 47.52662589624149, 10.002270099999999 47.5265710962415)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_18_LVCableDist_mvgd_33532_lvgd_1166640000_building_431440,BranchTee_mvgd_33532_lvgd_1166640000_18,BranchTee_mvgd_33532_lvgd_1166640000_building_431440,0.06463117800071977,0.05609986250462476,0.00550251500139771,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001669780825766 47.526155641524056, 10.002270099999999 47.5265710962415)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_18_LVCableDist_mvgd_33532_lvgd_1166640000_building_431441,BranchTee_mvgd_33532_lvgd_1166640000_18,BranchTee_mvgd_33532_lvgd_1166640000_building_431441,0.01928626998523631,0.01674048234718512,0.0016419782711308054,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002372449974104 47.52641199630945, 10.002270099999999 47.5265710962415)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_19_LVCableDist_mvgd_33532_lvgd_1166640000_23,BranchTee_mvgd_33532_lvgd_1166640000_19,BranchTee_mvgd_33532_lvgd_1166640000_23,0.011898211208731498,0.01032764732917894,0.0010129799222461076,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006094099999995 47.52584889624143, 10.005959700000002 47.525792696241425)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_19_LVCableDist_mvgd_33532_lvgd_1166640000_building_431455,BranchTee_mvgd_33532_lvgd_1166640000_19,BranchTee_mvgd_33532_lvgd_1166640000_building_431455,0.011979359338600996,0.010398083905905665,0.001019888643636538,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.005875515514706 47.52588415573355, 10.005959700000002 47.525792696241425)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_1_LVCableDist_mvgd_33532_lvgd_1166640000_4,BranchTee_mvgd_33532_lvgd_1166640000_1,BranchTee_mvgd_33532_lvgd_1166640000_4,0.06966271466603441,0.060467236330117864,0.005930885748108657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.005604700000001 47.52833659624167, 10.006528100000002 47.52836679624166)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_1_LVCableDist_mvgd_33532_lvgd_1166640000_building_431626,BranchTee_mvgd_33532_lvgd_1166640000_1,BranchTee_mvgd_33532_lvgd_1166640000_building_431626,0.042393689337862514,0.03679772234526466,0.003609278350822954,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006428500835318 47.52874233042319, 10.006528100000002 47.52836679624166)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_1_LVCableDist_mvgd_33532_lvgd_1166640000_building_431628,BranchTee_mvgd_33532_lvgd_1166640000_1,BranchTee_mvgd_33532_lvgd_1166640000_building_431628,0.021158351808241032,0.018365449369553217,0.0018013620025369194,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006519188640201 47.52855713434549, 10.006528100000002 47.52836679624166)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_20_LVCableDist_mvgd_33532_lvgd_1166640000_building_431631,BranchTee_mvgd_33532_lvgd_1166640000_20,BranchTee_mvgd_33532_lvgd_1166640000_building_431631,0.031151265965277373,0.027039298857860758,0.002652130343107157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0034957723341 47.527556444213474, 10.003095299999995 47.527486896241584)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_20_LVStation_mvgd_33532_lvgd_1166640000,BusBar_mvgd_33532_lvgd_1166640000_LV,BranchTee_mvgd_33532_lvgd_1166640000_20,0.009354273663327889,0.008119509539768607,0.0007963963020922812,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003053600000003 47.527566196241544, 10.003095299999995 47.527486896241584)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_21_LVCableDist_mvgd_33532_lvgd_1166640000_22,BranchTee_mvgd_33532_lvgd_1166640000_21,BranchTee_mvgd_33532_lvgd_1166640000_22,0.03336495301923611,0.028960779220696942,0.0028405973740294804,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003119600000002 47.52673489624151, 10.002904700000004 47.52670759624153, 10.002681100000002 47.52669719624153)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_21_LVCableDist_mvgd_33532_lvgd_1166640000_building_431462,BranchTee_mvgd_33532_lvgd_1166640000_21,BranchTee_mvgd_33532_lvgd_1166640000_building_431462,0.01884731461676932,0.01635946908735577,0.0016046068572923206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003307249996766 47.52662274632496, 10.003119600000002 47.52673489624151)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_22_LVCableDist_mvgd_33532_lvgd_1166640000_building_431451,BranchTee_mvgd_33532_lvgd_1166640000_22,BranchTee_mvgd_33532_lvgd_1166640000_building_431451,0.01856210060854291,0.016111903328215244,0.0015803245463795112,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002588831559741 47.52685209970552, 10.002681100000002 47.52669719624153)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_23_LVCableDist_mvgd_33532_lvgd_1166640000_building_431453,BranchTee_mvgd_33532_lvgd_1166640000_23,BranchTee_mvgd_33532_lvgd_1166640000_building_431453,0.018342955861906804,0.015921685688135106,0.0015616671848220718,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006208420901238 47.52570314285222, 10.006094099999995 47.52584889624143)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_2_LVCableDist_mvgd_33532_lvgd_1166640000_3,BranchTee_mvgd_33532_lvgd_1166640000_2,BranchTee_mvgd_33532_lvgd_1166640000_3,0.011549056643600907,0.010024581166645587,0.0009832538938513262,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003101400000004 47.52798599624161, 10.003195399999994 47.528068096241654)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_2_LVCableDist_mvgd_33532_lvgd_1166640000_building_431616,BranchTee_mvgd_33532_lvgd_1166640000_2,BranchTee_mvgd_33532_lvgd_1166640000_building_431616,0.01847354400307058,0.016035036194665262,0.001572785088409568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002869920429045 47.52804075344283, 10.003101400000004 47.52798599624161)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_2_LVCableDist_mvgd_33532_lvgd_1166640000_building_431636,BranchTee_mvgd_33532_lvgd_1166640000_2,BranchTee_mvgd_33532_lvgd_1166640000_building_431636,0.01713377594655977,0.01487211752161388,0.00145872103979727,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003295455370742 47.527905627090206, 10.003101400000004 47.52798599624161)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_2_LVStation_mvgd_33532_lvgd_1166640000,BusBar_mvgd_33532_lvgd_1166640000_LV,BranchTee_mvgd_33532_lvgd_1166640000_2,0.047139993239834505,0.04091751413217635,0.004013365189863742,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003053600000003 47.527566196241544, 10.003042500000003 47.527604696241596, 10.003035499999992 47.52768469624161, 10.003044600000003 47.52776629624161, 10.003054899999995 47.52781409624164, 10.003101400000004 47.52798599624161)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_3_LVCableDist_mvgd_33532_lvgd_1166640000_4,BranchTee_mvgd_33532_lvgd_1166640000_3,BranchTee_mvgd_33532_lvgd_1166640000_4,0.18596752565290925,0.16141981226672522,0.01583274715597093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003195399999994 47.528068096241654, 10.003350900000001 47.5281446962416, 10.003569199999998 47.52818729624164, 10.003690000000002 47.528207196241624, 10.0049208 47.52829589624166, 10.005604700000001 47.52833659624167)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_3_LVCableDist_mvgd_33532_lvgd_1166640000_building_431620,BranchTee_mvgd_33532_lvgd_1166640000_3,BranchTee_mvgd_33532_lvgd_1166640000_building_431620,0.012784934380067836,0.011097323041898881,0.0010884730155688196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003045916441627 47.52812252589443, 10.003195399999994 47.528068096241654)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_4_LVCableDist_mvgd_33532_lvgd_1166640000_building_431623,BranchTee_mvgd_33532_lvgd_1166640000_4,BranchTee_mvgd_33532_lvgd_1166640000_building_431623,0.02532507063900247,0.021982161314654143,0.0021561046141076973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.005823945100627 47.528509351646115, 10.005604700000001 47.52833659624167)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_5_LVCableDist_mvgd_33532_lvgd_1166640000_building_431596,BranchTee_mvgd_33532_lvgd_1166640000_5,BranchTee_mvgd_33532_lvgd_1166640000_building_431596,0.029148748981750325,0.025301114116159283,0.0024816417324510344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000195525626594 47.52764001469639, 10.000547499999998 47.52753119624159)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_6_LVCableDist_mvgd_33532_lvgd_1166640000_9,BranchTee_mvgd_33532_lvgd_1166640000_6,BranchTee_mvgd_33532_lvgd_1166640000_9,0.04292413159764635,0.037258146226757036,0.0036544386988488463,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002593900000004 47.52808699624162, 10.002474100000006 47.52804769624162, 10.002059399999993 47.52795519624159)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_6_LVCableDist_mvgd_33532_lvgd_1166640000_building_431618,BranchTee_mvgd_33532_lvgd_1166640000_6,BranchTee_mvgd_33532_lvgd_1166640000_building_431618,0.014133926862529783,0.012268248516675852,0.0012033224056176431,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002733216197905 47.5281721718628, 10.002593900000004 47.52808699624162)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_7_LVCableDist_mvgd_33532_lvgd_1166640000_8,BranchTee_mvgd_33532_lvgd_1166640000_7,BranchTee_mvgd_33532_lvgd_1166640000_8,0.041003883021196605,0.03559137046239865,0.0034909541868040606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001090599999996 47.52765079624159, 10.0011433 47.527689296241604, 10.001219600000002 47.52771489624163, 10.001601100000006 47.5277102962416)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_7_LVCableDist_mvgd_33532_lvgd_1166640000_building_431611,BranchTee_mvgd_33532_lvgd_1166640000_7,BranchTee_mvgd_33532_lvgd_1166640000_building_431611,0.009903200233305143,0.008595977802508864,0.0008431303518094625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001195764079513 47.527597341408864, 10.001090599999996 47.52765079624159)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_8_LVStation_mvgd_33532_lvgd_1166640000,BusBar_mvgd_33532_lvgd_1166640000_LV,BranchTee_mvgd_33532_lvgd_1166640000_8,0.11175645839545009,0.09700460588725068,0.00951462758140034,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001601100000006 47.5277102962416, 10.001741000000004 47.52766279624159, 10.001911900000003 47.52763279624158, 10.002075 47.5276257962416, 10.002485499999999 47.52760019624158, 10.002586499999994 47.52758909624159, 10.002721800000002 47.52756989624157, 10.002854999999997 47.52755749624156, 10.002959199999998 47.527557696241615, 10.003053600000003 47.527566196241544)" -Branch_LVCableDist_mvgd_33532_lvgd_1166640000_9_LVCableDist_mvgd_33532_lvgd_1166640000_building_431609,BranchTee_mvgd_33532_lvgd_1166640000_9,BranchTee_mvgd_33532_lvgd_1166640000_building_431609,0.012164955311647057,0.010559181210509645,0.0010356897578584323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002217250003524 47.52793224624926, 10.002059399999993 47.52795519624159)" -Branch_LVCableDist_mvgd_33532_lvgd_1166650000_building_431655_LVStation_mvgd_33532_lvgd_1166650000,BusBar_mvgd_33532_lvgd_1166650000_LV,BranchTee_mvgd_33532_lvgd_1166650000_building_431655,0.06241768568426049,0.054178551173938105,0.005314064549873213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008596767676996 47.52992093596578, 10.0078172 47.529730996241796)" -Branch_LVCableDist_mvgd_33532_lvgd_1167330000_building_430932_LVStation_mvgd_33532_lvgd_1167330000,BusBar_mvgd_33532_lvgd_1167330000_LV,BranchTee_mvgd_33532_lvgd_1167330000_building_430932,0.014891651183756755,0.012925953227500864,0.0012678329030810945,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010642098111346 47.50397985325051, 10.010591400000001 47.50410939623945)" -Branch_LVCableDist_mvgd_33532_lvgd_1167770000_building_431696_LVStation_mvgd_33532_lvgd_1167770000,BusBar_mvgd_33532_lvgd_1167770000_LV,BranchTee_mvgd_33532_lvgd_1167770000_building_431696,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011235800007439 47.5333865462718, 10.011235800007439 47.5333865462718)" -Branch_LVCableDist_mvgd_33532_lvgd_1168630000_building_431433_LVStation_mvgd_33532_lvgd_1168630000,BusBar_mvgd_33532_lvgd_1168630000_LV,BranchTee_mvgd_33532_lvgd_1168630000_building_431433,0.023371012451808292,0.020286038808169597,0.001989741647792582,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014781542056882 47.51553041471124, 10.015019600000004 47.51566519624052)" -Branch_LVCableDist_mvgd_33532_lvgd_1169820000_building_446412_LVStation_mvgd_33532_lvgd_1169820000,BusBar_mvgd_33532_lvgd_1169820000_LV,BranchTee_mvgd_33532_lvgd_1169820000_building_446412,0.0265907857281573,0.023080802012040536,0.002263864003322177,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022265418993758 47.57801400474753, 10.0221088 47.57779949624604)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_10_LVCableDist_mvgd_33532_lvgd_1170260000_11,BranchTee_mvgd_33532_lvgd_1170260000_10,BranchTee_mvgd_33532_lvgd_1170260000_11,0.017577501044242664,0.015257270906402632,0.0014964985348395173,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023310899999997 47.5741007962457, 10.023356900000003 47.57425589624573)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_10_LVCableDist_mvgd_33532_lvgd_1170260000_building_446404,BranchTee_mvgd_33532_lvgd_1170260000_10,BranchTee_mvgd_33532_lvgd_1170260000_building_446404,0.025783375196952372,0.02237996967095466,0.0021951233630047107,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02365314999654 47.57409254625976, 10.023310899999997 47.5741007962457)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_10_LVStation_mvgd_33532_lvgd_1170260000,BusBar_mvgd_33532_lvgd_1170260000_LV,BranchTee_mvgd_33532_lvgd_1170260000_10,0.013400215415221791,0.011631386980412514,0.0011408562960649982,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023310899999997 47.5741007962457, 10.0232901 47.57405929624573, 10.023249199999997 47.5739876962457)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_11_LVCableDist_mvgd_33532_lvgd_1170260000_3,BranchTee_mvgd_33532_lvgd_1170260000_3,BranchTee_mvgd_33532_lvgd_1170260000_11,0.012347506712962664,0.010717635826851592,0.001051231665887002,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023372900000004 47.57436649624571, 10.023356900000003 47.57425589624573)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_11_LVCableDist_mvgd_33532_lvgd_1170260000_building_446400,BranchTee_mvgd_33532_lvgd_1170260000_11,BranchTee_mvgd_33532_lvgd_1170260000_building_446400,0.010781781445363483,0.009358586294575503,0.0009179302618349824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023498024673627 47.57427239077096, 10.023356900000003 47.57425589624573)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_11_LVCableDist_mvgd_33532_lvgd_1170260000_building_446408,BranchTee_mvgd_33532_lvgd_1170260000_11,BranchTee_mvgd_33532_lvgd_1170260000_building_446408,0.02052914796244778,0.017819300431404672,0.0017477933734709916,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023613900001354 47.57419414625325, 10.023356900000003 47.57425589624573)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_12_LVCableDist_mvgd_33532_lvgd_1170260000_13,BranchTee_mvgd_33532_lvgd_1170260000_12,BranchTee_mvgd_33532_lvgd_1170260000_13,0.015705364476794943,0.013632256365858011,0.0013371101426469508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0232206 47.57454719624577, 10.023088500000002 47.57465659624575)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_12_LVCableDist_mvgd_33532_lvgd_1170260000_3,BranchTee_mvgd_33532_lvgd_1170260000_3,BranchTee_mvgd_33532_lvgd_1170260000_12,0.02316573324358338,0.020107856455430374,0.001972264758809991,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0232206 47.57454719624577, 10.023301500000002 47.57446429624577, 10.023372900000004 47.57436649624571)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_12_LVCableDist_mvgd_33532_lvgd_1170260000_building_446402,BranchTee_mvgd_33532_lvgd_1170260000_12,BranchTee_mvgd_33532_lvgd_1170260000_building_446402,0.011963057957203097,0.010383934306852288,0.0010185007903053725,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023348934062797 47.574610685973255, 10.0232206 47.57454719624577)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_13_LVCableDist_mvgd_33532_lvgd_1170260000_4,BranchTee_mvgd_33532_lvgd_1170260000_4,BranchTee_mvgd_33532_lvgd_1170260000_13,0.01435251040850894,0.01245797903458576,0.001221931988144448,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022937099999996 47.574735096245796, 10.023088500000002 47.57465659624575)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_13_LVCableDist_mvgd_33532_lvgd_1170260000_building_446398,BranchTee_mvgd_33532_lvgd_1170260000_13,BranchTee_mvgd_33532_lvgd_1170260000_building_446398,0.010315712129218182,0.008954038128161382,0.0008782504434700421,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023052599998683 47.574566996262334, 10.023088500000002 47.57465659624575)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_14_LVCableDist_mvgd_33532_lvgd_1170260000_4,BranchTee_mvgd_33532_lvgd_1170260000_4,BranchTee_mvgd_33532_lvgd_1170260000_14,0.03854562156818267,0.03345759952118256,0.0032816647859143498,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022430099999994 47.57477729624575, 10.0227041 47.57474269624579, 10.022937099999996 47.574735096245796)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_14_LVCableDist_mvgd_33532_lvgd_1170260000_9,BranchTee_mvgd_33532_lvgd_1170260000_9,BranchTee_mvgd_33532_lvgd_1170260000_14,0.0057638275848406004,0.0050030023436416415,0.000490715916561232,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022356099999993 47.57479059624579, 10.022430099999994 47.57477729624575)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_14_LVCableDist_mvgd_33532_lvgd_1170260000_building_446411,BranchTee_mvgd_33532_lvgd_1170260000_14,BranchTee_mvgd_33532_lvgd_1170260000_building_446411,0.009616244257619123,0.008346900015613399,0.0008186997347327406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022490799425304 47.574701144983386, 10.022430099999994 47.57477729624575)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_15_LVCableDist_mvgd_33532_lvgd_1170260000_6,BranchTee_mvgd_33532_lvgd_1170260000_6,BranchTee_mvgd_33532_lvgd_1170260000_15,0.04033343716756063,0.035009423461442625,0.003433874330280082,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022330599999995 47.575294696245805, 10.022348799999996 47.574931896245815)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_15_LVCableDist_mvgd_33532_lvgd_1170260000_9,BranchTee_mvgd_33532_lvgd_1170260000_9,BranchTee_mvgd_33532_lvgd_1170260000_15,0.01570924268885466,0.013635622653925844,0.0013374403226111308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022356099999993 47.57479059624579, 10.022348799999996 47.574931896245815)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_15_LVCableDist_mvgd_33532_lvgd_1170260000_building_446406,BranchTee_mvgd_33532_lvgd_1170260000_15,BranchTee_mvgd_33532_lvgd_1170260000_building_446406,0.0183404238596893,0.015919487910210313,0.0015614516173418499,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022108379928019 47.57490527395065, 10.022348799999996 47.574931896245815)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_1_LVCableDist_mvgd_33532_lvgd_1170260000_2,BranchTee_mvgd_33532_lvgd_1170260000_1,BranchTee_mvgd_33532_lvgd_1170260000_2,0.0047883995580212425,0.004156330816362438,0.00040767074368356124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023604699999996 47.57456979624575, 10.023556100000004 47.57454199624575)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_1_LVCableDist_mvgd_33532_lvgd_1170260000_building_446403,BranchTee_mvgd_33532_lvgd_1170260000_1,BranchTee_mvgd_33532_lvgd_1170260000_building_446403,0.01936489441659855,0.01680872835360754,0.0016486721319953293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023590788656378 47.57474382940575, 10.023604699999996 47.57456979624575)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_2_LVCableDist_mvgd_33532_lvgd_1170260000_3,BranchTee_mvgd_33532_lvgd_1170260000_2,BranchTee_mvgd_33532_lvgd_1170260000_3,0.023888157895654072,0.020734921053427734,0.002033769942660334,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023556100000004 47.57454199624575, 10.023401499999995 47.5743915962457, 10.023372900000004 47.57436649624571)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_2_LVCableDist_mvgd_33532_lvgd_1170260000_building_446413,BranchTee_mvgd_33532_lvgd_1170260000_2,BranchTee_mvgd_33532_lvgd_1170260000_building_446413,0.016647865231861247,0.014450347021255562,0.0014173519810909791,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023714625094115 47.57443753418937, 10.023556100000004 47.57454199624575)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_4_LVCableDist_mvgd_33532_lvgd_1170260000_5,BranchTee_mvgd_33532_lvgd_1170260000_4,BranchTee_mvgd_33532_lvgd_1170260000_5,0.025272795734235166,0.021936786697316125,0.002151654077128849,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022897200000001 47.574960196245804, 10.022912199999999 47.574804196245786, 10.022937099999996 47.574735096245796)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_4_LVCableDist_mvgd_33532_lvgd_1170260000_7,BranchTee_mvgd_33532_lvgd_1170260000_4,BranchTee_mvgd_33532_lvgd_1170260000_7,0.04591277172920616,0.039852285860950944,0.003908883034638361,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023480199999996 47.574918396245806, 10.023230500000006 47.57481089624581, 10.022937099999996 47.574735096245796)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_5_LVCableDist_mvgd_33532_lvgd_1170260000_building_446417,BranchTee_mvgd_33532_lvgd_1170260000_5,BranchTee_mvgd_33532_lvgd_1170260000_building_446417,0.017379214122566655,0.015085157858387857,0.0014796169492819855,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022934944026103 47.575114507620846, 10.022897200000001 47.574960196245804)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_6_LVCableDist_mvgd_33532_lvgd_1170260000_building_446407,BranchTee_mvgd_33532_lvgd_1170260000_6,BranchTee_mvgd_33532_lvgd_1170260000_building_446407,0.022145387472548378,0.019222196326171993,0.0018853954167152164,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022105339850702 47.57516652269757, 10.022330599999995 47.575294696245805)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_7_LVCableDist_mvgd_33532_lvgd_1170260000_building_446421,BranchTee_mvgd_33532_lvgd_1170260000_7,BranchTee_mvgd_33532_lvgd_1170260000_building_446421,0.024978152456411436,0.021681036332165126,0.0021265689849730473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023410535182032 47.57513819361646, 10.023480199999996 47.574918396245806)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_8_LVCableDist_mvgd_33532_lvgd_1170260000_9,BranchTee_mvgd_33532_lvgd_1170260000_8,BranchTee_mvgd_33532_lvgd_1170260000_9,0.02218030975929157,0.019252508871065083,0.0018883686010610964,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022086699999996 47.5747097962458, 10.022148000000005 47.5747282962458, 10.022356099999993 47.57479059624579)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_8_LVCableDist_mvgd_33532_lvgd_1170260000_building_446399,BranchTee_mvgd_33532_lvgd_1170260000_8,BranchTee_mvgd_33532_lvgd_1170260000_building_446399,0.012053435293581435,0.010462381834828685,0.0010261952601354385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021957219162381 47.57464599142411, 10.022086699999996 47.5747097962458)" -Branch_LVCableDist_mvgd_33532_lvgd_1170260000_building_544076_LVStation_mvgd_33532_lvgd_1170260000,BusBar_mvgd_33532_lvgd_1170260000_LV,BranchTee_mvgd_33532_lvgd_1170260000_building_544076,0.13103593240446634,0.026993402075320066,0.010538534978512901,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.02451185766711 47.573175998773344, 10.023249199999997 47.5739876962457)" -Branch_LVCableDist_mvgd_33532_lvgd_1170760000_1_LVCableDist_mvgd_33532_lvgd_1170760000_building_446463,BranchTee_mvgd_33532_lvgd_1170760000_1,BranchTee_mvgd_33532_lvgd_1170760000_building_446463,0.0920593074241243,0.07990747884413989,0.007837668069641037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023258122721703 47.58229120372857, 10.022954499999999 47.58148859624634)" -Branch_LVCableDist_mvgd_33532_lvgd_1170760000_1_LVCableDist_mvgd_33532_lvgd_1170760000_building_446483,BranchTee_mvgd_33532_lvgd_1170760000_1,BranchTee_mvgd_33532_lvgd_1170760000_building_446483,0.06002173898457292,0.052098869438609294,0.0051100804501646585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023144644663516 47.582013216614584, 10.022954499999999 47.58148859624634)" -Branch_LVCableDist_mvgd_33532_lvgd_1170760000_1_LVCableDist_mvgd_33532_lvgd_1170760000_building_446484,BranchTee_mvgd_33532_lvgd_1170760000_1,BranchTee_mvgd_33532_lvgd_1170760000_building_446484,0.06160506637451818,0.05347319761308178,0.005244880448939254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023403780321006 47.58195202710066, 10.022954499999999 47.58148859624634)" -Branch_LVCableDist_mvgd_33532_lvgd_1170760000_1_LVStation_mvgd_33532_lvgd_1170760000,BusBar_mvgd_33532_lvgd_1170760000_LV,BranchTee_mvgd_33532_lvgd_1170760000_1,0.040043143405343234,0.03475744847583793,0.003409159543534347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022954499999999 47.58148859624634, 10.023486400000003 47.5814837962464)" -Branch_LVCableDist_mvgd_33532_lvgd_1170760000_2_LVCableDist_mvgd_33532_lvgd_1170760000_building_446459,BranchTee_mvgd_33532_lvgd_1170760000_2,BranchTee_mvgd_33532_lvgd_1170760000_building_446459,0.03792760204839654,0.032921158578008196,0.0032290483586113862,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026444980277402 47.581395902843724, 10.026040800000002 47.58119209624628)" -Branch_LVCableDist_mvgd_33532_lvgd_1170760000_2_LVStation_mvgd_33532_lvgd_1170760000,BusBar_mvgd_33532_lvgd_1170760000_LV,BranchTee_mvgd_33532_lvgd_1170760000_2,0.19666164662253544,0.17070230926836075,0.016743214253777415,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026040800000002 47.58119209624628, 10.025898499999993 47.58123199624633, 10.025797300000004 47.58126099624631, 10.0254341 47.581345896246354, 10.025052600000002 47.58140989624632, 10.024632600000007 47.58144949624635, 10.024172999999994 47.58146629624632, 10.023955600000006 47.58147249624635, 10.023486400000003 47.5814837962464)" -Branch_LVCableDist_mvgd_33532_lvgd_1172090000_building_431650_LVStation_mvgd_33532_lvgd_1172090000,BusBar_mvgd_33532_lvgd_1172090000_LV,BranchTee_mvgd_33532_lvgd_1172090000_building_431650,0.027460870595958822,0.02383603567729226,0.0023379405587195382,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010723982805679 47.527551416924844, 10.010766399999996 47.52779689624157)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_10_LVCableDist_mvgd_33532_lvgd_1172110000_3,BranchTee_mvgd_33532_lvgd_1172110000_3,BranchTee_mvgd_33532_lvgd_1172110000_10,0.0387345386150393,0.012395052356812578,0.003176060504978459,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034440799999999 47.52476549624135, 10.034949799999998 47.52481399624134)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_10_LVCableDist_mvgd_33532_lvgd_1172110000_9,BranchTee_mvgd_33532_lvgd_1172110000_9,BranchTee_mvgd_33532_lvgd_1172110000_10,0.02795859094580794,0.008946749102658542,0.002292480552313888,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034070800000004 47.52474699624133, 10.034440799999999 47.52476549624135)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_10_LVCableDist_mvgd_33532_lvgd_1172110000_building_444550,BranchTee_mvgd_33532_lvgd_1172110000_10,BranchTee_mvgd_33532_lvgd_1172110000_building_444550,0.020348782580454507,0.01766274327983451,0.0017324375769212249,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034700765694119 47.52471597259204, 10.034440799999999 47.52476549624135)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_10_LVCableDist_mvgd_33532_lvgd_1172110000_building_444585,BranchTee_mvgd_33532_lvgd_1172110000_10,BranchTee_mvgd_33532_lvgd_1172110000_building_444585,0.027382879416645457,0.023768339333648258,0.002331300611136597,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03437863405351 47.52500832097543, 10.034440799999999 47.52476549624135)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_11_LVCableDist_mvgd_33532_lvgd_1172110000_13,BranchTee_mvgd_33532_lvgd_1172110000_11,BranchTee_mvgd_33532_lvgd_1172110000_13,0.04219583764449431,0.01350266804623818,0.003459871685811887,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0350068 47.524733996241345, 10.035133700000001 47.524364096241264)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_11_LVCableDist_mvgd_33532_lvgd_1172110000_3,BranchTee_mvgd_33532_lvgd_1172110000_3,BranchTee_mvgd_33532_lvgd_1172110000_11,0.009871916459743012,0.003159013267117764,0.0008094533999189791,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034949799999998 47.52481399624134, 10.0350068 47.524733996241345)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_11_LVCableDist_mvgd_33532_lvgd_1172110000_building_444554,BranchTee_mvgd_33532_lvgd_1172110000_11,BranchTee_mvgd_33532_lvgd_1172110000_building_444554,0.010611446272913317,0.00921073536488876,0.0009034284088490711,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034875959808176 47.52469869694947, 10.0350068 47.524733996241345)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_11_LVCableDist_mvgd_33532_lvgd_1172110000_building_444555,BranchTee_mvgd_33532_lvgd_1172110000_11,BranchTee_mvgd_33532_lvgd_1172110000_building_444555,0.021390528184016325,0.01856697846372617,0.0018211288400013313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035265850000572 47.52465529626661, 10.0350068 47.524733996241345)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_11_LVCableDist_mvgd_33532_lvgd_1172110000_building_444571,BranchTee_mvgd_33532_lvgd_1172110000_11,BranchTee_mvgd_33532_lvgd_1172110000_building_444571,0.030556722308723853,0.026523234963972304,0.0026015125841497826,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035384509630363 47.52483402339261, 10.0350068 47.524733996241345)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_12_LVCableDist_mvgd_33532_lvgd_1172110000_2,BranchTee_mvgd_33532_lvgd_1172110000_2,BranchTee_mvgd_33532_lvgd_1172110000_12,0.029228703449070952,0.009353185103702704,0.0023966241487714105,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.033149899999996 47.52416929624127, 10.032867599999998 47.52434969624131)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_12_LVCableDist_mvgd_33532_lvgd_1172110000_6,BranchTee_mvgd_33532_lvgd_1172110000_6,BranchTee_mvgd_33532_lvgd_1172110000_12,0.037836693785473025,0.012107742011351369,0.003102441207970042,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.033149899999996 47.52416929624127, 10.033466598382274 47.524433546718235)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_12_LVCableDist_mvgd_33532_lvgd_1172110000_building_444557,BranchTee_mvgd_33532_lvgd_1172110000_12,BranchTee_mvgd_33532_lvgd_1172110000_building_444557,0.023264678895980974,0.020193741281711485,0.001980688710739736,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033458349993984 47.524177946290635, 10.033149899999996 47.52416929624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_13_LVCableDist_mvgd_33532_lvgd_1172110000_building_444548,BranchTee_mvgd_33532_lvgd_1172110000_13,BranchTee_mvgd_33532_lvgd_1172110000_building_444548,0.012760892893088816,0.011076455031201093,0.0010864261916233163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03496458808668 47.52436996456396, 10.035133700000001 47.524364096241264)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_13_LVCableDist_mvgd_33532_lvgd_1172110000_building_444559,BranchTee_mvgd_33532_lvgd_1172110000_13,BranchTee_mvgd_33532_lvgd_1172110000_building_444559,0.022631923973797,0.019644510009255794,0.0019268177531117196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035399489569297 47.5242692644978, 10.035133700000001 47.524364096241264)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_13_LVCableDist_mvgd_33532_lvgd_1172110000_building_444560,BranchTee_mvgd_33532_lvgd_1172110000_13,BranchTee_mvgd_33532_lvgd_1172110000_building_444560,0.03183351909751784,0.027631494576645484,0.002710215437809623,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035445700003072 47.52455724630228, 10.035133700000001 47.524364096241264)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_14_LVCableDist_mvgd_33532_lvgd_1172110000_16,BranchTee_mvgd_33532_lvgd_1172110000_14,BranchTee_mvgd_33532_lvgd_1172110000_16,0.029191431579003654,0.009341258105281169,0.0023935680206051786,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034494499999994 47.52380929624129, 10.0348261 47.52394509624123)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_14_LVCableDist_mvgd_33532_lvgd_1172110000_building_444568,BranchTee_mvgd_33532_lvgd_1172110000_14,BranchTee_mvgd_33532_lvgd_1172110000_building_444568,0.045346475268403574,0.0393607405329743,0.003860670161730955,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03444378497286 47.52426027078301, 10.0348261 47.52394509624123)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_15_LVCableDist_mvgd_33532_lvgd_1172110000_16,BranchTee_mvgd_33532_lvgd_1172110000_15,BranchTee_mvgd_33532_lvgd_1172110000_16,0.03561086133184443,0.011395475626190216,0.002919932811086123,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0340222 47.52379929624127, 10.0343495 47.52380529624127, 10.034494499999994 47.52380929624129)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_15_LVCableDist_mvgd_33532_lvgd_1172110000_4,BranchTee_mvgd_33532_lvgd_1172110000_4,BranchTee_mvgd_33532_lvgd_1172110000_15,0.02284845533064774,0.007311505705807277,0.0018734720786698386,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0340222 47.52379929624127, 10.034172499999999 47.52362069624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_15_LVCableDist_mvgd_33532_lvgd_1172110000_building_444534,BranchTee_mvgd_33532_lvgd_1172110000_15,BranchTee_mvgd_33532_lvgd_1172110000_building_444534,0.02061286080028663,0.017891963174648792,0.0017549204468165016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033882375434116 47.52395874925365, 10.0340222 47.52379929624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_15_LVCableDist_mvgd_33532_lvgd_1172110000_building_444549,BranchTee_mvgd_33532_lvgd_1172110000_15,BranchTee_mvgd_33532_lvgd_1172110000_building_444549,0.03450022895006488,0.029946198728656316,0.002937251543632292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034116380010143 47.5241031707734, 10.0340222 47.52379929624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_16_LVCableDist_mvgd_33532_lvgd_1172110000_8,BranchTee_mvgd_33532_lvgd_1172110000_8,BranchTee_mvgd_33532_lvgd_1172110000_16,0.012933754721545912,0.004138801510894692,0.0010605105681117187,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.034494499999994 47.52380929624129, 10.034601899999997 47.52371849624124)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_17_LVCableDist_mvgd_33532_lvgd_1172110000_19,BranchTee_mvgd_33532_lvgd_1172110000_17,BranchTee_mvgd_33532_lvgd_1172110000_19,0.2945786714182756,0.2556942867910632,0.02507959174986439,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025312400000006 47.52461929624132, 10.025316400000001 47.524741596241306, 10.025278200000006 47.52526799624138, 10.025300200000002 47.525348996241405, 10.025333799999993 47.525412696241425, 10.025385799999997 47.52548609624138, 10.025542900000003 47.525609396241386, 10.025754899999999 47.525766696241405, 10.025839200000002 47.525899696241424, 10.0258874 47.52601229624142, 10.025851900000003 47.52606279624146, 10.025720099999992 47.52614269624148, 10.025268451324985 47.5262944971816, 10.024816800000005 47.52644629624151, 10.024688999999997 47.526470396241486, 10.024588200000006 47.52646179624149, 10.024439400000004 47.526408896241485)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_17_LVCableDist_mvgd_33532_lvgd_1172110000_20,BranchTee_mvgd_33532_lvgd_1172110000_17,BranchTee_mvgd_33532_lvgd_1172110000_20,0.011096257216991251,0.009631551264348406,0.0009447038362070702,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024299800000003 47.52642169624149, 10.024375399999995 47.52640019624149, 10.024439400000004 47.526408896241485)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_17_LVCableDist_mvgd_33532_lvgd_1172110000_building_444510,BranchTee_mvgd_33532_lvgd_1172110000_17,BranchTee_mvgd_33532_lvgd_1172110000_building_444510,0.015334683964143725,0.013310505680876753,0.0013055514561943163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02445932031406 47.52627154028251, 10.024439400000004 47.526408896241485)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_18_LVCableDist_mvgd_33532_lvgd_1172110000_19,BranchTee_mvgd_33532_lvgd_1172110000_18,BranchTee_mvgd_33532_lvgd_1172110000_19,0.03969291237783661,0.03445344794396218,0.0033793418681890416,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025367999999995 47.52428469624127, 10.025254500000004 47.52456199624131, 10.025312400000006 47.52461929624132)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_18_LVCableDist_mvgd_33532_lvgd_1172110000_22,BranchTee_mvgd_33532_lvgd_1172110000_18,BranchTee_mvgd_33532_lvgd_1172110000_22,0.14070648592061463,0.1221332297790935,0.011979350733225307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026327499999995 47.523213296241195, 10.026115899999994 47.52343019624118, 10.025555999999996 47.523924996241234, 10.025443499999998 47.52409959624129, 10.025367999999995 47.52428469624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_18_LVCableDist_mvgd_33532_lvgd_1172110000_building_444479,BranchTee_mvgd_33532_lvgd_1172110000_18,BranchTee_mvgd_33532_lvgd_1172110000_building_444479,0.06850064698668226,0.059458561584440205,0.005831950605100689,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02451843962586 47.524065452050756, 10.025367999999995 47.52428469624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_18_LVCableDist_mvgd_33532_lvgd_1172110000_building_444520,BranchTee_mvgd_33532_lvgd_1172110000_18,BranchTee_mvgd_33532_lvgd_1172110000_building_444520,0.015612397893844351,0.013551561371856896,0.001329195231714821,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025172450005174 47.52423829629817, 10.025367999999995 47.52428469624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_19_LVCableDist_mvgd_33532_lvgd_1172110000_building_444517,BranchTee_mvgd_33532_lvgd_1172110000_19,BranchTee_mvgd_33532_lvgd_1172110000_building_444517,0.01612700957617305,0.013998244312118208,0.0013730078093205805,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025466304211081 47.524518440661154, 10.025312400000006 47.52461929624132)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_19_LVCableDist_mvgd_33532_lvgd_1172110000_building_444518,BranchTee_mvgd_33532_lvgd_1172110000_19,BranchTee_mvgd_33532_lvgd_1172110000_building_444518,0.009608637769744133,0.008340297584137906,0.0008180521399505502,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025439900002892 47.524618596262684, 10.025312400000006 47.52461929624132)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_1_LVCableDist_mvgd_33532_lvgd_1172110000_12,BranchTee_mvgd_33532_lvgd_1172110000_1,BranchTee_mvgd_33532_lvgd_1172110000_12,0.046276703759236794,0.014808545202955775,0.003794484621877844,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.033149899999996 47.52416929624127, 10.033529499999995 47.523841896241244)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_1_LVCableDist_mvgd_33532_lvgd_1172110000_15,BranchTee_mvgd_33532_lvgd_1172110000_1,BranchTee_mvgd_33532_lvgd_1172110000_15,0.037501626215819685,0.012000520389062299,0.0030749671521912566,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.033529499999995 47.523841896241244, 10.033645799999997 47.52384069624125, 10.0340222 47.52379929624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_1_LVCableDist_mvgd_33532_lvgd_1172110000_5,BranchTee_mvgd_33532_lvgd_1172110000_1,BranchTee_mvgd_33532_lvgd_1172110000_5,0.05106096554190831,0.01633950897341066,0.004186772885446346,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.033919100000006 47.5234658962412, 10.033529499999995 47.523841896241244)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_20_LVCableDist_mvgd_33532_lvgd_1172110000_building_444507,BranchTee_mvgd_33532_lvgd_1172110000_20,BranchTee_mvgd_33532_lvgd_1172110000_building_444507,0.01149712070469498,0.009979500771675243,0.0009788322154635617,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024273249989422 47.5263197962767, 10.024299800000003 47.52642169624149)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_21_LVCableDist_mvgd_33532_lvgd_1172110000_26,BranchTee_mvgd_33532_lvgd_1172110000_21,BranchTee_mvgd_33532_lvgd_1172110000_26,0.09470964055650027,0.08220796800304224,0.008063309908003287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021498799999996 47.520076796240915, 10.021777299999997 47.520150396240915, 10.022126100000003 47.52017489624093, 10.022484499999994 47.52020599624094, 10.0225846 47.520205696240915, 10.022711699999993 47.520253996240946)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_21_LVCableDist_mvgd_33532_lvgd_1172110000_building_444465,BranchTee_mvgd_33532_lvgd_1172110000_21,BranchTee_mvgd_33532_lvgd_1172110000_building_444465,0.016713426311985004,0.014507254038802982,0.0014229336653190587,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021462950028885 47.520225246281335, 10.021498799999996 47.520076796240915)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_21_LVCableDist_mvgd_33532_lvgd_1172110000_building_444466,BranchTee_mvgd_33532_lvgd_1172110000_21,BranchTee_mvgd_33532_lvgd_1172110000_building_444466,0.04387443951700547,0.038083013500760744,0.0037353452170955405,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021327700002148 47.52045424625069, 10.021498799999996 47.520076796240915)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_22_LVCableDist_mvgd_33532_lvgd_1172110000_30,BranchTee_mvgd_33532_lvgd_1172110000_22,BranchTee_mvgd_33532_lvgd_1172110000_30,0.014350704404587286,0.012456411423181765,0.001221778230097962,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026458100000003 47.52311929624116, 10.026327499999995 47.523213296241195)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_22_LVCableDist_mvgd_33532_lvgd_1172110000_building_444503,BranchTee_mvgd_33532_lvgd_1172110000_22,BranchTee_mvgd_33532_lvgd_1172110000_building_444503,0.01633528793513688,0.014179029927698813,0.0013907400374822303,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026111752115085 47.52319911213816, 10.026327499999995 47.523213296241195)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_23_LVCableDist_mvgd_33532_lvgd_1172110000_28,BranchTee_mvgd_33532_lvgd_1172110000_23,BranchTee_mvgd_33532_lvgd_1172110000_28,0.046883743296456504,0.040695089181324244,0.003991548797200606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026218999999994 47.52286519624119, 10.0257736 47.522570596241145)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_23_LVCableDist_mvgd_33532_lvgd_1172110000_30,BranchTee_mvgd_33532_lvgd_1172110000_23,BranchTee_mvgd_33532_lvgd_1172110000_30,0.03454567880945213,0.029985649206604445,0.0029411210156243847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026458100000003 47.52311929624116, 10.026418700000002 47.52301599624116, 10.026325700000001 47.522927196241156, 10.026218999999994 47.52286519624119)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_23_LVCableDist_mvgd_33532_lvgd_1172110000_building_444494,BranchTee_mvgd_33532_lvgd_1172110000_23,BranchTee_mvgd_33532_lvgd_1172110000_building_444494,0.030127206928568677,0.026150415613997613,0.002564944864115211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026327400002206 47.52260419627613, 10.026218999999994 47.52286519624119)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_23_LVCableDist_mvgd_33532_lvgd_1172110000_building_444500,BranchTee_mvgd_33532_lvgd_1172110000_23,BranchTee_mvgd_33532_lvgd_1172110000_building_444500,0.01136092199055062,0.009861280287797938,0.0009672366436214073,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02622680455863 47.52276307997224, 10.026218999999994 47.52286519624119)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_24_LVCableDist_mvgd_33532_lvgd_1172110000_25,BranchTee_mvgd_33532_lvgd_1172110000_24,BranchTee_mvgd_33532_lvgd_1172110000_25,0.028724996099754197,0.024933296614586643,0.0024455646151494864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023601200000003 47.51949849624084, 10.023625900000004 47.519561496240904, 10.023617200000004 47.51964669624091, 10.023626200000006 47.51970319624092, 10.023671000000006 47.519744296240916)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_24_LVCableDist_mvgd_33532_lvgd_1172110000_29,BranchTee_mvgd_33532_lvgd_1172110000_24,BranchTee_mvgd_33532_lvgd_1172110000_29,0.09227174263565645,0.08009187260774979,0.007855754200428684,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023671000000006 47.519744296240916, 10.023653899999994 47.51983389624091, 10.023584700000008 47.51991329624091, 10.023456500000004 47.520052996240864, 10.023328300000003 47.52038109624093, 10.0232785 47.52052099624092)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_24_LVCableDist_mvgd_33532_lvgd_1172110000_building_444483,BranchTee_mvgd_33532_lvgd_1172110000_24,BranchTee_mvgd_33532_lvgd_1172110000_building_444483,0.00813625744505933,0.007062271462311499,0.00069269785932378,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023760450001218 47.519703296261106, 10.023671000000006 47.519744296240916)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_25_LVCableDist_mvgd_33532_lvgd_1172110000_building_444471,BranchTee_mvgd_33532_lvgd_1172110000_25,BranchTee_mvgd_33532_lvgd_1172110000_building_444471,0.056057021952896524,0.048657495055114186,0.004772535698267155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023102949994994 47.51912389626371, 10.023601200000003 47.51949849624084)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_25_LVCableDist_mvgd_33532_lvgd_1172110000_building_444476,BranchTee_mvgd_33532_lvgd_1172110000_25,BranchTee_mvgd_33532_lvgd_1172110000_building_444476,0.019661399800916277,0.01706609502719533,0.001673915758611346,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023342518103442 47.519521400758755, 10.023601200000003 47.51949849624084)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_26_LVCableDist_mvgd_33532_lvgd_1172110000_29,BranchTee_mvgd_33532_lvgd_1172110000_26,BranchTee_mvgd_33532_lvgd_1172110000_29,0.05357126044182479,0.04649985406350392,0.004560905020509479,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022711699999993 47.520253996240946, 10.023102499999993 47.52049859624096, 10.0232785 47.52052099624092)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_26_LVCableDist_mvgd_33532_lvgd_1172110000_building_444475,BranchTee_mvgd_33532_lvgd_1172110000_26,BranchTee_mvgd_33532_lvgd_1172110000_building_444475,0.05178997567044037,0.04495369888194224,0.004409251492297524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022431927813656 47.52067975061542, 10.022711699999993 47.520253996240946)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_27_LVCableDist_mvgd_33532_lvgd_1172110000_28,BranchTee_mvgd_33532_lvgd_1172110000_27,BranchTee_mvgd_33532_lvgd_1172110000_28,0.16115341886071427,0.13988116757109997,0.013720144553109239,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0257736 47.522570596241145, 10.025455199999994 47.52233489624108, 10.025146999999993 47.52214609624112, 10.024343900000003 47.521800496241056, 10.024096799999995 47.52168429624103)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_27_LVCableDist_mvgd_33532_lvgd_1172110000_29,BranchTee_mvgd_33532_lvgd_1172110000_27,BranchTee_mvgd_33532_lvgd_1172110000_29,0.1536803646234585,0.13339455649316198,0.013083909932005772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024096799999995 47.52168429624103, 10.023606499999998 47.521381496241, 10.023396700000003 47.52120149624101, 10.023237499999999 47.520934096240964, 10.0232358 47.520689396240954, 10.0232785 47.52052099624092)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_27_LVCableDist_mvgd_33532_lvgd_1172110000_building_444473,BranchTee_mvgd_33532_lvgd_1172110000_27,BranchTee_mvgd_33532_lvgd_1172110000_building_444473,0.04459399474838181,0.038707587441595415,0.0037966061066145034,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023533716644982 47.52180764606426, 10.024096799999995 47.52168429624103)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_27_LVCableDist_mvgd_33532_lvgd_1172110000_building_444477,BranchTee_mvgd_33532_lvgd_1172110000_27,BranchTee_mvgd_33532_lvgd_1172110000_building_444477,0.026482126175595606,0.022986485520416985,0.0022546130375110753,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023745450022174 47.5216879463493, 10.024096799999995 47.52168429624103)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_28_LVCableDist_mvgd_33532_lvgd_1172110000_building_444493,BranchTee_mvgd_33532_lvgd_1172110000_28,BranchTee_mvgd_33532_lvgd_1172110000_building_444493,0.02813268172863257,0.024419167740453072,0.0023951366512246462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026145824403994 47.522589790464515, 10.0257736 47.522570596241145)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_2_LVCableDist_mvgd_33532_lvgd_1172110000_building_444546,BranchTee_mvgd_33532_lvgd_1172110000_2,BranchTee_mvgd_33532_lvgd_1172110000_building_444546,0.02060356060091197,0.01788389060159159,0.0017541286542458248,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033094900001633 47.52445274627274, 10.032867599999998 47.52434969624131)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_2_LVStation_mvgd_33532_lvgd_1172110000,BusBar_mvgd_33532_lvgd_1172110000_LV,BranchTee_mvgd_33532_lvgd_1172110000_2,0.05555253394714067,0.017776810863085017,0.004555061589206167,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.032867599999998 47.52434969624131, 10.032560900000002 47.52450739624131, 10.032254799999993 47.52462569624129)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_30_LVStation_mvgd_33532_lvgd_1172110000,BusBar_mvgd_33532_lvgd_1172110000_LV,BranchTee_mvgd_33532_lvgd_1172110000_30,0.5067661676632287,0.4398730335316825,0.04314463276124549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032254799999993 47.52462569624129, 10.031882200000002 47.52475569624136, 10.031685800000005 47.524828396241325, 10.031609300000003 47.524860696241326, 10.031551100000005 47.524760296241325, 10.0314802 47.52466069624135, 10.0313493 47.52452319624132, 10.031166999999998 47.524404696241284, 10.030022699999998 47.52403959624129, 10.029444299999993 47.52388649624129, 10.029199100000001 47.523830596241226, 10.028456800000004 47.523736896241246, 10.028286899999998 47.52370669624122, 10.028090000000004 47.52360959624122, 10.027841799999996 47.52342899624123, 10.027704000000005 47.52334309624123, 10.0275791 47.52328359624117, 10.027358599999998 47.52323149624121, 10.026931500000003 47.52320839624119, 10.026664399999994 47.523165596241135, 10.026458100000003 47.52311929624116)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_31_LVCableDist_mvgd_33532_lvgd_1172110000_39,BranchTee_mvgd_33532_lvgd_1172110000_31,BranchTee_mvgd_33532_lvgd_1172110000_39,0.07103795070965041,0.06166094121597655,0.006047969440446364,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027287300000003 47.52633449624147, 10.028094099999993 47.52600379624145)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_31_LVCableDist_mvgd_33532_lvgd_1172110000_building_444527,BranchTee_mvgd_33532_lvgd_1172110000_31,BranchTee_mvgd_33532_lvgd_1172110000_building_444527,0.033742663099929814,0.029288631570739077,0.002872754537947692,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026852705239474 47.526407633097485, 10.027287300000003 47.52633449624147)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_31_LVCableDist_mvgd_33532_lvgd_1172110000_building_444533,BranchTee_mvgd_33532_lvgd_1172110000_31,BranchTee_mvgd_33532_lvgd_1172110000_building_444533,0.01573485883374587,0.013657857467691414,0.001339621208460686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027283750000063 47.52619289627068, 10.027287300000003 47.52633449624147)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_32_LVCableDist_mvgd_33532_lvgd_1172110000_34,BranchTee_mvgd_33532_lvgd_1172110000_32,BranchTee_mvgd_33532_lvgd_1172110000_34,0.04169464115584949,0.03619094852327736,0.0035497633732654724,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026457499999998 47.52738559624154, 10.026050599999998 47.527639896241574)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_32_LVCableDist_mvgd_33532_lvgd_1172110000_35,BranchTee_mvgd_33532_lvgd_1172110000_32,BranchTee_mvgd_33532_lvgd_1172110000_35,0.023224664951052715,0.020159009177513756,0.0019772820370716434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026457499999998 47.52738559624154, 10.026677200000005 47.52723899624155)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_32_LVCableDist_mvgd_33532_lvgd_1172110000_building_444731,BranchTee_mvgd_33532_lvgd_1172110000_32,BranchTee_mvgd_33532_lvgd_1172110000_building_444731,0.05358778658479188,0.046514198755599354,0.004562312009402528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025973083732529 47.5270324954913, 10.026457499999998 47.52738559624154)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_33_LVCableDist_mvgd_33532_lvgd_1172110000_44,BranchTee_mvgd_33532_lvgd_1172110000_33,BranchTee_mvgd_33532_lvgd_1172110000_44,0.12606187834467306,0.1094217104031762,0.010732550421535125,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028951300000003 47.52600219624145, 10.0290118 47.52606059624142, 10.029065000000005 47.52608729624142, 10.029658600000005 47.52616739624146, 10.030097400000004 47.52618489624148, 10.030432900000003 47.52615699624144, 10.030532800000001 47.526200396241435)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_33_LVCableDist_mvgd_33532_lvgd_1172110000_building_444551,BranchTee_mvgd_33532_lvgd_1172110000_33,BranchTee_mvgd_33532_lvgd_1172110000_building_444551,0.01849336901555774,0.01605224430550412,0.0015744729336877757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.030713830594937 47.526312774943825, 10.030532800000001 47.526200396241435)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_34_LVCableDist_mvgd_33532_lvgd_1172110000_building_444732,BranchTee_mvgd_33532_lvgd_1172110000_34,BranchTee_mvgd_33532_lvgd_1172110000_building_444732,0.022154237739309267,0.019229878357720442,0.0018861489033005548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02600866697833 47.52744253767572, 10.026050599999998 47.527639896241574)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_35_LVCableDist_mvgd_33532_lvgd_1172110000_36,BranchTee_mvgd_33532_lvgd_1172110000_35,BranchTee_mvgd_33532_lvgd_1172110000_36,0.06387458297812823,0.055443138025015305,0.005438100649213902,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027246399999996 47.52681299624154, 10.026677200000005 47.52723899624155)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_35_LVCableDist_mvgd_33532_lvgd_1172110000_building_444743,BranchTee_mvgd_33532_lvgd_1172110000_35,BranchTee_mvgd_33532_lvgd_1172110000_building_444743,0.025780522286051388,0.022377493344292603,0.0021948804742702656,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026533583246453 47.52702839655046, 10.026677200000005 47.52723899624155)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_36_LVCableDist_mvgd_33532_lvgd_1172110000_38,BranchTee_mvgd_33532_lvgd_1172110000_36,BranchTee_mvgd_33532_lvgd_1172110000_38,0.06206849921701374,0.05387545732036793,0.0052843358054228354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027246399999996 47.52681299624154, 10.027849200000004 47.5264322962415)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_36_LVCableDist_mvgd_33532_lvgd_1172110000_building_444537,BranchTee_mvgd_33532_lvgd_1172110000_36,BranchTee_mvgd_33532_lvgd_1172110000_building_444537,0.0225088401846834,0.01953767328030519,0.0019163387487522614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02712449998683 47.52662804628386, 10.027246399999996 47.52681299624154)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_36_LVCableDist_mvgd_33532_lvgd_1172110000_building_444744,BranchTee_mvgd_33532_lvgd_1172110000_36,BranchTee_mvgd_33532_lvgd_1172110000_building_444744,0.02674992429556959,0.023218934288554406,0.0022774126091433078,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026902599992246 47.52687294628459, 10.027246399999996 47.52681299624154)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_37_LVCableDist_mvgd_33532_lvgd_1172110000_40,BranchTee_mvgd_33532_lvgd_1172110000_37,BranchTee_mvgd_33532_lvgd_1172110000_40,0.02625849675242779,0.02279237518110732,0.002235573863326116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028110300000003 47.52582399624143, 10.028436500000005 47.52590709624144)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_37_LVCableDist_mvgd_33532_lvgd_1172110000_41,BranchTee_mvgd_33532_lvgd_1172110000_37,BranchTee_mvgd_33532_lvgd_1172110000_41,0.036214764335023776,0.03143441544280064,0.0030832222185913413,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028110300000003 47.52582399624143, 10.027769699999999 47.52592539624145, 10.027667700000007 47.52590009624144)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_37_LVCableDist_mvgd_33532_lvgd_1172110000_42,BranchTee_mvgd_33532_lvgd_1172110000_37,BranchTee_mvgd_33532_lvgd_1172110000_42,0.018810778512115458,0.016327755748516217,0.0016014962770712967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028110300000003 47.52582399624143, 10.028019099999993 47.52566639624141)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_38_LVCableDist_mvgd_33532_lvgd_1172110000_44,BranchTee_mvgd_33532_lvgd_1172110000_38,BranchTee_mvgd_33532_lvgd_1172110000_44,0.09594348435719553,0.08327894442204573,0.008168355866203701,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027849200000004 47.5264322962415, 10.028215100000002 47.52626519624144, 10.028951300000003 47.52600219624145)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_38_LVCableDist_mvgd_33532_lvgd_1172110000_building_444536,BranchTee_mvgd_33532_lvgd_1172110000_38,BranchTee_mvgd_33532_lvgd_1172110000_building_444536,0.016669223112071696,0.014468885661278233,0.0014191703303752016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02764664998287 47.5263719963076, 10.027849200000004 47.5264322962415)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_39_LVCableDist_mvgd_33532_lvgd_1172110000_40,BranchTee_mvgd_33532_lvgd_1172110000_39,BranchTee_mvgd_33532_lvgd_1172110000_40,0.02794976320078796,0.02426039445828395,0.002379563487085702,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028094099999993 47.52600379624145, 10.028436500000005 47.52590709624144)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_39_LVCableDist_mvgd_33532_lvgd_1172110000_building_444529,BranchTee_mvgd_33532_lvgd_1172110000_39,BranchTee_mvgd_33532_lvgd_1172110000_building_444529,0.01474874609286539,0.012801911608607159,0.001255666369362692,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028105983326274 47.526136296283944, 10.028094099999993 47.52600379624145)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_3_LVCableDist_mvgd_33532_lvgd_1172110000_building_444562,BranchTee_mvgd_33532_lvgd_1172110000_3,BranchTee_mvgd_33532_lvgd_1172110000_building_444562,0.014430718454751496,0.012525863618724297,0.0012285903991620358,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034891650002276 47.5249377462482, 10.034949799999998 47.52481399624134)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_3_LVCableDist_mvgd_33532_lvgd_1172110000_building_444563,BranchTee_mvgd_33532_lvgd_1172110000_3,BranchTee_mvgd_33532_lvgd_1172110000_building_444563,0.032385985965686696,0.028111035818216053,0.0027572508984636205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03469265000355 47.52504754627692, 10.034949799999998 47.52481399624134)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_3_LVCableDist_mvgd_33532_lvgd_1172110000_building_444570,BranchTee_mvgd_33532_lvgd_1172110000_3,BranchTee_mvgd_33532_lvgd_1172110000_building_444570,0.03105963221335141,0.026959760761189024,0.00264432890562444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035090415394713 47.52507677248538, 10.034949799999998 47.52481399624134)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_40_LVCableDist_mvgd_33532_lvgd_1172110000_43,BranchTee_mvgd_33532_lvgd_1172110000_40,BranchTee_mvgd_33532_lvgd_1172110000_43,0.046788728603512984,0.04061261642784927,0.003983459515998442,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028436500000005 47.52590709624144, 10.028860799999995 47.525906496241404, 10.028942799999994 47.525919896241405, 10.028997700000003 47.52598629624144)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_40_LVCableDist_mvgd_33532_lvgd_1172110000_building_444530,BranchTee_mvgd_33532_lvgd_1172110000_40,BranchTee_mvgd_33532_lvgd_1172110000_building_444530,0.014162819127523735,0.012293327002690601,0.0012057822110315534,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028508124872255 47.52578924411839, 10.028436500000005 47.52590709624144)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_41_LVCableDist_mvgd_33532_lvgd_1172110000_building_444526,BranchTee_mvgd_33532_lvgd_1172110000_41,BranchTee_mvgd_33532_lvgd_1172110000_building_444526,0.02738939946487543,0.023773998735511875,0.002331855709531909,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027481467219946 47.526111794470765, 10.027667700000007 47.52590009624144)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_42_LVCableDist_mvgd_33532_lvgd_1172110000_building_444543,BranchTee_mvgd_33532_lvgd_1172110000_42,BranchTee_mvgd_33532_lvgd_1172110000_building_444543,0.017221928376752984,0.01494863383102159,0.0014662260874314386,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027859331576414 47.5257772300425, 10.028019099999993 47.52566639624141)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_43_LVCableDist_mvgd_33532_lvgd_1172110000_44,BranchTee_mvgd_33532_lvgd_1172110000_43,BranchTee_mvgd_33532_lvgd_1172110000_44,0.003917494727465027,0.0034003854234396437,0.00033352437898521184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028951300000003 47.52600219624145, 10.028997700000003 47.52598629624144)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_43_LVStation_mvgd_33532_lvgd_1172110000,BusBar_mvgd_33532_lvgd_1172110000_LV,BranchTee_mvgd_33532_lvgd_1172110000_43,0.28854603551872715,0.2504579588302552,0.024565990256559315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032254799999993 47.52462569624129, 10.031882200000002 47.52475569624136, 10.031685800000005 47.524828396241325, 10.031609300000003 47.524860696241326, 10.030365000000002 47.52542929624145, 10.029607799999997 47.52575179624143, 10.029282999999996 47.52586899624143, 10.029169399999995 47.52591649624144, 10.029016599999995 47.52598039624144, 10.028997700000003 47.52598629624144)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_45_LVCableDist_mvgd_33532_lvgd_1172110000_46,BranchTee_mvgd_33532_lvgd_1172110000_45,BranchTee_mvgd_33532_lvgd_1172110000_46,0.04330488059491309,0.03758863635638456,0.003686854587496335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0326915 47.52484589624131, 10.033040199999999 47.52515569624133)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_45_LVCableDist_mvgd_33532_lvgd_1172110000_building_444542,BranchTee_mvgd_33532_lvgd_1172110000_45,BranchTee_mvgd_33532_lvgd_1172110000_building_444542,0.018132918319462107,0.01573937310129311,0.001543785184773337,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032700100013498 47.52468279628957, 10.0326915 47.52484589624131)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_45_LVStation_mvgd_33532_lvgd_1172110000,BusBar_mvgd_33532_lvgd_1172110000_LV,BranchTee_mvgd_33532_lvgd_1172110000_45,0.04100741156721522,0.03559443324034281,0.003491254597194234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032254799999993 47.52462569624129, 10.0326915 47.52484589624131)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_46_LVCableDist_mvgd_33532_lvgd_1172110000_47,BranchTee_mvgd_33532_lvgd_1172110000_46,BranchTee_mvgd_33532_lvgd_1172110000_47,0.020272898904962193,0.017596876249507183,0.0017259770562302202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033040199999999 47.52515569624133, 10.033305800000003 47.52512669624137)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_46_LVCableDist_mvgd_33532_lvgd_1172110000_building_444547,BranchTee_mvgd_33532_lvgd_1172110000_46,BranchTee_mvgd_33532_lvgd_1172110000_building_444547,0.02547594726174736,0.022113122223196707,0.0021689498214162305,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033059195027278 47.52492676373816, 10.033040199999999 47.52515569624133)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_47_LVCableDist_mvgd_33532_lvgd_1172110000_building_444576,BranchTee_mvgd_33532_lvgd_1172110000_47,BranchTee_mvgd_33532_lvgd_1172110000_building_444576,0.01335512396996777,0.011592247605932023,0.0011370173384346392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033390854599727 47.52502124193437, 10.033305800000003 47.52512669624137)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_4_LVCableDist_mvgd_33532_lvgd_1172110000_building_444541,BranchTee_mvgd_33532_lvgd_1172110000_4,BranchTee_mvgd_33532_lvgd_1172110000_building_444541,0.011008563786356817,0.009555433366557717,0.0009372378664921962,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034273932575509 47.523549394451315, 10.034172499999999 47.52362069624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_4_LVCableDist_mvgd_33532_lvgd_1172110000_building_444544,BranchTee_mvgd_33532_lvgd_1172110000_4,BranchTee_mvgd_33532_lvgd_1172110000_building_444544,0.012473030511862375,0.010826590484296541,0.0010619184057522476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034010247547863 47.52364286369428, 10.034172499999999 47.52362069624127)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_5_LVCableDist_mvgd_33532_lvgd_1172110000_building_444525,BranchTee_mvgd_33532_lvgd_1172110000_5,BranchTee_mvgd_33532_lvgd_1172110000_building_444525,0.01421682833742936,0.012340206996888684,0.0012103804018260339,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033829126223912 47.523353430212, 10.033919100000006 47.5234658962412)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_6_LVCableDist_mvgd_33532_lvgd_1172110000_7,BranchTee_mvgd_33532_lvgd_1172110000_6,BranchTee_mvgd_33532_lvgd_1172110000_7,0.03783669378642163,0.012107742011654921,0.003102441208047823,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.033466598382274 47.524433546718235, 10.033783299999996 47.524697796241355)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_6_LVCableDist_mvgd_33532_lvgd_1172110000_building_444558,BranchTee_mvgd_33532_lvgd_1172110000_6,BranchTee_mvgd_33532_lvgd_1172110000_building_444558,0.03590477564161297,0.03116534525692006,0.003056830661319437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033787262085756 47.524194532182854, 10.033466598382274 47.524433546718235)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_6_LVCableDist_mvgd_33532_lvgd_1172110000_building_444564,BranchTee_mvgd_33532_lvgd_1172110000_6,BranchTee_mvgd_33532_lvgd_1172110000_building_444564,0.022798187205747625,0.019788826494588938,0.0019409729326440963,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033768722899676 47.52444409959984, 10.033466598382274 47.524433546718235)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_6_LVCableDist_mvgd_33532_lvgd_1172110000_building_444565,BranchTee_mvgd_33532_lvgd_1172110000_6,BranchTee_mvgd_33532_lvgd_1172110000_building_444565,0.026683144678050996,0.023160969580548266,0.002271727182100966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033300713830638 47.524645721101834, 10.033466598382274 47.524433546718235)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_7_LVCableDist_mvgd_33532_lvgd_1172110000_9,BranchTee_mvgd_33532_lvgd_1172110000_7,BranchTee_mvgd_33532_lvgd_1172110000_9,0.022373980452205573,0.007159673744705783,0.0018345672413874986,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.033783299999996 47.524697796241355, 10.0339359 47.52472919624133, 10.034070800000004 47.52474699624133)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_7_LVCableDist_mvgd_33532_lvgd_1172110000_building_444577,BranchTee_mvgd_33532_lvgd_1172110000_7,BranchTee_mvgd_33532_lvgd_1172110000_building_444577,0.021588707908437636,0.018738998464523867,0.0018380012990889404,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033611285273818 47.52485317875184, 10.033783299999996 47.524697796241355)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_8_LVCableDist_mvgd_33532_lvgd_1172110000_building_444582,BranchTee_mvgd_33532_lvgd_1172110000_8,BranchTee_mvgd_33532_lvgd_1172110000_building_444582,0.013410344526714118,0.011640179049187854,0.001141718659860019,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034744431048573 47.52379075853212, 10.034601899999997 47.52371849624124)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_9_LVCableDist_mvgd_33532_lvgd_1172110000_building_444569,BranchTee_mvgd_33532_lvgd_1172110000_9,BranchTee_mvgd_33532_lvgd_1172110000_building_444569,0.012908463065683622,0.011204545941013383,0.0010989898971533736,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034138750000842 47.524640346260945, 10.034070800000004 47.52474699624133)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_9_LVCableDist_mvgd_33532_lvgd_1172110000_building_444578,BranchTee_mvgd_33532_lvgd_1172110000_9,BranchTee_mvgd_33532_lvgd_1172110000_building_444578,0.017091196326856135,0.014835158411711125,0.0014550959318629778,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034183283780319 47.52488057054176, 10.034070800000004 47.52474699624133)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_9_LVCableDist_mvgd_33532_lvgd_1172110000_building_444579,BranchTee_mvgd_33532_lvgd_1172110000_9,BranchTee_mvgd_33532_lvgd_1172110000_building_444579,0.026541251800966212,0.023037806563238672,0.002259646825392292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033994100004797 47.52498014628227, 10.034070800000004 47.52474699624133)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110000_building_444524_LVStation_mvgd_33532_lvgd_1172110000,BusBar_mvgd_33532_lvgd_1172110000_LV,BranchTee_mvgd_33532_lvgd_1172110000_building_444524,0.5677512061632239,0.18168038597223166,0.04655308277891226,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026318849962545 47.5268243463918, 10.026677200000005 47.52723899624155, 10.027246399999996 47.52681299624154, 10.027849200000004 47.5264322962415, 10.028215100000002 47.52626519624144, 10.028951300000003 47.52600219624145, 10.028997700000003 47.52598629624144, 10.029016599999995 47.52598039624144, 10.029169399999995 47.52591649624144, 10.029282999999996 47.52586899624143, 10.029607799999997 47.52575179624143, 10.030365000000002 47.52542929624145, 10.031609300000003 47.524860696241326, 10.031685800000005 47.524828396241325, 10.031882200000002 47.52475569624136, 10.032254799999993 47.52462569624129)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_10_LVCableDist_mvgd_33532_lvgd_1172110001_11,BranchTee_mvgd_33532_lvgd_1172110001_10,BranchTee_mvgd_33532_lvgd_1172110001_11,0.050296526560630266,0.010361084471489835,0.004045086677605374,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021285399999998 47.53544639624225, 10.021432199999998 47.535491296242284, 10.021648599999995 47.5355946962423, 10.021829100000007 47.535703796242295)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_10_LVCableDist_mvgd_33532_lvgd_1172110001_building_444810,BranchTee_mvgd_33532_lvgd_1172110001_10,BranchTee_mvgd_33532_lvgd_1172110001_building_444810,0.01646771916692529,0.01429398023689115,0.0014020148565728119,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021625466868333 47.535757647507715, 10.021829100000007 47.535703796242295)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_11_LVCableDist_mvgd_33532_lvgd_1172110001_12,BranchTee_mvgd_33532_lvgd_1172110001_11,BranchTee_mvgd_33532_lvgd_1172110001_12,0.06860229785729077,0.014132073358601898,0.005517324159176794,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021285599999999 47.53580619624231, 10.021120800000006 47.53571769624229, 10.021092200000005 47.5356475962423, 10.020937299999991 47.5355465962423, 10.021183400000002 47.53547579624229, 10.021285399999998 47.53544639624225)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_11_LVCableDist_mvgd_33532_lvgd_1172110001_14,BranchTee_mvgd_33532_lvgd_1172110001_11,BranchTee_mvgd_33532_lvgd_1172110001_14,0.17278054102293566,0.03559279145072475,0.013895835606039669,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021285399999998 47.53544639624225, 10.021343699999996 47.5354294962423, 10.021570000000004 47.53538669624228, 10.021769 47.53537319624225, 10.022241400000004 47.5353715962423, 10.022338499999996 47.535363196242294, 10.022501900000004 47.535330396242294, 10.022653200000002 47.53526479624224, 10.023191200000003 47.53494229624227, 10.02333 47.53489319624225)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_12_LVCableDist_mvgd_33532_lvgd_1172110001_13,BranchTee_mvgd_33532_lvgd_1172110001_12,BranchTee_mvgd_33532_lvgd_1172110001_13,0.029356205997295104,0.006047378435442791,0.0023609661721182957,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021602099999997 47.53596029624237, 10.021285599999999 47.53580619624231)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_12_LVCableDist_mvgd_33532_lvgd_1172110001_building_444817,BranchTee_mvgd_33532_lvgd_1172110001_12,BranchTee_mvgd_33532_lvgd_1172110001_building_444817,0.01503098143378441,0.013046891884524868,0.0012796950849976476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021348811599877 47.53593451009363, 10.021285599999999 47.53580619624231)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_13_LVCableDist_mvgd_33532_lvgd_1172110001_building_444820,BranchTee_mvgd_33532_lvgd_1172110001_13,BranchTee_mvgd_33532_lvgd_1172110001_building_444820,0.011281057538330799,0.009791957943271134,0.0009604372109015969,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021459292485511 47.535990812025574, 10.021602099999997 47.53596029624237)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_14_LVCableDist_mvgd_33532_lvgd_1172110001_16,BranchTee_mvgd_33532_lvgd_1172110001_14,BranchTee_mvgd_33532_lvgd_1172110001_16,0.11799232475550639,0.024306418899634315,0.009489505808176127,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.02333 47.53489319624225, 10.02359344799995 47.53528579659849, 10.023856899999997 47.53567839624231, 10.024060699999993 47.53582199624235)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_14_LVCableDist_mvgd_33532_lvgd_1172110001_24,BranchTee_mvgd_33532_lvgd_1172110001_14,BranchTee_mvgd_33532_lvgd_1172110001_24,0.24621657789443674,0.05072061504625396,0.019801912123012647,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.02333 47.53489319624225, 10.023580200000003 47.53481119624228, 10.024290899999999 47.53462489624224, 10.024421899999993 47.53455509624217, 10.024470900000004 47.53447589624225, 10.024473399999996 47.53440269624219, 10.0244336 47.53431489624215, 10.023956599999993 47.533849896242174, 10.023898699999998 47.53371819624214, 10.023877799999992 47.533620996242135, 10.023837999999998 47.533277196242096)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_15_LVCableDist_mvgd_33532_lvgd_1172110001_17,BranchTee_mvgd_33532_lvgd_1172110001_15,BranchTee_mvgd_33532_lvgd_1172110001_17,0.007721355355574201,0.0015905992032482854,0.0006209882434771997,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024402000000002 47.533196796242116, 10.0243162 47.53315879624212)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_15_LVCableDist_mvgd_33532_lvgd_1172110001_19,BranchTee_mvgd_33532_lvgd_1172110001_15,BranchTee_mvgd_33532_lvgd_1172110001_19,0.02080266387895153,0.004285348759064014,0.001673049498040624,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024422800000005 47.53338349624211, 10.024402000000002 47.533196796242116)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_15_LVCableDist_mvgd_33532_lvgd_1172110001_building_444808,BranchTee_mvgd_33532_lvgd_1172110001_15,BranchTee_mvgd_33532_lvgd_1172110001_building_444808,0.020260619575991762,0.01758621779196085,0.0017249316290237698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024665514511092 47.53316048899566, 10.024402000000002 47.533196796242116)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_15_LVCableDist_mvgd_33532_lvgd_1172110001_building_444814,BranchTee_mvgd_33532_lvgd_1172110001_15,BranchTee_mvgd_33532_lvgd_1172110001_building_444814,0.0394663454188079,0.03425678782352525,0.003360052600540807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024878725191941 47.53304962653271, 10.024402000000002 47.533196796242116)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_16_LVCableDist_mvgd_33532_lvgd_1172110001_building_444818,BranchTee_mvgd_33532_lvgd_1172110001_16,BranchTee_mvgd_33532_lvgd_1172110001_building_444818,0.018820781102582052,0.016336437997041223,0.001602347869225391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023825650017939 47.53587934628145, 10.024060699999993 47.53582199624235)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_17_LVCableDist_mvgd_33532_lvgd_1172110001_18,BranchTee_mvgd_33532_lvgd_1172110001_17,BranchTee_mvgd_33532_lvgd_1172110001_18,0.036944607329224284,0.0076105891098202025,0.002971261618566416,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0243162 47.53315879624212, 10.023826400000004 47.53314339624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_17_LVCableDist_mvgd_33532_lvgd_1172110001_building_444802,BranchTee_mvgd_33532_lvgd_1172110001_17,BranchTee_mvgd_33532_lvgd_1172110001_building_444802,0.026726265649358802,0.02319839858364344,0.002275398379173893,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024428969563576 47.53293072879283, 10.0243162 47.53315879624212)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_18_LVCableDist_mvgd_33532_lvgd_1172110001_23,BranchTee_mvgd_33532_lvgd_1172110001_18,BranchTee_mvgd_33532_lvgd_1172110001_23,0.011827513050888486,0.002436467688483028,0.0009512250396392619,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.023826400000004 47.53314339624206, 10.023815600000006 47.533037196242084)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_18_LVCableDist_mvgd_33532_lvgd_1172110001_24,BranchTee_mvgd_33532_lvgd_1172110001_18,BranchTee_mvgd_33532_lvgd_1172110001_24,0.01489169027393131,0.0030676881964298497,0.0011976607939613998,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.023826400000004 47.53314339624206, 10.023837999999998 47.533277196242096)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_19_LVCableDist_mvgd_33532_lvgd_1172110001_20,BranchTee_mvgd_33532_lvgd_1172110001_19,BranchTee_mvgd_33532_lvgd_1172110001_20,0.026599387500460855,0.005479473825094936,0.0021392496732527615,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0247528 47.53346429624213, 10.024579199999994 47.533435896242146, 10.024422800000005 47.53338349624211)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_19_LVCableDist_mvgd_33532_lvgd_1172110001_building_444809,BranchTee_mvgd_33532_lvgd_1172110001_19,BranchTee_mvgd_33532_lvgd_1172110001_building_444809,0.014358306572382061,0.01246301010482763,0.001222425457080788,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024570450000095 47.53330179630573, 10.024422800000005 47.53338349624211)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_1_LVCableDist_mvgd_33532_lvgd_1172110001_6,BranchTee_mvgd_33532_lvgd_1172110001_1,BranchTee_mvgd_33532_lvgd_1172110001_6,0.014802307402792708,0.003744983772906555,0.0011904721969354594,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0238945 47.53277949624208, 10.023838999999994 47.53290729624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_1_LVCableDist_mvgd_33532_lvgd_1172110001_building_444794,BranchTee_mvgd_33532_lvgd_1172110001_1,BranchTee_mvgd_33532_lvgd_1172110001_building_444794,0.020468400360345244,0.01776657151277967,0.0017426214950957528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023594730660419 47.53282669055229, 10.023838999999994 47.53290729624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_20_LVCableDist_mvgd_33532_lvgd_1172110001_building_444815,BranchTee_mvgd_33532_lvgd_1172110001_20,BranchTee_mvgd_33532_lvgd_1172110001_building_444815,0.02021352049931334,0.01754533579340398,0.001720921747353779,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024885782661695 47.533306290296686, 10.0247528 47.53346429624213)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_20_LVCableDist_mvgd_33532_lvgd_1172110001_building_444836,BranchTee_mvgd_33532_lvgd_1172110001_20,BranchTee_mvgd_33532_lvgd_1172110001_building_444836,0.04701038615249171,0.0408050151803628,0.004002330810413266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02520106155439 47.53316998948653, 10.0247528 47.53346429624213)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_21_LVCableDist_mvgd_33532_lvgd_1172110001_22,BranchTee_mvgd_33532_lvgd_1172110001_21,BranchTee_mvgd_33532_lvgd_1172110001_22,0.030158677798482636,0.006212687626487422,0.0024255047837105827,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.022354700000003 47.53279569624204, 10.0219546 47.53278799624207)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_21_LVCableDist_mvgd_33532_lvgd_1172110001_28,BranchTee_mvgd_33532_lvgd_1172110001_21,BranchTee_mvgd_33532_lvgd_1172110001_28,0.01768543855813967,0.003643200342976772,0.0014223473625539905,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.022577099999998 47.5328417962421, 10.022473199999999 47.532808996242046, 10.022354700000003 47.53279569624204)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_21_LVCableDist_mvgd_33532_lvgd_1172110001_building_444777,BranchTee_mvgd_33532_lvgd_1172110001_21,BranchTee_mvgd_33532_lvgd_1172110001_building_444777,0.04606246921073255,0.03998222327491585,0.003921627853211237,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02215733649573 47.53318807873259, 10.022354700000003 47.53279569624204)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_22_LVCableDist_mvgd_33532_lvgd_1172110001_26,BranchTee_mvgd_33532_lvgd_1172110001_22,BranchTee_mvgd_33532_lvgd_1172110001_26,0.03371275215690746,0.006944826944322936,0.0027113404034159083,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0219546 47.53278799624207, 10.021507600000001 47.53277469624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_22_LVCableDist_mvgd_33532_lvgd_1172110001_building_444765,BranchTee_mvgd_33532_lvgd_1172110001_22,BranchTee_mvgd_33532_lvgd_1172110001_building_444765,0.019589123841614094,0.017003359494521034,0.0016677623886341465,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021763569566577 47.53290758982045, 10.0219546 47.53278799624207)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_22_LVCableDist_mvgd_33532_lvgd_1172110001_building_444776,BranchTee_mvgd_33532_lvgd_1172110001_22,BranchTee_mvgd_33532_lvgd_1172110001_building_444776,0.04376213990666723,0.03798553743898716,0.003725784347099787,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021768545601912 47.533161118006184, 10.0219546 47.53278799624207)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_23_LVCableDist_mvgd_33532_lvgd_1172110001_25,BranchTee_mvgd_33532_lvgd_1172110001_23,BranchTee_mvgd_33532_lvgd_1172110001_25,0.04574533083812804,0.009423538152654376,0.0036790577996057,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.023815600000006 47.533037196242084, 10.023732100000002 47.53304719624206, 10.023518399999997 47.53307189624208, 10.023213999999996 47.533089896242096)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_23_LVCableDist_mvgd_33532_lvgd_1172110001_building_444806,BranchTee_mvgd_33532_lvgd_1172110001_23,BranchTee_mvgd_33532_lvgd_1172110001_building_444806,0.01872001726395831,0.01624897498511581,0.001593769122082342,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024064050001455 47.53303694630505, 10.023815600000006 47.533037196242084)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_23_LVStation_mvgd_33532_lvgd_1172110001,BusBar_mvgd_33532_lvgd_1172110001_LV,BranchTee_mvgd_33532_lvgd_1172110001_23,0.14068074493461588,0.02898023345653087,0.011314216826576096,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.023815600000006 47.533037196242084, 10.023838999999994 47.53290729624206, 10.0238945 47.53277949624208, 10.024040699999995 47.532578196242056, 10.024205299999998 47.532322896242036, 10.024242799999993 47.53221619624197, 10.024231499999999 47.53182689624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_24_LVCableDist_mvgd_33532_lvgd_1172110001_building_444786,BranchTee_mvgd_33532_lvgd_1172110001_24,BranchTee_mvgd_33532_lvgd_1172110001_building_444786,0.023259613046663456,0.02018934412450388,0.0019802574187112332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023563765051982 47.53337332217882, 10.023837999999998 47.533277196242096)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_25_LVCableDist_mvgd_33532_lvgd_1172110001_27,BranchTee_mvgd_33532_lvgd_1172110001_25,BranchTee_mvgd_33532_lvgd_1172110001_27,0.0179299796961525,0.0036935758174074145,0.001442014527806639,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.023213999999996 47.533089896242096, 10.023086000000001 47.533081296242074, 10.022984999999997 47.53305289624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_25_LVCableDist_mvgd_33532_lvgd_1172110001_building_444783,BranchTee_mvgd_33532_lvgd_1172110001_25,BranchTee_mvgd_33532_lvgd_1172110001_building_444783,0.024520538123194307,0.02128382709093266,0.0020876089998501735,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023191150010735 47.53331004628796, 10.023213999999996 47.533089896242096)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_25_LVCableDist_mvgd_33532_lvgd_1172110001_building_444793,BranchTee_mvgd_33532_lvgd_1172110001_25,BranchTee_mvgd_33532_lvgd_1172110001_building_444793,0.024161976944913264,0.02097259598818471,0.0020570821191179625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023260251408209 47.53287470238051, 10.023213999999996 47.533089896242096)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_26_LVCableDist_mvgd_33532_lvgd_1172110001_29,BranchTee_mvgd_33532_lvgd_1172110001_26,BranchTee_mvgd_33532_lvgd_1172110001_29,0.3006149947962143,0.06192668892802014,0.024176892395794448,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021507600000001 47.53277469624206, 10.021207099999996 47.532752896242066, 10.020834300000004 47.532736096242, 10.020482300000001 47.53272089624208, 10.020213600000002 47.53270229624207, 10.019785199999998 47.53264559624204, 10.019025400000002 47.53249219624201, 10.018183000000002 47.53229859624201, 10.017919699999997 47.53218669624201, 10.017812100000006 47.53214729624202, 10.017762300000001 47.53213609624203, 10.0176755 47.532138396242)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_26_LVCableDist_mvgd_33532_lvgd_1172110001_building_444775,BranchTee_mvgd_33532_lvgd_1172110001_26,BranchTee_mvgd_33532_lvgd_1172110001_building_444775,0.046918657005385785,0.04072539428067486,0.003994521251255763,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02151552483215 47.53319694858947, 10.021507600000001 47.53277469624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_26_LVCableDist_mvgd_33532_lvgd_1172110001_building_444780,BranchTee_mvgd_33532_lvgd_1172110001_26,BranchTee_mvgd_33532_lvgd_1172110001_building_444780,0.023109854187625952,0.020059353434859328,0.001967507374631317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02171985000221 47.53262454627628, 10.021507600000001 47.53277469624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_27_LVCableDist_mvgd_33532_lvgd_1172110001_28,BranchTee_mvgd_33532_lvgd_1172110001_27,BranchTee_mvgd_33532_lvgd_1172110001_28,0.03866155126274646,0.00796427956012577,0.003109346442839794,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.022984999999997 47.53305289624206, 10.022577099999998 47.5328417962421)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_27_LVCableDist_mvgd_33532_lvgd_1172110001_building_444785,BranchTee_mvgd_33532_lvgd_1172110001_27,BranchTee_mvgd_33532_lvgd_1172110001_building_444785,0.021998461158821984,0.01909466428585748,0.0018728865275012437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022910708342154 47.53286141899801, 10.022984999999997 47.53305289624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_27_LVCableDist_mvgd_33532_lvgd_1172110001_building_444791,BranchTee_mvgd_33532_lvgd_1172110001_27,BranchTee_mvgd_33532_lvgd_1172110001_building_444791,0.022207575436522502,0.019276175478901533,0.0018906899234108886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023008665640344 47.53285366443409, 10.022984999999997 47.53305289624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_27_LVCableDist_mvgd_33532_lvgd_1172110001_building_444800,BranchTee_mvgd_33532_lvgd_1172110001_27,BranchTee_mvgd_33532_lvgd_1172110001_building_444800,0.024098543863513903,0.020917536073530068,0.002051681606659703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022818978555131 47.53323828346944, 10.022984999999997 47.53305289624206)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_28_LVCableDist_mvgd_33532_lvgd_1172110001_building_444779,BranchTee_mvgd_33532_lvgd_1172110001_28,BranchTee_mvgd_33532_lvgd_1172110001_building_444779,0.019114362566867774,0.016591266708041227,0.001627342561591148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022449493074342 47.53299048450487, 10.022577099999998 47.5328417962421)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_29_LVCableDist_mvgd_33532_lvgd_1172110001_30,BranchTee_mvgd_33532_lvgd_1172110001_29,BranchTee_mvgd_33532_lvgd_1172110001_30,0.1461356403827485,0.030103941918846192,0.011752925548904515,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0176755 47.532138396242, 10.017503300000005 47.532164396242, 10.017478799999997 47.53215609624201, 10.017242299999996 47.531958096242, 10.016696599999998 47.531632396241946, 10.016207400000006 47.53135999624193)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_29_LVCableDist_mvgd_33532_lvgd_1172110001_building_431689,BranchTee_mvgd_33532_lvgd_1172110001_29,BranchTee_mvgd_33532_lvgd_1172110001_building_431689,0.021532033771561893,0.018689805313715724,0.0018331762239781853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017716706421114 47.53233016764943, 10.0176755 47.532138396242)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_2_LVCableDist_mvgd_33532_lvgd_1172110001_4,BranchTee_mvgd_33532_lvgd_1172110001_2,BranchTee_mvgd_33532_lvgd_1172110001_4,0.033255014491525174,0.00841351866635587,0.0026745269560728984,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.026011699999996 47.532519496242045, 10.026436499999999 47.532600696242)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_2_LVCableDist_mvgd_33532_lvgd_1172110001_5,BranchTee_mvgd_33532_lvgd_1172110001_2,BranchTee_mvgd_33532_lvgd_1172110001_5,0.010019077349475278,0.0025348265694172456,0.0008057820107996013,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.026436499999999 47.532600696242, 10.026534700000001 47.53266149624205)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_2_LVCableDist_mvgd_33532_lvgd_1172110001_building_444829,BranchTee_mvgd_33532_lvgd_1172110001_2,BranchTee_mvgd_33532_lvgd_1172110001_building_444829,0.026114182702329757,0.02266711058562223,0.0022232873748210162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026228582946596 47.532788744721394, 10.026436499999999 47.532600696242)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_2_LVCableDist_mvgd_33532_lvgd_1172110001_building_444867,BranchTee_mvgd_33532_lvgd_1172110001_2,BranchTee_mvgd_33532_lvgd_1172110001_building_444867,0.019166225488578537,0.01663628372408617,0.0016317580235022185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02630066737157 47.53245484764815, 10.026436499999999 47.532600696242)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_30_LVCableDist_mvgd_33532_lvgd_1172110001_building_431663,BranchTee_mvgd_33532_lvgd_1172110001_30,BranchTee_mvgd_33532_lvgd_1172110001_building_431663,0.013299647714027422,0.011544094215775801,0.0011322942475058347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016183047684585 47.531478553805414, 10.016207400000006 47.53135999624193)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_31_LVCableDist_mvgd_33532_lvgd_1172110001_34,BranchTee_mvgd_33532_lvgd_1172110001_31,BranchTee_mvgd_33532_lvgd_1172110001_34,0.015539848898288529,0.00497275164745233,0.0012741987410694018,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022702400000004 47.530412696241854, 10.022908600000001 47.53041019624186)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_31_LVCableDist_mvgd_33532_lvgd_1172110001_36,BranchTee_mvgd_33532_lvgd_1172110001_31,BranchTee_mvgd_33532_lvgd_1172110001_36,0.008125874791880752,0.0026002799334018407,0.000666285721159256,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022594599999998 47.53041069624181, 10.022702400000004 47.530412696241854)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_31_LVCableDist_mvgd_33532_lvgd_1172110001_building_444689,BranchTee_mvgd_33532_lvgd_1172110001_31,BranchTee_mvgd_33532_lvgd_1172110001_building_444689,0.017988296949537637,0.01561384175219867,0.0015314725319307224,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022746265472223 47.53057184138532, 10.022702400000004 47.530412696241854)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_32_LVCableDist_mvgd_33532_lvgd_1172110001_35,BranchTee_mvgd_33532_lvgd_1172110001_32,BranchTee_mvgd_33532_lvgd_1172110001_35,0.059686719852289336,0.01909975035273259,0.004894046511785913,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021962399999994 47.53094039624191, 10.022406499999997 47.53060909624184, 10.022485800000002 47.5305375962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_32_LVCableDist_mvgd_33532_lvgd_1172110001_building_444690,BranchTee_mvgd_33532_lvgd_1172110001_32,BranchTee_mvgd_33532_lvgd_1172110001_building_444690,0.03159433067154663,0.027423879022902473,0.0026898516142993562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022380840490921 47.53095859185789, 10.021962399999994 47.53094039624191)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_32_LVCableDist_mvgd_33532_lvgd_1172110001_building_444695,BranchTee_mvgd_33532_lvgd_1172110001_32,BranchTee_mvgd_33532_lvgd_1172110001_building_444695,0.03449671872867148,0.029943151856486844,0.0029369526933486845,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021744137328747 47.53066746888636, 10.021962399999994 47.53094039624191)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_32_LVCableDist_mvgd_33532_lvgd_1172110001_building_444701,BranchTee_mvgd_33532_lvgd_1172110001_32,BranchTee_mvgd_33532_lvgd_1172110001_building_444701,0.02594234653046049,0.022517956788439705,0.002208657731006032,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02190179124684 47.530710551341215, 10.021962399999994 47.53094039624191)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_32_LVCableDist_mvgd_33532_lvgd_1172110001_building_444705,BranchTee_mvgd_33532_lvgd_1172110001_32,BranchTee_mvgd_33532_lvgd_1172110001_building_444705,0.015273327949570622,0.0132572486602273,0.0013003277793086695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022163302913699 47.53095864914782, 10.021962399999994 47.53094039624191)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_33_LVCableDist_mvgd_33532_lvgd_1172110001_34,BranchTee_mvgd_33532_lvgd_1172110001_33,BranchTee_mvgd_33532_lvgd_1172110001_34,0.029982156038887178,0.009594289932443897,0.0024584039220293765,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022908600000001 47.53041019624186, 10.023022700000002 47.53036869624185, 10.023151199999997 47.53034789624187, 10.023287500000004 47.53034639624186)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_33_LVCableDist_mvgd_33532_lvgd_1172110001_38,BranchTee_mvgd_33532_lvgd_1172110001_33,BranchTee_mvgd_33532_lvgd_1172110001_38,0.036682092363606734,0.011738269556354155,0.00300776900827182,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023287500000004 47.53034639624186, 10.023773699999994 47.53036299624181)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_33_LVCableDist_mvgd_33532_lvgd_1172110001_building_444681,BranchTee_mvgd_33532_lvgd_1172110001_33,BranchTee_mvgd_33532_lvgd_1172110001_building_444681,0.01413753301439482,0.012271378656494704,0.0012036294231492508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023338359923805 47.530223916606225, 10.023287500000004 47.53034639624186)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_34_LVCableDist_mvgd_33532_lvgd_1172110001_48,BranchTee_mvgd_33532_lvgd_1172110001_34,BranchTee_mvgd_33532_lvgd_1172110001_48,0.025279377229459256,0.008089400713426962,0.0020727969011553916,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022908600000001 47.53041019624186, 10.023078500000006 47.53050519624183, 10.023149500000004 47.53056679624188)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_34_LVCableDist_mvgd_33532_lvgd_1172110001_building_444687,BranchTee_mvgd_33532_lvgd_1172110001_34,BranchTee_mvgd_33532_lvgd_1172110001_building_444687,0.010331092726022749,0.008967388486187746,0.0008795599038151193,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022818742452642 47.53033996650974, 10.022908600000001 47.53041019624186)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_35_LVCableDist_mvgd_33532_lvgd_1172110001_36,BranchTee_mvgd_33532_lvgd_1172110001_35,BranchTee_mvgd_33532_lvgd_1172110001_36,0.016309503747762345,0.00521904119928395,0.0013373070278150667,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022594599999998 47.53041069624181, 10.022485800000002 47.5305375962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_35_LVCableDist_mvgd_33532_lvgd_1172110001_building_444686,BranchTee_mvgd_33532_lvgd_1172110001_35,BranchTee_mvgd_33532_lvgd_1172110001_building_444686,0.01462545959745246,0.012694898930588734,0.0012451701071644098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022339299999864 47.530451246287384, 10.022485800000002 47.5305375962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_36_LVCableDist_mvgd_33532_lvgd_1172110001_37,BranchTee_mvgd_33532_lvgd_1172110001_36,BranchTee_mvgd_33532_lvgd_1172110001_37,0.026927996985050516,0.008616959035216165,0.0022079764148576052,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022594599999998 47.53041069624181, 10.022656499999995 47.53017199624183)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_36_LVCableDist_mvgd_33532_lvgd_1172110001_building_444676,BranchTee_mvgd_33532_lvgd_1172110001_36,BranchTee_mvgd_33532_lvgd_1172110001_building_444676,0.025449377946577506,0.022090060057629275,0.0021666877853552856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022313884404612 47.53028333195213, 10.022594599999998 47.53041069624181)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_37_LVCableDist_mvgd_33532_lvgd_1172110001_building_444677,BranchTee_mvgd_33532_lvgd_1172110001_37,BranchTee_mvgd_33532_lvgd_1172110001_building_444677,0.01988052820591189,0.01725629848273152,0.0016925717288879094,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022920018948575 47.53016320000133, 10.022656499999995 47.53017199624183)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_37_LVCableDist_mvgd_33532_lvgd_1172110001_building_444679,BranchTee_mvgd_33532_lvgd_1172110001_37,BranchTee_mvgd_33532_lvgd_1172110001_building_444679,0.04752216663017413,0.04124924063499115,0.00404590234729348,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022028099996175 47.530208296275156, 10.022656499999995 47.53017199624183)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_38_LVCableDist_mvgd_33532_lvgd_1172110001_44,BranchTee_mvgd_33532_lvgd_1172110001_38,BranchTee_mvgd_33532_lvgd_1172110001_44,0.03408649719595627,0.010907679102706007,0.002794941707530801,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023773699999994 47.53036299624181, 10.023925699999994 47.53036119624183, 10.024173499999998 47.530246096241804)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_38_LVCableDist_mvgd_33532_lvgd_1172110001_building_444680,BranchTee_mvgd_33532_lvgd_1172110001_38,BranchTee_mvgd_33532_lvgd_1172110001_building_444680,0.04214533009190794,0.03658214651977609,0.0035881337497360665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02361737482702 47.529998788886545, 10.023773699999994 47.53036299624181)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_38_LVCableDist_mvgd_33532_lvgd_1172110001_building_444699,BranchTee_mvgd_33532_lvgd_1172110001_38,BranchTee_mvgd_33532_lvgd_1172110001_building_444699,0.017949566959711685,0.015580224121029742,0.0015281751705547794,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023839850000005 47.53020779629402, 10.023773699999994 47.53036299624181)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_39_LVCableDist_mvgd_33532_lvgd_1172110001_41,BranchTee_mvgd_33532_lvgd_1172110001_39,BranchTee_mvgd_33532_lvgd_1172110001_41,0.0879333425234239,0.02813866960749565,0.00721014438909449,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024199900000001 47.530313296241815, 10.023779701908213 47.53054824706426, 10.023359499999996 47.5307831962419, 10.023284700000001 47.53079769624187)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_39_LVCableDist_mvgd_33532_lvgd_1172110001_building_444714,BranchTee_mvgd_33532_lvgd_1172110001_39,BranchTee_mvgd_33532_lvgd_1172110001_building_444714,0.026511060388067654,0.023011600416842724,0.0022570764142141784,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023253432621287 47.53103536268353, 10.023284700000001 47.53079769624187)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_3_LVCableDist_mvgd_33532_lvgd_1172110001_6,BranchTee_mvgd_33532_lvgd_1172110001_3,BranchTee_mvgd_33532_lvgd_1172110001_6,0.05588938035169597,0.014140013228979082,0.004494890668200289,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0238945 47.53277949624208, 10.024040699999995 47.532578196242056, 10.024205299999998 47.532322896242036)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_3_LVCableDist_mvgd_33532_lvgd_1172110001_8,BranchTee_mvgd_33532_lvgd_1172110001_3,BranchTee_mvgd_33532_lvgd_1172110001_8,0.012187075311220682,0.0030833300537388324,0.0009801427524217968,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024205299999998 47.532322896242036, 10.024242799999993 47.53221619624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_3_LVCableDist_mvgd_33532_lvgd_1172110001_building_444748,BranchTee_mvgd_33532_lvgd_1172110001_3,BranchTee_mvgd_33532_lvgd_1172110001_building_444748,0.02150437838945776,0.018665800442049334,0.001830821723261895,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023920531161512 47.53233576442544, 10.024205299999998 47.532322896242036)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_3_LVCableDist_mvgd_33532_lvgd_1172110001_building_444789,BranchTee_mvgd_33532_lvgd_1172110001_3,BranchTee_mvgd_33532_lvgd_1172110001_building_444789,0.02908943345295106,0.02524962823716152,0.0024765917767310543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024434744391764 47.53253345677438, 10.024205299999998 47.532322896242036)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_40_LVCableDist_mvgd_33532_lvgd_1172110001_43,BranchTee_mvgd_33532_lvgd_1172110001_40,BranchTee_mvgd_33532_lvgd_1172110001_43,0.09720849583648722,0.03110671866767591,0.007970665855685621,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024279300000002 47.53165939624193, 10.024456900000004 47.5312387962419, 10.024472000000001 47.531082396241864, 10.024457499999999 47.53094269624185, 10.024401999999995 47.5308071962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_40_LVCableDist_mvgd_33532_lvgd_1172110001_building_444739,BranchTee_mvgd_33532_lvgd_1172110001_40,BranchTee_mvgd_33532_lvgd_1172110001_building_444739,0.026248095219866343,0.022783346650843986,0.0022346883063746976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023968693346138 47.53155244230253, 10.024279300000002 47.53165939624193)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_40_LVStation_mvgd_33532_lvgd_1172110001,BusBar_mvgd_33532_lvgd_1172110001_LV,BranchTee_mvgd_33532_lvgd_1172110001_40,0.01895555896017922,0.006065778867257351,0.0015542718286010667,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024231499999999 47.53182689624196, 10.024279300000002 47.53165939624193)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_41_LVCableDist_mvgd_33532_lvgd_1172110001_43,BranchTee_mvgd_33532_lvgd_1172110001_41,BranchTee_mvgd_33532_lvgd_1172110001_43,0.0569492471261258,0.018223759080360256,0.004669585880011459,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024401999999995 47.5308071962419, 10.024199900000001 47.530313296241815)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_41_LVCableDist_mvgd_33532_lvgd_1172110001_44,BranchTee_mvgd_33532_lvgd_1172110001_41,BranchTee_mvgd_33532_lvgd_1172110001_44,0.007726804824156251,0.0024725775437300004,0.000633563752380707,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024173499999998 47.530246096241804, 10.024199900000001 47.530313296241815)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_41_LVCableDist_mvgd_33532_lvgd_1172110001_building_444707,BranchTee_mvgd_33532_lvgd_1172110001_41,BranchTee_mvgd_33532_lvgd_1172110001_building_444707,0.024194746979380042,0.021001040378101875,0.0020598720668154615,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024508579159939 47.53025332867372, 10.024199900000001 47.530313296241815)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_41_LVCableDist_mvgd_33532_lvgd_1172110001_building_444719,BranchTee_mvgd_33532_lvgd_1172110001_41,BranchTee_mvgd_33532_lvgd_1172110001_building_444719,0.023682310824759203,0.02055624579589099,0.0020162447074622354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024471849987346 47.53042014626693, 10.024199900000001 47.530313296241815)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_41_LVCableDist_mvgd_33532_lvgd_1172110001_building_444721,BranchTee_mvgd_33532_lvgd_1172110001_41,BranchTee_mvgd_33532_lvgd_1172110001_building_444721,0.03735686707728709,0.03242576062308519,0.003180457603537773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024693000000003 47.53034814624642, 10.024199900000001 47.530313296241815)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_42_LVCableDist_mvgd_33532_lvgd_1172110001_43,BranchTee_mvgd_33532_lvgd_1172110001_42,BranchTee_mvgd_33532_lvgd_1172110001_43,0.038226835258426635,0.012232587282696524,0.0031344310797461567,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024401999999995 47.5308071962419, 10.024146 47.53086109624187, 10.023978400000006 47.530860196241875, 10.023910000000003 47.5308746962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_42_LVCableDist_mvgd_33532_lvgd_1172110001_building_444713,BranchTee_mvgd_33532_lvgd_1172110001_42,BranchTee_mvgd_33532_lvgd_1172110001_building_444713,0.014480615274926079,0.012569174058635836,0.0012328384727702507,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023718119901742 47.53088194320358, 10.023910000000003 47.5308746962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_42_LVCableDist_mvgd_33532_lvgd_1172110001_building_444718,BranchTee_mvgd_33532_lvgd_1172110001_42,BranchTee_mvgd_33532_lvgd_1172110001_building_444718,0.00771097957838608,0.006693130274039117,0.0006564909091563869,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02384589999854 47.5308205962468, 10.023910000000003 47.5308746962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_43_LVCableDist_mvgd_33532_lvgd_1172110001_building_444722,BranchTee_mvgd_33532_lvgd_1172110001_43,BranchTee_mvgd_33532_lvgd_1172110001_building_444722,0.04792123471273122,0.0415956317306507,0.004079877870853099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024839099996356 47.53049389625418, 10.024401999999995 47.5308071962419)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_44_LVCableDist_mvgd_33532_lvgd_1172110001_45,BranchTee_mvgd_33532_lvgd_1172110001_44,BranchTee_mvgd_33532_lvgd_1172110001_45,0.023268730068859697,0.007445993622035103,0.0019079327446543017,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024173499999998 47.530246096241804, 10.024169200000003 47.53014369624181, 10.024182600000003 47.53003709624181)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_44_LVCableDist_mvgd_33532_lvgd_1172110001_building_444700,BranchTee_mvgd_33532_lvgd_1172110001_44,BranchTee_mvgd_33532_lvgd_1172110001_building_444700,0.012752921487287119,0.011069535850965219,0.0010857475287648802,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024334011198608 47.530209696523535, 10.024173499999998 47.530246096241804)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_45_LVCableDist_mvgd_33532_lvgd_1172110001_46,BranchTee_mvgd_33532_lvgd_1172110001_45,BranchTee_mvgd_33532_lvgd_1172110001_46,0.014639018147194097,0.004684485807102111,0.001200334611728508,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024182600000003 47.53003709624181, 10.024203400000001 47.52990609624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_45_LVCableDist_mvgd_33532_lvgd_1172110001_building_444698,BranchTee_mvgd_33532_lvgd_1172110001_45,BranchTee_mvgd_33532_lvgd_1172110001_building_444698,0.016224629559294292,0.014082978457467445,0.001381318897531828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023974247567843 47.53000025216932, 10.024182600000003 47.53003709624181)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_46_LVCableDist_mvgd_33532_lvgd_1172110001_building_444692,BranchTee_mvgd_33532_lvgd_1172110001_46,BranchTee_mvgd_33532_lvgd_1172110001_building_444692,0.03845644190409426,0.03338019157275381,0.0032740722825027515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023711000017734 47.52981508846211, 10.024203400000001 47.52990609624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_46_LVCableDist_mvgd_33532_lvgd_1172110001_building_444693,BranchTee_mvgd_33532_lvgd_1172110001_46,BranchTee_mvgd_33532_lvgd_1172110001_building_444693,0.016280305429846664,0.014131305113106904,0.0013860589830819766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024095249999997 47.52977924626325, 10.024203400000001 47.52990609624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_47_LVCableDist_mvgd_33532_lvgd_1172110001_48,BranchTee_mvgd_33532_lvgd_1172110001_47,BranchTee_mvgd_33532_lvgd_1172110001_48,0.00683572870982215,0.002187433187143088,0.0005604994600241337,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023149500000004 47.53056679624188, 10.023164299999998 47.53062749624187)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_47_LVCableDist_mvgd_33532_lvgd_1172110001_building_444704,BranchTee_mvgd_33532_lvgd_1172110001_47,BranchTee_mvgd_33532_lvgd_1172110001_building_444704,0.01530678008441267,0.013286285113270197,0.0013031757990955766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023060559499 47.53074594496927, 10.023164299999998 47.53062749624187)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_48_LVCableDist_mvgd_33532_lvgd_1172110001_building_444703,BranchTee_mvgd_33532_lvgd_1172110001_48,BranchTee_mvgd_33532_lvgd_1172110001_building_444703,0.020226860989789854,0.017556915339137592,0.0017220575188381267,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02340487560998 47.53051070075466, 10.023149500000004 47.53056679624188)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_49_LVCableDist_mvgd_33532_lvgd_1172110001_50,BranchTee_mvgd_33532_lvgd_1172110001_49,BranchTee_mvgd_33532_lvgd_1172110001_50,0.011560541918570621,0.0036993734139425987,0.0009479132039916462,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023494099999992 47.53229669624199, 10.023615300000007 47.532360496242035)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_49_LVCableDist_mvgd_33532_lvgd_1172110001_building_444788,BranchTee_mvgd_33532_lvgd_1172110001_49,BranchTee_mvgd_33532_lvgd_1172110001_building_444788,0.024341576807485034,0.021128488668897008,0.002072372741517559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02368100187096 47.53257500104364, 10.023615300000007 47.532360496242035)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_4_LVCableDist_mvgd_33532_lvgd_1172110001_9,BranchTee_mvgd_33532_lvgd_1172110001_4,BranchTee_mvgd_33532_lvgd_1172110001_9,0.03815154083157217,0.00965233983038776,0.003068328970229713,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025568799999995 47.532395296242015, 10.025712999999996 47.53238219624202, 10.026011699999996 47.532519496242045)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_4_LVCableDist_mvgd_33532_lvgd_1172110001_building_444822,BranchTee_mvgd_33532_lvgd_1172110001_4,BranchTee_mvgd_33532_lvgd_1172110001_building_444822,0.03007627962932955,0.02610621071825805,0.0025606090584450614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02580835806804 47.532752439202774, 10.026011699999996 47.532519496242045)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_4_LVCableDist_mvgd_33532_lvgd_1172110001_building_444827,BranchTee_mvgd_33532_lvgd_1172110001_4,BranchTee_mvgd_33532_lvgd_1172110001_building_444827,0.02259123587189787,0.019609192736807352,0.001923353683633118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02608086790615 47.532717341387986, 10.026011699999996 47.532519496242045)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_4_LVCableDist_mvgd_33532_lvgd_1172110001_building_444851,BranchTee_mvgd_33532_lvgd_1172110001_4,BranchTee_mvgd_33532_lvgd_1172110001_building_444851,0.031963873404260844,0.027744642114898414,0.0027213134333984113,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02566063774941 47.53268100349012, 10.026011699999996 47.532519496242045)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_50_LVCableDist_mvgd_33532_lvgd_1172110001_51,BranchTee_mvgd_33532_lvgd_1172110001_50,BranchTee_mvgd_33532_lvgd_1172110001_51,0.045006796978912994,0.014402175033252158,0.003690357893789626,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023212400000004 47.531939496241954, 10.023494099999992 47.53229669624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_50_LVCableDist_mvgd_33532_lvgd_1172110001_building_444736,BranchTee_mvgd_33532_lvgd_1172110001_50,BranchTee_mvgd_33532_lvgd_1172110001_building_444736,0.027437155151929748,0.02381545067187502,0.0023359214931451284,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023149985419394 47.532215938451266, 10.023494099999992 47.53229669624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_50_LVCableDist_mvgd_33532_lvgd_1172110001_building_444790,BranchTee_mvgd_33532_lvgd_1172110001_50,BranchTee_mvgd_33532_lvgd_1172110001_building_444790,0.030153758330371535,0.02617346223076249,0.0025672053750829477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023292889402807 47.532531295423325, 10.023494099999992 47.53229669624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_51_LVCableDist_mvgd_33532_lvgd_1172110001_53,BranchTee_mvgd_33532_lvgd_1172110001_51,BranchTee_mvgd_33532_lvgd_1172110001_53,0.01593095791306279,0.0050979065321800935,0.0013062679469869152,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023212400000004 47.531939496241954, 10.023000999999999 47.53193709624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_51_LVCableDist_mvgd_33532_lvgd_1172110001_54,BranchTee_mvgd_33532_lvgd_1172110001_51,BranchTee_mvgd_33532_lvgd_1172110001_54,0.02120697412524563,0.006786231720078602,0.0017388778944469273,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023212400000004 47.531939496241954, 10.023491000000002 47.53191239624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_52_LVCableDist_mvgd_33532_lvgd_1172110001_53,BranchTee_mvgd_33532_lvgd_1172110001_52,BranchTee_mvgd_33532_lvgd_1172110001_53,0.03976214494989119,0.012723886383965183,0.0032603196703508727,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022481800000001 47.53187309624199, 10.023000999999999 47.53193709624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_52_LVCableDist_mvgd_33532_lvgd_1172110001_building_444727,BranchTee_mvgd_33532_lvgd_1172110001_52,BranchTee_mvgd_33532_lvgd_1172110001_building_444727,0.02098734554785543,0.01821701593553851,0.0017868030150294623,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022363149991198 47.53204399629724, 10.022481800000001 47.53187309624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_53_LVCableDist_mvgd_33532_lvgd_1172110001_building_444726,BranchTee_mvgd_33532_lvgd_1172110001_53,BranchTee_mvgd_33532_lvgd_1172110001_building_444726,0.021195394270293034,0.018397602226614355,0.0018045156925892277,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022955269117233 47.53174886725565, 10.023000999999999 47.53193709624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_53_LVCableDist_mvgd_33532_lvgd_1172110001_building_444734,BranchTee_mvgd_33532_lvgd_1172110001_53,BranchTee_mvgd_33532_lvgd_1172110001_building_444734,0.028484604810994095,0.024724636975942873,0.0024250983833164065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022760072021288 47.53213466016088, 10.023000999999999 47.53193709624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_54_LVCableDist_mvgd_33532_lvgd_1172110001_55,BranchTee_mvgd_33532_lvgd_1172110001_54,BranchTee_mvgd_33532_lvgd_1172110001_55,0.032109097513432217,0.01027491120429831,0.0026328036968876808,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023491000000002 47.53191239624197, 10.023905600000003 47.53184559624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_54_LVCableDist_mvgd_33532_lvgd_1172110001_building_444738,BranchTee_mvgd_33532_lvgd_1172110001_54,BranchTee_mvgd_33532_lvgd_1172110001_building_444738,0.019717614508590317,0.017114889393456394,0.0016787017192242276,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02358013246757 47.53207925049404, 10.023491000000002 47.53191239624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_55_LVCableDist_mvgd_33532_lvgd_1172110001_building_444746,BranchTee_mvgd_33532_lvgd_1172110001_55,BranchTee_mvgd_33532_lvgd_1172110001_building_444746,0.01877444523597758,0.016296218464828538,0.0015984029650942756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023907084979776 47.53201457080159, 10.023905600000003 47.53184559624199)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_55_LVStation_mvgd_33532_lvgd_1172110001,BusBar_mvgd_33532_lvgd_1172110001_LV,BranchTee_mvgd_33532_lvgd_1172110001_55,0.024733854684024018,0.007914833498887686,0.0020280664700445,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023905600000003 47.53184559624199, 10.0240961 47.531825296241976, 10.024231499999999 47.53182689624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_56_LVCableDist_mvgd_33532_lvgd_1172110001_64,BranchTee_mvgd_33532_lvgd_1172110001_56,BranchTee_mvgd_33532_lvgd_1172110001_64,0.05756017292886484,0.018419255337236748,0.004719679088370945,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022056 47.53181259624192, 10.022154699999998 47.531741796241896, 10.022746651437075 47.53161619785081)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_56_LVCableDist_mvgd_33532_lvgd_1172110001_65,BranchTee_mvgd_33532_lvgd_1172110001_56,BranchTee_mvgd_33532_lvgd_1172110001_65,0.046734924737245796,0.014955175915918655,0.0038320567113577465,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023338599999995 47.53149059624197, 10.022746651437075 47.53161619785081)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_56_LVCableDist_mvgd_33532_lvgd_1172110001_building_444728,BranchTee_mvgd_33532_lvgd_1172110001_56,BranchTee_mvgd_33532_lvgd_1172110001_building_444728,0.023740847960776072,0.020607056029953632,0.002021228393030648,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022514640290195 47.531471628086614, 10.022746651437075 47.53161619785081)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_57_LVCableDist_mvgd_33532_lvgd_1172110001_60,BranchTee_mvgd_33532_lvgd_1172110001_57,BranchTee_mvgd_33532_lvgd_1172110001_60,0.022090285514293193,0.0070688913645738215,0.0018113055137412581,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020552900000006 47.531431296241905, 10.020682199999998 47.53137029624191, 10.020810600000003 47.531340596241954)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_57_LVCableDist_mvgd_33532_lvgd_1172110001_61,BranchTee_mvgd_33532_lvgd_1172110001_57,BranchTee_mvgd_33532_lvgd_1172110001_61,0.03904070341675169,0.012493025093360541,0.0032011646618756765,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020810600000003 47.531340596241954, 10.021188699999998 47.53133329624191, 10.021325800000003 47.53131449624192)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_57_LVCableDist_mvgd_33532_lvgd_1172110001_building_444715,BranchTee_mvgd_33532_lvgd_1172110001_57,BranchTee_mvgd_33532_lvgd_1172110001_building_444715,0.016972000520480444,0.014731696451777026,0.0014449479393155013,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020849999999394 47.53119019626213, 10.020810600000003 47.531340596241954)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_58_LVCableDist_mvgd_33532_lvgd_1172110001_59,BranchTee_mvgd_33532_lvgd_1172110001_58,BranchTee_mvgd_33532_lvgd_1172110001_59,0.13841387045360162,0.04429243854515252,0.011349323962728267,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014662900000001 47.5287874962417, 10.014705799999994 47.52882909624169, 10.014801399999998 47.52886679624174, 10.014978500000003 47.528924696241695, 10.0152013 47.52898359624173, 10.015249599999994 47.5290287962417, 10.015440599999996 47.529215096241764, 10.015546 47.52932439624176, 10.015644100000006 47.529400596241764, 10.015768800000002 47.52947969624173, 10.015835999999995 47.52953719624174, 10.015878899999995 47.52960859624174, 10.015860399999998 47.52965049624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_58_LVCableDist_mvgd_33532_lvgd_1172110001_63,BranchTee_mvgd_33532_lvgd_1172110001_58,BranchTee_mvgd_33532_lvgd_1172110001_63,0.12752419866267856,0.04080774357205714,0.010456419136080865,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015117599999996 47.52975139624182, 10.014900800000001 47.52960369624173, 10.014839999999998 47.52954579624175, 10.0148293 47.52947969624173, 10.014856199999999 47.52940429624171, 10.015204099999995 47.52948929624178, 10.0155562 47.52957509624177, 10.015746000000005 47.529620696241736, 10.015860399999998 47.52965049624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_58_LVCableDist_mvgd_33532_lvgd_1172110001_67,BranchTee_mvgd_33532_lvgd_1172110001_58,BranchTee_mvgd_33532_lvgd_1172110001_67,0.01912457375318935,0.006119863601020592,0.0015681302925980576,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015860399999998 47.52965049624177, 10.016088699999994 47.5297256962418)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_58_LVCableDist_mvgd_33532_lvgd_1172110001_building_431669,BranchTee_mvgd_33532_lvgd_1172110001_58,BranchTee_mvgd_33532_lvgd_1172110001_building_431669,0.0224056189250259,0.01944807722692248,0.0019075507837592323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01575770002679 47.529839746314465, 10.015860399999998 47.52965049624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_59_LVCableDist_mvgd_33532_lvgd_1172110001_building_431662,BranchTee_mvgd_33532_lvgd_1172110001_59,BranchTee_mvgd_33532_lvgd_1172110001_building_431662,0.01587223220039049,0.013777097549938944,0.001351316786881771,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014746584009893 47.528656397278574, 10.014662900000001 47.5287874962417)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_5_LVCableDist_mvgd_33532_lvgd_1172110001_building_444830,BranchTee_mvgd_33532_lvgd_1172110001_5,BranchTee_mvgd_33532_lvgd_1172110001_building_444830,0.025094933255120626,0.021782402065444705,0.002136511370624217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026376283423089 47.532860176047116, 10.026534700000001 47.53266149624205)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_60_LVCableDist_mvgd_33532_lvgd_1172110001_66,BranchTee_mvgd_33532_lvgd_1172110001_60,BranchTee_mvgd_33532_lvgd_1172110001_66,0.25242677039979183,0.08077656652793339,0.02069787648263771,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020552900000006 47.531431296241905, 10.019956828250765 47.53121076618773, 10.019360761584101 47.530990232854364, 10.018764699999997 47.530769696241876, 10.018221300000006 47.53054779624186, 10.017622799999994 47.530330696241876)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_60_LVCableDist_mvgd_33532_lvgd_1172110001_68,BranchTee_mvgd_33532_lvgd_1172110001_60,BranchTee_mvgd_33532_lvgd_1172110001_68,0.09960839410294832,0.03187468611294346,0.008167446877807153,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020552900000006 47.531431296241905, 10.020743499999993 47.531536696241915, 10.020876299999998 47.53161259624196, 10.021056299999998 47.53167059624192, 10.021742700000006 47.53177379624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_61_LVCableDist_mvgd_33532_lvgd_1172110001_62,BranchTee_mvgd_33532_lvgd_1172110001_61,BranchTee_mvgd_33532_lvgd_1172110001_62,0.01759451270589545,0.005630244065886544,0.0014426720675547024,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021325800000003 47.53131449624192, 10.021521199999997 47.53122779624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_61_LVCableDist_mvgd_33532_lvgd_1172110001_building_444720,BranchTee_mvgd_33532_lvgd_1172110001_61,BranchTee_mvgd_33532_lvgd_1172110001_building_444720,0.014839889530891541,0.012881024112813857,0.001263426062912023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021336117077402 47.531181114543585, 10.021325800000003 47.53131449624192)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_62_LVCableDist_mvgd_33532_lvgd_1172110001_building_444684,BranchTee_mvgd_33532_lvgd_1172110001_62,BranchTee_mvgd_33532_lvgd_1172110001_building_444684,0.029145708719347525,0.02529847516839365,0.0024813828931416317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021503468793822 47.53096574887492, 10.021521199999997 47.53122779624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_62_LVCableDist_mvgd_33532_lvgd_1172110001_building_444725,BranchTee_mvgd_33532_lvgd_1172110001_62,BranchTee_mvgd_33532_lvgd_1172110001_building_444725,0.021680946330716176,0.01881906141506164,0.0018458542164887636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021793588957202 47.531290675889196, 10.021521199999997 47.53122779624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_63_LVCableDist_mvgd_33532_lvgd_1172110001_building_431664,BranchTee_mvgd_33532_lvgd_1172110001_63,BranchTee_mvgd_33532_lvgd_1172110001_building_431664,0.01934475560833606,0.0167912478680357,0.001646957571035704,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015370842357775 47.52977997859128, 10.015117599999996 47.52975139624182)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_64_LVCableDist_mvgd_33532_lvgd_1172110001_68,BranchTee_mvgd_33532_lvgd_1172110001_64,BranchTee_mvgd_33532_lvgd_1172110001_68,0.02399725078887139,0.007679120252438845,0.0019676682150798932,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021742700000006 47.53177379624194, 10.022056 47.53181259624192)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_64_LVCableDist_mvgd_33532_lvgd_1172110001_building_444742,BranchTee_mvgd_33532_lvgd_1172110001_64,BranchTee_mvgd_33532_lvgd_1172110001_building_444742,0.02026358131746648,0.017588788583560905,0.0017251837832842835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021945053749237 47.53197873388065, 10.022056 47.53181259624192)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_64_LVStation_mvgd_33532_lvgd_1172110001,BusBar_mvgd_33532_lvgd_1172110001_LV,BranchTee_mvgd_33532_lvgd_1172110001_64,0.16652324280515174,0.05328743769764856,0.013654167922088829,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022056 47.53181259624192, 10.022481800000001 47.53187309624199, 10.023000999999999 47.53193709624198, 10.023212400000004 47.531939496241954, 10.023491000000002 47.53191239624197, 10.023905600000003 47.53184559624199, 10.0240961 47.531825296241976, 10.024231499999999 47.53182689624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_65_LVCableDist_mvgd_33532_lvgd_1172110001_building_444717,BranchTee_mvgd_33532_lvgd_1172110001_65,BranchTee_mvgd_33532_lvgd_1172110001_building_444717,0.028154808435680443,0.024438373722170625,0.00239702045624304,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023003349992196 47.53137869627116, 10.023338599999995 47.53149059624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_65_LVCableDist_mvgd_33532_lvgd_1172110001_building_444724,BranchTee_mvgd_33532_lvgd_1172110001_65,BranchTee_mvgd_33532_lvgd_1172110001_building_444724,0.009061479787443325,0.007865364455500805,0.000771468662766966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023364237138502 47.531410913883064, 10.023338599999995 47.53149059624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_65_LVCableDist_mvgd_33532_lvgd_1172110001_building_444735,BranchTee_mvgd_33532_lvgd_1172110001_65,BranchTee_mvgd_33532_lvgd_1172110001_building_444735,0.02322421964360339,0.02015862265064774,0.001977244124859675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023498092499572 47.53166946129472, 10.023338599999995 47.53149059624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_66_LVCableDist_mvgd_33532_lvgd_1172110001_67,BranchTee_mvgd_33532_lvgd_1172110001_66,BranchTee_mvgd_33532_lvgd_1172110001_67,0.13376656914131438,0.0428053021252206,0.010968265850757901,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016088699999994 47.5297256962418, 10.016498000000002 47.529890896241774, 10.017002499999997 47.530103296241855, 10.017622799999994 47.530330696241876)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_66_LVCableDist_mvgd_33532_lvgd_1172110001_building_431671,BranchTee_mvgd_33532_lvgd_1172110001_66,BranchTee_mvgd_33532_lvgd_1172110001_building_431671,0.02835022233088269,0.024607992983206175,0.00241365744048337,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017291455678388 47.53045157764012, 10.017622799999994 47.530330696241876)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_66_LVCableDist_mvgd_33532_lvgd_1172110001_building_431677,BranchTee_mvgd_33532_lvgd_1172110001_66,BranchTee_mvgd_33532_lvgd_1172110001_building_431677,0.02268335991125221,0.019689156402966916,0.001931196862795518,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017458737006324 47.53050187247534, 10.017622799999994 47.530330696241876)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_67_LVCableDist_mvgd_33532_lvgd_1172110001_building_431670,BranchTee_mvgd_33532_lvgd_1172110001_67,BranchTee_mvgd_33532_lvgd_1172110001_building_431670,0.03867619619929823,0.03357093830099086,0.003292781539294697,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01582730655904 47.53002527699182, 10.016088699999994 47.5297256962418)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_68_LVCableDist_mvgd_33532_lvgd_1172110001_building_444737,BranchTee_mvgd_33532_lvgd_1172110001_68,BranchTee_mvgd_33532_lvgd_1172110001_building_444737,0.023177698000978443,0.020118241864849288,0.0019732834042856112,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021501829636671 47.5319035434206, 10.021742700000006 47.53177379624194)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_69_LVCableDist_mvgd_33532_lvgd_1172110001_70,BranchTee_mvgd_33532_lvgd_1172110001_69,BranchTee_mvgd_33532_lvgd_1172110001_70,0.009229383791944027,0.008011105131407415,0.0007857635330159589,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024545800000004 47.531833496241966, 10.024650599999996 47.53187649624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_69_LVCableDist_mvgd_33532_lvgd_1172110001_building_444749,BranchTee_mvgd_33532_lvgd_1172110001_69,BranchTee_mvgd_33532_lvgd_1172110001_building_444749,0.015458737005031547,0.013418183720367382,0.0013161129798980409,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024846706316426 47.53183561394735, 10.024650599999996 47.53187649624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_69_LVCableDist_mvgd_33532_lvgd_1172110001_building_444751,BranchTee_mvgd_33532_lvgd_1172110001_69,BranchTee_mvgd_33532_lvgd_1172110001_building_444751,0.029106778390043754,0.02526468364255798,0.0024780684754313284,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024889778260391 47.5320822125205, 10.024650599999996 47.53187649624198)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_6_LVCableDist_mvgd_33532_lvgd_1172110001_7,BranchTee_mvgd_33532_lvgd_1172110001_6,BranchTee_mvgd_33532_lvgd_1172110001_7,0.08945248735764665,0.0226314793014846,0.007194195894479783,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0238945 47.53277949624208, 10.0248298 47.532682496242046, 10.025053999999999 47.532622496242034)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_70_LVCableDist_mvgd_33532_lvgd_1172110001_building_444745,BranchTee_mvgd_33532_lvgd_1172110001_70,BranchTee_mvgd_33532_lvgd_1172110001_building_444745,0.020216719197170774,0.017548112263144233,0.001721194075407977,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024601532891785 47.53165550606462, 10.024545800000004 47.531833496241966)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_70_LVStation_mvgd_33532_lvgd_1172110001,BusBar_mvgd_33532_lvgd_1172110001_LV,BranchTee_mvgd_33532_lvgd_1172110001_70,0.023693515924539606,0.02056597182250038,0.0020171986778452777,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024231499999999 47.53182689624196, 10.024545800000004 47.531833496241966)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_7_LVCableDist_mvgd_33532_lvgd_1172110001_9,BranchTee_mvgd_33532_lvgd_1172110001_7,BranchTee_mvgd_33532_lvgd_1172110001_9,0.046279586245214006,0.011708735320039144,0.003722025168873973,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025053999999999 47.532622496242034, 10.025568799999995 47.532395296242015)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_7_LVCableDist_mvgd_33532_lvgd_1172110001_building_444796,BranchTee_mvgd_33532_lvgd_1172110001_7,BranchTee_mvgd_33532_lvgd_1172110001_building_444796,0.03046247606965281,0.02644142922845864,0.002593488726928614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024876792416991 47.532376063817566, 10.025053999999999 47.532622496242034)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_7_LVCableDist_mvgd_33532_lvgd_1172110001_building_444855,BranchTee_mvgd_33532_lvgd_1172110001_7,BranchTee_mvgd_33532_lvgd_1172110001_building_444855,0.021657096210992228,0.018798359511141255,0.0018438236850080486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025128888734445 47.53281068586293, 10.025053999999999 47.532622496242034)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_8_LVCableDist_mvgd_33532_lvgd_1172110001_building_444750,BranchTee_mvgd_33532_lvgd_1172110001_8,BranchTee_mvgd_33532_lvgd_1172110001_building_444750,0.024911338736844195,0.02162304202358076,0.002120880654579103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0245324925101 47.532108144954805, 10.024242799999993 47.53221619624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_8_LVStation_mvgd_33532_lvgd_1172110001,BusBar_mvgd_33532_lvgd_1172110001_LV,BranchTee_mvgd_33532_lvgd_1172110001_8,0.04326200913633915,0.010945288311493806,0.003479337218105794,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024231499999999 47.53182689624196, 10.024242799999993 47.53221619624197)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110001_9_LVCableDist_mvgd_33532_lvgd_1172110001_building_444848,BranchTee_mvgd_33532_lvgd_1172110001_9,BranchTee_mvgd_33532_lvgd_1172110001_building_444848,0.024180253974555015,0.020988460449913753,0.002058638173531571,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025512962372984 47.53260960894123, 10.025568799999995 47.532395296242015)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_10_LVCableDist_mvgd_33532_lvgd_1172110002_15,BranchTee_mvgd_33532_lvgd_1172110002_10,BranchTee_mvgd_33532_lvgd_1172110002_15,0.012920088493739604,0.00326878238891612,0.0010390951704489562,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024225299999996 47.52951849624174, 10.024218699999997 47.5296346962418)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_10_LVCableDist_mvgd_33532_lvgd_1172110002_8,BranchTee_mvgd_33532_lvgd_1172110002_8,BranchTee_mvgd_33532_lvgd_1172110002_10,0.022248494468338226,0.005628869100489571,0.0017893300934442118,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0245203 47.52951009624173, 10.024225299999996 47.52951849624174)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_10_LVStation_mvgd_33532_lvgd_1172110002,BusBar_mvgd_33532_lvgd_1172110002_LV,BranchTee_mvgd_33532_lvgd_1172110002_10,0.040099320578532036,0.010145128106368605,0.0032249787121525313,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024225299999996 47.52951849624174, 10.024237700000002 47.52932239624177, 10.024302799999996 47.52916379624174)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_11_LVCableDist_mvgd_33532_lvgd_1172110002_23,BranchTee_mvgd_33532_lvgd_1172110002_11,BranchTee_mvgd_33532_lvgd_1172110002_23,0.07266232744981063,0.01838356884480209,0.0058438511131919625,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.026295300000003 47.52927039624172, 10.0253432 47.52937409624175)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_11_LVCableDist_mvgd_33532_lvgd_1172110002_3,BranchTee_mvgd_33532_lvgd_1172110002_3,BranchTee_mvgd_33532_lvgd_1172110002_11,0.032839181785382955,0.008308312991701887,0.002641083705519586,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0253432 47.52937409624175, 10.024922799999993 47.52945199624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_11_LVCableDist_mvgd_33532_lvgd_1172110002_building_444758,BranchTee_mvgd_33532_lvgd_1172110002_11,BranchTee_mvgd_33532_lvgd_1172110002_building_444758,0.015928177321255677,0.013825657914849927,0.0013560797956391278,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025312599899186 47.52923224633825, 10.0253432 47.52937409624175)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_12_LVCableDist_mvgd_33532_lvgd_1172110002_18,BranchTee_mvgd_33532_lvgd_1172110002_12,BranchTee_mvgd_33532_lvgd_1172110002_18,0.37440783108854087,0.09472518126540085,0.03011166442481275,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0260792 47.5299344962418, 10.026217299999997 47.52996889624179, 10.0263942 47.52997909624179, 10.026610399999997 47.52997439624176, 10.026813599999999 47.52992669624181, 10.027162600000002 47.52974859624179, 10.027485699999998 47.529631996241775, 10.027788099999999 47.52955739624174, 10.028031999999994 47.52950699624177, 10.028476099999992 47.529459096241744, 10.028716500000003 47.52943939624176, 10.029114500000002 47.52943549624177, 10.029408899999993 47.52945399624176, 10.029665899999994 47.52952879624177, 10.029828099999994 47.529631996241775, 10.029863500000003 47.52974839624177, 10.029868999999998 47.52987829624179, 10.029846100000004 47.530020296241794, 10.029794500000003 47.530138496241804, 10.029700799999997 47.53024779624184)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_12_LVCableDist_mvgd_33532_lvgd_1172110002_2,BranchTee_mvgd_33532_lvgd_1172110002_2,BranchTee_mvgd_33532_lvgd_1172110002_12,0.02947307712799884,0.007456688513383707,0.002370365506150567,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025788700000001 47.52975949624179, 10.025864599999998 47.52982249624184, 10.0259432 47.52986959624179, 10.0260792 47.5299344962418)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_12_LVCableDist_mvgd_33532_lvgd_1172110002_building_444807,BranchTee_mvgd_33532_lvgd_1172110002_12,BranchTee_mvgd_33532_lvgd_1172110002_building_444807,0.015105001211900372,0.013111141051929523,0.001285996918757798,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026195909175113 47.529823961557156, 10.0260792 47.5299344962418)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_13_LVCableDist_mvgd_33532_lvgd_1172110002_18,BranchTee_mvgd_33532_lvgd_1172110002_13,BranchTee_mvgd_33532_lvgd_1172110002_18,0.042254107084113,0.01069028909228059,0.0033982769254258132,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.029700799999997 47.53024779624184, 10.029571200000001 47.53030659624181, 10.029204200000004 47.53042249624183)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_13_LVCableDist_mvgd_33532_lvgd_1172110002_building_444768,BranchTee_mvgd_33532_lvgd_1172110002_13,BranchTee_mvgd_33532_lvgd_1172110002_building_444768,0.019443047439514475,0.016876565177498564,0.0016553258584831036,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02943061765898 47.530506426426506, 10.029204200000004 47.53042249624183)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_14_LVCableDist_mvgd_33532_lvgd_1172110002_building_444804,BranchTee_mvgd_33532_lvgd_1172110002_14,BranchTee_mvgd_33532_lvgd_1172110002_building_444804,0.010474605549695988,0.009091957617136118,0.0008917781781771641,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025648731815034 47.53000494623114, 10.0257714 47.52996059624182)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_15_LVCableDist_mvgd_33532_lvgd_1172110002_16,BranchTee_mvgd_33532_lvgd_1172110002_15,BranchTee_mvgd_33532_lvgd_1172110002_16,0.04820482387300757,0.012195820439870915,0.0038768619660039796,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024218699999997 47.5296346962418, 10.024425000000003 47.52969069624177, 10.0245778 47.529772196241765, 10.0246961 47.5299004962418)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_15_LVCableDist_mvgd_33532_lvgd_1172110002_building_444710,BranchTee_mvgd_33532_lvgd_1172110002_15,BranchTee_mvgd_33532_lvgd_1172110002_building_444710,0.03284585649540949,0.028510203438015438,0.002796402969751447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023783443951293 47.52961865689981, 10.024218699999997 47.5296346962418)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_16_LVCableDist_mvgd_33532_lvgd_1172110002_24,BranchTee_mvgd_33532_lvgd_1172110002_16,BranchTee_mvgd_33532_lvgd_1172110002_24,0.013372433872349607,0.0033832257697044505,0.0010754749443581142,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0246961 47.5299004962418, 10.024839400000001 47.52982949624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_16_LVCableDist_mvgd_33532_lvgd_1172110002_building_444708,BranchTee_mvgd_33532_lvgd_1172110002_16,BranchTee_mvgd_33532_lvgd_1172110002_building_444708,0.021245987448588275,0.018441517105374623,0.0018088230521508136,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02479961994012 47.530078363785776, 10.0246961 47.5299004962418)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_17_LVCableDist_mvgd_33532_lvgd_1172110002_19,BranchTee_mvgd_33532_lvgd_1172110002_17,BranchTee_mvgd_33532_lvgd_1172110002_19,0.029793599733094506,0.0075377807324729105,0.0023961434635644038,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025097300000006 47.52975079624178, 10.025028499999994 47.52960199624178, 10.024880899999996 47.52955129624174)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_17_LVCableDist_mvgd_33532_lvgd_1172110002_24,BranchTee_mvgd_33532_lvgd_1172110002_17,BranchTee_mvgd_33532_lvgd_1172110002_24,0.02133147301513608,0.005396862672829428,0.0017155788522137708,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024839400000001 47.52982949624178, 10.025003100000006 47.52977499624174, 10.025097300000006 47.52975079624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_18_LVCableDist_mvgd_33532_lvgd_1172110002_building_444764,BranchTee_mvgd_33532_lvgd_1172110002_18,BranchTee_mvgd_33532_lvgd_1172110002_building_444764,0.01417889529866404,0.012307281119240386,0.001207150890600779,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02988893551011 47.53025026600378, 10.029700799999997 47.53024779624184)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_19_LVCableDist_mvgd_33532_lvgd_1172110002_building_444702,BranchTee_mvgd_33532_lvgd_1172110002_19,BranchTee_mvgd_33532_lvgd_1172110002_building_444702,0.015940123079978132,0.01383602683342102,0.0013570968236217007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024735100007943 47.529655246273414, 10.024880899999996 47.52955129624174)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_1_LVCableDist_mvgd_33532_lvgd_1172110002_14,BranchTee_mvgd_33532_lvgd_1172110002_1,BranchTee_mvgd_33532_lvgd_1172110002_14,0.043080778128024515,0.010899436866390203,0.0034647617555951015,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025328999999996 47.52971699624175, 10.025456299999998 47.529781796241785, 10.025653399999994 47.529877296241786, 10.0257714 47.52996059624182)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_1_LVCableDist_mvgd_33532_lvgd_1172110002_17,BranchTee_mvgd_33532_lvgd_1172110002_1,BranchTee_mvgd_33532_lvgd_1172110002_17,0.017945035692273435,0.004540094030145179,0.001443225402860873,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025097300000006 47.52975079624178, 10.025163699999997 47.52973369624182, 10.025328999999996 47.52971699624175)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_1_LVCableDist_mvgd_33532_lvgd_1172110002_2,BranchTee_mvgd_33532_lvgd_1172110002_1,BranchTee_mvgd_33532_lvgd_1172110002_2,0.03507490771389715,0.00887395165161598,0.0028208914534225728,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025328999999996 47.52971699624175, 10.025558600000004 47.529731396241786, 10.025711299999998 47.52975739624178, 10.025788700000001 47.52975949624179)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_20_LVCableDist_mvgd_33532_lvgd_1172110002_5,BranchTee_mvgd_33532_lvgd_1172110002_5,BranchTee_mvgd_33532_lvgd_1172110002_20,0.11019545418455286,0.027879449908691872,0.008862444270724657,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.031248600000005 47.52747019624157, 10.031693999999998 47.52738569624155, 10.031849600000003 47.527327296241566, 10.031911400000006 47.527303296241534, 10.032321000000001 47.52714449624156, 10.032528100000002 47.527017696241565)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_20_LVCableDist_mvgd_33532_lvgd_1172110002_6,BranchTee_mvgd_33532_lvgd_1172110002_6,BranchTee_mvgd_33532_lvgd_1172110002_20,0.01954471689937321,0.004944813375541423,0.0015718793991056168,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.032528100000002 47.527017696241565, 10.032596300000003 47.52698539624149, 10.0327695 47.526963496241514)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_20_LVCableDist_mvgd_33532_lvgd_1172110002_7,BranchTee_mvgd_33532_lvgd_1172110002_7,BranchTee_mvgd_33532_lvgd_1172110002_20,0.05339862657226212,0.013509852522782315,0.004294572363550807,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.032528100000002 47.527017696241565, 10.032278500000004 47.52686719624154, 10.031991500000002 47.52693789624152, 10.031991499999995 47.52698489624154)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_20_LVCableDist_mvgd_33532_lvgd_1172110002_building_444831,BranchTee_mvgd_33532_lvgd_1172110002_20,BranchTee_mvgd_33532_lvgd_1172110002_building_444831,0.005262091186486505,0.004567495149870287,0.0004479995040790099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032553749997145 47.52706174625524, 10.032528100000002 47.527017696241565)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_21_LVCableDist_mvgd_33532_lvgd_1172110002_22,BranchTee_mvgd_33532_lvgd_1172110002_21,BranchTee_mvgd_33532_lvgd_1172110002_22,0.018422626128931065,0.0046609244106195595,0.0014816355048059187,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.027160799999995 47.52908579624174, 10.026959600000003 47.52917999624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_21_LVCableDist_mvgd_33532_lvgd_1172110002_9,BranchTee_mvgd_33532_lvgd_1172110002_9,BranchTee_mvgd_33532_lvgd_1172110002_21,0.04482454003830875,0.011340608629692113,0.003605003409533243,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.026959600000003 47.52917999624173, 10.026377 47.52926149624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_21_LVCableDist_mvgd_33532_lvgd_1172110002_building_444770,BranchTee_mvgd_33532_lvgd_1172110002_21,BranchTee_mvgd_33532_lvgd_1172110002_building_444770,0.019748610414935776,0.017141793840164253,0.0016813406226903831,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026725010813951 47.52910074681912, 10.026959600000003 47.52917999624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_22_LVCableDist_mvgd_33532_lvgd_1172110002_building_444763,BranchTee_mvgd_33532_lvgd_1172110002_22,BranchTee_mvgd_33532_lvgd_1172110002_building_444763,0.04254810493493479,0.0369317550835234,0.003622424856358263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026763773564355 47.52881350059622, 10.027160799999995 47.52908579624174)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_22_LVCableDist_mvgd_33532_lvgd_1172110002_building_444778,BranchTee_mvgd_33532_lvgd_1172110002_22,BranchTee_mvgd_33532_lvgd_1172110002_building_444778,0.010580265968328598,0.009183670860509223,0.0009007738062403478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02704058316756 47.52903659673736, 10.027160799999995 47.52908579624174)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_23_LVCableDist_mvgd_33532_lvgd_1172110002_9,BranchTee_mvgd_33532_lvgd_1172110002_9,BranchTee_mvgd_33532_lvgd_1172110002_23,0.006235209449967935,0.0015775079908418874,0.0005014652979612907,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.026377 47.52926149624172, 10.026295300000003 47.52927039624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_23_LVCableDist_mvgd_33532_lvgd_1172110002_building_444759,BranchTee_mvgd_33532_lvgd_1172110002_23,BranchTee_mvgd_33532_lvgd_1172110002_building_444759,0.018171457346275323,0.01577282497656698,0.0015470662881005366,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026111975278717 47.529164141209804, 10.026295300000003 47.52927039624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_23_LVCableDist_mvgd_33532_lvgd_1172110002_building_444760,BranchTee_mvgd_33532_lvgd_1172110002_23,BranchTee_mvgd_33532_lvgd_1172110002_building_444760,0.032393853311457346,0.028117864674344975,0.0027579207019464485,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025896400000857 47.52916169628283, 10.026295300000003 47.52927039624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_24_LVCableDist_mvgd_33532_lvgd_1172110002_building_444711,BranchTee_mvgd_33532_lvgd_1172110002_24,BranchTee_mvgd_33532_lvgd_1172110002_building_444711,0.01660537382650922,0.014413464481410001,0.0014137343834761346,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024893708969861 47.52997434148755, 10.024839400000001 47.52982949624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_25_LVCableDist_mvgd_33532_lvgd_1172110002_46,BranchTee_mvgd_33532_lvgd_1172110002_25,BranchTee_mvgd_33532_lvgd_1172110002_46,0.03963626451362055,0.010027974921946,0.0031877375337403427,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021810500000003 47.52923449624171, 10.022333649624223 47.529271647495754)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_25_LVCableDist_mvgd_33532_lvgd_1172110002_building_444633,BranchTee_mvgd_33532_lvgd_1172110002_25,BranchTee_mvgd_33532_lvgd_1172110002_building_444633,0.034808855778320005,0.030214086815581763,0.0029635271555712964,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02156473497653 47.528969222079304, 10.021810500000003 47.52923449624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_25_LVCableDist_mvgd_33532_lvgd_1172110002_building_444636,BranchTee_mvgd_33532_lvgd_1172110002_25,BranchTee_mvgd_33532_lvgd_1172110002_building_444636,0.01629106247292864,0.014140642226502059,0.0013869748071897873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021599350007229 47.52926599628307, 10.021810500000003 47.52923449624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_25_LVCableDist_mvgd_33532_lvgd_1172110002_building_444638,BranchTee_mvgd_33532_lvgd_1172110002_25,BranchTee_mvgd_33532_lvgd_1172110002_building_444638,0.016503567789851452,0.01432509684159106,0.0014050669065513604,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021870932719386 47.52937726839517, 10.021810500000003 47.52923449624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_25_LVCableDist_mvgd_33532_lvgd_1172110002_building_444640,BranchTee_mvgd_33532_lvgd_1172110002_25,BranchTee_mvgd_33532_lvgd_1172110002_building_444640,0.02177849877996476,0.01890373694100941,0.0018541595550578276,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022030677915012 47.52936147498267, 10.021810500000003 47.52923449624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_26_LVCableDist_mvgd_33532_lvgd_1172110002_37,BranchTee_mvgd_33532_lvgd_1172110002_26,BranchTee_mvgd_33532_lvgd_1172110002_37,0.01430179959280249,0.00361835529697903,0.001150218970466862,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0228568 47.52930879624177, 10.022885899999995 47.52943599624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_26_LVCableDist_mvgd_33532_lvgd_1172110002_38,BranchTee_mvgd_33532_lvgd_1172110002_26,BranchTee_mvgd_33532_lvgd_1172110002_38,0.026631183322285635,0.006737689380538266,0.0021418068449714067,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0228568 47.52930879624177, 10.022848700000004 47.52921109624171, 10.022853499999995 47.52906929624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_26_LVCableDist_mvgd_33532_lvgd_1172110002_46,BranchTee_mvgd_33532_lvgd_1172110002_26,BranchTee_mvgd_33532_lvgd_1172110002_46,0.03963626451454678,0.010027974922180334,0.0031877375338148343,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022333649624223 47.529271647495754, 10.0228568 47.52930879624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_26_LVCableDist_mvgd_33532_lvgd_1172110002_building_444667,BranchTee_mvgd_33532_lvgd_1172110002_26,BranchTee_mvgd_33532_lvgd_1172110002_building_444667,0.01405416971808349,0.01219901931529647,0.0011965321087770149,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02303755000337 47.5292775962598, 10.0228568 47.52930879624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_27_LVCableDist_mvgd_33532_lvgd_1172110002_28,BranchTee_mvgd_33532_lvgd_1172110002_27,BranchTee_mvgd_33532_lvgd_1172110002_28,0.01551333229616828,0.003924873070930575,0.0012476562118230925,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022259800000002 47.52798889624158, 10.022422099999993 47.528074796241626)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_27_LVCableDist_mvgd_33532_lvgd_1172110002_29,BranchTee_mvgd_33532_lvgd_1172110002_27,BranchTee_mvgd_33532_lvgd_1172110002_29,0.10139878726364603,0.025653893177702444,0.008154974339849847,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021199099999999 47.52750879624162, 10.021310599999994 47.5276083962416, 10.021413500000003 47.52765959624155, 10.0215315 47.5276870962416, 10.021792499999997 47.52769109624156, 10.021897800000005 47.5277260962416, 10.022121100000003 47.527895696241615, 10.022259800000002 47.52798889624158)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_27_LVCableDist_mvgd_33532_lvgd_1172110002_building_444645,BranchTee_mvgd_33532_lvgd_1172110002_27,BranchTee_mvgd_33532_lvgd_1172110002_building_444645,0.01845332660546656,0.016017487493544976,0.0015710638365765272,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02242994999966 47.52786944626754, 10.022259800000002 47.52798889624158)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_28_LVCableDist_mvgd_33532_lvgd_1172110002_31,BranchTee_mvgd_33532_lvgd_1172110002_28,BranchTee_mvgd_33532_lvgd_1172110002_31,0.023221613306391917,0.005875068166517155,0.0018675929540573142,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022422099999993 47.528074796241626, 10.022486200000003 47.52817059624166, 10.022529299999995 47.52827019624167)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_28_LVCableDist_mvgd_33532_lvgd_1172110002_building_444646,BranchTee_mvgd_33532_lvgd_1172110002_28,BranchTee_mvgd_33532_lvgd_1172110002_building_444646,0.02645831198012975,0.022965814798752624,0.0022525855645197023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022755274836603 47.52799964143594, 10.022422099999993 47.528074796241626)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_29_LVCableDist_mvgd_33532_lvgd_1172110002_33,BranchTee_mvgd_33532_lvgd_1172110002_29,BranchTee_mvgd_33532_lvgd_1172110002_33,0.24202741314580123,0.06123293552588771,0.019464999503518488,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021199099999999 47.52750879624162, 10.021032300000003 47.527223696241585, 10.020995200000002 47.52691009624154, 10.020988500000005 47.52682219624148, 10.020943599999999 47.52659579624151, 10.020816599999995 47.52640459624147, 10.020744899999999 47.526331996241424, 10.0206714 47.52628619624146, 10.020754199999995 47.52626459624149, 10.020909800000004 47.52625909624147, 10.021180699999997 47.526246496241455, 10.021258499999997 47.52623559624143, 10.021354999999994 47.52621199624145, 10.0214328 47.52616859624146, 10.021515 47.526126596241454, 10.021652700000002 47.526081596241475, 10.021878100000006 47.52603269624145)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_29_LVCableDist_mvgd_33532_lvgd_1172110002_47,BranchTee_mvgd_33532_lvgd_1172110002_29,BranchTee_mvgd_33532_lvgd_1172110002_47,0.022457721429937905,0.00568180352177429,0.00180615712411287,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021199099999999 47.52750879624162, 10.020913299999995 47.52756609624161)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_2_LVCableDist_mvgd_33532_lvgd_1172110002_5,BranchTee_mvgd_33532_lvgd_1172110002_2,BranchTee_mvgd_33532_lvgd_1172110002_5,0.5040919470441908,0.1275352626021803,0.040541479873735804,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025788700000001 47.52975949624179, 10.025874199999997 47.52974059624179, 10.0262958 47.529604296241764, 10.026622099999999 47.52949229624174, 10.026899300000004 47.52935559624172, 10.027016299999998 47.52930159624171, 10.027185500000002 47.529256996241706, 10.027549799999996 47.529198196241694, 10.027805500000001 47.52913779624174, 10.028408200000001 47.52898159624169, 10.028564299999996 47.52895849624169, 10.028936299999996 47.52895249624171, 10.0291063 47.52892639624173, 10.029372300000006 47.528842296241734, 10.029514600000006 47.52877969624164, 10.029600400000003 47.52872359624163, 10.029734399999999 47.528616096241706, 10.030011700000001 47.52829699624167, 10.030144900000003 47.528192196241655, 10.030246200000006 47.52810929624166, 10.030334700000001 47.52800139624164, 10.030512600000003 47.527848896241615, 10.030700499999998 47.527723096241616, 10.030891800000001 47.52759709624162, 10.0310107 47.52753499624157, 10.031130799999993 47.527502896241614, 10.031248600000005 47.52747019624157)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_30_LVCableDist_mvgd_33532_lvgd_1172110002_31,BranchTee_mvgd_33532_lvgd_1172110002_30,BranchTee_mvgd_33532_lvgd_1172110002_31,0.020090021546324083,0.005082775451219993,0.0016157354009700452,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022529299999995 47.52827019624167, 10.0224777 47.528447596241655)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_30_LVCableDist_mvgd_33532_lvgd_1172110002_32,BranchTee_mvgd_33532_lvgd_1172110002_30,BranchTee_mvgd_33532_lvgd_1172110002_32,0.017441581234090547,0.004412720052224909,0.0014027351928834165,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0224777 47.528447596241655, 10.022427199999992 47.528600796241705)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_30_LVCableDist_mvgd_33532_lvgd_1172110002_building_444632,BranchTee_mvgd_33532_lvgd_1172110002_30,BranchTee_mvgd_33532_lvgd_1172110002_building_444632,0.020536960042643413,0.01782608131701448,0.0017484584717996669,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022210600000536 47.528484346273196, 10.0224777 47.528447596241655)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_31_LVCableDist_mvgd_33532_lvgd_1172110002_building_444627,BranchTee_mvgd_33532_lvgd_1172110002_31,BranchTee_mvgd_33532_lvgd_1172110002_building_444627,0.021021724463264325,0.018246856834113433,0.0017897299382826192,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022250373836036 47.52827365033013, 10.022529299999995 47.52827019624167)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_31_LVCableDist_mvgd_33532_lvgd_1172110002_building_444648,BranchTee_mvgd_33532_lvgd_1172110002_31,BranchTee_mvgd_33532_lvgd_1172110002_building_444648,0.014663609128011701,0.012728012723114157,0.0012484180498863599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022722999991117 47.52828284627241, 10.022529299999995 47.52827019624167)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_32_LVCableDist_mvgd_33532_lvgd_1172110002_44,BranchTee_mvgd_33532_lvgd_1172110002_32,BranchTee_mvgd_33532_lvgd_1172110002_44,0.026118432155973332,0.006607963335461253,0.0021005689493629244,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022427199999992 47.528600796241705, 10.022444900000009 47.52869419624163, 10.0225008 47.528741296241705, 10.022584500000002 47.52879829624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_32_LVCableDist_mvgd_33532_lvgd_1172110002_building_444656,BranchTee_mvgd_33532_lvgd_1172110002_32,BranchTee_mvgd_33532_lvgd_1172110002_building_444656,0.02225147038109906,0.019314276290793984,0.0018944270143705388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022718955173774 47.528569882146414, 10.022427199999992 47.528600796241705)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_32_LVCableDist_mvgd_33532_lvgd_1172110002_building_444657,BranchTee_mvgd_33532_lvgd_1172110002_32,BranchTee_mvgd_33532_lvgd_1172110002_building_444657,0.007232600762417156,0.006277897461778092,0.0006157630949242131,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022334200000202 47.52858469624793, 10.022427199999992 47.528600796241705)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_33_LVCableDist_mvgd_33532_lvgd_1172110002_building_444487,BranchTee_mvgd_33532_lvgd_1172110002_33,BranchTee_mvgd_33532_lvgd_1172110002_building_444487,0.014171623412913472,0.012300969122408894,0.0012065317828934973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021877499979716 47.52616024628516, 10.021878100000006 47.52603269624145)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_34_LVCableDist_mvgd_33532_lvgd_1172110002_48,BranchTee_mvgd_33532_lvgd_1172110002_34,BranchTee_mvgd_33532_lvgd_1172110002_48,0.020480027982157152,0.00518144707948576,0.0016471015796238925,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023231000000004 47.52820609624163, 10.023293000000002 47.5283065962417, 10.023311800000007 47.52838089624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_34_LVCableDist_mvgd_33532_lvgd_1172110002_building_444647,BranchTee_mvgd_33532_lvgd_1172110002_34,BranchTee_mvgd_33532_lvgd_1172110002_building_444647,0.01732244807025409,0.015035884924980552,0.0014747840487518958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023323099999994 47.52806324626409, 10.023231000000004 47.52820609624163)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_34_LVCableDist_mvgd_33532_lvgd_1172110002_building_444658,BranchTee_mvgd_33532_lvgd_1172110002_34,BranchTee_mvgd_33532_lvgd_1172110002_building_444658,0.014510281412067632,0.012594924265674705,0.001235364163461717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02305028012091 47.528251188098615, 10.023231000000004 47.52820609624163)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_35_LVCableDist_mvgd_33532_lvgd_1172110002_36,BranchTee_mvgd_33532_lvgd_1172110002_35,BranchTee_mvgd_33532_lvgd_1172110002_36,0.025894172202987592,0.006551225567355861,0.002082532893790588,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022774399999996 47.52981959624182, 10.022878999999998 47.52959759624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_35_LVCableDist_mvgd_33532_lvgd_1172110002_building_444670,BranchTee_mvgd_33532_lvgd_1172110002_35,BranchTee_mvgd_33532_lvgd_1172110002_building_444670,0.03207185385531397,0.027838369146412526,0.0027305065824351025,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022350050000975 47.52979724636293, 10.022774399999996 47.52981959624182)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_35_LVCableDist_mvgd_33532_lvgd_1172110002_building_444671,BranchTee_mvgd_33532_lvgd_1172110002_35,BranchTee_mvgd_33532_lvgd_1172110002_building_444671,0.016325650407519723,0.01417066455372712,0.0013899195257426919,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022938781326152 47.52991531469116, 10.022774399999996 47.52981959624182)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_36_LVCableDist_mvgd_33532_lvgd_1172110002_37,BranchTee_mvgd_33532_lvgd_1172110002_36,BranchTee_mvgd_33532_lvgd_1172110002_37,0.017962252102555816,0.004544449781946622,0.0014446100287313194,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022878999999998 47.52959759624177, 10.022885899999995 47.52943599624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_36_LVCableDist_mvgd_33532_lvgd_1172110002_building_444654,BranchTee_mvgd_33532_lvgd_1172110002_36,BranchTee_mvgd_33532_lvgd_1172110002_building_444654,0.018678622211431708,0.01621304407952272,0.0015902448648344122,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022631759840523 47.52958548539707, 10.022878999999998 47.52959759624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_36_LVCableDist_mvgd_33532_lvgd_1172110002_building_444672,BranchTee_mvgd_33532_lvgd_1172110002_36,BranchTee_mvgd_33532_lvgd_1172110002_building_444672,0.017072128775570978,0.01481860777719561,0.0014534725746810102,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023097825434373 47.52955777749231, 10.022878999999998 47.52959759624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_36_LVCableDist_mvgd_33532_lvgd_1172110002_building_444678,BranchTee_mvgd_33532_lvgd_1172110002_36,BranchTee_mvgd_33532_lvgd_1172110002_building_444678,0.04575674148757194,0.03971685161121244,0.003895599062849166,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023475850000741 47.52967344625063, 10.022878999999998 47.52959759624177)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_37_LVCableDist_mvgd_33532_lvgd_1172110002_building_444653,BranchTee_mvgd_33532_lvgd_1172110002_37,BranchTee_mvgd_33532_lvgd_1172110002_building_444653,0.020653403276367006,0.017927154043886562,0.001758372118126339,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022620950905434 47.5294836068547, 10.022885899999995 47.52943599624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_38_LVCableDist_mvgd_33532_lvgd_1172110002_39,BranchTee_mvgd_33532_lvgd_1172110002_38,BranchTee_mvgd_33532_lvgd_1172110002_39,0.018417532911832395,0.004659635826693596,0.0014812258839823585,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0228955 47.52890599624167, 10.022853499999995 47.52906929624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_38_LVCableDist_mvgd_33532_lvgd_1172110002_building_444650,BranchTee_mvgd_33532_lvgd_1172110002_38,BranchTee_mvgd_33532_lvgd_1172110002_building_444650,0.015288107651014559,0.013270077441080637,0.0013015860811287376,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022662970140262 47.52902201040693, 10.022853499999995 47.52906929624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_38_LVCableDist_mvgd_33532_lvgd_1172110002_building_444655,BranchTee_mvgd_33532_lvgd_1172110002_38,BranchTee_mvgd_33532_lvgd_1172110002_building_444655,0.011990354827441091,0.010407627990218868,0.0010208247683392263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023012332244901 47.52907581216953, 10.022853499999995 47.52906929624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_39_LVCableDist_mvgd_33532_lvgd_1172110002_40,BranchTee_mvgd_33532_lvgd_1172110002_39,BranchTee_mvgd_33532_lvgd_1172110002_40,0.014865239235355782,0.003760905526545013,0.001195533475216601,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0228955 47.52890599624167, 10.023074999999999 47.52896149624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_39_LVCableDist_mvgd_33532_lvgd_1172110002_44,BranchTee_mvgd_33532_lvgd_1172110002_39,BranchTee_mvgd_33532_lvgd_1172110002_44,0.026446080842086224,0.006690858453047815,0.00212692002021734,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022584500000002 47.52879829624168, 10.022667499999995 47.52883919624172, 10.0228955 47.52890599624167)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_3_LVCableDist_mvgd_33532_lvgd_1172110002_4,BranchTee_mvgd_33532_lvgd_1172110002_3,BranchTee_mvgd_33532_lvgd_1172110002_4,0.04608802469433117,0.011660270247665786,0.0037066188748332996,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024922799999993 47.52945199624177, 10.0249104 47.529234296241725, 10.025041899999994 47.52905869624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_3_LVCableDist_mvgd_33532_lvgd_1172110002_8,BranchTee_mvgd_33532_lvgd_1172110002_3,BranchTee_mvgd_33532_lvgd_1172110002_8,0.031036136591570136,0.007852142557667245,0.002496074207024284,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024922799999993 47.52945199624177, 10.024782500000002 47.529477996241745, 10.0245203 47.52951009624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_40_LVCableDist_mvgd_33532_lvgd_1172110002_43,BranchTee_mvgd_33532_lvgd_1172110002_40,BranchTee_mvgd_33532_lvgd_1172110002_43,0.03132252221036686,0.007924598119222815,0.0025191067051005865,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023074999999999 47.52896149624171, 10.023467199999995 47.52905489624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_40_LVCableDist_mvgd_33532_lvgd_1172110002_building_444669,BranchTee_mvgd_33532_lvgd_1172110002_40,BranchTee_mvgd_33532_lvgd_1172110002_building_444669,0.018745812721426423,0.016271365442198135,0.0015959652740956105,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023292112642055 47.5288791265546, 10.023074999999999 47.52896149624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_41_LVCableDist_mvgd_33532_lvgd_1172110002_44,BranchTee_mvgd_33532_lvgd_1172110002_41,BranchTee_mvgd_33532_lvgd_1172110002_44,0.06553036161609142,0.01657918148887113,0.005270264387589002,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023292699999997 47.528455996241675, 10.022584500000002 47.52879829624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_41_LVCableDist_mvgd_33532_lvgd_1172110002_48,BranchTee_mvgd_33532_lvgd_1172110002_41,BranchTee_mvgd_33532_lvgd_1172110002_48,0.008467261675168024,0.0021422172038175103,0.0006809775891130949,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023311800000007 47.52838089624168, 10.023292699999997 47.528455996241675)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_41_LVCableDist_mvgd_33532_lvgd_1172110002_building_444641,BranchTee_mvgd_33532_lvgd_1172110002_41,BranchTee_mvgd_33532_lvgd_1172110002_building_444641,0.02791565227019873,0.0242307861705325,0.002376659379299259,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023531388808145 47.52864814567167, 10.023292699999997 47.528455996241675)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_41_LVCableDist_mvgd_33532_lvgd_1172110002_building_444661,BranchTee_mvgd_33532_lvgd_1172110002_41,BranchTee_mvgd_33532_lvgd_1172110002_building_444661,0.025543997273596023,0.02217218963348135,0.0021747434062250734,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023251767961936 47.528684220974874, 10.023292699999997 47.528455996241675)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_42_LVCableDist_mvgd_33532_lvgd_1172110002_43,BranchTee_mvgd_33532_lvgd_1172110002_42,BranchTee_mvgd_33532_lvgd_1172110002_43,0.025284992640277223,0.006397103137990137,0.002033539766394033,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023467199999995 47.52905489624168, 10.023795299999993 47.52910259624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_42_LVCableDist_mvgd_33532_lvgd_1172110002_building_444674,BranchTee_mvgd_33532_lvgd_1172110002_42,BranchTee_mvgd_33532_lvgd_1172110002_building_444674,0.028783455241561194,0.024984039149675116,0.0024505416605123025,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024032285387158 47.52889941748253, 10.023795299999993 47.52910259624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_42_LVCableDist_mvgd_33532_lvgd_1172110002_building_444685,BranchTee_mvgd_33532_lvgd_1172110002_42,BranchTee_mvgd_33532_lvgd_1172110002_building_444685,0.01976191552272027,0.017153342673721195,0.001682473381792787,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024006912492728 47.52899752861861, 10.023795299999993 47.52910259624178)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_42_LVStation_mvgd_33532_lvgd_1172110002,BusBar_mvgd_33532_lvgd_1172110002_LV,BranchTee_mvgd_33532_lvgd_1172110002_42,0.038842076850491465,0.00982704544317434,0.003123865172062058,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023795299999993 47.52910259624178, 10.0241888 47.5291508962417, 10.024302799999996 47.52916379624174)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_43_LVCableDist_mvgd_33532_lvgd_1172110002_building_444663,BranchTee_mvgd_33532_lvgd_1172110002_43,BranchTee_mvgd_33532_lvgd_1172110002_building_444663,0.011263329603251035,0.009776570095621898,0.0009589279048400686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0233955000003 47.52896594624842, 10.023467199999995 47.52905489624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_43_LVCableDist_mvgd_33532_lvgd_1172110002_building_444664,BranchTee_mvgd_33532_lvgd_1172110002_43,BranchTee_mvgd_33532_lvgd_1172110002_building_444664,0.015800899467845506,0.013715180738089899,0.001345243720552776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023588200000935 47.52893874627124, 10.023467199999995 47.52905489624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_43_LVCableDist_mvgd_33532_lvgd_1172110002_building_444665,BranchTee_mvgd_33532_lvgd_1172110002_43,BranchTee_mvgd_33532_lvgd_1172110002_building_444665,0.01737782181526671,0.015083949335651504,0.0014794984121913508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023449067342643 47.529210819762746, 10.023467199999995 47.52905489624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_44_LVCableDist_mvgd_33532_lvgd_1172110002_45,BranchTee_mvgd_33532_lvgd_1172110002_44,BranchTee_mvgd_33532_lvgd_1172110002_45,0.03427346571845816,0.008671186826769914,0.002756435663722746,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022584500000002 47.52879829624168, 10.022469199999998 47.528904896241684, 10.022439500000006 47.52900649624172, 10.022431699999995 47.52907899624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_45_LVCableDist_mvgd_33532_lvgd_1172110002_building_444644,BranchTee_mvgd_33532_lvgd_1172110002_45,BranchTee_mvgd_33532_lvgd_1172110002_building_444644,0.010806931866889581,0.009380416860460157,0.0009200714973194616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02228845000017 47.52907429637833, 10.022431699999995 47.52907899624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_45_LVCableDist_mvgd_33532_lvgd_1172110002_building_444649,BranchTee_mvgd_33532_lvgd_1172110002_45,BranchTee_mvgd_33532_lvgd_1172110002_building_444649,0.01822694369506292,0.015820987127314615,0.0015517902383057013,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022591034185261 47.52920242596224, 10.022431699999995 47.52907899624171)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_46_LVCableDist_mvgd_33532_lvgd_1172110002_building_444652,BranchTee_mvgd_33532_lvgd_1172110002_46,BranchTee_mvgd_33532_lvgd_1172110002_building_444652,0.01669997737673947,0.014495580363009861,0.0014217886611549609,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022484245100356 47.52938192196093, 10.022333649624223 47.529271647495754)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_47_LVCableDist_mvgd_33532_lvgd_1172110002_building_444625,BranchTee_mvgd_33532_lvgd_1172110002_47,BranchTee_mvgd_33532_lvgd_1172110002_building_444625,0.012528541718116876,0.010874774211325449,0.001066644472251572,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021004800000389 47.52747194624771, 10.020913299999995 47.52756609624161)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_47_LVCableDist_mvgd_33532_lvgd_1172110002_building_444635,BranchTee_mvgd_33532_lvgd_1172110002_47,BranchTee_mvgd_33532_lvgd_1172110002_building_444635,0.011832764728364094,0.010270839784220033,0.0010074079947159254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020775125484871 47.52761669303924, 10.020913299999995 47.52756609624161)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_48_LVCableDist_mvgd_33532_lvgd_1172110002_building_444660,BranchTee_mvgd_33532_lvgd_1172110002_48,BranchTee_mvgd_33532_lvgd_1172110002_building_444660,0.01437289062079404,0.012475669058849228,0.0012236671015571912,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023499160413548 47.5283566568211, 10.023311800000007 47.52838089624168)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_49_LVCableDist_mvgd_33532_lvgd_1172110002_51,BranchTee_mvgd_33532_lvgd_1172110002_49,BranchTee_mvgd_33532_lvgd_1172110002_51,0.04184296185579927,0.03631969089083376,0.003562390976563719,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025064800000003 47.528391796241664, 10.024743999999997 47.5286991962417)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_49_LVCableDist_mvgd_33532_lvgd_1172110002_53,BranchTee_mvgd_33532_lvgd_1172110002_49,BranchTee_mvgd_33532_lvgd_1172110002_53,0.05192711765107293,0.0450727381211313,0.0044209273711704675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024360699999997 47.52908759624173, 10.024743999999997 47.5286991962417)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_49_LVCableDist_mvgd_33532_lvgd_1172110002_building_444675,BranchTee_mvgd_33532_lvgd_1172110002_49,BranchTee_mvgd_33532_lvgd_1172110002_building_444675,0.01700897301235621,0.014763788574725191,0.0014480956723056564,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024768949995089 47.52854704628559, 10.024743999999997 47.5286991962417)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_49_LVCableDist_mvgd_33532_lvgd_1172110002_building_444682,BranchTee_mvgd_33532_lvgd_1172110002_49,BranchTee_mvgd_33532_lvgd_1172110002_building_444682,0.027467111267629633,0.02384145258030252,0.0023384718717877765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024392114312713 47.528763697889104, 10.024743999999997 47.5286991962417)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_49_LVCableDist_mvgd_33532_lvgd_1172110002_building_444683,BranchTee_mvgd_33532_lvgd_1172110002_49,BranchTee_mvgd_33532_lvgd_1172110002_building_444683,0.020868105291240065,0.018113515392796375,0.001776651238114778,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024955183924748 47.52882069740989, 10.024743999999997 47.5286991962417)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_4_LVCableDist_mvgd_33532_lvgd_1172110002_building_444651,BranchTee_mvgd_33532_lvgd_1172110002_4,BranchTee_mvgd_33532_lvgd_1172110002_building_444651,0.020159415845828456,0.0174983729541791,0.0017163154307639331,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024774424784976 47.529054919073445, 10.025041899999994 47.52905869624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_4_LVCableDist_mvgd_33532_lvgd_1172110002_building_444756,BranchTee_mvgd_33532_lvgd_1172110002_4,BranchTee_mvgd_33532_lvgd_1172110002_building_444756,0.040894021288577276,0.03549601047848507,0.0034816008707959467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025452523458352 47.52881803893619, 10.025041899999994 47.52905869624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_50_LVCableDist_mvgd_33532_lvgd_1172110002_51,BranchTee_mvgd_33532_lvgd_1172110002_50,BranchTee_mvgd_33532_lvgd_1172110002_51,0.03739675787639658,0.032460385836712236,0.003183853792920478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025064800000003 47.528391796241664, 10.025185999999996 47.52829039624166, 10.025489800000004 47.528292596241656)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_50_LVCableDist_mvgd_33532_lvgd_1172110002_52,BranchTee_mvgd_33532_lvgd_1172110002_50,BranchTee_mvgd_33532_lvgd_1172110002_52,0.00975199291805648,0.008464729852873025,0.0008302569902800228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025489800000004 47.528292596241656, 10.025590300000005 47.52823729624167)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_50_LVCableDist_mvgd_33532_lvgd_1172110002_building_444757,BranchTee_mvgd_33532_lvgd_1172110002_50,BranchTee_mvgd_33532_lvgd_1172110002_building_444757,0.05822062932948789,0.05053550625799549,0.0049567390876390175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025816043168374 47.5287675983847, 10.025489800000004 47.528292596241656)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_51_LVCableDist_mvgd_33532_lvgd_1172110002_building_444755,BranchTee_mvgd_33532_lvgd_1172110002_51,BranchTee_mvgd_33532_lvgd_1172110002_building_444755,0.021851425150240807,0.01896703703040902,0.0018603682991787682,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025145711456144 47.528580656891734, 10.025064800000003 47.528391796241664)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_52_LVCableDist_mvgd_33532_lvgd_1172110002_building_444741,BranchTee_mvgd_33532_lvgd_1172110002_52,BranchTee_mvgd_33532_lvgd_1172110002_building_444741,0.009849418295552718,0.008549295080539759,0.0008385515103208599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025636031684037 47.52815424998782, 10.025590300000005 47.52823729624167)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_53_LVCableDist_mvgd_33532_lvgd_1172110002_building_444691,BranchTee_mvgd_33532_lvgd_1172110002_53,BranchTee_mvgd_33532_lvgd_1172110002_building_444691,0.016988797823121883,0.014746276510469794,0.0014463780139733777,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02458155000628 47.52911834629005, 10.024360699999997 47.52908759624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_53_LVStation_mvgd_33532_lvgd_1172110002,BusBar_mvgd_33532_lvgd_1172110002_LV,BranchTee_mvgd_33532_lvgd_1172110002_53,0.009524298568519553,0.008267091157474971,0.0008108717398046797,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024302799999996 47.52916379624174, 10.024360699999997 47.52908759624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_5_LVCableDist_mvgd_33532_lvgd_1172110002_building_444787,BranchTee_mvgd_33532_lvgd_1172110002_5,BranchTee_mvgd_33532_lvgd_1172110002_building_444787,0.11969043316048907,0.1038912959833045,0.010190103667645459,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029672407422868 47.5273371947566, 10.031248600000005 47.52747019624157)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_5_LVCableDist_mvgd_33532_lvgd_1172110002_building_444797,BranchTee_mvgd_33532_lvgd_1172110002_5,BranchTee_mvgd_33532_lvgd_1172110002_building_444797,0.1086075405189496,0.09427134517044825,0.009246537653449152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029827639886632 47.527306677384416, 10.031248600000005 47.52747019624157)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_6_LVCableDist_mvgd_33532_lvgd_1172110002_building_444833,BranchTee_mvgd_33532_lvgd_1172110002_6,BranchTee_mvgd_33532_lvgd_1172110002_building_444833,0.016786239916154275,0.01457045624722191,0.0014291328088538212,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032968899990385 47.5270308462695, 10.0327695 47.526963496241514)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_7_LVCableDist_mvgd_33532_lvgd_1172110002_building_444844,BranchTee_mvgd_33532_lvgd_1172110002_7,BranchTee_mvgd_33532_lvgd_1172110002_building_444844,0.014037717902880685,0.012184739139700435,0.0011951314479387944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032133129908537 47.527066967881424, 10.031991499999995 47.52698489624154)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_8_LVCableDist_mvgd_33532_lvgd_1172110002_building_444659,BranchTee_mvgd_33532_lvgd_1172110002_8,BranchTee_mvgd_33532_lvgd_1172110002_building_444659,0.016822470007315855,0.014601903966350162,0.0014322173359549114,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024528338687684 47.52935878517968, 10.0245203 47.52951009624173)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_9_LVCableDist_mvgd_33532_lvgd_1172110002_building_444747,BranchTee_mvgd_33532_lvgd_1172110002_9,BranchTee_mvgd_33532_lvgd_1172110002_building_444747,0.037162443658864334,0.032257001095894244,0.003163904945678399,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026310800005843 47.528930046287414, 10.026377 47.52926149624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1172110002_9_LVCableDist_mvgd_33532_lvgd_1172110002_building_444766,BranchTee_mvgd_33532_lvgd_1172110002_9,BranchTee_mvgd_33532_lvgd_1172110002_building_444766,0.017210386133991055,0.014938615164304236,0.0014652434136521275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026517876331 47.52913957022339, 10.026377 47.52926149624172)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_1_LVCableDist_mvgd_33532_lvgd_1172130000_2,BranchTee_mvgd_33532_lvgd_1172130000_1,BranchTee_mvgd_33532_lvgd_1172130000_2,0.0527560295149204,0.045792233618950906,0.0044914985739049505,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040536699999999 47.52226849624113, 10.040700900000001 47.52235549624113, 10.0411737 47.522446996241115)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_1_LVCableDist_mvgd_33532_lvgd_1172130000_building_444583,BranchTee_mvgd_33532_lvgd_1172130000_1,BranchTee_mvgd_33532_lvgd_1172130000_building_444583,0.013222086126423583,0.01147677075773567,0.0011256908741413946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041102630615764 47.52233819319688, 10.0411737 47.522446996241115)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_1_LVCableDist_mvgd_33532_lvgd_1172130000_building_444598,BranchTee_mvgd_33532_lvgd_1172130000_1,BranchTee_mvgd_33532_lvgd_1172130000_building_444598,0.09926358214834202,0.08616078930476087,0.008451019566093057,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041016959043139 47.52333406589539, 10.0411737 47.522446996241115)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_2_LVCableDist_mvgd_33532_lvgd_1172130000_3,BranchTee_mvgd_33532_lvgd_1172130000_2,BranchTee_mvgd_33532_lvgd_1172130000_3,0.047006434383305595,0.04080158504470926,0.00400199436800418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040536699999999 47.52226849624113, 10.040655800000001 47.5222442962411, 10.0410797 47.52206519624106)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_2_LVCableDist_mvgd_33532_lvgd_1172130000_building_444580,BranchTee_mvgd_33532_lvgd_1172130000_2,BranchTee_mvgd_33532_lvgd_1172130000_building_444580,0.022169806959887368,0.019243392441182235,0.0018874744225381914,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040370300005193 47.522433046265725, 10.040536699999999 47.52226849624113)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_2_LVStation_mvgd_33532_lvgd_1172130000,BusBar_mvgd_33532_lvgd_1172130000_LV,BranchTee_mvgd_33532_lvgd_1172130000_2,0.02019307357100023,0.0175275878596282,0.0017191809539278237,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040536699999999 47.52226849624113, 10.0404391 47.52231549624108, 10.040297599999995 47.522345496241094)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_3_LVCableDist_mvgd_33532_lvgd_1172130000_building_444575,BranchTee_mvgd_33532_lvgd_1172130000_3,BranchTee_mvgd_33532_lvgd_1172130000_building_444575,0.030562818879564496,0.02652852678746198,0.0026020316288824555,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040700902597791 47.52196696232094, 10.0410797 47.52206519624106)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_4_LVCableDist_mvgd_33532_lvgd_1172130000_5,BranchTee_mvgd_33532_lvgd_1172130000_4,BranchTee_mvgd_33532_lvgd_1172130000_5,0.04623416584783506,0.04013125595592083,0.0039362456174323315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039417400000005 47.522368396241106, 10.039450099999996 47.522515796241116, 10.039470000000003 47.522660696241125, 10.039506300000001 47.52273269624114, 10.039540199999996 47.52277189624116)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_4_LVCableDist_mvgd_33532_lvgd_1172130000_6,BranchTee_mvgd_33532_lvgd_1172130000_4,BranchTee_mvgd_33532_lvgd_1172130000_6,0.1310459785138834,0.11374790935005077,0.011156882559644124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039417400000005 47.522368396241106, 10.039368299999998 47.52231289624109, 10.039200000000003 47.5221774962411, 10.03895939999999 47.52206639624111, 10.038673999999995 47.52193949624107, 10.038411299999995 47.521815196241114, 10.038031700000007 47.52167859624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_4_LVStation_mvgd_33532_lvgd_1172130000,BusBar_mvgd_33532_lvgd_1172130000_LV,BranchTee_mvgd_33532_lvgd_1172130000_4,0.06638337159547605,0.05762076654487321,0.0056516917894239484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039417400000005 47.522368396241106, 10.039869100000004 47.52235589624108, 10.040014799999993 47.52235189624114, 10.040297599999995 47.522345496241094)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_5_LVCableDist_mvgd_33532_lvgd_1172130000_building_444596,BranchTee_mvgd_33532_lvgd_1172130000_5,BranchTee_mvgd_33532_lvgd_1172130000_building_444596,0.027149552323012974,0.023565811416375263,0.0023114358048208134,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039899748014024 47.52278719177581, 10.039540199999996 47.52277189624116)" -Branch_LVCableDist_mvgd_33532_lvgd_1172130000_6_LVCableDist_mvgd_33532_lvgd_1172130000_building_444574,BranchTee_mvgd_33532_lvgd_1172130000_6,BranchTee_mvgd_33532_lvgd_1172130000_building_444574,0.010254787579662614,0.00890115561914715,0.0008730635002910213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038022831644493 47.521586494878775, 10.038031700000007 47.52167859624104)" -Branch_LVCableDist_mvgd_33532_lvgd_1172140000_1_LVCableDist_mvgd_33532_lvgd_1172140000_building_444617,BranchTee_mvgd_33532_lvgd_1172140000_1,BranchTee_mvgd_33532_lvgd_1172140000_building_444617,0.010200711792594665,0.00885421783597217,0.0008684596413059589,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04586895827317 47.524112767798755, 10.046000599999996 47.52409139624131)" -Branch_LVCableDist_mvgd_33532_lvgd_1172140000_1_LVCableDist_mvgd_33532_lvgd_1172140000_building_444618,BranchTee_mvgd_33532_lvgd_1172140000_1,BranchTee_mvgd_33532_lvgd_1172140000_building_444618,0.028743707742997768,0.024949538320922064,0.0024471576713312473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04596457672215 47.523833847140395, 10.046000599999996 47.52409139624131)" -Branch_LVCableDist_mvgd_33532_lvgd_1172140000_1_LVCableDist_mvgd_33532_lvgd_1172140000_building_444619,BranchTee_mvgd_33532_lvgd_1172140000_1,BranchTee_mvgd_33532_lvgd_1172140000_building_444619,0.017334718829445706,0.015046535943958873,0.001475828746351708,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.046066294381768 47.52394187363385, 10.046000599999996 47.52409139624131)" -Branch_LVCableDist_mvgd_33532_lvgd_1172140000_1_LVStation_mvgd_33532_lvgd_1172140000,BusBar_mvgd_33532_lvgd_1172140000_LV,BranchTee_mvgd_33532_lvgd_1172140000_1,0.01089694703805134,0.009458550029028564,0.000927735133431207,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.046000599999996 47.52409139624131, 10.045975599999997 47.52399479624128)" -Branch_LVCableDist_mvgd_33532_lvgd_1172410000_1_LVCableDist_mvgd_33532_lvgd_1172410000_building_444988,BranchTee_mvgd_33532_lvgd_1172410000_1,BranchTee_mvgd_33532_lvgd_1172410000_building_444988,0.05081248086454477,0.04410523339042486,0.004326030359717069,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036075699999557 47.547843446249765, 10.036733600000005 47.547742396243365)" -Branch_LVCableDist_mvgd_33532_lvgd_1172410000_1_LVCableDist_mvgd_33532_lvgd_1172410000_building_444990,BranchTee_mvgd_33532_lvgd_1172410000_1,BranchTee_mvgd_33532_lvgd_1172410000_building_444990,0.0375029852540318,0.0325525912004996,0.003192897690263497,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036358226693853 47.547964142025236, 10.036733600000005 47.547742396243365)" -Branch_LVCableDist_mvgd_33532_lvgd_1172410000_1_LVCableDist_mvgd_33532_lvgd_1172410000_building_444991,BranchTee_mvgd_33532_lvgd_1172410000_1,BranchTee_mvgd_33532_lvgd_1172410000_building_444991,0.01716904428358689,0.014902730438153421,0.0014617236858818568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036708296535181 47.547895968438084, 10.036733600000005 47.547742396243365)" -Branch_LVCableDist_mvgd_33532_lvgd_1172410000_1_LVStation_mvgd_33532_lvgd_1172410000,BusBar_mvgd_33532_lvgd_1172410000_LV,BranchTee_mvgd_33532_lvgd_1172410000_1,0.05739881367074498,0.049822170266206646,0.004886772035660388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036733600000005 47.547742396243365, 10.036562200000008 47.54771059624336, 10.036414800000001 47.547711096243404, 10.036306599999996 47.54777099624341, 10.036098400000006 47.5479147962434)" -Branch_LVCableDist_mvgd_33532_lvgd_1172450000_building_444513_LVStation_mvgd_33532_lvgd_1172450000,BusBar_mvgd_33532_lvgd_1172450000_LV,BranchTee_mvgd_33532_lvgd_1172450000_building_444513,0.02694438223679172,0.023387723781535214,0.0022939682061758073,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029424200021836 47.52213244629488, 10.029131799999996 47.52199289624106)" -Branch_LVCableDist_mvgd_33532_lvgd_1172500000_building_444532_LVStation_mvgd_33532_lvgd_1172500000,BusBar_mvgd_33532_lvgd_1172500000_LV,BranchTee_mvgd_33532_lvgd_1172500000_building_444532,0.03247891036843171,0.028191694199798722,0.0027651622182928003,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032539424906318 47.51981720167042, 10.032533199999994 47.5201094962409)" -Branch_LVCableDist_mvgd_33532_lvgd_1172500000_building_444538_LVStation_mvgd_33532_lvgd_1172500000,BusBar_mvgd_33532_lvgd_1172500000_LV,BranchTee_mvgd_33532_lvgd_1172500000_building_444538,0.017757925635612872,0.015413879451711974,0.0015118593723075357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032385631534533 47.519984896394725, 10.032533199999994 47.5201094962409)" -Branch_LVCableDist_mvgd_33532_lvgd_1173000000_building_444976_LVStation_mvgd_33532_lvgd_1173000000,BusBar_mvgd_33532_lvgd_1173000000_LV,BranchTee_mvgd_33532_lvgd_1173000000_building_444976,0.021869549909770174,0.018982769321680512,0.0018619113897473164,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033094871681627 47.54788727096989, 10.032806700000002 47.54786329624343)" -Branch_LVCableDist_mvgd_33532_lvgd_1175770000_building_445955_LVStation_mvgd_33532_lvgd_1175770000,BusBar_mvgd_33532_lvgd_1175770000_LV,BranchTee_mvgd_33532_lvgd_1175770000_building_445955,0.016754195914448093,0.014542642053740945,0.0014264046735242885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041225318939833 47.54934303783623, 10.041373199999999 47.5492303962435)" -Branch_LVCableDist_mvgd_33532_lvgd_1175770000_building_446232_LVStation_mvgd_33532_lvgd_1175770000,BusBar_mvgd_33532_lvgd_1175770000_LV,BranchTee_mvgd_33532_lvgd_1175770000_building_446232,0.020398358014770673,0.017705774756820943,0.0017366582886498966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041548768597277 47.54909061181894, 10.041373199999999 47.5492303962435)" -Branch_LVCableDist_mvgd_33532_lvgd_1176030000_1_LVCableDist_mvgd_33532_lvgd_1176030000_building_444612,BranchTee_mvgd_33532_lvgd_1176030000_1,BranchTee_mvgd_33532_lvgd_1176030000_building_444612,0.009409483758357071,0.008167431902253938,0.0008010967328367632,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043510500001982 47.51905109625182, 10.043629599999994 47.519076496240814)" -Branch_LVCableDist_mvgd_33532_lvgd_1176030000_1_LVStation_mvgd_33532_lvgd_1176030000,BusBar_mvgd_33532_lvgd_1176030000_LV,BranchTee_mvgd_33532_lvgd_1176030000_1,0.044254113641640946,0.03841257064094434,0.0037676695941388613,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043629599999994 47.519076496240814, 10.043569200000004 47.519142596240854, 10.043429700000006 47.5192810962408, 10.0433253 47.51941649624082)" -Branch_LVCableDist_mvgd_33532_lvgd_1176030000_2_LVCableDist_mvgd_33532_lvgd_1176030000_building_34328622,BranchTee_mvgd_33532_lvgd_1176030000_2,BranchTee_mvgd_33532_lvgd_1176030000_building_34328622,0.10788035561756466,0.09364014867604613,0.009184627195486959,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044273288172517 47.52003432301617, 10.043900303550402 47.519096897780706)" -Branch_LVCableDist_mvgd_33532_lvgd_1176030000_2_LVCableDist_mvgd_33532_lvgd_1176030000_building_34328623,BranchTee_mvgd_33532_lvgd_1176030000_2,BranchTee_mvgd_33532_lvgd_1176030000_building_34328623,0.13173305018775877,0.11434428756297461,0.011215377891301124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045060002523103 47.51998398147169, 10.043900303550402 47.519096897780706)" -Branch_LVCableDist_mvgd_33532_lvgd_1176030000_2_LVCableDist_mvgd_33532_lvgd_1176030000_building_34328624,BranchTee_mvgd_33532_lvgd_1176030000_2,BranchTee_mvgd_33532_lvgd_1176030000_building_34328624,0.150676070350126,0.13078682906390937,0.012828132847029213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045048120618564 47.52020725732455, 10.043900303550402 47.519096897780706)" -Branch_LVCableDist_mvgd_33532_lvgd_1176030000_2_LVStation_mvgd_33532_lvgd_1176030000,BusBar_mvgd_33532_lvgd_1176030000_LV,BranchTee_mvgd_33532_lvgd_1176030000_2,0.05602579041406176,0.04863038607940561,0.004769876733719841,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043900303550402 47.519096897780706, 10.0433253 47.51941649624082)" -Branch_LVCableDist_mvgd_33532_lvgd_1176040000_building_444610_LVStation_mvgd_33532_lvgd_1176040000,BusBar_mvgd_33532_lvgd_1176040000_LV,BranchTee_mvgd_33532_lvgd_1176040000_building_444610,0.04885760525409628,0.04240840136055557,0.0041595978003068175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045760447689958 47.51740787622341, 10.0458033 47.51696909624063)" -Branch_LVCableDist_mvgd_33532_lvgd_1176170000_1_LVCableDist_mvgd_33532_lvgd_1176170000_building_444839,BranchTee_mvgd_33532_lvgd_1176170000_1,BranchTee_mvgd_33532_lvgd_1176170000_building_444839,0.39310965229659833,0.3412191781934473,0.033468239723747274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037626799994149 47.53304354633651, 10.042069299999998 47.53118829624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1176170000_1_LVCableDist_mvgd_33532_lvgd_1176170000_building_444847,BranchTee_mvgd_33532_lvgd_1176170000_1,BranchTee_mvgd_33532_lvgd_1176170000_building_444847,0.2852865688940114,0.24762874180000188,0.024288488522042673,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039897974412513 47.533291827955765, 10.042069299999998 47.53118829624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1176170000_1_LVCableDist_mvgd_33532_lvgd_1176170000_building_445006,BranchTee_mvgd_33532_lvgd_1176170000_1,BranchTee_mvgd_33532_lvgd_1176170000_building_445006,0.02042915765448903,0.017732508844096478,0.0017392804825326386,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04190014998923 47.53133199636196, 10.042069299999998 47.53118829624196)" -Branch_LVCableDist_mvgd_33532_lvgd_1176170000_1_LVStation_mvgd_33532_lvgd_1176170000,BusBar_mvgd_33532_lvgd_1176170000_LV,BranchTee_mvgd_33532_lvgd_1176170000_1,0.32961326800662577,0.28610431662975117,0.028062337837103695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042069299999998 47.53118829624196, 10.041674000000004 47.531042896241935, 10.0415141 47.5310170962419, 10.041385699999996 47.531024696241886, 10.041275500000001 47.5310436962419, 10.0411722 47.531102896241904, 10.041078699999998 47.53123739624192, 10.04086973061229 47.53170072200155, 10.040660757483135 47.53216404725482, 10.04045178061242 47.53262737200165, 10.040242799999996 47.53309069624208, 10.040137799999998 47.53328529624212)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_10_LVCableDist_mvgd_33532_lvgd_1176270000_11,BranchTee_mvgd_33532_lvgd_1176270000_10,BranchTee_mvgd_33532_lvgd_1176270000_11,0.015099571261480173,0.01310642785496479,0.0012855346281951277,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0428453 47.53876969624257, 10.043044899999991 47.53875739624261)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_10_LVCableDist_mvgd_33532_lvgd_1176270000_15,BranchTee_mvgd_33532_lvgd_1176270000_10,BranchTee_mvgd_33532_lvgd_1176270000_15,0.11936367617564093,0.10360767092045634,0.010162284505647231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0428453 47.53876969624257, 10.0427756 47.538791596242575, 10.042505800000006 47.5389587962426, 10.042463499999998 47.53897129624261, 10.042418700000002 47.538963296242564, 10.042260900000004 47.53889839624256, 10.042239000000004 47.53886489624261, 10.0422621 47.53876549624258, 10.042259900000003 47.53870599624258, 10.042209700000003 47.53868199624258, 10.0419019 47.538660096242616, 10.041793299999998 47.53854309624258)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_10_LVCableDist_mvgd_33532_lvgd_1176270000_building_34328659,BranchTee_mvgd_33532_lvgd_1176270000_10,BranchTee_mvgd_33532_lvgd_1176270000_building_34328659,0.06178594515511148,0.053630200394636764,0.005260279954788244,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04271659751244 47.53822049173024, 10.0428453 47.53876969624257)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_11_LVCableDist_mvgd_33532_lvgd_1176270000_building_34328658,BranchTee_mvgd_33532_lvgd_1176270000_11,BranchTee_mvgd_33532_lvgd_1176270000_building_34328658,0.07530393639091613,0.0653638167873152,0.006411163349841781,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043325792000617 47.53810694274424, 10.043044899999991 47.53875739624261)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_12_LVCableDist_mvgd_33532_lvgd_1176270000_14,BranchTee_mvgd_33532_lvgd_1176270000_12,BranchTee_mvgd_33532_lvgd_1176270000_14,0.0179323337006611,0.015565265652173836,0.0015267079798059466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041452799999995 47.538151896242546, 10.041587799999997 47.53812369624253, 10.041673000000005 47.538092596242514)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_12_LVCableDist_mvgd_33532_lvgd_1176270000_building_444983,BranchTee_mvgd_33532_lvgd_1176270000_12,BranchTee_mvgd_33532_lvgd_1176270000_building_444983,0.014682203914969076,0.012744152998193158,0.0012500011572556795,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041417181820865 47.53828181609229, 10.041452799999995 47.538151896242546)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_13_LVCableDist_mvgd_33532_lvgd_1176270000_14,BranchTee_mvgd_33532_lvgd_1176270000_13,BranchTee_mvgd_33532_lvgd_1176270000_14,0.08452109862502839,0.07336431360652465,0.0071958863741220175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041673000000005 47.538092596242514, 10.041990899999998 47.53793449624251, 10.042268699999996 47.53775219624252, 10.042364400000002 47.53764879624254, 10.0424287 47.537548696242524)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_13_LVCableDist_mvgd_33532_lvgd_1176270000_building_34328660,BranchTee_mvgd_33532_lvgd_1176270000_13,BranchTee_mvgd_33532_lvgd_1176270000_building_34328660,0.0805845616636919,0.06994739952408457,0.0068607407934075625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043384822583384 47.537873808057206, 10.0424287 47.537548696242524)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_13_LVStation_mvgd_33532_lvgd_1176270000,BusBar_mvgd_33532_lvgd_1176270000_LV,BranchTee_mvgd_33532_lvgd_1176270000_13,0.04629402963112279,0.04018321771981458,0.003941342249982918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0424287 47.537548696242524, 10.042514499999998 47.53735159624248, 10.042497799999998 47.537197396242405, 10.042503699999997 47.537140996242435)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_14_LVCableDist_mvgd_33532_lvgd_1176270000_15,BranchTee_mvgd_33532_lvgd_1176270000_14,BranchTee_mvgd_33532_lvgd_1176270000_15,0.05209168357682657,0.045215581344685465,0.004434938046872034,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041793299999998 47.53854309624258, 10.041787300000005 47.53827419624253, 10.041774100000003 47.53821719624254, 10.041673000000005 47.538092596242514)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_15_LVCableDist_mvgd_33532_lvgd_1176270000_building_445019,BranchTee_mvgd_33532_lvgd_1176270000_15,BranchTee_mvgd_33532_lvgd_1176270000_building_445019,0.02100529753783567,0.018232598262841362,0.0017883313964891059,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04206669960398 47.53850602997704, 10.041793299999998 47.53854309624258)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_16_LVCableDist_mvgd_33532_lvgd_1176270000_18,BranchTee_mvgd_33532_lvgd_1176270000_16,BranchTee_mvgd_33532_lvgd_1176270000_18,0.05875388577391186,0.05099837285175549,0.005002139027355452,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040022499999992 47.536024796242394, 10.040196999999996 47.53600129624234, 10.040258800000004 47.53599289624235, 10.040532200000003 47.536307796242376)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_16_LVCableDist_mvgd_33532_lvgd_1176270000_building_34328652,BranchTee_mvgd_33532_lvgd_1176270000_16,BranchTee_mvgd_33532_lvgd_1176270000_building_34328652,0.0574416604950129,0.049859361309671196,0.004890419892632666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041214680154853 47.53607734556965, 10.040532200000003 47.536307796242376)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_16_LVStation_mvgd_33532_lvgd_1176270000,BusBar_mvgd_33532_lvgd_1176270000_LV,BranchTee_mvgd_33532_lvgd_1176270000_16,0.19776039037121734,0.17165601884221665,0.016836758177110313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040532200000003 47.536307796242376, 10.040624299999996 47.53646269624237, 10.040684200000003 47.536559796242386, 10.040779199999992 47.536665796242396, 10.040971099999995 47.536809696242365, 10.041176299999998 47.536996796242384, 10.0413462 47.53710219624245, 10.041456999999996 47.53714129624244, 10.041554499999997 47.53716469624244, 10.041822800000002 47.53717679624242, 10.042503699999997 47.537140996242435)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_17_LVCableDist_mvgd_33532_lvgd_1176270000_18,BranchTee_mvgd_33532_lvgd_1176270000_17,BranchTee_mvgd_33532_lvgd_1176270000_18,0.008408252075499834,0.007298362801533856,0.0007158547099428703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040022499999992 47.536024796242394, 10.039934800000001 47.53597799624236)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_17_LVCableDist_mvgd_33532_lvgd_1176270000_building_444849,BranchTee_mvgd_33532_lvgd_1176270000_17,BranchTee_mvgd_33532_lvgd_1176270000_building_444849,0.018075117841804426,0.015689202286686244,0.0015388642162061882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03969852034931 47.53594982441468, 10.039934800000001 47.53597799624236)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_18_LVCableDist_mvgd_33532_lvgd_1176270000_building_444853,BranchTee_mvgd_33532_lvgd_1176270000_18,BranchTee_mvgd_33532_lvgd_1176270000_building_444853,0.023577225805942233,0.020465031999557858,0.0020072980673057446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04006238736667 47.53623526902197, 10.040022499999992 47.536024796242394)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_1_LVCableDist_mvgd_33532_lvgd_1176270000_2,BranchTee_mvgd_33532_lvgd_1176270000_1,BranchTee_mvgd_33532_lvgd_1176270000_2,0.0948807740966622,0.08235651191590278,0.00807787973174954,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043892200000004 47.5366046962424, 10.043788300000003 47.536513796242374, 10.043692599999993 47.536449096242386, 10.0435838 47.53640929624238, 10.043391 47.5364408962424, 10.043056700000001 47.536584096242414, 10.042870899999995 47.53668409624241)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_1_LVCableDist_mvgd_33532_lvgd_1176270000_building_34328653,BranchTee_mvgd_33532_lvgd_1176270000_1,BranchTee_mvgd_33532_lvgd_1176270000_building_34328653,0.09477491069291656,0.08226462248145157,0.008068866822110126,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041926615420305 47.536120540616416, 10.042870899999995 47.53668409624241)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_1_LVCableDist_mvgd_33532_lvgd_1176270000_building_34328654,BranchTee_mvgd_33532_lvgd_1176270000_1,BranchTee_mvgd_33532_lvgd_1176270000_building_34328654,0.09112389376980135,0.07909553979218757,0.0077580296068333965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042038750178303 47.53608893817889, 10.042870899999995 47.53668409624241)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_1_LVStation_mvgd_33532_lvgd_1176270000,BusBar_mvgd_33532_lvgd_1176270000_LV,BranchTee_mvgd_33532_lvgd_1176270000_1,0.057915872287861846,0.05027097714586408,0.0049307929383469494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042870899999995 47.53668409624241, 10.042715699999995 47.53684699624241, 10.042611200000001 47.53698449624242, 10.042503699999997 47.537140996242435)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_2_LVCableDist_mvgd_33532_lvgd_1176270000_3,BranchTee_mvgd_33532_lvgd_1176270000_2,BranchTee_mvgd_33532_lvgd_1176270000_3,0.026465919360128445,0.022972418004591492,0.002253233235254772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044170600000003 47.536747496242405, 10.044025999999999 47.53668999624234, 10.043892200000004 47.5366046962424)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_2_LVCableDist_mvgd_33532_lvgd_1176270000_building_445017,BranchTee_mvgd_33532_lvgd_1176270000_2,BranchTee_mvgd_33532_lvgd_1176270000_building_445017,0.02843372623372428,0.024680474370872674,0.002420766725696398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043556399990953 47.536721496274566, 10.043892200000004 47.5366046962424)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_2_LVCableDist_mvgd_33532_lvgd_1176270000_building_445027,BranchTee_mvgd_33532_lvgd_1176270000_2,BranchTee_mvgd_33532_lvgd_1176270000_building_445027,0.014016155505177392,0.012166022978493975,0.0011932956866158744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04371820685196 47.53664934542272, 10.043892200000004 47.5366046962424)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_3_LVCableDist_mvgd_33532_lvgd_1176270000_4,BranchTee_mvgd_33532_lvgd_1176270000_3,BranchTee_mvgd_33532_lvgd_1176270000_4,0.06024402672302976,0.052291815195589834,0.005129005397122486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044868999999997 47.53701069624246, 10.044679999999998 47.536949996242434, 10.044170600000003 47.536747496242405)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_3_LVCableDist_mvgd_33532_lvgd_1176270000_5,BranchTee_mvgd_33532_lvgd_1176270000_3,BranchTee_mvgd_33532_lvgd_1176270000_5,0.02439641538857083,0.02117608855727948,0.002077041542619662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044170600000003 47.536747496242405, 10.0440461 47.53695019624244)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_4_LVCableDist_mvgd_33532_lvgd_1176270000_6,BranchTee_mvgd_33532_lvgd_1176270000_4,BranchTee_mvgd_33532_lvgd_1176270000_6,0.02302377723249361,0.019984638637804454,0.0019601790270513757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044868999999997 47.53701069624246, 10.044979500000002 47.53720389624246)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_4_LVCableDist_mvgd_33532_lvgd_1176270000_8,BranchTee_mvgd_33532_lvgd_1176270000_4,BranchTee_mvgd_33532_lvgd_1176270000_8,0.11337996513514514,0.09841380973730599,0.009652848335939934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045623200000001 47.53777139624254, 10.045561800000002 47.53761119624248, 10.045504300000001 47.53757289624247, 10.045459100000004 47.537537496242514, 10.045373399999997 47.53747429624246, 10.045266999999999 47.5371029962424, 10.045135399999998 47.537096196242466, 10.044868999999997 47.53701069624246)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_5_LVCableDist_mvgd_33532_lvgd_1176270000_building_445031,BranchTee_mvgd_33532_lvgd_1176270000_5,BranchTee_mvgd_33532_lvgd_1176270000_building_445031,0.014448386926475359,0.012541199852180612,0.0012300946426822645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04389519784497 47.537030446760255, 10.0440461 47.53695019624244)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_6_LVCableDist_mvgd_33532_lvgd_1176270000_7,BranchTee_mvgd_33532_lvgd_1176270000_6,BranchTee_mvgd_33532_lvgd_1176270000_7,0.030169837247921754,0.026187418731196083,0.002568574288473716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044979500000002 47.53720389624246, 10.045081400000008 47.53746649624248)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_6_LVCableDist_mvgd_33532_lvgd_1176270000_9,BranchTee_mvgd_33532_lvgd_1176270000_6,BranchTee_mvgd_33532_lvgd_1176270000_9,0.03954092144951923,0.03432151981818269,0.003366401792067677,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044628100000002 47.53740489624244, 10.044775599999994 47.53741029624242, 10.044834600000003 47.5372961962425, 10.044979500000002 47.53720389624246)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_6_LVCableDist_mvgd_33532_lvgd_1176270000_building_445056,BranchTee_mvgd_33532_lvgd_1176270000_6,BranchTee_mvgd_33532_lvgd_1176270000_building_445056,0.013001433695645593,0.011285244447820374,0.0011069051526365623,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045144799994493 47.53723749627302, 10.044979500000002 47.53720389624246)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_7_LVCableDist_mvgd_33532_lvgd_1176270000_building_445061,BranchTee_mvgd_33532_lvgd_1176270000_7,BranchTee_mvgd_33532_lvgd_1176270000_building_445061,0.01524137308082162,0.013229511834153166,0.0012976072325060549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045176849994494 47.53734554627292, 10.045081400000008 47.53746649624248)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_8_LVCableDist_mvgd_33532_lvgd_1176270000_building_445065,BranchTee_mvgd_33532_lvgd_1176270000_8,BranchTee_mvgd_33532_lvgd_1176270000_building_445065,0.013845868173763182,0.012018213574826441,0.0011787979066799396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045439803406266 47.53776337565402, 10.045623200000001 47.53777139624254)" -Branch_LVCableDist_mvgd_33532_lvgd_1176270000_9_LVCableDist_mvgd_33532_lvgd_1176270000_building_445051,BranchTee_mvgd_33532_lvgd_1176270000_9,BranchTee_mvgd_33532_lvgd_1176270000_building_445051,0.011791611093237524,0.01023511842893017,0.001003904291060029,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044657921553679 47.537300711277254, 10.044628100000002 47.53740489624244)" -Branch_LVCableDist_mvgd_33532_lvgd_1181890000_1_LVCableDist_mvgd_33532_lvgd_1181890000_building_34328685,BranchTee_mvgd_33532_lvgd_1181890000_1,BranchTee_mvgd_33532_lvgd_1181890000_building_34328685,0.03209587002366149,0.02785921518053817,0.0027325512508242014,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055887305887195 47.55139465912342, 10.055750299999996 47.551668196243746)" -Branch_LVCableDist_mvgd_33532_lvgd_1181890000_1_LVCableDist_mvgd_33532_lvgd_1181890000_building_34328686,BranchTee_mvgd_33532_lvgd_1181890000_1,BranchTee_mvgd_33532_lvgd_1181890000_building_34328686,0.01851516540479239,0.016071163571359796,0.0015763286163853526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055987955138754 47.55171078520471, 10.055750299999996 47.551668196243746)" -Branch_LVCableDist_mvgd_33532_lvgd_1181890000_1_LVCableDist_mvgd_33532_lvgd_1181890000_building_34328687,BranchTee_mvgd_33532_lvgd_1181890000_1,BranchTee_mvgd_33532_lvgd_1181890000_building_34328687,0.08991945792235206,0.0780500894766016,0.007655487358280585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.056941896860488 47.55171768968559, 10.055750299999996 47.551668196243746)" -Branch_LVCableDist_mvgd_33532_lvgd_1181890000_1_LVStation_mvgd_33532_lvgd_1181890000,BusBar_mvgd_33532_lvgd_1181890000_LV,BranchTee_mvgd_33532_lvgd_1181890000_1,0.029667039777988295,0.02575099052729384,0.002525767539369702,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055750299999996 47.551668196243746, 10.0559142 47.551425396243694)" -Branch_LVCableDist_mvgd_33532_lvgd_1182040000_1_LVCableDist_mvgd_33532_lvgd_1182040000_building_446320,BranchTee_mvgd_33532_lvgd_1182040000_1,BranchTee_mvgd_33532_lvgd_1182040000_building_446320,0.04198093949793807,0.036439455484210244,0.0035741380012847875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0605918789901 47.55082229963759, 10.060847100000002 47.55115819624369)" -Branch_LVCableDist_mvgd_33532_lvgd_1182040000_1_LVCableDist_mvgd_33532_lvgd_1182040000_building_446321,BranchTee_mvgd_33532_lvgd_1182040000_1,BranchTee_mvgd_33532_lvgd_1182040000_building_446321,0.014152247825879295,0.012284151112863228,0.0012048822004223985,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.060666766945138 47.551122431537664, 10.060847100000002 47.55115819624369)" -Branch_LVCableDist_mvgd_33532_lvgd_1182040000_1_LVCableDist_mvgd_33532_lvgd_1182040000_building_446325,BranchTee_mvgd_33532_lvgd_1182040000_1,BranchTee_mvgd_33532_lvgd_1182040000_building_446325,0.020525585667054178,0.017816208359003025,0.0017474900897548496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06090809999781 47.5509781462554, 10.060847100000002 47.55115819624369)" -Branch_LVCableDist_mvgd_33532_lvgd_1182040000_1_LVStation_mvgd_33532_lvgd_1182040000,BusBar_mvgd_33532_lvgd_1182040000_LV,BranchTee_mvgd_33532_lvgd_1182040000_1,0.033234885592362026,0.028847880694170238,0.002829523802578255,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.060847100000002 47.55115819624369, 10.061142999999996 47.5509362962437)" -Branch_LVCableDist_mvgd_33532_lvgd_1182040000_2_LVCableDist_mvgd_33532_lvgd_1182040000_building_446324,BranchTee_mvgd_33532_lvgd_1182040000_2,BranchTee_mvgd_33532_lvgd_1182040000_building_446324,0.01880830202707421,0.016325606159500416,0.001601285436165843,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.061474533859258 47.55086795747276, 10.061261999999997 47.55077909624365)" -Branch_LVCableDist_mvgd_33532_lvgd_1182040000_2_LVStation_mvgd_33532_lvgd_1182040000,BusBar_mvgd_33532_lvgd_1182040000_LV,BranchTee_mvgd_33532_lvgd_1182040000_2,0.019631469654625026,0.017040115660214523,0.0016713675909304196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.061142999999996 47.5509362962437, 10.061261999999997 47.55077909624365)" -Branch_LVCableDist_mvgd_33532_lvgd_1184350000_building_445053_LVStation_mvgd_33532_lvgd_1184350000,BusBar_mvgd_33532_lvgd_1184350000_LV,BranchTee_mvgd_33532_lvgd_1184350000_building_445053,0.017977218281424453,0.015604225468276426,0.0015305293255808766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065421500002595 47.50913729628133, 10.065379699999998 47.50929659623996)" -Branch_LVCableDist_mvgd_33532_lvgd_1184350000_building_445054_LVStation_mvgd_33532_lvgd_1184350000,BusBar_mvgd_33532_lvgd_1184350000_LV,BranchTee_mvgd_33532_lvgd_1184350000_building_445054,0.018606310822534916,0.01615027779396031,0.0015840884784821152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065171372422327 47.50938641432082, 10.065379699999998 47.50929659623996)" -Branch_LVCableDist_mvgd_33532_lvgd_1184830000_building_444439_LVStation_mvgd_33532_lvgd_1184830000,BusBar_mvgd_33532_lvgd_1184830000_LV,BranchTee_mvgd_33532_lvgd_1184830000_building_444439,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.066793690589224 47.496823412565696, 10.066793690589224 47.496823412565696)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_10_LVCableDist_mvgd_33532_lvgd_1185800000_5,BranchTee_mvgd_33532_lvgd_1185800000_5,BranchTee_mvgd_33532_lvgd_1185800000_10,0.027099405895289124,0.02352228431711096,0.0023071664803345116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077770300000001 47.46036909623536, 10.077858099999997 47.4603042962354, 10.0780289 47.46020019623542)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_10_LVCableDist_mvgd_33532_lvgd_1185800000_building_422708,BranchTee_mvgd_33532_lvgd_1185800000_10,BranchTee_mvgd_33532_lvgd_1185800000_building_422708,0.020220195241136125,0.017551129469306155,0.0017214900159223934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078029088294167 47.460018199860365, 10.0780289 47.46020019623542)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_10_LVCableDist_mvgd_33532_lvgd_1185800000_building_422756,BranchTee_mvgd_33532_lvgd_1185800000_10,BranchTee_mvgd_33532_lvgd_1185800000_building_422756,0.05103605557268055,0.04429929623708672,0.004345064875619542,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077558718005715 47.4598699799227, 10.0780289 47.46020019623542)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_10_LVStation_mvgd_33532_lvgd_1185800000,BusBar_mvgd_33532_lvgd_1185800000_LV,BranchTee_mvgd_33532_lvgd_1185800000_10,0.011345530316289404,0.009847920314539203,0.0009659262401731206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0780289 47.46020019623542, 10.0781729 47.4601707962354)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_11_LVCableDist_mvgd_33532_lvgd_1185800000_building_422706,BranchTee_mvgd_33532_lvgd_1185800000_11,BranchTee_mvgd_33532_lvgd_1185800000_building_422706,0.021690926092688235,0.01882772384845339,0.001846703865089645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07500087533002 47.45990087202393, 10.074820499999996 47.46005289623538)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_11_LVCableDist_mvgd_33532_lvgd_1185800000_building_422707,BranchTee_mvgd_33532_lvgd_1185800000_11,BranchTee_mvgd_33532_lvgd_1185800000_building_422707,0.02012063136735905,0.017464708026867656,0.0017130134303795842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074599950011214 47.46015469625085, 10.074820499999996 47.46005289623538)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_12_LVCableDist_mvgd_33532_lvgd_1185800000_13,BranchTee_mvgd_33532_lvgd_1185800000_12,BranchTee_mvgd_33532_lvgd_1185800000_13,0.019983190788266766,0.01734540960421555,0.0017013121296815272,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078357000000002 47.460046296235426, 10.078551200000003 47.45992399623537)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_12_LVCableDist_mvgd_33532_lvgd_1185800000_building_422710,BranchTee_mvgd_33532_lvgd_1185800000_12,BranchTee_mvgd_33532_lvgd_1185800000_building_422710,0.019513472007608605,0.01693769370260427,0.0016613216062691116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07846711761433 47.460205212225645, 10.078357000000002 47.460046296235426)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_12_LVStation_mvgd_33532_lvgd_1185800000,BusBar_mvgd_33532_lvgd_1185800000_LV,BranchTee_mvgd_33532_lvgd_1185800000_12,0.019602978229404065,0.01701538510312273,0.0016689419118767624,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0781729 47.4601707962354, 10.078357000000002 47.460046296235426)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_13_LVCableDist_mvgd_33532_lvgd_1185800000_14,BranchTee_mvgd_33532_lvgd_1185800000_13,BranchTee_mvgd_33532_lvgd_1185800000_14,0.04753868691517715,0.04126358024237377,0.004047308837456099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078551200000003 47.45992399623537, 10.078772199999998 47.45952329623531)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_13_LVCableDist_mvgd_33532_lvgd_1185800000_20,BranchTee_mvgd_33532_lvgd_1185800000_13,BranchTee_mvgd_33532_lvgd_1185800000_20,0.01869739873227398,0.016229342099613814,0.0015918434445107337,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078551200000003 47.45992399623537, 10.078798999999997 47.45992399623537)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_13_LVCableDist_mvgd_33532_lvgd_1185800000_building_422774,BranchTee_mvgd_33532_lvgd_1185800000_13,BranchTee_mvgd_33532_lvgd_1185800000_building_422774,0.017915800181411607,0.015550914557465274,0.0015253003629171562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078503818487986 47.4597659852931, 10.078551200000003 47.45992399623537)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_14_LVCableDist_mvgd_33532_lvgd_1185800000_15,BranchTee_mvgd_33532_lvgd_1185800000_14,BranchTee_mvgd_33532_lvgd_1185800000_15,0.012864461530452231,0.011166352608432536,0.0010952437313679912,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078772199999998 47.45952329623531, 10.0788333 47.45941519623528)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_14_LVCableDist_mvgd_33532_lvgd_1185800000_building_422723,BranchTee_mvgd_33532_lvgd_1185800000_14,BranchTee_mvgd_33532_lvgd_1185800000_building_422723,0.02683690095637273,0.02329443003013153,0.0022848175551097175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078452413762895 47.45941756872113, 10.078772199999998 47.45952329623531)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_14_LVCableDist_mvgd_33532_lvgd_1185800000_building_422727,BranchTee_mvgd_33532_lvgd_1185800000_14,BranchTee_mvgd_33532_lvgd_1185800000_building_422727,0.019377331543702716,0.016819523779933957,0.001649730993686883,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078567846235504 47.45941767170683, 10.078772199999998 47.45952329623531)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_15_LVCableDist_mvgd_33532_lvgd_1185800000_16,BranchTee_mvgd_33532_lvgd_1185800000_15,BranchTee_mvgd_33532_lvgd_1185800000_16,0.011102246636063658,0.009636750080103255,0.0009452137583424088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0788333 47.45941519623528, 10.078886000000006 47.45932189623534)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_15_LVCableDist_mvgd_33532_lvgd_1185800000_23,BranchTee_mvgd_33532_lvgd_1185800000_15,BranchTee_mvgd_33532_lvgd_1185800000_23,0.01532981522050149,0.013306279611395293,0.0013051369451834067,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0788333 47.45941519623528, 10.079023500000003 47.459463696235325)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_15_LVCableDist_mvgd_33532_lvgd_1185800000_building_422709,BranchTee_mvgd_33532_lvgd_1185800000_15,BranchTee_mvgd_33532_lvgd_1185800000_building_422709,0.01156898127547664,0.010041875747113724,0.0009849502204414484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078680057347183 47.45941859727809, 10.0788333 47.45941519623528)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_16_LVCableDist_mvgd_33532_lvgd_1185800000_17,BranchTee_mvgd_33532_lvgd_1185800000_16,BranchTee_mvgd_33532_lvgd_1185800000_17,0.01001330825374951,0.008691551564254574,0.0008525046360637675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078886000000006 47.45932189623534, 10.0789731 47.45925389623529)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_16_LVCableDist_mvgd_33532_lvgd_1185800000_building_422719,BranchTee_mvgd_33532_lvgd_1185800000_16,BranchTee_mvgd_33532_lvgd_1185800000_building_422719,0.029652277443401393,0.02573817682087241,0.002524510716114536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078578697836855 47.459155546621496, 10.078886000000006 47.45932189623534)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_16_LVCableDist_mvgd_33532_lvgd_1185800000_building_422740,BranchTee_mvgd_33532_lvgd_1185800000_16,BranchTee_mvgd_33532_lvgd_1185800000_building_422740,0.02231323752189075,0.01936789016900117,0.0018996856933752124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078692863257478 47.4591698155983, 10.078886000000006 47.45932189623534)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_17_LVCableDist_mvgd_33532_lvgd_1185800000_18,BranchTee_mvgd_33532_lvgd_1185800000_17,BranchTee_mvgd_33532_lvgd_1185800000_18,0.026583977006632894,0.02307489204175735,0.002263284328102147,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0789731 47.45925389623529, 10.079164000000004 47.45922219623532, 10.079314599999998 47.45919509623528)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_17_LVCableDist_mvgd_33532_lvgd_1185800000_building_422743,BranchTee_mvgd_33532_lvgd_1185800000_17,BranchTee_mvgd_33532_lvgd_1185800000_building_422743,0.0156885959893981,0.013617701318797552,0.0013356825212371903,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078792480021814 47.45918395283947, 10.0789731 47.45925389623529)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_18_LVCableDist_mvgd_33532_lvgd_1185800000_19,BranchTee_mvgd_33532_lvgd_1185800000_18,BranchTee_mvgd_33532_lvgd_1185800000_19,0.03250194897367767,0.028211691709152217,0.00276712365973482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079314599999998 47.45919509623528, 10.079636099999998 47.45900039623526)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_18_LVCableDist_mvgd_33532_lvgd_1185800000_building_422725,BranchTee_mvgd_33532_lvgd_1185800000_18,BranchTee_mvgd_33532_lvgd_1185800000_building_422725,0.02206630570804992,0.01915355335458733,0.0018786626198058836,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07927017917089 47.458998788936896, 10.079314599999998 47.45919509623528)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_19_LVCableDist_mvgd_33532_lvgd_1185800000_building_422728,BranchTee_mvgd_33532_lvgd_1185800000_19,BranchTee_mvgd_33532_lvgd_1185800000_building_422728,0.04613840317973024,0.040048133960005845,0.003928092655748502,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079209903541027 47.4587026229123, 10.079636099999998 47.45900039623526)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_19_LVCableDist_mvgd_33532_lvgd_1185800000_building_422729,BranchTee_mvgd_33532_lvgd_1185800000_19,BranchTee_mvgd_33532_lvgd_1185800000_building_422729,0.020059112484510873,0.017411309636555437,0.0017077758873513952,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079370618513785 47.45900980582938, 10.079636099999998 47.45900039623526)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_19_LVCableDist_mvgd_33532_lvgd_1185800000_building_422730,BranchTee_mvgd_33532_lvgd_1185800000_19,BranchTee_mvgd_33532_lvgd_1185800000_building_422730,0.04142498820726078,0.03595688976390236,0.0035268058867910035,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079325197217791 47.458693097638644, 10.079636099999998 47.45900039623526)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_19_LVCableDist_mvgd_33532_lvgd_1185800000_building_422734,BranchTee_mvgd_33532_lvgd_1185800000_19,BranchTee_mvgd_33532_lvgd_1185800000_building_422734,0.03830678555451062,0.033250289861315216,0.0032613309657867043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079426491866341 47.45868637160157, 10.079636099999998 47.45900039623526)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_1_LVCableDist_mvgd_33532_lvgd_1185800000_11,BranchTee_mvgd_33532_lvgd_1185800000_1,BranchTee_mvgd_33532_lvgd_1185800000_11,0.033540393221221265,0.029113061316020056,0.0028555338547363745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075233700000004 47.46016419623538, 10.074820499999996 47.46005289623538)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_1_LVCableDist_mvgd_33532_lvgd_1185800000_2,BranchTee_mvgd_33532_lvgd_1185800000_1,BranchTee_mvgd_33532_lvgd_1185800000_2,0.028721840904619825,0.024930557905210007,0.0024452959907936217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075233700000004 47.46016419623538, 10.075614099999996 47.460173696235366)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_1_LVCableDist_mvgd_33532_lvgd_1185800000_building_422713,BranchTee_mvgd_33532_lvgd_1185800000_1,BranchTee_mvgd_33532_lvgd_1185800000_building_422713,0.014693205702995222,0.012753702550199853,0.0012509378182531843,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075296654808081 47.460039047182285, 10.075233700000004 47.46016419623538)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_20_LVCableDist_mvgd_33532_lvgd_1185800000_21,BranchTee_mvgd_33532_lvgd_1185800000_20,BranchTee_mvgd_33532_lvgd_1185800000_21,0.05556403474360772,0.0482295821574515,0.004730564166902236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078798999999997 47.45992399623537, 10.079086900000002 47.459880996235384, 10.079321299999998 47.459785896235346, 10.079451900000006 47.45971349623531)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_20_LVCableDist_mvgd_33532_lvgd_1185800000_building_422716,BranchTee_mvgd_33532_lvgd_1185800000_20,BranchTee_mvgd_33532_lvgd_1185800000_building_422716,0.011495200460908352,0.00997783400006845,0.0009786687313593086,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078784279302987 47.459821015538786, 10.078798999999997 47.45992399623537)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_20_LVCableDist_mvgd_33532_lvgd_1185800000_building_422720,BranchTee_mvgd_33532_lvgd_1185800000_20,BranchTee_mvgd_33532_lvgd_1185800000_building_422720,0.014199061712197099,0.012324785566187081,0.0012088678017947666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078896610529696 47.45981472920969, 10.078798999999997 47.45992399623537)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_21_LVCableDist_mvgd_33532_lvgd_1185800000_building_422726,BranchTee_mvgd_33532_lvgd_1185800000_21,BranchTee_mvgd_33532_lvgd_1185800000_building_422726,0.010635786016171125,0.009231862262036537,0.0009055006254873747,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079391001238083 47.459627163075524, 10.079451900000006 47.45971349623531)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_22_LVCableDist_mvgd_33532_lvgd_1185800000_23,BranchTee_mvgd_33532_lvgd_1185800000_22,BranchTee_mvgd_33532_lvgd_1185800000_23,0.0246192273415232,0.021369489332442138,0.0020960111197113477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079336400000008 47.4595264962353, 10.079023500000003 47.459463696235325)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_22_LVCableDist_mvgd_33532_lvgd_1185800000_building_422721,BranchTee_mvgd_33532_lvgd_1185800000_22,BranchTee_mvgd_33532_lvgd_1185800000_building_422721,0.014068266379720569,0.012211255217597453,0.0011977322585271367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079249778228498 47.459414368751084, 10.079336400000008 47.4595264962353)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_22_LVCableDist_mvgd_33532_lvgd_1185800000_building_422747,BranchTee_mvgd_33532_lvgd_1185800000_22,BranchTee_mvgd_33532_lvgd_1185800000_building_422747,0.012870787450654413,0.01117184350716803,0.0010957823022541627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079454103315241 47.45944264608317, 10.079336400000008 47.4595264962353)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_23_LVCableDist_mvgd_33532_lvgd_1185800000_building_422715,BranchTee_mvgd_33532_lvgd_1185800000_23,BranchTee_mvgd_33532_lvgd_1185800000_building_422715,0.011566779624393207,0.010039964713973303,0.0009847627781188854,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079133260525836 47.45939101585434, 10.079023500000003 47.459463696235325)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_2_LVCableDist_mvgd_33532_lvgd_1185800000_3,BranchTee_mvgd_33532_lvgd_1185800000_2,BranchTee_mvgd_33532_lvgd_1185800000_3,0.11315770053181987,0.09822088406161965,0.009633925358641526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075614099999996 47.460173696235366, 10.07635794907672 47.4602379987739, 10.077101800000001 47.46030229623538)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_2_LVCableDist_mvgd_33532_lvgd_1185800000_building_422717,BranchTee_mvgd_33532_lvgd_1185800000_2,BranchTee_mvgd_33532_lvgd_1185800000_building_422717,0.026465531033193664,0.0229720809368121,0.002253200174202039,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075787060071402 47.45996645871115, 10.075614099999996 47.460173696235366)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_3_LVCableDist_mvgd_33532_lvgd_1185800000_4,BranchTee_mvgd_33532_lvgd_1185800000_3,BranchTee_mvgd_33532_lvgd_1185800000_4,0.03427383918611982,0.029749692413552006,0.0029179773618704078,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077101800000001 47.46030229623538, 10.077554000000008 47.46033149623539)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_3_LVCableDist_mvgd_33532_lvgd_1185800000_building_422765,BranchTee_mvgd_33532_lvgd_1185800000_3,BranchTee_mvgd_33532_lvgd_1185800000_building_422765,0.017673601190451835,0.015340685833312193,0.0015046802284510215,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077301850001898 47.46021954624326, 10.077101800000001 47.46030229623538)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_4_LVCableDist_mvgd_33532_lvgd_1185800000_5,BranchTee_mvgd_33532_lvgd_1185800000_4,BranchTee_mvgd_33532_lvgd_1185800000_5,0.016846758323410333,0.014622986224720169,0.0014342851742305354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077554000000008 47.46033149623539, 10.077770300000001 47.46036909623536)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_4_LVCableDist_mvgd_33532_lvgd_1185800000_building_422768,BranchTee_mvgd_33532_lvgd_1185800000_4,BranchTee_mvgd_33532_lvgd_1185800000_building_422768,0.020650615392225232,0.0179247341604515,0.001758134765585556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077502874360945 47.46014889862081, 10.077554000000008 47.46033149623539)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_4_LVCableDist_mvgd_33532_lvgd_1185800000_building_422771,BranchTee_mvgd_33532_lvgd_1185800000_4,BranchTee_mvgd_33532_lvgd_1185800000_building_422771,0.010714260931242406,0.009299978488318409,0.0009121817569593761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077616090451436 47.46024476651535, 10.077554000000008 47.46033149623539)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_5_LVCableDist_mvgd_33532_lvgd_1185800000_6,BranchTee_mvgd_33532_lvgd_1185800000_5,BranchTee_mvgd_33532_lvgd_1185800000_6,0.026155582337601055,0.022703045469037716,0.0022268120222308186,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077770300000001 47.46036909623536, 10.078043499999993 47.460513996235456)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_6_LVCableDist_mvgd_33532_lvgd_1185800000_7,BranchTee_mvgd_33532_lvgd_1185800000_6,BranchTee_mvgd_33532_lvgd_1185800000_7,0.19433896720159818,0.16868622353098722,0.016545467922169432,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078043499999993 47.460513996235456, 10.0781169 47.46061179623542, 10.078728699999992 47.46082559623546, 10.0788359 47.460863096235464, 10.079482800000001 47.46097899623545, 10.079988800000004 47.461054196235494, 10.080089800000007 47.46107309623548, 10.080243200000002 47.46111459623547, 10.080368300000004 47.46116889623547)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_6_LVCableDist_mvgd_33532_lvgd_1185800000_building_422714,BranchTee_mvgd_33532_lvgd_1185800000_6,BranchTee_mvgd_33532_lvgd_1185800000_building_422714,0.019416474246753412,0.016853499646181963,0.001653063492295052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078173794099834 47.460363288492225, 10.078043499999993 47.460513996235456)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_7_LVCableDist_mvgd_33532_lvgd_1185800000_8,BranchTee_mvgd_33532_lvgd_1185800000_7,BranchTee_mvgd_33532_lvgd_1185800000_8,0.04741700295284731,0.041157958563071466,0.004036949010374779,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080368300000004 47.46116889623547, 10.0805373 47.46125229623546, 10.080600900000006 47.46128369623553, 10.0807282 47.46134869623554, 10.080873399999998 47.461422796235524)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_7_LVCableDist_mvgd_33532_lvgd_1185800000_building_444323,BranchTee_mvgd_33532_lvgd_1185800000_7,BranchTee_mvgd_33532_lvgd_1185800000_building_444323,0.020047237893470193,0.017401002491532126,0.0017067649183831971,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08018690521597 47.46130074476384, 10.080368300000004 47.46116889623547)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_8_LVCableDist_mvgd_33532_lvgd_1185800000_9,BranchTee_mvgd_33532_lvgd_1185800000_8,BranchTee_mvgd_33532_lvgd_1185800000_9,0.012316253147715847,0.010690507732217356,0.001048570826073501,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080873399999998 47.461422796235524, 10.081013399999996 47.46147979623551)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_8_LVCableDist_mvgd_33532_lvgd_1185800000_building_444345,BranchTee_mvgd_33532_lvgd_1185800000_8,BranchTee_mvgd_33532_lvgd_1185800000_building_444345,0.03041983420654906,0.026404416091284584,0.0025898583197679504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080571400001068 47.4616041962422, 10.080873399999998 47.461422796235524)" -Branch_LVCableDist_mvgd_33532_lvgd_1185800000_9_LVCableDist_mvgd_33532_lvgd_1185800000_building_444348,BranchTee_mvgd_33532_lvgd_1185800000_9,BranchTee_mvgd_33532_lvgd_1185800000_building_444348,0.016013608509663813,0.01389981218638819,0.001363353164473559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080945793564062 47.4616164236589, 10.081013399999996 47.46147979623551)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_10_LVCableDist_mvgd_33532_lvgd_1185810000_2,BranchTee_mvgd_33532_lvgd_1185810000_2,BranchTee_mvgd_33532_lvgd_1185810000_10,0.05978317956989526,0.051891799866669086,0.005089770178890107,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085768499999995 47.462260596235595, 10.086533000000006 47.462401996235606)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_10_LVCableDist_mvgd_33532_lvgd_1185810000_building_444349,BranchTee_mvgd_33532_lvgd_1185810000_10,BranchTee_mvgd_33532_lvgd_1185810000_building_444349,0.018629250464039338,0.016170189402786146,0.0015860414944321474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086776284213798 47.46237336617522, 10.086533000000006 47.462401996235606)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_10_LVCableDist_mvgd_33532_lvgd_1185810000_building_444352,BranchTee_mvgd_33532_lvgd_1185810000_10,BranchTee_mvgd_33532_lvgd_1185810000_building_444352,0.020044646667340002,0.017398753307251123,0.001706544308747191,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086322964693032 47.46229152506687, 10.086533000000006 47.462401996235606)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_10_LVCableDist_mvgd_33532_lvgd_1185810000_building_444353,BranchTee_mvgd_33532_lvgd_1185810000_10,BranchTee_mvgd_33532_lvgd_1185810000_building_444353,0.012086123990022906,0.010490755623339882,0.001028978282944389,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086451815987887 47.46249577626584, 10.086533000000006 47.462401996235606)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_11_LVCableDist_mvgd_33532_lvgd_1185810000_14,BranchTee_mvgd_33532_lvgd_1185810000_11,BranchTee_mvgd_33532_lvgd_1185810000_14,0.056997031322706546,0.04947342318810928,0.004852565427243724,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093333000000003 47.46417889623579, 10.093745699999992 47.464365296235776, 10.093985299999998 47.46443349623581)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_11_LVCableDist_mvgd_33532_lvgd_1185810000_17,BranchTee_mvgd_33532_lvgd_1185810000_11,BranchTee_mvgd_33532_lvgd_1185810000_17,0.018838567849320483,0.016351876893210177,0.0016038621823445667,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093143700000004 47.46419319623573, 10.093273999999994 47.46423719623577, 10.093333000000003 47.46417889623579)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_11_LVStation_mvgd_33532_lvgd_1185810000,BusBar_mvgd_33532_lvgd_1185810000_LV,BranchTee_mvgd_33532_lvgd_1185810000_11,0.011731609271706142,0.010183036847840932,0.0009987959063252818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093199999999996 47.46412419623574, 10.093226600000003 47.46413499623576, 10.093333000000003 47.46417889623579)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_12_LVCableDist_mvgd_33532_lvgd_1185810000_14,BranchTee_mvgd_33532_lvgd_1185810000_12,BranchTee_mvgd_33532_lvgd_1185810000_14,0.17949847309243117,0.15580467464423026,0.015281990387179485,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093985299999998 47.46443349623581, 10.094269499999992 47.46451709623581, 10.094278899999997 47.46459519623579, 10.094388699999996 47.464796996235776, 10.094322299999998 47.46483849623585, 10.094093200000001 47.46498169623585, 10.093787200000005 47.46506079623585, 10.0934495 47.46504499623582, 10.093352899999996 47.4650134962358, 10.0929535 47.46485509623582)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_12_LVCableDist_mvgd_33532_lvgd_1185810000_building_444363,BranchTee_mvgd_33532_lvgd_1185810000_12,BranchTee_mvgd_33532_lvgd_1185810000_building_444363,0.03480803354827923,0.03021337311990637,0.002963457153240008,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09261355001072 47.46464329626896, 10.0929535 47.46485509623582)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_13_LVCableDist_mvgd_33532_lvgd_1185810000_14,BranchTee_mvgd_33532_lvgd_1185810000_13,BranchTee_mvgd_33532_lvgd_1185810000_14,0.11304303857511404,0.09812135748319899,0.009624163365182944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093683599999997 47.46483239623579, 10.093924300000005 47.464892696235836, 10.093998399999997 47.46489639623586, 10.094263800000004 47.46484479623583, 10.094322299999998 47.46483849623585, 10.094388699999996 47.464796996235776, 10.094278899999997 47.46459519623579, 10.094269499999992 47.46451709623581, 10.093985299999998 47.46443349623581)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_13_LVCableDist_mvgd_33532_lvgd_1185810000_building_444380,BranchTee_mvgd_33532_lvgd_1185810000_13,BranchTee_mvgd_33532_lvgd_1185810000_building_444380,0.014858154113819395,0.012896877770795234,0.0012649810576477476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093819332946795 47.464735495944225, 10.093683599999997 47.46483239623579)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_15_LVCableDist_mvgd_33532_lvgd_1185810000_16,BranchTee_mvgd_33532_lvgd_1185810000_15,BranchTee_mvgd_33532_lvgd_1185810000_16,0.025634848117020236,0.022251048165573564,0.002182478189100697,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092557500000002 47.46394879623571, 10.092850600000006 47.464065496235754)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_15_LVCableDist_mvgd_33532_lvgd_1185810000_18,BranchTee_mvgd_33532_lvgd_1185810000_15,BranchTee_mvgd_33532_lvgd_1185810000_18,0.30448245964512966,0.26429077497197256,0.025922772161775243,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091823600000003 47.465258696235885, 10.091716999999997 47.465255096235836, 10.091697699999997 47.46519049623585, 10.091883300000001 47.46511789623585, 10.092169799999995 47.465002596235855, 10.092160300000002 47.46497289623585, 10.092110600000005 47.46492289623581, 10.091964900000006 47.46488889623582, 10.0917404 47.46486699623583, 10.091353800000002 47.46479509623582, 10.0912848 47.464706596235786, 10.091335400000006 47.46454889623575, 10.091644800000001 47.46424939623576, 10.091816000000003 47.46410539623573, 10.092077599999998 47.46399069623574, 10.092056399999999 47.463913896235724, 10.091963700000006 47.46384839623577, 10.092218800000005 47.463880496235724, 10.092557500000002 47.46394879623571)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_15_LVCableDist_mvgd_33532_lvgd_1185810000_building_444410,BranchTee_mvgd_33532_lvgd_1185810000_15,BranchTee_mvgd_33532_lvgd_1185810000_building_444410,0.01710381492618038,0.01484611135592457,0.0014561702435841339,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092399500011089 47.46405919631745, 10.092557500000002 47.46394879623571)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_16_LVCableDist_mvgd_33532_lvgd_1185810000_17,BranchTee_mvgd_33532_lvgd_1185810000_16,BranchTee_mvgd_33532_lvgd_1185810000_17,0.026274134954050406,0.02280594914011575,0.0022369052554140393,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092850600000006 47.464065496235754, 10.093143700000004 47.46419319623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_16_LVCableDist_mvgd_33532_lvgd_1185810000_building_444411,BranchTee_mvgd_33532_lvgd_1185810000_16,BranchTee_mvgd_33532_lvgd_1185810000_building_444411,0.011834829784108145,0.010272632252605869,0.0010075838076990993,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092741217152966 47.46414184961644, 10.092850600000006 47.464065496235754)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_17_LVCableDist_mvgd_33532_lvgd_1185810000_building_444362,BranchTee_mvgd_33532_lvgd_1185810000_17,BranchTee_mvgd_33532_lvgd_1185810000_building_444362,0.011349249635799358,0.009851148683873844,0.0009662428924767238,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093134284260698 47.46429514742613, 10.093143700000004 47.46419319623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_18_LVCableDist_mvgd_33532_lvgd_1185810000_building_444371,BranchTee_mvgd_33532_lvgd_1185810000_18,BranchTee_mvgd_33532_lvgd_1185810000_building_444371,0.014170033133352735,0.012299588759750174,0.0012063963910066392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09198651952527 47.46532214972314, 10.091823600000003 47.465258696235885)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_18_LVCableDist_mvgd_33532_lvgd_1185810000_building_444375,BranchTee_mvgd_33532_lvgd_1185810000_18,BranchTee_mvgd_33532_lvgd_1185810000_building_444375,0.017163816736482842,0.014898192927267106,0.0014612786273628827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091869306614386 47.46541003146964, 10.091823600000003 47.465258696235885)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_19_LVCableDist_mvgd_33532_lvgd_1185810000_building_444361,BranchTee_mvgd_33532_lvgd_1185810000_19,BranchTee_mvgd_33532_lvgd_1185810000_building_444361,0.022698321574434254,0.019702143126608933,0.001932470656321363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09351994760257 47.463883064812606, 10.093445399999993 47.46408099623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_19_LVStation_mvgd_33532_lvgd_1185810000,BusBar_mvgd_33532_lvgd_1185810000_LV,BranchTee_mvgd_33532_lvgd_1185810000_19,0.026082239914539052,0.022639384245819898,0.0022205678565568924,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093199999999996 47.46412419623574, 10.0932289 47.464090696235765, 10.093283499999995 47.464027196235705, 10.093445399999993 47.46408099623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_1_LVCableDist_mvgd_33532_lvgd_1185810000_2,BranchTee_mvgd_33532_lvgd_1185810000_1,BranchTee_mvgd_33532_lvgd_1185810000_2,0.19067093718542213,0.1655023734769464,0.016233182260451166,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08738439999999 47.46308379623566, 10.085487099999996 47.46248679623564, 10.085768499999995 47.462260596235595)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_1_LVCableDist_mvgd_33532_lvgd_1185810000_3,BranchTee_mvgd_33532_lvgd_1185810000_1,BranchTee_mvgd_33532_lvgd_1185810000_3,0.12375256793144458,0.10741722896449389,0.01053594228928768,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08738439999999 47.46308379623566, 10.087912899999996 47.4632500962357, 10.088289199999998 47.46336919623568, 10.088595 47.463434396235655, 10.088912700000002 47.463470196235676)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_1_LVCableDist_mvgd_33532_lvgd_1185810000_building_444350,BranchTee_mvgd_33532_lvgd_1185810000_1,BranchTee_mvgd_33532_lvgd_1185810000_building_444350,0.02042567551701885,0.01772948634877236,0.0017389840232345214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087221795881588 47.46323078951298, 10.08738439999999 47.46308379623566)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_2_LVCableDist_mvgd_33532_lvgd_1185810000_building_444367,BranchTee_mvgd_33532_lvgd_1185810000_2,BranchTee_mvgd_33532_lvgd_1185810000_building_444367,0.05125850394723122,0.0444923814261967,0.004364003498678338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085107021344212 47.46215543343433, 10.085768499999995 47.462260596235595)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_3_LVCableDist_mvgd_33532_lvgd_1185810000_4,BranchTee_mvgd_33532_lvgd_1185810000_3,BranchTee_mvgd_33532_lvgd_1185810000_4,0.10291517614246135,0.08933037289165645,0.008761905911556721,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088912700000002 47.463470196235676, 10.089252899999998 47.46348289623571, 10.089384499999996 47.46348779623569, 10.090274699999995 47.463520896235686)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_3_LVCableDist_mvgd_33532_lvgd_1185810000_building_444356,BranchTee_mvgd_33532_lvgd_1185810000_3,BranchTee_mvgd_33532_lvgd_1185810000_building_444356,0.021995675474954547,0.019092246312260547,0.001872649362285571,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088877364169344 47.46366671414624, 10.088912700000002 47.463470196235676)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_4_LVCableDist_mvgd_33532_lvgd_1185810000_5,BranchTee_mvgd_33532_lvgd_1185810000_4,BranchTee_mvgd_33532_lvgd_1185810000_5,0.038910204230898256,0.03377405727241969,0.0033127043187357952,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090274699999995 47.463520896235686, 10.0907845 47.46357379623574)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_4_LVCableDist_mvgd_33532_lvgd_1185810000_building_444374,BranchTee_mvgd_33532_lvgd_1185810000_4,BranchTee_mvgd_33532_lvgd_1185810000_building_444374,0.038762822607380946,0.03364613002320666,0.0033001566657388888,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09017280415298 47.46386286094757, 10.090274699999995 47.463520896235686)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_5_LVCableDist_mvgd_33532_lvgd_1185810000_6,BranchTee_mvgd_33532_lvgd_1185810000_5,BranchTee_mvgd_33532_lvgd_1185810000_6,0.02857154388756775,0.024800100094408806,0.002432500129468223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0907845 47.46357379623574, 10.091154099999994 47.463629796235686)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_5_LVCableDist_mvgd_33532_lvgd_1185810000_building_444378,BranchTee_mvgd_33532_lvgd_1185810000_5,BranchTee_mvgd_33532_lvgd_1185810000_building_444378,0.03150581469647268,0.027347047156538285,0.002682315615486178,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090659150000794 47.463844296279134, 10.0907845 47.46357379623574)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_6_LVCableDist_mvgd_33532_lvgd_1185810000_9,BranchTee_mvgd_33532_lvgd_1185810000_6,BranchTee_mvgd_33532_lvgd_1185810000_9,0.05984641625229989,0.0519466893069963,0.005095153970495548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090521100000005 47.46331209623572, 10.0907671 47.463405496235694, 10.091041499999998 47.463542996235695, 10.091154099999994 47.463629796235686)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_6_LVStation_mvgd_33532_lvgd_1185810000,BusBar_mvgd_33532_lvgd_1185810000_LV,BranchTee_mvgd_33532_lvgd_1185810000_6,0.1662345618520168,0.14429159968755056,0.014152738641578082,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091154099999994 47.463629796235686, 10.091347300000002 47.46365909623572, 10.092253799999996 47.46377749623571, 10.092436200000005 47.46381489623571, 10.092628499999995 47.4638718962357, 10.092804100000004 47.463943296235755, 10.093199999999996 47.46412419623574)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_7_LVCableDist_mvgd_33532_lvgd_1185810000_8,BranchTee_mvgd_33532_lvgd_1185810000_7,BranchTee_mvgd_33532_lvgd_1185810000_8,0.023011266362279535,0.019973779202458637,0.001959113887080807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089460099999995 47.46341929623569, 10.089762900000006 47.463394496235665)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_7_LVCableDist_mvgd_33532_lvgd_1185810000_building_444358,BranchTee_mvgd_33532_lvgd_1185810000_7,BranchTee_mvgd_33532_lvgd_1185810000_building_444358,0.007605734069005974,0.006601777171897185,0.0006475306052889976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089478950000002 47.46335204623836, 10.089460099999995 47.46341929623569)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_8_LVCableDist_mvgd_33532_lvgd_1185810000_9,BranchTee_mvgd_33532_lvgd_1185810000_8,BranchTee_mvgd_33532_lvgd_1185810000_9,0.05793271023211876,0.05028559248147908,0.004932226473116582,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089762900000006 47.463394496235665, 10.090226599999996 47.46334409623568, 10.090521100000005 47.46331209623572)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_8_LVCableDist_mvgd_33532_lvgd_1185810000_building_444359,BranchTee_mvgd_33532_lvgd_1185810000_8,BranchTee_mvgd_33532_lvgd_1185810000_building_444359,0.016808329315446385,0.014589629845807462,0.0014310134375958093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089747096230699 47.46324359087242, 10.089762900000006 47.463394496235665)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_8_LVCableDist_mvgd_33532_lvgd_1185810000_building_444368,BranchTee_mvgd_33532_lvgd_1185810000_8,BranchTee_mvgd_33532_lvgd_1185810000_building_444368,0.040980842125338084,0.03557137096479346,0.003488992550345791,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089758775274063 47.46376334233826, 10.089762900000006 47.463394496235665)" -Branch_LVCableDist_mvgd_33532_lvgd_1185810000_9_LVCableDist_mvgd_33532_lvgd_1185810000_building_444360,BranchTee_mvgd_33532_lvgd_1185810000_9,BranchTee_mvgd_33532_lvgd_1185810000_building_444360,0.018240617482084144,0.01583285597444904,0.0015529543857116075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090733600079071 47.46323379633528, 10.090521100000005 47.46331209623572)" -Branch_LVCableDist_mvgd_33532_lvgd_1186310000_1_LVCableDist_mvgd_33532_lvgd_1186310000_building_446610,BranchTee_mvgd_33532_lvgd_1186310000_1,BranchTee_mvgd_33532_lvgd_1186310000_building_446610,0.011601755303070109,0.010070323603064854,0.000987740508102417,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0760660755606 47.55092495040676, 10.076089100000003 47.55102819624371)" -Branch_LVCableDist_mvgd_33532_lvgd_1186310000_1_LVCableDist_mvgd_33532_lvgd_1186310000_building_446612,BranchTee_mvgd_33532_lvgd_1186310000_1,BranchTee_mvgd_33532_lvgd_1186310000_building_446612,0.022236506147711724,0.019301287336213776,0.0018931530020247123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07614243768055 47.551225037325246, 10.076089100000003 47.55102819624371)" -Branch_LVCableDist_mvgd_33532_lvgd_1186310000_1_LVStation_mvgd_33532_lvgd_1186310000,BusBar_mvgd_33532_lvgd_1186310000_LV,BranchTee_mvgd_33532_lvgd_1186310000_1,0.0056530935743162895,0.004906885222506539,0.0004812883372887613,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.076089100000003 47.55102819624371, 10.076023899999992 47.55100299624363)" -Branch_LVCableDist_mvgd_33532_lvgd_1186310000_2_LVCableDist_mvgd_33532_lvgd_1186310000_building_446604,BranchTee_mvgd_33532_lvgd_1186310000_2,BranchTee_mvgd_33532_lvgd_1186310000_building_446604,0.006997980738078823,0.0060742472806524185,0.0005957882121588765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075898699998548 47.551036796255545, 10.075905799999992 47.550973996243656)" -Branch_LVCableDist_mvgd_33532_lvgd_1186310000_2_LVStation_mvgd_33532_lvgd_1186310000,BusBar_mvgd_33532_lvgd_1186310000_LV,BranchTee_mvgd_33532_lvgd_1186310000_2,0.009461078034403311,0.008212215733862074,0.0008054893230186647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075905799999992 47.550973996243656, 10.076023899999992 47.55100299624363)" -Branch_LVCableDist_mvgd_33532_lvgd_1191970000_building_444419_LVStation_mvgd_33532_lvgd_1191970000,BusBar_mvgd_33532_lvgd_1191970000_LV,BranchTee_mvgd_33532_lvgd_1191970000_building_444419,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106713927889984 47.47333964308403, 10.106713927889984 47.47333964308403)" -Branch_LVCableDist_mvgd_33532_lvgd_1193200000_building_422741_LVStation_mvgd_33532_lvgd_1193200000,BusBar_mvgd_33532_lvgd_1193200000_LV,BranchTee_mvgd_33532_lvgd_1193200000_building_422741,0.020344247322350704,0.01765880667580041,0.0017320514579222627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095888600002286 47.44466084629291, 10.096039900000005 47.44450929623392)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_10_LVCableDist_mvgd_33532_lvgd_1195310000_11,BranchTee_mvgd_33532_lvgd_1195310000_10,BranchTee_mvgd_33532_lvgd_1195310000_11,0.01442931755248858,0.012524647635560087,0.0012284711303206556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104703199999998 47.46532629623588, 10.104512000000009 47.4653293962359)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_10_LVCableDist_mvgd_33532_lvgd_1195310000_building_34967312,BranchTee_mvgd_33532_lvgd_1195310000_10,BranchTee_mvgd_33532_lvgd_1195310000_building_34967312,0.006539463321562159,0.005676254163115954,0.0005567513410878129,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104664599999989 47.4652735962359, 10.104703199999998 47.46532629623588)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_10_LVCableDist_mvgd_33532_lvgd_1195310000_building_444425,BranchTee_mvgd_33532_lvgd_1195310000_10,BranchTee_mvgd_33532_lvgd_1195310000_building_444425,0.009808986759542327,0.00851420050728274,0.0008351092841336125,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104682399996461 47.465239146246, 10.104703199999998 47.46532629623588)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_11_LVCableDist_mvgd_33532_lvgd_1195310000_9,BranchTee_mvgd_33532_lvgd_1195310000_9,BranchTee_mvgd_33532_lvgd_1195310000_11,0.02142025858618979,0.018592784452812736,0.0018236600020351602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104512000000009 47.4653293962359, 10.104401299999994 47.46533579623585, 10.104228800000003 47.46534289623588)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_11_LVCableDist_mvgd_33532_lvgd_1195310000_building_444398,BranchTee_mvgd_33532_lvgd_1195310000_11,BranchTee_mvgd_33532_lvgd_1195310000_building_444398,0.011760916425653852,0.010208475457467543,0.001001291034206809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104544184648642 47.46543297106308, 10.104512000000009 47.4653293962359)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_12_LVCableDist_mvgd_33532_lvgd_1195310000_7,BranchTee_mvgd_33532_lvgd_1195310000_7,BranchTee_mvgd_33532_lvgd_1195310000_12,0.023132676742991166,0.020079163412916334,0.001969450422199875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1040912 47.46537619623589, 10.104041999999998 47.46542049623591, 10.104009299999994 47.465491996235876, 10.103995600000003 47.46556929623591)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_12_LVCableDist_mvgd_33532_lvgd_1195310000_building_444429,BranchTee_mvgd_33532_lvgd_1195310000_12,BranchTee_mvgd_33532_lvgd_1195310000_building_444429,0.01711599946334852,0.014856687534186515,0.0014572076004856593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10377002481007 47.465552891482616, 10.103995600000003 47.46556929623591)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_12_LVStation_mvgd_33532_lvgd_1195310000,BusBar_mvgd_33532_lvgd_1195310000_LV,BranchTee_mvgd_33532_lvgd_1195310000_12,0.01750066295984513,0.015190575449145573,0.0014899567584839729,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103995600000003 47.46556929623591, 10.103989699999998 47.46561339623587, 10.103981500000007 47.465726496235916)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_13_LVCableDist_mvgd_33532_lvgd_1195310000_15,BranchTee_mvgd_33532_lvgd_1195310000_13,BranchTee_mvgd_33532_lvgd_1195310000_15,0.025160864793872754,0.02183963064108155,0.002142124594648151,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102818999999997 47.46577789623593, 10.102485799999998 47.46578749623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_13_LVCableDist_mvgd_33532_lvgd_1195310000_16,BranchTee_mvgd_33532_lvgd_1195310000_13,BranchTee_mvgd_33532_lvgd_1195310000_16,0.03671753498676336,0.0318708203685106,0.003126026684470468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102639000000002 47.46547129623587, 10.102695100000005 47.46558839623589, 10.102818999999997 47.46577789623593)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_13_LVCableDist_mvgd_33532_lvgd_1195310000_17,BranchTee_mvgd_33532_lvgd_1195310000_13,BranchTee_mvgd_33532_lvgd_1195310000_17,0.033095685482465616,0.028727054998780154,0.002817672700422997,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102818999999997 47.46577789623593, 10.103256000000005 47.46575189623597)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_13_LVCableDist_mvgd_33532_lvgd_1195310000_building_444423,BranchTee_mvgd_33532_lvgd_1195310000_13,BranchTee_mvgd_33532_lvgd_1195310000_building_444423,0.014011807063363928,0.012162248530999889,0.001192925472625484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10291980130821 47.46588381727913, 10.102818999999997 47.46577789623593)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_14_LVCableDist_mvgd_33532_lvgd_1195310000_15,BranchTee_mvgd_33532_lvgd_1195310000_14,BranchTee_mvgd_33532_lvgd_1195310000_15,0.009084349307611872,0.007885215199007105,0.0007734157087855423,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102365499999994 47.46579099623594, 10.102485799999998 47.46578749623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_14_LVCableDist_mvgd_33532_lvgd_1195310000_building_444416,BranchTee_mvgd_33532_lvgd_1195310000_14,BranchTee_mvgd_33532_lvgd_1195310000_building_444416,0.024468822344034708,0.021238937794622128,0.0020832060652381584,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10227799705324 47.46557892932345, 10.102365499999994 47.46579099623594)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_15_LVCableDist_mvgd_33532_lvgd_1195310000_building_444424,BranchTee_mvgd_33532_lvgd_1195310000_15,BranchTee_mvgd_33532_lvgd_1195310000_building_444424,0.02248392227470152,0.01951604453444092,0.0019142173086405363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102644349996698 47.46595884631719, 10.102485799999998 47.46578749623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_16_LVCableDist_mvgd_33532_lvgd_1195310000_building_444418,BranchTee_mvgd_33532_lvgd_1195310000_16,BranchTee_mvgd_33532_lvgd_1195310000_building_444418,0.015353337637803933,0.013326697069613813,0.0013071395770103307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102842470407381 47.4654737387463, 10.102639000000002 47.46547129623587)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_17_LVCableDist_mvgd_33532_lvgd_1195310000_building_444426,BranchTee_mvgd_33532_lvgd_1195310000_17,BranchTee_mvgd_33532_lvgd_1195310000_building_444426,0.017038657722655663,0.014789554903265115,0.0014506229442630555,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10322317563022 47.465903628532054, 10.103256000000005 47.46575189623597)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_17_LVStation_mvgd_33532_lvgd_1195310000,BusBar_mvgd_33532_lvgd_1195310000_LV,BranchTee_mvgd_33532_lvgd_1195310000_17,0.054808014074242656,0.047573356216442625,0.004666198713521491,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103981500000007 47.465726496235916, 10.103256000000005 47.46575189623597)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_1_LVCableDist_mvgd_33532_lvgd_1195310000_3,BranchTee_mvgd_33532_lvgd_1195310000_1,BranchTee_mvgd_33532_lvgd_1195310000_3,0.006492096965198372,0.005635140165792187,0.0005527187039842406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105004100000004 47.46589949623591, 10.105089399999999 47.46590719623588)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_1_LVCableDist_mvgd_33532_lvgd_1195310000_4,BranchTee_mvgd_33532_lvgd_1195310000_1,BranchTee_mvgd_33532_lvgd_1195310000_4,0.06994899396073077,0.06071572675791431,0.005955258754487076,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105004100000004 47.46589949623591, 10.104958199999999 47.4658281962359, 10.104939499999993 47.46579349623591, 10.104913800000004 47.46574579623591, 10.104816899999994 47.46574019623589, 10.1046383 47.46573529623592, 10.1042315 47.46572099623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_1_LVCableDist_mvgd_33532_lvgd_1195310000_building_444442,BranchTee_mvgd_33532_lvgd_1195310000_1,BranchTee_mvgd_33532_lvgd_1195310000_building_444442,0.03758257651576155,0.03262167641568103,0.0031996738643205944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104758284706216 47.466193719614765, 10.105004100000004 47.46589949623591)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_1_LVCableDist_mvgd_33532_lvgd_1195310000_building_444446,BranchTee_mvgd_33532_lvgd_1195310000_1,BranchTee_mvgd_33532_lvgd_1195310000_building_444446,0.021140813302275165,0.018350225946374844,0.001799868823932342,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10491990644027 47.466080988659726, 10.105004100000004 47.46589949623591)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_2_LVCableDist_mvgd_33532_lvgd_1195310000_4,BranchTee_mvgd_33532_lvgd_1195310000_2,BranchTee_mvgd_33532_lvgd_1195310000_4,0.0245421232652388,0.021302562994227277,0.0020894466975617297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104228700000004 47.465940496235945, 10.104216300000003 47.46576499623591, 10.1042315 47.46572099623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_2_LVCableDist_mvgd_33532_lvgd_1195310000_5,BranchTee_mvgd_33532_lvgd_1195310000_2,BranchTee_mvgd_33532_lvgd_1195310000_5,0.013085281709232762,0.011358024523614037,0.0011140437344615084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104228700000004 47.465940496235945, 10.104069599999994 47.46598739623591)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_2_LVCableDist_mvgd_33532_lvgd_1195310000_building_444417,BranchTee_mvgd_33532_lvgd_1195310000_2,BranchTee_mvgd_33532_lvgd_1195310000_building_444417,0.016216018453717635,0.014075504017826907,0.0013805857724507155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104430930509778 47.465989933640394, 10.104228700000004 47.465940496235945)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_3_LVCableDist_mvgd_33532_lvgd_1195310000_building_444450,BranchTee_mvgd_33532_lvgd_1195310000_3,BranchTee_mvgd_33532_lvgd_1195310000_building_444450,0.031313254239215445,0.027179904679639006,0.002665921564851326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105285602933648 47.466155552217415, 10.105089399999999 47.46590719623588)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_4_LVCableDist_mvgd_33532_lvgd_1195310000_building_444390,BranchTee_mvgd_33532_lvgd_1195310000_4,BranchTee_mvgd_33532_lvgd_1195310000_building_444390,0.012808783212256345,0.011118023828238507,0.0010905034374324228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104264930490427 47.46560796441886, 10.1042315 47.46572099623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_4_LVStation_mvgd_33532_lvgd_1195310000,BusBar_mvgd_33532_lvgd_1195310000_LV,BranchTee_mvgd_33532_lvgd_1195310000_4,0.018871155386286108,0.016380162875296343,0.0016066365927229441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1042315 47.46572099623589, 10.103981500000007 47.465726496235916)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_5_LVCableDist_mvgd_33532_lvgd_1195310000_6,BranchTee_mvgd_33532_lvgd_1195310000_5,BranchTee_mvgd_33532_lvgd_1195310000_6,0.027164500214615514,0.023578786186286265,0.002312708425873478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104069599999994 47.46598739623591, 10.103849300000004 47.46618079623597)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_5_LVCableDist_mvgd_33532_lvgd_1195310000_building_444403,BranchTee_mvgd_33532_lvgd_1195310000_5,BranchTee_mvgd_33532_lvgd_1195310000_building_444403,0.023782868354382987,0.020643529731604434,0.002024805890042757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103772075179121 47.46591666454188, 10.104069599999994 47.46598739623591)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_6_LVCableDist_mvgd_33532_lvgd_1195310000_building_444420,BranchTee_mvgd_33532_lvgd_1195310000_6,BranchTee_mvgd_33532_lvgd_1195310000_building_444420,0.022262217486999764,0.019323604778715794,0.0018953419924549483,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10414319998546 47.46619869627238, 10.103849300000004 47.46618079623597)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_7_LVCableDist_mvgd_33532_lvgd_1195310000_8,BranchTee_mvgd_33532_lvgd_1195310000_7,BranchTee_mvgd_33532_lvgd_1195310000_8,0.043489587687141965,0.03774896211243922,0.0037025800249290645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1035863 47.465278396235895, 10.103952999999995 47.4652692962359, 10.104014999999999 47.465316296235855, 10.1040912 47.46537619623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_7_LVCableDist_mvgd_33532_lvgd_1195310000_9,BranchTee_mvgd_33532_lvgd_1195310000_7,BranchTee_mvgd_33532_lvgd_1195310000_9,0.011325676928810374,0.009830687574207405,0.0009642359791286646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104228800000003 47.46534289623588, 10.1041489 47.46534979623584, 10.1040912 47.46537619623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_8_LVCableDist_mvgd_33532_lvgd_1195310000_building_444428,BranchTee_mvgd_33532_lvgd_1195310000_8,BranchTee_mvgd_33532_lvgd_1195310000_building_444428,0.017316446776821107,0.015030675802280721,0.0014742731156672099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103753986842701 47.46517196812243, 10.1035863 47.465278396235895)" -Branch_LVCableDist_mvgd_33532_lvgd_1195310000_9_LVCableDist_mvgd_33532_lvgd_1195310000_building_444437,BranchTee_mvgd_33532_lvgd_1195310000_9,BranchTee_mvgd_33532_lvgd_1195310000_building_444437,0.011777506823435438,0.01022287592274196,0.0010027034935723386,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104249661187405 47.4652378406293, 10.104228800000003 47.46534289623588)" -Branch_LVCableDist_mvgd_33532_lvgd_1195590000_building_422770_LVStation_mvgd_33532_lvgd_1195590000,BusBar_mvgd_33532_lvgd_1195590000_LV,BranchTee_mvgd_33532_lvgd_1195590000_building_422770,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102351329541532 47.46034674424677, 10.102351329541532 47.46034674424677)" -Branch_LVCableDist_mvgd_33532_lvgd_1196020000_1_LVCableDist_mvgd_33532_lvgd_1196020000_building_445119,BranchTee_mvgd_33532_lvgd_1196020000_1,BranchTee_mvgd_33532_lvgd_1196020000_building_445119,0.02408308949162353,0.020904121678729223,0.002050365865313274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.111593381761631 47.46592273950936, 10.111527199999996 47.466134796235956)" -Branch_LVCableDist_mvgd_33532_lvgd_1196020000_1_LVCableDist_mvgd_33532_lvgd_1196020000_building_445122,BranchTee_mvgd_33532_lvgd_1196020000_1,BranchTee_mvgd_33532_lvgd_1196020000_building_445122,0.04886022457104974,0.04241067492767118,0.004159820801515765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11217055000584 47.46608429624739, 10.111527199999996 47.466134796235956)" -Branch_LVCableDist_mvgd_33532_lvgd_1196020000_1_LVStation_mvgd_33532_lvgd_1196020000,BusBar_mvgd_33532_lvgd_1196020000_LV,BranchTee_mvgd_33532_lvgd_1196020000_1,0.04329820619605059,0.03758284297817191,0.0036862863481263853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.111527199999996 47.466134796235956, 10.111808300000002 47.46611189623591, 10.111934099999996 47.466070896235955, 10.112035199999998 47.46599449623593)" -Branch_LVCableDist_mvgd_33532_lvgd_1197240000_building_448110_LVStation_mvgd_33532_lvgd_1197240000,BusBar_mvgd_33532_lvgd_1197240000_LV,BranchTee_mvgd_33532_lvgd_1197240000_building_448110,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.111815571053565 47.56507186743076, 10.111815571053565 47.56507186743076)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_10_LVCableDist_mvgd_33532_lvgd_1197330000_15,BranchTee_mvgd_33532_lvgd_1197330000_10,BranchTee_mvgd_33532_lvgd_1197330000_15,0.031386550309425124,0.027243525668581008,0.002672161784175005,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117060999999996 47.46351269623568, 10.116786399999999 47.46356549623571, 10.116823699999998 47.46365049623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_10_LVCableDist_mvgd_33532_lvgd_1197330000_9,BranchTee_mvgd_33532_lvgd_1197330000_9,BranchTee_mvgd_33532_lvgd_1197330000_10,0.01514249448478424,0.01314368521279272,0.0012891889895644399,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117242900000004 47.46345509623571, 10.117060999999996 47.46351269623568)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_10_LVCableDist_mvgd_33532_lvgd_1197330000_building_445142,BranchTee_mvgd_33532_lvgd_1197330000_10,BranchTee_mvgd_33532_lvgd_1197330000_building_445142,0.012931461217327049,0.011224508336639879,0.0011009478944905252,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116989640547672 47.46361852320798, 10.117060999999996 47.46351269623568)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_11_LVCableDist_mvgd_33532_lvgd_1197330000_12,BranchTee_mvgd_33532_lvgd_1197330000_11,BranchTee_mvgd_33532_lvgd_1197330000_12,0.045249082862100075,0.039276203924302866,0.0038523784487638595,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116009099999996 47.46554279623589, 10.116468299999994 47.46528079623588)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_11_LVCableDist_mvgd_33532_lvgd_1197330000_building_445146,BranchTee_mvgd_33532_lvgd_1197330000_11,BranchTee_mvgd_33532_lvgd_1197330000_building_445146,0.0215300415328752,0.01868807605053567,0.0018330066104325405,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115886954419837 47.465367663011286, 10.116009099999996 47.46554279623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_11_LVCableDist_mvgd_33532_lvgd_1197330000_building_445150,BranchTee_mvgd_33532_lvgd_1197330000_11,BranchTee_mvgd_33532_lvgd_1197330000_building_445150,0.025111905761845466,0.021797134201281865,0.0021379563616603344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116321550000992 47.46562069629359, 10.116009099999996 47.46554279623589)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_12_LVCableDist_mvgd_33532_lvgd_1197330000_13,BranchTee_mvgd_33532_lvgd_1197330000_12,BranchTee_mvgd_33532_lvgd_1197330000_13,0.03513237152822328,0.030494898486497807,0.0029910703680284694,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116468299999994 47.46528079623588, 10.116520899999998 47.46525979623586, 10.1167729 47.465044796235865)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_12_LVCableDist_mvgd_33532_lvgd_1197330000_building_445147,BranchTee_mvgd_33532_lvgd_1197330000_12,BranchTee_mvgd_33532_lvgd_1197330000_building_445147,0.016356609561596142,0.014197537099465451,0.0013925553002250041,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116271236727554 47.46521943049519, 10.116468299999994 47.46528079623588)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_13_LVCableDist_mvgd_33532_lvgd_1197330000_14,BranchTee_mvgd_33532_lvgd_1197330000_13,BranchTee_mvgd_33532_lvgd_1197330000_14,0.024194873919376,0.02100115056201837,0.0020598828741263237,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1167729 47.465044796235865, 10.1169223 47.46485209623584)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_13_LVCableDist_mvgd_33532_lvgd_1197330000_building_445133,BranchTee_mvgd_33532_lvgd_1197330000_13,BranchTee_mvgd_33532_lvgd_1197330000_building_445133,0.015701957455095922,0.01362929907102326,0.0013368200784923295,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116591149989969 47.464975946334924, 10.1167729 47.465044796235865)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_14_LVCableDist_mvgd_33532_lvgd_1197330000_7,BranchTee_mvgd_33532_lvgd_1197330000_7,BranchTee_mvgd_33532_lvgd_1197330000_14,0.026561737798092226,0.02305558840874405,0.002261390945026058,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117135999999999 47.46466209623581, 10.1169223 47.46485209623584)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_14_LVCableDist_mvgd_33532_lvgd_1197330000_building_445134,BranchTee_mvgd_33532_lvgd_1197330000_14,BranchTee_mvgd_33532_lvgd_1197330000_building_445134,0.013727689944806424,0.011915634872091976,0.0011687365477849193,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116764167338369 47.4647909816416, 10.1169223 47.46485209623584)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_15_LVCableDist_mvgd_33532_lvgd_1197330000_16,BranchTee_mvgd_33532_lvgd_1197330000_15,BranchTee_mvgd_33532_lvgd_1197330000_16,0.030212028984881636,0.02622404115887726,0.002572166373172438,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116823699999998 47.46365049623573, 10.116944299999993 47.46390979623574)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_15_LVCableDist_mvgd_33532_lvgd_1197330000_building_445123,BranchTee_mvgd_33532_lvgd_1197330000_15,BranchTee_mvgd_33532_lvgd_1197330000_building_445123,0.013728869728215118,0.011916658924090722,0.001168836991194827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116671808765307 47.46371854575953, 10.116823699999998 47.46365049623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_16_LVCableDist_mvgd_33532_lvgd_1197330000_building_445132,BranchTee_mvgd_33532_lvgd_1197330000_16,BranchTee_mvgd_33532_lvgd_1197330000_building_445132,0.024144375467249405,0.020957317905572485,0.0020555835792818006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116819799987825 47.46410999627713, 10.116944299999993 47.46390979623574)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_16_LVCableDist_mvgd_33532_lvgd_1197330000_building_445136,BranchTee_mvgd_33532_lvgd_1197330000_16,BranchTee_mvgd_33532_lvgd_1197330000_building_445136,0.025793397640971303,0.02238866915236309,0.002195976645433885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117189765872267 47.463748197870274, 10.116944299999993 47.46390979623574)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_17_LVCableDist_mvgd_33532_lvgd_1197330000_18,BranchTee_mvgd_33532_lvgd_1197330000_17,BranchTee_mvgd_33532_lvgd_1197330000_18,0.035221686053085836,0.030572423494078505,0.002998674353103497,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119006699999996 47.4624933962356, 10.119070299999994 47.46255419623562, 10.1191242 47.46260579623561, 10.119298 47.46274059623562)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_17_LVCableDist_mvgd_33532_lvgd_1197330000_21,BranchTee_mvgd_33532_lvgd_1197330000_17,BranchTee_mvgd_33532_lvgd_1197330000_21,0.16881621714185657,0.1465324764791315,0.014372533443409219,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119006699999996 47.4624933962356, 10.119317399999993 47.46236799623559, 10.119663299999997 47.46224939623561, 10.120170199999999 47.46208949623555, 10.120678399999994 47.46193899623558, 10.120626699999994 47.46190519623557, 10.120553 47.46185709623554, 10.120454899999999 47.46179299623554, 10.120437299999999 47.461781496235595, 10.120413900000008 47.46175889623552)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_17_LVStation_mvgd_33532_lvgd_1197330000,BusBar_mvgd_33532_lvgd_1197330000_LV,BranchTee_mvgd_33532_lvgd_1197330000_17,0.08532101798515501,0.07405864361111456,0.007263989237401969,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118035699999993 47.462886696235664, 10.118517600000004 47.46268299623564, 10.118922199999995 47.46252849623559, 10.119006699999996 47.4624933962356)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_18_LVCableDist_mvgd_33532_lvgd_1197330000_19,BranchTee_mvgd_33532_lvgd_1197330000_18,BranchTee_mvgd_33532_lvgd_1197330000_19,0.023030647268012055,0.019990601828634463,0.0019607639223707825,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119298 47.46274059623562, 10.119574299999996 47.46282869623566)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_18_LVCableDist_mvgd_33532_lvgd_1197330000_26,BranchTee_mvgd_33532_lvgd_1197330000_18,BranchTee_mvgd_33532_lvgd_1197330000_26,0.031557256951472365,0.027391699033878013,0.002686695263027777,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119298 47.46274059623562, 10.119304800000004 47.46302459623565)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_19_LVCableDist_mvgd_33532_lvgd_1197330000_24,BranchTee_mvgd_33532_lvgd_1197330000_19,BranchTee_mvgd_33532_lvgd_1197330000_24,0.061857860407741626,0.053692622833919734,0.005266402615223463,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119574299999996 47.46282869623566, 10.119747299999998 47.46289609623566, 10.120061799999995 47.462998796235674, 10.120138200000003 47.463007896235624, 10.120315599999998 47.46295479623563)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_19_LVCableDist_mvgd_33532_lvgd_1197330000_building_445184,BranchTee_mvgd_33532_lvgd_1197330000_19,BranchTee_mvgd_33532_lvgd_1197330000_building_445184,0.02517872876089443,0.021855136564456368,0.002143645482083007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119683068777768 47.462614441502886, 10.119574299999996 47.46282869623566)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_19_LVCableDist_mvgd_33532_lvgd_1197330000_building_445185,BranchTee_mvgd_33532_lvgd_1197330000_19,BranchTee_mvgd_33532_lvgd_1197330000_building_445185,0.01890168307594324,0.016406660909918734,0.0016092356335495636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119763552924478 47.46271721807158, 10.119574299999996 47.46282869623566)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_1_LVCableDist_mvgd_33532_lvgd_1197330000_7,BranchTee_mvgd_33532_lvgd_1197330000_1,BranchTee_mvgd_33532_lvgd_1197330000_7,0.3892539307475666,0.3378724118888878,0.033139974537794395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119308200000003 47.46660619623599, 10.1196551 47.46668069623601, 10.120155000000002 47.46660399623599, 10.120138600000004 47.46649279623598, 10.1198726 47.466255796235934, 10.119597400000002 47.46609999623595, 10.119352899999997 47.46596159623597, 10.119141599999995 47.46584039623592, 10.118953999999999 47.465732796235926, 10.1186639 47.465414196235905, 10.118298000000003 47.46515829623586, 10.118102599999993 47.46510529623582, 10.117781600000002 47.46503009623587, 10.1174877 47.46492189623583, 10.117135999999999 47.46466209623581)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_1_LVCableDist_mvgd_33532_lvgd_1197330000_building_445164,BranchTee_mvgd_33532_lvgd_1197330000_1,BranchTee_mvgd_33532_lvgd_1197330000_building_445164,0.027402147205195983,0.023785063774110115,0.0023329410159508472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118970200007569 47.4666964962862, 10.119308200000003 47.46660619623599)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_20_LVCableDist_mvgd_33532_lvgd_1197330000_21,BranchTee_mvgd_33532_lvgd_1197330000_20,BranchTee_mvgd_33532_lvgd_1197330000_21,0.007226451567408336,0.0062725599605104355,0.0006152395699192661,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.120413900000008 47.46175889623552, 10.120358800000004 47.461705696235526)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_20_LVCableDist_mvgd_33532_lvgd_1197330000_22,BranchTee_mvgd_33532_lvgd_1197330000_20,BranchTee_mvgd_33532_lvgd_1197330000_22,0.033187719639907715,0.028806940647439896,0.002825508227294571,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.120358800000004 47.461705696235526, 10.120297099999993 47.46164609623555, 10.120230900000005 47.461582096235496, 10.120156299999993 47.461585896235526, 10.120027599999993 47.461627596235545)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_20_LVCableDist_mvgd_33532_lvgd_1197330000_building_445175,BranchTee_mvgd_33532_lvgd_1197330000_20,BranchTee_mvgd_33532_lvgd_1197330000_building_445175,0.018307439074980045,0.015890857117082678,0.001558643386418401,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.120550099571446 47.46160432526521, 10.120358800000004 47.461705696235526)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_21_LVCableDist_mvgd_33532_lvgd_1197330000_building_445177,BranchTee_mvgd_33532_lvgd_1197330000_21,BranchTee_mvgd_33532_lvgd_1197330000_building_445177,0.015301353310174653,0.0132815746732316,0.0013027137789440397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.120244252107334 47.46183436275846, 10.120413900000008 47.46175889623552)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_22_LVCableDist_mvgd_33532_lvgd_1197330000_25,BranchTee_mvgd_33532_lvgd_1197330000_22,BranchTee_mvgd_33532_lvgd_1197330000_25,0.057614936455856705,0.05000976484368362,0.004905172115993256,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.120027599999993 47.461627596235545, 10.119936400000002 47.46164759623549, 10.119794199999998 47.46164759623549, 10.1196762 47.46163129623553, 10.119583600000002 47.46162309623553, 10.119491100000005 47.46161489623553, 10.119381199999996 47.461600396235525, 10.119322199999997 47.461600396235525, 10.119276599999997 47.461609496235546)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_22_LVCableDist_mvgd_33532_lvgd_1197330000_building_445174,BranchTee_mvgd_33532_lvgd_1197330000_22,BranchTee_mvgd_33532_lvgd_1197330000_building_445174,0.013565316993091927,0.011774695150003792,0.0011549125756669999,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119991679203343 47.46150796157359, 10.120027599999993 47.461627596235545)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_23_LVCableDist_mvgd_33532_lvgd_1197330000_25,BranchTee_mvgd_33532_lvgd_1197330000_23,BranchTee_mvgd_33532_lvgd_1197330000_25,0.0037155283382139664,0.003225078597569723,0.00031632953400467144,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119276599999997 47.461609496235546, 10.119233600000006 47.46162579623556)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_23_LVCableDist_mvgd_33532_lvgd_1197330000_27,BranchTee_mvgd_33532_lvgd_1197330000_23,BranchTee_mvgd_33532_lvgd_1197330000_27,0.024190721047989933,0.02099754586965526,0.00205952931044688,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119233600000006 47.46162579623556, 10.119201499999997 47.461669296235556, 10.1191451 47.461707396235546, 10.119118299999995 47.46175459623555, 10.119045900000001 47.46179629623554)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_23_LVCableDist_mvgd_33532_lvgd_1197330000_building_445153,BranchTee_mvgd_33532_lvgd_1197330000_23,BranchTee_mvgd_33532_lvgd_1197330000_building_445153,0.02887238814181179,0.025061232907092633,0.0024581131551513337,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118894244251416 47.46150571966894, 10.119233600000006 47.46162579623556)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_24_LVCableDist_mvgd_33532_lvgd_1197330000_building_445202,BranchTee_mvgd_33532_lvgd_1197330000_24,BranchTee_mvgd_33532_lvgd_1197330000_building_445202,0.01528597189442663,0.013268223604362315,0.0013014042488764417,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.120350874626563 47.46281931189227, 10.120315599999998 47.46295479623563)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_25_LVCableDist_mvgd_33532_lvgd_1197330000_building_422862,BranchTee_mvgd_33532_lvgd_1197330000_25,BranchTee_mvgd_33532_lvgd_1197330000_building_422862,0.1710642977848234,0.14848381047722672,0.014563928646853276,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118209127698204 47.46025117323171, 10.119276599999997 47.461609496235546)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_26_LVCableDist_mvgd_33532_lvgd_1197330000_building_445194,BranchTee_mvgd_33532_lvgd_1197330000_26,BranchTee_mvgd_33532_lvgd_1197330000_building_445194,0.012021616542658133,0.01043476315902726,0.0010234863020180535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11925133537995 47.46312652772999, 10.119304800000004 47.46302459623565)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_27_LVCableDist_mvgd_33532_lvgd_1197330000_28,BranchTee_mvgd_33532_lvgd_1197330000_27,BranchTee_mvgd_33532_lvgd_1197330000_28,0.011585862076555138,0.010056528282449859,0.0009863874039191967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119045900000001 47.46179629623554, 10.118898399999997 47.46182529623556)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_27_LVCableDist_mvgd_33532_lvgd_1197330000_building_445165,BranchTee_mvgd_33532_lvgd_1197330000_27,BranchTee_mvgd_33532_lvgd_1197330000_building_445165,0.015471156799536067,0.013428964101997306,0.0013171703659412698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119044949983367 47.46193554626137, 10.119045900000001 47.46179629623554)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_28_LVCableDist_mvgd_33532_lvgd_1197330000_29,BranchTee_mvgd_33532_lvgd_1197330000_28,BranchTee_mvgd_33532_lvgd_1197330000_29,0.021946062169075638,0.019049181962757653,0.001868425426279568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118898399999997 47.46182529623556, 10.1188059 47.46184249623557, 10.118713299999996 47.461859696235535, 10.118616700000004 47.46187429623556)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_28_LVCableDist_mvgd_33532_lvgd_1197330000_building_445154,BranchTee_mvgd_33532_lvgd_1197330000_28,BranchTee_mvgd_33532_lvgd_1197330000_building_445154,0.03024163975690437,0.026249743308992993,0.0025746873502348745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118798920264743 47.461561620103545, 10.118898399999997 47.46182529623556)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_29_LVCableDist_mvgd_33532_lvgd_1197330000_building_445158,BranchTee_mvgd_33532_lvgd_1197330000_29,BranchTee_mvgd_33532_lvgd_1197330000_building_445158,0.016157703556611627,0.014024886687138893,0.001375621007672218,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118547868251207 47.461736584625335, 10.118616700000004 47.46187429623556)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_29_LVCableDist_mvgd_33532_lvgd_1197330000_building_445167,BranchTee_mvgd_33532_lvgd_1197330000_29,BranchTee_mvgd_33532_lvgd_1197330000_building_445167,0.015583136950196797,0.01352616287277082,0.001326704038047054,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118634017662497 47.46201406113009, 10.118616700000004 47.46187429623556)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_2_LVCableDist_mvgd_33532_lvgd_1197330000_3,BranchTee_mvgd_33532_lvgd_1197330000_2,BranchTee_mvgd_33532_lvgd_1197330000_3,0.1146993653422589,0.09955904911708073,0.009765178323680679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114228000000006 47.46410099623573, 10.115015099999997 47.46382049623575, 10.115602099999998 47.46366259623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_2_LVCableDist_mvgd_33532_lvgd_1197330000_building_445118,BranchTee_mvgd_33532_lvgd_1197330000_2,BranchTee_mvgd_33532_lvgd_1197330000_building_445118,0.03930998803024038,0.03412106961024865,0.0033467407763905096,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114618399922895 47.464335296341964, 10.114228000000006 47.46410099623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_2_LVCableDist_mvgd_33532_lvgd_1197330000_building_445120,BranchTee_mvgd_33532_lvgd_1197330000_2,BranchTee_mvgd_33532_lvgd_1197330000_building_445120,0.08184006488491538,0.07103717632010655,0.006967630773178755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114776349960751 47.46473654633261, 10.114228000000006 47.46410099623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_3_LVCableDist_mvgd_33532_lvgd_1197330000_4,BranchTee_mvgd_33532_lvgd_1197330000_3,BranchTee_mvgd_33532_lvgd_1197330000_4,0.03739224955216185,0.03245647261127649,0.003183469966994661,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115602099999998 47.46366259623573, 10.115829999999997 47.46361849623571, 10.116012399999995 47.46358549623573, 10.116079600000006 47.463572496235734)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_3_LVCableDist_mvgd_33532_lvgd_1197330000_7,BranchTee_mvgd_33532_lvgd_1197330000_3,BranchTee_mvgd_33532_lvgd_1197330000_7,0.16127547834228512,0.1399871152011035,0.013730536350832606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117135999999999 47.46466209623581, 10.116878700000004 47.464459596235805, 10.116308799999999 47.46417779623578, 10.116044999999998 47.46401039623575, 10.115950500000004 47.46393559623574, 10.115768099999997 47.46378149623576, 10.115676999999994 47.463719796235736, 10.115602099999998 47.46366259623573)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_4_LVCableDist_mvgd_33532_lvgd_1197330000_5,BranchTee_mvgd_33532_lvgd_1197330000_4,BranchTee_mvgd_33532_lvgd_1197330000_5,0.10206526850765378,0.08859265306464348,0.008689547188491532,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116079600000006 47.463572496235734, 10.116063400000005 47.4635308962357, 10.115918600000004 47.463257296235675, 10.115766899999997 47.462970496235634, 10.115729899999998 47.46287159623568, 10.115724899999996 47.46277729623566, 10.115757299999997 47.46269649623565)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_4_LVCableDist_mvgd_33532_lvgd_1197330000_8,BranchTee_mvgd_33532_lvgd_1197330000_4,BranchTee_mvgd_33532_lvgd_1197330000_8,0.09303653965462357,0.08075571642021326,0.007920866847297722,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116079600000006 47.463572496235734, 10.116541100000003 47.46345049623571, 10.116617200000002 47.463427596235704, 10.1167903 47.46337539623566, 10.117072400000003 47.463278696235676, 10.117206000000001 47.46323349623563)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_5_LVCableDist_mvgd_33532_lvgd_1197330000_6,BranchTee_mvgd_33532_lvgd_1197330000_5,BranchTee_mvgd_33532_lvgd_1197330000_6,0.04745759590077627,0.0411931932418738,0.0040404049787145105,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115757299999997 47.46269649623565, 10.115869400000005 47.462627496235626, 10.115986499999998 47.462563496235624, 10.116096099999993 47.462526396235624, 10.116300300000004 47.462514596235636)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_5_LVCableDist_mvgd_33532_lvgd_1197330000_building_445129,BranchTee_mvgd_33532_lvgd_1197330000_5,BranchTee_mvgd_33532_lvgd_1197330000_building_445129,0.019811980924215464,0.017196799442219024,0.0016867358079360212,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115518699994519 47.46262204627483, 10.115757299999997 47.46269649623565)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_6_LVCableDist_mvgd_33532_lvgd_1197330000_building_445139,BranchTee_mvgd_33532_lvgd_1197330000_6,BranchTee_mvgd_33532_lvgd_1197330000_building_445139,0.010357561736392008,0.008990363587188263,0.0008818134002101159,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116275180954979 47.4626062485222, 10.116300300000004 47.462514596235636)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_6_LVCableDist_mvgd_33532_lvgd_1197330000_building_445141,BranchTee_mvgd_33532_lvgd_1197330000_6,BranchTee_mvgd_33532_lvgd_1197330000_building_445141,0.02066147922988625,0.017934163971541264,0.001759059681880627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116571649987012 47.46248954627517, 10.116300300000004 47.462514596235636)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_8_LVCableDist_mvgd_33532_lvgd_1197330000_9,BranchTee_mvgd_33532_lvgd_1197330000_8,BranchTee_mvgd_33532_lvgd_1197330000_9,0.02510296594799579,0.021789374442860346,0.0021371952512900887,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117206000000001 47.46323349623563, 10.117234600000003 47.4632756962357, 10.117242900000004 47.46345509623571)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_8_LVCableDist_mvgd_33532_lvgd_1197330000_building_445148,BranchTee_mvgd_33532_lvgd_1197330000_8,BranchTee_mvgd_33532_lvgd_1197330000_building_445148,0.05977098336596548,0.051881213561658035,0.005088731828713618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11799390700176 47.463177501508035, 10.117206000000001 47.46323349623563)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_8_LVCableDist_mvgd_33532_lvgd_1197330000_building_445186,BranchTee_mvgd_33532_lvgd_1197330000_8,BranchTee_mvgd_33532_lvgd_1197330000_building_445186,0.09918625229233591,0.08609366698974756,0.008444435921698941,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118507520957008 47.46335916158485, 10.117206000000001 47.46323349623563)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_8_LVCableDist_mvgd_33532_lvgd_1197330000_building_445193,BranchTee_mvgd_33532_lvgd_1197330000_8,BranchTee_mvgd_33532_lvgd_1197330000_building_445193,0.10212001633467536,0.08864017417849822,0.008694208263050266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118432994575295 47.46362146851073, 10.117206000000001 47.46323349623563)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_8_LVStation_mvgd_33532_lvgd_1197330000,BusBar_mvgd_33532_lvgd_1197330000_LV,BranchTee_mvgd_33532_lvgd_1197330000_8,0.07350591481498323,0.06380313405940544,0.006258084897607824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117206000000001 47.46323349623563, 10.118035699999993 47.462886696235664)" -Branch_LVCableDist_mvgd_33532_lvgd_1197330000_9_LVCableDist_mvgd_33532_lvgd_1197330000_building_445137,BranchTee_mvgd_33532_lvgd_1197330000_9,BranchTee_mvgd_33532_lvgd_1197330000_building_445137,0.030436763977193092,0.026419111132203604,0.0025912996723754795,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117369080605979 47.463715298921684, 10.117242900000004 47.46345509623571)" -Branch_LVCableDist_mvgd_33532_lvgd_1198480000_building_422867_LVStation_mvgd_33532_lvgd_1198480000,BusBar_mvgd_33532_lvgd_1198480000_LV,BranchTee_mvgd_33532_lvgd_1198480000_building_422867,0.01733220490126703,0.015044353854299782,0.0014756147176438383,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.111907712108756 47.453830925585656, 10.11213156404492 47.45379599917682)" -Branch_LVCableDist_mvgd_33532_lvgd_1198480000_building_422873_LVStation_mvgd_33532_lvgd_1198480000,BusBar_mvgd_33532_lvgd_1198480000_LV,BranchTee_mvgd_33532_lvgd_1198480000_building_422873,0.00982300825195945,0.008526371162700802,0.0008363030341897594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.112258431752162 47.453776204468355, 10.11213156404492 47.45379599917682)" -Branch_LVCableDist_mvgd_33532_lvgd_1198880000_1_LVCableDist_mvgd_33532_lvgd_1198880000_building_448117,BranchTee_mvgd_33532_lvgd_1198880000_1,BranchTee_mvgd_33532_lvgd_1198880000_building_448117,0.0195675171925434,0.016984604923127672,0.0016659228598754395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.113344745368533 47.56236098842158, 10.113524900000002 47.5624878962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1198880000_1_LVCableDist_mvgd_33532_lvgd_1198880000_building_448118,BranchTee_mvgd_33532_lvgd_1198880000_1,BranchTee_mvgd_33532_lvgd_1198880000_building_448118,0.015705682308844948,0.013632532244077416,0.001337137201965335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.113470354985399 47.562351462339635, 10.113524900000002 47.5624878962447)" -Branch_LVCableDist_mvgd_33532_lvgd_1198880000_1_LVStation_mvgd_33532_lvgd_1198880000,BusBar_mvgd_33532_lvgd_1198880000_LV,BranchTee_mvgd_33532_lvgd_1198880000_1,0.1008276048114085,0.08751836097630257,0.008584176015229006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.113524900000002 47.5624878962447, 10.113675400000005 47.562284796244654, 10.113896800000004 47.56205839624468, 10.113896799999994 47.56212489624465, 10.113939999999994 47.56222179624473, 10.1140074 47.56229879624465, 10.114194200000002 47.56238169624468)" -Branch_LVCableDist_mvgd_33532_lvgd_1198880000_2_LVCableDist_mvgd_33532_lvgd_1198880000_building_448126,BranchTee_mvgd_33532_lvgd_1198880000_2,BranchTee_mvgd_33532_lvgd_1198880000_building_448126,0.04120398531421251,0.03576505925273646,0.0035079903279234726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114429565771463 47.5623104679432, 10.114723399999995 47.56262329624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1198880000_2_LVCableDist_mvgd_33532_lvgd_1198880000_building_448128,BranchTee_mvgd_33532_lvgd_1198880000_2,BranchTee_mvgd_33532_lvgd_1198880000_building_448128,0.01560974445465599,0.0135492581866414,0.0013289693254356705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114865250023545 47.562520846335985, 10.114723399999995 47.56262329624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1198880000_2_LVCableDist_mvgd_33532_lvgd_1198880000_building_448135,BranchTee_mvgd_33532_lvgd_1198880000_2,BranchTee_mvgd_33532_lvgd_1198880000_building_448135,0.026360823135166942,0.022881194481324904,0.002244285641038951,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114769147424523 47.56285851450456, 10.114723399999995 47.56262329624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1198880000_2_LVStation_mvgd_33532_lvgd_1198880000,BusBar_mvgd_33532_lvgd_1198880000_LV,BranchTee_mvgd_33532_lvgd_1198880000_2,0.04804976003736049,0.041707191712428905,0.0040908201520973644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114194200000002 47.56238169624468, 10.114723399999995 47.56262329624471)" -Branch_LVCableDist_mvgd_33532_lvgd_1199280000_1_LVCableDist_mvgd_33532_lvgd_1199280000_building_34328667,BranchTee_mvgd_33532_lvgd_1199280000_1,BranchTee_mvgd_33532_lvgd_1199280000_building_34328667,0.0368674997111833,0.0320009897493071,0.0031387942553445744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11531565868121 47.544410366811114, 10.1154002 47.54473719624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1199280000_1_LVCableDist_mvgd_33532_lvgd_1199280000_building_34328668,BranchTee_mvgd_33532_lvgd_1199280000_1,BranchTee_mvgd_33532_lvgd_1199280000_building_34328668,0.06916712963580664,0.06003706852388016,0.005888693045644436,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114515064480992 47.54490275153684, 10.1154002 47.54473719624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1199280000_1_LVCableDist_mvgd_33532_lvgd_1199280000_building_34328669,BranchTee_mvgd_33532_lvgd_1199280000_1,BranchTee_mvgd_33532_lvgd_1199280000_building_34328669,0.02973982683014525,0.025814169688566077,0.0025319644223415197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115035290719899 47.54483936567325, 10.1154002 47.54473719624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1199280000_1_LVStation_mvgd_33532_lvgd_1199280000,BusBar_mvgd_33532_lvgd_1199280000_LV,BranchTee_mvgd_33532_lvgd_1199280000_1,0.02438722289486378,0.02116810947274176,0.0020762589198037398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115115900000001 47.54484219624309, 10.1154002 47.54473719624311)" -Branch_LVCableDist_mvgd_33532_lvgd_1200480000_building_422872_LVStation_mvgd_33532_lvgd_1200480000,BusBar_mvgd_33532_lvgd_1200480000_LV,BranchTee_mvgd_33532_lvgd_1200480000_building_422872,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122408699950109 47.458826896343886, 10.122408699950109 47.458826896343886)" -Branch_LVCableDist_mvgd_33532_lvgd_1200490000_1_LVCableDist_mvgd_33532_lvgd_1200490000_building_422893,BranchTee_mvgd_33532_lvgd_1200490000_1,BranchTee_mvgd_33532_lvgd_1200490000_building_422893,0.0410812576146902,0.03565853160955109,0.0034975416400208474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12487492890233 47.46093080052908, 10.125139699999995 47.46060769623539)" -Branch_LVCableDist_mvgd_33532_lvgd_1200490000_1_LVCableDist_mvgd_33532_lvgd_1200490000_building_445205,BranchTee_mvgd_33532_lvgd_1200490000_1,BranchTee_mvgd_33532_lvgd_1200490000_building_445205,0.04792434642317325,0.041598332695314384,0.004080142793045715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125125749992383 47.461038946318034, 10.125139699999995 47.46060769623539)" -Branch_LVCableDist_mvgd_33532_lvgd_1200490000_1_LVStation_mvgd_33532_lvgd_1200490000,BusBar_mvgd_33532_lvgd_1200490000_LV,BranchTee_mvgd_33532_lvgd_1200490000_1,0.058355708849952365,0.05065275528175865,0.004968239374508755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125139699999995 47.46060769623539, 10.125065599999994 47.46064449623545, 10.1245872 47.46084289623548, 10.124696899999998 47.46087769623543)" -Branch_LVCableDist_mvgd_33532_lvgd_1200510000_1_LVCableDist_mvgd_33532_lvgd_1200510000_building_422885,BranchTee_mvgd_33532_lvgd_1200510000_1,BranchTee_mvgd_33532_lvgd_1200510000_building_422885,0.02859885885716071,0.024823809488015495,0.002434825648429773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.129188585115726 47.45755947628894, 10.129566900000006 47.45754389623515)" -Branch_LVCableDist_mvgd_33532_lvgd_1200510000_1_LVStation_mvgd_33532_lvgd_1200510000,BusBar_mvgd_33532_lvgd_1200510000_LV,BranchTee_mvgd_33532_lvgd_1200510000_1,0.20987192450054393,0.18216883046647211,0.0178678998071734,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.127972999999997 47.45895099623527, 10.1281156 47.45885139623525, 10.128459100000004 47.45862979623522, 10.128865700000004 47.45835689623517, 10.1292187 47.45806139623522, 10.1295171 47.457768596235184, 10.1296839 47.45758959623512, 10.129566900000006 47.45754389623515)" -Branch_LVCableDist_mvgd_33532_lvgd_1200510000_2_LVCableDist_mvgd_33532_lvgd_1200510000_building_422894,BranchTee_mvgd_33532_lvgd_1200510000_2,BranchTee_mvgd_33532_lvgd_1200510000_building_422894,0.034192843660187794,0.029679388297043006,0.002911081632745958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.128018214759912 47.45934069940668, 10.1277503 47.459092496235286)" -Branch_LVCableDist_mvgd_33532_lvgd_1200510000_2_LVCableDist_mvgd_33532_lvgd_1200510000_building_422898,BranchTee_mvgd_33532_lvgd_1200510000_2,BranchTee_mvgd_33532_lvgd_1200510000_building_422898,0.041407280159817254,0.035941519178721376,0.0035252982739063616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.128267755814575 47.459216574551625, 10.1277503 47.459092496235286)" -Branch_LVCableDist_mvgd_33532_lvgd_1200510000_2_LVCableDist_mvgd_33532_lvgd_1200510000_building_422905,BranchTee_mvgd_33532_lvgd_1200510000_2,BranchTee_mvgd_33532_lvgd_1200510000_building_422905,0.14731718343545644,0.1278713152219762,0.012542166751288827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.129039649951231 47.460088146305914, 10.1277503 47.459092496235286)" -Branch_LVCableDist_mvgd_33532_lvgd_1200510000_2_LVStation_mvgd_33532_lvgd_1200510000,BusBar_mvgd_33532_lvgd_1200510000_LV,BranchTee_mvgd_33532_lvgd_1200510000_2,0.023010621475558036,0.019973219440784375,0.0019590589832562287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1277503 47.459092496235286, 10.127972999999997 47.45895099623527)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_1_LVCableDist_mvgd_33532_lvgd_1201300000_2,BranchTee_mvgd_33532_lvgd_1201300000_1,BranchTee_mvgd_33532_lvgd_1201300000_2,0.017419502949078406,0.015120128559800057,0.0014830470255876836,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122491599999998 47.564615896244874, 10.122310099999998 47.564518696244875)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_1_LVCableDist_mvgd_33532_lvgd_1201300000_building_448137,BranchTee_mvgd_33532_lvgd_1201300000_1,BranchTee_mvgd_33532_lvgd_1201300000_building_448137,0.012387257615570208,0.01075213961031494,0.0010546159448787088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12250440002198 47.56472704629207, 10.122491599999998 47.564615896244874)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_1_LVCableDist_mvgd_33532_lvgd_1201300000_building_448139,BranchTee_mvgd_33532_lvgd_1201300000_1,BranchTee_mvgd_33532_lvgd_1201300000_building_448139,0.01774731532565909,0.01540466970267209,0.0015109560406416712,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122670973343965 47.56451227891304, 10.122491599999998 47.564615896244874)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_1_LVCableDist_mvgd_33532_lvgd_1201300000_building_448141,BranchTee_mvgd_33532_lvgd_1201300000_1,BranchTee_mvgd_33532_lvgd_1201300000_building_448141,0.1123297645355422,0.09750223561685063,0.009563437238501362,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12370390093763 47.56402673793879, 10.122491599999998 47.564615896244874)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_1_LVCableDist_mvgd_33532_lvgd_1201300000_building_448142,BranchTee_mvgd_33532_lvgd_1201300000_1,BranchTee_mvgd_33532_lvgd_1201300000_building_448142,0.10680257943924565,0.09270463895326522,0.009092868391565988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.123724449999637 47.56414059624916, 10.122491599999998 47.564615896244874)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_1_LVStation_mvgd_33532_lvgd_1201300000,BusBar_mvgd_33532_lvgd_1201300000_LV,BranchTee_mvgd_33532_lvgd_1201300000_1,0.16532581842193558,0.1435028103902401,0.014075370805943278,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.123861900000003 47.56404329624482, 10.123794299999998 47.56437869624481, 10.1237366 47.56452709624485, 10.123641299999997 47.564628096244874, 10.1235106 47.56471589624491, 10.123373999999998 47.5647763962449, 10.123207299999999 47.56480139624488, 10.123048700000004 47.56479259624487, 10.1227492 47.56470739624488, 10.122491599999998 47.564615896244874)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_2_LVCableDist_mvgd_33532_lvgd_1201300000_building_448132,BranchTee_mvgd_33532_lvgd_1201300000_2,BranchTee_mvgd_33532_lvgd_1201300000_building_448132,0.020824337457036924,0.01807552491270805,0.0017729249689714432,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122328757626581 47.56433169829944, 10.122310099999998 47.564518696244875)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_3_LVCableDist_mvgd_33532_lvgd_1201300000_4,BranchTee_mvgd_33532_lvgd_1201300000_3,BranchTee_mvgd_33532_lvgd_1201300000_4,0.03222653069418478,0.02797262864255239,0.00274367532935545,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1251533 47.56434429624487, 10.1251475 47.564455196244865, 10.125209099999996 47.56450759624487, 10.125348400000002 47.56456799624485)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_3_LVCableDist_mvgd_33532_lvgd_1201300000_building_448153,BranchTee_mvgd_33532_lvgd_1201300000_3,BranchTee_mvgd_33532_lvgd_1201300000_building_448153,0.01215260625946159,0.010548462233212659,0.0010346383946154038,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125025400002528 47.56427759634103, 10.1251533 47.56434429624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_3_LVCableDist_mvgd_33532_lvgd_1201300000_building_448154,BranchTee_mvgd_33532_lvgd_1201300000_3,BranchTee_mvgd_33532_lvgd_1201300000_building_448154,0.01821773195559292,0.015812991337454656,0.001551005976960162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125394362553495 47.56435816466374, 10.1251533 47.56434429624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_3_LVStation_mvgd_33532_lvgd_1201300000,BusBar_mvgd_33532_lvgd_1201300000_LV,BranchTee_mvgd_33532_lvgd_1201300000_3,0.13367292788316876,0.11602810140259048,0.011380533570805394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.123861900000003 47.56404329624482, 10.1239422 47.56400309624487, 10.124143900000002 47.5639936962448, 10.1245251 47.56399889624481, 10.124774900000004 47.56401319624483, 10.124883300000002 47.564020496244844, 10.124966500000001 47.56403869624486, 10.1252587 47.564149896244864, 10.125181199999998 47.56424339624486, 10.1251533 47.56434429624487)" -Branch_LVCableDist_mvgd_33532_lvgd_1201300000_4_LVCableDist_mvgd_33532_lvgd_1201300000_building_448156,BranchTee_mvgd_33532_lvgd_1201300000_4,BranchTee_mvgd_33532_lvgd_1201300000_building_448156,0.009479393593361399,0.008228113639037695,0.0008070486577088778,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125462121075056 47.56453140199108, 10.125348400000002 47.56456799624485)" -Branch_LVCableDist_mvgd_33532_lvgd_1202400000_1_LVCableDist_mvgd_33532_lvgd_1202400000_building_34328715,BranchTee_mvgd_33532_lvgd_1202400000_1,BranchTee_mvgd_33532_lvgd_1202400000_building_34328715,0.04183305503413763,0.036311091769631466,0.003561547537893783,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.126813273385709 47.558775571636325, 10.126657900000005 47.558414096244356)" -Branch_LVCableDist_mvgd_33532_lvgd_1202400000_1_LVCableDist_mvgd_33532_lvgd_1202400000_building_34328716,BranchTee_mvgd_33532_lvgd_1202400000_1,BranchTee_mvgd_33532_lvgd_1202400000_building_34328716,0.08218131702307158,0.07133338317602612,0.0069966840113766205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.126910302710456 47.55913368540695, 10.126657900000005 47.558414096244356)" -Branch_LVCableDist_mvgd_33532_lvgd_1202400000_1_LVCableDist_mvgd_33532_lvgd_1202400000_building_448097,BranchTee_mvgd_33532_lvgd_1202400000_1,BranchTee_mvgd_33532_lvgd_1202400000_building_448097,0.41338951530681817,0.35882209928631814,0.03519480968412742,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.121290297394095 47.55763573678401, 10.126657900000005 47.558414096244356)" -Branch_LVCableDist_mvgd_33532_lvgd_1202400000_1_LVCableDist_mvgd_33532_lvgd_1202400000_building_448102,BranchTee_mvgd_33532_lvgd_1202400000_1,BranchTee_mvgd_33532_lvgd_1202400000_building_448102,0.35870224191818273,0.3113535459849826,0.03053889048978513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122014716728541 47.55769477441065, 10.126657900000005 47.558414096244356)" -Branch_LVCableDist_mvgd_33532_lvgd_1202400000_1_LVCableDist_mvgd_33532_lvgd_1202400000_building_448103,BranchTee_mvgd_33532_lvgd_1202400000_1,BranchTee_mvgd_33532_lvgd_1202400000_building_448103,0.35340566574904936,0.3067561178701748,0.03008795503218946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122029150004703 47.557891146270755, 10.126657900000005 47.558414096244356)" -Branch_LVCableDist_mvgd_33532_lvgd_1202400000_1_LVCableDist_mvgd_33532_lvgd_1202400000_building_448107,BranchTee_mvgd_33532_lvgd_1202400000_1,BranchTee_mvgd_33532_lvgd_1202400000_building_448107,0.4463851329845677,0.3874622954306048,0.03800396289575817,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12086877085475 47.55755205513024, 10.126657900000005 47.558414096244356)" -Branch_LVCableDist_mvgd_33532_lvgd_1202400000_1_LVStation_mvgd_33532_lvgd_1202400000,BusBar_mvgd_33532_lvgd_1202400000_LV,BranchTee_mvgd_33532_lvgd_1202400000_1,0.15582734165035014,0.13525813255250393,0.013266697460619222,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.126657900000005 47.558414096244356, 10.126240100000006 47.558285996244294, 10.125478300000003 47.55809189624432, 10.1247248 47.55791649624429)" -Branch_LVCableDist_mvgd_33532_lvgd_1203710000_building_34328646_LVStation_mvgd_33532_lvgd_1203710000,BusBar_mvgd_33532_lvgd_1203710000_LV,BranchTee_mvgd_33532_lvgd_1203710000_building_34328646,0.019564438169536697,0.016981932331157853,0.001665660720598265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.13089554839512 47.53083521499085, 10.130638155610297 47.53085837400748)" -Branch_LVCableDist_mvgd_33532_lvgd_1203710000_building_34328647_LVStation_mvgd_33532_lvgd_1203710000,BusBar_mvgd_33532_lvgd_1203710000_LV,BranchTee_mvgd_33532_lvgd_1203710000_building_34328647,0.020266328949947662,0.01759117352855457,0.0017254177089129617,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.130768712916122 47.53069889531684, 10.130638155610297 47.53085837400748)" -Branch_LVCableDist_mvgd_33532_lvgd_1203710000_building_34328648_LVStation_mvgd_33532_lvgd_1203710000,BusBar_mvgd_33532_lvgd_1203710000_LV,BranchTee_mvgd_33532_lvgd_1203710000_building_34328648,0.04027787398714469,0.034961194620841594,0.0034291438388482113,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.13019318268463 47.53105926781657, 10.130638155610297 47.53085837400748)" -Branch_LVCableDist_mvgd_33532_lvgd_1205070000_building_34328494_LVStation_mvgd_33532_lvgd_1205070000,BusBar_mvgd_33532_lvgd_1205070000_LV,BranchTee_mvgd_33532_lvgd_1205070000_building_34328494,0.05164582373905659,0.044828575005501116,0.0043969788061194864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.133780497141077 47.41346099314214, 10.134432452294615 47.413320640977645)" -Branch_LVCableDist_mvgd_33532_lvgd_1205070000_building_34328495_LVStation_mvgd_33532_lvgd_1205070000,BusBar_mvgd_33532_lvgd_1205070000_LV,BranchTee_mvgd_33532_lvgd_1205070000_building_34328495,0.047646049735329446,0.04135677117026596,0.004056449403151401,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.135005272949286 47.413140894895456, 10.134432452294615 47.413320640977645)" -Branch_LVCableDist_mvgd_33532_lvgd_1205070000_building_34328496_LVStation_mvgd_33532_lvgd_1205070000,BusBar_mvgd_33532_lvgd_1205070000_LV,BranchTee_mvgd_33532_lvgd_1205070000_building_34328496,0.03046600009664954,0.0264444880838918,0.0025937887525820935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.134828127629966 47.41326718954183, 10.134432452294615 47.413320640977645)" +Branch_Generator_mvgd_33535_biomass_380_Load_mvgd_33535_1,Bus_mvgd_33535_mvload_1,Bus_mvgd_33535_gen_380,0.032670445335596085,0.012088064774170551,0.012111193264586238,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.030784999999998 47.548558996200754, 10.031116705906797 47.54853468799076)" +Branch_Generator_mvgd_33535_gsgk_22_MVCableDist_mvgd_33535_56,Bus_mvgd_33535_gen_22,BranchTee_mvgd_33535_56,0.06861610354235854,0.02538795831067266,0.02543653392318236,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.002585999999999 47.545480996199785, 10.003283460145301 47.54552649570513)" +Branch_Generator_mvgd_33535_gsgk_26_MVCableDist_mvgd_33535_59,Bus_mvgd_33535_gen_26,BranchTee_mvgd_33535_59,0.052768214183024256,0.010870252121702997,0.006649284746559918,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.973540999999994 47.530462996195006, 9.973876932636836 47.53074859510434)" +Branch_Generator_mvgd_33535_pv_rooftop_3_MVCableDist_mvgd_33535_57,Bus_mvgd_33535_gen_3,BranchTee_mvgd_33535_57,0.1525956986165364,0.05646040848811847,0.056568436037687325,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.092982399997963 47.559873496288795, 10.09367943116541 47.55892853927181)" +Branch_Generator_mvgd_33535_water_382_Generator_mvgd_33535_water_383,Bus_mvgd_33535_gen_382,Bus_mvgd_33535_gen_383,0.001,0.000206,0.00012600928133548662,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.968600000000004 47.52846999619443, 9.968600000000004 47.52846999619443)" +Branch_Generator_mvgd_33535_water_382_MVCableDist_mvgd_33535_58,Bus_mvgd_33535_gen_382,BranchTee_mvgd_33535_58,0.03580077456320471,0.00737495956002017,0.0045112298739631955,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.968600000000004 47.52846999619443, 9.968957591647868 47.52852116688911)" +Branch_Generator_mvgd_33535_water_384_Generator_mvgd_33535_water_385,Bus_mvgd_33535_gen_384,Bus_mvgd_33535_gen_385,0.001,0.000206,0.00012600928133548662,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974219999999999 47.530562996195115, 9.974219999999999 47.530562996195115)" +Branch_Generator_mvgd_33535_water_384_Generator_mvgd_33535_water_386,Bus_mvgd_33535_gen_384,Bus_mvgd_33535_gen_386,0.001,0.000206,0.00012600928133548662,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974219999999999 47.530562996195115, 9.974219999999999 47.530562996195115)" +Branch_Generator_mvgd_33535_water_384_MVCableDist_mvgd_33535_59,Bus_mvgd_33535_gen_384,BranchTee_mvgd_33535_59,0.04298821591258416,0.008855572477992336,0.0054169141930394595,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974219999999999 47.530562996195115, 9.973876932636836 47.53074859510434)" +Branch_LVStation_mvgd_33535_lvgd_1141170000_MVCableDist_mvgd_33535_2,BusBar_mvgd_33535_lvgd_1141170000_MV,BranchTee_mvgd_33535_2,0.8740663248002085,0.32340454017607717,0.32402332067962264,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.040278153522014 47.497236243470454, 10.048219013447918 47.49998981068342)" +Branch_LVStation_mvgd_33535_lvgd_1150630000_MVCableDist_mvgd_33535_3,BusBar_mvgd_33535_lvgd_1150630000_MV,BranchTee_mvgd_33535_3,0.20700115448165707,0.04264223782322135,0.02608406671184965,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.971241399999998 47.521178496241035, 9.973267206707693 47.52158559020645)" +Branch_LVStation_mvgd_33535_lvgd_1150630000_MVCableDist_mvgd_33535_9,BusBar_mvgd_33535_lvgd_1150630000_MV,BranchTee_mvgd_33535_9,0.7085450117530219,0.1459602724211225,0.0892832477248422,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.971241399999998 47.521178496241035, 9.969748552299011 47.52597839431304)" +Branch_LVStation_mvgd_33535_lvgd_1150640000_LVStation_mvgd_33535_lvgd_1155780000,BusBar_mvgd_33535_lvgd_1155780000_MV,BusBar_mvgd_33535_lvgd_1150640000_MV,0.6561576721913499,0.13516848047141808,0.0826819567155978,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.981439909960994 47.51787453129527, 9.9747575 47.51817289624075)" +Branch_LVStation_mvgd_33535_lvgd_1150640000_MVCableDist_mvgd_33535_3,BusBar_mvgd_33535_lvgd_1150640000_MV,BranchTee_mvgd_33535_3,0.5140925679138236,0.04009922029727824,0.05814249964643448,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (9.9747575 47.51817289624075, 9.973267206707693 47.52158559020645)" +Branch_LVStation_mvgd_33535_lvgd_1151050000_MVCableDist_mvgd_33535_58,BusBar_mvgd_33535_lvgd_1151050000_MV,BranchTee_mvgd_33535_58,0.5078103905645224,0.1046089404562916,0.06398882236972823,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.967887399999995 47.531961196242015, 9.968957591647868 47.52852116688911)" +Branch_LVStation_mvgd_33535_lvgd_1151050000_MVCableDist_mvgd_33535_8,BusBar_mvgd_33535_lvgd_1151050000_MV,BranchTee_mvgd_33535_8,0.4716567998189584,0.0613153839764646,0.05329867473764901,14.445303735124435,1,line,NA2XS2Y 3x1x240,"LINESTRING (9.967887399999995 47.531961196242015, 9.971478841193234 47.53413638703258)" +Branch_LVStation_mvgd_33535_lvgd_1152000000_MVCableDist_mvgd_33535_10,BusBar_mvgd_33535_lvgd_1152000000_MV,BranchTee_mvgd_33535_10,1.0494944906080432,0.2161958650652569,0.13224604652707214,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.970474700000002 47.555076396244026, 9.97761393434411 47.549656821675576)" +Branch_LVStation_mvgd_33535_lvgd_1152010000_MVCableDist_mvgd_33535_5,BusBar_mvgd_33535_lvgd_1152010000_MV,BranchTee_mvgd_33535_5,2.6177507999258585,0.9685677959725676,0.970420988473154,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.971264899999996 47.56023109624446, 9.996294213899032 47.553857279122525)" +Branch_LVStation_mvgd_33535_lvgd_1152030000_MVCableDist_mvgd_33535_6,BusBar_mvgd_33535_lvgd_1152030000_MV,BranchTee_mvgd_33535_6,1.3818815926263308,0.5112961892717424,0.5122744690240496,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.973807199999998 47.558039296244296, 9.98741872382493 47.555508531329956)" +Branch_LVStation_mvgd_33535_lvgd_1152040000_LVStation_mvgd_33535_lvgd_1152090000,BusBar_mvgd_33535_lvgd_1152040000_MV,BusBar_mvgd_33535_lvgd_1152090000_MV,0.4816824338622657,0.17822250052903832,0.17856349947902356,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.987070699999995 47.55740889624422, 9.989380199999992 47.560353496244474)" +Branch_LVStation_mvgd_33535_lvgd_1152050000_MVCableDist_mvgd_33535_6,BusBar_mvgd_33535_lvgd_1152050000_MV,BranchTee_mvgd_33535_6,0.9784013784104849,0.12719217919336304,0.11056237681887394,14.445303735124435,1,line,NA2XS2Y 3x1x240,"LINESTRING (9.977461599999993 47.554935496244006, 9.98741872382493 47.555508531329956)" +Branch_LVStation_mvgd_33535_lvgd_1152060000_LVStation_mvgd_33535_lvgd_1152070000,BusBar_mvgd_33535_lvgd_1152060000_MV,BusBar_mvgd_33535_lvgd_1152070000_MV,0.20784842013971322,0.0769039154516939,0.07705105823299781,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.983414348584231 47.55941549729083, 9.981826099999992 47.56037039624449)" +Branch_LVStation_mvgd_33535_lvgd_1152070000_MVCableDist_mvgd_33535_6,BusBar_mvgd_33535_lvgd_1152070000_MV,BranchTee_mvgd_33535_6,0.687141323278762,0.25424228961314194,0.25472873971648224,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.983414348584231 47.55941549729083, 9.98741872382493 47.555508531329956)" +Branch_LVStation_mvgd_33535_lvgd_1152090000_MVCableDist_mvgd_33535_6,BusBar_mvgd_33535_lvgd_1152090000_MV,BranchTee_mvgd_33535_6,0.27659519547881606,0.10234022232716194,0.10253603322786879,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.987070699999995 47.55740889624422, 9.98741872382493 47.555508531329956)" +Branch_LVStation_mvgd_33535_lvgd_1152120000_LVStation_mvgd_33535_lvgd_1152130000,BusBar_mvgd_33535_lvgd_1152130000_MV,BusBar_mvgd_33535_lvgd_1152120000_MV,0.3314080419443694,0.03314080419443694,0.03852251558678133,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.999182900000005 47.55977909624444, 9.999614600000003 47.56205479624466)" +Branch_LVStation_mvgd_33535_lvgd_1152120000_MVCableDist_mvgd_33535_7,BusBar_mvgd_33535_lvgd_1152120000_MV,BranchTee_mvgd_33535_7,0.5318995550721777,0.05318995550721777,0.06182743418251002,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.999614600000003 47.56205479624466, 10.003971291519571 47.564255255361005)" +Branch_LVStation_mvgd_33535_lvgd_1152130000_MVCableDist_mvgd_33535_5,BusBar_mvgd_33535_lvgd_1152130000_MV,BranchTee_mvgd_33535_5,0.9008903719817096,0.09008903719817096,0.10471853124937805,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.999182900000005 47.55977909624444, 9.996294213899032 47.553857279122525)" +Branch_LVStation_mvgd_33535_lvgd_1152140000_MVCableDist_mvgd_33535_7,BusBar_mvgd_33535_lvgd_1152140000_MV,BranchTee_mvgd_33535_7,0.23513727987409222,0.08700079355341413,0.08716725502242915,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.002536000000003 47.56556059624496, 10.003971291519571 47.564255255361005)" +Branch_LVStation_mvgd_33535_lvgd_1152380000_MVCableDist_mvgd_33535_59,BusBar_mvgd_33535_lvgd_1152380000_MV,BranchTee_mvgd_33535_59,0.15289301146806358,0.0314959603624211,0.019265938496309004,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974850300000005 47.53157609624192, 9.973876932636836 47.53074859510434)" +Branch_LVStation_mvgd_33535_lvgd_1152380000_MVCableDist_mvgd_33535_8,BusBar_mvgd_33535_lvgd_1152380000_MV,BranchTee_mvgd_33535_8,0.49579787447550244,0.1021343621419535,0.062475133850319865,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.974850300000005 47.53157609624192, 9.971478841193234 47.53413638703258)" +Branch_LVStation_mvgd_33535_lvgd_1152390000_LVStation_mvgd_33535_lvgd_1152400000,BusBar_mvgd_33535_lvgd_1152390000_MV,BusBar_mvgd_33535_lvgd_1152400000_MV,0.5152398030207002,0.10613939942226423,0.06492499729407611,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.979701499999996 47.52925419624172, 9.9758199 47.526846996241524)" +Branch_LVStation_mvgd_33535_lvgd_1152390000_MVCableDist_mvgd_33535_9,BusBar_mvgd_33535_lvgd_1152390000_MV,BranchTee_mvgd_33535_9,0.6078589783045436,0.12521894953073598,0.07659587300947869,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.9758199 47.526846996241524, 9.969748552299011 47.52597839431304)" +Branch_LVStation_mvgd_33535_lvgd_1153210000_MVCableDist_mvgd_33535_10,BusBar_mvgd_33535_lvgd_1153210000_MV,BranchTee_mvgd_33535_10,0.5024341898411269,0.10350144310727213,0.06331137118025784,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.973786725536701 47.547339920043285, 9.97761393434411 47.549656821675576)" +Branch_LVStation_mvgd_33535_lvgd_1155260000_LVStation_mvgd_33535_lvgd_1155270000,BusBar_mvgd_33535_lvgd_1155260000_MV,BusBar_mvgd_33535_lvgd_1155270000_MV,0.40275862658469086,0.08296827707644631,0.05075132508760451,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.981248 47.53591809624236, 9.977849699999993 47.534348096242205)" +Branch_LVStation_mvgd_33535_lvgd_1155260000_MVCableDist_mvgd_33535_11,BusBar_mvgd_33535_lvgd_1155260000_MV,BranchTee_mvgd_33535_11,0.3928321395389221,0.08092342074501795,0.04950049558878117,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.977849699999993 47.534348096242205, 9.97517841701417 47.53637675337577)" +Branch_LVStation_mvgd_33535_lvgd_1155780000_LVStation_mvgd_33535_lvgd_1156440000,BusBar_mvgd_33535_lvgd_1155780000_MV,BusBar_mvgd_33535_lvgd_1156440000_MV,0.5207469564124525,0.10727387302096521,0.06561894973517511,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.981484300000004 47.51426929624038, 9.981439909960994 47.51787453129527)" +Branch_LVStation_mvgd_33535_lvgd_1156450000_MVCableDist_mvgd_33535_12,BusBar_mvgd_33535_lvgd_1156450000_MV,BranchTee_mvgd_33535_12,1.5857598842112375,0.3266665361475149,0.1998204633801025,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.989299899999995 47.51335609624034, 9.984705724901088 47.52388337901873)" +Branch_LVStation_mvgd_33535_lvgd_1156570000_MVCableDist_mvgd_33535_13,BusBar_mvgd_33535_lvgd_1156570000_MV,BranchTee_mvgd_33535_13,0.24136776192334716,0.08930607191163845,0.08947694414527212,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.9865232 47.54548489624321, 9.988164556270467 47.54423827196185)" +Branch_LVStation_mvgd_33535_lvgd_1157260000_MVCableDist_mvgd_33535_20,BusBar_mvgd_33535_lvgd_1157260000_MV,BranchTee_mvgd_33535_20,0.6892179699431574,0.14197890180829043,0.08684786107604028,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.984748999999997 47.54320689624296, 9.98052636625868 47.54702430740754)" +Branch_LVStation_mvgd_33535_lvgd_1157260000_MVCableDist_mvgd_33535_4,BusBar_mvgd_33535_lvgd_1157260000_MV,BranchTee_mvgd_33535_4,0.14937143207201756,0.030770515006835614,0.018822186807447388,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.984748999999997 47.54320689624296, 9.98626414895975 47.54308805548839)" +Branch_LVStation_mvgd_33535_lvgd_1157730000_LVStation_mvgd_33535_lvgd_1163320000,BusBar_mvgd_33535_lvgd_1163320000_MV,BusBar_mvgd_33535_lvgd_1157730000_MV,0.934483869491245,0.0934483869491245,0.10862340339379875,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (10.001292200000002 47.53662159624241, 9.991805300000005 47.53730969624246)" +Branch_LVStation_mvgd_33535_lvgd_1157730000_MVCableDist_mvgd_33535_15,BusBar_mvgd_33535_lvgd_1157730000_MV,BranchTee_mvgd_33535_15,0.24496335789765408,0.02449633578976541,0.02847427816608842,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.991805300000005 47.53730969624246, 9.990139804507564 47.53857495088489)" +Branch_LVStation_mvgd_33535_lvgd_1157740000_MVCableDist_mvgd_33535_15,BusBar_mvgd_33535_lvgd_1157740000_MV,BranchTee_mvgd_33535_15,0.302702511216459,0.06235671731059055,0.03814332589683308,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.992445600000002 47.53997049624272, 9.990139804507564 47.53857495088489)" +Branch_LVStation_mvgd_33535_lvgd_1159300000_MVCableDist_mvgd_33535_22,BusBar_mvgd_33535_lvgd_1159300000_MV,BranchTee_mvgd_33535_22,1.9007119680644058,0.7032634281838301,0.7046090051444375,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.117484600000001 47.55610829624415, 10.098102429617397 47.55685579576007)" +Branch_LVStation_mvgd_33535_lvgd_1159870000_MVCableDist_mvgd_33535_16,BusBar_mvgd_33535_lvgd_1159870000_MV,BranchTee_mvgd_33535_16,1.7577713382636813,0.650375395157562,0.6516197797116259,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.097126999999995 47.45210599623459, 10.090655150847624 47.46345487403672)" +Branch_LVStation_mvgd_33535_lvgd_1159900000_MVCableDist_mvgd_33535_17,BusBar_mvgd_33535_lvgd_1159900000_MV,BranchTee_mvgd_33535_17,0.2465207406054456,0.09121267402401487,0.09138719422194277,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (9.993023599999997 47.552695996243806, 9.993690037971223 47.5543418623081)" +Branch_LVStation_mvgd_33535_lvgd_1160850000_MVCableDist_mvgd_33535_18,BusBar_mvgd_33535_lvgd_1160850000_MV,BranchTee_mvgd_33535_18,0.44180958334356396,0.09101277416877417,0.05567210808425327,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.000569899999999 47.52387799624125, 9.999290480345204 47.526811151049166)" +Branch_LVStation_mvgd_33535_lvgd_1160950000_MVCableDist_mvgd_33535_19,BusBar_mvgd_33535_lvgd_1160950000_MV,BranchTee_mvgd_33535_19,0.43402114711572576,0.0894083563058395,0.05469069283245611,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.995877763531064 47.522992575696975, 9.994620659573224 47.52587397080866)" +Branch_LVStation_mvgd_33535_lvgd_1161320000_MVCableDist_mvgd_33535_49,BusBar_mvgd_33535_lvgd_1161320000_MV,BranchTee_mvgd_33535_49,3.7348234318375457,0.7693736269585344,0.4706224165607849,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.993239667455976 47.49863028859219, 9.982421329246263 47.5234245980793)" +Branch_LVStation_mvgd_33535_lvgd_1161950000_MVCableDist_mvgd_33535_20,BusBar_mvgd_33535_lvgd_1161950000_MV,BranchTee_mvgd_33535_20,0.41834943285396753,0.0861799831679173,0.05271591138103686,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.983944199999996 47.54876209624351, 9.98052636625868 47.54702430740754)" +Branch_LVStation_mvgd_33535_lvgd_1161990000_MVCableDist_mvgd_33535_13,BusBar_mvgd_33535_lvgd_1161990000_MV,BranchTee_mvgd_33535_13,0.736270667927689,0.07362706679276891,0.08558331329236528,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.993773700000006 47.54763269624337, 9.988164556270467 47.54423827196185)" +Branch_LVStation_mvgd_33535_lvgd_1161990000_MVCableDist_mvgd_33535_21,BusBar_mvgd_33535_lvgd_1161990000_MV,BranchTee_mvgd_33535_21,0.06619238397757043,0.006619238397757044,0.00769413176741861,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.993773700000006 47.54763269624337, 9.993952627550263 47.54807462214073)" +Branch_LVStation_mvgd_33535_lvgd_1163060000_MVCableDist_mvgd_33535_50,BusBar_mvgd_33535_lvgd_1163060000_MV,BranchTee_mvgd_33535_50,4.259943235890966,1.5761789972796574,1.5791947522009815,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.002348298468702 47.496085412927414, 10.041047006337893 47.509513464348174)" +Branch_LVStation_mvgd_33535_lvgd_1163330000_LVStation_mvgd_33535_lvgd_1164130000,BusBar_mvgd_33535_lvgd_1163330000_MV,BusBar_mvgd_33535_lvgd_1164130000_MV,0.5648052076722521,0.20897792683873326,0.20937777115362372,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0088695 47.54693799624336, 10.003165199999996 47.54635979624327)" +Branch_LVStation_mvgd_33535_lvgd_1163330000_LVStation_mvgd_33535_lvgd_1164150000,BusBar_mvgd_33535_lvgd_1163330000_MV,BusBar_mvgd_33535_lvgd_1164150000_MV,1.0124738716188724,0.37461533249898277,0.37533209628947684,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.009866 47.54102169624281, 10.003165199999996 47.54635979624327)" +Branch_LVStation_mvgd_33535_lvgd_1163330000_MVCableDist_mvgd_33535_21,BusBar_mvgd_33535_lvgd_1163330000_MV,BranchTee_mvgd_33535_21,0.9355205526767667,0.19271723385141393,0.11788427251737661,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.003165199999996 47.54635979624327, 9.993952627550263 47.54807462214073)" +Branch_LVStation_mvgd_33535_lvgd_1163330000_MVCableDist_mvgd_33535_56,BusBar_mvgd_33535_lvgd_1163330000_MV,BranchTee_mvgd_33535_56,0.12091692330422964,0.04473926162256497,0.0448248627177753,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.003165199999996 47.54635979624327, 10.003283460145301 47.54552649570513)" +Branch_LVStation_mvgd_33535_lvgd_1163360000_MVCableDist_mvgd_33535_56,BusBar_mvgd_33535_lvgd_1163360000_MV,BranchTee_mvgd_33535_56,0.36099426716933997,0.13356787885265578,0.13382343865181306,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.003636499999997 47.54303869624298, 10.003283460145301 47.54552649570513)" +Branch_LVStation_mvgd_33535_lvgd_1164120000_LVStation_mvgd_33535_lvgd_1164120001,BusBar_mvgd_33535_lvgd_1164120000_MV,BusBar_mvgd_33535_lvgd_1164120001_MV,0.4254869131033508,0.08765030409929025,0.053615300137807874,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021668099999998 47.54834369624342, 10.021529399999995 47.54815639624343, 10.021494799999996 47.54798539624339, 10.021567400000006 47.547765096243396, 10.021580799999997 47.547724696243385, 10.021776699999997 47.547313696243336, 10.021792399999999 47.547233696243346, 10.021805000000002 47.547103896243364, 10.0217457 47.546983096243316, 10.021584400000002 47.546878396243315, 10.020940500000002 47.546616596243275, 10.0208271 47.546572096243246, 10.020388348497121 47.54639499713259, 10.019949600000002 47.54621789624321, 10.019763000000001 47.546113796243226, 10.019657500000003 47.54602999624328, 10.019595699999998 47.54593629624324, 10.0195915 47.54588739624318, 10.019584699999994 47.54580809624323, 10.019594899999994 47.54573919624322, 10.019690600000006 47.54551339624319, 10.019702999999996 47.54542459624318, 10.019700400000003 47.545350696243155)" +Branch_LVStation_mvgd_33535_lvgd_1164120000_LVStation_mvgd_33535_lvgd_1164120004,BusBar_mvgd_33535_lvgd_1164120000_MV,BusBar_mvgd_33535_lvgd_1164120004_MV,1.493603599331059,0.30768234146219814,0.18820791615180285,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021746599999998 47.55377359624393, 10.022112600000002 47.55381729624391, 10.022157899999996 47.55366389624393, 10.022232 47.553459996243916, 10.022333199999997 47.55312949624386, 10.0223371 47.55311849624385, 10.0223704 47.55302559624386, 10.022423400000001 47.55291469624389, 10.0221493 47.55278879624385, 10.022002199999996 47.55272299624384, 10.022068299999997 47.5525562962438, 10.022005500000002 47.552296796243816, 10.021944299999994 47.55220079624381, 10.021796199999997 47.55210859624377, 10.021628799999995 47.55206879624378, 10.0214366 47.55206179624378, 10.021369999999994 47.55204259624378, 10.0213424 47.55198869624373, 10.0216602 47.551949596243766, 10.021799499999998 47.551925696243785, 10.021925899999994 47.551944296243775, 10.022175199999998 47.552015096243764, 10.022245099999997 47.552027896243764, 10.022298899999996 47.55202879624376, 10.022329499999996 47.5520668962438, 10.022392400000003 47.55211259624373, 10.0224603 47.552173996243766, 10.022602900000003 47.552361196243815, 10.022736000000002 47.55238739624383, 10.022854399999993 47.55238269624381, 10.022894800000001 47.552326896243834, 10.022917399999995 47.55228739624377, 10.022936600000005 47.55223549624377, 10.023054399999996 47.55222269624378, 10.023112899999992 47.55220909624381, 10.023234700000001 47.55219169624379, 10.023543000000005 47.55211499624376, 10.023688299999995 47.55208539624382, 10.0237966 47.55207629624378, 10.02388389999999 47.55204129624372, 10.023911699999998 47.55197899624378, 10.023872500000003 47.55192899624375, 10.023668300000002 47.55187559624374, 10.023443400000003 47.551852496243754, 10.023096999999998 47.55183399624375, 10.022908099999995 47.55182119624376, 10.022807899999998 47.551786496243714, 10.022778499999998 47.551732896243706, 10.022667600000005 47.551586596243716, 10.022601300000005 47.551463296243675, 10.022555700000003 47.55132589624369, 10.022595000000004 47.550775896243664, 10.022587499999997 47.550619596243656, 10.022451000000004 47.55029399624358, 10.0222167 47.55007379624358, 10.022018999999997 47.54988799624358, 10.021311299999999 47.54944629624353, 10.021036000000002 47.54929209624356, 10.021012899999999 47.54918499624348, 10.021055500000001 47.54912709624349, 10.021204100000006 47.54901449624347, 10.021361500000001 47.54890949624347, 10.021565799999996 47.54872019624347, 10.021669499999998 47.54869399624346, 10.021723299999996 47.54865979624349, 10.021775899999998 47.548599096243464, 10.021788600000008 47.54852719624345, 10.021764799999998 47.54844859624348, 10.021668099999998 47.54834369624342, 10.021529399999995 47.54815639624343, 10.021494799999996 47.54798539624339, 10.021567400000006 47.547765096243396, 10.021580799999997 47.547724696243385, 10.021776699999997 47.547313696243336, 10.021792399999999 47.547233696243346, 10.021805000000002 47.547103896243364, 10.0217457 47.546983096243316, 10.021584400000002 47.546878396243315, 10.020940500000002 47.546616596243275, 10.0208271 47.546572096243246, 10.020388348497121 47.54639499713259, 10.019949600000002 47.54621789624321, 10.019763000000001 47.546113796243226, 10.019657500000003 47.54602999624328, 10.019595699999998 47.54593629624324, 10.0195915 47.54588739624318, 10.019584699999994 47.54580809624323, 10.019594899999994 47.54573919624322, 10.019690600000006 47.54551339624319, 10.019702999999996 47.54542459624318, 10.019700400000003 47.545350696243155)" +Branch_LVStation_mvgd_33535_lvgd_1164120000_LVStation_mvgd_33535_lvgd_1164120012,BusBar_mvgd_33535_lvgd_1164120000_MV,BusBar_mvgd_33535_lvgd_1164120012_MV,1.0548465808933567,0.39029323493054197,0.39103999576546794,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.019700400000003 47.545350696243155, 10.019644699999994 47.54516389624318, 10.019476100000004 47.54486489624315, 10.019288599999992 47.5446384962431, 10.019134900000001 47.5445194962431, 10.018959900000006 47.54440659624309, 10.0187953 47.54431179624306, 10.018713799999993 47.5442683962431, 10.018332000000001 47.54412549624307, 10.017876799999996 47.54399749624309, 10.017157700000002 47.543827196243, 10.016909800000002 47.54375609624301, 10.016738500000006 47.54369069624302, 10.0165348 47.543603696243, 10.016299300000004 47.54348599624301, 10.016063899999997 47.54334689624297, 10.015792099999997 47.54316379624297, 10.0155251 47.54293219624298, 10.015257400000003 47.54267329624295, 10.015126199999996 47.54254309624293, 10.014893299999995 47.54230579624292, 10.015023299999996 47.54216629624294, 10.015132399999995 47.54207139624289, 10.015692999999995 47.541586596242816, 10.016011100000002 47.54128209624278, 10.016351199999999 47.540909896242745, 10.016750753251829 47.54048894701767, 10.017150300000004 47.540067996242676, 10.017218400000004 47.539944196242686, 10.017318999999999 47.539999696242724, 10.017429599999993 47.540122496242695, 10.01751329999999 47.54019689624273, 10.017610400000004 47.540247796242745, 10.017710499999994 47.540288396242694, 10.017809299999998 47.5403284962427, 10.0179658 47.54037209624272, 10.018121 47.54040199624273, 10.018343900000005 47.54043279624274, 10.018554300000003 47.54044889624278, 10.018874699999998 47.540461796242745, 10.018984000000001 47.540471596242746, 10.019179799999996 47.54067939624272, 10.019259599999991 47.540785796242766, 10.019292500000002 47.54086139624279, 10.019305299999996 47.54103709624282)" +Branch_LVStation_mvgd_33535_lvgd_1164120002_LVStation_mvgd_33535_lvgd_1164120014,BusBar_mvgd_33535_lvgd_1164120002_MV,BusBar_mvgd_33535_lvgd_1164120014_MV,0.7499921928935469,0.27749711137061234,0.27802805568639977,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.008394199999996 47.56682179624508, 10.009044899999992 47.56690459624507, 10.009323000000007 47.566954896245086, 10.009740699999998 47.56705109624509, 10.0100793 47.56714909624509, 10.010218299999998 47.56718739624511, 10.010427599999998 47.56719749624511, 10.010589499999998 47.56715739624509, 10.010902399999999 47.567011296245106, 10.011097600000003 47.566834796245054, 10.0113059 47.56660629624504, 10.011489699999997 47.56641239624503, 10.0116363 47.56638549624505, 10.012033099999998 47.565900396245034, 10.0122529 47.56568619624497, 10.012726000000006 47.5652352962449, 10.013010301532027 47.56495679663406, 10.0132946 47.5646782962449, 10.013683099999998 47.56480289624491, 10.014091599999992 47.564937996244886, 10.014967099999996 47.56499219624491, 10.015071299999997 47.56499859624491, 10.015691300000006 47.565036996244906, 10.016063700000002 47.56503699624489, 10.016221000000002 47.56496159624492)" +Branch_LVStation_mvgd_33535_lvgd_1164120003_LVStation_mvgd_33535_lvgd_1164120006,BusBar_mvgd_33535_lvgd_1164120003_MV,BusBar_mvgd_33535_lvgd_1164120006_MV,0.4998859113448533,0.10297649773703976,0.06299026443829973,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.026685600000002 47.558041696244295, 10.0267444 47.55798979624431, 10.0269114 47.5578079962443, 10.027109999999997 47.55758989624428, 10.027420699999997 47.557264596244245, 10.0275955 47.557117396244216, 10.027183799999992 47.556840196244195, 10.026737499999998 47.55652169624419, 10.026565799999995 47.556399996244146, 10.026440099999993 47.55630309624413, 10.026706900000004 47.55611589624413, 10.026850200000005 47.556008296244116, 10.026653800000004 47.55588899624411, 10.026161199999997 47.55558529624407, 10.025914099999996 47.55543049624405, 10.025817299999996 47.555344696244035, 10.025567199999998 47.55510809624401, 10.025241599999998 47.55475769624405, 10.025067200000006 47.55462189624401)" +Branch_LVStation_mvgd_33535_lvgd_1164120004_MVCableDist_mvgd_33535_54,BusBar_mvgd_33535_lvgd_1164120004_MV,BranchTee_mvgd_33535_54,0.11010056962080725,0.022680717341886293,0.013873693652545632,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021746599999998 47.55377359624393, 10.022112600000002 47.55381729624391, 10.022001499999996 47.55425239624398, 10.021999200000003 47.55448659624401, 10.0220596 47.554534796243956)" +Branch_LVStation_mvgd_33535_lvgd_1164120005_LVStation_mvgd_33535_lvgd_1164120013,BusBar_mvgd_33535_lvgd_1164120005_MV,BusBar_mvgd_33535_lvgd_1164120013_MV,1.0904426286080011,0.4034637725849604,0.40423573304113264,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.011309700000002 47.550727096243655, 10.0113647 47.550618496243615, 10.011421099999998 47.55049689624366, 10.011433699999996 47.55043539624362, 10.0114224 47.55038699624365, 10.011349199999993 47.55028779624364, 10.0112888 47.55023349624361, 10.011187100000004 47.5501861962436, 10.011038599999996 47.55013499624356, 10.010967000000004 47.550084196243624, 10.0109391 47.550002696243595, 10.010938399999999 47.54987689624357, 10.010941099999998 47.54974169624357, 10.010915400000002 47.54958829624355, 10.0108818 47.54948389624357, 10.010853500000003 47.54939529624354, 10.0109938 47.54948729624356, 10.0111763 47.54972289624361, 10.011336499999995 47.54985419624361, 10.011585599999998 47.55000319624362, 10.011965100000005 47.550147096243585, 10.012353699999997 47.550285096243634, 10.012980899999995 47.550509796243595, 10.013587699999995 47.55060749624366, 10.013920100000002 47.55065559624361, 10.014887899999994 47.5507848962437, 10.015207100000005 47.550831196243635, 10.015497799999993 47.550814196243664, 10.015863799999996 47.55081729624368, 10.016229799999998 47.55086039624364, 10.016565099999998 47.550928896243676, 10.016824000000002 47.55101599624367, 10.016964700000006 47.55112579624368, 10.016975900000004 47.55120629624373, 10.016972300000006 47.5512229962437, 10.016905800000004 47.55130569624374, 10.016747500000001 47.5514103962437, 10.016543599999999 47.55155789624372, 10.016460399999994 47.55169669624373, 10.016479099999996 47.551854496243756, 10.016573 47.551963996243735, 10.016842800000004 47.55219559624381, 10.016969000000005 47.552275996243814, 10.017188199999998 47.55238939624382, 10.017327899999994 47.552455996243815, 10.017540100000002 47.5525549962438, 10.0175151 47.55262059624383, 10.017486399999996 47.55270169624386, 10.017381599999995 47.552902496243846, 10.017335799999996 47.552990096243825, 10.017303200000004 47.55309179624385, 10.0173399 47.55315219624385, 10.017462000000002 47.55327309624392, 10.017542900000008 47.55328949624384, 10.017896499999997 47.5533760962439, 10.017860799999994 47.553482196243905, 10.017878399999995 47.553541596243896, 10.017860800000003 47.553597196243935, 10.017815099999998 47.55365039624394, 10.018368799999994 47.55378859624388)" +Branch_LVStation_mvgd_33535_lvgd_1164120005_MVCableDist_mvgd_33535_1,BusBar_mvgd_33535_lvgd_1164120005_MV,BranchTee_mvgd_33535_1,0.320116639276939,0.06594402769104943,0.04033766765881829,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.018916399999998 47.55587609624412, 10.019015699999997 47.555763196244065, 10.019127099999995 47.555666296244084, 10.019290800000002 47.55555619624409, 10.019428900000005 47.55544819624408, 10.019470600000004 47.555369796244065, 10.019482899999995 47.55530349624406, 10.019471600000001 47.55522439624408, 10.019218500000003 47.554720396244036, 10.019205000000003 47.554580896244005, 10.019194200000003 47.55442859624399, 10.019223799999997 47.55412769624398, 10.018912800000004 47.55411979624392, 10.018703499999997 47.55410759624395, 10.018303200000005 47.55408029624393, 10.018227300000001 47.554053396243965, 10.018220500000002 47.554000996243936, 10.018368799999994 47.55378859624388)" +Branch_LVStation_mvgd_33535_lvgd_1164120005_MVCableDist_mvgd_33535_54,BusBar_mvgd_33535_lvgd_1164120005_MV,BranchTee_mvgd_33535_54,0.3509407117852582,0.07229378662776319,0.04422178688342452,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0220596 47.554534796243956, 10.021999200000003 47.55448659624401, 10.022001499999996 47.55425239624398, 10.021654500000002 47.55425919624396, 10.020906299999993 47.554191096243976, 10.020525200000005 47.554179096243956, 10.019636900000002 47.55414019624395, 10.0192819 47.55412999624396, 10.019223799999997 47.55412769624398, 10.018912800000004 47.55411979624392, 10.018703499999997 47.55410759624395, 10.018303200000005 47.55408029624393, 10.018227300000001 47.554053396243965, 10.018220500000002 47.554000996243936, 10.018368799999994 47.55378859624388)" +Branch_LVStation_mvgd_33535_lvgd_1164120006_MVCableDist_mvgd_33535_54,BusBar_mvgd_33535_lvgd_1164120006_MV,BranchTee_mvgd_33535_54,0.2692419797173221,0.05546384782176835,0.033926988369523424,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.025067200000006 47.55462189624401, 10.024977199999999 47.554564996243975, 10.024920400000001 47.554541596243986, 10.0248677 47.55451999624394, 10.0248164 47.55449799624404, 10.024783199999996 47.55448189624398, 10.024768499999995 47.554471596243935, 10.024753600000006 47.55445769624396, 10.024706699999996 47.554464896243964, 10.024648400000006 47.554461996244, 10.024384500000002 47.55445179624401, 10.023905899999995 47.55441959624394, 10.023634200000004 47.554367596244006, 10.023369299999995 47.55430489624399, 10.023317800000003 47.55428329624398, 10.023045000000003 47.55412719624392, 10.022803000000005 47.55421149624401, 10.02257179999999 47.55423579624397, 10.022500399999997 47.554494596243956, 10.022202899999995 47.55450199624395, 10.0220596 47.554534796243956)" +Branch_LVStation_mvgd_33535_lvgd_1164120007_LVStation_mvgd_33535_lvgd_1164120011,BusBar_mvgd_33535_lvgd_1164120007_MV,BusBar_mvgd_33535_lvgd_1164120011_MV,0.5330166221882874,0.1098014241707872,0.06716504150181468,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021014800000001 47.55935469624443, 10.020157699999997 47.55948139624441, 10.0200619 47.55949319624441, 10.0195202 47.55956709624446, 10.019411899999993 47.55932749624441, 10.019228400000001 47.55901109624439, 10.019080399999993 47.558852596244364, 10.018967300000002 47.55873469624436, 10.018841099999998 47.55861969624434, 10.018700799999998 47.55846659624434, 10.018534500000001 47.55822409624431, 10.018480200000004 47.55809699624432, 10.018462999999995 47.558006696244306, 10.018443100000002 47.55788249624428, 10.018439799999998 47.55776059624424, 10.018455899999998 47.55760939624427, 10.018490800000006 47.557465196244245, 10.018605699999998 47.55718989624418, 10.0186511 47.557056596244244, 10.018695299999996 47.55693689624422, 10.018757799999998 47.5567601962442, 10.018809999999998 47.5565221962442, 10.0188285 47.556251096244154, 10.0188362 47.5561264962441, 10.018853399999992 47.556007296244125)" +Branch_LVStation_mvgd_33535_lvgd_1164120007_MVCableDist_mvgd_33535_1,virtual_BusBar_mvgd_33535_lvgd_1164120007_MV,BranchTee_mvgd_33535_1,0.001,0.000206,0.00012600928133548662,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.018853399999992 47.556007296244125, 10.018916399999998 47.55587609624412)" +Branch_LVStation_mvgd_33535_lvgd_1164120008_LVStation_mvgd_33535_lvgd_1164120014,BusBar_mvgd_33535_lvgd_1164120008_MV,BusBar_mvgd_33535_lvgd_1164120014_MV,0.6186874345110195,0.12744961150927,0.0779603589940295,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.016442899999998 47.560134796244476, 10.016148201872008 47.560463146668724, 10.015853499999999 47.56079149624454, 10.0160585 47.560817596244554, 10.016251899999999 47.56084869624452, 10.016549399999993 47.56092369624456, 10.016851300000003 47.560971296244574, 10.016720399999999 47.56107179624455, 10.016417199999994 47.56152159624456, 10.016318099999996 47.56167479624465, 10.016267800447 47.56213444630848, 10.016217500000005 47.5625940962447, 10.01615895057311 47.56310034632374, 10.016100399999997 47.56360659624478, 10.016063700000002 47.5641248962448, 10.016124899999994 47.56442089624489, 10.016191199999993 47.56466869624487, 10.016231999999995 47.564830496244916, 10.016221000000002 47.56496159624492)" +Branch_LVStation_mvgd_33535_lvgd_1164120008_MVCableDist_mvgd_33535_53,BusBar_mvgd_33535_lvgd_1164120008_MV,BranchTee_mvgd_33535_53,0.49604057629787096,0.10218435871736141,0.06250571653253534,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.016442899999998 47.560134796244476, 10.016148201872008 47.560463146668724, 10.015853499999999 47.56079149624454, 10.0160585 47.560817596244554, 10.016251899999999 47.56084869624452, 10.016549399999993 47.56092369624456, 10.016851300000003 47.560971296244574, 10.017141900000002 47.56097509624456, 10.017463700000006 47.56095819624459, 10.018002899999995 47.560929796244544, 10.018452599999996 47.560888096244554, 10.018812999999994 47.56087519624456, 10.018931900000004 47.560790596244516, 10.018963999999997 47.56071229624459, 10.018954299999992 47.56060039624449, 10.018946999999999 47.56038539624447, 10.018952400000002 47.56018829624447, 10.018939299999996 47.560034096244465, 10.018930900000004 47.5598963962445, 10.018897699999993 47.55968689624447, 10.019056799999994 47.55966339624444, 10.019304000000005 47.559655896244465, 10.019531 47.55962729624444)" +Branch_LVStation_mvgd_33535_lvgd_1164120009_LVStation_mvgd_33535_lvgd_1164120010,BusBar_mvgd_33535_lvgd_1164120009_MV,BusBar_mvgd_33535_lvgd_1164120010_MV,0.7755083178707942,0.1597547134813836,0.09772124580459089,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019570500000002 47.562715596244686, 10.019616499999998 47.56268579624467, 10.019830699999996 47.562546996244684, 10.019946700000007 47.56246689624473, 10.020018299999995 47.5624559962447, 10.020223500000004 47.56246089624471, 10.020455700000003 47.56250359624466, 10.020404899999994 47.562929296244725, 10.020444300000005 47.56324049624475, 10.020543899999996 47.56385759624484, 10.020684900000003 47.56430499624486, 10.020833899999998 47.56466029624489, 10.020949000000003 47.56495809624495, 10.021080099999997 47.565354596244916, 10.021084400000005 47.565377596244936, 10.021131900000006 47.56574519624501, 10.021126599999997 47.566053596245006, 10.021077399999992 47.56631409624502, 10.021048400000003 47.56642249624503, 10.021023600000003 47.56649499624504, 10.020946099999998 47.56675289624504, 10.020930699999996 47.56703339624508, 10.020990699999997 47.56720129624508, 10.021161300000003 47.5675205962451, 10.0212091 47.56760809624511, 10.021298199999997 47.56782749624517, 10.021365099999999 47.56806949624518, 10.021420699999995 47.568354696245194, 10.021444200000003 47.56840579624522, 10.021505700000006 47.56844199624519, 10.021708699999998 47.5685909962452)" +Branch_LVStation_mvgd_33535_lvgd_1164120009_MVStation_mvgd_33535,Busbar_mvgd_33535_MV,BusBar_mvgd_33535_lvgd_1164120009_MV,0.5757723902924388,0.11860911240024238,0.07255266511356552,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.021708699999998 47.5685909962452, 10.021615600000006 47.568694996245235, 10.021555500000002 47.56885489624524, 10.021704599999996 47.56890559624529, 10.022129999999997 47.56905009624528, 10.024504210738641 47.57320970148501)" +Branch_LVStation_mvgd_33535_lvgd_1164120010_MVCableDist_mvgd_33535_1,BusBar_mvgd_33535_lvgd_1164120010_MV,BranchTee_mvgd_33535_1,0.8544798774325253,0.1760228547511002,0.1076723952709072,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019570500000002 47.562715596244686, 10.019616499999998 47.56268579624467, 10.019830699999996 47.562546996244684, 10.019946700000007 47.56246689624473, 10.020018299999995 47.5624559962447, 10.020223500000004 47.56246089624471, 10.020455700000003 47.56250359624466, 10.020541599999998 47.562063496244626, 10.0205587 47.56183759624462, 10.020486 47.561602396244616, 10.020395900000004 47.56143569624454, 10.020302300000006 47.561308296244604, 10.0202025 47.56118499624459, 10.019988500000002 47.56093419624458, 10.019804300000004 47.56073399624456, 10.019725299999994 47.560569996244496, 10.019648899999996 47.56030849624448, 10.0195974 47.55999569624451, 10.019539000000005 47.55966559624444, 10.019531 47.55962729624444, 10.0195202 47.55956709624446, 10.019411899999993 47.55932749624441, 10.019228400000001 47.55901109624439, 10.019080399999993 47.558852596244364, 10.018967300000002 47.55873469624436, 10.018841099999998 47.55861969624434, 10.018700799999998 47.55846659624434, 10.018534500000001 47.55822409624431, 10.018480200000004 47.55809699624432, 10.018462999999995 47.558006696244306, 10.018443100000002 47.55788249624428, 10.018439799999998 47.55776059624424, 10.018455899999998 47.55760939624427, 10.018490800000006 47.557465196244245, 10.018605699999998 47.55718989624418, 10.0186511 47.557056596244244, 10.018695299999996 47.55693689624422, 10.018757799999998 47.5567601962442, 10.018809999999998 47.5565221962442, 10.0188285 47.556251096244154, 10.0188362 47.5561264962441, 10.018853399999992 47.556007296244125, 10.018916399999998 47.55587609624412)" +Branch_LVStation_mvgd_33535_lvgd_1164120011_MVCableDist_mvgd_33535_53,BusBar_mvgd_33535_lvgd_1164120011_MV,BranchTee_mvgd_33535_53,0.12174759411956419,0.02508000438863022,0.0153413268393308,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.019531 47.55962729624444, 10.0195202 47.55956709624446, 10.0200619 47.55949319624441, 10.020157699999997 47.55948139624441, 10.021014800000001 47.55935469624443)" +Branch_LVStation_mvgd_33535_lvgd_1164160000_MVCableDist_mvgd_33535_22,BusBar_mvgd_33535_lvgd_1164160000_MV,BranchTee_mvgd_33535_22,0.6741430552815352,0.13887346938799625,0.08494828191333546,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0977125 47.55219599624379, 10.098102429617397 47.55685579576007)" +Branch_LVStation_mvgd_33535_lvgd_1164170000_MVCableDist_mvgd_33535_23,BusBar_mvgd_33535_lvgd_1164170000_MV,BranchTee_mvgd_33535_23,1.017156851181925,0.3763480349373122,0.37706811396415607,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.013885199999995 47.53775869624249, 10.024270358284765 47.537727672646795)" +Branch_LVStation_mvgd_33535_lvgd_1164190000_MVCableDist_mvgd_33535_24,BusBar_mvgd_33535_lvgd_1164190000_MV,BranchTee_mvgd_33535_24,0.17195447322432514,0.0636231550930003,0.06374488736034623,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.017450000000006 47.57254519624557, 10.018499493467326 47.57159047025898)" +Branch_LVStation_mvgd_33535_lvgd_1164200000_MVCableDist_mvgd_33535_25,BusBar_mvgd_33535_lvgd_1164200000_MV,BranchTee_mvgd_33535_25,0.8453011988044262,0.1741320469537118,0.10651579657337104,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0346109 47.54144229624284, 10.037517756901362 47.53593186012843)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_LVStation_mvgd_33535_lvgd_1164210003,BusBar_mvgd_33535_lvgd_1164210000_MV,BusBar_mvgd_33535_lvgd_1164210003_MV,1.9027062294696515,0.704001304903771,0.7053482936680843,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.088636700000006 47.55721959624428, 10.088786199999996 47.557237896244224, 10.089367200000005 47.557309496244265, 10.089952999320053 47.55736944781641, 10.090538800000001 47.557429396244274, 10.091151 47.55748379624426, 10.091636400000004 47.55756349624425, 10.092099100000002 47.55769029624424, 10.092488900000005 47.55776789624427, 10.092942500000001 47.55781229624422, 10.093422599999997 47.557816396244306, 10.094373599999999 47.55787079624427, 10.094694800000001 47.55789699624432, 10.094851499999995 47.55791919624427, 10.094925400000003 47.55793209624427, 10.095077500000007 47.557958596244326, 10.0955113 47.558054396244295, 10.096015500000002 47.5581872962443, 10.096249499999997 47.558225496244305, 10.0965016 47.558227696244344, 10.096608500000006 47.5582210962443, 10.096783199999999 47.55819249624427, 10.096936199999993 47.558193596244294, 10.097160099999996 47.55825319624433, 10.097323999999999 47.55830729624427, 10.097474900000002 47.55839099624433, 10.097865900000002 47.5585976962444, 10.0981164 47.55868759624434, 10.098320899999994 47.55873609624435, 10.098521399999996 47.5587691962444, 10.0987411 47.55877459624438, 10.099646299999996 47.55874359624436, 10.099936299999996 47.55872539624437, 10.100137199999995 47.558694696244345, 10.100366999999997 47.558633196244365, 10.100968199999995 47.55854479624434, 10.101248999999996 47.558506496244355, 10.101501499999998 47.55850629624433, 10.1017099 47.558522996244356, 10.101940499999994 47.558562996244355, 10.102131600000005 47.55860099624434, 10.102580899999992 47.55869239624437, 10.103123900000002 47.558796396244354, 10.103587499999998 47.558913496244365, 10.104286499999997 47.55908759624438, 10.104502199999997 47.55910909624438, 10.104670699999996 47.559115596244396, 10.104873600000003 47.55911799624436, 10.104969199999994 47.55909959624436, 10.105046100000004 47.55908609624441, 10.1051716 47.5590551962444, 10.105505599999994 47.55897419624437, 10.1059175 47.55883549624442, 10.1061677 47.55868779624436, 10.106358000000002 47.558559396244355, 10.1064338 47.55850219624434, 10.106480599999996 47.55845509624435, 10.106505899999998 47.55841749624429, 10.106552799999998 47.55832029624434, 10.106573999999995 47.55822779624437, 10.106567999999998 47.558149896244295, 10.106833300000002 47.558131696244324, 10.1071675 47.55809059624432, 10.107599400000005 47.55803099624431, 10.1078578 47.55799299624433, 10.108283900000004 47.55792679624434, 10.109929700000002 47.5576737962443, 10.109882199999994 47.55758209624427, 10.109718499999994 47.55727729624424, 10.109281 47.55713849624423, 10.109052899999996 47.55704109624421, 10.10887589999999 47.55696559624419, 10.108659899999996 47.55687349624423, 10.108502700000003 47.5568001962442, 10.108337700000003 47.55674169624417, 10.107986899999998 47.556643896244175)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_LVStation_mvgd_33535_lvgd_1199190000,BusBar_mvgd_33535_lvgd_1199190000_MV,BusBar_mvgd_33535_lvgd_1164210000_MV,2.6108551162893714,0.5378361539556105,0.328991976874702,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.114194200000002 47.56238169624468, 10.088636700000006 47.55721959624428)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_LVStation_mvgd_33535_lvgd_1199590000,BusBar_mvgd_33535_lvgd_1164210000_MV,BusBar_mvgd_33535_lvgd_1199590000_MV,3.1493248345886924,1.1652501887978162,1.1674797001651835,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.115115900000001 47.54484219624309, 10.088636700000006 47.55721959624428)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_LVStation_mvgd_33535_lvgd_1201610000,BusBar_mvgd_33535_lvgd_1201610000_MV,BusBar_mvgd_33535_lvgd_1164210000_MV,3.586636206252826,1.3270553963135456,1.329594494886239,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.123861900000003 47.56404329624482, 10.088636700000006 47.55721959624428)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_LVStation_mvgd_33535_lvgd_1204030000,BusBar_mvgd_33535_lvgd_1204030000_MV,BusBar_mvgd_33535_lvgd_1164210000_MV,5.604901683785936,2.073813623000796,2.077781518557245,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.130638155610297 47.53085837400748, 10.088636700000006 47.55721959624428)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_MVCableDist_mvgd_33535_22,BusBar_mvgd_33535_lvgd_1164210000_MV,BranchTee_mvgd_33535_22,0.7348335545371742,0.1513757122346579,0.09259584810843044,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.088636700000006 47.55721959624428, 10.088786199999996 47.557237896244224, 10.089367200000005 47.557309496244265, 10.089952999320053 47.55736944781641, 10.090538800000001 47.557429396244274, 10.091151 47.55748379624426, 10.091636400000004 47.55756349624425, 10.092099100000002 47.55769029624424, 10.092488900000005 47.55776789624427, 10.092942500000001 47.55781229624422, 10.098102429617397 47.55685579576007)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_MVCableDist_mvgd_33535_27,BusBar_mvgd_33535_lvgd_1164210000_MV,BranchTee_mvgd_33535_27,3.2356818074031324,0.25238318097744433,0.36594699103770567,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.05824489409215 47.564803105280845, 10.074846500000003 47.558294896244306, 10.074792999999998 47.558270896244345, 10.074123099999994 47.55804989624432, 10.074047799999999 47.55799529624429, 10.074001499999996 47.55793569624428, 10.074008800000005 47.55787889624432, 10.074039599999997 47.55782319624425, 10.074124800000002 47.55778829624429, 10.074731002194142 47.557601147935145, 10.075337199999998 47.55741399624423, 10.075846600000002 47.5573170962442, 10.076147699999995 47.55729619624422, 10.076227099999999 47.557284296244205, 10.076267699999997 47.55725719624426, 10.076270100000004 47.557215096244214, 10.076253699999999 47.557170796244236, 10.076209100000003 47.557134196244206, 10.076103000000002 47.557082096244166, 10.075630998414749 47.55690854727184, 10.075159000000003 47.55673499624415, 10.074451000000002 47.55640899624418, 10.073904199999996 47.556216096244135, 10.073662499999994 47.55608929624413, 10.0734911 47.55595029624413, 10.073434300000004 47.55583389624414, 10.073435300000002 47.55572139624412, 10.073437700000001 47.555693096244084, 10.073476599999994 47.55544009624411, 10.073534000000004 47.55529579624407, 10.073738500000001 47.55512509624403, 10.073823700000004 47.55514659624404, 10.074133999999999 47.55523779624404, 10.0746965637773 47.55537049915125, 10.07525913044398 47.555503199151275, 10.075821700000006 47.555635896244105, 10.07644810000001 47.555769696244106, 10.076952198340157 47.55593984741499, 10.077456299999998 47.556109996244125, 10.077910900000001 47.55624539624413, 10.078760599999995 47.55636989624412, 10.079576100000004 47.55647669624417, 10.0800472 47.556578396244205, 10.0806963 47.556755796244246, 10.080900200000006 47.55679199624419, 10.0810997 47.556808396244165, 10.0815133 47.55683899624419, 10.082135700000006 47.55685779624423, 10.082249399999995 47.55686149624417, 10.082952299999997 47.55686279624422, 10.083145299999998 47.5568787962442, 10.083510899999999 47.55695179624421, 10.084084000000002 47.55706639624426, 10.084748599999996 47.557142096244185, 10.085029800000003 47.55717259624419, 10.0852206 47.55718279624423, 10.085355299999996 47.55717479624423, 10.085715199999997 47.55710829624423, 10.085827200000002 47.55708689624424, 10.086029800000006 47.5570528962442, 10.0862641 47.557044496244224, 10.086598900000006 47.55706309624426, 10.086877800000002 47.557084896244255, 10.0873888 47.5571268962442, 10.087867 47.55716629624423, 10.088342000000006 47.557203396244255, 10.088636700000006 47.55721959624428)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_MVCableDist_mvgd_33535_55,BusBar_mvgd_33535_lvgd_1164210000_MV,BranchTee_mvgd_33535_55,0.20484775688456236,0.012290865413073742,0.02188063907651823,20.71532765852377,1,cable,NA2XS(FL)2Y 3x1x500 RM/35,"LINESTRING (10.088636700000006 47.55721959624428, 10.088720799999999 47.556742496244176, 10.088681600000005 47.55629489624413, 10.088448100000004 47.55626059624415, 10.087934799999998 47.556209296244134, 10.087345400000006 47.556173096244144)" +Branch_LVStation_mvgd_33535_lvgd_1164210000_MVCableDist_mvgd_33535_57,BusBar_mvgd_33535_lvgd_1164210000_MV,BranchTee_mvgd_33535_57,0.5519791757051539,0.20423229501090692,0.20462305935292358,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.088636700000006 47.55721959624428, 10.09367943116541 47.55892853927181)" +Branch_LVStation_mvgd_33535_lvgd_1164210001_LVStation_mvgd_33535_lvgd_1164210002,BusBar_mvgd_33535_lvgd_1164210001_MV,BusBar_mvgd_33535_lvgd_1164210002_MV,2.2587829086847924,0.4653092791890672,0.2846276110162508,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.045738800000006 47.55576749624408, 10.046556900000004 47.55557269624411, 10.047344500000003 47.55539119624403, 10.047926600000004 47.55525249624406, 10.048386799999996 47.55518159624408, 10.048871799999999 47.55512049624408, 10.048991800000005 47.555107096244065, 10.049093899999995 47.55509129624402, 10.049259499999998 47.55505869624402, 10.0494392 47.55500619624404, 10.049600799999997 47.55494469624402, 10.049721600000005 47.55488859624404, 10.049849599999998 47.55481969624401, 10.050092199999998 47.554653496244, 10.050294399999997 47.55447519624399, 10.050519600000003 47.55421549624394, 10.050637000000004 47.55409169624396, 10.050914600000002 47.55385639624396, 10.051048200000004 47.553768896243966, 10.051162099999996 47.55368829624387, 10.051229100000004 47.5537458962439, 10.051297999999992 47.55378879624394, 10.051650699999994 47.55402459624399, 10.052364899999999 47.55448809624399, 10.052850799999996 47.554777796244046, 10.053303500000005 47.55496559624404, 10.053640000000003 47.55503929624399, 10.053874399999994 47.55504379624405, 10.0547098 47.55494989624404, 10.055109199999995 47.55493099624401, 10.0555555 47.55495679624407, 10.056603399999995 47.55506489624405, 10.057419099999997 47.55517239624403, 10.057793599999997 47.55521889624405, 10.058075299999997 47.555243396244045, 10.0583608 47.555289396244085, 10.058619700000001 47.55536549624404, 10.058998599999997 47.55537339624407, 10.059543399999999 47.55535609624408, 10.0598717 47.555341996244074, 10.060347799999995 47.55530299624407, 10.060875799999998 47.55525019624408, 10.06142950054595 47.55519919764838, 10.061983199999995 47.55514819624401, 10.062371500000003 47.55511939624407, 10.062718600000002 47.55512329624401, 10.063004500000005 47.55513119624405, 10.063195399999996 47.55510889624403, 10.063468099999996 47.55507209624403, 10.063622400000003 47.55503369624401, 10.0637557 47.555013996244035, 10.064212599999992 47.55496489624401, 10.064583499999992 47.554971396244056, 10.064964599999998 47.555022596244044, 10.065324799999999 47.55505269624398, 10.0656327 47.55505969624407, 10.065957500000001 47.55505099624403, 10.066291999999997 47.55501379624401, 10.067435600000001 47.554898096244024, 10.068174700000004 47.55485599624402, 10.068963199999997 47.55487129624399, 10.069895099999997 47.55489849624402, 10.070573999999995 47.55496229624403, 10.071160699999995 47.55499649624403, 10.072091199999996 47.55496609624402, 10.073011599999996 47.55502169624404, 10.073531200000005 47.55505929624403, 10.073738500000001 47.55512509624403)" +Branch_LVStation_mvgd_33535_lvgd_1164210001_LVStation_mvgd_33535_lvgd_1164210005,BusBar_mvgd_33535_lvgd_1164210001_MV,BusBar_mvgd_33535_lvgd_1164210005_MV,1.0522573553675234,0.21676501520570982,0.13259419312984136,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0598717 47.555341996244074, 10.060347799999995 47.55530299624407, 10.060875799999998 47.55525019624408, 10.06142950054595 47.55519919764838, 10.061983199999995 47.55514819624401, 10.062371500000003 47.55511939624407, 10.062718600000002 47.55512329624401, 10.063004500000005 47.55513119624405, 10.063195399999996 47.55510889624403, 10.063468099999996 47.55507209624403, 10.063622400000003 47.55503369624401, 10.0637557 47.555013996244035, 10.064212599999992 47.55496489624401, 10.064583499999992 47.554971396244056, 10.064964599999998 47.555022596244044, 10.065324799999999 47.55505269624398, 10.0656327 47.55505969624407, 10.065957500000001 47.55505099624403, 10.066291999999997 47.55501379624401, 10.067435600000001 47.554898096244024, 10.068174700000004 47.55485599624402, 10.068963199999997 47.55487129624399, 10.069895099999997 47.55489849624402, 10.070573999999995 47.55496229624403, 10.071160699999995 47.55499649624403, 10.072091199999996 47.55496609624402, 10.073011599999996 47.55502169624404, 10.073531200000005 47.55505929624403, 10.073738500000001 47.55512509624403)" +Branch_LVStation_mvgd_33535_lvgd_1164210001_MVCableDist_mvgd_33535_55,BusBar_mvgd_33535_lvgd_1164210001_MV,BranchTee_mvgd_33535_55,1.1269551409985592,0.23215275904570318,0.14200680741456043,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.087345400000006 47.556173096244144, 10.086281899999996 47.55614839624412, 10.086033999999996 47.5561467962441, 10.085405600000001 47.55614059624412, 10.083933399999998 47.55613009624413, 10.082111499999993 47.55611699624412, 10.080484400000003 47.55610709624417, 10.079823099999997 47.55607589624413, 10.079209500000003 47.55601559624412, 10.078690800000002 47.55595399624413, 10.078201100000003 47.555859496244075, 10.077642199999994 47.555722096244104, 10.077162100000002 47.55556119624412, 10.076436999999997 47.55527689624409, 10.075153899999997 47.55472429624404, 10.074721000000004 47.554535696244024, 10.074297299999998 47.554396596244004, 10.074223099999998 47.55450289624395, 10.074157399999994 47.554704596244015, 10.074005799999997 47.55498379624402, 10.073823700000004 47.55514659624404, 10.073738500000001 47.55512509624403)" +Branch_LVStation_mvgd_33535_lvgd_1164210002_LVStation_mvgd_33535_lvgd_1164210004,BusBar_mvgd_33535_lvgd_1164210002_MV,BusBar_mvgd_33535_lvgd_1164210004_MV,1.4902833680926162,0.3069983738270789,0.18778953619957903,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0359923 47.56432909624486, 10.035941700000006 47.56427029624488, 10.035869399999997 47.56421759624487, 10.035586100000007 47.564043596244844, 10.035301600000002 47.56389669624484, 10.034756400000003 47.56359659624476, 10.034517899999996 47.563518596244776, 10.034274199999997 47.563472396244784, 10.034557499999998 47.56339239624475, 10.034746699999998 47.56329069624475, 10.034928700000002 47.56315119624476, 10.0350965 47.5629514962447, 10.0352147 47.562851996244746, 10.0354819 47.56271789624472, 10.035709299999999 47.5626454962447, 10.036048600000003 47.56254489624473, 10.036241000000006 47.56246699624466, 10.036482699999997 47.56232479624464, 10.036698900000001 47.562140996244686, 10.036849699999992 47.56192569624465, 10.0369243 47.561687096244604, 10.036922600000004 47.561478196244565, 10.036859699999995 47.56122189624458, 10.036766399999992 47.56091059624455, 10.036742699999998 47.560687696244564, 10.0367614 47.560508096244504, 10.0367997 47.56038829624451, 10.036856800000002 47.560275896244555, 10.037026599999999 47.560054096244464, 10.037287000000001 47.55991629624442, 10.037464199999992 47.55984629624444, 10.037695399999995 47.55978019624444, 10.037751800000002 47.55976559624441, 10.038279099999993 47.559720696244476, 10.038809500000005 47.55970259624445, 10.0391315 47.55967459624441, 10.039484899999996 47.559613596244475, 10.039770400000005 47.55953429624445, 10.039993899999994 47.55944579624444, 10.040255999999996 47.5593060962444, 10.040473899999999 47.559175196244425, 10.040678300000005 47.55902209624439, 10.040872 47.5588478962444, 10.041158499999995 47.558570896244326, 10.041523 47.55820749624431, 10.041629999999996 47.5581053962443, 10.0419612 47.55781699624426, 10.042272300000002 47.55752869624428, 10.042569400000001 47.557253696244274, 10.042859099999992 47.55699309624422, 10.043001299999993 47.55687729624422, 10.0430899 47.55680979624421, 10.043195099999995 47.556740296244186, 10.043350200000003 47.55663989624417, 10.04371489999999 47.55642649624413, 10.043902399999997 47.55633619624416, 10.044077099999997 47.55626309624415, 10.044340599999996 47.55615509624412, 10.044591800000005 47.55607259624417, 10.044930799999996 47.555961396244136, 10.045465499999995 47.555835296244105, 10.045738800000006 47.55576749624408)" +Branch_LVStation_mvgd_33535_lvgd_1164210003_LVStation_mvgd_33535_lvgd_1202720000,BusBar_mvgd_33535_lvgd_1202720000_MV,BusBar_mvgd_33535_lvgd_1164210003_MV,1.6490152673110114,0.6101356489050742,0.6113030414341185,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.1247248 47.55791649624429, 10.107986899999998 47.556643896244175)" +Branch_LVStation_mvgd_33535_lvgd_1164250000_MVCableDist_mvgd_33535_26,BusBar_mvgd_33535_lvgd_1164250000_MV,BranchTee_mvgd_33535_26,0.58054070561848,0.21480006107883762,0.21521104507394048,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0513544 47.56223849624466, 10.053401567907299 47.56601064602132)" +Branch_LVStation_mvgd_33535_lvgd_1164270000_MVCableDist_mvgd_33535_27,BusBar_mvgd_33535_lvgd_1164270000_MV,BranchTee_mvgd_33535_27,0.1483645667056544,0.030563100741364806,0.018695312426230376,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.058768199999996 47.56576709624502, 10.05824489409215 47.564803105280845)" +Branch_LVStation_mvgd_33535_lvgd_1164920000_MVCableDist_mvgd_33535_29,BusBar_mvgd_33535_lvgd_1164920000_MV,BranchTee_mvgd_33535_29,1.5950194070454486,0.3285739978513624,0.20098724919795097,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.006545348901419 47.511165158297686, 10.00166124438563 47.52169942153373)" +Branch_LVStation_mvgd_33535_lvgd_1165830000_MVCableDist_mvgd_33535_28,BusBar_mvgd_33535_lvgd_1165830000_MV,BranchTee_mvgd_33535_28,0.6716486850691185,0.24851001347557383,0.24898549582715365,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.008001799999994 47.57208949624548, 10.012101513617639 47.56836066096543)" +Branch_LVStation_mvgd_33535_lvgd_1165850000_MVCableDist_mvgd_33535_19,BusBar_mvgd_33535_lvgd_1165850000_MV,BranchTee_mvgd_33535_19,3.3257088057064856,0.685096013975536,0.41907017653817374,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.00487026241384 47.50392359944945, 9.994620659573224 47.52587397080866)" +Branch_LVStation_mvgd_33535_lvgd_1166430000_MVCableDist_mvgd_33535_29,BusBar_mvgd_33535_lvgd_1166430000_MV,BranchTee_mvgd_33535_29,0.5932827627138625,0.12221624911905567,0.07475913455830585,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.007437925988821 47.52293178918052, 10.00166124438563 47.52169942153373)" +Branch_LVStation_mvgd_33535_lvgd_1166640000_LVStation_mvgd_33535_lvgd_1166910000,BusBar_mvgd_33535_lvgd_1166640000_MV,BusBar_mvgd_33535_lvgd_1166910000_MV,1.9239977568810653,0.39634353791749943,0.24244157463567134,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.003053600000003 47.527566196241544, 10.010055050033241 47.51512089628523)" +Branch_LVStation_mvgd_33535_lvgd_1166910000_MVCableDist_mvgd_33535_18,virtual_BusBar_mvgd_33535_lvgd_1166910000_MV,BranchTee_mvgd_33535_18,0.3844371256515665,0.029986095800822187,0.04347881458970895,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.003053600000003 47.527566196241544, 9.999290480345204 47.526811151049166)" +Branch_LVStation_mvgd_33535_lvgd_1166910000_MVCableDist_mvgd_33535_30,BusBar_mvgd_33535_lvgd_1166910000_MV,BranchTee_mvgd_33535_30,0.544743368619511,0.04248998275232186,0.06160902353808525,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.003053600000003 47.527566196241544, 10.00828881374074 47.52883784440469)" +Branch_LVStation_mvgd_33535_lvgd_1166920000_MVCableDist_mvgd_33535_30,BusBar_mvgd_33535_lvgd_1166920000_MV,BranchTee_mvgd_33535_30,0.13702745441310843,0.028227655609100333,0.017266731053826947,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.0078172 47.529730996241796, 10.00828881374074 47.52883784440469)" +Branch_LVStation_mvgd_33535_lvgd_1167600000_MVCableDist_mvgd_33535_51,BusBar_mvgd_33535_lvgd_1167600000_MV,BranchTee_mvgd_33535_51,3.012808158652586,1.1147390187014568,1.1168718853920059,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.010591400000001 47.50410939623945, 10.037964404040062 47.5136055937295)" +Branch_LVStation_mvgd_33535_lvgd_1168040000_MVCableDist_mvgd_33535_31,BusBar_mvgd_33535_lvgd_1168040000_MV,BranchTee_mvgd_33535_31,0.5212255041027889,0.1073724538451745,0.06567925118571916,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.011235800007439 47.5333865462718, 10.013029541383371 47.52998910924647)" +Branch_LVStation_mvgd_33535_lvgd_1168900000_MVCableDist_mvgd_33535_36,BusBar_mvgd_33535_lvgd_1168900000_MV,BranchTee_mvgd_33535_36,1.6471862391064687,0.6094589084693934,0.6106250061687877,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.015019600000004 47.51566519624052, 10.029987726041217 47.52085725110507)" +Branch_LVStation_mvgd_33535_lvgd_1170090000_LVStation_mvgd_33535_lvgd_1170540000,BusBar_mvgd_33535_lvgd_1170090000_MV,BusBar_mvgd_33535_lvgd_1170540000_MV,0.5617784309777775,0.20785801946177765,0.2082557210211884,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.023249199999997 47.5739876962457, 10.0221088 47.57779949624604)" +Branch_LVStation_mvgd_33535_lvgd_1170090000_LVStation_mvgd_33535_lvgd_1171050000,BusBar_mvgd_33535_lvgd_1170090000_MV,BusBar_mvgd_33535_lvgd_1171050000_MV,0.5489778560873306,0.20312180675231234,0.20351044636075705,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.023486400000003 47.5814837962464, 10.0221088 47.57779949624604)" +Branch_LVStation_mvgd_33535_lvgd_1170540000_MVCableDist_mvgd_33535_24,BusBar_mvgd_33535_lvgd_1170540000_MV,BranchTee_mvgd_33535_24,0.5796657527882109,0.05796657527882109,0.0673797258083905,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (10.023249199999997 47.5739876962457, 10.018499493467326 47.57159047025898)" +Branch_LVStation_mvgd_33535_lvgd_1170540000_MVStation_mvgd_33535,Busbar_mvgd_33535_MV,BusBar_mvgd_33535_lvgd_1170540000_MV,0.16648060776750992,0.012985487405865774,0.01882851315579263,18.186533479473212,1,cable,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.023249199999997 47.5739876962457, 10.024504210738641 47.57320970148501)" +Branch_LVStation_mvgd_33535_lvgd_1172390000_MVCableDist_mvgd_33535_33,BusBar_mvgd_33535_lvgd_1172390000_MV,BranchTee_mvgd_33535_33,0.22337245771481765,0.04601472628925243,0.028147002866785543,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.010766399999996 47.52779689624157, 10.00999768548903 47.52925286610238)" +Branch_LVStation_mvgd_33535_lvgd_1172410000_LVStation_mvgd_33535_lvgd_1172410001,BusBar_mvgd_33535_lvgd_1172410000_MV,BusBar_mvgd_33535_lvgd_1172410001_MV,1.0964666719716802,0.4056926686295217,0.406468893705529,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.024231499999999 47.53182689624196, 10.024279300000002 47.53165939624193, 10.024456900000004 47.5312387962419, 10.024472000000001 47.531082396241864, 10.024457499999999 47.53094269624185, 10.024401999999995 47.5308071962419, 10.024199900000001 47.530313296241815, 10.024173499999998 47.530246096241804, 10.024169200000003 47.53014369624181, 10.024182600000003 47.53003709624181, 10.024203400000001 47.52990609624178, 10.024218699999997 47.5296346962418, 10.024225299999996 47.52951849624174, 10.024237700000002 47.52932239624177, 10.024302799999996 47.52916379624174, 10.024360699999997 47.52908759624173, 10.024743999999997 47.5286991962417, 10.025064800000003 47.528391796241664, 10.025185999999996 47.52829039624166, 10.025617200000001 47.5279294962416, 10.026050599999998 47.527639896241574, 10.026457499999998 47.52738559624154, 10.026677200000005 47.52723899624155, 10.027246399999996 47.52681299624154, 10.027849200000004 47.5264322962415, 10.028215100000002 47.52626519624144, 10.028951300000003 47.52600219624145, 10.028997700000003 47.52598629624144, 10.029016599999995 47.52598039624144, 10.029169399999995 47.52591649624144, 10.029282999999996 47.52586899624143, 10.029607799999997 47.52575179624143, 10.030365000000002 47.52542929624145, 10.031609300000003 47.524860696241326, 10.031685800000005 47.524828396241325, 10.031882200000002 47.52475569624136, 10.032254799999993 47.52462569624129)" +Branch_LVStation_mvgd_33535_lvgd_1172410000_MVCableDist_mvgd_33535_32,BusBar_mvgd_33535_lvgd_1172410000_MV,BranchTee_mvgd_33535_32,0.8374379064219707,0.30985202537612916,0.3104448754090398,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.032254799999993 47.52462569624129, 10.031882200000002 47.52475569624136, 10.031685800000005 47.524828396241325, 10.031609300000003 47.524860696241326, 10.030365000000002 47.52542929624145, 10.029607799999997 47.52575179624143, 10.029282999999996 47.52586899624143, 10.029169399999995 47.52591649624144, 10.029016599999995 47.52598039624144, 10.028997700000003 47.52598629624144, 10.028951300000003 47.52600219624145, 10.031979783462308 47.52154800983165)" +Branch_LVStation_mvgd_33535_lvgd_1172410001_LVStation_mvgd_33535_lvgd_1172410002,BusBar_mvgd_33535_lvgd_1172410001_MV,BusBar_mvgd_33535_lvgd_1172410002_MV,0.30164151403660844,0.062138151891541336,0.03800963040470113,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.024231499999999 47.53182689624196, 10.024279300000002 47.53165939624193, 10.024456900000004 47.5312387962419, 10.024472000000001 47.531082396241864, 10.024457499999999 47.53094269624185, 10.024401999999995 47.5308071962419, 10.024199900000001 47.530313296241815, 10.024173499999998 47.530246096241804, 10.024169200000003 47.53014369624181, 10.024182600000003 47.53003709624181, 10.024203400000001 47.52990609624178, 10.024218699999997 47.5296346962418, 10.024225299999996 47.52951849624174, 10.024237700000002 47.52932239624177, 10.024302799999996 47.52916379624174)" +Branch_LVStation_mvgd_33535_lvgd_1172410001_MVCableDist_mvgd_33535_23,BusBar_mvgd_33535_lvgd_1172410001_MV,BranchTee_mvgd_33535_23,0.7439302584583029,0.27525419562957204,0.2757808485011797,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.024231499999999 47.53182689624196, 10.024242799999993 47.53221619624197, 10.024205299999998 47.532322896242036, 10.024040699999995 47.532578196242056, 10.0238945 47.53277949624208, 10.023838999999994 47.53290729624206, 10.023815600000006 47.533037196242084, 10.023826400000004 47.53314339624206, 10.023837999999998 47.533277196242096, 10.023877799999992 47.533620996242135, 10.023898699999998 47.53371819624214, 10.023956599999993 47.533849896242174, 10.0244336 47.53431489624215, 10.024473399999996 47.53440269624219, 10.024470900000004 47.53447589624225, 10.024421899999993 47.53455509624217, 10.024290899999999 47.53462489624224, 10.023580200000003 47.53481119624228, 10.02333 47.53489319624225, 10.02359344799995 47.53528579659849, 10.023856899999997 47.53567839624231, 10.024060699999993 47.53582199624235, 10.024270358284765 47.537727672646795)" +Branch_LVStation_mvgd_33535_lvgd_1172430000_MVCableDist_mvgd_33535_34,BusBar_mvgd_33535_lvgd_1172430000_MV,BranchTee_mvgd_33535_34,0.778052855148589,0.2878795564049779,0.2884303657930457,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.040297599999995 47.522345496241094, 10.0332262990709 47.51989394244498)" +Branch_LVStation_mvgd_33535_lvgd_1172430000_MVCableDist_mvgd_33535_37,BusBar_mvgd_33535_lvgd_1172430000_MV,BranchTee_mvgd_33535_37,0.2873142908964438,0.05918674392466741,0.03620426731327583,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.040297599999995 47.522345496241094, 10.042993413799627 47.523128604772296)" +Branch_LVStation_mvgd_33535_lvgd_1172440000_MVCableDist_mvgd_33535_37,BusBar_mvgd_33535_lvgd_1172440000_MV,BranchTee_mvgd_33535_37,0.31782513986013095,0.11759530174824845,0.11782030069226683,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.045975599999997 47.52399479624128, 10.042993413799627 47.523128604772296)" +Branch_LVStation_mvgd_33535_lvgd_1172710000_LVStation_mvgd_33535_lvgd_1173300000,BusBar_mvgd_33535_lvgd_1172710000_MV,BusBar_mvgd_33535_lvgd_1173300000_MV,0.3224195708869783,0.11929524122818197,0.11952349272210834,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.036098400000006 47.5479147962434, 10.032806700000002 47.54786329624343)" +Branch_LVStation_mvgd_33535_lvgd_1172710000_LVStation_mvgd_33535_lvgd_1176060000,BusBar_mvgd_33535_lvgd_1172710000_MV,BusBar_mvgd_33535_lvgd_1176060000_MV,0.5503664984721046,0.2036356044346787,0.20402522710906443,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.041373199999999 47.5492303962435, 10.036098400000006 47.5479147962434)" +Branch_LVStation_mvgd_33535_lvgd_1172750000_MVCableDist_mvgd_33535_36,BusBar_mvgd_33535_lvgd_1172750000_MV,BranchTee_mvgd_33535_36,0.18422126036568068,0.06816186633530184,0.06829228266758523,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.029131799999996 47.52199289624106, 10.029987726041217 47.52085725110507)" +Branch_LVStation_mvgd_33535_lvgd_1172800000_MVCableDist_mvgd_33535_32,virtual_BusBar_mvgd_33535_lvgd_1172800000_MV,BranchTee_mvgd_33535_32,0.21473233952507864,0.0794509656242791,0.07960298176013607,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.032533199999994 47.5201094962409, 10.031979783462308 47.52154800983165)" +Branch_LVStation_mvgd_33535_lvgd_1172800000_MVCableDist_mvgd_33535_34,BusBar_mvgd_33535_lvgd_1172800000_MV,BranchTee_mvgd_33535_34,0.07470365328551432,0.027640351715640298,0.02769323690625471,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.032533199999994 47.5201094962409, 10.0332262990709 47.51989394244498)" +Branch_LVStation_mvgd_33535_lvgd_1173300000_Load_mvgd_33535_1,Bus_mvgd_33535_mvload_1,BusBar_mvgd_33535_lvgd_1173300000_MV,0.1918078626017825,0.07096890916265952,0.0711046963019614,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.031116705906797 47.54853468799076, 10.032806700000002 47.54786329624343)" +Branch_LVStation_mvgd_33535_lvgd_1176060000_MVCableDist_mvgd_33535_35,BusBar_mvgd_33535_lvgd_1176060000_MV,BranchTee_mvgd_33535_35,0.3113139357475637,0.11518615622659857,0.11540654567355117,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.041373199999999 47.5492303962435, 10.043528913817605 47.55081457659302)" +Branch_LVStation_mvgd_33535_lvgd_1176320000_LVStation_mvgd_33535_lvgd_1176330000,BusBar_mvgd_33535_lvgd_1176320000_MV,BusBar_mvgd_33535_lvgd_1176330000_MV,0.5766214452252841,0.21334993473335512,0.21375814415420566,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0458033 47.51696909624063, 10.044431200000002 47.520851296240956)" +Branch_LVStation_mvgd_33535_lvgd_1176320000_MVCableDist_mvgd_33535_37,BusBar_mvgd_33535_lvgd_1176320000_MV,BranchTee_mvgd_33535_37,0.35781917833522714,0.13239309598403404,0.1326464080326353,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.044431200000002 47.520851296240956, 10.042993413799627 47.523128604772296)" +Branch_LVStation_mvgd_33535_lvgd_1176460000_MVCableDist_mvgd_33535_38,BusBar_mvgd_33535_lvgd_1176460000_MV,BranchTee_mvgd_33535_38,0.44635649876948363,0.09194943874651362,0.05624506162936665,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.040137799999998 47.53328529624212, 10.038603153737306 47.53619510290661)" +Branch_LVStation_mvgd_33535_lvgd_1176560000_MVCableDist_mvgd_33535_38,BusBar_mvgd_33535_lvgd_1176560000_MV,BranchTee_mvgd_33535_38,0.40573343547616675,0.03164720796714101,0.04588737048747626,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.042503699999997 47.537140996242435, 10.038603153737306 47.53619510290661)" +Branch_LVStation_mvgd_33535_lvgd_1176560000_MVCableDist_mvgd_33535_40,BusBar_mvgd_33535_lvgd_1176560000_MV,BranchTee_mvgd_33535_40,2.2200236330479135,0.17316184337773724,0.2510787577096457,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.042503699999997 47.537140996242435, 10.061576982628472 47.54544659627017)" +Branch_LVStation_mvgd_33535_lvgd_1179290000_MVCableDist_mvgd_33535_39,BusBar_mvgd_33535_lvgd_1179290000_MV,BranchTee_mvgd_33535_39,0.6027330660908671,0.2230112344536208,0.22343792915579286,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.052457218059649 47.50353283407351, 10.046980790033027 47.501634325184725)" +Branch_LVStation_mvgd_33535_lvgd_1182190000_MVCableDist_mvgd_33535_41,BusBar_mvgd_33535_lvgd_1182190000_MV,BranchTee_mvgd_33535_41,0.3614756053115818,0.13374597396528526,0.1340018745196571,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0559142 47.551425396243694, 10.05790892055359 47.54931955147629)" +Branch_LVStation_mvgd_33535_lvgd_1182340000_MVCableDist_mvgd_33535_41,BusBar_mvgd_33535_lvgd_1182340000_MV,BranchTee_mvgd_33535_41,0.390188842542427,0.14436987174069799,0.14464609934679118,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.061261999999997 47.55077909624365, 10.05790892055359 47.54931955147629)" +Branch_LVStation_mvgd_33535_lvgd_1184650000_MVCableDist_mvgd_33535_42,BusBar_mvgd_33535_lvgd_1184650000_MV,BranchTee_mvgd_33535_42,1.1355668601699123,0.4201597382628675,0.42096364365723926,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.065379699999998 47.50929659623996, 10.075425097809415 47.5132160861878)" +Branch_LVStation_mvgd_33535_lvgd_1185140000_MVCableDist_mvgd_33535_43,BusBar_mvgd_33535_lvgd_1185140000_MV,BranchTee_mvgd_33535_43,1.4133578561026838,0.522942406757993,0.5239429695998221,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.066793690589224 47.496823412565696, 10.053952996487785 47.492372806611236)" +Branch_LVStation_mvgd_33535_lvgd_1186110000_MVCableDist_mvgd_33535_43,BusBar_mvgd_33535_lvgd_1186110000_MV,BranchTee_mvgd_33535_43,5.22228946706628,1.9322471028145236,1.935944134509264,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0781729 47.4601707962354, 10.053952996487785 47.492372806611236)" +Branch_LVStation_mvgd_33535_lvgd_1186110000_MVCableDist_mvgd_33535_52,BusBar_mvgd_33535_lvgd_1186110000_MV,BranchTee_mvgd_33535_52,0.8173222772715661,0.30240924259047947,0.30298785210321255,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0781729 47.4601707962354, 10.08594259849519 47.462215219891746)" +Branch_LVStation_mvgd_33535_lvgd_1186120000_MVCableDist_mvgd_33535_16,BusBar_mvgd_33535_lvgd_1186120000_MV,BranchTee_mvgd_33535_16,0.2676749268975991,0.05514103494090541,0.03372952516989538,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.093199999999996 47.46412419623574, 10.090655150847624 47.46345487403672)" +Branch_LVStation_mvgd_33535_lvgd_1186120000_MVCableDist_mvgd_33535_45,BusBar_mvgd_33535_lvgd_1186120000_MV,BranchTee_mvgd_33535_45,0.7601871530958176,0.2812692466454525,0.2818074083112609,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.093199999999996 47.46412419623574, 10.10077133509001 47.46524953733862)" +Branch_LVStation_mvgd_33535_lvgd_1186620000_MVCableDist_mvgd_33535_40,BusBar_mvgd_33535_lvgd_1186620000_MV,BranchTee_mvgd_33535_40,1.6264939184651315,0.12686652564028025,0.1839521284329072,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.076023899999992 47.55100299624363, 10.061576982628472 47.54544659627017)" +Branch_LVStation_mvgd_33535_lvgd_1186620000_MVCableDist_mvgd_33535_55,BusBar_mvgd_33535_lvgd_1186620000_MV,BranchTee_mvgd_33535_55,1.3366073582912676,0.10425537394671888,0.15116673087150864,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.076023899999992 47.55100299624363, 10.087345400000006 47.556173096244144)" +Branch_LVStation_mvgd_33535_lvgd_1192280000_MVCableDist_mvgd_33535_44,BusBar_mvgd_33535_lvgd_1192280000_MV,BranchTee_mvgd_33535_44,0.21088366250950355,0.07802695512851632,0.07817624665843194,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.106713927889984 47.47333964308403, 10.108578607521961 47.474066900094186)" +Branch_LVStation_mvgd_33535_lvgd_1193510000_MVCableDist_mvgd_33535_52,BusBar_mvgd_33535_lvgd_1193510000_MV,BranchTee_mvgd_33535_52,2.74241811098827,1.01469470106566,1.0166361496851768,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.096039900000005 47.44450929623392, 10.08594259849519 47.462215219891746)" +Branch_LVStation_mvgd_33535_lvgd_1195620000_MVCableDist_mvgd_33535_45,BusBar_mvgd_33535_lvgd_1195620000_MV,BranchTee_mvgd_33535_45,0.32230123470357414,0.11925145684032243,0.11947962456014484,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.103981500000007 47.465726496235916, 10.10077133509001 47.46524953733862)" +Branch_LVStation_mvgd_33535_lvgd_1195620000_MVCableDist_mvgd_33535_46,BusBar_mvgd_33535_lvgd_1195620000_MV,BranchTee_mvgd_33535_46,0.7460617115852997,0.2760428332865609,0.2765709950844385,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.103981500000007 47.465726496235916, 10.111272439250325 47.4642535501185)" +Branch_LVStation_mvgd_33535_lvgd_1195900000_MVCableDist_mvgd_33535_45,BusBar_mvgd_33535_lvgd_1195900000_MV,BranchTee_mvgd_33535_45,0.7248784229636904,0.2682050164965655,0.26871818194276115,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.102351329541532 47.46034674424677, 10.10077133509001 47.46524953733862)" +Branch_LVStation_mvgd_33535_lvgd_1196330000_MVCableDist_mvgd_33535_46,BusBar_mvgd_33535_lvgd_1196330000_MV,BranchTee_mvgd_33535_46,0.26234662447730794,0.09706825105660394,0.09725397492193491,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.112035199999998 47.46599449623593, 10.111272439250325 47.4642535501185)" +Branch_LVStation_mvgd_33535_lvgd_1197550000_MVCableDist_mvgd_33535_57,BusBar_mvgd_33535_lvgd_1197550000_MV,BranchTee_mvgd_33535_57,1.9848866982759399,0.7344080783620978,0.7358132454023916,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.111815571053565 47.56507186743076, 10.09367943116541 47.55892853927181)" +Branch_LVStation_mvgd_33535_lvgd_1197640000_LVStation_mvgd_33535_lvgd_1205360000,BusBar_mvgd_33535_lvgd_1197640000_MV,BusBar_mvgd_33535_lvgd_1205360000_MV,7.337400145335868,2.714838053774271,2.7200324423782294,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.134432452294615 47.413320640977645, 10.118035699999993 47.462886696235664)" +Branch_LVStation_mvgd_33535_lvgd_1197640000_MVCableDist_mvgd_33535_44,BusBar_mvgd_33535_lvgd_1197640000_MV,BranchTee_mvgd_33535_44,1.8621664081529536,0.6890015710165929,0.6903198602985713,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.118035699999993 47.462886696235664, 10.108578607521961 47.474066900094186)" +Branch_LVStation_mvgd_33535_lvgd_1197640000_MVCableDist_mvgd_33535_47,BusBar_mvgd_33535_lvgd_1197640000_MV,BranchTee_mvgd_33535_47,0.18061723765628787,0.0372071509571953,0.022759448313869626,11.050484152289437,1,cable,NA2XS2Y 3x1x150 RE/25,"LINESTRING (10.118035699999993 47.462886696235664, 10.116270736669351 47.46324344251759)" +Branch_LVStation_mvgd_33535_lvgd_1197640000_MVCableDist_mvgd_33535_48,BusBar_mvgd_33535_lvgd_1197640000_MV,BranchTee_mvgd_33535_48,0.6199247299555551,0.2293721500835554,0.22981101533402698,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.118035699999993 47.462886696235664, 10.12176727465316 47.45942243316103)" +Branch_LVStation_mvgd_33535_lvgd_1198790000_MVCableDist_mvgd_33535_47,BusBar_mvgd_33535_lvgd_1198790000_MV,BranchTee_mvgd_33535_47,1.4236638307628882,0.5267556173822686,0.5277634761649306,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.11213156404492 47.45379599917682, 10.116270736669351 47.46324344251759)" +Branch_LVStation_mvgd_33535_lvgd_1200790000_MVCableDist_mvgd_33535_48,BusBar_mvgd_33535_lvgd_1200790000_MV,BranchTee_mvgd_33535_48,0.10656801990337193,0.03943016736424761,0.0395056103954532,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.122408699950109 47.458826896343886, 10.12176727465316 47.45942243316103)" +Branch_LVStation_mvgd_33535_lvgd_1200800000_LVStation_mvgd_33535_lvgd_1200820000,BusBar_mvgd_33535_lvgd_1200820000_MV,BusBar_mvgd_33535_lvgd_1200800000_MV,0.42508435514902204,0.15728121140513815,0.1575821427004704,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.127972999999997 47.45895099623527, 10.124696899999998 47.46087769623543)" +Branch_LVStation_mvgd_33535_lvgd_1200800000_MVCableDist_mvgd_33535_48,BusBar_mvgd_33535_lvgd_1200800000_MV,BranchTee_mvgd_33535_48,0.3560384580188621,0.13173422946697896,0.13198628088468442,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.124696899999998 47.46087769623543, 10.12176727465316 47.45942243316103)" +Branch_MVCableDist_mvgd_33535_10_MVCableDist_mvgd_33535_20,BranchTee_mvgd_33535_10,BranchTee_mvgd_33535_20,0.4753076235222591,0.09791337044558536,0.0598931720533179,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.97761393434411 47.549656821675576, 9.98052636625868 47.54702430740754)" +Branch_MVCableDist_mvgd_33535_11_MVCableDist_mvgd_33535_14,BranchTee_mvgd_33535_11,BranchTee_mvgd_33535_14,1.3045549005333328,0.16959213706933327,0.14741873189917135,14.445303735124435,1,line,NA2XS2Y 3x1x240,"LINESTRING (9.97517841701417 47.53637675337577, 9.985114412963808 47.542392139613284)" +Branch_MVCableDist_mvgd_33535_11_MVCableDist_mvgd_33535_8,BranchTee_mvgd_33535_8,BranchTee_mvgd_33535_11,0.4858164370373408,0.06315613681485431,0.054898757464740724,14.445303735124435,1,line,NA2XS2Y 3x1x240,"LINESTRING (9.971478841193234 47.53413638703258, 9.97517841701417 47.53637675337577)" +Branch_MVCableDist_mvgd_33535_12_MVCableDist_mvgd_33535_19,BranchTee_mvgd_33535_12,BranchTee_mvgd_33535_19,1.0129917969341073,0.07901336016086037,0.11456667314621695,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (9.984705724901088 47.52388337901873, 9.994620659573224 47.52587397080866)" +Branch_MVCableDist_mvgd_33535_12_MVCableDist_mvgd_33535_49,BranchTee_mvgd_33535_12,BranchTee_mvgd_33535_49,0.23340381784044878,0.018205497791555003,0.026397349900105112,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (9.984705724901088 47.52388337901873, 9.982421329246263 47.5234245980793)" +Branch_MVCableDist_mvgd_33535_13_MVCableDist_mvgd_33535_4,BranchTee_mvgd_33535_4,BranchTee_mvgd_33535_13,0.24947428766344262,0.024947428766344263,0.02899862380717167,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.98626414895975 47.54308805548839, 9.988164556270467 47.54423827196185)" +Branch_MVCableDist_mvgd_33535_14_MVCableDist_mvgd_33535_15,BranchTee_mvgd_33535_14,BranchTee_mvgd_33535_15,0.7390688316160455,0.07390688316160456,0.08590856884037994,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.985114412963808 47.542392139613284, 9.990139804507564 47.53857495088489)" +Branch_MVCableDist_mvgd_33535_14_MVCableDist_mvgd_33535_4,BranchTee_mvgd_33535_4,BranchTee_mvgd_33535_14,0.1509359632856054,0.01509359632856054,0.017544634596560596,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.98626414895975 47.54308805548839, 9.985114412963808 47.542392139613284)" +Branch_MVCableDist_mvgd_33535_16_MVCableDist_mvgd_33535_52,BranchTee_mvgd_33535_16,BranchTee_mvgd_33535_52,0.49569876359265963,0.18340854252928407,0.18375946410335667,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.090655150847624 47.46345487403672, 10.08594259849519 47.462215219891746)" +Branch_MVCableDist_mvgd_33535_17_MVCableDist_mvgd_33535_5,BranchTee_mvgd_33535_5,BranchTee_mvgd_33535_17,0.2644108954180339,0.03437341640434441,0.02987924761688097,14.445303735124435,1,line,NA2XS2Y 3x1x240,"LINESTRING (9.996294213899032 47.553857279122525, 9.993690037971223 47.5543418623081)" +Branch_MVCableDist_mvgd_33535_17_MVCableDist_mvgd_33535_6,BranchTee_mvgd_33535_6,BranchTee_mvgd_33535_17,0.636727649761366,0.08277459446897759,0.07195219047859605,14.445303735124435,1,line,NA2XS2Y 3x1x240,"LINESTRING (9.98741872382493 47.555508531329956, 9.993690037971223 47.5543418623081)" +Branch_MVCableDist_mvgd_33535_18_MVCableDist_mvgd_33535_19,BranchTee_mvgd_33535_18,BranchTee_mvgd_33535_19,0.4770805496876431,0.03721228287563616,0.05395653900249407,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (9.999290480345204 47.526811151049166, 9.994620659573224 47.52587397080866)" +Branch_MVCableDist_mvgd_33535_18_MVCableDist_mvgd_33535_29,BranchTee_mvgd_33535_18,BranchTee_mvgd_33535_29,0.7739948196732369,0.1594429328526868,0.09753053098441414,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.999290480345204 47.526811151049166, 10.00166124438563 47.52169942153373)" +Branch_MVCableDist_mvgd_33535_21_MVCableDist_mvgd_33535_5,BranchTee_mvgd_33535_5,BranchTee_mvgd_33535_21,0.8661412063703458,0.08661412063703458,0.10067932548346573,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (9.996294213899032 47.553857279122525, 9.993952627550263 47.54807462214073)" +Branch_MVCableDist_mvgd_33535_23_MVStation_mvgd_33535,Busbar_mvgd_33535_MV,BranchTee_mvgd_33535_23,5.125063694812047,1.8962735670804574,1.899901769430552,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.024504210738641 47.57320970148501, 10.024270358284765 47.537727672646795)" +Branch_MVCableDist_mvgd_33535_24_MVCableDist_mvgd_33535_28,BranchTee_mvgd_33535_24,BranchTee_mvgd_33535_28,0.7809100919334306,0.07809100919334307,0.09077215209349124,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (10.018499493467326 47.57159047025898, 10.012101513617639 47.56836066096543)" +Branch_MVCableDist_mvgd_33535_25_MVCableDist_mvgd_33535_31,BranchTee_mvgd_33535_25,BranchTee_mvgd_33535_31,2.5476206626189564,0.19871441168427859,0.2881291088814219,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.037517756901362 47.53593186012843, 10.013029541383371 47.52998910924647)" +Branch_MVCableDist_mvgd_33535_25_MVCableDist_mvgd_33535_38,BranchTee_mvgd_33535_25,BranchTee_mvgd_33535_38,0.11290523291258438,0.008806608167181582,0.012769281009720706,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.037517756901362 47.53593186012843, 10.038603153737306 47.53619510290661)" +Branch_MVCableDist_mvgd_33535_26_MVCableDist_mvgd_33535_27,BranchTee_mvgd_33535_26,BranchTee_mvgd_33535_27,0.5051742905235752,0.03940359466083886,0.05713386623608679,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.053401567907299 47.56601064602132, 10.05824489409215 47.564803105280845)" +Branch_MVCableDist_mvgd_33535_26_MVStation_mvgd_33535,Busbar_mvgd_33535_MV,BranchTee_mvgd_33535_26,3.0135957549683092,0.23506046888752813,0.34082965024912176,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.024504210738641 47.57320970148501, 10.053401567907299 47.56601064602132)" +Branch_MVCableDist_mvgd_33535_28_MVCableDist_mvgd_33535_7,BranchTee_mvgd_33535_7,BranchTee_mvgd_33535_28,0.9924810658663139,0.0992481065866314,0.11536493533804544,16.489123688055713,1,line,NA2XS(FL)2Y 3x1x300 RM/25,"LINESTRING (10.003971291519571 47.564255255361005, 10.012101513617639 47.56836066096543)" +Branch_MVCableDist_mvgd_33535_2_MVCableDist_mvgd_33535_39,BranchTee_mvgd_33535_2,BranchTee_mvgd_33535_39,0.2667327139918802,0.09869110417699567,0.09887993310037707,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.048219013447918 47.49998981068342, 10.046980790033027 47.501634325184725)" +Branch_MVCableDist_mvgd_33535_2_MVCableDist_mvgd_33535_43,BranchTee_mvgd_33535_2,BranchTee_mvgd_33535_43,1.235410582993561,0.4571019157076176,0.45797650378055926,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.048219013447918 47.49998981068342, 10.053952996487785 47.492372806611236)" +Branch_MVCableDist_mvgd_33535_30_MVCableDist_mvgd_33535_33,BranchTee_mvgd_33535_30,BranchTee_mvgd_33535_33,0.17780863398375316,0.013869073450732745,0.02010968273765503,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.00828881374074 47.52883784440469, 10.00999768548903 47.52925286610238)" +Branch_MVCableDist_mvgd_33535_31_MVCableDist_mvgd_33535_33,BranchTee_mvgd_33535_31,BranchTee_mvgd_33535_33,0.3154585230220654,0.024605764795721102,0.03567751842378266,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (10.013029541383371 47.52998910924647, 10.00999768548903 47.52925286610238)" +Branch_MVCableDist_mvgd_33535_32_MVCableDist_mvgd_33535_36,BranchTee_mvgd_33535_32,BranchTee_mvgd_33535_36,0.2191935422655712,0.08110161063826134,0.08125678500730939,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.031979783462308 47.52154800983165, 10.029987726041217 47.52085725110507)" +Branch_MVCableDist_mvgd_33535_34_MVCableDist_mvgd_33535_51,BranchTee_mvgd_33535_34,BranchTee_mvgd_33535_51,1.0200339244278556,0.37741255203830654,0.37813466784060024,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.0332262990709 47.51989394244498, 10.037964404040062 47.5136055937295)" +Branch_MVCableDist_mvgd_33535_35_MVCableDist_mvgd_33535_42,BranchTee_mvgd_33535_35,BranchTee_mvgd_33535_42,6.2651910433092235,2.318120686024413,2.3225560222896258,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.043528913817605 47.55081457659302, 10.075425097809415 47.5132160861878)" +Branch_MVCableDist_mvgd_33535_35_MVStation_mvgd_33535,Busbar_mvgd_33535_MV,BranchTee_mvgd_33535_35,3.7325857685143795,1.3810567343503204,1.383699155452513,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.024504210738641 47.57320970148501, 10.043528913817605 47.55081457659302)" +Branch_MVCableDist_mvgd_33535_39_MVCableDist_mvgd_33535_50,BranchTee_mvgd_33535_39,BranchTee_mvgd_33535_50,1.2779949054085342,0.47285811500115765,0.47376284992648277,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.046980790033027 47.501634325184725, 10.041047006337893 47.509513464348174)" +Branch_MVCableDist_mvgd_33535_3_MVCableDist_mvgd_33535_49,BranchTee_mvgd_33535_3,BranchTee_mvgd_33535_49,0.9353467346419593,0.07295704530207282,0.10578522348397372,18.186533479473212,1,line,NA2XS(FL)2Y 3x1x400 RM/35,"LINESTRING (9.973267206707693 47.52158559020645, 9.982421329246263 47.5234245980793)" +Branch_MVCableDist_mvgd_33535_40_MVCableDist_mvgd_33535_41,BranchTee_mvgd_33535_40,BranchTee_mvgd_33535_41,0.6647889754146786,0.2459719209034311,0.2464425470393283,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.061576982628472 47.54544659627017, 10.05790892055359 47.54931955147629)" +Branch_MVCableDist_mvgd_33535_42_MVCableDist_mvgd_33535_44,BranchTee_mvgd_33535_42,BranchTee_mvgd_33535_44,6.521818409683899,2.4130728115830427,2.417689822861333,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.075425097809415 47.5132160861878, 10.108578607521961 47.474066900094186)" +Branch_MVCableDist_mvgd_33535_46_MVCableDist_mvgd_33535_47,BranchTee_mvgd_33535_46,BranchTee_mvgd_33535_47,0.5114864807328215,0.18924999787114397,0.18961209609312607,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.111272439250325 47.4642535501185, 10.116270736669351 47.46324344251759)" +Branch_MVCableDist_mvgd_33535_50_MVCableDist_mvgd_33535_51,BranchTee_mvgd_33535_50,BranchTee_mvgd_33535_51,0.6637652510068561,0.24559314287253675,0.24606304428001624,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.041047006337893 47.509513464348174, 10.037964404040062 47.5136055937295)" +Branch_MVCableDist_mvgd_33535_53_MVStation_mvgd_33535,Busbar_mvgd_33535_MV,BranchTee_mvgd_33535_53,1.6007649628095106,0.592283036239519,0.593416270779783,7.274613391789284,1,line,48-AL1/8-ST1A,"LINESTRING (10.019531 47.55962729624444, 10.019539000000005 47.55966559624444, 10.0195974 47.55999569624451, 10.019648899999996 47.56030849624448, 10.019725299999994 47.560569996244496, 10.019804300000004 47.56073399624456, 10.019988500000002 47.56093419624458, 10.0202025 47.56118499624459, 10.020302300000006 47.561308296244604, 10.020395900000004 47.56143569624454, 10.020486 47.561602396244616, 10.0205587 47.56183759624462, 10.020541599999998 47.562063496244626, 10.020455700000003 47.56250359624466, 10.020404899999994 47.562929296244725, 10.020444300000005 47.56324049624475, 10.020543899999996 47.56385759624484, 10.020684900000003 47.56430499624486, 10.020833899999998 47.56466029624489, 10.020949000000003 47.56495809624495, 10.021080099999997 47.565354596244916, 10.021084400000005 47.565377596244936, 10.021131900000006 47.56574519624501, 10.021126599999997 47.566053596245006, 10.021077399999992 47.56631409624502, 10.021048400000003 47.56642249624503, 10.021023600000003 47.56649499624504, 10.020946099999998 47.56675289624504, 10.020930699999996 47.56703339624508, 10.020990699999997 47.56720129624508, 10.021161300000003 47.5675205962451, 10.0212091 47.56760809624511, 10.021298199999997 47.56782749624517, 10.021365099999999 47.56806949624518, 10.021420699999995 47.568354696245194, 10.021444200000003 47.56840579624522, 10.021538299999998 47.56856869624521, 10.021615600000006 47.568694996245235, 10.021555500000002 47.56885489624524, 10.021704599999996 47.56890559624529, 10.022129999999997 47.56905009624528, 10.024504210738641 47.57320970148501)" +Branch_MVCableDist_mvgd_33535_58_MVCableDist_mvgd_33535_9,BranchTee_mvgd_33535_9,BranchTee_mvgd_33535_58,0.3753575497979161,0.0773236552583707,0.047298535093884535,11.050484152289437,1,line,NA2XS2Y 3x1x150 RE/25,"LINESTRING (9.969748552299011 47.52597839431304, 9.968957591647868 47.52852116688911)" +Branch_LVCableDist_mvgd_33535_lvgd_1141170000_building_444312_LVStation_mvgd_33535_lvgd_1141170000,BusBar_mvgd_33535_lvgd_1141170000_LV,BranchTee_mvgd_33535_lvgd_1141170000_building_444312,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040278153522014 47.497236243470454, 10.040278153522014 47.497236243470454)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_10_LVCableDist_mvgd_33535_lvgd_1150630000_11,BranchTee_mvgd_33535_lvgd_1150630000_10,BranchTee_mvgd_33535_lvgd_1150630000_11,0.06391787593427699,0.05548071631095242,0.005441786488587907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970116699999997 47.52043349624094, 9.970031600000004 47.52046439624091, 9.969783299999994 47.52050129624096, 9.969314900000002 47.52061479624092)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_10_LVCableDist_mvgd_33535_lvgd_1150630000_16,BranchTee_mvgd_33535_lvgd_1150630000_10,BranchTee_mvgd_33535_lvgd_1150630000_16,0.03211624844468136,0.027876903649983423,0.0027342862117337085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9698889 47.520193796240925, 9.969988200000005 47.520263796240926, 9.970060499999999 47.52033649624097, 9.970116699999997 47.52043349624094)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_10_LVCableDist_mvgd_33535_lvgd_1150630000_3,BranchTee_mvgd_33535_lvgd_1150630000_3,BranchTee_mvgd_33535_lvgd_1150630000_10,0.028208326409557272,0.024484827323495714,0.002401576824596691,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970116699999997 47.52043349624094, 9.9702251 47.520552296240965, 9.970330900000002 47.520641096240986)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_11_LVCableDist_mvgd_33535_lvgd_1150630000_12,BranchTee_mvgd_33535_lvgd_1150630000_11,BranchTee_mvgd_33535_lvgd_1150630000_12,0.3665891496773208,0.3181993819199145,0.031210359424775208,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969314900000002 47.52061479624092, 9.968872799999996 47.52067939624101, 9.9680542 47.520779096241, 9.967799999999995 47.52090259624098, 9.967336799999998 47.521180996241, 9.966961199999995 47.521407096241, 9.966533899999991 47.52164959624107, 9.966215200000006 47.521836596241045, 9.965882699999995 47.5220072962411, 9.966026900000006 47.52221969624111, 9.966105999999995 47.52238139624115, 9.966175400000003 47.522475496241135)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_11_LVCableDist_mvgd_33535_lvgd_1150630000_building_431071,BranchTee_mvgd_33535_lvgd_1150630000_11,BranchTee_mvgd_33535_lvgd_1150630000_building_431071,0.016306647492876813,0.014154170023817074,0.001388301671540936,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969299600008748 47.52046839628749, 9.969314900000002 47.52061479624092)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_11_LVCableDist_mvgd_33535_lvgd_1150630000_building_431074,BranchTee_mvgd_33535_lvgd_1150630000_11,BranchTee_mvgd_33535_lvgd_1150630000_building_431074,0.009606867583504281,0.008338761062481716,0.0008179014313198032,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969316424350993 47.5207012562331, 9.969314900000002 47.52061479624092)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_12_LVCableDist_mvgd_33535_lvgd_1150630000_building_430893,BranchTee_mvgd_33535_lvgd_1150630000_12,BranchTee_mvgd_33535_lvgd_1150630000_building_430893,0.01377484226503895,0.011956563086053808,0.0011727509624599435,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.966321040774659 47.522400584509825, 9.966175400000003 47.522475496241135)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_13_LVCableDist_mvgd_33535_lvgd_1150630000_14,BranchTee_mvgd_33535_lvgd_1150630000_13,BranchTee_mvgd_33535_lvgd_1150630000_14,0.03277628292587625,0.028449813579660584,0.002790479673566853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969034600000004 47.519302696240864, 9.9690045 47.51947709624087, 9.9690068 47.519596496240865)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_13_LVCableDist_mvgd_33535_lvgd_1150630000_building_430859,BranchTee_mvgd_33535_lvgd_1150630000_13,BranchTee_mvgd_33535_lvgd_1150630000_building_430859,0.030179137366207216,0.026195491233867864,0.0025693660741406884,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969405329394204 47.51940535694565, 9.969034600000004 47.519302696240864)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_14_LVCableDist_mvgd_33535_lvgd_1150630000_8,BranchTee_mvgd_33535_lvgd_1150630000_8,BranchTee_mvgd_33535_lvgd_1150630000_14,0.033215862621394136,0.02883136875537011,0.002827904240837932,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9690068 47.519596496240865, 9.969030700000001 47.51969749624093, 9.969087399999998 47.519787896240864, 9.969169400000004 47.519869096240896)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_14_LVCableDist_mvgd_33535_lvgd_1150630000_building_430861,BranchTee_mvgd_33535_lvgd_1150630000_14,BranchTee_mvgd_33535_lvgd_1150630000_building_430861,0.02335475616107311,0.02027192834781146,0.0019883576333524235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969316630120437 47.51960032958994, 9.9690068 47.519596496240865)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_15_LVCableDist_mvgd_33535_lvgd_1150630000_16,BranchTee_mvgd_33535_lvgd_1150630000_15,BranchTee_mvgd_33535_lvgd_1150630000_16,0.059247408887891526,0.051426750914689845,0.005044156184124271,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969231100000004 47.51990179624089, 9.9698889 47.520193796240925)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_15_LVCableDist_mvgd_33535_lvgd_1150630000_8,BranchTee_mvgd_33535_lvgd_1150630000_8,BranchTee_mvgd_33535_lvgd_1150630000_15,0.005901083731616521,0.00512214067904314,0.0005024015152154936,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969169400000004 47.519869096240896, 9.969231100000004 47.51990179624089)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_15_LVCableDist_mvgd_33535_lvgd_1150630000_building_431068,BranchTee_mvgd_33535_lvgd_1150630000_15,BranchTee_mvgd_33535_lvgd_1150630000_building_431068,0.019747905942249996,0.017141182357872996,0.0016812806458859756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96945788478577 47.519812768439344, 9.969231100000004 47.51990179624089)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_15_LVCableDist_mvgd_33535_lvgd_1150630000_building_431069,BranchTee_mvgd_33535_lvgd_1150630000_15,BranchTee_mvgd_33535_lvgd_1150630000_building_431069,0.0242957832999539,0.021088739904359985,0.0020684740122981432,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969526785026844 47.51981468590157, 9.969231100000004 47.51990179624089)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_16_LVCableDist_mvgd_33535_lvgd_1150630000_building_431072,BranchTee_mvgd_33535_lvgd_1150630000_16,BranchTee_mvgd_33535_lvgd_1150630000_building_431072,0.01616726169547201,0.014033183151669704,0.0013764347604783961,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969686615774135 47.52024223069566, 9.9698889 47.520193796240925)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_17_LVCableDist_mvgd_33535_lvgd_1150630000_building_430881,BranchTee_mvgd_33535_lvgd_1150630000_17,BranchTee_mvgd_33535_lvgd_1150630000_building_430881,0.0261751599980125,0.02272003887827485,0.002228478808655554,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971325484498767 47.52105229024077, 9.970979500000006 47.521031696241025)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_17_LVCableDist_mvgd_33535_lvgd_1150630000_building_430882,BranchTee_mvgd_33535_lvgd_1150630000_17,BranchTee_mvgd_33535_lvgd_1150630000_building_430882,0.035475247334160805,0.030792514686051577,0.0030202618406915014,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971450212987715 47.52103080558409, 9.970979500000006 47.521031696241025)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_17_LVCableDist_mvgd_33535_lvgd_1150630000_building_431092,BranchTee_mvgd_33535_lvgd_1150630000_17,BranchTee_mvgd_33535_lvgd_1150630000_building_431092,0.024228741038653225,0.021030547221551,0.002062766224509864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970659291858205 47.521012263243065, 9.970979500000006 47.521031696241025)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_17_LVCableDist_mvgd_33535_lvgd_1150630000_building_431095,BranchTee_mvgd_33535_lvgd_1150630000_17,BranchTee_mvgd_33535_lvgd_1150630000_building_431095,0.03165513163813816,0.027476654261903925,0.002695028035975682,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970561986084927 47.52106280985678, 9.970979500000006 47.521031696241025)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_17_LVStation_mvgd_33535_lvgd_1150630000,BusBar_mvgd_33535_lvgd_1150630000_LV,BranchTee_mvgd_33535_lvgd_1150630000_17,0.02560479634149319,0.02222496322441609,0.0021799196662519514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971241399999998 47.521178496241035, 9.970979500000006 47.521031696241025)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_18_LVCableDist_mvgd_33535_lvgd_1150630000_23,BranchTee_mvgd_33535_lvgd_1150630000_18,BranchTee_mvgd_33535_lvgd_1150630000_23,0.009435373389124606,0.008189904101760159,0.0008033009024973784,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970484899999994 47.52173719624108, 9.970368399999998 47.52176829624105)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_18_LVCableDist_mvgd_33535_lvgd_1150630000_24,BranchTee_mvgd_33535_lvgd_1150630000_18,BranchTee_mvgd_33535_lvgd_1150630000_24,0.015429043288285487,0.013392409574231804,0.0013135849411573478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970368399999998 47.52176829624105, 9.970289299999996 47.521744396241054, 9.970197099999998 47.521694296241066)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_18_LVCableDist_mvgd_33535_lvgd_1150630000_building_430898,BranchTee_mvgd_33535_lvgd_1150630000_18,BranchTee_mvgd_33535_lvgd_1150630000_building_430898,0.038307795215384036,0.033251166246953345,0.003261416925446951,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97014157289771 47.5220768492788, 9.970368399999998 47.52176829624105)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_18_LVCableDist_mvgd_33535_lvgd_1150630000_building_430899,BranchTee_mvgd_33535_lvgd_1150630000_18,BranchTee_mvgd_33535_lvgd_1150630000_building_430899,0.03333411139961575,0.02893400869486647,0.0028379716060970665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970283781796239 47.522062776046035, 9.970368399999998 47.52176829624105)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_19_LVCableDist_mvgd_33535_lvgd_1150630000_20,BranchTee_mvgd_33535_lvgd_1150630000_19,BranchTee_mvgd_33535_lvgd_1150630000_20,0.01494877642969045,0.01297553794097131,0.0012726963843363052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970153799999997 47.521378296241025, 9.970153099999994 47.52141269624104, 9.970105500000006 47.521455196241014, 9.9700453 47.52147799624105)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_19_LVCableDist_mvgd_33535_lvgd_1150630000_22,BranchTee_mvgd_33535_lvgd_1150630000_19,BranchTee_mvgd_33535_lvgd_1150630000_22,0.013859196942454324,0.012029782946050354,0.00117993268020476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9700453 47.52147799624105, 9.970032099999992 47.521443596241035, 9.970031800000005 47.521391796241026, 9.970060800000004 47.52135999624103)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_19_LVCableDist_mvgd_33535_lvgd_1150630000_25,BranchTee_mvgd_33535_lvgd_1150630000_19,BranchTee_mvgd_33535_lvgd_1150630000_25,0.013439022067072962,0.01166507115421933,0.0011441601842281184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9701191 47.52158709624102, 9.970059999999997 47.52151649624107, 9.9700453 47.52147799624105)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_1_LVCableDist_mvgd_33535_lvgd_1150630000_17,BranchTee_mvgd_33535_lvgd_1150630000_1,BranchTee_mvgd_33535_lvgd_1150630000_17,0.05530746284403719,0.04800687774862428,0.00470872036380293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970440599999996 47.52069379624093, 9.970979500000006 47.521031696241025)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_1_LVCableDist_mvgd_33535_lvgd_1150630000_2,BranchTee_mvgd_33535_lvgd_1150630000_1,BranchTee_mvgd_33535_lvgd_1150630000_2,0.06771903497750921,0.05878012236047799,0.00576540637770475,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970440599999996 47.52069379624093, 9.970510800000007 47.520627096240936, 9.970636400000004 47.52050989624097, 9.970713000000002 47.52043539624093, 9.970793999999998 47.520372896240964, 9.970668499999999 47.520285196240955, 9.9705766 47.52022539624088)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_1_LVCableDist_mvgd_33535_lvgd_1150630000_3,BranchTee_mvgd_33535_lvgd_1150630000_1,BranchTee_mvgd_33535_lvgd_1150630000_3,0.010130915113475046,0.00879363431849634,0.0008625173502046088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970440599999996 47.52069379624093, 9.970330900000002 47.520641096240986)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_1_LVCableDist_mvgd_33535_lvgd_1150630000_building_431090,BranchTee_mvgd_33535_lvgd_1150630000_1,BranchTee_mvgd_33535_lvgd_1150630000_building_431090,0.013486782896519426,0.011706527554178862,0.001148226405650006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970374755665164 47.520806667380725, 9.970440599999996 47.52069379624093)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_20_LVCableDist_mvgd_33535_lvgd_1150630000_building_431094,BranchTee_mvgd_33535_lvgd_1150630000_20,BranchTee_mvgd_33535_lvgd_1150630000_building_431094,0.016588419260596707,0.014398747918197941,0.0014122909198698431,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970367899997623 47.52134364626206, 9.970153799999997 47.521378296241025)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_21_LVCableDist_mvgd_33535_lvgd_1150630000_23,BranchTee_mvgd_33535_lvgd_1150630000_21,BranchTee_mvgd_33535_lvgd_1150630000_23,0.010831678121074415,0.009401896609092592,0.000922178323143972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9705515 47.52165729624105, 9.970537700000003 47.52170719624103, 9.970484899999994 47.52173719624108)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_21_LVCableDist_mvgd_33535_lvgd_1150630000_26,BranchTee_mvgd_33535_lvgd_1150630000_21,BranchTee_mvgd_33535_lvgd_1150630000_26,0.018989218659727594,0.016482641796643552,0.0016166881646317629,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970726900000006 47.52153459624104, 9.9705515 47.52165729624105)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_21_LVCableDist_mvgd_33535_lvgd_1150630000_building_430895,BranchTee_mvgd_33535_lvgd_1150630000_21,BranchTee_mvgd_33535_lvgd_1150630000_building_430895,0.012955791682285625,0.011245627180223922,0.001103019321200774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970716830739194 47.52168924923195, 9.9705515 47.52165729624105)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_21_LVCableDist_mvgd_33535_lvgd_1150630000_building_431104,BranchTee_mvgd_33535_lvgd_1150630000_21,BranchTee_mvgd_33535_lvgd_1150630000_building_431104,0.016334301332683862,0.014178173556769593,0.0013906560409504313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970411584182235 47.521545016159685, 9.9705515 47.52165729624105)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_22_LVCableDist_mvgd_33535_lvgd_1150630000_building_431078,BranchTee_mvgd_33535_lvgd_1150630000_22,BranchTee_mvgd_33535_lvgd_1150630000_building_431078,0.01581552731128099,0.0137278777061919,0.0013464890936131426,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969922899997226 47.52125269626275, 9.970060800000004 47.52135999624103)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_22_LVCableDist_mvgd_33535_lvgd_1150630000_building_431079,BranchTee_mvgd_33535_lvgd_1150630000_22,BranchTee_mvgd_33535_lvgd_1150630000_building_431079,0.014786363579807156,0.012834563587272611,0.0012588690154015686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970024999997237 47.521229146262776, 9.970060800000004 47.52135999624103)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_23_LVCableDist_mvgd_33535_lvgd_1150630000_building_430896,BranchTee_mvgd_33535_lvgd_1150630000_23,BranchTee_mvgd_33535_lvgd_1150630000_building_430896,0.017109094730622696,0.0148506942261805,0.0014566197511445245,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970576616851584 47.52187806015679, 9.970484899999994 47.52173719624108)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_24_LVCableDist_mvgd_33535_lvgd_1150630000_25,BranchTee_mvgd_33535_lvgd_1150630000_24,BranchTee_mvgd_33535_lvgd_1150630000_25,0.013282093302758001,0.011528856986793944,0.0011307997147688698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970197099999998 47.521694296241066, 9.9701191 47.52158709624102)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_24_LVCableDist_mvgd_33535_lvgd_1150630000_building_431102,BranchTee_mvgd_33535_lvgd_1150630000_24,BranchTee_mvgd_33535_lvgd_1150630000_building_431102,0.02095666099192787,0.018190381740993394,0.0017841906190539359,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970032824574892 47.52184648178004, 9.970197099999998 47.521694296241066)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_25_LVCableDist_mvgd_33535_lvgd_1150630000_building_431100,BranchTee_mvgd_33535_lvgd_1150630000_25,BranchTee_mvgd_33535_lvgd_1150630000_building_431100,0.022398868856963957,0.019442218167844715,0.001906976102128474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969851863164319 47.52167532184271, 9.9701191 47.52158709624102)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_25_LVCableDist_mvgd_33535_lvgd_1150630000_building_431101,BranchTee_mvgd_33535_lvgd_1150630000_25,BranchTee_mvgd_33535_lvgd_1150630000_building_431101,0.013860217020039846,0.012030668373394586,0.0011800195267143015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969956631145854 47.52164555182831, 9.9701191 47.52158709624102)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_26_LVCableDist_mvgd_33535_lvgd_1150630000_building_430894,BranchTee_mvgd_33535_lvgd_1150630000_26,BranchTee_mvgd_33535_lvgd_1150630000_building_430894,0.017337454299636006,0.015048910332084053,0.0014760616365174703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970502515816394 47.5215001763709, 9.970726900000006 47.52153459624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_26_LVStation_mvgd_33535_lvgd_1150630000,BusBar_mvgd_33535_lvgd_1150630000_LV,BranchTee_mvgd_33535_lvgd_1150630000_26,0.05539755917665626,0.04808508136533763,0.004716390909770726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971241399999998 47.521178496241035, 9.970726900000006 47.52153459624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_27_LVCableDist_mvgd_33535_lvgd_1150630000_31,BranchTee_mvgd_33535_lvgd_1150630000_27,BranchTee_mvgd_33535_lvgd_1150630000_31,0.06470849142014008,0.05616697055268159,0.005509097246427576,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972133999999999 47.522275896241084, 9.972184699999994 47.522384696241154, 9.972644400000007 47.52273409624117)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_27_LVCableDist_mvgd_33535_lvgd_1150630000_32,BranchTee_mvgd_33535_lvgd_1150630000_27,BranchTee_mvgd_33535_lvgd_1150630000_32,0.03288832837990767,0.028547069033759857,0.0028000189054162164,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972644400000007 47.52273409624117, 9.972872400000005 47.52298649624117)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_27_LVCableDist_mvgd_33535_lvgd_1150630000_building_430906,BranchTee_mvgd_33535_lvgd_1150630000_27,BranchTee_mvgd_33535_lvgd_1150630000_building_430906,0.028489386517710203,0.024728787497372458,0.002425505484250531,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972274499928666 47.52278699645225, 9.972644400000007 47.52273409624117)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_28_LVCableDist_mvgd_33535_lvgd_1150630000_30,BranchTee_mvgd_33535_lvgd_1150630000_28,BranchTee_mvgd_33535_lvgd_1150630000_30,0.0985284829965112,0.08552272324097171,0.008388435311317152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9715393 47.521388696240976, 9.9719248 47.52168639624103, 9.9720556 47.521826196241044, 9.972104500000007 47.52197149624108, 9.9721154 47.5221472962411)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_28_LVCableDist_mvgd_33535_lvgd_1150630000_33,BranchTee_mvgd_33535_lvgd_1150630000_28,BranchTee_mvgd_33535_lvgd_1150630000_33,0.034612479975550246,0.030043632618777613,0.0029468082772516084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971881199999995 47.52118069624103, 9.9715393 47.521388696240976)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_28_LVStation_mvgd_33535_lvgd_1150630000,BusBar_mvgd_33535_lvgd_1150630000_LV,BranchTee_mvgd_33535_lvgd_1150630000_28,0.0323954219317345,0.028119226236745547,0.0027580542498233953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971241399999998 47.521178496241035, 9.9715393 47.521388696240976)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_29_LVCableDist_mvgd_33535_lvgd_1150630000_32,BranchTee_mvgd_33535_lvgd_1150630000_29,BranchTee_mvgd_33535_lvgd_1150630000_32,0.10288659446726675,0.08930556399758754,0.008759472548876537,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972703999999997 47.522358096241106, 9.972717800000002 47.52245279624117, 9.9727475 47.52261079624112, 9.972911900000003 47.52278619624114, 9.973076999999996 47.52299169624116, 9.9729595 47.523080096241195, 9.972872400000005 47.52298649624117)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_29_LVCableDist_mvgd_33535_lvgd_1150630000_building_431105,BranchTee_mvgd_33535_lvgd_1150630000_29,BranchTee_mvgd_33535_lvgd_1150630000_building_431105,0.0696703341729548,0.060473850062124766,0.00593153445129541,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973605310739845 47.52221863666422, 9.972703999999997 47.522358096241106)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_29_LVCableDist_mvgd_33535_lvgd_1150630000_building_431106,BranchTee_mvgd_33535_lvgd_1150630000_29,BranchTee_mvgd_33535_lvgd_1150630000_building_431106,0.09873563584145309,0.08570253191038128,0.008406071716410408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973964933813953 47.522116852602394, 9.972703999999997 47.522358096241106)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_2_LVCableDist_mvgd_33535_lvgd_1150630000_building_431085,BranchTee_mvgd_33535_lvgd_1150630000_2,BranchTee_mvgd_33535_lvgd_1150630000_building_431085,0.018970281842959194,0.01646620463968858,0.0016150759378153851,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970436772826124 47.52036736813905, 9.9705766 47.52022539624088)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_30_LVCableDist_mvgd_33535_lvgd_1150630000_31,BranchTee_mvgd_33535_lvgd_1150630000_30,BranchTee_mvgd_33535_lvgd_1150630000_31,0.014356759944412966,0.012461667631750455,0.0012222937815665118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9721154 47.5221472962411, 9.972133999999999 47.522275896241084)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_30_LVCableDist_mvgd_33535_lvgd_1150630000_building_430904,BranchTee_mvgd_33535_lvgd_1150630000_30,BranchTee_mvgd_33535_lvgd_1150630000_building_430904,0.021485777367617236,0.01864965475509176,0.0018292380850723257,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972400366521109 47.522141445189035, 9.9721154 47.5221472962411)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_31_LVCableDist_mvgd_33535_lvgd_1150630000_building_430905,BranchTee_mvgd_33535_lvgd_1150630000_31,BranchTee_mvgd_33535_lvgd_1150630000_building_430905,0.013743799406917579,0.011929617885204458,0.0011701080616528872,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972314170254556 47.522295046094946, 9.972133999999999 47.522275896241084)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_32_LVCableDist_mvgd_33535_lvgd_1150630000_building_430907,BranchTee_mvgd_33535_lvgd_1150630000_32,BranchTee_mvgd_33535_lvgd_1150630000_building_430907,0.019049223026614864,0.0165347255871017,0.001621796766070884,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972622950001384 47.52295879631017, 9.972872400000005 47.52298649624117)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_33_LVCableDist_mvgd_33535_lvgd_1150630000_34,BranchTee_mvgd_33535_lvgd_1150630000_33,BranchTee_mvgd_33535_lvgd_1150630000_34,0.019779453878582254,0.017168565966609397,0.0016839665476179454,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972123100000001 47.52115509624101, 9.9720377 47.52113459624099, 9.971966599999993 47.521147996240984, 9.971881199999995 47.52118069624103)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_33_LVCableDist_mvgd_33535_lvgd_1150630000_building_430885,BranchTee_mvgd_33535_lvgd_1150630000_33,BranchTee_mvgd_33535_lvgd_1150630000_building_430885,0.02454381278859518,0.021304029500500615,0.0020895905387835873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971577986938435 47.52110008679293, 9.971881199999995 47.52118069624103)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_34_LVCableDist_mvgd_33535_lvgd_1150630000_35,BranchTee_mvgd_33535_lvgd_1150630000_34,BranchTee_mvgd_33535_lvgd_1150630000_35,0.0665071733091425,0.057728226432335696,0.005662231915841586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972769799999993 47.52156239624104, 9.972123100000001 47.52115509624101)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_34_LVCableDist_mvgd_33535_lvgd_1150630000_building_430890,BranchTee_mvgd_33535_lvgd_1150630000_34,BranchTee_mvgd_33535_lvgd_1150630000_building_430890,0.01907513423046099,0.01655721651204014,0.0016240027724021627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972375965610754 47.521162567064174, 9.972123100000001 47.52115509624101)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_34_LVCableDist_mvgd_33535_lvgd_1150630000_building_430900,BranchTee_mvgd_33535_lvgd_1150630000_34,BranchTee_mvgd_33535_lvgd_1150630000_building_430900,0.025118593234169692,0.02180293892725929,0.0021385257140676983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972199907476433 47.52137509046418, 9.972123100000001 47.52115509624101)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_35_LVCableDist_mvgd_33535_lvgd_1150630000_building_430891,BranchTee_mvgd_33535_lvgd_1150630000_35,BranchTee_mvgd_33535_lvgd_1150630000_building_430891,0.028383764303890013,0.02463710741577653,0.0024165131088366098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972663589805935 47.521317297625025, 9.972769799999993 47.52156239624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_35_LVCableDist_mvgd_33535_lvgd_1150630000_building_430901,BranchTee_mvgd_33535_lvgd_1150630000_35,BranchTee_mvgd_33535_lvgd_1150630000_building_430901,0.021575622748978618,0.01872764054611344,0.001836887265762515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972733995263516 47.521369730383626, 9.972769799999993 47.52156239624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_35_LVCableDist_mvgd_33535_lvgd_1150630000_building_430903,BranchTee_mvgd_33535_lvgd_1150630000_35,BranchTee_mvgd_33535_lvgd_1150630000_building_430903,0.037832896948734374,0.03283895455150144,0.0032209854353022344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972677050000714 47.52189704626252, 9.972769799999993 47.52156239624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_35_LVCableDist_mvgd_33535_lvgd_1150630000_building_430908,BranchTee_mvgd_33535_lvgd_1150630000_35,BranchTee_mvgd_33535_lvgd_1150630000_building_430908,0.018417804118345867,0.01598665397472421,0.001568039552874528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973001308378954 47.521509299325004, 9.972769799999993 47.52156239624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_35_LVCableDist_mvgd_33535_lvgd_1150630000_building_430909,BranchTee_mvgd_33535_lvgd_1150630000_35,BranchTee_mvgd_33535_lvgd_1150630000_building_430909,0.08335712346167728,0.07235398316473589,0.0070967888333418935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973674750650392 47.52199377987923, 9.972769799999993 47.52156239624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_3_LVCableDist_mvgd_33535_lvgd_1150630000_4,BranchTee_mvgd_33535_lvgd_1150630000_3,BranchTee_mvgd_33535_lvgd_1150630000_4,0.025280790374832926,0.02194372604535498,0.002152334718131856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970330900000002 47.520641096240986, 9.970268900000006 47.52070799624091, 9.970167699999996 47.52083969624097)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_4_LVCableDist_mvgd_33535_lvgd_1150630000_5,BranchTee_mvgd_33535_lvgd_1150630000_4,BranchTee_mvgd_33535_lvgd_1150630000_5,0.012175171670520932,0.01056804901001217,0.001036559549647815,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970167699999996 47.52083969624097, 9.970043899999999 47.520910096240975)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_4_LVCableDist_mvgd_33535_lvgd_1150630000_building_431091,BranchTee_mvgd_33535_lvgd_1150630000_4,BranchTee_mvgd_33535_lvgd_1150630000_building_431091,0.013008560681936227,0.011291430671920644,0.0011075119240152077,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970321960479978 47.5208922272495, 9.970167699999996 47.52083969624097)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_5_LVCableDist_mvgd_33535_lvgd_1150630000_6,BranchTee_mvgd_33535_lvgd_1150630000_5,BranchTee_mvgd_33535_lvgd_1150630000_6,0.039168700383618846,0.03399843193298116,0.0033347119472851745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970043899999999 47.520910096240975, 9.969905899999995 47.52084099624095, 9.9697019 47.52076539624097, 9.969638099999996 47.52083089624099)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_5_LVCableDist_mvgd_33535_lvgd_1150630000_building_431077,BranchTee_mvgd_33535_lvgd_1150630000_5,BranchTee_mvgd_33535_lvgd_1150630000_building_431077,0.013534754457389888,0.011748166869014422,0.001152310568147048,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970000750000093 47.521028346262604, 9.970043899999999 47.520910096240975)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_6_LVCableDist_mvgd_33535_lvgd_1150630000_7,BranchTee_mvgd_33535_lvgd_1150630000_6,BranchTee_mvgd_33535_lvgd_1150630000_7,0.014412995610654764,0.012510480190048336,0.001227081526532349,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969638099999996 47.52083089624099, 9.969476899999997 47.52076109624099)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_6_LVCableDist_mvgd_33535_lvgd_1150630000_building_431076,BranchTee_mvgd_33535_lvgd_1150630000_6,BranchTee_mvgd_33535_lvgd_1150630000_building_431076,0.016293860244352514,0.014143070692097982,0.0013872130015056975,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969602932787037 47.5209755949577, 9.969638099999996 47.52083089624099)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_7_LVCableDist_mvgd_33535_lvgd_1150630000_building_431075,BranchTee_mvgd_33535_lvgd_1150630000_7,BranchTee_mvgd_33535_lvgd_1150630000_building_431075,0.019779500758630452,0.017168606658491233,0.0016839705388521525,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969402204927395 47.52093175774248, 9.969476899999997 47.52076109624099)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_8_LVCableDist_mvgd_33535_lvgd_1150630000_9,BranchTee_mvgd_33535_lvgd_1150630000_8,BranchTee_mvgd_33535_lvgd_1150630000_9,0.09836251763112842,0.08537866530381948,0.008374305491298695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969169400000004 47.519869096240896, 9.969119099999995 47.51988159624089, 9.9690601 47.51986709624087, 9.968850800000002 47.51979289624089, 9.9685518 47.51960159624084, 9.968476199999994 47.51949629624086, 9.968432599999996 47.51941609624087, 9.968370899999993 47.51925669624083)" +Branch_LVCableDist_mvgd_33535_lvgd_1150630000_9_LVCableDist_mvgd_33535_lvgd_1150630000_building_430853,BranchTee_mvgd_33535_lvgd_1150630000_9,BranchTee_mvgd_33535_lvgd_1150630000_building_430853,0.012351435935291116,0.01072104639183269,0.0010515661887206395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968446691386937 47.51915813102904, 9.968370899999993 47.51925669624083)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_1_LVCableDist_mvgd_33535_lvgd_1150640000_3,BranchTee_mvgd_33535_lvgd_1150640000_1,BranchTee_mvgd_33535_lvgd_1150640000_3,0.02304415788312054,0.02000232904254863,0.0019619141777832976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975343899999995 47.516390496240604, 9.975403400000001 47.51646459624057, 9.975431899999998 47.51658609624061)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_1_LVCableDist_mvgd_33535_lvgd_1150640000_building_430865,BranchTee_mvgd_33535_lvgd_1150640000_1,BranchTee_mvgd_33535_lvgd_1150640000_building_430865,0.006646435495504264,0.005769106010097702,0.0005658586482738587,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975261255558733 47.516411361173326, 9.975343899999995 47.516390496240604)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_2_LVCableDist_mvgd_33535_lvgd_1150640000_3,BranchTee_mvgd_33535_lvgd_1150640000_2,BranchTee_mvgd_33535_lvgd_1150640000_3,0.034791873928578125,0.030199346570005812,0.0029620813690972338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975092200000002 47.516374196240555, 9.975285700000002 47.51649979624055, 9.975431899999998 47.51658609624061)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_2_LVCableDist_mvgd_33535_lvgd_1150640000_building_430863,BranchTee_mvgd_33535_lvgd_1150640000_2,BranchTee_mvgd_33535_lvgd_1150640000_building_430863,0.011341362534831955,0.009844302680234137,0.0009655714070925306,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974959055605071 47.51642175305497, 9.975092200000002 47.516374196240555)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_2_LVCableDist_mvgd_33535_lvgd_1150640000_building_430864,BranchTee_mvgd_33535_lvgd_1150640000_2,BranchTee_mvgd_33535_lvgd_1150640000_building_430864,0.015618502165780727,0.013556859879897671,0.0013297149320969206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97506979999651 47.51651394626477, 9.975092200000002 47.516374196240555)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_3_LVStation_mvgd_33535_lvgd_1150640000,BusBar_mvgd_33535_lvgd_1150640000_LV,BranchTee_mvgd_33535_lvgd_1150640000_3,0.2611000490257909,0.2266348425543865,0.02222931688811385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9747575 47.51817289624075, 9.974806400000006 47.51819349624075, 9.974878200000004 47.51820139624076, 9.975239200000004 47.518208096240734, 9.9754535 47.51823819624073, 9.975634100000002 47.5182301962407, 9.975745300000002 47.51820559624075, 9.975813199999997 47.51816329624072, 9.9758253 47.5181302962407, 9.975797400000005 47.51806369624073, 9.97575119999999 47.51794159624074, 9.9757275 47.5177931962407, 9.975678399999998 47.51752899624073, 9.975576199999997 47.517256596240685, 9.975464400000007 47.51673679624058, 9.975431899999998 47.51658609624061)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_4_LVCableDist_mvgd_33535_lvgd_1150640000_5,BranchTee_mvgd_33535_lvgd_1150640000_4,BranchTee_mvgd_33535_lvgd_1150640000_5,0.0266103294967007,0.02309776600313621,0.002265527904289489,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974190100000001 47.517856196240714, 9.974468499999997 47.518003496240745)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_4_LVCableDist_mvgd_33535_lvgd_1150640000_6,BranchTee_mvgd_33535_lvgd_1150640000_4,BranchTee_mvgd_33535_lvgd_1150640000_6,0.034635523370864514,0.0300636342859104,0.0029487701265064445,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974190100000001 47.517856196240714, 9.973848599999997 47.517647596240664)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_4_LVCableDist_mvgd_33535_lvgd_1150640000_building_430873,BranchTee_mvgd_33535_lvgd_1150640000_4,BranchTee_mvgd_33535_lvgd_1150640000_building_430873,0.012478152380106737,0.010831036265932648,0.0010623544670731394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974037316412971 47.51789945823277, 9.974190100000001 47.517856196240714)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_5_LVCableDist_mvgd_33535_lvgd_1150640000_building_430874,BranchTee_mvgd_33535_lvgd_1150640000_5,BranchTee_mvgd_33535_lvgd_1150640000_building_430874,0.029051141787123494,0.02521639107122319,0.0024733317330158933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974172519941026 47.518170993666466, 9.974468499999997 47.518003496240745)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_5_LVCableDist_mvgd_33535_lvgd_1150640000_building_430876,BranchTee_mvgd_33535_lvgd_1150640000_5,BranchTee_mvgd_33535_lvgd_1150640000_building_430876,0.02960573642518595,0.025697779217061404,0.002520548345957706,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974552849999489 47.51826374624467, 9.974468499999997 47.518003496240745)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_5_LVCableDist_mvgd_33535_lvgd_1150640000_building_430877,BranchTee_mvgd_33535_lvgd_1150640000_5,BranchTee_mvgd_33535_lvgd_1150640000_building_430877,0.031030205996343548,0.026934218804826198,0.002641823641052002,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974711564858971 47.5182289175519, 9.974468499999997 47.518003496240745)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_5_LVStation_mvgd_33535_lvgd_1150640000,BusBar_mvgd_33535_lvgd_1150640000_LV,BranchTee_mvgd_33535_lvgd_1150640000_5,0.028786627505476465,0.02498679267475357,0.002450811738055713,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974468499999997 47.518003496240745, 9.9747575 47.51817289624075)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_6_LVCableDist_mvgd_33535_lvgd_1150640000_building_430870,BranchTee_mvgd_33535_lvgd_1150640000_6,BranchTee_mvgd_33535_lvgd_1150640000_building_430870,0.015437571495194556,0.013399812057828874,0.0013143110084812585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974018753791352 47.517570249576, 9.973848599999997 47.517647596240664)" +Branch_LVCableDist_mvgd_33535_lvgd_1150640000_6_LVCableDist_mvgd_33535_lvgd_1150640000_building_430871,BranchTee_mvgd_33535_lvgd_1150640000_6,BranchTee_mvgd_33535_lvgd_1150640000_building_430871,0.00830637151873723,0.007209930478263916,0.0007071808885879394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973821383636556 47.51772004172094, 9.973848599999997 47.517647596240664)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_10_LVCableDist_mvgd_33535_lvgd_1151050000_12,BranchTee_mvgd_33535_lvgd_1151050000_10,BranchTee_mvgd_33535_lvgd_1151050000_12,0.02297561231946909,0.01994283149329917,0.001956078403100881,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968186500000003 47.53167819624195, 9.968471900000004 47.53160539624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_10_LVCableDist_mvgd_33535_lvgd_1151050000_4,BranchTee_mvgd_33535_lvgd_1151050000_4,BranchTee_mvgd_33535_lvgd_1151050000_10,0.028109566332682998,0.024399103576768843,0.0023931686720401364,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968471900000004 47.53160539624194, 9.968800400000001 47.53148549624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_10_LVCableDist_mvgd_33535_lvgd_1151050000_building_431170,BranchTee_mvgd_33535_lvgd_1151050000_10,BranchTee_mvgd_33535_lvgd_1151050000_building_431170,0.01014233721378531,0.008803548701565649,0.0008634897953966801,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96837026859676 47.5315455414615, 9.968471900000004 47.53160539624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_11_LVCableDist_mvgd_33535_lvgd_1151050000_2,BranchTee_mvgd_33535_lvgd_1151050000_2,BranchTee_mvgd_33535_lvgd_1151050000_11,0.02432016037286295,0.02110989920364504,0.002070549407076971,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967935300000006 47.53146399624196, 9.968234499999998 47.531381896241946)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_11_LVCableDist_mvgd_33535_lvgd_1151050000_6,BranchTee_mvgd_33535_lvgd_1151050000_6,BranchTee_mvgd_33535_lvgd_1151050000_11,0.03448231051739954,0.029930645529102802,0.0029357260191471674,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968234499999998 47.531381896241946, 9.968637300000005 47.53123459624188)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_11_LVCableDist_mvgd_33535_lvgd_1151050000_building_431166,BranchTee_mvgd_33535_lvgd_1151050000_11,BranchTee_mvgd_33535_lvgd_1151050000_building_431166,0.013655709701053627,0.011853156020514549,0.0011626083541900322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968158945982315 47.531270178649336, 9.968234499999998 47.531381896241946)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_12_LVCableDist_mvgd_33535_lvgd_1151050000_3,BranchTee_mvgd_33535_lvgd_1151050000_3,BranchTee_mvgd_33535_lvgd_1151050000_12,0.02342770210338556,0.020335245425738665,0.0019945680437809766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967883199999996 47.53172459624193, 9.968186500000003 47.53167819624195)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_12_LVCableDist_mvgd_33535_lvgd_1151050000_building_431169,BranchTee_mvgd_33535_lvgd_1151050000_12,BranchTee_mvgd_33535_lvgd_1151050000_building_431169,0.009625254033102226,0.008354720500732733,0.000819466801437829,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96809292867123 47.5316192200072, 9.968186500000003 47.53167819624195)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_13_LVCableDist_mvgd_33535_lvgd_1151050000_22,BranchTee_mvgd_33535_lvgd_1151050000_13,BranchTee_mvgd_33535_lvgd_1151050000_22,0.02751076194588689,0.012352332113703214,0.0023335454058441094,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.969635099999998 47.531834396242, 9.969434299999996 47.53162759624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_13_LVCableDist_mvgd_33535_lvgd_1151050000_building_431185,BranchTee_mvgd_33535_lvgd_1151050000_13,BranchTee_mvgd_33535_lvgd_1151050000_building_431185,0.026160676923732133,0.02270746756979949,0.002227245760830042,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969350849997085 47.53196959625299, 9.969635099999998 47.531834396242)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_13_LVCableDist_mvgd_33535_lvgd_1151050000_building_431203,BranchTee_mvgd_33535_lvgd_1151050000_13,BranchTee_mvgd_33535_lvgd_1151050000_building_431203,0.018981748165650292,0.016476157407784454,0.0016160521479754093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969453705911235 47.53195294657583, 9.969635099999998 47.531834396242)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_14_LVCableDist_mvgd_33535_lvgd_1151050000_15,BranchTee_mvgd_33535_lvgd_1151050000_14,BranchTee_mvgd_33535_lvgd_1151050000_15,0.09877917675741031,0.04435185036407723,0.008378746272775654,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968238899999998 47.53308599624204, 9.968298499999996 47.53307959624209, 9.968337800000004 47.533068996242065, 9.968424100000002 47.53297959624204, 9.968496900000007 47.532846596242095, 9.968643499999999 47.532634696242035, 9.9688682 47.532334496242015)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_14_LVCableDist_mvgd_33535_lvgd_1151050000_17,BranchTee_mvgd_33535_lvgd_1151050000_14,BranchTee_mvgd_33535_lvgd_1151050000_17,0.16244201178425208,0.07293646329112918,0.01377881903310533,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.970588499999996 47.53310669624204, 9.970378999999998 47.53298729624212, 9.9702916 47.53288609624206, 9.970251300000005 47.532760596242085, 9.969511300000004 47.532550796242006, 9.9688682 47.532334496242015)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_14_LVCableDist_mvgd_33535_lvgd_1151050000_18,BranchTee_mvgd_33535_lvgd_1151050000_14,BranchTee_mvgd_33535_lvgd_1151050000_18,0.041889697146871824,0.018808474018945448,0.003553209850078274,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.9688682 47.532334496242015, 9.968724099999996 47.53228599624201, 9.968393600000004 47.53213919624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_14_LVCableDist_mvgd_33535_lvgd_1151050000_building_431228,BranchTee_mvgd_33535_lvgd_1151050000_14,BranchTee_mvgd_33535_lvgd_1151050000_building_431228,0.01293928344681025,0.011231298031831297,0.0011016138569007292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968866100002545 47.5324509462524, 9.9688682 47.532334496242015)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_14_LVCableDist_mvgd_33535_lvgd_1151050000_building_431258,BranchTee_mvgd_33535_lvgd_1151050000_14,BranchTee_mvgd_33535_lvgd_1151050000_building_431258,0.01076012430090945,0.009339787893189401,0.0009160864340426988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968755582010095 47.53239404480004, 9.9688682 47.532334496242015)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_15_LVCableDist_mvgd_33535_lvgd_1151050000_building_431253,BranchTee_mvgd_33535_lvgd_1151050000_15,BranchTee_mvgd_33535_lvgd_1151050000_building_431253,0.006482522883631087,0.005626829862991783,0.0005519035938612593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968213396942975 47.53314171904983, 9.968238899999998 47.53308599624204)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_16_LVCableDist_mvgd_33535_lvgd_1151050000_18,BranchTee_mvgd_33535_lvgd_1151050000_16,BranchTee_mvgd_33535_lvgd_1151050000_18,0.04420458475914859,0.019847858556857716,0.0037495655658268713,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968393600000004 47.53213919624199, 9.968977599999995 47.53210129624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_16_LVCableDist_mvgd_33535_lvgd_1151050000_building_431184,BranchTee_mvgd_33535_lvgd_1151050000_16,BranchTee_mvgd_33535_lvgd_1151050000_building_431184,0.016460235135586164,0.01428748409768879,0.0014013776873924202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969139649997787 47.53200194625391, 9.968977599999995 47.53210129624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_16_LVCableDist_mvgd_33535_lvgd_1151050000_building_431186,BranchTee_mvgd_33535_lvgd_1151050000_16,BranchTee_mvgd_33535_lvgd_1151050000_building_431186,0.010666980206876016,0.009258938819568381,0.0009081564103209454,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968900322889276 47.5320208537421, 9.968977599999995 47.53210129624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_16_LVCableDist_mvgd_33535_lvgd_1151050000_building_431190,BranchTee_mvgd_33535_lvgd_1151050000_16,BranchTee_mvgd_33535_lvgd_1151050000_building_431190,0.010415829221328339,0.009040939764112998,0.0008867741284510944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969029072314262 47.5320142912307, 9.968977599999995 47.53210129624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_16_LVCableDist_mvgd_33535_lvgd_1151050000_building_431194,BranchTee_mvgd_33535_lvgd_1151050000_16,BranchTee_mvgd_33535_lvgd_1151050000_building_431194,0.02928653821745895,0.02542071517275437,0.0024933727167835403,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969322949977327 47.532222246254, 9.968977599999995 47.53210129624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_17_LVCableDist_mvgd_33535_lvgd_1151050000_building_431239,BranchTee_mvgd_33535_lvgd_1151050000_17,BranchTee_mvgd_33535_lvgd_1151050000_building_431239,0.012890964082022248,0.011189356823195312,0.001097500083365594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97043146509101 47.53315274513487, 9.970588499999996 47.53310669624204)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_18_LVCableDist_mvgd_33535_lvgd_1151050000_25,BranchTee_mvgd_33535_lvgd_1151050000_18,BranchTee_mvgd_33535_lvgd_1151050000_25,0.017378615853155737,0.007802998518066926,0.001474106361133496,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968197099999998 47.53205729624198, 9.968393600000004 47.53213919624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_18_LVCableDist_mvgd_33535_lvgd_1151050000_building_430961,BranchTee_mvgd_33535_lvgd_1151050000_18,BranchTee_mvgd_33535_lvgd_1151050000_building_430961,0.021118169965951023,0.018330571530445487,0.0017979410345641228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968215378913023 47.532285889695416, 9.968393600000004 47.53213919624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_18_LVCableDist_mvgd_33535_lvgd_1151050000_building_430962,BranchTee_mvgd_33535_lvgd_1151050000_18,BranchTee_mvgd_33535_lvgd_1151050000_building_430962,0.011238142878642351,0.009754708018661561,0.0009567835786142057,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96849184999855 47.532063096250354, 9.968393600000004 47.53213919624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_18_LVCableDist_mvgd_33535_lvgd_1151050000_building_430963,BranchTee_mvgd_33535_lvgd_1151050000_18,BranchTee_mvgd_33535_lvgd_1151050000_building_430963,0.018206678386134486,0.015803396839164735,0.0015500649074385241,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968600449998549 47.53205449625037, 9.968393600000004 47.53213919624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_19_LVCableDist_mvgd_33535_lvgd_1151050000_22,BranchTee_mvgd_33535_lvgd_1151050000_19,BranchTee_mvgd_33535_lvgd_1151050000_22,0.013955323768271624,0.006265940371953959,0.0011837324509794676,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.969434299999996 47.53162759624197, 9.969276 47.53169279624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_19_LVCableDist_mvgd_33535_lvgd_1151050000_24,BranchTee_mvgd_33535_lvgd_1151050000_19,BranchTee_mvgd_33535_lvgd_1151050000_24,0.019355269652191424,0.00869051607383395,0.0016417720695844995,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.969276 47.53169279624196, 9.969042699999994 47.53176569624193)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_19_LVCableDist_mvgd_33535_lvgd_1151050000_building_430970,BranchTee_mvgd_33535_lvgd_1151050000_19,BranchTee_mvgd_33535_lvgd_1151050000_building_430970,0.012514441729765055,0.010862535421436068,0.0010654440392744017,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969121452014623 47.53165154606759, 9.969276 47.53169279624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_1_LVCableDist_mvgd_33535_lvgd_1151050000_5,BranchTee_mvgd_33535_lvgd_1151050000_1,BranchTee_mvgd_33535_lvgd_1151050000_5,0.029551945541516664,0.025651088730036464,0.0025159687428391404,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967819599999995 47.531228096241946, 9.968172099999999 47.53111149624189)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_1_LVCableDist_mvgd_33535_lvgd_1151050000_building_430957,BranchTee_mvgd_33535_lvgd_1151050000_1,BranchTee_mvgd_33535_lvgd_1151050000_building_430957,0.014719728183595614,0.012776724063360993,0.0012531958669518529,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967981216800093 47.53108332103482, 9.968172099999999 47.53111149624189)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_1_LVCableDist_mvgd_33535_lvgd_1151050000_building_431165,BranchTee_mvgd_33535_lvgd_1151050000_1,BranchTee_mvgd_33535_lvgd_1151050000_building_431165,0.015868287112656986,0.013773673213786263,0.0013509809133125908,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968256281474845 47.53098058268284, 9.968172099999999 47.53111149624189)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_20_LVCableDist_mvgd_33535_lvgd_1151050000_21,BranchTee_mvgd_33535_lvgd_1151050000_20,BranchTee_mvgd_33535_lvgd_1151050000_21,0.029022176395134353,0.013030957201415325,0.0024617481161618125,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968700699999996 47.53185809624194, 9.968332600000002 47.53193499624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_20_LVCableDist_mvgd_33535_lvgd_1151050000_24,BranchTee_mvgd_33535_lvgd_1151050000_20,BranchTee_mvgd_33535_lvgd_1151050000_24,0.027739142497659755,0.01245487498144923,0.002352917329763265,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.969042699999994 47.53176569624193, 9.968700699999996 47.53185809624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_20_LVCableDist_mvgd_33535_lvgd_1151050000_building_430964,BranchTee_mvgd_33535_lvgd_1151050000_20,BranchTee_mvgd_33535_lvgd_1151050000_building_430964,0.0208752095220121,0.018119681865106502,0.0017772560721531748,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968709049998553 47.53204589625037, 9.968700699999996 47.53185809624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_20_LVCableDist_mvgd_33535_lvgd_1151050000_building_431183,BranchTee_mvgd_33535_lvgd_1151050000_20,BranchTee_mvgd_33535_lvgd_1151050000_building_431183,0.01535155059178384,0.013325145913668372,0.0013069874329857602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968901899999356 47.53187984624432, 9.968700699999996 47.53185809624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_20_LVCableDist_mvgd_33535_lvgd_1151050000_building_431219,BranchTee_mvgd_33535_lvgd_1151050000_20,BranchTee_mvgd_33535_lvgd_1151050000_building_431219,0.013599761129177735,0.011804592660126274,0.001157845051623422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968566099997688 47.5317765462501, 9.968700699999996 47.53185809624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_20_LVCableDist_mvgd_33535_lvgd_1151050000_building_431221,BranchTee_mvgd_33535_lvgd_1151050000_20,BranchTee_mvgd_33535_lvgd_1151050000_building_431221,0.010893543693618467,0.00945559592606083,0.0009274453823485856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968672397998054 47.53176194674095, 9.968700699999996 47.53185809624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_21_LVCableDist_mvgd_33535_lvgd_1151050000_23,BranchTee_mvgd_33535_lvgd_1151050000_21,BranchTee_mvgd_33535_lvgd_1151050000_23,0.01631004763161939,0.007323211386597106,0.0013834671971182674,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968120000000003 47.53196259624197, 9.968332600000002 47.53193499624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_21_LVCableDist_mvgd_33535_lvgd_1151050000_building_431210,BranchTee_mvgd_33535_lvgd_1151050000_21,BranchTee_mvgd_33535_lvgd_1151050000_building_431210,0.012558567933820016,0.010900836966555773,0.0010692008190094772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96824667435089 47.531838141874175, 9.968332600000002 47.53193499624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_21_LVCableDist_mvgd_33535_lvgd_1151050000_building_431215,BranchTee_mvgd_33535_lvgd_1151050000_21,BranchTee_mvgd_33535_lvgd_1151050000_building_431215,0.01863279612633484,0.016173267037658638,0.00158634336205354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96845976519999 47.53179116786465, 9.968332600000002 47.53193499624201)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_22_LVCableDist_mvgd_33535_lvgd_1151050000_building_430972,BranchTee_mvgd_33535_lvgd_1151050000_22,BranchTee_mvgd_33535_lvgd_1151050000_building_430972,0.012325028994929033,0.010698125167598401,0.0010493179767898317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969309799998548 47.531555646262355, 9.969434299999996 47.53162759624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_23_LVCableDist_mvgd_33535_lvgd_1151050000_25,BranchTee_mvgd_33535_lvgd_1151050000_23,BranchTee_mvgd_33535_lvgd_1151050000_25,0.012516639486240592,0.005619971129322026,0.001061698931755345,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.968197099999998 47.53205729624198, 9.968137399999993 47.532016496242, 9.968120000000003 47.53196259624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_23_LVCableDist_mvgd_33535_lvgd_1151050000_building_431187,BranchTee_mvgd_33535_lvgd_1151050000_23,BranchTee_mvgd_33535_lvgd_1151050000_building_431187,0.014950345067418281,0.012976899518519068,0.0012728299336989526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968026974350897 47.53184374187415, 9.968120000000003 47.53196259624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_23_LVCableDist_mvgd_33535_lvgd_1151050000_building_431201,BranchTee_mvgd_33535_lvgd_1151050000_23,BranchTee_mvgd_33535_lvgd_1151050000_building_431201,0.027230534588265527,0.023636104022614478,0.002318330404968661,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967873424415645 47.53214177183548, 9.968120000000003 47.53196259624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_23_LVCableDist_mvgd_33535_lvgd_1151050000_building_431208,BranchTee_mvgd_33535_lvgd_1151050000_23,BranchTee_mvgd_33535_lvgd_1151050000_building_431208,0.013574921242590753,0.011783031638568774,0.0011557302542020231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968136825648129 47.53184095062582, 9.968120000000003 47.53196259624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_23_LVStation_mvgd_33535_lvgd_1151050000,BusBar_mvgd_33535_lvgd_1151050000_LV,BranchTee_mvgd_33535_lvgd_1151050000_23,0.017526797099479886,0.00786953189766647,0.0014866755392344926,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.967887399999995 47.531961196242015, 9.968120000000003 47.53196259624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_24_LVCableDist_mvgd_33535_lvgd_1151050000_building_431181,BranchTee_mvgd_33535_lvgd_1151050000_24,BranchTee_mvgd_33535_lvgd_1151050000_building_431181,0.011780820807990354,0.010225752461335627,0.0010029856368086515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968917047895763 47.53170259654079, 9.969042699999994 47.53176569624193)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_24_LVCableDist_mvgd_33535_lvgd_1151050000_building_431182,BranchTee_mvgd_33535_lvgd_1151050000_24,BranchTee_mvgd_33535_lvgd_1151050000_building_431182,0.01000130007809259,0.008681128467784368,0.0008514822940806015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96901924999665 47.531677096251705, 9.969042699999994 47.53176569624193)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_25_LVCableDist_mvgd_33535_lvgd_1151050000_building_430960,BranchTee_mvgd_33535_lvgd_1151050000_25,BranchTee_mvgd_33535_lvgd_1151050000_building_430960,0.016179818656910133,0.014044082594197996,0.0013775038245249231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968147924885812 47.532199050723705, 9.968197099999998 47.53205729624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_26_LVCableDist_mvgd_33535_lvgd_1151050000_27,BranchTee_mvgd_33535_lvgd_1151050000_26,BranchTee_mvgd_33535_lvgd_1151050000_27,0.012420621387788851,0.010781099364600723,0.0010574564417227283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967681199999998 47.53192879624198, 9.967525700000003 47.53189169624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_26_LVCableDist_mvgd_33535_lvgd_1151050000_building_431173,BranchTee_mvgd_33535_lvgd_1151050000_26,BranchTee_mvgd_33535_lvgd_1151050000_building_431173,0.008382719280565025,0.007276200335530441,0.000713680920271965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967770693323272 47.53188397622914, 9.967681199999998 47.53192879624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_26_LVCableDist_mvgd_33535_lvgd_1151050000_building_431195,BranchTee_mvgd_33535_lvgd_1151050000_26,BranchTee_mvgd_33535_lvgd_1151050000_building_431195,0.018877708282887203,0.016385850789546092,0.001607194487735313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967536637354085 47.53206756446651, 9.967681199999998 47.53192879624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_26_LVCableDist_mvgd_33535_lvgd_1151050000_building_431199,BranchTee_mvgd_33535_lvgd_1151050000_26,BranchTee_mvgd_33535_lvgd_1151050000_building_431199,0.021111688850217337,0.018324945921988647,0.0017973892507710128,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967673950001748 47.53211874625073, 9.967681199999998 47.53192879624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_26_LVStation_mvgd_33535_lvgd_1151050000,BusBar_mvgd_33535_lvgd_1151050000_LV,BranchTee_mvgd_33535_lvgd_1151050000_26,0.015948445617667607,0.013843250796135482,0.001357805380852168,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967887399999995 47.531961196242015, 9.967681199999998 47.53192879624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_27_LVCableDist_mvgd_33535_lvgd_1151050000_31,BranchTee_mvgd_33535_lvgd_1151050000_27,BranchTee_mvgd_33535_lvgd_1151050000_31,0.01421904146547663,0.012342127992033713,0.0012105688212647138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967525700000003 47.53189169624198, 9.967353999999993 47.53183859624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_27_LVCableDist_mvgd_33535_lvgd_1151050000_building_431189,BranchTee_mvgd_33535_lvgd_1151050000_27,BranchTee_mvgd_33535_lvgd_1151050000_building_431189,0.03069793465036281,0.02664580727651492,0.002613535002002699,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967415937475932 47.532157772926034, 9.967525700000003 47.53189169624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_28_LVCableDist_mvgd_33535_lvgd_1151050000_29,BranchTee_mvgd_33535_lvgd_1151050000_28,BranchTee_mvgd_33535_lvgd_1151050000_29,0.04276076624038053,0.037116345096650294,0.003640530236139813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967177699999999 47.531757196242, 9.966754999999997 47.531500396241945)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_28_LVCableDist_mvgd_33535_lvgd_1151050000_30,BranchTee_mvgd_33535_lvgd_1151050000_28,BranchTee_mvgd_33535_lvgd_1151050000_30,0.05129023195093531,0.04451992133341185,0.004366704730835119,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.966637100000003 47.5311734962419, 9.966457400000003 47.531323396241916, 9.966754999999997 47.531500396241945)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_28_LVCableDist_mvgd_33535_lvgd_1151050000_building_431160,BranchTee_mvgd_33535_lvgd_1151050000_28,BranchTee_mvgd_33535_lvgd_1151050000_building_431160,0.015440128891632333,0.013402031877936866,0.001314528737953298,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96691045485106 47.53140985830986, 9.966754999999997 47.531500396241945)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_29_LVCableDist_mvgd_33535_lvgd_1151050000_31,BranchTee_mvgd_33535_lvgd_1151050000_29,BranchTee_mvgd_33535_lvgd_1151050000_31,0.016070366091317043,0.013949077767263193,0.001368185343835762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967353999999993 47.53183859624194, 9.967177699999999 47.531757196242)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_29_LVCableDist_mvgd_33535_lvgd_1151050000_building_431162,BranchTee_mvgd_33535_lvgd_1151050000_29,BranchTee_mvgd_33535_lvgd_1151050000_building_431162,0.011713359698696366,0.010167196218468446,0.0009972421894913679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967077739269005 47.531837934913355, 9.967177699999999 47.531757196242)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_2_LVCableDist_mvgd_33535_lvgd_1151050000_5,BranchTee_mvgd_33535_lvgd_1151050000_2,BranchTee_mvgd_33535_lvgd_1151050000_5,0.027621680691729343,0.02397561884042107,0.002351631473719473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967819599999995 47.531228096241946, 9.967935300000006 47.53146399624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_2_LVCableDist_mvgd_33535_lvgd_1151050000_7,BranchTee_mvgd_33535_lvgd_1151050000_2,BranchTee_mvgd_33535_lvgd_1151050000_7,0.008679621351809578,0.007533911333370714,0.0007389583196867028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967868000000005 47.53152739624198, 9.967935300000006 47.53146399624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_2_LVCableDist_mvgd_33535_lvgd_1151050000_building_431163,BranchTee_mvgd_33535_lvgd_1151050000_2,BranchTee_mvgd_33535_lvgd_1151050000_building_431163,0.013709789599607418,0.011900097372459239,0.001167212563215326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96803422088661 47.53136043313832, 9.967935300000006 47.53146399624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_30_LVCableDist_mvgd_33535_lvgd_1151050000_building_431158,BranchTee_mvgd_33535_lvgd_1151050000_30,BranchTee_mvgd_33535_lvgd_1151050000_building_431158,0.02394117767916575,0.02078094222551587,0.0020382838965007023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.966952625727654 47.53114814128196, 9.966637100000003 47.5311734962419)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_31_LVCableDist_mvgd_33535_lvgd_1151050000_building_430941,BranchTee_mvgd_33535_lvgd_1151050000_31,BranchTee_mvgd_33535_lvgd_1151050000_building_430941,0.025417751316603072,0.02206260814281147,0.002163995183870039,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967097966867874 47.5319875470213, 9.967353999999993 47.53183859624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_31_LVCableDist_mvgd_33535_lvgd_1151050000_building_431172,BranchTee_mvgd_33535_lvgd_1151050000_31,BranchTee_mvgd_33535_lvgd_1151050000_building_431172,0.01711132208298485,0.01485262756803085,0.0014568093816009896,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967473395001045 47.53170759145601, 9.967353999999993 47.53183859624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_3_LVCableDist_mvgd_33535_lvgd_1151050000_7,BranchTee_mvgd_33535_lvgd_1151050000_3,BranchTee_mvgd_33535_lvgd_1151050000_7,0.021940026514003893,0.01904394301415538,0.0018679115677425137,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967883199999996 47.53172459624193, 9.967868000000005 47.53152739624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_3_LVStation_mvgd_33535_lvgd_1151050000,BusBar_mvgd_33535_lvgd_1151050000_LV,BranchTee_mvgd_33535_lvgd_1151050000_3,0.026289612063413632,0.022819383271043034,0.002238222932564353,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967887399999995 47.531961196242015, 9.967883199999996 47.53172459624193)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_4_LVCableDist_mvgd_33535_lvgd_1151050000_9,BranchTee_mvgd_33535_lvgd_1151050000_4,BranchTee_mvgd_33535_lvgd_1151050000_9,0.0851359902867885,0.07389803956893243,0.0072482365044729095,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968800400000001 47.53148549624198, 9.969136200000003 47.53134629624191, 9.969577800000001 47.53110539624189, 9.9694669 47.53101839624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_4_LVCableDist_mvgd_33535_lvgd_1151050000_building_431171,BranchTee_mvgd_33535_lvgd_1151050000_4,BranchTee_mvgd_33535_lvgd_1151050000_building_431171,0.009318730584910801,0.008088658147702576,0.0007933702653057678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968702382394303 47.531434349608425, 9.968800400000001 47.53148549624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_5_LVCableDist_mvgd_33535_lvgd_1151050000_8,BranchTee_mvgd_33535_lvgd_1151050000_5,BranchTee_mvgd_33535_lvgd_1151050000_8,0.02597562604592685,0.022546843407864506,0.002211491054469374,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9674814 47.53127339624194, 9.967819599999995 47.531228096241946)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_5_LVCableDist_mvgd_33535_lvgd_1151050000_building_430956,BranchTee_mvgd_33535_lvgd_1151050000_5,BranchTee_mvgd_33535_lvgd_1151050000_building_430956,0.015728628444439133,0.013652449489773167,0.0013390907708037323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967641995683623 47.53115371209079, 9.967819599999995 47.531228096241946)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_6_LVCableDist_mvgd_33535_lvgd_1151050000_building_431168,BranchTee_mvgd_33535_lvgd_1151050000_6,BranchTee_mvgd_33535_lvgd_1151050000_building_431168,0.008590769775289721,0.007456788164951478,0.0007313937487192217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.968604652603982 47.53116051335735, 9.968637300000005 47.53123459624188)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_7_LVCableDist_mvgd_33535_lvgd_1151050000_building_430959,BranchTee_mvgd_33535_lvgd_1151050000_7,BranchTee_mvgd_33535_lvgd_1151050000_building_430959,0.015653036423654513,0.013586835615732117,0.0013326550807665075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967660299998638 47.531524646244996, 9.967868000000005 47.53152739624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_7_LVCableDist_mvgd_33535_lvgd_1151050000_building_431164,BranchTee_mvgd_33535_lvgd_1151050000_7,BranchTee_mvgd_33535_lvgd_1151050000_building_431164,0.01608765519923518,0.013964084712936135,0.0013696572893986182,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.96769799999833 47.53161499626599, 9.967868000000005 47.53152739624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_8_LVCableDist_mvgd_33535_lvgd_1151050000_building_430958,BranchTee_mvgd_33535_lvgd_1151050000_8,BranchTee_mvgd_33535_lvgd_1151050000_building_430958,0.019420667186635106,0.01685713911799927,0.0016534204672924552,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967587068484555 47.53143282573698, 9.9674814 47.53127339624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_8_LVCableDist_mvgd_33535_lvgd_1151050000_building_431159,BranchTee_mvgd_33535_lvgd_1151050000_8,BranchTee_mvgd_33535_lvgd_1151050000_building_431159,0.015525432679609784,0.013476075565901292,0.0013217912602767614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967297824584548 47.53120994028909, 9.9674814 47.53127339624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_8_LVCableDist_mvgd_33535_lvgd_1151050000_building_431161,BranchTee_mvgd_33535_lvgd_1151050000_8,BranchTee_mvgd_33535_lvgd_1151050000_building_431161,0.025895368516471905,0.022477179872297613,0.0022046581562697462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.967228992226103 47.53143156944587, 9.9674814 47.53127339624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_9_LVCableDist_mvgd_33535_lvgd_1151050000_building_430968,BranchTee_mvgd_33535_lvgd_1151050000_9,BranchTee_mvgd_33535_lvgd_1151050000_building_430968,0.008997628154785626,0.007809941238353923,0.0007660325160428755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969350150001029 47.531035396250786, 9.9694669 47.53101839624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1151050000_9_LVCableDist_mvgd_33535_lvgd_1151050000_building_430969,BranchTee_mvgd_33535_lvgd_1151050000_9,BranchTee_mvgd_33535_lvgd_1151050000_building_430969,0.01774722311139173,0.01540458966068802,0.0015109481897807525,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969337825752724 47.53115200616218, 9.9694669 47.53101839624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_1_LVCableDist_mvgd_33535_lvgd_1152000000_2,BranchTee_mvgd_33535_lvgd_1152000000_1,BranchTee_mvgd_33535_lvgd_1152000000_2,0.02002545888803621,0.01738209831481543,0.0017049107156930548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970052499999998 47.55510579624407, 9.9698997 47.555253296244025)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_1_LVCableDist_mvgd_33535_lvgd_1152000000_building_440580,BranchTee_mvgd_33535_lvgd_1152000000_1,BranchTee_mvgd_33535_lvgd_1152000000_building_440580,0.03239536135873843,0.02811917365938496,0.002758049092810482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969526569181335 47.5551082459133, 9.9698997 47.555253296244025)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_1_LVCableDist_mvgd_33535_lvgd_1152000000_building_440581,BranchTee_mvgd_33535_lvgd_1152000000_1,BranchTee_mvgd_33535_lvgd_1152000000_building_440581,0.0164862665511273,0.014310079366378495,0.0014035939282061205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.969892519824297 47.555401597659134, 9.9698997 47.555253296244025)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_2_LVCableDist_mvgd_33535_lvgd_1152000000_building_440560,BranchTee_mvgd_33535_lvgd_1152000000_2,BranchTee_mvgd_33535_lvgd_1152000000_building_440560,0.01399201352934036,0.012145067743467432,0.0011912403073342968,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970171005991746 47.55520278184518, 9.970052499999998 47.55510579624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_2_LVStation_mvgd_33535_lvgd_1152000000,BusBar_mvgd_33535_lvgd_1152000000_LV,BranchTee_mvgd_33535_lvgd_1152000000_2,0.03627564479143884,0.03148725967896891,0.003088405407805564,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970474700000002 47.555076396244026, 9.970430500000003 47.55505709624407, 9.970344899999999 47.55502799624403, 9.970263099999999 47.55502159624406, 9.970170599999996 47.555036996244034, 9.970052499999998 47.55510579624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_3_LVCableDist_mvgd_33535_lvgd_1152000000_4,BranchTee_mvgd_33535_lvgd_1152000000_3,BranchTee_mvgd_33535_lvgd_1152000000_4,0.03869963245814953,0.03359128097367379,0.0032947768358357024,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973592500000006 47.555283196244055, 9.974103899999998 47.5553170962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_3_LVCableDist_mvgd_33535_lvgd_1152000000_building_440574,BranchTee_mvgd_33535_lvgd_1152000000_3,BranchTee_mvgd_33535_lvgd_1152000000_building_440574,0.035630055998634544,0.030926888606814786,0.0030334418108694176,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973798677231855 47.555571822224216, 9.973592500000006 47.555283196244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_3_LVStation_mvgd_33535_lvgd_1152000000,BusBar_mvgd_33535_lvgd_1152000000_LV,BranchTee_mvgd_33535_lvgd_1152000000_3,0.39507958300077695,0.3429290780446744,0.033635954031094976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973592500000006 47.555283196244055, 9.972621399999998 47.55521579624406, 9.9724603 47.55520339624407, 9.972379400000001 47.55520269624402, 9.972271400000004 47.55520819624405, 9.972144300000002 47.55523369624405, 9.971922000000001 47.55531839624405, 9.971794299999994 47.555408196244066, 9.971687100000002 47.555522696244054, 9.971555 47.55572689624413, 9.971415299999999 47.55603099624414, 9.971329899999997 47.55617349624412, 9.971286800000005 47.55624529624414, 9.971177499999998 47.55620019624414, 9.971088100000003 47.556136696244174, 9.970606999999998 47.555633296244075, 9.970498500000001 47.55550529624412, 9.970433599999991 47.55537089624405, 9.970427899999997 47.555310496244076, 9.970446799999998 47.555215296244064, 9.970474700000002 47.555076396244026)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_4_LVCableDist_mvgd_33535_lvgd_1152000000_5,BranchTee_mvgd_33535_lvgd_1152000000_4,BranchTee_mvgd_33535_lvgd_1152000000_5,0.06816687477454042,0.05916884730430108,0.00580353418656752,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974103899999998 47.5553170962441, 9.974252199999999 47.555334896244034, 9.974391799999994 47.55537509624406, 9.974526599999994 47.55544519624409, 9.974653199999997 47.55554199624412, 9.974790600000002 47.555677096244096)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_4_LVCableDist_mvgd_33535_lvgd_1152000000_building_440577,BranchTee_mvgd_33535_lvgd_1152000000_4,BranchTee_mvgd_33535_lvgd_1152000000_building_440577,0.04481937686016151,0.03890321911462019,0.0038157944997318422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973994800000924 47.5557136462611, 9.974103899999998 47.5553170962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_5_LVCableDist_mvgd_33535_lvgd_1152000000_building_440579,BranchTee_mvgd_33535_lvgd_1152000000_5,BranchTee_mvgd_33535_lvgd_1152000000_building_440579,0.027478551840069504,0.02385138299718033,0.0023394458896445185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974468449997959 47.555793196256914, 9.974790600000002 47.555677096244096)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_6_LVCableDist_mvgd_33535_lvgd_1152000000_7,BranchTee_mvgd_33535_lvgd_1152000000_6,BranchTee_mvgd_33535_lvgd_1152000000_7,0.2681096015179315,0.23271913411756454,0.022826090286560317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.972842000000002 47.55327479624389, 9.972994800000002 47.553138696243856, 9.973246600000001 47.553039496243834, 9.973971200000001 47.552907796243844, 9.9742041 47.55285639624382, 9.974298500000003 47.55281099624387, 9.974372300000002 47.55272759624384, 9.974473499999995 47.55262459624379, 9.974619900000002 47.552508596243825, 9.974864700000001 47.55230379624387, 9.975078199999999 47.552172996243776, 9.975343 47.552066296243765, 9.975465199999995 47.55206739624377, 9.975711999999994 47.552076396243756)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_6_LVCableDist_mvgd_33535_lvgd_1152000000_building_440564,BranchTee_mvgd_33535_lvgd_1152000000_6,BranchTee_mvgd_33535_lvgd_1152000000_building_440564,0.016306650766340282,0.014154172865183364,0.001388301950234322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.97276086242304 47.5531387267972, 9.972842000000002 47.55327479624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_6_LVStation_mvgd_33535_lvgd_1152000000,BusBar_mvgd_33535_lvgd_1152000000_LV,BranchTee_mvgd_33535_lvgd_1152000000_6,0.2856159720693116,0.24791466375616247,0.024316532973183223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.970474700000002 47.555076396244026, 9.970513000000004 47.55499769624407, 9.970535999999997 47.55492109624405, 9.970542700000001 47.55484019624401, 9.970542699999998 47.55476189624401, 9.970559599999996 47.55468509624403, 9.9705957 47.554646896243966, 9.970674799999996 47.55461249624398, 9.970843399999996 47.554574896243956, 9.971015500000002 47.554552796244, 9.971189500000003 47.55450929624399, 9.971382899999993 47.554444196244, 9.971626500000001 47.55432909624395, 9.971787899999999 47.554246896243974, 9.971917499999998 47.55415239624395, 9.972058799999997 47.55395179624394, 9.972148099999998 47.553841596243906, 9.972642099999996 47.55341669624393, 9.972842000000002 47.55327479624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1152000000_7_LVCableDist_mvgd_33535_lvgd_1152000000_building_441458,BranchTee_mvgd_33535_lvgd_1152000000_7,BranchTee_mvgd_33535_lvgd_1152000000_building_441458,0.016054232731407683,0.013935074010861869,0.001366811795377103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975760199933712 47.55193564632855, 9.975711999999994 47.552076396243756)" +Branch_LVCableDist_mvgd_33535_lvgd_1152010000_1_LVCableDist_mvgd_33535_lvgd_1152010000_2,BranchTee_mvgd_33535_lvgd_1152010000_1,BranchTee_mvgd_33535_lvgd_1152010000_2,0.014332756045344987,0.012440832247359448,0.0012202501577490389,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9712328 47.560503096244496, 9.9714135 47.56046259624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1152010000_1_LVCableDist_mvgd_33535_lvgd_1152010000_building_440624,BranchTee_mvgd_33535_lvgd_1152010000_1,BranchTee_mvgd_33535_lvgd_1152010000_building_440624,0.01789296346339321,0.015531092286225307,0.0015233561095805155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971287992681908 47.560659733137925, 9.9712328 47.560503096244496)" +Branch_LVCableDist_mvgd_33535_lvgd_1152010000_2_LVCableDist_mvgd_33535_lvgd_1152010000_building_440630,BranchTee_mvgd_33535_lvgd_1152010000_2,BranchTee_mvgd_33535_lvgd_1152010000_building_440630,0.029788998284438862,0.025856850510892933,0.002536150740358006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971480799988445 47.56019839642991, 9.9714135 47.56046259624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1152010000_2_LVStation_mvgd_33535_lvgd_1152010000,BusBar_mvgd_33535_lvgd_1152010000_LV,BranchTee_mvgd_33535_lvgd_1152010000_2,0.028050254101013198,0.024347620559679456,0.002388118997028398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.971264899999996 47.56023109624446, 9.9714135 47.56046259624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1152030000_1_LVCableDist_mvgd_33535_lvgd_1152030000_2,BranchTee_mvgd_33535_lvgd_1152030000_1,BranchTee_mvgd_33535_lvgd_1152030000_2,0.03353709871060074,0.029110201680801442,0.0028552533694555476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9737012 47.5580632962443, 9.973897899999997 47.5577924962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1152030000_1_LVCableDist_mvgd_33535_lvgd_1152030000_building_440587,BranchTee_mvgd_33535_lvgd_1152030000_1,BranchTee_mvgd_33535_lvgd_1152030000_building_440587,0.02049733877313285,0.017791690055079315,0.0017450852294017972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973924862097702 47.55795817728148, 9.9737012 47.5580632962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1152030000_1_LVStation_mvgd_33535_lvgd_1152030000,BusBar_mvgd_33535_lvgd_1152030000_LV,BranchTee_mvgd_33535_lvgd_1152030000_1,0.008416551373500128,0.007305566592198111,0.0007165612886121803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973807199999998 47.558039296244296, 9.9737012 47.5580632962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1152030000_2_LVCableDist_mvgd_33535_lvgd_1152030000_building_440586,BranchTee_mvgd_33535_lvgd_1152030000_2,BranchTee_mvgd_33535_lvgd_1152030000_building_440586,0.02089653783858623,0.018138194843892848,0.001779071904473335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973622192247024 47.55781365571831, 9.973897899999997 47.5577924962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_1_LVCableDist_mvgd_33535_lvgd_1152040000_2,BranchTee_mvgd_33535_lvgd_1152040000_1,BranchTee_mvgd_33535_lvgd_1152040000_2,0.014170362678479678,0.01229987480492036,0.0012064244475431395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9922931 47.56021969624447, 9.992245000000004 47.56009639624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_1_LVCableDist_mvgd_33535_lvgd_1152040000_3,BranchTee_mvgd_33535_lvgd_1152040000_1,BranchTee_mvgd_33535_lvgd_1152040000_3,0.39892599855977356,0.34626776674988347,0.03396342693147678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9922931 47.56021969624447, 9.992373300000004 47.560307496244505, 9.992541000000003 47.560500096244525, 9.992786299999993 47.56078569624455, 9.993035899999995 47.56106309624458, 9.993137599999999 47.56117039624457, 9.992977499999995 47.56119129624458, 9.992775199999995 47.561237196244576, 9.992420200000003 47.561309496244604, 9.991800199999993 47.561446796244624, 9.991615300000001 47.56145969624462, 9.991454199999996 47.56145859624462, 9.991403999999998 47.56145289624461, 9.9913177 47.5614381962446, 9.991203299999995 47.5614058962446, 9.990974399999999 47.56131249624457, 9.990794100000004 47.561213996244554, 9.990648199999997 47.56110969624458, 9.990313499999996 47.56083169624453, 9.990034999999995 47.56062809624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_1_LVCableDist_mvgd_33535_lvgd_1152040000_building_441550,BranchTee_mvgd_33535_lvgd_1152040000_1,BranchTee_mvgd_33535_lvgd_1152040000_building_441550,0.011168590169695868,0.009694336267296013,0.0009508620584407437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992145300000516 47.56021139627173, 9.9922931 47.56021969624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_2_LVCableDist_mvgd_33535_lvgd_1152040000_building_441571,BranchTee_mvgd_33535_lvgd_1152040000_2,BranchTee_mvgd_33535_lvgd_1152040000_building_441571,0.01890405192393468,0.016408717069975303,0.0016094373105421875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992055199997786 47.55998504625918, 9.992245000000004 47.56009639624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_2_LVCableDist_mvgd_33535_lvgd_1152040000_building_441578,BranchTee_mvgd_33535_lvgd_1152040000_2,BranchTee_mvgd_33535_lvgd_1152040000_building_441578,0.017781003414439705,0.015433910963733664,0.0015138241488770138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992382700017579 47.55996639639962, 9.992245000000004 47.56009639624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_3_LVCableDist_mvgd_33535_lvgd_1152040000_building_441569,BranchTee_mvgd_33535_lvgd_1152040000_3,BranchTee_mvgd_33535_lvgd_1152040000_building_441569,0.01603855787941584,0.01392146823933295,0.0013654772829807974,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.990043475906273 47.560483859192345, 9.990034999999995 47.56062809624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_3_LVCableDist_mvgd_33535_lvgd_1152040000_building_441570,BranchTee_mvgd_33535_lvgd_1152040000_3,BranchTee_mvgd_33535_lvgd_1152040000_building_441570,0.03256521481982444,0.028266606463607614,0.0027725099342584695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.990282639690891 47.56038782041818, 9.990034999999995 47.56062809624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_3_LVStation_mvgd_33535_lvgd_1152040000,BusBar_mvgd_33535_lvgd_1152040000_LV,BranchTee_mvgd_33535_lvgd_1152040000_3,0.058590736451755165,0.050856759240123485,0.004988248957262268,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.990034999999995 47.56062809624451, 9.989783800000003 47.56047879624451, 9.989380199999992 47.560353496244474)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_4_LVCableDist_mvgd_33535_lvgd_1152040000_5,BranchTee_mvgd_33535_lvgd_1152040000_4,BranchTee_mvgd_33535_lvgd_1152040000_5,0.06333558333814732,0.05497528633751187,0.005392211750133184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988698700000002 47.560161696244435, 9.988464000000002 47.5600928962445, 9.987921000000002 47.5599447962445)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_4_LVCableDist_mvgd_33535_lvgd_1152040000_6,BranchTee_mvgd_33535_lvgd_1152040000_4,BranchTee_mvgd_33535_lvgd_1152040000_6,0.032135652945941486,0.02789374675707721,0.0027359382558799143,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988698700000002 47.560161696244435, 9.989096600000005 47.56026619624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_4_LVCableDist_mvgd_33535_lvgd_1152040000_building_441547,BranchTee_mvgd_33535_lvgd_1152040000_4,BranchTee_mvgd_33535_lvgd_1152040000_building_441547,0.015389549739666546,0.013358129174030562,0.0013102225725535798,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988706850001353 47.56030009627902, 9.988698700000002 47.560161696244435)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_5_LVCableDist_mvgd_33535_lvgd_1152040000_building_441544,BranchTee_mvgd_33535_lvgd_1152040000_5,BranchTee_mvgd_33535_lvgd_1152040000_building_441544,0.022117046681410624,0.01919759651946442,0.00188298256221974,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988068271631763 47.56011701980426, 9.987921000000002 47.5599447962445)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_6_LVCableDist_mvgd_33535_lvgd_1152040000_building_441549,BranchTee_mvgd_33535_lvgd_1152040000_6,BranchTee_mvgd_33535_lvgd_1152040000_building_441549,0.026056575776039287,0.0226171077736021,0.0022183828846677627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988901805538479 47.56046001580582, 9.989096600000005 47.56026619624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_6_LVCableDist_mvgd_33535_lvgd_1152040000_building_441556,BranchTee_mvgd_33535_lvgd_1152040000_6,BranchTee_mvgd_33535_lvgd_1152040000_building_441556,0.04349887572930948,0.03775702413304063,0.0037033707824696404,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988813176412483 47.56060732752983, 9.989096600000005 47.56026619624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_6_LVCableDist_mvgd_33535_lvgd_1152040000_building_441560,BranchTee_mvgd_33535_lvgd_1152040000_6,BranchTee_mvgd_33535_lvgd_1152040000_building_441560,0.04115519183828522,0.03572270651563157,0.0035038361899119813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989594340243578 47.56011326486522, 9.989096600000005 47.56026619624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_6_LVCableDist_mvgd_33535_lvgd_1152040000_building_441565,BranchTee_mvgd_33535_lvgd_1152040000_6,BranchTee_mvgd_33535_lvgd_1152040000_building_441565,0.024011222970342323,0.020841741538257137,0.0020442473537267496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989414957579628 47.56027811192803, 9.989096600000005 47.56026619624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_6_LVCableDist_mvgd_33535_lvgd_1152040000_building_441566,BranchTee_mvgd_33535_lvgd_1152040000_6,BranchTee_mvgd_33535_lvgd_1152040000_building_441566,0.029584759136156963,0.025679570930184244,0.0025187623991261418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989333628227945 47.56047854182649, 9.989096600000005 47.56026619624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1152040000_6_LVStation_mvgd_33535_lvgd_1152040000,BusBar_mvgd_33535_lvgd_1152040000_LV,BranchTee_mvgd_33535_lvgd_1152040000_6,0.023456590520501745,0.020360320571795515,0.0019970275215974984,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989380199999992 47.560353496244474, 9.989096600000005 47.56026619624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_1_LVCableDist_mvgd_33535_lvgd_1152050000_4,BranchTee_mvgd_33535_lvgd_1152050000_1,BranchTee_mvgd_33535_lvgd_1152050000_4,0.45216402950916573,0.3924783776139559,0.0384959617390683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978643899999991 47.554833596243974, 9.979114200000005 47.55486289624402, 9.979530599999993 47.55491669624403, 9.979773599999996 47.554958896244024, 9.9801726 47.55505949624401, 9.980643300000002 47.55523139624401, 9.981088998576178 47.555396547160285, 9.9815347 47.55556169624406, 9.982394 47.55580909624407, 9.983441800000003 47.556023796244084, 9.983624600000004 47.5554595962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_1_LVCableDist_mvgd_33535_lvgd_1152050000_building_441484,BranchTee_mvgd_33535_lvgd_1152050000_1,BranchTee_mvgd_33535_lvgd_1152050000_building_441484,0.010737716299991868,0.009320337748392941,0.0009141786804628561,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983602266995787 47.55536414654065, 9.983624600000004 47.5554595962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_2_LVCableDist_mvgd_33535_lvgd_1152050000_3,BranchTee_mvgd_33535_lvgd_1152050000_2,BranchTee_mvgd_33535_lvgd_1152050000_3,0.08000310634215847,0.06944269630499356,0.006811237338134867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980112500000004 47.554236396243994, 9.979613999999996 47.55414409624395, 9.9793864 47.55411159624394, 9.979281399999993 47.55411249624397, 9.9791976 47.55413969624399, 9.979104599999998 47.55418549624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_2_LVCableDist_mvgd_33535_lvgd_1152050000_4,BranchTee_mvgd_33535_lvgd_1152050000_2,BranchTee_mvgd_33535_lvgd_1152050000_4,0.08160408785259309,0.0708323482560508,0.006947540358606329,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979104599999998 47.55418549624398, 9.979017999999995 47.55425239624398, 9.978946999999998 47.55431899624395, 9.978846000000006 47.55442509624398, 9.978789799999996 47.55448419624399, 9.978715499999998 47.554580296244, 9.978674899999996 47.55469149624404, 9.978643899999991 47.554833596243974)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_2_LVCableDist_mvgd_33535_lvgd_1152050000_5,BranchTee_mvgd_33535_lvgd_1152050000_2,BranchTee_mvgd_33535_lvgd_1152050000_5,0.027870867100079615,0.024191912642869105,0.0023728464970643437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979104599999998 47.55418549624398, 9.979043399999997 47.55409829624393, 9.9789683 47.55401329624392, 9.978914599999992 47.5539717962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_3_LVCableDist_mvgd_33535_lvgd_1152050000_building_441477,BranchTee_mvgd_33535_lvgd_1152050000_3,BranchTee_mvgd_33535_lvgd_1152050000_building_441477,0.03776309374304522,0.03277836536896325,0.0032150425885472834,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9800136990266 47.55456961098127, 9.980112500000004 47.554236396243994)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_4_LVCableDist_mvgd_33535_lvgd_1152050000_building_441469,BranchTee_mvgd_33535_lvgd_1152050000_4,BranchTee_mvgd_33535_lvgd_1152050000_building_441469,0.09743723385670502,0.08457551898761996,0.008295529457706084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977471100047387 47.555203796329856, 9.978643899999991 47.554833596243974)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_4_LVStation_mvgd_33535_lvgd_1152050000,BusBar_mvgd_33535_lvgd_1152050000_LV,BranchTee_mvgd_33535_lvgd_1152050000_4,0.09012833358704032,0.078231393553551,0.007673270439355809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978643899999991 47.554833596243974, 9.978156699999992 47.55484479624401, 9.9777994 47.55487639624399, 9.977461599999993 47.554935496244006)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_5_LVCableDist_mvgd_33535_lvgd_1152050000_building_441466,BranchTee_mvgd_33535_lvgd_1152050000_5,BranchTee_mvgd_33535_lvgd_1152050000_building_441466,0.014096148133542203,0.012235456579914632,0.001200106031888766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978760414355126 47.55404371097065, 9.978914599999992 47.5539717962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_6_LVCableDist_mvgd_33535_lvgd_1152050000_9,BranchTee_mvgd_33535_lvgd_1152050000_6,BranchTee_mvgd_33535_lvgd_1152050000_9,0.13216510690716957,0.11471931279542319,0.011252161973744835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978370000000005 47.556368196244144, 9.979121100000006 47.556561196244154, 9.979362899999998 47.55662359624417, 9.979507500000004 47.556568896244116, 9.979822400000003 47.55653809624414, 9.980030799999998 47.55652619624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_6_LVCableDist_mvgd_33535_lvgd_1152050000_building_441471,BranchTee_mvgd_33535_lvgd_1152050000_6,BranchTee_mvgd_33535_lvgd_1152050000_building_441471,0.009235062724725476,0.008016034445061713,0.0007862470212299833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978269121639828 47.55641544928095, 9.978370000000005 47.556368196244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_6_LVCableDist_mvgd_33535_lvgd_1152050000_building_441472,BranchTee_mvgd_33535_lvgd_1152050000_6,BranchTee_mvgd_33535_lvgd_1152050000_building_441472,0.02332372989080739,0.020244997545220814,0.001985716144788303,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978679500001622 47.55636084626644, 9.978370000000005 47.556368196244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_6_LVCableDist_mvgd_33535_lvgd_1152050000_building_441475,BranchTee_mvgd_33535_lvgd_1152050000_6,BranchTee_mvgd_33535_lvgd_1152050000_building_441475,0.021775618666626518,0.018901237002631816,0.001853914350385104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978480000018394 47.55654944628444, 9.978370000000005 47.556368196244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_6_LVStation_mvgd_33535_lvgd_1152050000,BusBar_mvgd_33535_lvgd_1152050000_LV,BranchTee_mvgd_33535_lvgd_1152050000_6,0.5329337069693678,0.46258645764941125,0.04537246276583076,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977461599999993 47.554935496244006, 9.976534600000004 47.555172996244075, 9.975793599999998 47.55536039624404, 9.975255500000005 47.555523596244036, 9.975022400000006 47.555620396244095, 9.9748359 47.55572599624411, 9.9746369 47.555876396244095, 9.974696399999996 47.55591509624409, 9.974814999999992 47.555980596244105, 9.9749502 47.55604179624415, 9.975081900000001 47.55609339624415, 9.975179099999997 47.55612339624414, 9.975624700000003 47.556205196244136, 9.9759369 47.55625589624413, 9.9761949 47.55625929624415, 9.976537699999993 47.55622699624416, 9.976941900000003 47.556235296244154, 9.978087400000001 47.556329696244106, 9.978370000000005 47.556368196244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_7_LVCableDist_mvgd_33535_lvgd_1152050000_9,BranchTee_mvgd_33535_lvgd_1152050000_7,BranchTee_mvgd_33535_lvgd_1152050000_9,0.02937519862874096,0.025497672409747152,0.002500921012485406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980228 47.556306596244156, 9.980120599999996 47.55647969624413, 9.980030799999998 47.55652619624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_7_LVCableDist_mvgd_33535_lvgd_1152050000_building_441483,BranchTee_mvgd_33535_lvgd_1152050000_7,BranchTee_mvgd_33535_lvgd_1152050000_building_441483,0.012658547250355144,0.010987619013308265,0.0010777127741692285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980219950021066 47.55619279629493, 9.980228 47.556306596244156)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_8_LVCableDist_mvgd_33535_lvgd_1152050000_9,BranchTee_mvgd_33535_lvgd_1152050000_8,BranchTee_mvgd_33535_lvgd_1152050000_9,0.011235016304517023,0.009751994152320776,0.0009565173909697935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9801671 47.556567296244175, 9.980030799999998 47.55652619624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1152050000_8_LVCableDist_mvgd_33535_lvgd_1152050000_building_441488,BranchTee_mvgd_33535_lvgd_1152050000_8,BranchTee_mvgd_33535_lvgd_1152050000_building_441488,0.01212623654408693,0.010525573320267455,0.0010323933519143405,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980323200007128 47.55654054627721, 9.9801671 47.556567296244175)" +Branch_LVCableDist_mvgd_33535_lvgd_1152060000_1_LVCableDist_mvgd_33535_lvgd_1152060000_building_441548,BranchTee_mvgd_33535_lvgd_1152060000_1,BranchTee_mvgd_33535_lvgd_1152060000_building_441548,0.02386277515631928,0.020712888835685134,0.0020316089282971933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981796550036085 47.56050304630558, 9.982011100000003 47.56034499624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1152060000_1_LVCableDist_mvgd_33535_lvgd_1152060000_building_441552,BranchTee_mvgd_33535_lvgd_1152060000_1,BranchTee_mvgd_33535_lvgd_1152060000_building_441552,0.0416384056977756,0.03614213614566922,0.003544975646022459,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.982267234780464 47.5606771186253, 9.982011100000003 47.56034499624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1152060000_1_LVStation_mvgd_33535_lvgd_1152060000,BusBar_mvgd_33535_lvgd_1152060000_LV,BranchTee_mvgd_33535_lvgd_1152060000_1,0.014214839731250197,0.012338480886725171,0.0012102110975417675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.982011100000003 47.56034499624447, 9.981826099999992 47.56037039624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1152070000_1_LVCableDist_mvgd_33535_lvgd_1152070000_2,BranchTee_mvgd_33535_lvgd_1152070000_1,BranchTee_mvgd_33535_lvgd_1152070000_2,0.01579253471423775,0.013707920131958366,0.0013445315691788808,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983987399999998 47.559098896244386, 9.983791100000003 47.55904889624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1152070000_1_LVCableDist_mvgd_33535_lvgd_1152070000_building_441495,BranchTee_mvgd_33535_lvgd_1152070000_1,BranchTee_mvgd_33535_lvgd_1152070000_building_441495,0.05650676769693004,0.04904787436093527,0.004810825774046551,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983261614786128 47.55922791272588, 9.983987399999998 47.559098896244386)" +Branch_LVCableDist_mvgd_33535_lvgd_1152070000_1_LVStation_mvgd_33535_lvgd_1152070000,BusBar_mvgd_33535_lvgd_1152070000_LV,BranchTee_mvgd_33535_lvgd_1152070000_1,0.11238971848226674,0.09755427564260753,0.009568541547310976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983987399999998 47.559098896244386, 9.983973 47.559187396244404, 9.983966600000002 47.55943249624443, 9.983983900000002 47.55951049624446, 9.984065599999994 47.55961139624447, 9.983891099999994 47.55956899624442, 9.983414348584231 47.55941549729083)" +Branch_LVCableDist_mvgd_33535_lvgd_1152070000_2_LVCableDist_mvgd_33535_lvgd_1152070000_building_441492,BranchTee_mvgd_33535_lvgd_1152070000_2,BranchTee_mvgd_33535_lvgd_1152070000_building_441492,0.02397184229744594,0.020807559114183076,0.0020408945950415366,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983584442312688 47.558884795192974, 9.983791100000003 47.55904889624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_1_LVCableDist_mvgd_33535_lvgd_1152090000_2,BranchTee_mvgd_33535_lvgd_1152090000_1,BranchTee_mvgd_33535_lvgd_1152090000_2,0.06297029158388404,0.05465821309481134,0.00536111184727054,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.985985500000005 47.55745089624427, 9.986101600000003 47.557413396244264, 9.986230199999998 47.55740279624423, 9.986418999999993 47.55727679624424, 9.986713500000004 47.55734869624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_1_LVCableDist_mvgd_33535_lvgd_1152090000_building_441505,BranchTee_mvgd_33535_lvgd_1152090000_1,BranchTee_mvgd_33535_lvgd_1152090000_building_441505,0.015252161478868407,0.013238876163657777,0.00129852572608655,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.985797502147632 47.55750194227753, 9.985985500000005 47.55745089624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_2_LVCableDist_mvgd_33535_lvgd_1152090000_building_441498,BranchTee_mvgd_33535_lvgd_1152090000_2,BranchTee_mvgd_33535_lvgd_1152090000_building_441498,0.015396771918278635,0.013364398025065855,0.0013108374483362145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986536717710752 47.557418297658174, 9.986713500000004 47.55734869624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_2_LVCableDist_mvgd_33535_lvgd_1152090000_building_441512,BranchTee_mvgd_33535_lvgd_1152090000_2,BranchTee_mvgd_33535_lvgd_1152090000_building_441512,0.03140430501737521,0.027258936755081686,0.0026736733696027027,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987129289878807 47.55732726144942, 9.986713500000004 47.55734869624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_2_LVCableDist_mvgd_33535_lvgd_1152090000_building_441516,BranchTee_mvgd_33535_lvgd_1152090000_2,BranchTee_mvgd_33535_lvgd_1152090000_building_441516,0.017034135756493207,0.014785629836636104,0.0014502379569022426,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986763300003824 47.557498246292, 9.986713500000004 47.55734869624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_2_LVStation_mvgd_33535_lvgd_1152090000,BusBar_mvgd_33535_lvgd_1152090000_LV,BranchTee_mvgd_33535_lvgd_1152090000_2,0.027821920421950707,0.024149426926253215,0.002368679315852361,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986713500000004 47.55734869624425, 9.986962500000006 47.557400696244244, 9.987070699999995 47.55740889624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_3_LVCableDist_mvgd_33535_lvgd_1152090000_4,BranchTee_mvgd_33535_lvgd_1152090000_3,BranchTee_mvgd_33535_lvgd_1152090000_4,0.015670298521980614,0.013601819117079174,0.0013341247268093804,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987762899999996 47.558001296244306, 9.987867299999996 47.55812329624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_3_LVCableDist_mvgd_33535_lvgd_1152090000_building_441518,BranchTee_mvgd_33535_lvgd_1152090000_3,BranchTee_mvgd_33535_lvgd_1152090000_building_441518,0.015562978663112865,0.013508665479581967,0.0013249878187158732,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.98763274999741 47.558110096300325, 9.987762899999996 47.558001296244306)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_3_LVStation_mvgd_33535_lvgd_1152090000,BusBar_mvgd_33535_lvgd_1152090000_LV,BranchTee_mvgd_33535_lvgd_1152090000_3,0.1801031970753222,0.15632957506137968,0.015333474870218397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987070699999995 47.55740889624422, 9.987283 47.557398296244244, 9.987441899999997 47.557399196244205, 9.987791500000005 47.55740709624424, 9.9880656 47.55747109624428, 9.98844 47.55756379624424, 9.988159100000006 47.55765469624426, 9.987954099999994 47.55775209624428, 9.987824399999996 47.55787209624429, 9.987762899999996 47.558001296244306)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_4_LVCableDist_mvgd_33535_lvgd_1152090000_building_441519,BranchTee_mvgd_33535_lvgd_1152090000_4,BranchTee_mvgd_33535_lvgd_1152090000_building_441519,0.013052718212700617,0.011329759408624136,0.0011112713708173847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987761499997418 47.5582163463003, 9.987867299999996 47.55812329624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1152090000_4_LVCableDist_mvgd_33535_lvgd_1152090000_building_441520,BranchTee_mvgd_33535_lvgd_1152090000_4,BranchTee_mvgd_33535_lvgd_1152090000_building_441520,0.03277210733370708,0.028446189165657745,0.0027901241755044427,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987656576951464 47.55838136460951, 9.987867299999996 47.55812329624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_10_LVCableDist_mvgd_33535_lvgd_1152120000_3,BranchTee_mvgd_33535_lvgd_1152120000_3,BranchTee_mvgd_33535_lvgd_1152120000_10,0.48488072175907077,0.2177114440698228,0.04112903826033156,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.992238299999999 47.56223509624467, 9.992017400000005 47.562124696244645, 9.991733899999995 47.56199309624465, 9.991634699999997 47.56192369624464, 9.991550900000007 47.56184659624464, 9.991491799999997 47.561761796244625, 9.991418199999998 47.56164719624463, 9.991386900000006 47.56154629624457, 9.991403999999998 47.56145289624461, 9.991454199999996 47.56145859624462, 9.991615300000001 47.56145969624462, 9.991800199999993 47.561446796244624, 9.992420200000003 47.561309496244604, 9.992775199999995 47.561237196244576, 9.992977499999995 47.56119129624458, 9.993137599999999 47.56117039624457, 9.993309900000003 47.56116429624454, 9.993483100000006 47.56118429624459, 9.993794700000004 47.561235896244604, 9.994203299999997 47.56132499624458, 9.994574499999997 47.56143489624463, 9.994809399999996 47.561524596244595, 9.995246000000005 47.56175679624464, 9.995943700000005 47.56201939624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_10_LVCableDist_mvgd_33535_lvgd_1152120000_4,BranchTee_mvgd_33535_lvgd_1152120000_4,BranchTee_mvgd_33535_lvgd_1152120000_10,0.0686511635626506,0.030824372439630116,0.00582319775993799,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.995790499999995 47.56143549624464, 9.995903899999995 47.56158579624458, 9.995849000000002 47.56169579624467, 9.9958618 47.561854796244674, 9.995943700000005 47.56201939624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_10_LVCableDist_mvgd_33535_lvgd_1152120000_9,BranchTee_mvgd_33535_lvgd_1152120000_9,BranchTee_mvgd_33535_lvgd_1152120000_10,0.019715845527508512,0.008852414641851322,0.001672357197650362,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.996169599999998 47.56210909624463, 9.995943700000005 47.56201939624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_11_LVCableDist_mvgd_33535_lvgd_1152120000_12,BranchTee_mvgd_33535_lvgd_1152120000_11,BranchTee_mvgd_33535_lvgd_1152120000_12,0.07808767657452162,0.06778010326668477,0.006648163085791391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999171999999994 47.561228296244565, 9.999203700000006 47.56158649624463, 9.999234700000004 47.561629696244616, 9.999265199999998 47.561658396244574, 9.999357000000002 47.56169339624463, 9.999460300000004 47.56172439624467, 9.9995425 47.56175859624463, 9.999586899999995 47.56179499624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_11_LVCableDist_mvgd_33535_lvgd_1152120000_building_441584,BranchTee_mvgd_33535_lvgd_1152120000_11,BranchTee_mvgd_33535_lvgd_1152120000_building_441584,0.3291861370295477,0.28573356694164737,0.028025973118377578,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003010850028604 47.55981124643657, 9.999171999999994 47.561228296244565)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_11_LVCableDist_mvgd_33535_lvgd_1152120000_building_441585,BranchTee_mvgd_33535_lvgd_1152120000_11,BranchTee_mvgd_33535_lvgd_1152120000_building_441585,0.35447968113029066,0.3076883632210923,0.030179393652524467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003275587680838 47.55966534143028, 9.999171999999994 47.561228296244565)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_12_LVCableDist_mvgd_33535_lvgd_1152120000_13,BranchTee_mvgd_33535_lvgd_1152120000_12,BranchTee_mvgd_33535_lvgd_1152120000_13,0.007033786881779059,0.006105327013384223,0.0005988366455767319,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999614399999999 47.56185549624466, 9.999586899999995 47.56179499624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_12_LVCableDist_mvgd_33535_lvgd_1152120000_building_441822,BranchTee_mvgd_33535_lvgd_1152120000_12,BranchTee_mvgd_33535_lvgd_1152120000_building_441822,0.27706263172319356,0.240490364335732,0.023588325859798247,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00298460800317 47.56083844470108, 9.999586899999995 47.56179499624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_12_LVCableDist_mvgd_33535_lvgd_1152120000_building_441846,BranchTee_mvgd_33535_lvgd_1152120000_12,BranchTee_mvgd_33535_lvgd_1152120000_building_441846,0.3182353169519535,0.27622825511429566,0.027093651387309976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003196811088454 47.56030595269704, 9.999586899999995 47.56179499624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_12_LVCableDist_mvgd_33535_lvgd_1152120000_building_441847,BranchTee_mvgd_33535_lvgd_1152120000_12,BranchTee_mvgd_33535_lvgd_1152120000_building_441847,0.2798063084919525,0.24287187577101474,0.023821914710351368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00311256933408 47.56100013812176, 9.999586899999995 47.56179499624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_13_LVCableDist_mvgd_33535_lvgd_1152120000_building_441807,BranchTee_mvgd_33535_lvgd_1152120000_13,BranchTee_mvgd_33535_lvgd_1152120000_building_441807,0.023223085097297307,0.020157637864454063,0.0019771475328082514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999508394594887 47.56205177383183, 9.999614399999999 47.56185549624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_13_LVCableDist_mvgd_33535_lvgd_1152120000_building_441809,BranchTee_mvgd_33535_lvgd_1152120000_13,BranchTee_mvgd_33535_lvgd_1152120000_building_441809,0.01480321758845535,0.012849192866779243,0.0012603039178478669,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99975229999396 47.56195044629653, 9.999614399999999 47.56185549624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_13_LVCableDist_mvgd_33535_lvgd_1152120000_building_441813,BranchTee_mvgd_33535_lvgd_1152120000_13,BranchTee_mvgd_33535_lvgd_1152120000_building_441813,0.029412137840220662,0.025529735645311535,0.0025040659120771263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999780299993956 47.562095146296514, 9.999614399999999 47.56185549624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_13_LVCableDist_mvgd_33535_lvgd_1152120000_building_441823,BranchTee_mvgd_33535_lvgd_1152120000_13,BranchTee_mvgd_33535_lvgd_1152120000_building_441823,0.2584799515179204,0.22436059791755492,0.022006249224980404,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002905170079334 47.56119409252496, 9.999614399999999 47.56185549624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_13_LVCableDist_mvgd_33535_lvgd_1152120000_building_441824,BranchTee_mvgd_33535_lvgd_1152120000_13,BranchTee_mvgd_33535_lvgd_1152120000_building_441824,0.2455702615034132,0.21315498698496266,0.020907154868887605,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002823849944841 47.5614640963348, 9.999614399999999 47.56185549624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_13_LVCableDist_mvgd_33535_lvgd_1152120000_building_441855,BranchTee_mvgd_33535_lvgd_1152120000_13,BranchTee_mvgd_33535_lvgd_1152120000_building_441855,0.2597262474471797,0.225442382784152,0.022112355322054075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00306253182676 47.56180359968937, 9.999614399999999 47.56185549624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_13_LVCableDist_mvgd_33535_lvgd_1152120000_building_441864,BranchTee_mvgd_33535_lvgd_1152120000_13,BranchTee_mvgd_33535_lvgd_1152120000_building_441864,0.3166818773127845,0.274879869507497,0.026961395946782526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003818300005426 47.561929496280804, 9.999614399999999 47.56185549624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_13_LVStation_mvgd_33535_lvgd_1152120000,BusBar_mvgd_33535_lvgd_1152120000_LV,BranchTee_mvgd_33535_lvgd_1152120000_13,0.02214378765280524,0.019220807682634948,0.001885259212604314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999614399999999 47.56185549624466, 9.999614600000003 47.56205479624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_1_LVCableDist_mvgd_33535_lvgd_1152120000_2,BranchTee_mvgd_33535_lvgd_1152120000_1,BranchTee_mvgd_33535_lvgd_1152120000_2,0.24399359950375657,0.1095531261771867,0.020696269492546163,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.999499099999996 47.56238199624468, 9.9994567 47.56253079624469, 9.99940529999999 47.56266249624474, 9.9993269 47.56274729624471, 9.999237400000002 47.56280709624477, 9.999182099999999 47.562896396244746, 9.998919199999992 47.562802396244756, 9.9987586 47.56274259624472, 9.998720299999999 47.562839196244724, 9.998693899999994 47.56297509624478, 9.998801499999999 47.563286096244745, 9.998804299999994 47.563347396244765, 9.998776300000001 47.56341499624477, 9.998728699999996 47.56346909624476, 9.998646099999991 47.56353399624479, 9.998551700000004 47.563577896244794, 9.998476899999996 47.5636080962448, 9.998107599999997 47.56381869624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_1_LVCableDist_mvgd_33535_lvgd_1152120000_8,BranchTee_mvgd_33535_lvgd_1152120000_1,BranchTee_mvgd_33535_lvgd_1152120000_8,0.24432952133988578,0.10970395508160871,0.020724763391005388,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.996958999999999 47.562296096244644, 9.997568100000004 47.56239669624466, 9.998108599999998 47.56253459624472, 9.9987586 47.56274259624472, 9.998919199999992 47.562802396244756, 9.999182099999999 47.562896396244746, 9.999237400000002 47.56280709624477, 9.9993269 47.56274729624471, 9.99940529999999 47.56266249624474, 9.9994567 47.56253079624469, 9.999499099999996 47.56238199624468)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_1_LVStation_mvgd_33535_lvgd_1152120000,BusBar_mvgd_33535_lvgd_1152120000_LV,BranchTee_mvgd_33535_lvgd_1152120000_1,0.03775475989742246,0.016951887193942687,0.003202472060958302,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.999499099999996 47.56238199624468, 9.999522499999992 47.56224599624468, 9.999555200000007 47.56220139624463, 9.999601399999994 47.56212089624469, 9.999614600000003 47.56205479624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_2_LVCableDist_mvgd_33535_lvgd_1152120000_building_441828,BranchTee_mvgd_33535_lvgd_1152120000_2,BranchTee_mvgd_33535_lvgd_1152120000_building_441828,0.053375797438317565,0.046330192176459645,0.0045442638553274866,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99769740506988 47.56342691454632, 9.998107599999997 47.56381869624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_2_LVCableDist_mvgd_33535_lvgd_1152120000_building_441831,BranchTee_mvgd_33535_lvgd_1152120000_2,BranchTee_mvgd_33535_lvgd_1152120000_building_441831,0.01989593308427231,0.017269669917148366,0.0016938832564957146,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.997853134823067 47.56377050244493, 9.998107599999997 47.56381869624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_3_LVCableDist_mvgd_33535_lvgd_1152120000_6,BranchTee_mvgd_33535_lvgd_1152120000_3,BranchTee_mvgd_33535_lvgd_1152120000_6,0.1299453171371445,0.05834544739457788,0.011022351849534125,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.992238299999999 47.56223509624467, 9.992367199999997 47.56232549624467, 9.992800447957102 47.56256919711868, 9.993233700000001 47.56281289624474, 9.993293500000002 47.563090596244734)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_3_LVCableDist_mvgd_33535_lvgd_1152120000_7,BranchTee_mvgd_33535_lvgd_1152120000_3,BranchTee_mvgd_33535_lvgd_1152120000_7,0.02756875735719695,0.01237837205338143,0.0023384647507131767,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.9926025 47.56223869624467, 9.992519999999995 47.56223869624467, 9.992339099999997 47.56224689624468, 9.992238299999999 47.56223509624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_4_LVCableDist_mvgd_33535_lvgd_1152120000_building_34328721,BranchTee_mvgd_33535_lvgd_1152120000_4,BranchTee_mvgd_33535_lvgd_1152120000_building_34328721,0.028613109608638325,0.024836179140298065,0.0024360389169514433,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996064336421387 47.56125696783934, 9.995790499999995 47.56143549624464)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_5_LVCableDist_mvgd_33535_lvgd_1152120000_9,BranchTee_mvgd_33535_lvgd_1152120000_5,BranchTee_mvgd_33535_lvgd_1152120000_9,0.09751627673286634,0.04378480825305699,0.008271623301913859,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.996169599999998 47.56210909624463, 9.9962154 47.56222499624469, 9.996304000000002 47.562358796244716, 9.9965606 47.56263369624472, 9.996817999999992 47.56285999624469)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_5_LVCableDist_mvgd_33535_lvgd_1152120000_building_441575,BranchTee_mvgd_33535_lvgd_1152120000_5,BranchTee_mvgd_33535_lvgd_1152120000_building_441575,0.013403729789260549,0.011634437457078156,0.001141155499893042,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996978351581129 47.5628076301462, 9.996817999999992 47.56285999624469)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_6_LVCableDist_mvgd_33535_lvgd_1152120000_building_441573,BranchTee_mvgd_33535_lvgd_1152120000_6,BranchTee_mvgd_33535_lvgd_1152120000_building_441573,0.022045137939754243,0.019135179731706684,0.0018768604561103408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993050450008276 47.562979996281854, 9.993293500000002 47.563090596244734)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_7_LVCableDist_mvgd_33535_lvgd_1152120000_building_441553,BranchTee_mvgd_33535_lvgd_1152120000_7,BranchTee_mvgd_33535_lvgd_1152120000_building_441553,0.014177847994077062,0.01230637205885889,0.0012070617260616333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992634050021643 47.5623644963102, 9.9926025 47.56223869624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_7_LVCableDist_mvgd_33535_lvgd_1152120000_building_441557,BranchTee_mvgd_33535_lvgd_1152120000_7,BranchTee_mvgd_33535_lvgd_1152120000_building_441557,0.024846474616891726,0.021566739967462018,0.002115358307561276,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992931087558036 47.562258971243665, 9.9926025 47.56223869624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_8_LVCableDist_mvgd_33535_lvgd_1152120000_9,BranchTee_mvgd_33535_lvgd_1152120000_8,BranchTee_mvgd_33535_lvgd_1152120000_9,0.06297184618451937,0.0282743589368492,0.005341461012619358,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.996958999999999 47.562296096244644, 9.996169599999998 47.56210909624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_8_LVCableDist_mvgd_33535_lvgd_1152120000_building_34328722,BranchTee_mvgd_33535_lvgd_1152120000_8,BranchTee_mvgd_33535_lvgd_1152120000_building_34328722,0.048220008809522576,0.041854967646665596,0.004105314649208047,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99686852119222 47.56186645747909, 9.996958999999999 47.562296096244644)" +Branch_LVCableDist_mvgd_33535_lvgd_1152120000_9_LVCableDist_mvgd_33535_lvgd_1152120000_building_34328723,BranchTee_mvgd_33535_lvgd_1152120000_9,BranchTee_mvgd_33535_lvgd_1152120000_building_34328723,0.023560489164861594,0.020450504595099863,0.002005873157200931,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996262115365557 47.56190652840592, 9.996169599999998 47.56210909624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1152130000_building_441580_LVStation_mvgd_33535_lvgd_1152130000,BusBar_mvgd_33535_lvgd_1152130000_LV,BranchTee_mvgd_33535_lvgd_1152130000_building_441580,0.012000105451307447,0.010416091531734863,0.0010216549087723314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999322236003627 47.559726696088475, 9.999182900000005 47.55977909624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1152130000_building_441597_LVStation_mvgd_33535_lvgd_1152130000,BusBar_mvgd_33535_lvgd_1152130000_LV,BranchTee_mvgd_33535_lvgd_1152130000_building_441597,0.02395491991326708,0.020792870484715828,0.0020394538712966816,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.999303732809716 47.55957965663371, 9.999182900000005 47.55977909624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1152140000_1_LVCableDist_mvgd_33535_lvgd_1152140000_building_441842,BranchTee_mvgd_33535_lvgd_1152140000_1,BranchTee_mvgd_33535_lvgd_1152140000_building_441842,0.012832779741262904,0.011138852815416201,0.0010925464337837906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002617949994136 47.56570069628145, 10.002517899999997 47.565607196244954)" +Branch_LVCableDist_mvgd_33535_lvgd_1152140000_1_LVStation_mvgd_33535_lvgd_1152140000,BusBar_mvgd_33535_lvgd_1152140000_LV,BranchTee_mvgd_33535_lvgd_1152140000_1,0.00535401033344087,0.0046472809694266745,0.00045582523928418343,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002517899999997 47.565607196244954, 10.002536000000003 47.56556059624496)" +Branch_LVCableDist_mvgd_33535_lvgd_1152140000_2_LVCableDist_mvgd_33535_lvgd_1152140000_building_441836,BranchTee_mvgd_33535_lvgd_1152140000_2,BranchTee_mvgd_33535_lvgd_1152140000_building_441836,0.011086825171975439,0.009623364249274681,0.000943900818672827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002390999997852 47.565464796408506, 10.002537000000002 47.565451896244916)" +Branch_LVCableDist_mvgd_33535_lvgd_1152140000_2_LVCableDist_mvgd_33535_lvgd_1152140000_building_441838,BranchTee_mvgd_33535_lvgd_1152140000_2,BranchTee_mvgd_33535_lvgd_1152140000_building_441838,0.009601170491646422,0.008333815986749095,0.0008174163970935686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002622099999392 47.56551624627893, 10.002537000000002 47.565451896244916)" +Branch_LVCableDist_mvgd_33535_lvgd_1152140000_2_LVStation_mvgd_33535_lvgd_1152140000,BusBar_mvgd_33535_lvgd_1152140000_LV,BranchTee_mvgd_33535_lvgd_1152140000_2,0.012077672624705018,0.010483419838243956,0.0010282587576953914,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002536000000003 47.56556059624496, 10.002537000000002 47.565451896244916)" +Branch_LVCableDist_mvgd_33535_lvgd_1152380000_1_LVCableDist_mvgd_33535_lvgd_1152380000_2,BranchTee_mvgd_33535_lvgd_1152380000_1,BranchTee_mvgd_33535_lvgd_1152380000_2,0.1179047534911824,0.10234132603034632,0.010038075970301905,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.976169599999997 47.531793496241974, 9.975811999999998 47.53168309624195, 9.9753626 47.53146959624191, 9.975309 47.53145189624191, 9.974938799999999 47.53136499624194, 9.974894499999998 47.5313533962419, 9.974778600000006 47.53132289624191)" +Branch_LVCableDist_mvgd_33535_lvgd_1152380000_1_LVCableDist_mvgd_33535_lvgd_1152380000_building_431235,BranchTee_mvgd_33535_lvgd_1152380000_1,BranchTee_mvgd_33535_lvgd_1152380000_building_431235,0.04192466395856653,0.03639060831603575,0.0035693468616338877,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974946581962982 47.53168262874287, 9.974778600000006 47.53132289624191)" +Branch_LVCableDist_mvgd_33535_lvgd_1152380000_1_LVStation_mvgd_33535_lvgd_1152380000,BusBar_mvgd_33535_lvgd_1152380000_LV,BranchTee_mvgd_33535_lvgd_1152380000_1,0.035179936414218384,0.030536184807541555,0.002995119907381209,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.974778600000006 47.53132289624191, 9.974717999999996 47.5314425962419, 9.9747038 47.531493496241936, 9.974784100000006 47.531507396241985, 9.974850300000005 47.53157609624192)" +Branch_LVCableDist_mvgd_33535_lvgd_1152380000_2_LVCableDist_mvgd_33535_lvgd_1152380000_building_431479,BranchTee_mvgd_33535_lvgd_1152380000_2,BranchTee_mvgd_33535_lvgd_1152380000_building_431479,0.016268457955006654,0.014121021504945775,0.0013850503227101185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.976068610556169 47.53166407777434, 9.976169599999997 47.531793496241974)" +Branch_LVCableDist_mvgd_33535_lvgd_1152390000_1_LVCableDist_mvgd_33535_lvgd_1152390000_2,BranchTee_mvgd_33535_lvgd_1152390000_1,BranchTee_mvgd_33535_lvgd_1152390000_2,0.18628791065062253,0.16169790644474036,0.015860023825075124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979300200000006 47.52553259624139, 9.979202900000006 47.52561229624142, 9.978974299999994 47.52573719624144, 9.978766199999997 47.52584929624141, 9.9786671 47.52589149624142, 9.979133999999998 47.526332696241454, 9.979039200000004 47.52635029624147, 9.978810799999998 47.52639259624145, 9.978409200000003 47.52641739624148, 9.978318800000002 47.5264524962415)" +Branch_LVCableDist_mvgd_33535_lvgd_1152390000_1_LVCableDist_mvgd_33535_lvgd_1152390000_building_431380,BranchTee_mvgd_33535_lvgd_1152390000_1,BranchTee_mvgd_33535_lvgd_1152390000_building_431380,0.021613671013960768,0.018760666440117948,0.0018401265870207335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979080984877024 47.52540715211073, 9.979300200000006 47.52553259624139)" +Branch_LVCableDist_mvgd_33535_lvgd_1152390000_2_LVCableDist_mvgd_33535_lvgd_1152390000_building_431374,BranchTee_mvgd_33535_lvgd_1152390000_2,BranchTee_mvgd_33535_lvgd_1152390000_building_431374,0.20502080731204128,0.17795806074685183,0.017454889462491508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.975648685553173 47.526806587102634, 9.978318800000002 47.5264524962415)" +Branch_LVCableDist_mvgd_33535_lvgd_1152390000_2_LVStation_mvgd_33535_lvgd_1152390000,BusBar_mvgd_33535_lvgd_1152390000_LV,BranchTee_mvgd_33535_lvgd_1152390000_2,0.2671905687412063,0.23192141366736704,0.0227478464451646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9758199 47.526846996241524, 9.975900400000006 47.52691189624155, 9.9760357 47.5269627962415, 9.976251300000005 47.52695859624153, 9.976524099999997 47.526904096241545, 9.9767117 47.52685749624151, 9.976891599999998 47.52681069624155, 9.977036900000005 47.52682529624154, 9.977118700000002 47.5268693962415, 9.977183500000004 47.526938996241526, 9.977209200000003 47.527017996241575, 9.977244200000003 47.527105896241544, 9.9772921 47.52716629624157, 9.977371700000004 47.527205096241545, 9.977441499999996 47.527212496241596, 9.977564100000006 47.527192596241555, 9.977705599999995 47.526954296241506, 9.977796299999998 47.526823996241546, 9.977904500000001 47.52673089624151, 9.978147199999999 47.52654519624149, 9.978318800000002 47.5264524962415)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_1_LVCableDist_mvgd_33535_lvgd_1152400000_2,BranchTee_mvgd_33535_lvgd_1152400000_1,BranchTee_mvgd_33535_lvgd_1152400000_2,0.07392603737778307,0.0641678004439157,0.0062938529398397945,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9812279 47.52819909624165, 9.981327000000002 47.5280314962416, 9.981494199999997 47.52779469624162, 9.9815834 47.5277360962416, 9.9817404 47.52764829624163)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_1_LVCableDist_mvgd_33535_lvgd_1152400000_3,BranchTee_mvgd_33535_lvgd_1152400000_1,BranchTee_mvgd_33535_lvgd_1152400000_3,0.2241041940224352,0.19452244041147376,0.019079594827605646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9812279 47.52819909624165, 9.981477500000004 47.528283596241685, 9.982212100000002 47.528676196241676, 9.982774100000004 47.529052796241714, 9.9829057 47.52894959624167, 9.982994200000007 47.52890789624171, 9.983106900000005 47.528887096241704, 9.983231600000003 47.52888339624172, 9.983330800000003 47.52886079624168, 9.983471599999994 47.528765696241685, 9.983537300000004 47.52870099624169)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_1_LVStation_mvgd_33535_lvgd_1152400000,BusBar_mvgd_33535_lvgd_1152400000_LV,BranchTee_mvgd_33535_lvgd_1152400000_1,0.16912633783813102,0.14680166124349772,0.014398936239030167,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979701499999996 47.52925419624172, 9.979927300000005 47.52902469624172, 9.980193700000001 47.5287215962417, 9.980426 47.52857369624168, 9.980513000000002 47.528541796241676, 9.980628799999993 47.52850519624165, 9.980909899999999 47.528421296241646, 9.981040199999997 47.52836909624166, 9.9811368 47.52829119624162, 9.9812279 47.52819909624165)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_2_LVCableDist_mvgd_33535_lvgd_1152400000_building_431497,BranchTee_mvgd_33535_lvgd_1152400000_2,BranchTee_mvgd_33535_lvgd_1152400000_building_431497,0.012928476481735748,0.01122191758614663,0.001100693782576208,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.98186999997535 47.52772454633524, 9.9817404 47.52764829624163)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_3_LVCableDist_mvgd_33535_lvgd_1152400000_building_431498,BranchTee_mvgd_33535_lvgd_1152400000_3,BranchTee_mvgd_33535_lvgd_1152400000_building_431498,0.03610064210260593,0.03133535734506195,0.0030735061757263143,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983734602165184 47.52840490996728, 9.983537300000004 47.52870099624169)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_3_LVCableDist_mvgd_33535_lvgd_1152400000_building_431502,BranchTee_mvgd_33535_lvgd_1152400000_3,BranchTee_mvgd_33535_lvgd_1152400000_building_431502,0.01787188564064845,0.015512796736082855,0.0015215616035938143,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983342489059059 47.528609248051744, 9.983537300000004 47.52870099624169)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_4_LVCableDist_mvgd_33535_lvgd_1152400000_5,BranchTee_mvgd_33535_lvgd_1152400000_4,BranchTee_mvgd_33535_lvgd_1152400000_5,0.020908439117035774,0.01814852515358705,0.0017800851455317555,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978558300000003 47.529268396241726, 9.978690999999996 47.52919289624174, 9.978753099999997 47.52913609624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_4_LVCableDist_mvgd_33535_lvgd_1152400000_6,BranchTee_mvgd_33535_lvgd_1152400000_4,BranchTee_mvgd_33535_lvgd_1152400000_6,0.055111994212571104,0.04783721097651172,0.004692078719472498,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978753099999997 47.52913609624173, 9.978747900000004 47.52909299624172, 9.978714700000005 47.52904049624171, 9.9786597 47.52900779624172, 9.978581 47.52898409624171, 9.978496600000001 47.52897839624169, 9.978376200000005 47.5290096962417, 9.978255699999998 47.529034696241744, 9.9781941 47.52907379624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_4_LVStation_mvgd_33535_lvgd_1152400000,BusBar_mvgd_33535_lvgd_1152400000_LV,BranchTee_mvgd_33535_lvgd_1152400000_4,0.08372952123777572,0.07267722443438933,0.007128493722728962,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978753099999997 47.52913609624173, 9.979014100000006 47.52919369624178, 9.979308299999996 47.52931069624175, 9.979491400000004 47.52938299624176, 9.9796335 47.529303696241705, 9.979701499999996 47.52925419624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_5_LVCableDist_mvgd_33535_lvgd_1152400000_building_431474,BranchTee_mvgd_33535_lvgd_1152400000_5,BranchTee_mvgd_33535_lvgd_1152400000_building_431474,0.014542738219304747,0.01262309677435652,0.001238127443882162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978372129379084 47.5292338943078, 9.978558300000003 47.529268396241726)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_6_LVCableDist_mvgd_33535_lvgd_1152400000_building_431468,BranchTee_mvgd_33535_lvgd_1152400000_6,BranchTee_mvgd_33535_lvgd_1152400000_building_431468,0.010442128283141495,0.009063767349766817,0.0008890131559085231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978088932197652 47.52901259471533, 9.9781941 47.52907379624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_7_LVCableDist_mvgd_33535_lvgd_1152400000_building_431485,BranchTee_mvgd_33535_lvgd_1152400000_7,BranchTee_mvgd_33535_lvgd_1152400000_building_431485,0.02311621958304312,0.02006487859808143,0.001968049306325219,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979699105985135 47.52969956428302, 9.979984700000003 47.52962359624176)" +Branch_LVCableDist_mvgd_33535_lvgd_1152400000_7_LVStation_mvgd_33535_lvgd_1152400000,BusBar_mvgd_33535_lvgd_1152400000_LV,BranchTee_mvgd_33535_lvgd_1152400000_7,0.047069487733274344,0.04085631535248213,0.004007362551206528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.979701499999996 47.52925419624172, 9.979865199999999 47.529384496241775, 9.979984700000003 47.52962359624176)" +Branch_LVCableDist_mvgd_33535_lvgd_1153210000_building_431287_LVStation_mvgd_33535_lvgd_1153210000,BusBar_mvgd_33535_lvgd_1153210000_LV,BranchTee_mvgd_33535_lvgd_1153210000_building_431287,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.973786725536701 47.547339920043285, 9.973786725536701 47.547339920043285)" +Branch_LVCableDist_mvgd_33535_lvgd_1155260000_1_LVCableDist_mvgd_33535_lvgd_1155260000_building_431492,BranchTee_mvgd_33535_lvgd_1155260000_1,BranchTee_mvgd_33535_lvgd_1155260000_building_431492,0.01286667946562074,0.011168277776158803,0.0010954325600713256,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.978031500002471 47.53433644626589, 9.978123299999996 47.53443409624222)" +Branch_LVCableDist_mvgd_33535_lvgd_1155260000_1_LVCableDist_mvgd_33535_lvgd_1155260000_building_431494,BranchTee_mvgd_33535_lvgd_1155260000_1,BranchTee_mvgd_33535_lvgd_1155260000_building_431494,0.01884561851551239,0.016357996871464754,0.001604462456046686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977880271259915 47.534474208615016, 9.978123299999996 47.53443409624222)" +Branch_LVCableDist_mvgd_33535_lvgd_1155260000_1_LVStation_mvgd_33535_lvgd_1155260000,BusBar_mvgd_33535_lvgd_1155260000_LV,BranchTee_mvgd_33535_lvgd_1155260000_1,0.02272118580675762,0.019721989280265615,0.0019344172521478134,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977849699999993 47.534348096242205, 9.978123299999996 47.53443409624222)" +Branch_LVCableDist_mvgd_33535_lvgd_1155260000_2_LVCableDist_mvgd_33535_lvgd_1155260000_building_431482,BranchTee_mvgd_33535_lvgd_1155260000_2,BranchTee_mvgd_33535_lvgd_1155260000_building_431482,0.008874706506260408,0.007703245247434034,0.0007555673158727808,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977548432186579 47.534328494410296, 9.977604900000003 47.5342583962422)" +Branch_LVCableDist_mvgd_33535_lvgd_1155260000_2_LVStation_mvgd_33535_lvgd_1155260000,BusBar_mvgd_33535_lvgd_1155260000_LV,BranchTee_mvgd_33535_lvgd_1155260000_2,0.020964807428131504,0.018197452847618145,0.0017848841835038662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.977604900000003 47.5342583962422, 9.977849699999993 47.534348096242205)" +Branch_LVCableDist_mvgd_33535_lvgd_1155270000_1_LVCableDist_mvgd_33535_lvgd_1155270000_building_431490,BranchTee_mvgd_33535_lvgd_1155270000_1,BranchTee_mvgd_33535_lvgd_1155270000_building_431490,0.008442488328773352,0.007328079869375269,0.0007187694873468514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980912275599302 47.53577585938846, 9.980810600000005 47.535807796242295)" +Branch_LVCableDist_mvgd_33535_lvgd_1155270000_1_LVCableDist_mvgd_33535_lvgd_1155270000_building_431509,BranchTee_mvgd_33535_lvgd_1155270000_1,BranchTee_mvgd_33535_lvgd_1155270000_building_431509,0.02867782769028659,0.02489235443516876,0.0024415488306826663,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981126873670116 47.535951408660544, 9.980810600000005 47.535807796242295)" +Branch_LVCableDist_mvgd_33535_lvgd_1155270000_1_LVStation_mvgd_33535_lvgd_1155270000,BusBar_mvgd_33535_lvgd_1155270000_LV,BranchTee_mvgd_33535_lvgd_1155270000_1,0.03521094857923233,0.03056310336677366,0.0029977601950642394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980810600000005 47.535807796242295, 9.980950000000002 47.5358514962423, 9.981031300000003 47.53586989624234, 9.981248 47.53591809624236)" +Branch_LVCableDist_mvgd_33535_lvgd_1155780000_building_431366_LVStation_mvgd_33535_lvgd_1155780000,BusBar_mvgd_33535_lvgd_1155780000_LV,BranchTee_mvgd_33535_lvgd_1155780000_building_431366,0.10071341424341254,0.08741924356328208,0.008574454154466869,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.980119449996396 47.51801354635576, 9.981439909960994 47.51787453129527)" +Branch_LVCableDist_mvgd_33535_lvgd_1155780000_building_431370_LVStation_mvgd_33535_lvgd_1155780000,BusBar_mvgd_33535_lvgd_1155780000_LV,BranchTee_mvgd_33535_lvgd_1155780000_building_431370,0.025270284857476275,0.021934607256289405,0.002151440308210196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981305604293407 47.51808293024844, 9.981439909960994 47.51787453129527)" +Branch_LVCableDist_mvgd_33535_lvgd_1155780000_building_431375_LVStation_mvgd_33535_lvgd_1155780000,BusBar_mvgd_33535_lvgd_1155780000_LV,BranchTee_mvgd_33535_lvgd_1155780000_building_431375,0.08280692314798291,0.07187640929244916,0.007049946340700906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.982510206096112 47.51770621632055, 9.981439909960994 47.51787453129527)" +Branch_LVCableDist_mvgd_33535_lvgd_1156440000_1_LVCableDist_mvgd_33535_lvgd_1156440000_building_431323,BranchTee_mvgd_33535_lvgd_1156440000_1,BranchTee_mvgd_33535_lvgd_1156440000_building_431323,0.023786908732868456,0.02064703678012982,0.0020251498763960213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981492924728387 47.514069300293, 9.981638099999993 47.514259396240355)" +Branch_LVCableDist_mvgd_33535_lvgd_1156440000_1_LVCableDist_mvgd_33535_lvgd_1156440000_building_431327,BranchTee_mvgd_33535_lvgd_1156440000_1,BranchTee_mvgd_33535_lvgd_1156440000_building_431327,0.018982127963557867,0.016476487072368227,0.0016160844828909805,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981677378630271 47.51409063896152, 9.981638099999993 47.514259396240355)" +Branch_LVCableDist_mvgd_33535_lvgd_1156440000_1_LVCableDist_mvgd_33535_lvgd_1156440000_building_431335,BranchTee_mvgd_33535_lvgd_1156440000_1,BranchTee_mvgd_33535_lvgd_1156440000_building_431335,0.03471804048259814,0.030135259138895185,0.0029557953991261273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981800728950107 47.51396704326229, 9.981638099999993 47.514259396240355)" +Branch_LVCableDist_mvgd_33535_lvgd_1156440000_1_LVStation_mvgd_33535_lvgd_1156440000,BusBar_mvgd_33535_lvgd_1156440000_LV,BranchTee_mvgd_33535_lvgd_1156440000_1,0.011644669268172711,0.010107572924773914,0.0009913940812547415,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.981638099999993 47.514259396240355, 9.981484300000004 47.51426929624038)" +Branch_LVCableDist_mvgd_33535_lvgd_1156440000_2_LVCableDist_mvgd_33535_lvgd_1156440000_building_431338,BranchTee_mvgd_33535_lvgd_1156440000_2,BranchTee_mvgd_33535_lvgd_1156440000_building_431338,0.011666859838590211,0.010126834339896303,0.0009932833234191116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983846599994347 47.51509439626374, 9.983874399999996 47.51519769624048)" +Branch_LVCableDist_mvgd_33535_lvgd_1156440000_2_LVCableDist_mvgd_33535_lvgd_1156440000_building_431340,BranchTee_mvgd_33535_lvgd_1156440000_2,BranchTee_mvgd_33535_lvgd_1156440000_building_431340,0.01612803193503325,0.01399913171960886,0.0013730948500513714,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983974349996945 47.51506934626244, 9.983874399999996 47.51519769624048)" +Branch_LVCableDist_mvgd_33535_lvgd_1156440000_2_LVStation_mvgd_33535_lvgd_1156440000,BusBar_mvgd_33535_lvgd_1156440000_LV,BranchTee_mvgd_33535_lvgd_1156440000_2,0.3723031826942525,0.32315916257861116,0.03169683597319582,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983874399999996 47.51519769624048, 9.9837161 47.515253396240475, 9.9834906 47.515302096240426, 9.981767199999998 47.514892396240434, 9.981558999999997 47.51484019624045, 9.981434799999995 47.514825896240446, 9.981315800000004 47.51482939624046, 9.981116500000002 47.514876196240415, 9.980809499999996 47.51497269624048, 9.980595200000002 47.515027596240415, 9.9806687 47.51497329624046, 9.980841600000005 47.51489299624043, 9.980978499999994 47.51479769624042, 9.9811585 47.51461069624042, 9.981409100000004 47.51436479624037, 9.981436299999999 47.51429289624036, 9.981484300000004 47.51426929624038)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_10_LVCableDist_mvgd_33535_lvgd_1156450000_building_431381,BranchTee_mvgd_33535_lvgd_1156450000_10,BranchTee_mvgd_33535_lvgd_1156450000_building_431381,0.025040536522561527,0.021735185701583407,0.00213188018725123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989761142324323 47.51339690783981, 9.989484699999997 47.5135218962403)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_10_LVStation_mvgd_33535_lvgd_1156450000,BusBar_mvgd_33535_lvgd_1156450000_LV,BranchTee_mvgd_33535_lvgd_1156450000_10,0.0231033932981881,0.02005374538282727,0.0019669573128476103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989484699999997 47.5135218962403, 9.989419099999996 47.51346749624032, 9.989299899999995 47.51335609624034)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_1_LVCableDist_mvgd_33535_lvgd_1156450000_3,BranchTee_mvgd_33535_lvgd_1156450000_1,BranchTee_mvgd_33535_lvgd_1156450000_3,0.17384725768103637,0.15089941966713957,0.014800861951349591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989169700000003 47.51020759623996, 9.989393900000003 47.510314496239985, 9.989579500000001 47.51038919624006, 9.989642400000005 47.51042679624004, 9.989684000000002 47.51046629624002, 9.989688500000005 47.510533296240034, 9.989667399999998 47.5107261962401, 9.989692599999998 47.51077469624006, 9.9898115 47.51084509624002, 9.989862399999998 47.51087639624007, 9.989881799999996 47.510904496240066, 9.9898807 47.510922396240076, 9.989845599999995 47.51094639624012, 9.989750800000007 47.51096879624006, 9.989689199999997 47.51099439624011, 9.989612300000006 47.51106959624013, 9.9895736 47.51111309624009, 9.989499199999994 47.51120859624009, 9.989424799999997 47.511318496240094, 9.989395 47.511406396240105)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_1_LVCableDist_mvgd_33535_lvgd_1156450000_building_431357,BranchTee_mvgd_33535_lvgd_1156450000_1,BranchTee_mvgd_33535_lvgd_1156450000_building_431357,0.019064090607015423,0.016547630646889386,0.0016230625496558226,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988947795545378 47.510289909224035, 9.989169700000003 47.51020759623996)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_2_LVCableDist_mvgd_33535_lvgd_1156450000_4,BranchTee_mvgd_33535_lvgd_1156450000_2,BranchTee_mvgd_33535_lvgd_1156450000_4,0.16096094257092833,0.1397140981515658,0.013703757668253934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989566499999999 47.51309989624025, 9.989649400000001 47.51294969624025, 9.989692600000001 47.51285619624026, 9.9897243 47.51272849624028, 9.9896959 47.51255429624025, 9.989649799999997 47.512370896240235, 9.989583900000003 47.512115596240186, 9.989493299999994 47.51188559624017, 9.989432199999998 47.51168759624016)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_2_LVCableDist_mvgd_33535_lvgd_1156450000_building_431351,BranchTee_mvgd_33535_lvgd_1156450000_2,BranchTee_mvgd_33535_lvgd_1156450000_building_431351,0.02414763730546976,0.02096014918114775,0.0020558612829272367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989277535010302 47.51300606031426, 9.989566499999999 47.51309989624025)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_2_LVStation_mvgd_33535_lvgd_1156450000,BusBar_mvgd_33535_lvgd_1156450000_LV,BranchTee_mvgd_33535_lvgd_1156450000_2,0.03569748657365293,0.030985418345930743,0.003039182658585166,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989299899999995 47.51335609624034, 9.989447300000005 47.513272296240324, 9.989487999999998 47.51322649624027, 9.989566499999999 47.51309989624025)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_3_LVCableDist_mvgd_33535_lvgd_1156450000_4,BranchTee_mvgd_33535_lvgd_1156450000_3,BranchTee_mvgd_33535_lvgd_1156450000_4,0.03194752345462709,0.027730450358616314,0.002719921445105535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989395 47.511406396240105, 9.9893813 47.51151909624013, 9.989425400000004 47.511592696240186, 9.989432199999998 47.51168759624016)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_3_LVCableDist_mvgd_33535_lvgd_1156450000_building_431336,BranchTee_mvgd_33535_lvgd_1156450000_3,BranchTee_mvgd_33535_lvgd_1156450000_building_431336,0.015721310063257523,0.013646097134907529,0.0013384677046074562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.98918813832318 47.51142444046303, 9.989395 47.511406396240105)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_4_LVCableDist_mvgd_33535_lvgd_1156450000_building_431339,BranchTee_mvgd_33535_lvgd_1156450000_4,BranchTee_mvgd_33535_lvgd_1156450000_building_431339,0.021303693646575264,0.01849160608522733,0.0018137359940144679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989150340780386 47.511701691576306, 9.989432199999998 47.51168759624016)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_4_LVCableDist_mvgd_33535_lvgd_1156450000_building_431347,BranchTee_mvgd_33535_lvgd_1156450000_4,BranchTee_mvgd_33535_lvgd_1156450000_building_431347,0.1560341578989636,0.1354376490563004,0.0132843052088567,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987386800001556 47.51190354626109, 9.989432199999998 47.51168759624016)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_5_LVCableDist_mvgd_33535_lvgd_1156450000_6,BranchTee_mvgd_33535_lvgd_1156450000_5,BranchTee_mvgd_33535_lvgd_1156450000_6,0.051260853318071495,0.04449442068008606,0.004364203517441609,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987625100000002 47.51395179624036, 9.987572499999997 47.51376349624037, 9.987832199999994 47.51374449624035, 9.987961099999993 47.513714296240295)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_5_LVCableDist_mvgd_33535_lvgd_1156450000_building_431361,BranchTee_mvgd_33535_lvgd_1156450000_5,BranchTee_mvgd_33535_lvgd_1156450000_building_431361,0.017224110325816066,0.014950527762808346,0.0014664118523799246,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987457833458542 47.51405741858817, 9.987625100000002 47.51395179624036)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_5_LVCableDist_mvgd_33535_lvgd_1156450000_building_431364,BranchTee_mvgd_33535_lvgd_1156450000_5,BranchTee_mvgd_33535_lvgd_1156450000_building_431364,0.045661303712257975,0.03963401162223992,0.003887473761615151,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987298012998888 47.51429771483421, 9.987625100000002 47.51395179624036)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_6_LVCableDist_mvgd_33535_lvgd_1156450000_7,BranchTee_mvgd_33535_lvgd_1156450000_6,BranchTee_mvgd_33535_lvgd_1156450000_7,0.04794387364703995,0.04161528232563067,0.004081805285446224,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987961099999993 47.513714296240295, 9.987924300000001 47.51349979624033, 9.987909000000004 47.51333239624033, 9.987962599999998 47.5133012962403)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_6_LVCableDist_mvgd_33535_lvgd_1156450000_9,BranchTee_mvgd_33535_lvgd_1156450000_6,BranchTee_mvgd_33535_lvgd_1156450000_9,0.09753079345861963,0.08465672872208184,0.008303494856589178,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987961099999993 47.513714296240295, 9.988077299999999 47.51366399624033, 9.988499799999992 47.5134167962403, 9.988712200000004 47.51337449624028, 9.989088899999999 47.51336849624029)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_7_LVCableDist_mvgd_33535_lvgd_1156450000_8,BranchTee_mvgd_33535_lvgd_1156450000_7,BranchTee_mvgd_33535_lvgd_1156450000_8,0.030612326722780737,0.02657149959537368,0.002606246586096777,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987962599999998 47.5133012962403, 9.988334699999998 47.51319089624028)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_7_LVCableDist_mvgd_33535_lvgd_1156450000_building_431342,BranchTee_mvgd_33535_lvgd_1156450000_7,BranchTee_mvgd_33535_lvgd_1156450000_building_431342,0.1725326566092231,0.14975834593680565,0.014688940548363163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987018911471736 47.51188653435099, 9.987962599999998 47.5133012962403)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_8_LVCableDist_mvgd_33535_lvgd_1156450000_building_431348,BranchTee_mvgd_33535_lvgd_1156450000_8,BranchTee_mvgd_33535_lvgd_1156450000_building_431348,0.010620168172152812,0.009218305973428641,0.0009041709665880847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988340699977563 47.513095396283795, 9.988334699999998 47.51319089624028)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_9_LVCableDist_mvgd_33535_lvgd_1156450000_building_431352,BranchTee_mvgd_33535_lvgd_1156450000_9,BranchTee_mvgd_33535_lvgd_1156450000_building_431352,0.029737775868099052,0.025812389453509978,0.0025317898092557674,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988940836360456 47.513120405441725, 9.989088899999999 47.51336849624029)" +Branch_LVCableDist_mvgd_33535_lvgd_1156450000_9_LVStation_mvgd_33535_lvgd_1156450000,BusBar_mvgd_33535_lvgd_1156450000_LV,BranchTee_mvgd_33535_lvgd_1156450000_9,0.015963858698498146,0.01385662935029639,0.0013591176067949918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989299899999995 47.51335609624034, 9.989088899999999 47.51336849624029)" +Branch_LVCableDist_mvgd_33535_lvgd_1156570000_building_431540_LVStation_mvgd_33535_lvgd_1156570000,BusBar_mvgd_33535_lvgd_1156570000_LV,BranchTee_mvgd_33535_lvgd_1156570000_building_431540,0.01818685795235829,0.015786192702646997,0.0015483774519787687,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986340299946665 47.54537804632211, 9.9865232 47.54548489624321)" +Branch_LVCableDist_mvgd_33535_lvgd_1157260000_1_LVCableDist_mvgd_33535_lvgd_1157260000_building_431530,BranchTee_mvgd_33535_lvgd_1157260000_1,BranchTee_mvgd_33535_lvgd_1157260000_building_431530,0.016266474192747977,0.014119299599305244,0.0013848814308234899,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984421066239983 47.54316464564148, 9.984585300000004 47.54306959624296)" +Branch_LVCableDist_mvgd_33535_lvgd_1157260000_1_LVStation_mvgd_33535_lvgd_1157260000,BusBar_mvgd_33535_lvgd_1157260000_LV,BranchTee_mvgd_33535_lvgd_1157260000_1,0.01961928630999662,0.017029540517077064,0.001670330335558341,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984585300000004 47.54306959624296, 9.984665500000002 47.54313429624299, 9.984748999999997 47.54320689624296)" +Branch_LVCableDist_mvgd_33535_lvgd_1157260000_2_LVCableDist_mvgd_33535_lvgd_1157260000_building_431535,BranchTee_mvgd_33535_lvgd_1157260000_2,BranchTee_mvgd_33535_lvgd_1157260000_building_431535,0.011688821846622064,0.010145897362867952,0.0009951531064308764,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984388254656555 47.543446411914815, 9.984369299999992 47.543341996243015)" +Branch_LVCableDist_mvgd_33535_lvgd_1157260000_2_LVCableDist_mvgd_33535_lvgd_1157260000_building_431538,BranchTee_mvgd_33535_lvgd_1157260000_2,BranchTee_mvgd_33535_lvgd_1157260000_building_431538,0.03420821904939895,0.029692734134878287,0.002912390649731317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984807963741797 47.543421589172794, 9.984369299999992 47.543341996243015)" +Branch_LVCableDist_mvgd_33535_lvgd_1157260000_2_LVStation_mvgd_33535_lvgd_1157260000,BusBar_mvgd_33535_lvgd_1157260000_LV,BranchTee_mvgd_33535_lvgd_1157260000_2,0.032396672227436016,0.02812031149341446,0.002758160696449723,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.984369299999992 47.543341996243015, 9.9845294 47.543297296243004, 9.984748999999997 47.54320689624296)" +Branch_LVCableDist_mvgd_33535_lvgd_1157730000_1_LVCableDist_mvgd_33535_lvgd_1157730000_building_431515,BranchTee_mvgd_33535_lvgd_1157730000_1,BranchTee_mvgd_33535_lvgd_1157730000_building_431515,0.00916365912494549,0.007954056120452685,0.0007801679214657984,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.988385961406633 47.5375317765634, 9.988297800000005 47.537588596242514)" +Branch_LVCableDist_mvgd_33535_lvgd_1157730000_1_LVCableDist_mvgd_33535_lvgd_1157730000_building_431523,BranchTee_mvgd_33535_lvgd_1157730000_1,BranchTee_mvgd_33535_lvgd_1157730000_building_431523,0.270012989948079,0.23437127527493257,0.02298813937361636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.991814257559176 47.53711941315987, 9.988297800000005 47.537588596242514)" +Branch_LVCableDist_mvgd_33535_lvgd_1157730000_1_LVCableDist_mvgd_33535_lvgd_1157730000_building_431525,BranchTee_mvgd_33535_lvgd_1157730000_1,BranchTee_mvgd_33535_lvgd_1157730000_building_431525,0.2579342357418081,0.22388691662388946,0.02195978853313716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99171130000827 47.53741064626269, 9.988297800000005 47.537588596242514)" +Branch_LVCableDist_mvgd_33535_lvgd_1157730000_1_LVStation_mvgd_33535_lvgd_1157730000,BusBar_mvgd_33535_lvgd_1157730000_LV,BranchTee_mvgd_33535_lvgd_1157730000_1,0.3239881759162757,0.2812217366953273,0.027583433466661148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.991805300000005 47.53730969624246, 9.9915022 47.53732419624249, 9.9912742 47.537378496242454, 9.991042200000006 47.537417596242435, 9.990875899999997 47.537494396242494, 9.990794099999993 47.53752699624243, 9.990620600000002 47.53757909624249, 9.990351499999997 47.53761749624249, 9.990040800000001 47.53778139624249, 9.989912199999996 47.53782169624252, 9.989770200000004 47.537825896242516, 9.989635300000003 47.537804096242525, 9.989541500000007 47.53773889624251, 9.989439500000003 47.537664596242486, 9.989268700000004 47.537615396242515, 9.9887583 47.53761029624247, 9.988583900000002 47.537512496242485, 9.988437300000005 47.53742699624244, 9.988233400000002 47.53744509624244, 9.988160999999996 47.53749579624247, 9.9881394 47.537519296242465, 9.988297800000005 47.537588596242514)" +Branch_LVCableDist_mvgd_33535_lvgd_1157740000_1_LVCableDist_mvgd_33535_lvgd_1157740000_building_431550,BranchTee_mvgd_33535_lvgd_1157740000_1,BranchTee_mvgd_33535_lvgd_1157740000_building_431550,0.01162996634857995,0.010094810790567397,0.0009901423164234923,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.994283312164429 47.54082012704494, 9.9941455 47.5408672962428)" +Branch_LVCableDist_mvgd_33535_lvgd_1157740000_1_LVStation_mvgd_33535_lvgd_1157740000,BusBar_mvgd_33535_lvgd_1157740000_LV,BranchTee_mvgd_33535_lvgd_1157740000_1,0.16482939296509427,0.14307191309370182,0.014033106551943226,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.9941455 47.5408672962428, 9.994028800000002 47.540809896242784, 9.993933599999995 47.54075949624277, 9.993831899999998 47.54071659624279, 9.9936496 47.54065999624275, 9.993423999999994 47.54059019624273, 9.993295099999994 47.54053239624274, 9.993224099999999 47.54048389624274, 9.993143999999997 47.54039499624274, 9.993060999999996 47.54033309624275, 9.992854900000006 47.54024969624273, 9.992677799999997 47.540107096242714, 9.992445600000002 47.53997049624272)" +Branch_LVCableDist_mvgd_33535_lvgd_1157740000_2_LVCableDist_mvgd_33535_lvgd_1157740000_building_431560,BranchTee_mvgd_33535_lvgd_1157740000_2,BranchTee_mvgd_33535_lvgd_1157740000_building_431560,0.018414503463519076,0.01598378900633456,0.0015677585444934237,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992161416152106 47.539995245386315, 9.992132199999999 47.53983069624266)" +Branch_LVCableDist_mvgd_33535_lvgd_1157740000_2_LVStation_mvgd_33535_lvgd_1157740000,BusBar_mvgd_33535_lvgd_1157740000_LV,BranchTee_mvgd_33535_lvgd_1157740000_2,0.028261737155694112,0.02453118785114249,0.0024061240638849884,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992132199999999 47.53983069624266, 9.992445600000002 47.53997049624272)" +Branch_LVCableDist_mvgd_33535_lvgd_1157740000_3_LVCableDist_mvgd_33535_lvgd_1157740000_building_431558,BranchTee_mvgd_33535_lvgd_1157740000_3,BranchTee_mvgd_33535_lvgd_1157740000_building_431558,0.009559741571979887,0.008297855684478541,0.0008138892564934967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99475780531541 47.53871363020031, 9.994873700000001 47.53867859624256)" +Branch_LVCableDist_mvgd_33535_lvgd_1157740000_3_LVCableDist_mvgd_33535_lvgd_1157740000_building_431562,BranchTee_mvgd_33535_lvgd_1157740000_3,BranchTee_mvgd_33535_lvgd_1157740000_building_431562,0.013883121922040246,0.012050549828330934,0.0011819695850415898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.994908532378346 47.53855589560278, 9.994873700000001 47.53867859624256)" +Branch_LVCableDist_mvgd_33535_lvgd_1157740000_3_LVStation_mvgd_33535_lvgd_1157740000,BusBar_mvgd_33535_lvgd_1157740000_LV,BranchTee_mvgd_33535_lvgd_1157740000_3,0.26887824163702523,0.2333863137409379,0.022891530124063236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.994873700000001 47.53867859624256, 9.994583999999998 47.53860079624261, 9.994425099999999 47.538565396242554, 9.994199700000003 47.53854279624262, 9.994030400000005 47.53856079624253, 9.993933400000003 47.53853549624257, 9.992445600000002 47.53997049624272)" +Branch_LVCableDist_mvgd_33535_lvgd_1159300000_1_LVCableDist_mvgd_33535_lvgd_1159300000_building_448089,BranchTee_mvgd_33535_lvgd_1159300000_1,BranchTee_mvgd_33535_lvgd_1159300000_building_448089,0.023466844601292693,0.02036922111392206,0.0019979005249238053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11749571187476 47.556191766510665, 10.117806599999994 47.556177596244076)" +Branch_LVCableDist_mvgd_33535_lvgd_1159300000_1_LVCableDist_mvgd_33535_lvgd_1159300000_building_448093,BranchTee_mvgd_33535_lvgd_1159300000_1,BranchTee_mvgd_33535_lvgd_1159300000_building_448093,0.022399406250313857,0.019442684625272426,0.0019070218542725774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117733869698569 47.55637307896748, 10.117806599999994 47.556177596244076)" +Branch_LVCableDist_mvgd_33535_lvgd_1159300000_1_LVStation_mvgd_33535_lvgd_1159300000,BusBar_mvgd_33535_lvgd_1159300000_LV,BranchTee_mvgd_33535_lvgd_1159300000_1,0.025606468887722486,0.022226414994543118,0.002180062062089408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117806599999994 47.556177596244076, 10.117572399999995 47.55611529624417, 10.117484600000001 47.55610829624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1159870000_building_422766_LVStation_mvgd_33535_lvgd_1159870000,BusBar_mvgd_33535_lvgd_1159870000_LV,BranchTee_mvgd_33535_lvgd_1159870000_building_422766,0.07534776711793724,0.06540186185836952,0.006414894973501079,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.098051388377712 47.451849654514064, 10.097126999999995 47.45210599623459)" +Branch_LVCableDist_mvgd_33535_lvgd_1159900000_building_441521_LVStation_mvgd_33535_lvgd_1159900000,BusBar_mvgd_33535_lvgd_1159900000_LV,BranchTee_mvgd_33535_lvgd_1159900000_building_441521,0.017147173575558974,0.014883746663585188,0.0014598616758932184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99292417162653 47.552834829635195, 9.993023599999997 47.552695996243806)" +Branch_LVCableDist_mvgd_33535_lvgd_1160850000_building_431431_LVStation_mvgd_33535_lvgd_1160850000,BusBar_mvgd_33535_lvgd_1160850000_LV,BranchTee_mvgd_33535_lvgd_1160850000_building_431431,0.040663481943101,0.03529590232661167,0.0034619734054435205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000375360502472 47.524219371303104, 10.000569899999999 47.52387799624125)" +Branch_LVCableDist_mvgd_33535_lvgd_1160850000_building_431457_LVStation_mvgd_33535_lvgd_1160850000,BusBar_mvgd_33535_lvgd_1160850000_LV,BranchTee_mvgd_33535_lvgd_1160850000_building_431457,0.019333745778153194,0.01678169133543697,0.0016460202253518084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000476800001387 47.523715846286585, 10.000569899999999 47.52387799624125)" +Branch_LVCableDist_mvgd_33535_lvgd_1160850000_building_431462_LVStation_mvgd_33535_lvgd_1160850000,BusBar_mvgd_33535_lvgd_1160850000_LV,BranchTee_mvgd_33535_lvgd_1160850000_building_431462,0.01819488571603711,0.015793160801520212,0.0015490609129868583,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000528845757842 47.52403937335276, 10.000569899999999 47.52387799624125)" +Branch_LVCableDist_mvgd_33535_lvgd_1160950000_building_431392_LVStation_mvgd_33535_lvgd_1160950000,BusBar_mvgd_33535_lvgd_1160950000_LV,BranchTee_mvgd_33535_lvgd_1160950000_building_431392,0.14374957097646743,0.12477462760757373,0.012238430355295211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.994777681017593 47.52404954102437, 9.995877763531064 47.522992575696975)" +Branch_LVCableDist_mvgd_33535_lvgd_1160950000_building_431395_LVStation_mvgd_33535_lvgd_1160950000,BusBar_mvgd_33535_lvgd_1160950000_LV,BranchTee_mvgd_33535_lvgd_1160950000_building_431395,0.05931336932057945,0.05148400457026296,0.005049771868095867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996177396529509 47.52249893017187, 9.995877763531064 47.522992575696975)" +Branch_LVCableDist_mvgd_33535_lvgd_1160950000_building_431403_LVStation_mvgd_33535_lvgd_1160950000,BusBar_mvgd_33535_lvgd_1160950000_LV,BranchTee_mvgd_33535_lvgd_1160950000_building_431403,0.07392424466656312,0.06416624437057679,0.006293700313496193,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996551518678375 47.522509006179554, 9.995877763531064 47.522992575696975)" +Branch_LVCableDist_mvgd_33535_lvgd_1161320000_building_431035_LVStation_mvgd_33535_lvgd_1161320000,BusBar_mvgd_33535_lvgd_1161320000_LV,BranchTee_mvgd_33535_lvgd_1161320000_building_431035,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993239667455976 47.49863028859219, 9.993239667455976 47.49863028859219)" +Branch_LVCableDist_mvgd_33535_lvgd_1161950000_building_431567_LVStation_mvgd_33535_lvgd_1161950000,BusBar_mvgd_33535_lvgd_1161950000_LV,BranchTee_mvgd_33535_lvgd_1161950000_building_431567,0.020401691958436625,0.017708668619922992,0.0017369421311482572,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.983673350062642 47.548762746437625, 9.983944199999996 47.54876209624351)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_10_LVCableDist_mvgd_33535_lvgd_1161990000_9,BranchTee_mvgd_33535_lvgd_1161990000_9,BranchTee_mvgd_33535_lvgd_1161990000_10,0.0385064309211807,0.012322057894777826,0.0031573566849963427,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.987148799999998 47.54854909624345, 9.987104199999997 47.54856069624346, 9.986949799999993 47.548589696243425, 9.986839999999992 47.54858619624345, 9.986670099999996 47.54852369624351)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_10_LVCableDist_mvgd_33535_lvgd_1161990000_building_431566,BranchTee_mvgd_33535_lvgd_1161990000_10,BranchTee_mvgd_33535_lvgd_1161990000_building_431566,0.014971584075085666,0.012995334977174358,0.001274638162512348,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.986752900007348 47.548401196268365, 9.986670099999996 47.54852369624351)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_11_LVCableDist_mvgd_33535_lvgd_1161990000_7,BranchTee_mvgd_33535_lvgd_1161990000_7,BranchTee_mvgd_33535_lvgd_1161990000_11,0.30532901642206284,0.09770528525506011,0.025035626207395037,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.987419699999998 47.548665696243454, 9.9873341 47.54865919624351, 9.987225699999996 47.548662096243454, 9.987147100000001 47.5487378962435, 9.987099099999995 47.548810896243474, 9.987082599999999 47.54891309624349, 9.987092000000002 47.54907929624354, 9.987085300000004 47.54912939624351, 9.987040900000002 47.5491955962435, 9.986826199999994 47.54941199624355, 9.986739900000005 47.54949699624352, 9.9866821 47.54957639624356, 9.986627799999996 47.54966989624355, 9.986601200000006 47.549751696243646, 9.986599400000001 47.55006649624359, 9.986607300000003 47.55014119624364, 9.986627200000001 47.55021919624358, 9.986677100000001 47.550290896243574, 9.986752499999998 47.550355796243615, 9.986972199999997 47.550482196243635, 9.987231299999996 47.550630996243655, 9.987378800000002 47.550750796243655, 9.987514299999997 47.55093099624363)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_11_LVCableDist_mvgd_33535_lvgd_1161990000_building_441499,BranchTee_mvgd_33535_lvgd_1161990000_11,BranchTee_mvgd_33535_lvgd_1161990000_building_441499,0.022501139916960147,0.019530989447921407,0.0019156831698200392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987218600059771 47.550959796444424, 9.987514299999997 47.55093099624363)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_12_LVCableDist_mvgd_33535_lvgd_1161990000_building_431577,BranchTee_mvgd_33535_lvgd_1161990000_12,BranchTee_mvgd_33535_lvgd_1161990000_building_431577,0.01832980522338012,0.015910270933893945,0.0015605475767937263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989967950027587 47.547206846445434, 9.990102300000004 47.54706929624335)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_13_LVCableDist_mvgd_33535_lvgd_1161990000_4,BranchTee_mvgd_33535_lvgd_1161990000_4,BranchTee_mvgd_33535_lvgd_1161990000_13,0.19637191365308687,0.0628390123689878,0.016101626650031974,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.988096699999994 47.54896899624346, 9.988035899999998 47.54916989624349, 9.988034600000006 47.54926789624352, 9.988063399999993 47.54934599624354, 9.988146500000001 47.54945229624352, 9.988642699999994 47.54992309624361, 9.988945799999998 47.550114196243555, 9.989081299999999 47.55019969624361, 9.989407799999995 47.55036919624366)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_13_LVCableDist_mvgd_33535_lvgd_1161990000_building_441509,BranchTee_mvgd_33535_lvgd_1161990000_13,BranchTee_mvgd_33535_lvgd_1161990000_building_441509,0.017723873390902457,0.015384322103303334,0.0015089602608702006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989343062227706 47.55021583139031, 9.989407799999995 47.55036919624366)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_14_LVCableDist_mvgd_33535_lvgd_1161990000_16,BranchTee_mvgd_33535_lvgd_1161990000_14,BranchTee_mvgd_33535_lvgd_1161990000_16,0.04833971792785583,0.02170453334960727,0.004100319973406377,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.9978763 47.54763559624337, 9.9980494 47.5478465962434, 9.998301899999996 47.54775609624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_14_LVCableDist_mvgd_33535_lvgd_1161990000_25,BranchTee_mvgd_33535_lvgd_1161990000_14,BranchTee_mvgd_33535_lvgd_1161990000_25,0.06822148096185976,0.030631444951875034,0.005786750791983454,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.9978763 47.54763559624337, 9.997466500000002 47.54768709624341, 9.997348399999996 47.547699696243356, 9.997275699999998 47.54771159624339, 9.997186400000006 47.54770329624337, 9.997154600000002 47.5476854962434, 9.997122399999997 47.54766269624338, 9.997034800000002 47.54761049624338)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_14_LVCableDist_mvgd_33535_lvgd_1161990000_building_431723,BranchTee_mvgd_33535_lvgd_1161990000_14,BranchTee_mvgd_33535_lvgd_1161990000_building_431723,0.015239056004409337,0.013227500611827304,0.0012974099631986964,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.997838917257223 47.5477703909251, 9.9978763 47.54763559624337)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_15_LVCableDist_mvgd_33535_lvgd_1161990000_20,BranchTee_mvgd_33535_lvgd_1161990000_15,BranchTee_mvgd_33535_lvgd_1161990000_20,0.02526827389528667,0.011345454978983715,0.0021433308382348385,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.9955689 47.5489525962435, 9.995745399999995 47.54914599624352)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_15_LVCableDist_mvgd_33535_lvgd_1161990000_building_441514,BranchTee_mvgd_33535_lvgd_1161990000_15,BranchTee_mvgd_33535_lvgd_1161990000_building_441514,0.0072065832979237975,0.006255314302597856,0.0006135480418631124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.995711100016939 47.54920654629925, 9.995745399999995 47.54914599624352)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_16_LVCableDist_mvgd_33535_lvgd_1161990000_building_431726,BranchTee_mvgd_33535_lvgd_1161990000_16,BranchTee_mvgd_33535_lvgd_1161990000_building_431726,0.016917450043022038,0.014684346637343129,0.001440303666538283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.998165814010001 47.54763496844167, 9.998301899999996 47.54775609624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_16_LVCableDist_mvgd_33535_lvgd_1161990000_building_431729,BranchTee_mvgd_33535_lvgd_1161990000_16,BranchTee_mvgd_33535_lvgd_1161990000_building_431729,0.01274034259559096,0.011058617372972953,0.001084676597638446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.998391883720398 47.54765900368296, 9.998301899999996 47.54775609624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_17_LVCableDist_mvgd_33535_lvgd_1161990000_18,BranchTee_mvgd_33535_lvgd_1161990000_17,BranchTee_mvgd_33535_lvgd_1161990000_18,0.1734839537776266,0.07789429524615435,0.014715429696994582,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.993883899999998 47.54763339624336, 9.994011599999999 47.547732196243416, 9.994395800000003 47.54798649624341, 9.994801699999995 47.54822809624347, 9.994886799999994 47.54827869624346, 9.995120299999996 47.54846529624343, 9.995465400000004 47.54876269624348)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_17_LVCableDist_mvgd_33535_lvgd_1161990000_21,BranchTee_mvgd_33535_lvgd_1161990000_17,BranchTee_mvgd_33535_lvgd_1161990000_21,0.16857393604100912,0.0756896972824131,0.014298947254435049,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.9959912 47.54715879624336, 9.995845400000002 47.5471911962433, 9.995720700000003 47.547211596243386, 9.995488800000002 47.54724949624336, 9.995259700000004 47.54728959624333, 9.995009600000005 47.54735759624333, 9.994749400000002 47.54746599624332, 9.994630300000006 47.54750939624338, 9.9944095 47.54756239624337, 9.994210500000007 47.547599196243375, 9.993883899999998 47.54763339624336)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_17_LVCableDist_mvgd_33535_lvgd_1161990000_building_431592,BranchTee_mvgd_33535_lvgd_1161990000_17,BranchTee_mvgd_33535_lvgd_1161990000_building_431592,0.016495085579002963,0.014317734282574572,0.0014043447552014607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.994001700002158 47.547508246283115, 9.993883899999998 47.54763339624336)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_17_LVStation_mvgd_33535_lvgd_1161990000,BusBar_mvgd_33535_lvgd_1161990000_LV,BranchTee_mvgd_33535_lvgd_1161990000_17,0.00830127589147197,0.0037272728752709146,0.0007041391386139008,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.993773700000006 47.54763269624337, 9.993883899999998 47.54763339624336)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_18_LVCableDist_mvgd_33535_lvgd_1161990000_20,BranchTee_mvgd_33535_lvgd_1161990000_18,BranchTee_mvgd_33535_lvgd_1161990000_20,0.022493450781058844,0.01009955940069542,0.0019079620126467678,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.995465400000004 47.54876269624348, 9.9955689 47.5489525962435)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_18_LVCableDist_mvgd_33535_lvgd_1161990000_building_431580,BranchTee_mvgd_33535_lvgd_1161990000_18,BranchTee_mvgd_33535_lvgd_1161990000_building_431580,0.01834275152267594,0.015921508321682716,0.001561649787960093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.99522344999556 47.548781396329304, 9.995465400000004 47.54876269624348)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_19_LVCableDist_mvgd_33535_lvgd_1161990000_22,BranchTee_mvgd_33535_lvgd_1161990000_19,BranchTee_mvgd_33535_lvgd_1161990000_22,0.020926576267112768,0.009396032743933634,0.001775055013169796,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.996853200000004 47.54750219624338, 9.996711300000007 47.54759579624337, 9.996663799999995 47.54763929624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_19_LVCableDist_mvgd_33535_lvgd_1161990000_23,BranchTee_mvgd_33535_lvgd_1161990000_19,BranchTee_mvgd_33535_lvgd_1161990000_23,0.009022679003902122,0.004051182872752053,0.0007653307160076601,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.996663799999995 47.54763929624339, 9.996623199999991 47.54771569624341)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_19_LVCableDist_mvgd_33535_lvgd_1161990000_building_431587,BranchTee_mvgd_33535_lvgd_1161990000_19,BranchTee_mvgd_33535_lvgd_1161990000_building_431587,0.01608250825980567,0.01395961716951132,0.0013692190935882022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996459749995502 47.54759669634574, 9.996663799999995 47.54763929624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_1_LVCableDist_mvgd_33535_lvgd_1161990000_12,BranchTee_mvgd_33535_lvgd_1161990000_1,BranchTee_mvgd_33535_lvgd_1161990000_12,0.2815150957044651,0.09008483062542882,0.02308299024568813,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.990102300000004 47.54706929624335, 9.9901984 47.54714719624332, 9.9904519 47.547273996243355, 9.990688600000006 47.54741239624335, 9.991071200000002 47.54766589624339, 9.991176000000006 47.547722196243406, 9.9913396 47.54778069624336, 9.991528400000005 47.54780809624339, 9.991687500000003 47.54780449624341, 9.991771300000007 47.54793169624338, 9.9919222 47.54805079624341, 9.992052899999997 47.54810349624341, 9.992177300000002 47.54811829624345, 9.9923061 47.548106496243456, 9.992656200000006 47.547979996243406, 9.993052900000002 47.547760696243365)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_1_LVCableDist_mvgd_33535_lvgd_1161990000_3,BranchTee_mvgd_33535_lvgd_1161990000_1,BranchTee_mvgd_33535_lvgd_1161990000_3,0.02633927258711024,0.008428567227875277,0.002159703623300735,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.993352799999998 47.54763879624339, 9.993052900000002 47.547760696243365)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_1_LVCableDist_mvgd_33535_lvgd_1161990000_6,BranchTee_mvgd_33535_lvgd_1161990000_1,BranchTee_mvgd_33535_lvgd_1161990000_6,0.3327737553826496,0.10648760172244787,0.027285973174179856,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.989867599999998 47.54866319624345, 9.9899423 47.54863829624345, 9.990033199999994 47.54857109624349, 9.990067300000005 47.54852259624347, 9.990081300000002 47.54847039624341, 9.990145600000004 47.54836579624344, 9.990211700000001 47.548296696243455, 9.990277800000001 47.54825489624342, 9.990556499999997 47.548157096243415, 9.990704900000008 47.548090696243406, 9.990764699999996 47.548047696243415, 9.990815699999997 47.5479817962434, 9.9908431 47.54791439624343, 9.990883199999997 47.54781169624339, 9.9909282 47.5477517962434, 9.991071200000002 47.54766589624339, 9.991176000000006 47.547722196243406, 9.9913396 47.54778069624336, 9.991528400000005 47.54780809624339, 9.991687500000003 47.54780449624341, 9.991771300000007 47.54793169624338, 9.9919222 47.54805079624341, 9.992052899999997 47.54810349624341, 9.992177300000002 47.54811829624345, 9.9923061 47.548106496243456, 9.992656200000006 47.547979996243406, 9.993052900000002 47.547760696243365)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_20_LVCableDist_mvgd_33535_lvgd_1161990000_building_441513,BranchTee_mvgd_33535_lvgd_1161990000_20,BranchTee_mvgd_33535_lvgd_1161990000_building_441513,0.021340542607360572,0.018523590983188978,0.001816873209918297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.995846065680917 47.548912790791896, 9.9955689 47.5489525962435)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_21_LVCableDist_mvgd_33535_lvgd_1161990000_22,BranchTee_mvgd_33535_lvgd_1161990000_21,BranchTee_mvgd_33535_lvgd_1161990000_22,0.07802489788394834,0.035033179149892804,0.00661830604171126,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.996853200000004 47.54750219624338, 9.996809499999996 47.54747579624336, 9.996329000000001 47.5472356962434, 9.996213800000007 47.54719059624334, 9.996145900000004 47.54716399624332, 9.996057699999996 47.54713839624333, 9.9959912 47.54715879624336)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_21_LVCableDist_mvgd_33535_lvgd_1161990000_building_431600,BranchTee_mvgd_33535_lvgd_1161990000_21,BranchTee_mvgd_33535_lvgd_1161990000_building_431600,0.014516753870655147,0.012600542359728668,0.0012359152102099803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996017057918356 47.54728827047961, 9.9959912 47.54715879624336)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_22_LVCableDist_mvgd_33535_lvgd_1161990000_25,BranchTee_mvgd_33535_lvgd_1161990000_22,BranchTee_mvgd_33535_lvgd_1161990000_25,0.01821841093810768,0.008180066511210348,0.0015453403010074536,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.997034800000002 47.54761049624338, 9.996853200000004 47.54750219624338)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_23_LVCableDist_mvgd_33535_lvgd_1161990000_building_431590,BranchTee_mvgd_33535_lvgd_1161990000_23,BranchTee_mvgd_33535_lvgd_1161990000_building_431590,0.01981293242740642,0.017197625346988772,0.0016868168162162984,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996366654150465 47.54775504698614, 9.996623199999991 47.54771569624341)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_24_LVCableDist_mvgd_33535_lvgd_1161990000_25,BranchTee_mvgd_33535_lvgd_1161990000_24,BranchTee_mvgd_33535_lvgd_1161990000_25,0.02022347277035708,0.009080339273890329,0.0017154156641065298,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (9.997034800000002 47.54761049624338, 9.996906799999998 47.54777049624341)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_24_LVCableDist_mvgd_33535_lvgd_1161990000_building_431591,BranchTee_mvgd_33535_lvgd_1161990000_24,BranchTee_mvgd_33535_lvgd_1161990000_building_431591,0.008925412850027577,0.007747258353823936,0.0007598843100213599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.996788669250055 47.547776755346995, 9.996906799999998 47.54777049624341)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_24_LVCableDist_mvgd_33535_lvgd_1161990000_building_431602,BranchTee_mvgd_33535_lvgd_1161990000_24,BranchTee_mvgd_33535_lvgd_1161990000_building_431602,0.010652156644920686,0.009246071967791154,0.0009068943743414614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.997029560220888 47.54781808893003, 9.996906799999998 47.54777049624341)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_26_LVCableDist_mvgd_33535_lvgd_1161990000_building_431584,BranchTee_mvgd_33535_lvgd_1161990000_26,BranchTee_mvgd_33535_lvgd_1161990000_building_431584,0.009509071219449362,0.008253873818482046,0.0008095753265366234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993623599991334 47.54718494628041, 9.993649599999994 47.547268696243314)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_26_LVCableDist_mvgd_33535_lvgd_1161990000_building_431586,BranchTee_mvgd_33535_lvgd_1161990000_26,BranchTee_mvgd_33535_lvgd_1161990000_building_431586,0.02105166441027499,0.01827284470811869,0.0017922789403689715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993923981917925 47.54723269806306, 9.993649599999994 47.547268696243314)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_26_LVStation_mvgd_33535_lvgd_1161990000,BusBar_mvgd_33535_lvgd_1161990000_LV,BranchTee_mvgd_33535_lvgd_1161990000_26,0.04185678107934615,0.03633168597687246,0.0035635675060225126,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.993773700000006 47.54763269624337, 9.993753 47.54751929624337, 9.993738800000001 47.547445896243325, 9.9937115 47.54735889624331, 9.993649599999994 47.547268696243314)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_2_LVCableDist_mvgd_33535_lvgd_1161990000_3,BranchTee_mvgd_33535_lvgd_1161990000_2,BranchTee_mvgd_33535_lvgd_1161990000_3,0.10080821598579871,0.03225862911545559,0.008265826954900687,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.992366800000001 47.54703269624337, 9.992517700000006 47.547083996243316, 9.992652799999995 47.547165796243306, 9.992724500000001 47.547213596243324, 9.993133600000006 47.547486996243364, 9.993352799999998 47.54763879624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_2_LVCableDist_mvgd_33535_lvgd_1161990000_building_431576,BranchTee_mvgd_33535_lvgd_1161990000_2,BranchTee_mvgd_33535_lvgd_1161990000_building_431576,0.024135581881108207,0.020949685072801923,0.002054834918323501,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.992369278865029 47.54681547440393, 9.992366800000001 47.54703269624337)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_3_LVStation_mvgd_33535_lvgd_1161990000,BusBar_mvgd_33535_lvgd_1161990000_LV,BranchTee_mvgd_33535_lvgd_1161990000_3,0.03171204518287496,0.010147854458519987,0.0026002471654151997,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.993352799999998 47.54763879624339, 9.993471400000006 47.54763669624338, 9.993773700000006 47.54763269624337)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_4_LVCableDist_mvgd_33535_lvgd_1161990000_5,BranchTee_mvgd_33535_lvgd_1161990000_4,BranchTee_mvgd_33535_lvgd_1161990000_5,0.11316001334603015,0.03621120427072965,0.009278619598469096,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.988096699999994 47.54896899624346, 9.9883069 47.548984396243505, 9.988478199999992 47.54901019624349, 9.988650999999996 47.549015496243484, 9.988792299999998 47.54900689624354, 9.988898999999998 47.5489787962435, 9.989001399999996 47.54892329624353, 9.989168999999993 47.548829996243526, 9.989447599999995 47.548700096243486)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_4_LVCableDist_mvgd_33535_lvgd_1161990000_7,BranchTee_mvgd_33535_lvgd_1161990000_4,BranchTee_mvgd_33535_lvgd_1161990000_7,0.06447218400210676,0.020631098880674163,0.0052864333641317995,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.987419699999998 47.548665696243454, 9.987485100000002 47.54869619624352, 9.987692100000004 47.54888049624351, 9.987793999999992 47.548930196243504, 9.987878499999995 47.5489494962435, 9.987976199999999 47.54896019624346, 9.988096699999994 47.54896899624346)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_5_LVCableDist_mvgd_33535_lvgd_1161990000_6,BranchTee_mvgd_33535_lvgd_1161990000_5,BranchTee_mvgd_33535_lvgd_1161990000_6,0.03190079466909835,0.010208254294111471,0.002615723786796623,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.989447599999995 47.548700096243486, 9.989867599999998 47.54866319624345)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_5_LVCableDist_mvgd_33535_lvgd_1161990000_building_431578,BranchTee_mvgd_33535_lvgd_1161990000_5,BranchTee_mvgd_33535_lvgd_1161990000_building_431578,0.015493088861594994,0.013448001131864454,0.0013190375994379187,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989620936410024 47.548775164657314, 9.989447599999995 47.548700096243486)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_6_LVCableDist_mvgd_33535_lvgd_1161990000_building_441502,BranchTee_mvgd_33535_lvgd_1161990000_6,BranchTee_mvgd_33535_lvgd_1161990000_building_441502,0.04763363175398006,0.041345992362454696,0.004055392171475053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.989810009085227 47.54909013282911, 9.989867599999998 47.54866319624345)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_7_LVCableDist_mvgd_33535_lvgd_1161990000_8,BranchTee_mvgd_33535_lvgd_1161990000_7,BranchTee_mvgd_33535_lvgd_1161990000_8,0.02115446993802823,0.006769430380169034,0.0017345727837800758,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.987419699999998 47.548665696243454, 9.987399299999996 47.548615196243496, 9.987315300000004 47.548561896243484, 9.987232899999999 47.54853989624347)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_8_LVCableDist_mvgd_33535_lvgd_1161990000_9,BranchTee_mvgd_33535_lvgd_1161990000_8,BranchTee_mvgd_33535_lvgd_1161990000_9,0.006416739898995183,0.0020533567676784587,0.0005261442343863423,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (9.987232899999999 47.54853989624347, 9.987148799999998 47.54854909624345)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_8_LVCableDist_mvgd_33535_lvgd_1161990000_building_431573,BranchTee_mvgd_33535_lvgd_1161990000_8,BranchTee_mvgd_33535_lvgd_1161990000_building_431573,0.013009548211414116,0.011292287847507453,0.0011075959994712723,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987281954380364 47.548427628249335, 9.987232899999999 47.54853989624347)" +Branch_LVCableDist_mvgd_33535_lvgd_1161990000_9_LVCableDist_mvgd_33535_lvgd_1161990000_building_431569,BranchTee_mvgd_33535_lvgd_1161990000_9,BranchTee_mvgd_33535_lvgd_1161990000_building_431569,0.02443150384699541,0.02120654533919202,0.0020800288743507193,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (9.987083906123187 47.54833365048138, 9.987148799999998 47.54854909624345)" +Branch_LVCableDist_mvgd_33535_lvgd_1163060000_building_430839_LVStation_mvgd_33535_lvgd_1163060000,BusBar_mvgd_33535_lvgd_1163060000_LV,BranchTee_mvgd_33535_lvgd_1163060000_building_430839,0.0072073485005479014,0.006255978498475578,0.0006136131890420512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002257800004706 47.49610629625729, 10.002348298468702 47.496085412927414)" +Branch_LVCableDist_mvgd_33535_lvgd_1163060000_building_430840_LVStation_mvgd_33535_lvgd_1163060000,BusBar_mvgd_33535_lvgd_1163060000_LV,BranchTee_mvgd_33535_lvgd_1163060000_building_430840,0.014274818959100653,0.012390542856499367,0.0012153175587146662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002527538814418 47.4960440513428, 10.002348298468702 47.496085412927414)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_10_LVCableDist_mvgd_33535_lvgd_1163320000_6,BranchTee_mvgd_33535_lvgd_1163320000_6,BranchTee_mvgd_33535_lvgd_1163320000_10,0.01854275008276916,0.01609510707184363,0.0015786770975529743,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0010937 47.536185196242364, 10.001222500000008 47.536206896242334, 10.001335099999997 47.53621599624233)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_10_LVCableDist_mvgd_33535_lvgd_1163320000_9,BranchTee_mvgd_33535_lvgd_1163320000_9,BranchTee_mvgd_33535_lvgd_1163320000_10,0.08438556455027736,0.07324667002964075,0.007184347387790842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0001483 47.53597789624237, 10.000396400000005 47.53595789624236, 10.000723600000006 47.53593709624235, 10.000806700000004 47.53595159624233, 10.000860400000004 47.53600049624235, 10.000991800000003 47.53613989624237, 10.0010937 47.536185196242364)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_10_LVCableDist_mvgd_33535_lvgd_1163320000_building_431646,BranchTee_mvgd_33535_lvgd_1163320000_10,BranchTee_mvgd_33535_lvgd_1163320000_building_431646,0.024969302338647713,0.021673354429946213,0.0021258155110729046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00090277148448 47.53636888734238, 10.0010937 47.536185196242364)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_11_LVCableDist_mvgd_33535_lvgd_1163320000_6,BranchTee_mvgd_33535_lvgd_1163320000_6,BranchTee_mvgd_33535_lvgd_1163320000_11,0.03633930599792723,0.03154251760620083,0.003093825342186236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001335099999997 47.53621599624233, 10.0013727 47.53625399624238, 10.001421000000002 47.53638079624235, 10.001415599999998 47.53653109624242)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_11_LVCableDist_mvgd_33535_lvgd_1163320000_building_431661,BranchTee_mvgd_33535_lvgd_1163320000_11,BranchTee_mvgd_33535_lvgd_1163320000_building_431661,0.022423237896557244,0.019463370494211686,0.0019090508129736053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001121950009063 47.53649824631096, 10.001415599999998 47.53653109624242)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_11_LVCableDist_mvgd_33535_lvgd_1163320000_building_431664,BranchTee_mvgd_33535_lvgd_1163320000_11,BranchTee_mvgd_33535_lvgd_1163320000_building_431664,0.023213930436773268,0.020149691619119198,0.001976368131002119,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001710798843712 47.53647123919371, 10.001415599999998 47.53653109624242)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_11_LVStation_mvgd_33535_lvgd_1163320000,BusBar_mvgd_33535_lvgd_1163320000_LV,BranchTee_mvgd_33535_lvgd_1163320000_11,0.013694650611255594,0.011886956730569855,0.0011659236727279679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001415599999998 47.53653109624242, 10.001292200000002 47.53662159624241)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_1_LVCableDist_mvgd_33535_lvgd_1163320000_2,BranchTee_mvgd_33535_lvgd_1163320000_1,BranchTee_mvgd_33535_lvgd_1163320000_2,0.049973111323878015,0.04337666062912612,0.004254568820068454,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002482800000005 47.53720469624245, 10.002253500000002 47.53711139624244, 10.001901699999998 47.53698829624245)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_1_LVCableDist_mvgd_33535_lvgd_1163320000_5,BranchTee_mvgd_33535_lvgd_1163320000_1,BranchTee_mvgd_33535_lvgd_1163320000_5,0.053900706550150994,0.04678581328553106,0.004588953126845974,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002172000000003 47.53654919624235, 10.002182699999999 47.536592596242386, 10.002129100000001 47.53669219624238, 10.002056700000006 47.53681719624247, 10.001901699999998 47.53698829624245)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_1_LVStation_mvgd_33535_lvgd_1163320000,BusBar_mvgd_33535_lvgd_1163320000_LV,BranchTee_mvgd_33535_lvgd_1163320000_1,0.07744476014289572,0.06722205180403348,0.006593427006098906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001901699999998 47.53698829624245, 10.001630100000002 47.53690469624244, 10.001405600000004 47.536840396242404, 10.001196300000004 47.5367804962424, 10.001225200000004 47.53670939624245, 10.001239899999998 47.5366641962424, 10.001292200000002 47.53662159624241)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_2_LVCableDist_mvgd_33535_lvgd_1163320000_3,BranchTee_mvgd_33535_lvgd_1163320000_2,BranchTee_mvgd_33535_lvgd_1163320000_3,0.08137467847950138,0.0706332209202072,0.006928009095894634,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002619899999997 47.536704896242426, 10.002780900000003 47.53670849624241, 10.002842500000003 47.536719396242425, 10.002885500000001 47.53676289624237, 10.002874700000007 47.5368298962424, 10.002807699999993 47.53691129624242, 10.002709799999995 47.53700639624244, 10.002482800000005 47.53720469624245)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_2_LVCableDist_mvgd_33535_lvgd_1163320000_4,BranchTee_mvgd_33535_lvgd_1163320000_2,BranchTee_mvgd_33535_lvgd_1163320000_4,0.05315552873020958,0.04613899893782192,0.004525510802881357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002241699999995 47.53736399624249, 10.0022927 47.537325996242515, 10.002394600000002 47.537304296242446, 10.002682900000003 47.53728619624245, 10.002482800000005 47.53720469624245)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_3_LVCableDist_mvgd_33535_lvgd_1163320000_building_431670,BranchTee_mvgd_33535_lvgd_1163320000_3,BranchTee_mvgd_33535_lvgd_1163320000_building_431670,0.014250495715289808,0.012369430280871554,0.0012132467467924335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00246770001501 47.53678104630966, 10.002619899999997 47.536704896242426)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_4_LVCableDist_mvgd_33535_lvgd_1163320000_building_431689,BranchTee_mvgd_33535_lvgd_1163320000_4,BranchTee_mvgd_33535_lvgd_1163320000_building_431689,0.026075246885548256,0.022633314296655885,0.0022199724899224387,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00238875014214 47.53757644652685, 10.002241699999995 47.53736399624249)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_5_LVCableDist_mvgd_33535_lvgd_1163320000_building_431658,BranchTee_mvgd_33535_lvgd_1163320000_5,BranchTee_mvgd_33535_lvgd_1163320000_building_431658,0.018907581865763485,0.016411781059482704,0.0016097378397676775,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002222100007767 47.53638244636636, 10.002172000000003 47.53654919624235)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_6_LVCableDist_mvgd_33535_lvgd_1163320000_7,BranchTee_mvgd_33535_lvgd_1163320000_6,BranchTee_mvgd_33535_lvgd_1163320000_7,0.026673768484280613,0.02315283104435557,0.0022709289195831923,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001662400000003 47.53614169624233, 10.0015242 47.53614989624237, 10.0014183 47.536174296242386, 10.001335099999997 47.53621599624233)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_7_LVCableDist_mvgd_33535_lvgd_1163320000_8,BranchTee_mvgd_33535_lvgd_1163320000_7,BranchTee_mvgd_33535_lvgd_1163320000_8,0.020169675712979236,0.017507278518865976,0.0017171889267244876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001895699999995 47.53621869624238, 10.001808599999992 47.53616529624237, 10.001662400000003 47.53614169624233)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_7_LVCableDist_mvgd_33535_lvgd_1163320000_building_431651,BranchTee_mvgd_33535_lvgd_1163320000_7,BranchTee_mvgd_33535_lvgd_1163320000_building_431651,0.014177020283898494,0.012305653606423892,0.0012069912571669719,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001616064791682 47.53626536584043, 10.001662400000003 47.53614169624233)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_8_LVCableDist_mvgd_33535_lvgd_1163320000_building_431654,BranchTee_mvgd_33535_lvgd_1163320000_8,BranchTee_mvgd_33535_lvgd_1163320000_building_431654,0.010774353315721045,0.009352138678045867,0.0009172978519663369,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001970500000334 47.53630134625734, 10.001895699999995 47.53621869624238)" +Branch_LVCableDist_mvgd_33535_lvgd_1163320000_9_LVCableDist_mvgd_33535_lvgd_1163320000_building_431656,BranchTee_mvgd_33535_lvgd_1163320000_9,BranchTee_mvgd_33535_lvgd_1163320000_building_431656,0.01915252846962669,0.016624394711635966,0.0016305918981956965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000276835587673 47.53612661656431, 10.0001483 47.53597789624237)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_10_LVCableDist_mvgd_33535_lvgd_1163330000_building_431733,BranchTee_mvgd_33535_lvgd_1163330000_10,BranchTee_mvgd_33535_lvgd_1163330000_building_431733,0.011004660585452814,0.009552045388173043,0.0009369055590487591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002128700009285 47.54614689626904, 10.002249699999995 47.54609139624322)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_10_LVStation_mvgd_33535_lvgd_1163330000,BusBar_mvgd_33535_lvgd_1163330000_LV,BranchTee_mvgd_33535_lvgd_1163330000_10,0.07548225732657593,0.06551859935946791,0.006426345088035078,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002249699999995 47.54609139624322, 10.002558200000003 47.546152896243264, 10.002882700000004 47.54624889624328, 10.003165199999996 47.54635979624327)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_1_LVCableDist_mvgd_33535_lvgd_1163330000_5,BranchTee_mvgd_33535_lvgd_1163330000_1,BranchTee_mvgd_33535_lvgd_1163330000_5,0.03152153215698992,0.02736068991226725,0.0026836537554513666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0038155 47.54581689624321, 10.003820099999997 47.54567239624326, 10.003791500000005 47.5455936962432, 10.003737799999993 47.54554839624316)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_1_LVCableDist_mvgd_33535_lvgd_1163330000_building_431718,BranchTee_mvgd_33535_lvgd_1163330000_1,BranchTee_mvgd_33535_lvgd_1163330000_building_431718,0.018950298200958886,0.016448858838432313,0.0016133745872707913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003531869892766 47.545646362536665, 10.003737799999993 47.54554839624316)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_2_LVCableDist_mvgd_33535_lvgd_1163330000_3,BranchTee_mvgd_33535_lvgd_1163330000_2,BranchTee_mvgd_33535_lvgd_1163330000_3,0.02145879917938554,0.018626237687706645,0.0018269412387197216,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0033482 47.54619259624319, 10.003580699999997 47.54608099624326)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_2_LVCableDist_mvgd_33535_lvgd_1163330000_building_431739,BranchTee_mvgd_33535_lvgd_1163330000_2,BranchTee_mvgd_33535_lvgd_1163330000_building_431739,0.015237571659558698,0.01322621220049695,0.001297283590292298,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003399569255244 47.54632524368912, 10.0033482 47.54619259624319)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_2_LVStation_mvgd_33535_lvgd_1163330000,BusBar_mvgd_33535_lvgd_1163330000_LV,BranchTee_mvgd_33535_lvgd_1163330000_2,0.023132949024299364,0.020079399753091847,0.0019694736034574245,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0033482 47.54619259624319, 10.003165199999996 47.54635979624327)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_3_LVCableDist_mvgd_33535_lvgd_1163330000_4,BranchTee_mvgd_33535_lvgd_1163330000_3,BranchTee_mvgd_33535_lvgd_1163330000_4,0.021748881429731113,0.018878029081006605,0.00185163801794519,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003580699999997 47.54608099624326, 10.003748900000001 47.545921896243264)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_3_LVCableDist_mvgd_33535_lvgd_1163330000_building_431758,BranchTee_mvgd_33535_lvgd_1163330000_3,BranchTee_mvgd_33535_lvgd_1163330000_building_431758,0.0261874623099701,0.022730717285054047,0.002229526192568281,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003899050010949 47.546175696261145, 10.003580699999997 47.54608099624326)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_4_LVCableDist_mvgd_33535_lvgd_1163330000_5,BranchTee_mvgd_33535_lvgd_1163330000_4,BranchTee_mvgd_33535_lvgd_1163330000_5,0.012699199282994985,0.011022904977639646,0.001081173772813498,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003748900000001 47.545921896243264, 10.0038155 47.54581689624321)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_4_LVCableDist_mvgd_33535_lvgd_1163330000_building_431731,BranchTee_mvgd_33535_lvgd_1163330000_4,BranchTee_mvgd_33535_lvgd_1163330000_building_431731,0.011768818975231594,0.010215334870501023,0.0010019638348418266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0038046500057 47.54602084626176, 10.003748900000001 47.545921896243264)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_5_LVCableDist_mvgd_33535_lvgd_1163330000_building_431725,BranchTee_mvgd_33535_lvgd_1163330000_5,BranchTee_mvgd_33535_lvgd_1163330000_building_431725,0.009379831828450843,0.00814169402709533,0.0007985722517089769,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003691500005328 47.54582459625946, 10.0038155 47.54581689624321)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_6_LVCableDist_mvgd_33535_lvgd_1163330000_7,BranchTee_mvgd_33535_lvgd_1163330000_6,BranchTee_mvgd_33535_lvgd_1163330000_7,0.034044366086178564,0.029550509762802993,0.0028984406736356685,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002801300000003 47.54582209624321, 10.002632199999995 47.54576689624319, 10.002407500000006 47.5456725962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_6_LVCableDist_mvgd_33535_lvgd_1163330000_8,BranchTee_mvgd_33535_lvgd_1163330000_6,BranchTee_mvgd_33535_lvgd_1163330000_8,0.08395438849263483,0.07287240921160702,0.0071476382823898055,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001686500000002 47.545296496243225, 10.001717400000004 47.54547839624317, 10.001732499999996 47.5455439962432, 10.001757399999999 47.54558089624317, 10.001817399999993 47.545623396243215, 10.002101999999997 47.545674396243186, 10.002407500000006 47.5456725962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_6_LVCableDist_mvgd_33535_lvgd_1163330000_building_431712,BranchTee_mvgd_33535_lvgd_1163330000_6,BranchTee_mvgd_33535_lvgd_1163330000_building_431712,0.023343830077798385,0.020262444507529,0.0019874274176425225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002616960629574 47.54551775474078, 10.002407500000006 47.5456725962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_7_LVCableDist_mvgd_33535_lvgd_1163330000_9,BranchTee_mvgd_33535_lvgd_1163330000_7,BranchTee_mvgd_33535_lvgd_1163330000_9,0.03734788809996756,0.03241796687077184,0.0031796931589008924,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002801300000003 47.54582209624321, 10.002978700000005 47.54588369624324, 10.003030299999995 47.54592469624319, 10.003079399999995 47.54606799624325)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_7_LVCableDist_mvgd_33535_lvgd_1163330000_building_431717,BranchTee_mvgd_33535_lvgd_1163330000_7,BranchTee_mvgd_33535_lvgd_1163330000_building_431717,0.00933667933074627,0.008104237659087762,0.0007948983705681357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002797832462235 47.54573809583885, 10.002801300000003 47.54582209624321)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_7_LVCableDist_mvgd_33535_lvgd_1163330000_building_431719,BranchTee_mvgd_33535_lvgd_1163330000_7,BranchTee_mvgd_33535_lvgd_1163330000_building_431719,0.020545704443264978,0.017833671456754,0.0017492029452424666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002632500003953 47.54596734626925, 10.002801300000003 47.54582209624321)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_7_LVCableDist_mvgd_33535_lvgd_1163330000_building_431720,BranchTee_mvgd_33535_lvgd_1163330000_7,BranchTee_mvgd_33535_lvgd_1163330000_building_431720,0.021113015224491164,0.018326097214858332,0.0017975021745109936,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002756163123316 47.54600964031175, 10.002801300000003 47.54582209624321)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_8_LVCableDist_mvgd_33535_lvgd_1163330000_building_431714,BranchTee_mvgd_33535_lvgd_1163330000_8,BranchTee_mvgd_33535_lvgd_1163330000_building_431714,0.012657154482605707,0.010986410090901753,0.0010775941978772314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001798090312993 47.545211328826205, 10.001686500000002 47.545296496243225)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_9_LVCableDist_mvgd_33535_lvgd_1163330000_building_431721,BranchTee_mvgd_33535_lvgd_1163330000_9,BranchTee_mvgd_33535_lvgd_1163330000_building_431721,0.013455795052684382,0.011679630105730044,0.0011455881886030972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0032351500029 47.54600869625098, 10.003079399999995 47.54606799624325)" +Branch_LVCableDist_mvgd_33535_lvgd_1163330000_9_LVStation_mvgd_33535_lvgd_1163330000,BusBar_mvgd_33535_lvgd_1163330000_LV,BranchTee_mvgd_33535_lvgd_1163330000_9,0.0330589465197161,0.028695165579113578,0.0028145448494396414,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003079399999995 47.54606799624325, 10.003165199999996 47.54635979624327)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_1_LVCableDist_mvgd_33535_lvgd_1163360000_building_431695,BranchTee_mvgd_33535_lvgd_1163360000_1,BranchTee_mvgd_33535_lvgd_1163360000_building_431695,0.02267723576563147,0.019683840644568115,0.0019306754704243546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002463548234774 47.54041032934746, 10.0023088 47.54058539624277)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_1_LVStation_mvgd_33535_lvgd_1163360000,BusBar_mvgd_33535_lvgd_1163360000_LV,BranchTee_mvgd_33535_lvgd_1163360000_1,0.6104863202836598,0.5299021260062167,0.05197507208473773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0023088 47.54058539624277, 10.002641400000002 47.54059259624277, 10.002984700000004 47.54063779624271, 10.004138199999995 47.54217189624292, 10.004281100000005 47.54212519624287, 10.004474000000004 47.54211079624288, 10.004692699999998 47.542136496242904, 10.004878800000006 47.54220449624286, 10.0052481 47.54228019624293, 10.005510800000007 47.54231229624295, 10.006063500000005 47.54238959624295, 10.005725399999992 47.542487796242945, 10.005540800000002 47.542582696242896, 10.0054897 47.54273129624295, 10.005412800000002 47.54286379624295, 10.005250699999996 47.54287529624295, 10.004883600000007 47.54281189624296, 10.004627499999993 47.54281189624296, 10.004362899999999 47.542869596242944, 10.003917099999994 47.54297719624295, 10.003636499999997 47.54303869624298)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_2_LVCableDist_mvgd_33535_lvgd_1163360000_4,BranchTee_mvgd_33535_lvgd_1163360000_2,BranchTee_mvgd_33535_lvgd_1163360000_4,0.12640723452385416,0.10972147956670542,0.010761953066134118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0016624 47.542432196242935, 10.001783099999995 47.54252809624295, 10.001896199999997 47.54263479624294, 10.0019976 47.54272189624293, 10.002126399999996 47.542828696242964, 10.002326800000004 47.54294879624293, 10.002503499999994 47.54301379624298, 10.002700400000004 47.54307309624294, 10.002828499999996 47.54311679624299, 10.002930399999997 47.54313009624294)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_2_LVCableDist_mvgd_33535_lvgd_1163360000_building_431696,BranchTee_mvgd_33535_lvgd_1163360000_2,BranchTee_mvgd_33535_lvgd_1163360000_building_431696,0.010766040050959913,0.009344922764233205,0.0009165900842066619,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001763333901351 47.54236359760006, 10.0016624 47.542432196242935)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_3_LVCableDist_mvgd_33535_lvgd_1163360000_4,BranchTee_mvgd_33535_lvgd_1163360000_3,BranchTee_mvgd_33535_lvgd_1163360000_4,0.026503520529367407,0.02300505581949091,0.0022564344920507594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0032514 47.54303369624298, 10.003141700000004 47.54306699624295, 10.003042099999995 47.54310359624293, 10.002930399999997 47.54313009624294)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_3_LVCableDist_mvgd_33535_lvgd_1163360000_building_431701,BranchTee_mvgd_33535_lvgd_1163360000_3,BranchTee_mvgd_33535_lvgd_1163360000_building_431701,0.013828965415448822,0.012003541980609577,0.0011773588538254685,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003273014550103 47.54315729601008, 10.0032514 47.54303369624298)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_3_LVCableDist_mvgd_33535_lvgd_1163360000_building_431704,BranchTee_mvgd_33535_lvgd_1163360000_3,BranchTee_mvgd_33535_lvgd_1163360000_building_431704,0.03591297104838172,0.03117245886999533,0.0030575283949842496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003720660979763 47.54309067248578, 10.0032514 47.54303369624298)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_3_LVStation_mvgd_33535_lvgd_1163360000,BusBar_mvgd_33535_lvgd_1163360000_LV,BranchTee_mvgd_33535_lvgd_1163360000_3,0.03104843200171821,0.026950038977491406,0.002643375351404373,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0032514 47.54303369624298, 10.003413899999998 47.54305859624301, 10.003502300000006 47.543083696242974, 10.003636499999997 47.54303869624298)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_4_LVCableDist_mvgd_33535_lvgd_1163360000_building_431706,BranchTee_mvgd_33535_lvgd_1163360000_4,BranchTee_mvgd_33535_lvgd_1163360000_building_431706,0.008236987225566494,0.0071497049117917166,0.0007012737068554774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002933263986485 47.54320420659557, 10.002930399999997 47.54313009624294)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_5_LVCableDist_mvgd_33535_lvgd_1163360000_building_431694,BranchTee_mvgd_33535_lvgd_1163360000_5,BranchTee_mvgd_33535_lvgd_1163360000_building_431694,0.011027774115690739,0.009572107932419562,0.0009388733793918762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003130898067374 47.54241972017698, 10.0031049 47.542517396242935)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_5_LVCableDist_mvgd_33535_lvgd_1163360000_building_431698,BranchTee_mvgd_33535_lvgd_1163360000_5,BranchTee_mvgd_33535_lvgd_1163360000_building_431698,0.029333234292753117,0.025461247366109704,0.002497348288059832,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002731951017493 47.542593279352346, 10.0031049 47.542517396242935)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_5_LVCableDist_mvgd_33535_lvgd_1163360000_building_431703,BranchTee_mvgd_33535_lvgd_1163360000_5,BranchTee_mvgd_33535_lvgd_1163360000_building_431703,0.0242627324053796,0.021060051727869494,0.002065660152968476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002947450003482 47.54270789625385, 10.0031049 47.542517396242935)" +Branch_LVCableDist_mvgd_33535_lvgd_1163360000_5_LVStation_mvgd_33535_lvgd_1163360000,BusBar_mvgd_33535_lvgd_1163360000_LV,BranchTee_mvgd_33535_lvgd_1163360000_5,0.4547809350243097,0.3947498516011008,0.03871875764500336,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003636499999997 47.54303869624298, 10.003917099999994 47.54297719624295, 10.004362899999999 47.542869596242944, 10.004627499999993 47.54281189624296, 10.004883600000007 47.54281189624296, 10.005250699999996 47.54287529624295, 10.005412800000002 47.54286379624295, 10.0054897 47.54273129624295, 10.005540800000002 47.542582696242896, 10.005725399999992 47.542487796242945, 10.006063500000005 47.54238959624295, 10.005510800000007 47.54231229624295, 10.0052481 47.54228019624293, 10.004878800000006 47.54220449624286, 10.004692699999998 47.542136496242904, 10.004474000000004 47.54211079624288, 10.004281100000005 47.54212519624287, 10.004138199999995 47.54217189624292, 10.003886200000006 47.54226839624288, 10.003621599999999 47.54237109624288, 10.003474999999996 47.54241259624289, 10.003344300000002 47.54243949624293, 10.0031049 47.542517396242935)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_10_LVCableDist_mvgd_33535_lvgd_1164120000_5,BranchTee_mvgd_33535_lvgd_1164120000_5,BranchTee_mvgd_33535_lvgd_1164120000_10,0.04911610890632806,0.0061395136132910075,0.003919291295591126,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.015792099999997 47.54316379624297, 10.015845899999993 47.543011596242984, 10.016234799999992 47.542901996242946)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_10_LVCableDist_mvgd_33535_lvgd_1164120000_9,BranchTee_mvgd_33535_lvgd_1164120000_9,BranchTee_mvgd_33535_lvgd_1164120000_10,0.04428788103531054,0.0055359851294138175,0.0035340158352711944,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.016234799999992 47.542901996242946, 10.0164346 47.54290659624298, 10.016800800000002 47.54299349624296)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_10_LVCableDist_mvgd_33535_lvgd_1164120000_building_34999666,BranchTee_mvgd_33535_lvgd_1164120000_10,BranchTee_mvgd_33535_lvgd_1164120000_building_34999666,0.015549303692004204,0.01349679560465965,0.0013238235705001244,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01626146861365 47.54304077232443, 10.016234799999992 47.542901996242946)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_11_LVCableDist_mvgd_33535_lvgd_1164120000_32,BranchTee_mvgd_33535_lvgd_1164120000_11,BranchTee_mvgd_33535_lvgd_1164120000_32,0.029416206344847037,0.0036770257931058796,0.002347308938836104,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020855599999994 47.54477489624311, 10.020937700000001 47.54483739624311, 10.021108299999998 47.54497669624315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_11_LVCableDist_mvgd_33535_lvgd_1164120000_7,BranchTee_mvgd_33535_lvgd_1164120000_7,BranchTee_mvgd_33535_lvgd_1164120000_11,0.038452678003326406,0.004806584750415801,0.0030683873284430437,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021108299999998 47.54497669624315, 10.021560699999998 47.54513699624317)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_11_LVCableDist_mvgd_33535_lvgd_1164120000_building_444918,BranchTee_mvgd_33535_lvgd_1164120000_11,BranchTee_mvgd_33535_lvgd_1164120000_building_444918,0.014908643083434509,0.012940702196421154,0.0012692795451781649,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021247798236274 47.544881512105185, 10.021108299999998 47.54497669624315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_12_LVCableDist_mvgd_33535_lvgd_1164120000_2,BranchTee_mvgd_33535_lvgd_1164120000_2,BranchTee_mvgd_33535_lvgd_1164120000_12,0.04459020890717263,0.0055737761133965785,0.003558140527210116,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021943 47.54424859624311, 10.021866299999996 47.54391239624304, 10.021879200000004 47.54385189624305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_12_LVCableDist_mvgd_33535_lvgd_1164120000_building_444891,BranchTee_mvgd_33535_lvgd_1164120000_12,BranchTee_mvgd_33535_lvgd_1164120000_building_444891,0.02929757766482301,0.025430297413066374,0.002494312583990157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021885850037147 47.54358824629545, 10.021879200000004 47.54385189624305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_12_LVCableDist_mvgd_33535_lvgd_1164120000_building_444894,BranchTee_mvgd_33535_lvgd_1164120000_12,BranchTee_mvgd_33535_lvgd_1164120000_building_444894,0.038467772246952206,0.033390026310354516,0.0032750369157258396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022271760331545 47.54363046776418, 10.021879200000004 47.54385189624305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_12_LVCableDist_mvgd_33535_lvgd_1164120000_building_444899,BranchTee_mvgd_33535_lvgd_1164120000_12,BranchTee_mvgd_33535_lvgd_1164120000_building_444899,0.014905816531743183,0.012938248749553082,0.0012690389005919935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021982800003633 47.543737596277595, 10.021879200000004 47.54385189624305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_13_LVCableDist_mvgd_33535_lvgd_1164120000_24,BranchTee_mvgd_33535_lvgd_1164120000_13,BranchTee_mvgd_33535_lvgd_1164120000_24,0.05786447706459987,0.007233059633074984,0.004617380047669036,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021748599999995 47.54493689624315, 10.0225157 47.54496409624314)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_13_LVCableDist_mvgd_33535_lvgd_1164120000_8,BranchTee_mvgd_33535_lvgd_1164120000_8,BranchTee_mvgd_33535_lvgd_1164120000_13,0.02427768323241788,0.003034710404052235,0.001937273018744261,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0216971 47.54515259624312, 10.021748599999995 47.54493689624315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_13_LVCableDist_mvgd_33535_lvgd_1164120000_building_444892,BranchTee_mvgd_33535_lvgd_1164120000_13,BranchTee_mvgd_33535_lvgd_1164120000_building_444892,0.012402309808691196,0.010765204913943957,0.0010558974458665332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021598181736657 47.54498228093213, 10.021748599999995 47.54493689624315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_13_LVCableDist_mvgd_33535_lvgd_1164120000_building_444896,BranchTee_mvgd_33535_lvgd_1164120000_13,BranchTee_mvgd_33535_lvgd_1164120000_building_444896,0.02315231613915325,0.020096210408785023,0.0019711224646311466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021992455281143 47.54481006088488, 10.021748599999995 47.54493689624315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_14_LVCableDist_mvgd_33535_lvgd_1164120000_16,BranchTee_mvgd_33535_lvgd_1164120000_14,BranchTee_mvgd_33535_lvgd_1164120000_16,0.01026342307430732,0.001282927884288415,0.0008189847610855674,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020590100000005 47.54473059624313, 10.020726300000003 47.54472819624313)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_14_LVCableDist_mvgd_33535_lvgd_1164120000_17,BranchTee_mvgd_33535_lvgd_1164120000_14,BranchTee_mvgd_33535_lvgd_1164120000_17,0.024356870173768592,0.003044608771721074,0.001943591855819735,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020299200000004 47.5448262962431, 10.020590100000005 47.54473059624313)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_14_LVCableDist_mvgd_33535_lvgd_1164120000_building_444878,BranchTee_mvgd_33535_lvgd_1164120000_14,BranchTee_mvgd_33535_lvgd_1164120000_building_444878,0.02599306515403645,0.022561980553703637,0.002212975770622668,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020549521263442 47.54449827325138, 10.020590100000005 47.54473059624313)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_15_LVCableDist_mvgd_33535_lvgd_1164120000_36,BranchTee_mvgd_33535_lvgd_1164120000_15,BranchTee_mvgd_33535_lvgd_1164120000_36,0.008254341854303548,0.0010317927317879435,0.000658667205134349,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021385500000003 47.5445837962431, 10.021494899999993 47.54458799624309)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_15_LVCableDist_mvgd_33535_lvgd_1164120000_37,BranchTee_mvgd_33535_lvgd_1164120000_15,BranchTee_mvgd_33535_lvgd_1164120000_37,0.01717049370559283,0.0021463117131991036,0.0013701445008536058,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021494899999993 47.54458799624309, 10.021715799999996 47.54462609624317)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_15_LVCableDist_mvgd_33535_lvgd_1164120000_building_444880,BranchTee_mvgd_33535_lvgd_1164120000_15,BranchTee_mvgd_33535_lvgd_1164120000_building_444880,0.010704930861358118,0.009291879987658846,0.0009113874212983148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02155977680074 47.54450227453233, 10.021494899999993 47.54458799624309)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_16_LVCableDist_mvgd_33535_lvgd_1164120000_29,BranchTee_mvgd_33535_lvgd_1164120000_16,BranchTee_mvgd_33535_lvgd_1164120000_29,0.027211243320696375,0.003401405415087047,0.0021713607096281395,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020726300000003 47.54472819624313, 10.021079000000006 47.544675296243135)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_16_LVCableDist_mvgd_33535_lvgd_1164120000_32,BranchTee_mvgd_33535_lvgd_1164120000_16,BranchTee_mvgd_33535_lvgd_1164120000_32,0.011036050761585854,0.0013795063451982317,0.000880637710329951,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020726300000003 47.54472819624313, 10.020855599999994 47.54477489624311)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_17_LVCableDist_mvgd_33535_lvgd_1164120000_19,BranchTee_mvgd_33535_lvgd_1164120000_17,BranchTee_mvgd_33535_lvgd_1164120000_19,0.007510706948072794,0.0009388383685090992,0.0005993277769918153,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0202027 47.544843296243066, 10.020299200000004 47.5448262962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_17_LVCableDist_mvgd_33535_lvgd_1164120000_building_444879,BranchTee_mvgd_33535_lvgd_1164120000_17,BranchTee_mvgd_33535_lvgd_1164120000_building_444879,0.021073206488382325,0.01829154323191586,0.0017941129717391807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020286129417439 47.54463683731063, 10.020299200000004 47.5448262962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_18_LVCableDist_mvgd_33535_lvgd_1164120000_20,BranchTee_mvgd_33535_lvgd_1164120000_18,BranchTee_mvgd_33535_lvgd_1164120000_20,0.017574861620365288,0.002196857702545661,0.0014024116263216789,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.019476100000004 47.54486489624315, 10.019599199999996 47.54482769624308, 10.019694900000005 47.54481179624312)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_18_LVCableDist_mvgd_33535_lvgd_1164120000_22,BranchTee_mvgd_33535_lvgd_1164120000_18,BranchTee_mvgd_33535_lvgd_1164120000_22,0.040437235067321185,0.005054654383415148,0.0032267479437220873,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0193001 47.544527896243125, 10.019385899999993 47.5446089962431, 10.019428799999996 47.54468439624315, 10.019476100000004 47.54486489624315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_18_LVCableDist_mvgd_33535_lvgd_1164120000_30,BranchTee_mvgd_33535_lvgd_1164120000_18,BranchTee_mvgd_33535_lvgd_1164120000_30,0.1586727214474824,0.0198340901809353,0.012661520423022564,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.019476100000004 47.54486489624315, 10.019288599999992 47.5446384962431, 10.019134900000001 47.5445194962431, 10.018959900000006 47.54440659624309, 10.0187953 47.54431179624306, 10.018713799999993 47.5442683962431, 10.018332000000001 47.54412549624307, 10.017876799999996 47.54399749624309)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_18_LVStation_mvgd_33535_lvgd_1164120000,BusBar_mvgd_33535_lvgd_1164120000_LV,BranchTee_mvgd_33535_lvgd_1164120000_18,0.05674070828156523,0.007092588535195654,0.004527707284339911,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.019476100000004 47.54486489624315, 10.019644699999994 47.54516389624318, 10.019700400000003 47.545350696243155)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_19_LVCableDist_mvgd_33535_lvgd_1164120000_20,BranchTee_mvgd_33535_lvgd_1164120000_19,BranchTee_mvgd_33535_lvgd_1164120000_20,0.03841235768028122,0.004801544710035153,0.0030651699096640485,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.019694900000005 47.54481179624312, 10.0202027 47.544843296243066)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_19_LVCableDist_mvgd_33535_lvgd_1164120000_building_444888,BranchTee_mvgd_33535_lvgd_1164120000_19,BranchTee_mvgd_33535_lvgd_1164120000_building_444888,0.01711237192574981,0.014853538831550836,0.0014568987622334028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020050272935748 47.54472909929467, 10.0202027 47.544843296243066)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_19_LVCableDist_mvgd_33535_lvgd_1164120000_building_444889,BranchTee_mvgd_33535_lvgd_1164120000_19,BranchTee_mvgd_33535_lvgd_1164120000_building_444889,0.020621120397188022,0.0178991325047592,0.001755623645446966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020069250009328 47.54500534630388, 10.0202027 47.544843296243066)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_1_LVCableDist_mvgd_33535_lvgd_1164120000_34,BranchTee_mvgd_33535_lvgd_1164120000_1,BranchTee_mvgd_33535_lvgd_1164120000_34,0.11219849159005087,0.014024811448756358,0.008953041705848265,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.028086099999996 47.544584896243116, 10.028096799999997 47.544715296243076, 10.028094400000004 47.54481979624317, 10.028080699999997 47.54493979624312, 10.028072999999997 47.54502039624313, 10.027769299999996 47.54500749624317, 10.027403900000003 47.544984296243186, 10.027229200000006 47.544983296243146)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_1_LVCableDist_mvgd_33535_lvgd_1164120000_6,BranchTee_mvgd_33535_lvgd_1164120000_1,BranchTee_mvgd_33535_lvgd_1164120000_6,0.3009428491207999,0.037617856140099985,0.02401417203628648,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023387400000004 47.54525159624315, 10.023515999999994 47.545291596243196, 10.0239076 47.54536709624315, 10.024400399999994 47.5454162962432, 10.024664100000003 47.54543609624317, 10.024808400000003 47.54542899624318, 10.024926600000006 47.545408296243195, 10.025173599999992 47.54533529624318, 10.025422200000003 47.54525879624317, 10.025599799999997 47.54518579624316, 10.025690899999999 47.54515619624314, 10.025958700000007 47.54509739624316, 10.026289 47.54504919624317, 10.026545200000005 47.54502399624315, 10.026997499999995 47.54499179624312, 10.027229200000006 47.544983296243146)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_1_LVCableDist_mvgd_33535_lvgd_1164120000_building_444956,BranchTee_mvgd_33535_lvgd_1164120000_1,BranchTee_mvgd_33535_lvgd_1164120000_building_444956,0.01211976647420352,0.010519957299608656,0.0010318425085335627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027187199998455 47.545088596278376, 10.027229200000006 47.544983296243146)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_20_LVCableDist_mvgd_33535_lvgd_1164120000_building_444870,BranchTee_mvgd_33535_lvgd_1164120000_20,BranchTee_mvgd_33535_lvgd_1164120000_building_444870,0.014012412762338737,0.012162774277710025,0.0011929770401165668,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019690804810743 47.544685710273995, 10.019694900000005 47.54481179624312)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_21_LVCableDist_mvgd_33535_lvgd_1164120000_22,BranchTee_mvgd_33535_lvgd_1164120000_21,BranchTee_mvgd_33535_lvgd_1164120000_22,0.034188387204106094,0.004273548400513262,0.0027281120463939763,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.019288599999996 47.544227496243096, 10.019257200000006 47.54429039624313, 10.019257199999995 47.544394696243124, 10.019265799999994 47.544452596243076, 10.0193001 47.544527896243125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_21_LVCableDist_mvgd_33535_lvgd_1164120000_40,BranchTee_mvgd_33535_lvgd_1164120000_21,BranchTee_mvgd_33535_lvgd_1164120000_40,0.05656013744230148,0.007070017180287685,0.0045132983717789885,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.019771600000002 47.54450099624305, 10.019755400000003 47.54437999624308, 10.019720499999998 47.54431799624308, 10.019663399999999 47.5442761962431, 10.019578499999996 47.54424489624307, 10.019471800000002 47.54424979624312, 10.019288599999996 47.544227496243096)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_21_LVCableDist_mvgd_33535_lvgd_1164120000_42,BranchTee_mvgd_33535_lvgd_1164120000_21,BranchTee_mvgd_33535_lvgd_1164120000_42,0.08577916889335266,0.010722396111669082,0.00684487345339043,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.018635599999994 47.54359839624307, 10.019020900000003 47.543926796243035, 10.019203300000003 47.54410459624303, 10.019288599999996 47.544227496243096)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_22_LVCableDist_mvgd_33535_lvgd_1164120000_building_431830,BranchTee_mvgd_33535_lvgd_1164120000_22,BranchTee_mvgd_33535_lvgd_1164120000_building_431830,0.01516479051503907,0.013163038167053913,0.0012910872102799504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01948833355186 47.544479505076296, 10.0193001 47.544527896243125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_23_LVCableDist_mvgd_33535_lvgd_1164120000_25,BranchTee_mvgd_33535_lvgd_1164120000_23,BranchTee_mvgd_33535_lvgd_1164120000_25,0.038074521896546185,0.004759315237068273,0.0030382118122899843,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0240534 47.54445969624309, 10.024252799999998 47.5443569962431, 10.024505899999998 47.54433579624308)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_23_LVCableDist_mvgd_33535_lvgd_1164120000_3,BranchTee_mvgd_33535_lvgd_1164120000_3,BranchTee_mvgd_33535_lvgd_1164120000_23,0.022686527629159983,0.002835815953644998,0.0018103044447948643,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0240534 47.54445969624309, 10.023893199999995 47.54428679624306)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_23_LVCableDist_mvgd_33535_lvgd_1164120000_6,BranchTee_mvgd_33535_lvgd_1164120000_6,BranchTee_mvgd_33535_lvgd_1164120000_23,0.11584957664946703,0.014481197081183379,0.009244385344655714,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023387400000004 47.54525159624315, 10.023504899999999 47.54517339624319, 10.023835999999992 47.54502909624316, 10.023974099999998 47.544966896243146, 10.024052599999997 47.544917296243156, 10.024083299999994 47.54487829624317, 10.024102899999997 47.544829396243145, 10.024117799999999 47.5447674962431, 10.024125700000003 47.54465339624311, 10.024122499999994 47.5445342962431, 10.0240534 47.54445969624309)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_24_LVCableDist_mvgd_33535_lvgd_1164120000_building_444941,BranchTee_mvgd_33535_lvgd_1164120000_24,BranchTee_mvgd_33535_lvgd_1164120000_building_444941,0.018903962092669323,0.016408639096436972,0.0016094296625632938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02234105106837 47.544841920436326, 10.0225157 47.54496409624314)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_24_LVCableDist_mvgd_33535_lvgd_1164120000_building_444944,BranchTee_mvgd_33535_lvgd_1164120000_24,BranchTee_mvgd_33535_lvgd_1164120000_building_444944,0.013923545191962384,0.01208563722662335,0.0011854111074775515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022457274226714 47.54484520530877, 10.0225157 47.54496409624314)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_25_LVCableDist_mvgd_33535_lvgd_1164120000_26,BranchTee_mvgd_33535_lvgd_1164120000_25,BranchTee_mvgd_33535_lvgd_1164120000_26,0.037828956917009195,0.004728619614626149,0.003018616597843399,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024505899999998 47.54433579624308, 10.024487099999996 47.54408049624305, 10.024393200000004 47.54402439624305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_25_LVCableDist_mvgd_33535_lvgd_1164120000_building_444935,BranchTee_mvgd_33535_lvgd_1164120000_25,BranchTee_mvgd_33535_lvgd_1164120000_building_444935,0.013804587619215273,0.011982382053478857,0.001175283397464846,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024688649996639 47.544344996316944, 10.024505899999998 47.54433579624308)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_26_LVCableDist_mvgd_33535_lvgd_1164120000_building_444930,BranchTee_mvgd_33535_lvgd_1164120000_26,BranchTee_mvgd_33535_lvgd_1164120000_building_444930,0.01542831843431921,0.013391780400989074,0.001313523229148583,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024294362709664 47.54414601731079, 10.024393200000004 47.54402439624305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_27_LVCableDist_mvgd_33535_lvgd_1164120000_38,BranchTee_mvgd_33535_lvgd_1164120000_27,BranchTee_mvgd_33535_lvgd_1164120000_38,0.22682954437121147,0.028353693046401434,0.01810019316742844,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023800200000005 47.54395709624309, 10.023814100000001 47.543802696243, 10.023890699999997 47.543671296243, 10.024006699999996 47.54356519624305, 10.024148999999998 47.54346619624301, 10.024295599999997 47.54337729624302, 10.0244484 47.543277696242974, 10.024550200000004 47.543195296242985, 10.024657500000004 47.543067896242995, 10.024781799999996 47.542881596242985, 10.0248801 47.54276249624294, 10.0249787 47.54268319624297, 10.025120099999999 47.542573596242946, 10.025200200000006 47.542492996242935, 10.025299999999998 47.5424806962429, 10.025572100000002 47.542445896242896)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_27_LVCableDist_mvgd_33535_lvgd_1164120000_building_444859,BranchTee_mvgd_33535_lvgd_1164120000_27,BranchTee_mvgd_33535_lvgd_1164120000_building_444859,0.019494003046439896,0.01692079464430983,0.0016596640741892963,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02566006015993 47.54228088996157, 10.025572100000002 47.542445896242896)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_28_LVCableDist_mvgd_33535_lvgd_1164120000_38,BranchTee_mvgd_33535_lvgd_1164120000_28,BranchTee_mvgd_33535_lvgd_1164120000_38,0.25349079739065383,0.03168634967383173,0.02022766660161146,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023800200000005 47.54395709624309, 10.023814100000001 47.543802696243, 10.023890699999997 47.543671296243, 10.024006699999996 47.54356519624305, 10.024148999999998 47.54346619624301, 10.024295599999997 47.54337729624302, 10.0244484 47.543277696242974, 10.024550200000004 47.543195296242985, 10.024657500000004 47.543067896242995, 10.024781799999996 47.542881596242985, 10.0248801 47.54276249624294, 10.0249787 47.54268319624297, 10.025120099999999 47.542573596242946, 10.025200200000006 47.542492996242935, 10.025248899999996 47.54233739624293, 10.0252906 47.54221359624287, 10.025360900000003 47.54211649624293, 10.025462299999994 47.54204079624288)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_28_LVCableDist_mvgd_33535_lvgd_1164120000_4,BranchTee_mvgd_33535_lvgd_1164120000_4,BranchTee_mvgd_33535_lvgd_1164120000_28,0.03144686920129949,0.003930858650162437,0.0025093486328345216,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025462299999994 47.54204079624288, 10.025561300000003 47.541973296242894, 10.0256148 47.54192859624286, 10.025639400000003 47.54179939624283)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_28_LVCableDist_mvgd_33535_lvgd_1164120000_building_444864,BranchTee_mvgd_33535_lvgd_1164120000_28,BranchTee_mvgd_33535_lvgd_1164120000_building_444864,0.012976284738143759,0.011263415152708782,0.0011047640417949525,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025390950007557 47.54193449629415, 10.025462299999994 47.54204079624288)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_29_LVCableDist_mvgd_33535_lvgd_1164120000_36,BranchTee_mvgd_33535_lvgd_1164120000_29,BranchTee_mvgd_33535_lvgd_1164120000_36,0.02522772900299689,0.003153466125374611,0.0020130833018052576,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021079000000006 47.544675296243135, 10.021385500000003 47.5445837962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_29_LVCableDist_mvgd_33535_lvgd_1164120000_building_444901,BranchTee_mvgd_33535_lvgd_1164120000_29,BranchTee_mvgd_33535_lvgd_1164120000_building_444901,0.016072136497228204,0.013950614479594082,0.0013683360711687007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020976933089704 47.544548268477236, 10.021079000000006 47.544675296243135)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_2_LVCableDist_mvgd_33535_lvgd_1164120000_41,BranchTee_mvgd_33535_lvgd_1164120000_2,BranchTee_mvgd_33535_lvgd_1164120000_41,0.04957284753283972,0.006196605941604965,0.0039557374181180835,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0218206 47.544617996243126, 10.021898100000003 47.54460279624308, 10.021962 47.5445786962431, 10.021988099999998 47.54456159624312, 10.0220006 47.544522396243096, 10.022000400000001 47.54447069624306, 10.021943 47.54424859624311)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_2_LVCableDist_mvgd_33535_lvgd_1164120000_building_444881,BranchTee_mvgd_33535_lvgd_1164120000_2,BranchTee_mvgd_33535_lvgd_1164120000_building_444881,0.024200812308435637,0.021006305083722133,0.0020603884517112537,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02162438457654 47.54422070537497, 10.021943 47.54424859624311)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_30_LVCableDist_mvgd_33535_lvgd_1164120000_33,BranchTee_mvgd_33535_lvgd_1164120000_30,BranchTee_mvgd_33535_lvgd_1164120000_33,0.057380359324121374,0.007172544915515172,0.004578749168950259,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.017876799999996 47.54399749624309, 10.017157700000002 47.543827196243)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_30_LVCableDist_mvgd_33535_lvgd_1164120000_building_431820,BranchTee_mvgd_33535_lvgd_1164120000_30,BranchTee_mvgd_33535_lvgd_1164120000_building_431820,0.031899145281624575,0.02768845810445013,0.0027158026648059774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018217773927606 47.54382725126184, 10.017876799999996 47.54399749624309)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_31_LVCableDist_mvgd_33535_lvgd_1164120000_38,BranchTee_mvgd_33535_lvgd_1164120000_31,BranchTee_mvgd_33535_lvgd_1164120000_38,0.25601354886168054,0.03200169360771007,0.020428973221812006,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023800200000005 47.54395709624309, 10.023814100000001 47.543802696243, 10.023890699999997 47.543671296243, 10.024006699999996 47.54356519624305, 10.024148999999998 47.54346619624301, 10.024295599999997 47.54337729624302, 10.0244484 47.543277696242974, 10.024550200000004 47.543195296242985, 10.024657500000004 47.543067896242995, 10.024781799999996 47.542881596242985, 10.0248801 47.54276249624294, 10.0249787 47.54268319624297, 10.025092800000005 47.54274159624294, 10.0252948 47.542844896242926, 10.025383900000003 47.542875196242996, 10.0254521 47.54288199624297, 10.025544600000005 47.542866596242966, 10.025659899999992 47.54284399624296, 10.025708299999996 47.54284669624297, 10.025775299999996 47.54287749624296, 10.025823600000003 47.54292279624294, 10.025848600000003 47.54301069624297)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_31_LVCableDist_mvgd_33535_lvgd_1164120000_building_444872,BranchTee_mvgd_33535_lvgd_1164120000_31,BranchTee_mvgd_33535_lvgd_1164120000_building_444872,0.014299818867357579,0.012412242776866379,0.0012174459799267285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02566404669125 47.543040811455796, 10.025848600000003 47.54301069624297)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_32_LVCableDist_mvgd_33535_lvgd_1164120000_building_444898,BranchTee_mvgd_33535_lvgd_1164120000_32,BranchTee_mvgd_33535_lvgd_1164120000_building_444898,0.018724106968966883,0.016252524849063255,0.0015941173079557407,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020699070321731 47.5449058067372, 10.020855599999994 47.54477489624311)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_33_LVCableDist_mvgd_33535_lvgd_1164120000_5,BranchTee_mvgd_33535_lvgd_1164120000_5,BranchTee_mvgd_33535_lvgd_1164120000_33,0.1276484104779005,0.01595605130973756,0.01018589043843458,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.017157700000002 47.543827196243, 10.016909800000002 47.54375609624301, 10.016738500000006 47.54369069624302, 10.0165348 47.543603696243, 10.016299300000004 47.54348599624301, 10.016063899999997 47.54334689624297, 10.015792099999997 47.54316379624297)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_33_LVCableDist_mvgd_33535_lvgd_1164120000_building_431790,BranchTee_mvgd_33535_lvgd_1164120000_33,BranchTee_mvgd_33535_lvgd_1164120000_building_431790,0.06254101339655192,0.05428559962820707,0.005324564321159513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017540599997933 47.54332774627277, 10.017157700000002 47.543827196243)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_34_LVCableDist_mvgd_33535_lvgd_1164120000_building_444960,BranchTee_mvgd_33535_lvgd_1164120000_34,BranchTee_mvgd_33535_lvgd_1164120000_building_444960,0.009393818045529396,0.008153834063519516,0.0007997629985229478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02799979092903 47.54452387229045, 10.028086099999996 47.544584896243116)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_35_LVCableDist_mvgd_33535_lvgd_1164120000_38,BranchTee_mvgd_33535_lvgd_1164120000_35,BranchTee_mvgd_33535_lvgd_1164120000_38,0.024742901896576887,0.003092862737072111,0.0019743958182001846,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023836899999994 47.5441783962431, 10.023800200000005 47.54395709624309)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_35_LVCableDist_mvgd_33535_lvgd_1164120000_building_444923,BranchTee_mvgd_33535_lvgd_1164120000_35,BranchTee_mvgd_33535_lvgd_1164120000_building_444923,0.016492054816263653,0.01431510358051685,0.0014040867246664372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024055487223123 47.54418667529091, 10.023836899999994 47.5441783962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_36_LVCableDist_mvgd_33535_lvgd_1164120000_building_444907,BranchTee_mvgd_33535_lvgd_1164120000_36,BranchTee_mvgd_33535_lvgd_1164120000_building_444907,0.012105901986483843,0.010507922924267976,0.0010306621254116063,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021325795847453 47.54448263772723, 10.021385500000003 47.5445837962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_37_LVCableDist_mvgd_33535_lvgd_1164120000_41,BranchTee_mvgd_33535_lvgd_1164120000_37,BranchTee_mvgd_33535_lvgd_1164120000_41,0.007945735209565614,0.0009932169011957017,0.0006340414893882237,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021715799999996 47.54462609624317, 10.0218206 47.544617996243126)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_37_LVCableDist_mvgd_33535_lvgd_1164120000_building_444887,BranchTee_mvgd_33535_lvgd_1164120000_37,BranchTee_mvgd_33535_lvgd_1164120000_building_444887,0.017029696251384775,0.014781776346201984,0.001449859990041455,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021606450005763 47.544760246296825, 10.021715799999996 47.54462609624317)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_39_LVCableDist_mvgd_33535_lvgd_1164120000_5,BranchTee_mvgd_33535_lvgd_1164120000_5,BranchTee_mvgd_33535_lvgd_1164120000_39,0.032660734318499,0.004082591789812375,0.0026062107640944508,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.015792099999997 47.54316379624297, 10.0155251 47.54293219624298)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_39_LVCableDist_mvgd_33535_lvgd_1164120000_building_431776,BranchTee_mvgd_33535_lvgd_1164120000_39,BranchTee_mvgd_33535_lvgd_1164120000_building_431776,0.0434609613319909,0.0377241144361681,0.003700142858324236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015182849993586 47.54324709625693, 10.0155251 47.54293219624298)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_3_LVCableDist_mvgd_33535_lvgd_1164120000_35,BranchTee_mvgd_33535_lvgd_1164120000_3,BranchTee_mvgd_33535_lvgd_1164120000_35,0.012768928822914543,0.0015961161028643178,0.001018915233800694,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023893199999995 47.54428679624306, 10.023836899999994 47.5441783962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_3_LVCableDist_mvgd_33535_lvgd_1164120000_building_444932,BranchTee_mvgd_33535_lvgd_1164120000_3,BranchTee_mvgd_33535_lvgd_1164120000_building_444932,0.02067044530490659,0.017941946524658917,0.0017598230280523853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023749126641757 47.544445130827974, 10.023893199999995 47.54428679624306)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_40_LVCableDist_mvgd_33535_lvgd_1164120000_building_444876,BranchTee_mvgd_33535_lvgd_1164120000_40,BranchTee_mvgd_33535_lvgd_1164120000_building_444876,0.014087035060410919,0.012227546432436677,0.0011993301707151824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019957375724198 47.54448649213634, 10.019771600000002 47.54450099624305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_41_LVCableDist_mvgd_33535_lvgd_1164120000_building_444885,BranchTee_mvgd_33535_lvgd_1164120000_41,BranchTee_mvgd_33535_lvgd_1164120000_building_444885,0.007366218504322498,0.006393877661751928,0.000627138930117544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021771005993381 47.544560857456176, 10.0218206 47.544617996243126)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_42_LVCableDist_mvgd_33535_lvgd_1164120000_building_431822,BranchTee_mvgd_33535_lvgd_1164120000_42,BranchTee_mvgd_33535_lvgd_1164120000_building_431822,0.026800261916186757,0.023262627343250106,0.0022816982112497325,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01863909998445 47.543839596295676, 10.018635599999994 47.54359839624307)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_43_LVCableDist_mvgd_33535_lvgd_1164120000_6,BranchTee_mvgd_33535_lvgd_1164120000_6,BranchTee_mvgd_33535_lvgd_1164120000_43,0.02727680227297231,0.003409600284121539,0.0021765920815084564,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023027999999995 47.54522279624318, 10.023210300000002 47.545241496243214, 10.023387400000004 47.54525159624315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_43_LVCableDist_mvgd_33535_lvgd_1164120000_8,BranchTee_mvgd_33535_lvgd_1164120000_8,BranchTee_mvgd_33535_lvgd_1164120000_43,0.10080439373951905,0.012600549217439881,0.008043833107669809,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0216971 47.54515259624312, 10.022018499999996 47.54518939624316, 10.022516099999997 47.5451869962432, 10.023027999999995 47.54522279624318)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_43_LVCableDist_mvgd_33535_lvgd_1164120000_building_444916,BranchTee_mvgd_33535_lvgd_1164120000_43,BranchTee_mvgd_33535_lvgd_1164120000_building_444916,0.019075163924527103,0.016557242286489526,0.0016240053004706475,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023007861665548 47.5450516571174, 10.023027999999995 47.54522279624318)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_44_LVCableDist_mvgd_33535_lvgd_1164120000_46,BranchTee_mvgd_33535_lvgd_1164120000_44,BranchTee_mvgd_33535_lvgd_1164120000_46,0.02038904937936787,0.005158429492980071,0.0016397846462438818,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019106300000004 47.54537409624323, 10.019236500000003 47.54537759624319, 10.019367600000004 47.5453435962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_44_LVCableDist_mvgd_33535_lvgd_1164120000_building_431851,BranchTee_mvgd_33535_lvgd_1164120000_44,BranchTee_mvgd_33535_lvgd_1164120000_building_431851,0.020958964242820944,0.018192380962768578,0.0017843867112958408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019398350951889 47.54553107827005, 10.019367600000004 47.5453435962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_44_LVStation_mvgd_33535_lvgd_1164120000,BusBar_mvgd_33535_lvgd_1164120000_LV,BranchTee_mvgd_33535_lvgd_1164120000_44,0.02508197477706945,0.006345739618598571,0.0020172121010474465,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019700400000003 47.545350696243155, 10.019367600000004 47.5453435962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_45_LVCableDist_mvgd_33535_lvgd_1164120000_47,BranchTee_mvgd_33535_lvgd_1164120000_45,BranchTee_mvgd_33535_lvgd_1164120000_47,0.14243012693165827,0.03603482211370954,0.01145491047471,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016676000000002 47.544549596243115, 10.016699600000008 47.54465399624315, 10.016725500000002 47.544777996243084, 10.016766900000006 47.54485109624311, 10.016811199999996 47.54490029624317, 10.016877499999996 47.54494969624318, 10.016963 47.54496699624312, 10.017489999999993 47.54499449624314, 10.01808674833744 47.54513854787915)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_45_LVCableDist_mvgd_33535_lvgd_1164120000_49,BranchTee_mvgd_33535_lvgd_1164120000_45,BranchTee_mvgd_33535_lvgd_1164120000_49,0.008021305222024983,0.0020293902211723207,0.0006451116430775073,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016676000000002 47.544549596243115, 10.016641500000002 47.5444812962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_45_LVCableDist_mvgd_33535_lvgd_1164120000_building_431804,BranchTee_mvgd_33535_lvgd_1164120000_45,BranchTee_mvgd_33535_lvgd_1164120000_building_431804,0.017780363841333274,0.015433355814277282,0.0015137696974385365,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01644316020117 47.54457582695017, 10.016676000000002 47.544549596243115)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_46_LVCableDist_mvgd_33535_lvgd_1164120000_47,BranchTee_mvgd_33535_lvgd_1164120000_46,BranchTee_mvgd_33535_lvgd_1164120000_47,0.08114965751833543,0.020530863352138863,0.006526442698263816,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.01808674833744 47.54513854787915, 10.018683499999993 47.545282596243204, 10.019106300000004 47.54537409624323)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_46_LVCableDist_mvgd_33535_lvgd_1164120000_building_431849,BranchTee_mvgd_33535_lvgd_1164120000_46,BranchTee_mvgd_33535_lvgd_1164120000_building_431849,0.016165234364655477,0.014031423428520954,0.0013762621592884466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018936228313464 47.545285370160144, 10.019106300000004 47.54537409624323)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_47_LVCableDist_mvgd_33535_lvgd_1164120000_building_431838,BranchTee_mvgd_33535_lvgd_1164120000_47,BranchTee_mvgd_33535_lvgd_1164120000_building_431838,0.031112069793361403,0.0270052765806377,0.0026487932923116016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018007949266716 47.5448636726949, 10.01808674833744 47.54513854787915)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_47_LVCableDist_mvgd_33535_lvgd_1164120000_building_431842,BranchTee_mvgd_33535_lvgd_1164120000_47,BranchTee_mvgd_33535_lvgd_1164120000_building_431842,0.044937092459205324,0.03900539625459022,0.0038258164716295207,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018408412410864 47.544797932674655, 10.01808674833744 47.54513854787915)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_48_LVCableDist_mvgd_33535_lvgd_1164120000_51,BranchTee_mvgd_33535_lvgd_1164120000_48,BranchTee_mvgd_33535_lvgd_1164120000_51,0.03152249549060167,0.007975191359122223,0.0025351895105559445,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016136399999995 47.5441724962431, 10.015767800000006 47.54403819624304)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_48_LVCableDist_mvgd_33535_lvgd_1164120000_52,BranchTee_mvgd_33535_lvgd_1164120000_48,BranchTee_mvgd_33535_lvgd_1164120000_52,0.03325065273473677,0.008412415141888403,0.0026741761627779685,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016487799999997 47.54435359624312, 10.016136399999995 47.5441724962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_48_LVCableDist_mvgd_33535_lvgd_1164120000_building_431810,BranchTee_mvgd_33535_lvgd_1164120000_48,BranchTee_mvgd_33535_lvgd_1164120000_building_431810,0.03589809606412828,0.03115954738366335,0.003056261981056297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016164475947944 47.543849961976726, 10.016136399999995 47.5441724962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_48_LVCableDist_mvgd_33535_lvgd_1164120000_building_431829,BranchTee_mvgd_33535_lvgd_1164120000_48,BranchTee_mvgd_33535_lvgd_1164120000_building_431829,0.013230771888365432,0.011484309999101196,0.0011264303552534836,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01609000246908 47.54405764512319, 10.016136399999995 47.5441724962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_48_LVCableDist_mvgd_33535_lvgd_1164120000_building_431841,BranchTee_mvgd_33535_lvgd_1164120000_48,BranchTee_mvgd_33535_lvgd_1164120000_building_431841,0.0251040181155138,0.021790287724265976,0.0021372848298453757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015989430840802 47.54437528213193, 10.016136399999995 47.5441724962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_49_LVCableDist_mvgd_33535_lvgd_1164120000_52,BranchTee_mvgd_33535_lvgd_1164120000_49,BranchTee_mvgd_33535_lvgd_1164120000_52,0.01834155200041026,0.0046404126561037954,0.0014751151365100556,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016641500000002 47.5444812962431, 10.016564900000004 47.54441039624311, 10.016487799999997 47.54435359624312)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_49_LVCableDist_mvgd_33535_lvgd_1164120000_building_431801,BranchTee_mvgd_33535_lvgd_1164120000_49,BranchTee_mvgd_33535_lvgd_1164120000_building_431801,0.01290435172057011,0.011200977293454855,0.0010986398689028787,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016751999999846 47.544392546246236, 10.016641500000002 47.5444812962431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_4_LVCableDist_mvgd_33535_lvgd_1164120000_building_444862,BranchTee_mvgd_33535_lvgd_1164120000_4,BranchTee_mvgd_33535_lvgd_1164120000_building_444862,0.015990558975559312,0.013879805190785483,0.001361390792579551,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025427372202401 47.54179265165128, 10.025639400000003 47.54179939624283)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_50_LVCableDist_mvgd_33535_lvgd_1164120000_53,BranchTee_mvgd_33535_lvgd_1164120000_50,BranchTee_mvgd_33535_lvgd_1164120000_53,0.019751242806983472,0.004997064430166819,0.0015884891981232006,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.015469 47.54398379624303, 10.015392700000001 47.54395609624307, 10.015356200000005 47.543926296243036, 10.015339700000004 47.543880796243, 10.015356900000004 47.543849396243075)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_50_LVCableDist_mvgd_33535_lvgd_1164120000_building_431827,BranchTee_mvgd_33535_lvgd_1164120000_50,BranchTee_mvgd_33535_lvgd_1164120000_building_431827,0.040420547045870274,0.0350850348358154,0.003441290618006779,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01492183564308 47.54363647154005, 10.015356900000004 47.543849396243075)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_51_LVCableDist_mvgd_33535_lvgd_1164120000_53,BranchTee_mvgd_33535_lvgd_1164120000_51,BranchTee_mvgd_33535_lvgd_1164120000_53,0.023339849117953577,0.005904981826842255,0.0018771020422363436,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.015767800000006 47.54403819624304, 10.015632700000001 47.54400779624306, 10.015469 47.54398379624303)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_51_LVCableDist_mvgd_33535_lvgd_1164120000_building_431803,BranchTee_mvgd_33535_lvgd_1164120000_51,BranchTee_mvgd_33535_lvgd_1164120000_building_431803,0.020262631577418224,0.017587964209199017,0.0017251029251129702,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015869293767597 47.543869305929164, 10.015767800000006 47.54403819624304)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_51_LVCableDist_mvgd_33535_lvgd_1164120000_building_431834,BranchTee_mvgd_33535_lvgd_1164120000_51,BranchTee_mvgd_33535_lvgd_1164120000_building_431834,0.025436505710250565,0.02207888695649749,0.002165591879699818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015778744980583 47.544267013308236, 10.015767800000006 47.54403819624304)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_52_LVCableDist_mvgd_33535_lvgd_1164120000_building_431818,BranchTee_mvgd_33535_lvgd_1164120000_52,BranchTee_mvgd_33535_lvgd_1164120000_building_431818,0.03696159178363016,0.03208266166819098,0.0031468049872570535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016788355701491 47.54409064619765, 10.016487799999997 47.54435359624312)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_52_LVCableDist_mvgd_33535_lvgd_1164120000_building_431866,BranchTee_mvgd_33535_lvgd_1164120000_52,BranchTee_mvgd_33535_lvgd_1164120000_building_431866,0.023549767544333126,0.020441198228481155,0.0020049603488687586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016253367923085 47.54449381781828, 10.016487799999997 47.54435359624312)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_53_LVCableDist_mvgd_33535_lvgd_1164120000_building_431821,BranchTee_mvgd_33535_lvgd_1164120000_53,BranchTee_mvgd_33535_lvgd_1164120000_building_431821,0.018962161999280767,0.016459156615375704,0.0016143846373775524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015492014045597 47.54415374741411, 10.015469 47.54398379624303)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_54_LVCableDist_mvgd_33535_lvgd_1164120000_55,BranchTee_mvgd_33535_lvgd_1164120000_54,BranchTee_mvgd_33535_lvgd_1164120000_55,0.02149824603912613,0.009652712471567633,0.0018235457591827824,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.019214599999994 47.546414296243285, 10.019147700000003 47.54622619624327)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_54_LVCableDist_mvgd_33535_lvgd_1164120000_56,BranchTee_mvgd_33535_lvgd_1164120000_54,BranchTee_mvgd_33535_lvgd_1164120000_56,0.09859924528084042,0.04427106113109735,0.008363483944842232,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.019147700000003 47.54622619624327, 10.019130300000004 47.546079496243244, 10.019162399999999 47.54598549624321, 10.019270700000005 47.545916796243176, 10.019584699999994 47.54580809624323, 10.019594899999994 47.54573919624322, 10.019690600000006 47.54551339624319)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_54_LVCableDist_mvgd_33535_lvgd_1164120000_building_431860,BranchTee_mvgd_33535_lvgd_1164120000_54,BranchTee_mvgd_33535_lvgd_1164120000_building_431860,0.01881785724345264,0.01633390008731689,0.0016020989401602053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019397426385035 47.54623064175421, 10.019147700000003 47.54622619624327)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_55_LVCableDist_mvgd_33535_lvgd_1164120000_building_431855,BranchTee_mvgd_33535_lvgd_1164120000_55,BranchTee_mvgd_33535_lvgd_1164120000_building_431855,0.02068714596896575,0.01795644270106227,0.001761244875175732,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018946115913247 47.54637513182112, 10.019214599999994 47.546414296243285)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_55_LVCableDist_mvgd_33535_lvgd_1164120000_building_431865,BranchTee_mvgd_33535_lvgd_1164120000_55,BranchTee_mvgd_33535_lvgd_1164120000_building_431865,0.024738468779349772,0.0214729909004756,0.0021061629971910007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019302959504953 47.546628740202635, 10.019214599999994 47.546414296243285)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_55_LVCableDist_mvgd_33535_lvgd_1164120000_building_431868,BranchTee_mvgd_33535_lvgd_1164120000_55,BranchTee_mvgd_33535_lvgd_1164120000_building_431868,0.04784348926191585,0.04152814867934296,0.004073258843896833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019520807865781 47.54679155446607, 10.019214599999994 47.546414296243285)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_55_LVCableDist_mvgd_33535_lvgd_1164120000_building_444927,BranchTee_mvgd_33535_lvgd_1164120000_55,BranchTee_mvgd_33535_lvgd_1164120000_building_444927,0.04534599305862517,0.03936032197488665,0.003860629107759457,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019615313711057 47.54671886494488, 10.019214599999994 47.546414296243285)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_56_LVCableDist_mvgd_33535_lvgd_1164120000_building_444910,BranchTee_mvgd_33535_lvgd_1164120000_56,BranchTee_mvgd_33535_lvgd_1164120000_building_444910,0.010611472172529047,0.009210757845755212,0.0009034306138688231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019719026791288 47.5456069381515, 10.019690600000006 47.54551339624319)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_56_LVStation_mvgd_33535_lvgd_1164120000,BusBar_mvgd_33535_lvgd_1164120000_LV,BranchTee_mvgd_33535_lvgd_1164120000_56,0.01812353738167237,0.008137468284370893,0.0015372928411736917,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.019690600000006 47.54551339624319, 10.019702999999996 47.54542459624318, 10.019700400000003 47.545350696243155)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_57_LVCableDist_mvgd_33535_lvgd_1164120000_58,BranchTee_mvgd_33535_lvgd_1164120000_57,BranchTee_mvgd_33535_lvgd_1164120000_58,0.03225537308958219,0.027997663841757343,0.002746130889013495,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020061800000002 47.54535809624316, 10.020241499999994 47.54537369624321, 10.020331899999993 47.54541139624316, 10.020440200000005 47.5454724962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_57_LVCableDist_mvgd_33535_lvgd_1164120000_building_444897,BranchTee_mvgd_33535_lvgd_1164120000_57,BranchTee_mvgd_33535_lvgd_1164120000_building_444897,0.007290720406264261,0.006328345312637378,0.0006207112363945886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020083476721977 47.54529414409925, 10.020061800000002 47.54535809624316)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_57_LVStation_mvgd_33535_lvgd_1164120000,BusBar_mvgd_33535_lvgd_1164120000_LV,BranchTee_mvgd_33535_lvgd_1164120000_57,0.02723740933797923,0.02364207130536597,0.002318915701641268,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019700400000003 47.545350696243155, 10.019840400000001 47.5453545962432, 10.020061800000002 47.54535809624316)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_58_LVCableDist_mvgd_33535_lvgd_1164120000_59,BranchTee_mvgd_33535_lvgd_1164120000_58,BranchTee_mvgd_33535_lvgd_1164120000_59,0.025230630872993876,0.021900187597758684,0.002148064280552505,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020440200000005 47.5454724962432, 10.020500799999997 47.545499296243186, 10.020585399999996 47.5455190962432, 10.020758000000004 47.545527896243215)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_58_LVCableDist_mvgd_33535_lvgd_1164120000_60,BranchTee_mvgd_33535_lvgd_1164120000_58,BranchTee_mvgd_33535_lvgd_1164120000_60,0.008585833010332725,0.007452503052968806,0.0007309734465666918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020440200000005 47.5454724962432, 10.020365900000003 47.5455310962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_59_LVCableDist_mvgd_33535_lvgd_1164120000_building_444912,BranchTee_mvgd_33535_lvgd_1164120000_59,BranchTee_mvgd_33535_lvgd_1164120000_building_444912,0.0234417636228705,0.020347450824651593,0.0019957652016280372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021020750014458 47.545414846310315, 10.020758000000004 47.545527896243215)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_60_LVCableDist_mvgd_33535_lvgd_1164120000_building_444913,BranchTee_mvgd_33535_lvgd_1164120000_60,BranchTee_mvgd_33535_lvgd_1164120000_building_444913,0.008338712151485876,0.00723800214748974,0.000709934278242266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020430899999946 47.54559184626193, 10.020365900000003 47.5455310962432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_7_LVCableDist_mvgd_33535_lvgd_1164120000_8,BranchTee_mvgd_33535_lvgd_1164120000_7,BranchTee_mvgd_33535_lvgd_1164120000_8,0.010420124635422013,0.0013025155794277516,0.0008314889899049483,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021560699999998 47.54513699624317, 10.0216971 47.54515259624312)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_7_LVCableDist_mvgd_33535_lvgd_1164120000_building_444919,BranchTee_mvgd_33535_lvgd_1164120000_7,BranchTee_mvgd_33535_lvgd_1164120000_building_444919,0.019091175609290353,0.016571140428864026,0.001625368489852813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021475426520883 47.54497518814503, 10.021560699999998 47.54513699624317)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120000_9_LVCableDist_mvgd_33535_lvgd_1164120000_building_34999667,BranchTee_mvgd_33535_lvgd_1164120000_9,BranchTee_mvgd_33535_lvgd_1164120000_building_34999667,0.018616108611129164,0.016158782274460114,0.0015849226343862483,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016632275421353 47.54311604291023, 10.016800800000002 47.54299349624296)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_10_LVCableDist_mvgd_33535_lvgd_1164120001_4,BranchTee_mvgd_33535_lvgd_1164120001_4,BranchTee_mvgd_33535_lvgd_1164120001_10,0.02689868112197268,0.012077507823765734,0.0022816268731091836,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021311299999999 47.54944629624353, 10.021036000000002 47.54929209624356)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_10_LVCableDist_mvgd_33535_lvgd_1164120001_building_445469,BranchTee_mvgd_33535_lvgd_1164120001_10,BranchTee_mvgd_33535_lvgd_1164120001_building_445469,0.03741977694911906,0.032480366391835346,0.003185813571418903,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021367702718388 47.5497809083816, 10.021311299999999 47.54944629624353)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_11_LVCableDist_mvgd_33535_lvgd_1164120001_12,BranchTee_mvgd_33535_lvgd_1164120001_11,BranchTee_mvgd_33535_lvgd_1164120001_12,0.12052371297395421,0.05411514712530544,0.010223183104083164,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022899700000002 47.549764696243585, 10.022879000000003 47.54960219624357, 10.022844699999995 47.549490796243525, 10.022787300000006 47.54944129624351, 10.022658899999998 47.54942889624353, 10.022420499999996 47.549507796243546, 10.022246299999999 47.549538796243525, 10.022051400000006 47.54952019624358, 10.021757899999994 47.549422696243525)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_11_LVCableDist_mvgd_33535_lvgd_1164120001_building_445420,BranchTee_mvgd_33535_lvgd_1164120001_11,BranchTee_mvgd_33535_lvgd_1164120001_building_445420,0.013830157602675143,0.012004576799122025,0.0011774603532611935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023021468206807 47.549857860493745, 10.022899700000002 47.549764696243585)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_12_LVCableDist_mvgd_33535_lvgd_1164120001_7,BranchTee_mvgd_33535_lvgd_1164120001_7,BranchTee_mvgd_33535_lvgd_1164120001_12,0.01771857798232008,0.007955641514061716,0.001502942969375495,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021757899999994 47.549422696243525, 10.021551499999998 47.549346196243505)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_12_LVCableDist_mvgd_33535_lvgd_1164120001_building_445475,BranchTee_mvgd_33535_lvgd_1164120001_12,BranchTee_mvgd_33535_lvgd_1164120001_building_445475,0.012523958584822074,0.01087079605162556,0.00106625427729477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021731933700032 47.5495340330409, 10.021757899999994 47.549422696243525)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_13_LVCableDist_mvgd_33535_lvgd_1164120001_5,BranchTee_mvgd_33535_lvgd_1164120001_5,BranchTee_mvgd_33535_lvgd_1164120001_13,0.016786899849625652,0.007537318032481918,0.0014239152335915521,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021055500000001 47.54912709624349, 10.021204100000006 47.54901449624347)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_13_LVCableDist_mvgd_33535_lvgd_1164120001_building_445438,BranchTee_mvgd_33535_lvgd_1164120001_13,BranchTee_mvgd_33535_lvgd_1164120001_building_445438,0.02032412025912518,0.01764133638492066,0.0017303378969017397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020991133875444 47.54890217648193, 10.021204100000006 47.54901449624347)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_14_LVCableDist_mvgd_33535_lvgd_1164120001_15,BranchTee_mvgd_33535_lvgd_1164120001_14,BranchTee_mvgd_33535_lvgd_1164120001_15,0.05098854835077871,0.022893858209499643,0.004325001720732389,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.014399799999996 47.54768779624335, 10.0140519 47.54763709624338, 10.013737499999996 47.54759299624337)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_14_LVCableDist_mvgd_33535_lvgd_1164120001_9,BranchTee_mvgd_33535_lvgd_1164120001_9,BranchTee_mvgd_33535_lvgd_1164120001_14,0.1023429607313627,0.04595198936838185,0.0086810371266675,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.015748899999995 47.54777699624341, 10.015681099999998 47.547778496243396, 10.015610199999992 47.54777999624341, 10.015347700000003 47.5477641962434, 10.014830499999997 47.54773529624339, 10.014631199999997 47.54772369624335, 10.014399799999996 47.54768779624335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_14_LVCableDist_mvgd_33535_lvgd_1164120001_building_431861,BranchTee_mvgd_33535_lvgd_1164120001_14,BranchTee_mvgd_33535_lvgd_1164120001_building_431861,0.027830707417948526,0.02415705403877932,0.0023694274157445632,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014207900043646 47.54790184630209, 10.014399799999996 47.54768779624335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_15_LVCableDist_mvgd_33535_lvgd_1164120001_building_431815,BranchTee_mvgd_33535_lvgd_1164120001_15,BranchTee_mvgd_33535_lvgd_1164120001_building_431815,0.020388760159149096,0.017697443818141416,0.0017358411544714295,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013722671997906 47.5477762263596, 10.013737499999996 47.54759299624337)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_16_LVCableDist_mvgd_33535_lvgd_1164120001_3,BranchTee_mvgd_33535_lvgd_1164120001_3,BranchTee_mvgd_33535_lvgd_1164120001_16,0.008335906145855672,0.0037428218594891967,0.0007070765807385231,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021565799999996 47.54872019624347, 10.021669499999998 47.54869399624346)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_16_LVCableDist_mvgd_33535_lvgd_1164120001_9,BranchTee_mvgd_33535_lvgd_1164120001_9,BranchTee_mvgd_33535_lvgd_1164120001_16,0.7278449209982019,0.32680236952819264,0.061737990932536055,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.015748899999995 47.54777699624341, 10.0155893 47.547599496243365, 10.015402499999999 47.547391696243324, 10.015345699999992 47.54725859624334, 10.015341799999996 47.547172896243325, 10.0153883 47.547081296243384, 10.015480999999994 47.547017896243354, 10.015637599999998 47.54696909624338, 10.015821399999995 47.54696509624329, 10.018677099999996 47.54734949624335, 10.0189357 47.54741779624339, 10.019054100000004 47.54749899624343, 10.019116300000004 47.54759619624336, 10.0191181 47.54767999624337, 10.019104800000001 47.5477641962434, 10.019048899999998 47.54785219624343, 10.0189799 47.54791159624339, 10.018707499999994 47.5480740962434, 10.018647499999995 47.548161496243424, 10.018632300000005 47.548235596243394, 10.0186498 47.548302496243416, 10.018704599999996 47.54836589624347, 10.018761499999998 47.54843579624345, 10.018866399999997 47.54852009624344, 10.018940600000008 47.54857279624349, 10.019117899999996 47.548669596243435, 10.019218899999998 47.54870669624342, 10.019353300000004 47.54871629624348, 10.019465200000006 47.54870279624347, 10.019803899999996 47.54856239624347, 10.019947100000001 47.548538196243456, 10.020308800000004 47.54853429624344, 10.0206322 47.54854049624342, 10.020817599999999 47.548552096243476, 10.020998899999995 47.54859669624347, 10.021284100000006 47.54869909624347, 10.021407499999999 47.548716396243485, 10.021486600000003 47.54872459624351, 10.021565799999996 47.54872019624347)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_17_LVCableDist_mvgd_33535_lvgd_1164120001_18,BranchTee_mvgd_33535_lvgd_1164120001_17,BranchTee_mvgd_33535_lvgd_1164120001_18,0.05259068515208208,0.045648714712007245,0.004477421624280046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021567400000006 47.547765096243396, 10.021580799999997 47.547724696243385, 10.021776699999997 47.547313696243336)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_17_LVCableDist_mvgd_33535_lvgd_1164120001_20,BranchTee_mvgd_33535_lvgd_1164120001_17,BranchTee_mvgd_33535_lvgd_1164120001_20,0.054386566146632065,0.04720753941527663,0.0046303178334923594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021776699999997 47.547313696243336, 10.021792399999999 47.547233696243346, 10.021805000000002 47.547103896243364, 10.0217457 47.546983096243316, 10.021584400000002 47.546878396243315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_17_LVCableDist_mvgd_33535_lvgd_1164120001_building_444929,BranchTee_mvgd_33535_lvgd_1164120001_17,BranchTee_mvgd_33535_lvgd_1164120001_building_444929,0.027134641517056225,0.023552868836804804,0.0023101663411347418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021422050791509 47.54735651257184, 10.021776699999997 47.547313696243336)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_17_LVCableDist_mvgd_33535_lvgd_1164120001_building_444934,BranchTee_mvgd_33535_lvgd_1164120001_17,BranchTee_mvgd_33535_lvgd_1164120001_building_444934,0.030771474848247205,0.026709640168278575,0.0026197960056635037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021934316396246 47.54756920401591, 10.021776699999997 47.547313696243336)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_18_LVCableDist_mvgd_33535_lvgd_1164120001_23,BranchTee_mvgd_33535_lvgd_1164120001_18,BranchTee_mvgd_33535_lvgd_1164120001_23,0.025080293192083332,0.021769694490728332,0.002135264957221645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021494799999996 47.54798539624339, 10.021567400000006 47.547765096243396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_18_LVCableDist_mvgd_33535_lvgd_1164120001_building_444936,BranchTee_mvgd_33535_lvgd_1164120001_18,BranchTee_mvgd_33535_lvgd_1164120001_building_444936,0.024112387165493195,0.020929552059648093,0.0020528601860878713,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021819603579655 47.547898744899314, 10.021567400000006 47.547765096243396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_19_LVCableDist_mvgd_33535_lvgd_1164120001_20,BranchTee_mvgd_33535_lvgd_1164120001_19,BranchTee_mvgd_33535_lvgd_1164120001_20,0.1035364619973866,0.08986964901373157,0.00881480042536002,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021584400000002 47.546878396243315, 10.020940500000002 47.546616596243275, 10.0208271 47.546572096243246, 10.020671199999997 47.54681729624328, 10.020669800000007 47.54685259624332, 10.020688600000003 47.54688159624335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_19_LVCableDist_mvgd_33535_lvgd_1164120001_21,BranchTee_mvgd_33535_lvgd_1164120001_19,BranchTee_mvgd_33535_lvgd_1164120001_21,0.019206400741241338,0.01667115584339748,0.001635178430452863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020688600000003 47.54688159624335, 10.020727499999996 47.54692679624334, 10.020795900000003 47.546966596243294, 10.020872400000005 47.54699559624329)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_19_LVCableDist_mvgd_33535_lvgd_1164120001_building_444938,BranchTee_mvgd_33535_lvgd_1164120001_19,BranchTee_mvgd_33535_lvgd_1164120001_building_444938,0.024934679253043043,0.02164330159164136,0.0021228677998625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020378333861643 47.54695981098453, 10.020688600000003 47.54688159624335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_1_LVCableDist_mvgd_33535_lvgd_1164120001_13,BranchTee_mvgd_33535_lvgd_1164120001_1,BranchTee_mvgd_33535_lvgd_1164120001_13,0.016633200247495334,0.007468306911125405,0.0014108779719869205,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021204100000006 47.54901449624347, 10.021361500000001 47.54890949624347)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_1_LVCableDist_mvgd_33535_lvgd_1164120001_16,BranchTee_mvgd_33535_lvgd_1164120001_1,BranchTee_mvgd_33535_lvgd_1164120001_16,0.02606101039087961,0.011701393665504945,0.0022105731273060958,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021565799999996 47.54872019624347, 10.021361500000001 47.54890949624347)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_1_LVCableDist_mvgd_33535_lvgd_1164120001_building_445447,BranchTee_mvgd_33535_lvgd_1164120001_1,BranchTee_mvgd_33535_lvgd_1164120001_building_445447,0.02136588599558002,0.018545589044163455,0.0018190308740391986,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02158109503761 47.54903121730225, 10.021361500000001 47.54890949624347)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_20_LVCableDist_mvgd_33535_lvgd_1164120001_building_444924,BranchTee_mvgd_33535_lvgd_1164120001_20,BranchTee_mvgd_33535_lvgd_1164120001_building_444924,0.0291198906046756,0.02527606504485842,0.0024791848121583564,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021385976878516 47.54710332795675, 10.021584400000002 47.546878396243315)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_21_LVCableDist_mvgd_33535_lvgd_1164120001_building_444922,BranchTee_mvgd_33535_lvgd_1164120001_21,BranchTee_mvgd_33535_lvgd_1164120001_building_444922,0.0176256716175974,0.015299082964074543,0.0015005996406944563,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020985624253827 47.54685676755838, 10.020872400000005 47.54699559624329)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_21_LVCableDist_mvgd_33535_lvgd_1164120001_building_444940,BranchTee_mvgd_33535_lvgd_1164120001_21,BranchTee_mvgd_33535_lvgd_1164120001_building_444940,0.03509144560880691,0.030459374788444394,0.0029875860514416343,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020861667317252 47.547311347236196, 10.020872400000005 47.54699559624329)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_22_LVCableDist_mvgd_33535_lvgd_1164120001_23,BranchTee_mvgd_33535_lvgd_1164120001_22,BranchTee_mvgd_33535_lvgd_1164120001_23,0.019177248646981847,0.016645851825580243,0.0016326965039129627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021529399999995 47.54815639624343, 10.021494799999996 47.54798539624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_22_LVCableDist_mvgd_33535_lvgd_1164120001_building_444943,BranchTee_mvgd_33535_lvgd_1164120001_22,BranchTee_mvgd_33535_lvgd_1164120001_building_444943,0.026481479481747495,0.022985924190156826,0.002254557979832868,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021210628717306 47.548256911471455, 10.021529399999995 47.54815639624343)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_22_LVStation_mvgd_33535_lvgd_1164120001,BusBar_mvgd_33535_lvgd_1164120001_LV,BranchTee_mvgd_33535_lvgd_1164120001_22,0.023285749429066267,0.020212030504429518,0.0019824825961055263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021668099999998 47.54834369624342, 10.021529399999995 47.54815639624343)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_23_LVCableDist_mvgd_33535_lvgd_1164120001_building_444933,BranchTee_mvgd_33535_lvgd_1164120001_23,BranchTee_mvgd_33535_lvgd_1164120001_building_444933,0.020225002144462705,0.01755530186139363,0.0017218992620243983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021226471373295 47.54799193638755, 10.021494799999996 47.54798539624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_23_LVCableDist_mvgd_33535_lvgd_1164120001_building_444937,BranchTee_mvgd_33535_lvgd_1164120001_23,BranchTee_mvgd_33535_lvgd_1164120001_building_444937,0.016399337692632396,0.01423462511720492,0.0013961930519925188,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021706792679048 47.54801900835296, 10.021494799999996 47.54798539624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_24_LVCableDist_mvgd_33535_lvgd_1164120001_25,BranchTee_mvgd_33535_lvgd_1164120001_24,BranchTee_mvgd_33535_lvgd_1164120001_25,0.06450096591525778,0.055986838414443754,0.005491429114125009,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022402399999999 47.54837449624345, 10.022445900000006 47.54849519624349, 10.022446 47.54870439624346, 10.022547999999997 47.54859929624346, 10.022628199999998 47.54849089624348)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_24_LVCableDist_mvgd_33535_lvgd_1164120001_building_444950,BranchTee_mvgd_33535_lvgd_1164120001_24,BranchTee_mvgd_33535_lvgd_1164120001_building_444950,0.022570500076595938,0.019591194066485275,0.0019215882968918532,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022748939734386 47.548304975179704, 10.022628199999998 47.54849089624348)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_25_LVCableDist_mvgd_33535_lvgd_1164120001_26,BranchTee_mvgd_33535_lvgd_1164120001_25,BranchTee_mvgd_33535_lvgd_1164120001_26,0.04075447621893819,0.03537488535803835,0.0034697203997475683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022402399999999 47.54837449624345, 10.022257899999994 47.548287796243386, 10.022157000000005 47.54825839624344, 10.021920900000001 47.54828009624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_25_LVCableDist_mvgd_33535_lvgd_1164120001_building_444946,BranchTee_mvgd_33535_lvgd_1164120001_25,BranchTee_mvgd_33535_lvgd_1164120001_building_444946,0.017493861260146057,0.015184671573806777,0.0014893776810822159,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022191488600628 47.5484404173078, 10.022402399999999 47.54837449624345)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_26_LVCableDist_mvgd_33535_lvgd_1164120001_building_444945,BranchTee_mvgd_33535_lvgd_1164120001_26,BranchTee_mvgd_33535_lvgd_1164120001_building_444945,0.018221073467134877,0.015815891769473074,0.0015512904637659997,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021777221836636 47.54814816327815, 10.021920900000001 47.54828009624339)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_26_LVStation_mvgd_33535_lvgd_1164120001,BusBar_mvgd_33535_lvgd_1164120001_LV,BranchTee_mvgd_33535_lvgd_1164120001_26,0.02031094716734062,0.01762990214125166,0.0017292163772667651,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021920900000001 47.54828009624339, 10.021668099999998 47.54834369624342)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_2_LVCableDist_mvgd_33535_lvgd_1164120001_3,BranchTee_mvgd_33535_lvgd_1164120001_2,BranchTee_mvgd_33535_lvgd_1164120001_3,0.020433739608062558,0.009174749084020089,0.0017332511284275153,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021669499999998 47.54869399624346, 10.021765300000002 47.548767896243476, 10.0218863 47.54879209624351)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_2_LVCableDist_mvgd_33535_lvgd_1164120001_building_444947,BranchTee_mvgd_33535_lvgd_1164120001_2,BranchTee_mvgd_33535_lvgd_1164120001_building_444947,0.015869561037899143,0.013774778980896456,0.0013510893716909226,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02199365001425 47.54866919628533, 10.0218863 47.54879209624351)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_3_LVStation_mvgd_33535_lvgd_1164120001,BusBar_mvgd_33535_lvgd_1164120001_LV,BranchTee_mvgd_33535_lvgd_1164120001_3,0.04408198892007469,0.01979281302511354,0.0037391666187671997,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021669499999998 47.54869399624346, 10.021723299999996 47.54865979624349, 10.021775899999998 47.548599096243464, 10.021788600000008 47.54852719624345, 10.021764799999998 47.54844859624348, 10.021668099999998 47.54834369624342)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_4_LVCableDist_mvgd_33535_lvgd_1164120001_5,BranchTee_mvgd_33535_lvgd_1164120001_4,BranchTee_mvgd_33535_lvgd_1164120001_5,0.01921505473477332,0.008627559575913222,0.0016298786194134205,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021036000000002 47.54929209624356, 10.021012899999999 47.54918499624348, 10.021055500000001 47.54912709624349)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_4_LVCableDist_mvgd_33535_lvgd_1164120001_building_445450,BranchTee_mvgd_33535_lvgd_1164120001_4,BranchTee_mvgd_33535_lvgd_1164120001_building_445450,0.010874687029821535,0.009439228341885092,0.0009258399795286373,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020987549998775 47.549384296299195, 10.021036000000002 47.54929209624356)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_5_LVCableDist_mvgd_33535_lvgd_1164120001_7,BranchTee_mvgd_33535_lvgd_1164120001_5,BranchTee_mvgd_33535_lvgd_1164120001_7,0.04507870673528222,0.020240339324141716,0.003823711215648067,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021551499999998 47.549346196243505, 10.021397700000003 47.54929649624353, 10.021200799999997 47.549224596243555, 10.021055500000001 47.54912709624349)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_6_LVCableDist_mvgd_33535_lvgd_1164120001_9,BranchTee_mvgd_33535_lvgd_1164120001_6,BranchTee_mvgd_33535_lvgd_1164120001_9,0.047282143251505065,0.021229682319925777,0.004010613314892531,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0159465 47.548175696243455, 10.0159053 47.54799179624338, 10.015748899999995 47.54777699624341)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_6_LVCableDist_mvgd_33535_lvgd_1164120001_building_34328673,BranchTee_mvgd_33535_lvgd_1164120001_6,BranchTee_mvgd_33535_lvgd_1164120001_building_34328673,0.02497092125756199,0.021674759651563808,0.0021259533412330135,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01626057067234 47.548103763421345, 10.0159465 47.548175696243455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_6_LVCableDist_mvgd_33535_lvgd_1164120001_building_34328674,BranchTee_mvgd_33535_lvgd_1164120001_6,BranchTee_mvgd_33535_lvgd_1164120001_building_34328674,0.010868336564212797,0.009433716137736707,0.0009252993189162382,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016068037089 47.54812297618069, 10.0159465 47.548175696243455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_6_LVCableDist_mvgd_33535_lvgd_1164120001_building_34328675,BranchTee_mvgd_33535_lvgd_1164120001_6,BranchTee_mvgd_33535_lvgd_1164120001_building_34328675,0.08757946009594798,0.07601897136328285,0.007456266586799627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017108894734521 47.54819335409153, 10.0159465 47.548175696243455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_7_LVCableDist_mvgd_33535_lvgd_1164120001_8,BranchTee_mvgd_33535_lvgd_1164120001_7,BranchTee_mvgd_33535_lvgd_1164120001_8,0.04786485752192652,0.02149132102734501,0.004060040888412176,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021551499999998 47.549346196243505, 10.022146700000006 47.54919529624351)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120001_8_LVCableDist_mvgd_33535_lvgd_1164120001_building_445448,BranchTee_mvgd_33535_lvgd_1164120001_8,BranchTee_mvgd_33535_lvgd_1164120001_building_445448,0.024320169947384927,0.021109907514330117,0.0020705502222245894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022344891803272 47.549022496014366, 10.022146700000006 47.54919529624351)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_10_LVCableDist_mvgd_33535_lvgd_1164120002_6,BranchTee_mvgd_33535_lvgd_1164120002_6,BranchTee_mvgd_33535_lvgd_1164120002_10,0.06960814612323148,0.060419870834964924,0.005926239937299294,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008087199999997 47.566791196245056, 10.0081274 47.56662189624508, 10.008261099999999 47.56617599624502)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_10_LVCableDist_mvgd_33535_lvgd_1164120002_9,BranchTee_mvgd_33535_lvgd_1164120002_9,BranchTee_mvgd_33535_lvgd_1164120002_10,0.011089819358322822,0.00962596320302421,0.0009441557351976856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008261099999999 47.56617599624502, 10.008384000000003 47.566120996245004)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_10_LVCableDist_mvgd_33535_lvgd_1164120002_building_441867,BranchTee_mvgd_33535_lvgd_1164120002_10,BranchTee_mvgd_33535_lvgd_1164120002_building_441867,0.01742975586452461,0.015129028090407361,0.001483919929699847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00843690000322 47.56627804625394, 10.008261099999999 47.56617599624502)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_1_LVCableDist_mvgd_33535_lvgd_1164120002_5,BranchTee_mvgd_33535_lvgd_1164120002_1,BranchTee_mvgd_33535_lvgd_1164120002_5,0.009441884488645795,0.00819555573614455,0.0008038552390250297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012581599999995 47.55948959624443, 10.012655999999996 47.559421196244436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_1_LVCableDist_mvgd_33535_lvgd_1164120002_building_441679,BranchTee_mvgd_33535_lvgd_1164120002_1,BranchTee_mvgd_33535_lvgd_1164120002_building_441679,0.012556369274624998,0.010898928530374498,0.0010690136314077997,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012534861664449 47.55934354486765, 10.012655999999996 47.559421196244436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_2_LVCableDist_mvgd_33535_lvgd_1164120002_3,BranchTee_mvgd_33535_lvgd_1164120002_2,BranchTee_mvgd_33535_lvgd_1164120002_3,0.04257941721982392,0.03695893414680716,0.0036250906953953998,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009044899999992 47.56690459624507, 10.009074499999999 47.566521896245035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_2_LVCableDist_mvgd_33535_lvgd_1164120002_4,BranchTee_mvgd_33535_lvgd_1164120002_2,BranchTee_mvgd_33535_lvgd_1164120002_4,0.03735314941742763,0.03242253369432718,0.0031801410925321014,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009074499999999 47.566521896245035, 10.009179300000001 47.56619329624503)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_2_LVCableDist_mvgd_33535_lvgd_1164120002_building_442029,BranchTee_mvgd_33535_lvgd_1164120002_2,BranchTee_mvgd_33535_lvgd_1164120002_building_442029,0.02524606680339699,0.021913585985348587,0.002149378451843066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00924156857571 47.56671889816666, 10.009074499999999 47.566521896245035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_2_LVCableDist_mvgd_33535_lvgd_1164120002_building_442051,BranchTee_mvgd_33535_lvgd_1164120002_2,BranchTee_mvgd_33535_lvgd_1164120002_building_442051,0.027805069600196814,0.024134800412970836,0.0023672446847291958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008713500011945 47.566469246308884, 10.009074499999999 47.566521896245035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_2_LVCableDist_mvgd_33535_lvgd_1164120002_building_442059,BranchTee_mvgd_33535_lvgd_1164120002_2,BranchTee_mvgd_33535_lvgd_1164120002_building_442059,0.031202808715635633,0.02708403796517173,0.00265651854653827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009484568937298 47.56648145068764, 10.009074499999999 47.566521896245035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_3_LVCableDist_mvgd_33535_lvgd_1164120002_building_442028,BranchTee_mvgd_33535_lvgd_1164120002_3,BranchTee_mvgd_33535_lvgd_1164120002_building_442028,0.023130898749161796,0.02007762011427244,0.001969299048853123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008923200023524 47.56709574631851, 10.009044899999992 47.56690459624507)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_3_LVCableDist_mvgd_33535_lvgd_1164120002_building_442064,BranchTee_mvgd_33535_lvgd_1164120002_3,BranchTee_mvgd_33535_lvgd_1164120002_building_442064,0.03566297259565902,0.030955460213032034,0.003036244236486976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008587800005706 47.56698864627876, 10.009044899999992 47.56690459624507)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_3_LVStation_mvgd_33535_lvgd_1164120002,BusBar_mvgd_33535_lvgd_1164120002_LV,BranchTee_mvgd_33535_lvgd_1164120002_3,0.04985255812393195,0.04327202045157293,0.004244305262886156,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009044899999992 47.56690459624507, 10.008394199999996 47.56682179624508)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_4_LVCableDist_mvgd_33535_lvgd_1164120002_5,BranchTee_mvgd_33535_lvgd_1164120002_4,BranchTee_mvgd_33535_lvgd_1164120002_5,0.9047974150964693,0.7853641563037354,0.07703188312208618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009179300000001 47.56619329624503, 10.009485900000001 47.565881596245, 10.009829199999999 47.565603596245026, 10.0100267 47.56550559624498, 10.010334199999996 47.5653978962449, 10.010442499999998 47.56530199624495, 10.010458099999996 47.56524669624494, 10.010527600000003 47.56498589624492, 10.0106855 47.56455889624491, 10.010670600000001 47.56430079624485, 10.010630799999996 47.56398859624482, 10.010138299999994 47.563144196244785, 10.009910599999992 47.56251039624472, 10.009740600000004 47.56199409624466, 10.0097275 47.56194549624465, 10.009677599999993 47.561580796244606, 10.009714000000004 47.56140839624458, 10.009808199999998 47.561251396244586, 10.010083599999994 47.5610417962446, 10.010490500000003 47.560891596244545, 10.010726200000004 47.56078989624454, 10.010752399999994 47.56077669624453, 10.0115197 47.56046639624453, 10.011966100000006 47.56031579624449, 10.012277200000005 47.56008299624448, 10.0124125 47.55996429624445, 10.012480200000008 47.55983199624446, 10.012540999999993 47.559603696244395, 10.012581599999995 47.55948959624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_4_LVCableDist_mvgd_33535_lvgd_1164120002_building_442055,BranchTee_mvgd_33535_lvgd_1164120002_4,BranchTee_mvgd_33535_lvgd_1164120002_building_442055,0.025479434930238264,0.022116149519446814,0.0021692467516097494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009361891155297 47.56638636531383, 10.009179300000001 47.56619329624503)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_5_LVCableDist_mvgd_33535_lvgd_1164120002_building_441675,BranchTee_mvgd_33535_lvgd_1164120002_5,BranchTee_mvgd_33535_lvgd_1164120002_building_441675,0.028483443135018854,0.024723628641196364,0.0024249994815219744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012269980657234 47.55934431148304, 10.012581599999995 47.55948959624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_6_LVCableDist_mvgd_33535_lvgd_1164120002_8,BranchTee_mvgd_33535_lvgd_1164120002_6,BranchTee_mvgd_33535_lvgd_1164120002_8,0.020740975881479697,0.018003167065124375,0.001765827801099326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008087199999997 47.566791196245056, 10.0078119 47.56678499624509)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_6_LVCableDist_mvgd_33535_lvgd_1164120002_building_441869,BranchTee_mvgd_33535_lvgd_1164120002_6,BranchTee_mvgd_33535_lvgd_1164120002_building_441869,0.03224527190154948,0.02798889601054495,0.0027452709025425487,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008444803201398 47.56695085984131, 10.008087199999997 47.566791196245056)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_6_LVStation_mvgd_33535_lvgd_1164120002,BusBar_mvgd_33535_lvgd_1164120002_LV,BranchTee_mvgd_33535_lvgd_1164120002_6,0.023365165939511195,0.020280964035495716,0.001989243892334368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008087199999997 47.566791196245056, 10.008394199999996 47.56682179624508)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_7_LVCableDist_mvgd_33535_lvgd_1164120002_8,BranchTee_mvgd_33535_lvgd_1164120002_7,BranchTee_mvgd_33535_lvgd_1164120002_8,0.30787772110571526,0.26723786191976084,0.026211835083084393,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0078119 47.56678499624509, 10.007556899999996 47.56679709624507, 10.007482099999997 47.56682229624508, 10.007368099999997 47.566860796245074, 10.007265099999996 47.56693609624508, 10.0071363 47.56707499624505, 10.006861699999998 47.56736459624511, 10.006647099999999 47.56749199624514, 10.006432499999995 47.56757309624514, 10.006209300000005 47.56761359624512, 10.0059105 47.56762139624511, 10.0055141 47.56760299624514, 10.0048931 47.56757969624518, 10.0048275 47.56766289624516, 10.004727500000005 47.56770029624515, 10.004660200000007 47.56765249624512, 10.004378000000006 47.56769629624514)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_7_LVCableDist_mvgd_33535_lvgd_1164120002_building_441854,BranchTee_mvgd_33535_lvgd_1164120002_7,BranchTee_mvgd_33535_lvgd_1164120002_building_441854,0.017046806414746252,0.014796627967999748,0.0014513167007727966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00443066170011 47.567845513171676, 10.004378000000006 47.56769629624514)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_8_LVCableDist_mvgd_33535_lvgd_1164120002_building_441853,BranchTee_mvgd_33535_lvgd_1164120002_8,BranchTee_mvgd_33535_lvgd_1164120002_building_441853,0.019060215055535092,0.01654426666820446,0.001622732596205818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.007715250004587 47.566943546279006, 10.0078119 47.56678499624509)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_8_LVCableDist_mvgd_33535_lvgd_1164120002_building_441856,BranchTee_mvgd_33535_lvgd_1164120002_8,BranchTee_mvgd_33535_lvgd_1164120002_building_441856,0.02161594235745653,0.018762637966272266,0.0018403199627574191,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.007843050004592 47.56697839627904, 10.0078119 47.56678499624509)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120002_9_LVCableDist_mvgd_33535_lvgd_1164120002_building_441866,BranchTee_mvgd_33535_lvgd_1164120002_9,BranchTee_mvgd_33535_lvgd_1164120002_building_441866,0.015068257679743794,0.013079247666017613,0.0012828686787480976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00848233524557 47.566239110481774, 10.008384000000003 47.566120996245004)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_10_LVCableDist_mvgd_33535_lvgd_1164120003_24,BranchTee_mvgd_33535_lvgd_1164120003_10,BranchTee_mvgd_33535_lvgd_1164120003_24,0.10272368544271358,0.032871579341668344,0.008422886961502594,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028961599999995 47.55993359624442, 10.029136600000003 47.560110196244516, 10.029443900000002 47.56031589624451, 10.029916499999997 47.56058609624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_10_LVCableDist_mvgd_33535_lvgd_1164120003_7,BranchTee_mvgd_33535_lvgd_1164120003_7,BranchTee_mvgd_33535_lvgd_1164120003_10,0.053316896696034545,0.017061406942731054,0.0043717492423814164,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028681299999999 47.559493296244476, 10.028742700000002 47.55959649624442, 10.028817100000001 47.55972849624442, 10.028961599999995 47.55993359624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_10_LVCableDist_mvgd_33535_lvgd_1164120003_building_445961,BranchTee_mvgd_33535_lvgd_1164120003_10,BranchTee_mvgd_33535_lvgd_1164120003_building_445961,0.04869511130686296,0.04226735661435705,0.004145763526973943,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029541817062023 47.55974014702137, 10.028961599999995 47.55993359624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_11_LVCableDist_mvgd_33535_lvgd_1164120003_24,BranchTee_mvgd_33535_lvgd_1164120003_11,BranchTee_mvgd_33535_lvgd_1164120003_24,0.09454549451640142,0.030254558245248454,0.007752311549171535,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.029916499999997 47.56058609624454, 10.030246899999993 47.56087679624452, 10.0304144 47.56108099624461, 10.030610600000003 47.561293096244576)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_11_LVCableDist_mvgd_33535_lvgd_1164120003_building_446037,BranchTee_mvgd_33535_lvgd_1164120003_11,BranchTee_mvgd_33535_lvgd_1164120003_building_446037,0.024012084985933248,0.02084248976779006,0.0020443207432868232,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03048597104238 47.56149202089914, 10.030610600000003 47.561293096244576)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_11_LVCableDist_mvgd_33535_lvgd_1164120003_building_446083,BranchTee_mvgd_33535_lvgd_1164120003_11,BranchTee_mvgd_33535_lvgd_1164120003_building_446083,0.06444049374612475,0.05593434857163628,0.005486280685330815,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03049031248595 47.5618673204251, 10.030610600000003 47.561293096244576)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_12_LVCableDist_mvgd_33535_lvgd_1164120003_16,BranchTee_mvgd_33535_lvgd_1164120003_12,BranchTee_mvgd_33535_lvgd_1164120003_16,0.038863035213511664,0.012436171268323732,0.003186596656589509,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026382000000002 47.56203029624464, 10.0267401 47.562097696244685, 10.026857299999994 47.56204049624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_12_LVCableDist_mvgd_33535_lvgd_1164120003_building_446016,BranchTee_mvgd_33535_lvgd_1164120003_12,BranchTee_mvgd_33535_lvgd_1164120003_building_446016,0.014832662919224329,0.012874751413886717,0.001262810809711661,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026187850013184 47.5620077962772, 10.026382000000002 47.56203029624464)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_13_LVCableDist_mvgd_33535_lvgd_1164120003_17,BranchTee_mvgd_33535_lvgd_1164120003_13,BranchTee_mvgd_33535_lvgd_1164120003_17,0.034469545580517374,0.01103025458576556,0.002826349977493463,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027351500000002 47.558375696244305, 10.027410799999998 47.55832379624429, 10.027614299999998 47.558315196244344, 10.027752999999997 47.55836499624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_13_LVCableDist_mvgd_33535_lvgd_1164120003_18,BranchTee_mvgd_33535_lvgd_1164120003_13,BranchTee_mvgd_33535_lvgd_1164120003_18,0.10654363719519647,0.03409396390246287,0.00873610607616822,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027351500000002 47.558375696244305, 10.027922999999994 47.55865779624432, 10.028070499999997 47.55874079624439, 10.028228500000003 47.558902796244396, 10.028339699999997 47.55903889624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_13_LVCableDist_mvgd_33535_lvgd_1164120003_9,BranchTee_mvgd_33535_lvgd_1164120003_9,BranchTee_mvgd_33535_lvgd_1164120003_13,0.015560532617232862,0.004979370437514516,0.0012758947143579455,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027179499999999 47.55829809624431, 10.027351500000002 47.558375696244305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_14_LVCableDist_mvgd_33535_lvgd_1164120003_15,BranchTee_mvgd_33535_lvgd_1164120003_14,BranchTee_mvgd_33535_lvgd_1164120003_15,0.010519968356279755,0.003366389874009522,0.0008625907834366335,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027826199999994 47.559181496244385, 10.027955400000005 47.5591454962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_14_LVCableDist_mvgd_33535_lvgd_1164120003_building_445933,BranchTee_mvgd_33535_lvgd_1164120003_14,BranchTee_mvgd_33535_lvgd_1164120003_building_445933,0.016682499236853728,0.014480409337589036,0.001420300621947061,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027926823592027 47.55931525851943, 10.027826199999994 47.559181496244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_15_LVCableDist_mvgd_33535_lvgd_1164120003_18,BranchTee_mvgd_33535_lvgd_1164120003_15,BranchTee_mvgd_33535_lvgd_1164120003_18,0.0312715840887471,0.010006906908399072,0.00256413130770634,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027955400000005 47.5591454962444, 10.028265599999997 47.55906019624439, 10.028339699999997 47.55903889624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_15_LVCableDist_mvgd_33535_lvgd_1164120003_building_445934,BranchTee_mvgd_33535_lvgd_1164120003_15,BranchTee_mvgd_33535_lvgd_1164120003_building_445934,0.018439141145589366,0.01600517451437157,0.0015698561267963476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028153671527438 47.55924286770504, 10.027955400000005 47.5591454962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_16_LVCableDist_mvgd_33535_lvgd_1164120003_19,BranchTee_mvgd_33535_lvgd_1164120003_16,BranchTee_mvgd_33535_lvgd_1164120003_19,0.01948652176812349,0.0062356869657995175,0.0015978084257626886,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026857299999994 47.56204049624463, 10.027100399999998 47.56210059624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_16_LVCableDist_mvgd_33535_lvgd_1164120003_building_446024,BranchTee_mvgd_33535_lvgd_1164120003_16,BranchTee_mvgd_33535_lvgd_1164120003_building_446024,0.015223885036090665,0.013214332211326696,0.0012961183500277544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026890943904515 47.561905387672205, 10.026857299999994 47.56204049624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_17_LVCableDist_mvgd_33535_lvgd_1164120003_21,BranchTee_mvgd_33535_lvgd_1164120003_17,BranchTee_mvgd_33535_lvgd_1164120003_21,0.0428129769452548,0.013700152622481537,0.003510474373472516,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027752999999997 47.55836499624433, 10.0278068 47.5579813962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_17_LVCableDist_mvgd_33535_lvgd_1164120003_22,BranchTee_mvgd_33535_lvgd_1164120003_17,BranchTee_mvgd_33535_lvgd_1164120003_22,0.032688582301362054,0.010460346336435857,0.0026803188813712565,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027752999999997 47.55836499624433, 10.027990500000001 47.55838479624436, 10.0281841 47.55839919624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_18_LVCableDist_mvgd_33535_lvgd_1164120003_building_445953,BranchTee_mvgd_33535_lvgd_1164120003_18,BranchTee_mvgd_33535_lvgd_1164120003_building_445953,0.018248539138141767,0.015839731971907054,0.0015536288130180772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028563033592915 47.558975172080416, 10.028339699999997 47.55903889624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_19_LVCableDist_mvgd_33535_lvgd_1164120003_7,BranchTee_mvgd_33535_lvgd_1164120003_7,BranchTee_mvgd_33535_lvgd_1164120003_19,0.3262549343959596,0.10440157900670707,0.02675145874299951,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.027100399999998 47.56210059624466, 10.027191600000004 47.562096196244624, 10.027274099999996 47.562050796244655, 10.0273197 47.561955596244694, 10.0272936 47.56189409624464, 10.027230200000004 47.561802596244625, 10.027239499999997 47.561678196244614, 10.027329999999994 47.56141959624458, 10.027620002372633 47.56099664667368, 10.027909999999995 47.560573696244475, 10.028283200000002 47.55999629624444, 10.028311600000004 47.5599487962445, 10.028416900000003 47.55977789624447, 10.028548500000001 47.559571696244404, 10.028604300000005 47.559520196244414, 10.028681299999999 47.559493296244476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_19_LVCableDist_mvgd_33535_lvgd_1164120003_building_446030,BranchTee_mvgd_33535_lvgd_1164120003_19,BranchTee_mvgd_33535_lvgd_1164120003_building_446030,0.013916624652393725,0.012079630198277753,0.0011848219123866946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027121300010092 47.56197614630811, 10.027100399999998 47.56210059624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_1_LVCableDist_mvgd_33535_lvgd_1164120003_18,BranchTee_mvgd_33535_lvgd_1164120003_1,BranchTee_mvgd_33535_lvgd_1164120003_18,0.03733934084001325,0.01194858906880424,0.0030616604705819327,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028339699999997 47.55903889624435, 10.028568899999993 47.559336896244425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_1_LVCableDist_mvgd_33535_lvgd_1164120003_2,BranchTee_mvgd_33535_lvgd_1164120003_1,BranchTee_mvgd_33535_lvgd_1164120003_2,0.04618989082296321,0.014780765063348227,0.0037873663458358854,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028568899999993 47.559336896244425, 10.028736400000003 47.55926439624442, 10.029089299999997 47.559116896244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_1_LVCableDist_mvgd_33535_lvgd_1164120003_7,BranchTee_mvgd_33535_lvgd_1164120003_1,BranchTee_mvgd_33535_lvgd_1164120003_7,0.019329325397683277,0.006185384127258648,0.0015849190200402392,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028568899999993 47.559336896244425, 10.028681299999999 47.559493296244476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_20_LVCableDist_mvgd_33535_lvgd_1164120003_6,BranchTee_mvgd_33535_lvgd_1164120003_6,BranchTee_mvgd_33535_lvgd_1164120003_20,0.02595190798396839,0.008304610554869885,0.0021279414425428157,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.028778500000005 47.558439096244335, 10.028823199999993 47.558437196244356, 10.028879200000006 47.558405796244344, 10.0288894 47.558251996244344)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_20_LVCableDist_mvgd_33535_lvgd_1164120003_building_445940,BranchTee_mvgd_33535_lvgd_1164120003_20,BranchTee_mvgd_33535_lvgd_1164120003_building_445940,0.008286916547083816,0.007193043562868752,0.0007055245475357388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02898974999989 47.55822139625639, 10.0288894 47.558251996244344)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_21_LVCableDist_mvgd_33535_lvgd_1164120003_building_445909,BranchTee_mvgd_33535_lvgd_1164120003_21,BranchTee_mvgd_33535_lvgd_1164120003_building_445909,0.0223609918946053,0.0194093409645174,0.0019037513650892763,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027520703416359 47.55803523280937, 10.0278068 47.5579813962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_22_LVCableDist_mvgd_33535_lvgd_1164120003_23,BranchTee_mvgd_33535_lvgd_1164120003_22,BranchTee_mvgd_33535_lvgd_1164120003_23,0.04186133208467537,0.013395626267096119,0.0034324437123488404,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0281841 47.55839919624432, 10.028234700000004 47.55802399624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_22_LVCableDist_mvgd_33535_lvgd_1164120003_6,BranchTee_mvgd_33535_lvgd_1164120003_6,BranchTee_mvgd_33535_lvgd_1164120003_22,0.04498446110876393,0.014395027554804459,0.003688526451424201,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0281841 47.55839919624432, 10.028403199999998 47.55841269624432, 10.028635099999997 47.55842949624432, 10.028778500000005 47.558439096244335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_23_LVCableDist_mvgd_33535_lvgd_1164120003_building_445928,BranchTee_mvgd_33535_lvgd_1164120003_23,BranchTee_mvgd_33535_lvgd_1164120003_building_445928,0.021921860733027557,0.01902817511626792,0.001866364984724434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028247882027799 47.55782689552849, 10.028234700000004 47.55802399624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_23_LVCableDist_mvgd_33535_lvgd_1164120003_building_445929,BranchTee_mvgd_33535_lvgd_1164120003_23,BranchTee_mvgd_33535_lvgd_1164120003_building_445929,0.013683733533809923,0.011877480707347014,0.001164994223748784,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028205731570974 47.557902414273954, 10.028234700000004 47.55802399624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_24_LVCableDist_mvgd_33535_lvgd_1164120003_8,BranchTee_mvgd_33535_lvgd_1164120003_8,BranchTee_mvgd_33535_lvgd_1164120003_24,0.07001342878414485,0.022404297210926353,0.005740790878895533,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0305483 47.56013859624447, 10.030294599999992 47.560297196244505, 10.030235000000001 47.560334496244536, 10.0301767 47.56043849624453, 10.029950599999998 47.560566196244494, 10.029916499999997 47.56058609624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_25_LVCableDist_mvgd_33535_lvgd_1164120003_33,BranchTee_mvgd_33535_lvgd_1164120003_25,BranchTee_mvgd_33535_lvgd_1164120003_33,0.038595599263041826,0.01732942406910578,0.003273794579853032,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.023855499999996 47.55834849624433, 10.023553999999995 47.558629396244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_25_LVCableDist_mvgd_33535_lvgd_1164120003_34,BranchTee_mvgd_33535_lvgd_1164120003_25,BranchTee_mvgd_33535_lvgd_1164120003_34,0.0384964052540489,0.017284885959067957,0.00326538064626486,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.02414044841396 47.55863614663664, 10.023855499999996 47.55834849624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_25_LVCableDist_mvgd_33535_lvgd_1164120003_35,BranchTee_mvgd_33535_lvgd_1164120003_25,BranchTee_mvgd_33535_lvgd_1164120003_35,0.02178434088342199,0.009781169056656474,0.0018478131826316668,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.023731699999997 47.558171296244296, 10.023855499999996 47.55834849624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_26_LVCableDist_mvgd_33535_lvgd_1164120003_28,BranchTee_mvgd_33535_lvgd_1164120003_26,BranchTee_mvgd_33535_lvgd_1164120003_28,0.015014706226713987,0.00674160309579458,0.001273592450996647,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025795200000001 47.558581896244334, 10.025840099999995 47.55863009624431, 10.025927300000003 47.55868119624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_26_LVCableDist_mvgd_33535_lvgd_1164120003_32,BranchTee_mvgd_33535_lvgd_1164120003_26,BranchTee_mvgd_33535_lvgd_1164120003_32,0.019805013645756896,0.008892451126944846,0.001679920705091398,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025927300000003 47.55868119624436, 10.026180399999996 47.55872959624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_26_LVCableDist_mvgd_33535_lvgd_1164120003_building_445880,BranchTee_mvgd_33535_lvgd_1164120003_26,BranchTee_mvgd_33535_lvgd_1164120003_building_445880,0.016907525152787702,0.014675731832619726,0.0014394586895613657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025914394178333 47.5588331172091, 10.025927300000003 47.55868119624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_27_LVCableDist_mvgd_33535_lvgd_1164120003_36,BranchTee_mvgd_33535_lvgd_1164120003_27,BranchTee_mvgd_33535_lvgd_1164120003_36,0.03504665725372259,0.015735949106921446,0.0029727626659517073,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.026739999999997 47.55883599624438, 10.027136800000003 47.55900079624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_27_LVCableDist_mvgd_33535_lvgd_1164120003_building_445912,BranchTee_mvgd_33535_lvgd_1164120003_27,BranchTee_mvgd_33535_lvgd_1164120003_building_445912,0.019902932175664495,0.01727574512847678,0.001694479139265811,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027401081134006 47.55900136527599, 10.027136800000003 47.55900079624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_27_LVCableDist_mvgd_33535_lvgd_1164120003_building_445920,BranchTee_mvgd_33535_lvgd_1164120003_27,BranchTee_mvgd_33535_lvgd_1164120003_building_445920,0.021314291500256266,0.018500805022222438,0.0018146382651886323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027086479657136 47.55918957482624, 10.027136800000003 47.55900079624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_28_LVCableDist_mvgd_33535_lvgd_1164120003_30,BranchTee_mvgd_33535_lvgd_1164120003_28,BranchTee_mvgd_33535_lvgd_1164120003_30,0.05460713086372683,0.024518601757813348,0.004631940751187718,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025795200000001 47.558581896244334, 10.025509 47.55866339624432, 10.025119000000004 47.55875889624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_28_LVStation_mvgd_33535_lvgd_1164120003,BusBar_mvgd_33535_lvgd_1164120003_LV,BranchTee_mvgd_33535_lvgd_1164120003_28,0.09108980868292013,0.04089932409863114,0.007726510991929365,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.026685600000002 47.558041696244295, 10.026606499999998 47.5581221962443, 10.026368600000001 47.55831019624435, 10.025978199999996 47.55851419624432, 10.025795200000001 47.558581896244334)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_29_LVCableDist_mvgd_33535_lvgd_1164120003_30,BranchTee_mvgd_33535_lvgd_1164120003_29,BranchTee_mvgd_33535_lvgd_1164120003_30,0.05536955267939491,0.024860929153048314,0.004696611658113783,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025119000000004 47.55875889624436, 10.024849800000005 47.558828896244336, 10.024425399999997 47.558923796244386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_29_LVCableDist_mvgd_33535_lvgd_1164120003_34,BranchTee_mvgd_33535_lvgd_1164120003_29,BranchTee_mvgd_33535_lvgd_1164120003_34,0.0384964052540489,0.017284885959067957,0.00326538064626486,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.024425399999997 47.558923796244386, 10.02414044841396 47.55863614663664)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_29_LVCableDist_mvgd_33535_lvgd_1164120003_37,BranchTee_mvgd_33535_lvgd_1164120003_29,BranchTee_mvgd_33535_lvgd_1164120003_37,0.03300340862550468,0.014818530472851602,0.0027994481841953035,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.024425399999997 47.558923796244386, 10.024018200000002 47.55903359624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_29_LVCableDist_mvgd_33535_lvgd_1164120003_building_445820,BranchTee_mvgd_33535_lvgd_1164120003_29,BranchTee_mvgd_33535_lvgd_1164120003_building_445820,0.02106974143106811,0.01828853556216712,0.0017938179665970503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024591946565412 47.559076168489284, 10.024425399999997 47.558923796244386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_2_LVCableDist_mvgd_33535_lvgd_1164120003_3,BranchTee_mvgd_33535_lvgd_1164120003_2,BranchTee_mvgd_33535_lvgd_1164120003_3,0.02153115353987344,0.006889969132759501,0.0017654591697671051,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.029089299999997 47.559116896244404, 10.0292964 47.55898329624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_2_LVCableDist_mvgd_33535_lvgd_1164120003_building_445926,BranchTee_mvgd_33535_lvgd_1164120003_2,BranchTee_mvgd_33535_lvgd_1164120003_building_445926,0.013978801490394216,0.01213359969366218,0.0011901154718485594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028974099986389 47.559018246310465, 10.029089299999997 47.559116896244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_2_LVCableDist_mvgd_33535_lvgd_1164120003_building_445957,BranchTee_mvgd_33535_lvgd_1164120003_2,BranchTee_mvgd_33535_lvgd_1164120003_building_445957,0.022198283778072873,0.019268110319367253,0.0018898988579903206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029260708235128 47.55927943214994, 10.029089299999997 47.559116896244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_30_LVCableDist_mvgd_33535_lvgd_1164120003_31,BranchTee_mvgd_33535_lvgd_1164120003_30,BranchTee_mvgd_33535_lvgd_1164120003_31,0.04152841871888941,0.018646260004781347,0.0035225651293865237,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025119000000004 47.55875889624436, 10.024871000000001 47.55858439624433, 10.024733899999996 47.558491396244335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_31_LVCableDist_mvgd_33535_lvgd_1164120003_building_445804,BranchTee_mvgd_33535_lvgd_1164120003_31,BranchTee_mvgd_33535_lvgd_1164120003_building_445804,0.013135928432349136,0.011401985879279049,0.001118355652677147,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024839400003431 47.558397246320325, 10.024733899999996 47.558491396244335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_32_LVCableDist_mvgd_33535_lvgd_1164120003_36,BranchTee_mvgd_33535_lvgd_1164120003_32,BranchTee_mvgd_33535_lvgd_1164120003_36,0.0437701020027462,0.01965277579923304,0.0037127114342649908,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.026180399999996 47.55872959624436, 10.026739999999997 47.55883599624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_32_LVCableDist_mvgd_33535_lvgd_1164120003_building_445886,BranchTee_mvgd_33535_lvgd_1164120003_32,BranchTee_mvgd_33535_lvgd_1164120003_building_445886,0.019204296535754645,0.01666932939303503,0.00163499928437175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026217470636965 47.55890060396487, 10.026180399999996 47.55872959624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_33_LVCableDist_mvgd_33535_lvgd_1164120003_building_445791,BranchTee_mvgd_33535_lvgd_1164120003_33,BranchTee_mvgd_33535_lvgd_1164120003_building_445791,0.02476756408521061,0.021498245625962812,0.002108640088927867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023434199998375 47.55883699627279, 10.023553999999995 47.558629396244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_33_LVCableDist_mvgd_33535_lvgd_1164120003_building_445792,BranchTee_mvgd_33535_lvgd_1164120003_33,BranchTee_mvgd_33535_lvgd_1164120003_building_445792,0.026376157722574053,0.02289450490319428,0.002245591184274554,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023498099998134 47.558863746272564, 10.023553999999995 47.558629396244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_33_LVCableDist_mvgd_33535_lvgd_1164120003_building_445809,BranchTee_mvgd_33535_lvgd_1164120003_33,BranchTee_mvgd_33535_lvgd_1164120003_building_445809,0.020321741026728655,0.017639271211200472,0.0017301353358103488,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023823818103759 47.558626975189625, 10.023553999999995 47.558629396244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_33_LVCableDist_mvgd_33535_lvgd_1164120003_building_445812,BranchTee_mvgd_33535_lvgd_1164120003_33,BranchTee_mvgd_33535_lvgd_1164120003_building_445812,0.013144211610488676,0.01140917567790417,0.0011190608589472782,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023410648359118 47.55856191240129, 10.023553999999995 47.558629396244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_34_LVCableDist_mvgd_33535_lvgd_1164120003_building_445814,BranchTee_mvgd_33535_lvgd_1164120003_34,BranchTee_mvgd_33535_lvgd_1164120003_building_445814,0.008653540400855869,0.007511273067942894,0.0007367378615686116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024052100001756 47.55868594624995, 10.02414044841396 47.55863614663664)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_35_LVCableDist_mvgd_33535_lvgd_1164120003_building_445778,BranchTee_mvgd_33535_lvgd_1164120003_35,BranchTee_mvgd_33535_lvgd_1164120003_building_445778,0.015803289876204565,0.013717255612545562,0.0013454472331338875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023921586765255 47.55811075832915, 10.023731699999997 47.558171296244296)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_36_LVCableDist_mvgd_33535_lvgd_1164120003_building_445888,BranchTee_mvgd_33535_lvgd_1164120003_36,BranchTee_mvgd_33535_lvgd_1164120003_building_445888,0.012933141750556808,0.011225967039483309,0.0011010909703185257,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026880367308173 47.558768932569286, 10.026739999999997 47.55883599624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_36_LVCableDist_mvgd_33535_lvgd_1164120003_building_445890,BranchTee_mvgd_33535_lvgd_1164120003_36,BranchTee_mvgd_33535_lvgd_1164120003_building_445890,0.028511039014918377,0.02474758186494915,0.002427348916389496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026434629610739 47.55898767513755, 10.026739999999997 47.55883599624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_37_LVCableDist_mvgd_33535_lvgd_1164120003_building_445816,BranchTee_mvgd_33535_lvgd_1164120003_37,BranchTee_mvgd_33535_lvgd_1164120003_building_445816,0.01947761272857652,0.01690656784840442,0.0016582686490599586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024007953061089 47.558858429937416, 10.024018200000002 47.55903359624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_38_LVCableDist_mvgd_33535_lvgd_1164120003_40,BranchTee_mvgd_33535_lvgd_1164120003_38,BranchTee_mvgd_33535_lvgd_1164120003_40,0.043866698059462625,0.007194138481751871,0.003527969186837745,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.02851969781653 47.5569817971854, 10.028969299999996 47.55723279624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_38_LVCableDist_mvgd_33535_lvgd_1164120003_building_445892,BranchTee_mvgd_33535_lvgd_1164120003_38,BranchTee_mvgd_33535_lvgd_1164120003_building_445892,0.02932422847041295,0.02545343031231844,0.0024965815579141093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028130909584094 47.5569962057022, 10.02851969781653 47.5569817971854)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_38_LVCableDist_mvgd_33535_lvgd_1164120003_building_445895,BranchTee_mvgd_33535_lvgd_1164120003_38,BranchTee_mvgd_33535_lvgd_1164120003_building_445895,0.02280946937815021,0.019798619420234382,0.0019419334647713755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028477616759876 47.55677849689877, 10.02851969781653 47.5569817971854)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_38_LVCableDist_mvgd_33535_lvgd_1164120003_building_445899,BranchTee_mvgd_33535_lvgd_1164120003_38,BranchTee_mvgd_33535_lvgd_1164120003_building_445899,0.030592792875295507,0.0265545442157565,0.002604583529780191,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028817606840635 47.55679461175599, 10.02851969781653 47.5569817971854)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_38_LVCableDist_mvgd_33535_lvgd_1164120003_building_445913,BranchTee_mvgd_33535_lvgd_1164120003_38,BranchTee_mvgd_33535_lvgd_1164120003_building_445913,0.01957797736104845,0.016993684349390057,0.0016668134089246236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028422157510866 47.557145131247196, 10.02851969781653 47.5569817971854)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_38_LVStation_mvgd_33535_lvgd_1164120003,BusBar_mvgd_33535_lvgd_1164120003_LV,BranchTee_mvgd_33535_lvgd_1164120003_38,0.22334007879763912,0.036627772922812815,0.017962074900552412,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.026685600000002 47.558041696244295, 10.0267444 47.55798979624431, 10.0269114 47.5578079962443, 10.027109999999997 47.55758989624428, 10.027420699999997 47.557264596244245, 10.0275955 47.557117396244216, 10.028070099999999 47.556730796244196, 10.02851969781653 47.5569817971854)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_39_LVCableDist_mvgd_33535_lvgd_1164120003_40,BranchTee_mvgd_33535_lvgd_1164120003_39,BranchTee_mvgd_33535_lvgd_1164120003_40,0.015388738373851896,0.0025237530933117113,0.0012376357740366965,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.029126599999994 47.557321196244224, 10.028969299999996 47.55723279624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_39_LVCableDist_mvgd_33535_lvgd_1164120003_41,BranchTee_mvgd_33535_lvgd_1164120003_39,BranchTee_mvgd_33535_lvgd_1164120003_41,0.47399677583718275,0.07773547123729797,0.038121082593160736,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.029126599999994 47.557321196244224, 10.029294199999997 47.55741589624424, 10.029457999999995 47.55750319624423, 10.029899299999999 47.557634796244265, 10.031245100000001 47.55800989624427, 10.032066100000002 47.558180296244345, 10.032763000000001 47.55826229624432, 10.033219700000004 47.558270096244335, 10.033177199999995 47.55837859624431, 10.032862799999993 47.558547896244356, 10.032544899999994 47.55870279624434, 10.032308200000005 47.55896269624435, 10.0322259 47.55910159624436, 10.032179500000005 47.55928679624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_39_LVCableDist_mvgd_33535_lvgd_1164120003_building_445922,BranchTee_mvgd_33535_lvgd_1164120003_39,BranchTee_mvgd_33535_lvgd_1164120003_building_445922,0.022499087157419696,0.019529207652640296,0.0019155084037007298,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028924450008066 47.55747029627699, 10.029126599999994 47.557321196244224)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_3_LVCableDist_mvgd_33535_lvgd_1164120003_4,BranchTee_mvgd_33535_lvgd_1164120003_3,BranchTee_mvgd_33535_lvgd_1164120003_4,0.034998321230965086,0.011199462793908828,0.0028697072374332835,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0292964 47.55898329624439, 10.029378399999997 47.55891409624439, 10.029411699999997 47.55886759624438, 10.0294412 47.55882049624442, 10.029602099999995 47.558762796244395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_3_LVCableDist_mvgd_33535_lvgd_1164120003_building_445948,BranchTee_mvgd_33535_lvgd_1164120003_3,BranchTee_mvgd_33535_lvgd_1164120003_building_445948,0.01320925013409425,0.01146562911639381,0.0011245980541969834,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02919115364592 47.55888819079795, 10.0292964 47.55898329624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_40_LVCableDist_mvgd_33535_lvgd_1164120003_building_445903,BranchTee_mvgd_33535_lvgd_1164120003_40,BranchTee_mvgd_33535_lvgd_1164120003_building_445903,0.028228322166934848,0.02450218364089945,0.0024032792066101087,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029142384401794 47.55700744264123, 10.028969299999996 47.55723279624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_40_LVCableDist_mvgd_33535_lvgd_1164120003_building_445921,BranchTee_mvgd_33535_lvgd_1164120003_40,BranchTee_mvgd_33535_lvgd_1164120003_building_445921,0.02865028339070176,0.02486844598312913,0.0024392037872166964,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028601918974324 47.557299736474576, 10.028969299999996 47.55723279624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_41_LVCableDist_mvgd_33535_lvgd_1164120003_building_445960,BranchTee_mvgd_33535_lvgd_1164120003_41,BranchTee_mvgd_33535_lvgd_1164120003_building_445960,0.028706827614457447,0.024917526369349064,0.0024440178018932447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031830950061316 47.55918219630493, 10.032179500000005 47.55928679624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_42_LVCableDist_mvgd_33535_lvgd_1164120003_44,BranchTee_mvgd_33535_lvgd_1164120003_42,BranchTee_mvgd_33535_lvgd_1164120003_44,0.04370326053731737,0.009002871670687378,0.0035148247613940985,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0275955 47.557117396244216, 10.027183799999992 47.556840196244195)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_42_LVCableDist_mvgd_33535_lvgd_1164120003_46,BranchTee_mvgd_33535_lvgd_1164120003_42,BranchTee_mvgd_33535_lvgd_1164120003_46,0.05235501659006494,0.010785133417553376,0.004210640268746745,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.028070899999998 47.55746119624424, 10.0275955 47.557117396244216)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_42_LVCableDist_mvgd_33535_lvgd_1164120003_49,BranchTee_mvgd_33535_lvgd_1164120003_42,BranchTee_mvgd_33535_lvgd_1164120003_49,0.05588027783821515,0.01151133723467232,0.004494158600629587,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0275955 47.557117396244216, 10.028070099999999 47.556730796244196)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_42_LVCableDist_mvgd_33535_lvgd_1164120003_50,BranchTee_mvgd_33535_lvgd_1164120003_42,BranchTee_mvgd_33535_lvgd_1164120003_50,0.020994930108697463,0.0043249556023916775,0.0016885124657181466,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0275955 47.557117396244216, 10.027420699999997 47.557264596244245)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_42_LVCableDist_mvgd_33535_lvgd_1164120003_building_445925,BranchTee_mvgd_33535_lvgd_1164120003_42,BranchTee_mvgd_33535_lvgd_1164120003_building_445925,0.025021278449983298,0.0217184696945855,0.0021302406096272773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02792726624799 47.557129348783086, 10.0275955 47.557117396244216)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_43_LVCableDist_mvgd_33535_lvgd_1164120003_45,BranchTee_mvgd_33535_lvgd_1164120003_43,BranchTee_mvgd_33535_lvgd_1164120003_45,0.028476572698693563,0.005866173975930874,0.002290221864694563,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.027109999999997 47.55758989624428, 10.0269114 47.5578079962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_43_LVCableDist_mvgd_33535_lvgd_1164120003_building_445900,BranchTee_mvgd_33535_lvgd_1164120003_43,BranchTee_mvgd_33535_lvgd_1164120003_building_445900,0.019440574342241168,0.016874418529065335,0.0016551153060025945,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026659033493535 47.55777120887409, 10.0269114 47.5578079962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_43_LVCableDist_mvgd_33535_lvgd_1164120003_building_445901,BranchTee_mvgd_33535_lvgd_1164120003_43,BranchTee_mvgd_33535_lvgd_1164120003_building_445901,0.015272758234761565,0.013256754147773038,0.001300279275407297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027053985820556 47.55790574120087, 10.0269114 47.5578079962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_43_LVStation_mvgd_33535_lvgd_1164120003,BusBar_mvgd_33535_lvgd_1164120003_LV,BranchTee_mvgd_33535_lvgd_1164120003_43,0.03106528003019008,0.006399447686219156,0.0024984180614286045,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.026685600000002 47.558041696244295, 10.0267444 47.55798979624431, 10.0269114 47.5578079962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_44_LVCableDist_mvgd_33535_lvgd_1164120003_building_445858,BranchTee_mvgd_33535_lvgd_1164120003_44,BranchTee_mvgd_33535_lvgd_1164120003_building_445858,0.025897434486818124,0.02247897313455813,0.0022048340471195523,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026975200001765 47.557025496305705, 10.027183799999992 47.556840196244195)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_44_LVCableDist_mvgd_33535_lvgd_1164120003_building_445861,BranchTee_mvgd_33535_lvgd_1164120003_44,BranchTee_mvgd_33535_lvgd_1164120003_building_445861,0.026484943341473683,0.022988930820399156,0.0022548528830157537,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027384040556454 47.556644239054386, 10.027183799999992 47.556840196244195)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_45_LVCableDist_mvgd_33535_lvgd_1164120003_50,BranchTee_mvgd_33535_lvgd_1164120003_45,BranchTee_mvgd_33535_lvgd_1164120003_50,0.04305632006166158,0.008869601932702285,0.0034627947211859672,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.027109999999997 47.55758989624428, 10.027420699999997 47.557264596244245)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_45_LVCableDist_mvgd_33535_lvgd_1164120003_52,BranchTee_mvgd_33535_lvgd_1164120003_45,BranchTee_mvgd_33535_lvgd_1164120003_52,0.037931674038181575,0.007813924851865404,0.003050646233515876,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.027504899999998 47.5578017962443, 10.027109999999997 47.55758989624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_45_LVCableDist_mvgd_33535_lvgd_1164120003_building_445885,BranchTee_mvgd_33535_lvgd_1164120003_45,BranchTee_mvgd_33535_lvgd_1164120003_building_445885,0.024555572002437943,0.021314236498116135,0.00209059168486472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026855315322274 47.55745190346375, 10.027109999999997 47.55758989624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_46_LVCableDist_mvgd_33535_lvgd_1164120003_51,BranchTee_mvgd_33535_lvgd_1164120003_46,BranchTee_mvgd_33535_lvgd_1164120003_51,0.013536461167668944,0.002788511000539802,0.001088666802174778,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0281938 47.55755009624424, 10.028070899999998 47.55746119624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_46_LVCableDist_mvgd_33535_lvgd_1164120003_building_445915,BranchTee_mvgd_33535_lvgd_1164120003_46,BranchTee_mvgd_33535_lvgd_1164120003_building_445915,0.01638552204040117,0.014222633131068217,0.0013950168265854008,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027877423720458 47.55752865278416, 10.028070899999998 47.55746119624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_47_LVCableDist_mvgd_33535_lvgd_1164120003_48,BranchTee_mvgd_33535_lvgd_1164120003_47,BranchTee_mvgd_33535_lvgd_1164120003_48,0.04675948260824622,0.00963245341729872,0.003760620724421786,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.027371600000004 47.556322996244184, 10.027847599999992 47.55659319624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_47_LVCableDist_mvgd_33535_lvgd_1164120003_building_445857,BranchTee_mvgd_33535_lvgd_1164120003_47,BranchTee_mvgd_33535_lvgd_1164120003_building_445857,0.01275925500477088,0.011075033344141123,0.0010862867464620357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027309899999922 47.55621604625072, 10.027371600000004 47.556322996244184)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_47_LVCableDist_mvgd_33535_lvgd_1164120003_building_445859,BranchTee_mvgd_33535_lvgd_1164120003_47,BranchTee_mvgd_33535_lvgd_1164120003_building_445859,0.022957548521024353,0.01992715211624914,0.0019545405025860043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027518116875877 47.5561418040267, 10.027371600000004 47.556322996244184)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_47_LVCableDist_mvgd_33535_lvgd_1164120003_building_445882,BranchTee_mvgd_33535_lvgd_1164120003_47,BranchTee_mvgd_33535_lvgd_1164120003_building_445882,0.0329324488851258,0.028585365632289195,0.0028037751999685037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027796138921547 47.55625198368579, 10.027371600000004 47.556322996244184)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_48_LVCableDist_mvgd_33535_lvgd_1164120003_49,BranchTee_mvgd_33535_lvgd_1164120003_48,BranchTee_mvgd_33535_lvgd_1164120003_49,0.022683482116016486,0.004672797315899395,0.001824313875801929,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.028070099999999 47.556730796244196, 10.027847599999992 47.55659319624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_48_LVCableDist_mvgd_33535_lvgd_1164120003_building_445868,BranchTee_mvgd_33535_lvgd_1164120003_48,BranchTee_mvgd_33535_lvgd_1164120003_building_445868,0.029444001212137312,0.025557393052135186,0.002506778669099202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027666652450087 47.55682810981388, 10.027847599999992 47.55659319624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_4_LVCableDist_mvgd_33535_lvgd_1164120003_5,BranchTee_mvgd_33535_lvgd_1164120003_4,BranchTee_mvgd_33535_lvgd_1164120003_5,0.025816587431176374,0.00826130797797644,0.002116845756919554,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.029602099999995 47.558762796244395, 10.0299445 47.558774096244335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_4_LVCableDist_mvgd_33535_lvgd_1164120003_building_445944,BranchTee_mvgd_33535_lvgd_1164120003_4,BranchTee_mvgd_33535_lvgd_1164120003_building_445944,0.011740511727363422,0.01019076417935145,0.00099955383612509,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029635563937576 47.55865959117405, 10.029602099999995 47.558762796244395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_50_LVCableDist_mvgd_33535_lvgd_1164120003_building_445891,BranchTee_mvgd_33535_lvgd_1164120003_50,BranchTee_mvgd_33535_lvgd_1164120003_building_445891,0.018413303178475487,0.015982747158916722,0.001567656355632527,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027284706802085 47.55712687428465, 10.027420699999997 47.557264596244245)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_50_LVCableDist_mvgd_33535_lvgd_1164120003_building_445893,BranchTee_mvgd_33535_lvgd_1164120003_50,BranchTee_mvgd_33535_lvgd_1164120003_building_445893,0.02123293057354418,0.01843018373783635,0.001807711426879173,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02764519998501 47.55738019634244, 10.027420699999997 47.557264596244245)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_51_LVCableDist_mvgd_33535_lvgd_1164120003_53,BranchTee_mvgd_33535_lvgd_1164120003_51,BranchTee_mvgd_33535_lvgd_1164120003_53,0.015480347790355724,0.003188951644813279,0.001245003440465831,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.028365399999998 47.55762679624428, 10.0281938 47.55755009624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_51_LVCableDist_mvgd_33535_lvgd_1164120003_building_445916,BranchTee_mvgd_33535_lvgd_1164120003_51,BranchTee_mvgd_33535_lvgd_1164120003_building_445916,0.01135492547476307,0.009856075312094344,0.0009667261172918894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028142043775889 47.55764608429544, 10.0281938 47.55755009624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_52_LVCableDist_mvgd_33535_lvgd_1164120003_building_445898,BranchTee_mvgd_33535_lvgd_1164120003_52,BranchTee_mvgd_33535_lvgd_1164120003_building_445898,0.021598470067483434,0.01874747201857562,0.0018388324215944736,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027486975708472 47.55760778397065, 10.027504899999998 47.5578017962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_52_LVCableDist_mvgd_33535_lvgd_1164120003_building_445908,BranchTee_mvgd_33535_lvgd_1164120003_52,BranchTee_mvgd_33535_lvgd_1164120003_building_445908,0.02122382719019514,0.018422282001089384,0.0018069363906661395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027223228178832 47.557795699004366, 10.027504899999998 47.5578017962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_53_LVCableDist_mvgd_33535_lvgd_1164120003_54,BranchTee_mvgd_33535_lvgd_1164120003_53,BranchTee_mvgd_33535_lvgd_1164120003_54,0.05377153780649099,0.011076936788137145,0.004324563664514507,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.029052899999998 47.55775739624424, 10.028365399999998 47.55762679624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_53_LVCableDist_mvgd_33535_lvgd_1164120003_building_445931,BranchTee_mvgd_33535_lvgd_1164120003_53,BranchTee_mvgd_33535_lvgd_1164120003_building_445931,0.020714620776607382,0.01798029083409521,0.0017635840022949517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02852560001784 47.557778346279186, 10.028365399999998 47.55762679624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_54_LVCableDist_mvgd_33535_lvgd_1164120003_building_445927,BranchTee_mvgd_33535_lvgd_1164120003_54,BranchTee_mvgd_33535_lvgd_1164120003_building_445927,0.024236859295883567,0.021037593868826938,0.002063457389882011,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028875820239879 47.557575250425984, 10.029052899999998 47.55775739624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_54_LVCableDist_mvgd_33535_lvgd_1164120003_building_445937,BranchTee_mvgd_33535_lvgd_1164120003_54,BranchTee_mvgd_33535_lvgd_1164120003_building_445937,0.014543836188465659,0.012624049811588193,0.0012382209218592913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028912950026658 47.55784759628413, 10.029052899999998 47.55775739624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_55_LVCableDist_mvgd_33535_lvgd_1164120003_57,BranchTee_mvgd_33535_lvgd_1164120003_55,BranchTee_mvgd_33535_lvgd_1164120003_57,0.009302901704326206,0.0019163977510911982,0.0007481837478753069,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024751100000001 47.557332796244225, 10.024687800000002 47.557404696244284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_55_LVCableDist_mvgd_33535_lvgd_1164120003_building_445829,BranchTee_mvgd_33535_lvgd_1164120003_55,BranchTee_mvgd_33535_lvgd_1164120003_building_445829,0.019805023155791735,0.017190760099227227,0.0016861434432861398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02466054999998 47.55716544626079, 10.024751100000001 47.557332796244225)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_55_LVCableDist_mvgd_33535_lvgd_1164120003_building_445833,BranchTee_mvgd_33535_lvgd_1164120003_55,BranchTee_mvgd_33535_lvgd_1164120003_building_445833,0.012743326096281935,0.01106120705157272,0.0010849306044168553,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024600089516067 47.55728105519465, 10.024751100000001 47.557332796244225)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_55_LVCableDist_mvgd_33535_lvgd_1164120003_building_445836,BranchTee_mvgd_33535_lvgd_1164120003_55,BranchTee_mvgd_33535_lvgd_1164120003_building_445836,0.01478448657006895,0.012832934342819848,0.0012587092121214532,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024945508905164 47.557351271241885, 10.024751100000001 47.557332796244225)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_55_LVCableDist_mvgd_33535_lvgd_1164120003_building_445919,BranchTee_mvgd_33535_lvgd_1164120003_55,BranchTee_mvgd_33535_lvgd_1164120003_building_445919,0.024713995066060288,0.02145174771734033,0.002104079374724553,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025077994754565 47.557313312129494, 10.024751100000001 47.557332796244225)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_55_LVStation_mvgd_33535_lvgd_1164120003,BusBar_mvgd_33535_lvgd_1164120003_LV,BranchTee_mvgd_33535_lvgd_1164120003_55,0.2205843963530638,0.04544038564873114,0.017740449768430703,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024751100000001 47.557332796244225, 10.0253046 47.55694709624423, 10.025533599999997 47.55715839624422, 10.025666899999997 47.55729109624426, 10.02574519999999 47.557354696244246, 10.025889700000004 47.55748899624425, 10.026051900000002 47.55762099624429, 10.026395000000003 47.55788369624428, 10.026558 47.5579801962443, 10.026685600000002 47.558041696244295)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_56_LVCableDist_mvgd_33535_lvgd_1164120003_59,BranchTee_mvgd_33535_lvgd_1164120003_56,BranchTee_mvgd_33535_lvgd_1164120003_59,0.013339384081697145,0.0027479131208296118,0.0010728169224824928,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0240887 47.55743959624426, 10.024188899999999 47.55753859624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_56_LVCableDist_mvgd_33535_lvgd_1164120003_61,BranchTee_mvgd_33535_lvgd_1164120003_56,BranchTee_mvgd_33535_lvgd_1164120003_61,0.030644452030925477,0.006312757118370648,0.0024645730655651916,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024518 47.5577007962443, 10.024188899999999 47.55753859624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_56_LVCableDist_mvgd_33535_lvgd_1164120003_building_445824,BranchTee_mvgd_33535_lvgd_1164120003_56,BranchTee_mvgd_33535_lvgd_1164120003_building_445824,0.015279596000908058,0.013262689328788194,0.0013008614234039913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024155867022028 47.557674282219374, 10.024188899999999 47.55753859624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_57_LVCableDist_mvgd_33535_lvgd_1164120003_58,BranchTee_mvgd_33535_lvgd_1164120003_57,BranchTee_mvgd_33535_lvgd_1164120003_58,0.027011673450217457,0.005564404730744796,0.0021724076767326624,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024687800000002 47.557404696244284, 10.024575099999995 47.557635496244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_57_LVCableDist_mvgd_33535_lvgd_1164120003_building_445766,BranchTee_mvgd_33535_lvgd_1164120003_57,BranchTee_mvgd_33535_lvgd_1164120003_building_445766,0.01677582670538409,0.014561417580273388,0.0014282462576528663,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024856718583854 47.55750312026659, 10.024687800000002 47.557404696244284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_57_LVCableDist_mvgd_33535_lvgd_1164120003_building_445839,BranchTee_mvgd_33535_lvgd_1164120003_57,BranchTee_mvgd_33535_lvgd_1164120003_building_445839,0.019580146244165684,0.016995566939935813,0.0016669980614755753,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024443976032991 47.55746586720003, 10.024687800000002 47.557404696244284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_58_LVCableDist_mvgd_33535_lvgd_1164120003_61,BranchTee_mvgd_33535_lvgd_1164120003_58,BranchTee_mvgd_33535_lvgd_1164120003_61,0.008433946678158631,0.001737393015700678,0.0006782982380767026,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024575099999995 47.557635496244274, 10.024518 47.5577007962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_58_LVCableDist_mvgd_33535_lvgd_1164120003_building_445767,BranchTee_mvgd_33535_lvgd_1164120003_58,BranchTee_mvgd_33535_lvgd_1164120003_building_445767,0.017150667851280537,0.014886779694911506,0.001460159168607597,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024794858503615 47.55759501071827, 10.024575099999995 47.557635496244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_58_LVCableDist_mvgd_33535_lvgd_1164120003_building_445768,BranchTee_mvgd_33535_lvgd_1164120003_58,BranchTee_mvgd_33535_lvgd_1164120003_building_445768,0.01778338457822163,0.015435977813896374,0.001514026874401074,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024783889369209 47.55771025614639, 10.024575099999995 47.557635496244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_59_LVCableDist_mvgd_33535_lvgd_1164120003_60,BranchTee_mvgd_33535_lvgd_1164120003_59,BranchTee_mvgd_33535_lvgd_1164120003_60,0.03575450192680572,0.007365427396921977,0.0028755476630019823,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.023899699999998 47.55714439624423, 10.0240887 47.55743959624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_59_LVCableDist_mvgd_33535_lvgd_1164120003_building_445821,BranchTee_mvgd_33535_lvgd_1164120003_59,BranchTee_mvgd_33535_lvgd_1164120003_building_445821,0.018985808424441242,0.016479681712414998,0.00161639782688144,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023837149996066 47.55745084629986, 10.0240887 47.55743959624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_5_LVCableDist_mvgd_33535_lvgd_1164120003_building_445955,BranchTee_mvgd_33535_lvgd_1164120003_5,BranchTee_mvgd_33535_lvgd_1164120003_building_445955,0.01247237790933911,0.010826024025306347,0.0010618628450262129,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029921849999845 47.55866289626842, 10.0299445 47.558774096244335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_60_LVCableDist_mvgd_33535_lvgd_1164120003_building_445712,BranchTee_mvgd_33535_lvgd_1164120003_60,BranchTee_mvgd_33535_lvgd_1164120003_building_445712,0.023282834353513852,0.020209500218850023,0.0019822344148491488,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024002199999785 47.556946696306134, 10.023899699999998 47.55714439624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_60_LVCableDist_mvgd_33535_lvgd_1164120003_building_445817,BranchTee_mvgd_33535_lvgd_1164120003_60,BranchTee_mvgd_33535_lvgd_1164120003_building_445817,0.029568730130731836,0.025665657753475235,0.0025173977351119993,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024285981721953 47.55709678184573, 10.023899699999998 47.55714439624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_61_LVCableDist_mvgd_33535_lvgd_1164120003_building_445785,BranchTee_mvgd_33535_lvgd_1164120003_61,BranchTee_mvgd_33535_lvgd_1164120003_building_445785,0.012075912495513416,0.010481892046105645,0.0010281089052931796,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024600255398827 47.55779409216512, 10.024518 47.5577007962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_61_LVCableDist_mvgd_33535_lvgd_1164120003_building_445786,BranchTee_mvgd_33535_lvgd_1164120003_61,BranchTee_mvgd_33535_lvgd_1164120003_building_445786,0.029307317701788953,0.02543875176515281,0.002495141823084618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024490295958099 47.55796390143021, 10.024518 47.5577007962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_61_LVCableDist_mvgd_33535_lvgd_1164120003_building_445843,BranchTee_mvgd_33535_lvgd_1164120003_61,BranchTee_mvgd_33535_lvgd_1164120003_building_445843,0.011221370222365353,0.009740149353013126,0.0009553556022778245,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024656900004198 47.55773734626187, 10.024518 47.5577007962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_62_LVCableDist_mvgd_33535_lvgd_1164120003_66,BranchTee_mvgd_33535_lvgd_1164120003_62,BranchTee_mvgd_33535_lvgd_1164120003_66,0.06346454494835635,0.020308654383474033,0.005203811427319882,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025666899999997 47.55729109624426, 10.025201300000004 47.5577671962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_62_LVCableDist_mvgd_33535_lvgd_1164120003_68,BranchTee_mvgd_33535_lvgd_1164120003_62,BranchTee_mvgd_33535_lvgd_1164120003_68,0.017837339868921265,0.005707948758054805,0.0014625828187756506,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025533599999997 47.55715839624422, 10.025666899999997 47.55729109624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_62_LVCableDist_mvgd_33535_lvgd_1164120003_72,BranchTee_mvgd_33535_lvgd_1164120003_62,BranchTee_mvgd_33535_lvgd_1164120003_72,0.0276724009283703,0.008855168297078496,0.0022690142392041233,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025666899999997 47.55729109624426, 10.02574519999999 47.557354696244246, 10.025889700000004 47.55748899624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_62_LVCableDist_mvgd_33535_lvgd_1164120003_building_445924,BranchTee_mvgd_33535_lvgd_1164120003_62,BranchTee_mvgd_33535_lvgd_1164120003_building_445924,0.02491189419658374,0.021623524162634685,0.002120927944844329,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025369600005511 47.55738939627152, 10.025666899999997 47.55729109624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_63_LVCableDist_mvgd_33535_lvgd_1164120003_65,BranchTee_mvgd_33535_lvgd_1164120003_63,BranchTee_mvgd_33535_lvgd_1164120003_65,0.04155016888455189,0.013296054043056605,0.0034069297089335216,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.024131299999997 47.558093996244324, 10.024467899999994 47.558390296244326)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_63_LVCableDist_mvgd_33535_lvgd_1164120003_building_445775,BranchTee_mvgd_33535_lvgd_1164120003_63,BranchTee_mvgd_33535_lvgd_1164120003_building_445775,0.028226118249765623,0.02450027064079656,0.002403091571359435,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024130604068914 47.55783995353008, 10.024131299999997 47.558093996244324)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_63_LVCableDist_mvgd_33535_lvgd_1164120003_building_445787,BranchTee_mvgd_33535_lvgd_1164120003_63,BranchTee_mvgd_33535_lvgd_1164120003_building_445787,0.018241186838946894,0.015833350176205904,0.001553002859138448,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024364365329994 47.55804930266122, 10.024131299999997 47.558093996244324)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_64_LVCableDist_mvgd_33535_lvgd_1164120003_65,BranchTee_mvgd_33535_lvgd_1164120003_64,BranchTee_mvgd_33535_lvgd_1164120003_65,0.050752847254759065,0.0162409111215229,0.004161508551400648,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.02489540183256 47.55807689669638, 10.024589499999998 47.5583865962443, 10.024528199999995 47.558396596244314, 10.024467899999994 47.558390296244326)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_64_LVCableDist_mvgd_33535_lvgd_1164120003_66,BranchTee_mvgd_33535_lvgd_1164120003_64,BranchTee_mvgd_33535_lvgd_1164120003_66,0.04140967861149287,0.013251097155677719,0.0033954101291592286,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025201300000004 47.5577671962443, 10.02489540183256 47.55807689669638)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_64_LVCableDist_mvgd_33535_lvgd_1164120003_building_445794,BranchTee_mvgd_33535_lvgd_1164120003_64,BranchTee_mvgd_33535_lvgd_1164120003_building_445794,0.014155380842472353,0.012286870571266002,0.0012051489365602225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024713213477074 47.5580455691762, 10.02489540183256 47.55807689669638)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_64_LVCableDist_mvgd_33535_lvgd_1164120003_building_445801,BranchTee_mvgd_33535_lvgd_1164120003_64,BranchTee_mvgd_33535_lvgd_1164120003_building_445801,0.014491805155700723,0.012578886875148227,0.0012337911474503507,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02496319671748 47.55819896365879, 10.02489540183256 47.55807689669638)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_64_LVCableDist_mvgd_33535_lvgd_1164120003_building_445876,BranchTee_mvgd_33535_lvgd_1164120003_64,BranchTee_mvgd_33535_lvgd_1164120003_building_445876,0.02556182433370175,0.02218766352165312,0.0021762611515098876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025214186481715 47.55799790323401, 10.02489540183256 47.55807689669638)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_65_LVCableDist_mvgd_33535_lvgd_1164120003_building_445779,BranchTee_mvgd_33535_lvgd_1164120003_65,BranchTee_mvgd_33535_lvgd_1164120003_building_445779,0.022392054060993923,0.019436302924942726,0.0019063959097473887,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024171056921602 47.55837875830655, 10.024467899999994 47.558390296244326)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_65_LVCableDist_mvgd_33535_lvgd_1164120003_building_445799,BranchTee_mvgd_33535_lvgd_1164120003_65,BranchTee_mvgd_33535_lvgd_1164120003_building_445799,0.015326905334253522,0.013303753830132057,0.001304889205729677,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024517673779336 47.558256538557075, 10.024467899999994 47.558390296244326)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_66_LVCableDist_mvgd_33535_lvgd_1164120003_building_445793,BranchTee_mvgd_33535_lvgd_1164120003_66,BranchTee_mvgd_33535_lvgd_1164120003_building_445793,0.019123408843108803,0.01659911887581844,0.0016281127358671375,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02496079559353 47.557822413629665, 10.025201300000004 47.5577671962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_66_LVCableDist_mvgd_33535_lvgd_1164120003_building_445867,BranchTee_mvgd_33535_lvgd_1164120003_66,BranchTee_mvgd_33535_lvgd_1164120003_building_445867,0.018515350053700995,0.016071323846612463,0.0015763443368691967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025444850004513 47.55774444632723, 10.025201300000004 47.5577671962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_66_LVCableDist_mvgd_33535_lvgd_1164120003_building_445930,BranchTee_mvgd_33535_lvgd_1164120003_66,BranchTee_mvgd_33535_lvgd_1164120003_building_445930,0.017849898321496825,0.015493711743059245,0.0015196896656651726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025131234523919 47.557613722639715, 10.025201300000004 47.5577671962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_67_LVCableDist_mvgd_33535_lvgd_1164120003_73,BranchTee_mvgd_33535_lvgd_1164120003_67,BranchTee_mvgd_33535_lvgd_1164120003_73,0.018611739578827446,0.005955756665224783,0.0015260801630487754,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025136999999997 47.556823996244184, 10.0253046 47.55694709624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_67_LVCableDist_mvgd_33535_lvgd_1164120003_building_445719,BranchTee_mvgd_33535_lvgd_1164120003_67,BranchTee_mvgd_33535_lvgd_1164120003_building_445719,0.040094704313655805,0.03480220334425324,0.003413549292882138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024636029763238 47.556946114515036, 10.025136999999997 47.556823996244184)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_67_LVCableDist_mvgd_33535_lvgd_1164120003_building_445723,BranchTee_mvgd_33535_lvgd_1164120003_67,BranchTee_mvgd_33535_lvgd_1164120003_building_445723,0.027764599057927462,0.024099671982281037,0.0023637991376598026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02476891370985 47.55683791848544, 10.025136999999997 47.556823996244184)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_67_LVCableDist_mvgd_33535_lvgd_1164120003_building_445731,BranchTee_mvgd_33535_lvgd_1164120003_67,BranchTee_mvgd_33535_lvgd_1164120003_building_445731,0.022124758326793934,0.019204290227657135,0.0018836391098136372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025009199989256 47.55700329633793, 10.025136999999997 47.556823996244184)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_68_LVCableDist_mvgd_33535_lvgd_1164120003_73,BranchTee_mvgd_33535_lvgd_1164120003_68,BranchTee_mvgd_33535_lvgd_1164120003_73,0.029131079055551335,0.009321945297776427,0.0023886193811488592,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0253046 47.55694709624423, 10.025533599999997 47.55715839624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_68_LVCableDist_mvgd_33535_lvgd_1164120003_building_445911,BranchTee_mvgd_33535_lvgd_1164120003_68,BranchTee_mvgd_33535_lvgd_1164120003_building_445911,0.02754588462621157,0.02390982785555164,0.002345178411892968,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025169223579727 47.55717991916024, 10.025533599999997 47.55715839624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_68_LVCableDist_mvgd_33535_lvgd_1164120003_building_445914,BranchTee_mvgd_33535_lvgd_1164120003_68,BranchTee_mvgd_33535_lvgd_1164120003_building_445914,0.018753618148768744,0.01627814055313127,0.001596629806019243,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025288858801845 47.557127270379624, 10.025533599999997 47.55715839624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_69_LVCableDist_mvgd_33535_lvgd_1164120003_70,BranchTee_mvgd_33535_lvgd_1164120003_69,BranchTee_mvgd_33535_lvgd_1164120003_70,0.0389822944877849,0.01247433423609117,0.0031963753885536628,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026051900000002 47.55762099624429, 10.026395000000003 47.55788369624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_69_LVCableDist_mvgd_33535_lvgd_1164120003_72,BranchTee_mvgd_33535_lvgd_1164120003_69,BranchTee_mvgd_33535_lvgd_1164120003_72,0.0190871619687741,0.006107891830007713,0.0015650626920753576,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.025889700000004 47.55748899624425, 10.026051900000002 47.55762099624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_69_LVCableDist_mvgd_33535_lvgd_1164120003_building_445869,BranchTee_mvgd_33535_lvgd_1164120003_69,BranchTee_mvgd_33535_lvgd_1164120003_building_445869,0.023363614710360154,0.020279617568592614,0.001989111825088524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02583415612227 47.557770777760666, 10.026051900000002 47.55762099624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_6_LVCableDist_mvgd_33535_lvgd_1164120003_building_445951,BranchTee_mvgd_33535_lvgd_1164120003_6,BranchTee_mvgd_33535_lvgd_1164120003_building_445951,0.030489227840748326,0.02646464976576955,0.0025957662967690614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028805595006565 47.55871289249568, 10.028778500000005 47.558439096244335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_70_LVCableDist_mvgd_33535_lvgd_1164120003_building_445884,BranchTee_mvgd_33535_lvgd_1164120003_70,BranchTee_mvgd_33535_lvgd_1164120003_building_445884,0.0261922172216258,0.022734844548371196,0.0022299310122470364,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026460649995435 47.55765219631252, 10.026395000000003 47.55788369624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_70_LVStation_mvgd_33535_lvgd_1164120003,BusBar_mvgd_33535_lvgd_1164120003_LV,BranchTee_mvgd_33535_lvgd_1164120003_70,0.028090333092814918,0.008988906589700774,0.0023032828245213455,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026395000000003 47.55788369624428, 10.026558 47.5579801962443, 10.026685600000002 47.558041696244295)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_71_LVCableDist_mvgd_33535_lvgd_1164120003_72,BranchTee_mvgd_33535_lvgd_1164120003_71,BranchTee_mvgd_33535_lvgd_1164120003_72,0.056065589260281684,0.017940988563290138,0.004597129851155306,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026435899999994 47.55714689624425, 10.026030800000001 47.55741399624423, 10.025889700000004 47.55748899624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_71_LVCableDist_mvgd_33535_lvgd_1164120003_building_445853,BranchTee_mvgd_33535_lvgd_1164120003_71,BranchTee_mvgd_33535_lvgd_1164120003_building_445853,0.03401189087324463,0.02952232127797634,0.0028956758262064517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026728549995465 47.55691374627622, 10.026435899999994 47.55714689624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_71_LVCableDist_mvgd_33535_lvgd_1164120003_building_445883,BranchTee_mvgd_33535_lvgd_1164120003_71,BranchTee_mvgd_33535_lvgd_1164120003_building_445883,0.01725675205862177,0.014978860786883697,0.0014691908768382595,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026640434406424 47.55721690971184, 10.026435899999994 47.55714689624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_72_LVCableDist_mvgd_33535_lvgd_1164120003_building_445935,BranchTee_mvgd_33535_lvgd_1164120003_72,BranchTee_mvgd_33535_lvgd_1164120003_building_445935,0.019638977656133795,0.017046632605524133,0.0016720068008630013,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025637313108799 47.557533455572035, 10.025889700000004 47.55748899624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_7_LVCableDist_mvgd_33535_lvgd_1164120003_building_445941,BranchTee_mvgd_33535_lvgd_1164120003_7,BranchTee_mvgd_33535_lvgd_1164120003_building_445941,0.018031190120373488,0.015651073024484187,0.0015351243347182125,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028904204107908 47.55943404717719, 10.028681299999999 47.559493296244476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_8_LVCableDist_mvgd_33535_lvgd_1164120003_building_446079,BranchTee_mvgd_33535_lvgd_1164120003_8,BranchTee_mvgd_33535_lvgd_1164120003_building_446079,0.01627041457425817,0.014122719850456092,0.001385216903718179,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.030540799985848 47.55999224632222, 10.0305483 47.56013859624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_9_LVCableDist_mvgd_33535_lvgd_1164120003_building_445907,BranchTee_mvgd_33535_lvgd_1164120003_9,BranchTee_mvgd_33535_lvgd_1164120003_building_445907,0.018940885526956452,0.0164406886373982,0.0016125732189296313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02703631697442 47.558157946845604, 10.027179499999999 47.55829809624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120003_9_LVStation_mvgd_33535_lvgd_1164120003,BusBar_mvgd_33535_lvgd_1164120003_LV,BranchTee_mvgd_33535_lvgd_1164120003_9,0.04693122208133856,0.01501799106602834,0.003848152223634305,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026685600000002 47.558041696244295, 10.0267707 47.55809799624432, 10.027179499999999 47.55829809624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_10_LVCableDist_mvgd_33535_lvgd_1164120004_7,BranchTee_mvgd_33535_lvgd_1164120004_7,BranchTee_mvgd_33535_lvgd_1164120004_10,0.036569163430658816,0.016419554380365808,0.0031019062099054214,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0202216 47.554459896244, 10.020534899999998 47.55444249624398, 10.020526300000004 47.55432659624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_10_LVCableDist_mvgd_33535_lvgd_1164120004_9,BranchTee_mvgd_33535_lvgd_1164120004_9,BranchTee_mvgd_33535_lvgd_1164120004_10,0.016388546761750285,0.007358457496025878,0.0013901257289626423,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.020525200000005 47.554179096243956, 10.020526300000004 47.55432659624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_10_LVCableDist_mvgd_33535_lvgd_1164120004_building_445505,BranchTee_mvgd_33535_lvgd_1164120004_10,BranchTee_mvgd_33535_lvgd_1164120004_building_445505,0.012804288009638513,0.011114121992366228,0.001090120728643815,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020356999997615 47.55431609631913, 10.020526300000004 47.55432659624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_11_LVCableDist_mvgd_33535_lvgd_1164120004_14,BranchTee_mvgd_33535_lvgd_1164120004_11,BranchTee_mvgd_33535_lvgd_1164120004_14,0.0305152526416355,0.005004501433228222,0.0024541822341478045,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020821800000006 47.553493696243876, 10.020420899999996 47.55345399624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_11_LVCableDist_mvgd_33535_lvgd_1164120004_18,BranchTee_mvgd_33535_lvgd_1164120004_11,BranchTee_mvgd_33535_lvgd_1164120004_18,0.03939114571930957,0.00646014789796677,0.00316802391061166,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020821800000006 47.553493696243876, 10.020641500000002 47.55382649624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_11_LVCableDist_mvgd_33535_lvgd_1164120004_21,BranchTee_mvgd_33535_lvgd_1164120004_11,BranchTee_mvgd_33535_lvgd_1164120004_21,0.052388016079149655,0.008591634636980544,0.004213294245130253,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020821800000006 47.553493696243876, 10.020991 47.5533271962439, 10.021192799999996 47.553095196243866)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_11_LVCableDist_mvgd_33535_lvgd_1164120004_building_445499,BranchTee_mvgd_33535_lvgd_1164120004_11,BranchTee_mvgd_33535_lvgd_1164120004_building_445499,0.016757679573509463,0.014545665869806214,0.0014267012623663598,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020717870071513 47.55336033839864, 10.020821800000006 47.553493696243876)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_11_LVStation_mvgd_33535_lvgd_1164120004,BusBar_mvgd_33535_lvgd_1164120004_LV,BranchTee_mvgd_33535_lvgd_1164120004_11,0.07763377266400462,0.012731938716896757,0.006243678460715443,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020821800000006 47.553493696243876, 10.021084400000001 47.553557096243885, 10.021196799999995 47.55362669624393, 10.021334099999995 47.553696996243914, 10.021746599999998 47.55377359624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_12_LVCableDist_mvgd_33535_lvgd_1164120004_14,BranchTee_mvgd_33535_lvgd_1164120004_12,BranchTee_mvgd_33535_lvgd_1164120004_14,0.029834570385049212,0.004892869543148071,0.0023994385189037622,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020420899999996 47.55345399624389, 10.0200493 47.55336099624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_12_LVCableDist_mvgd_33535_lvgd_1164120004_building_445481,BranchTee_mvgd_33535_lvgd_1164120004_12,BranchTee_mvgd_33535_lvgd_1164120004_building_445481,0.01868456684988793,0.016218204025702725,0.001590750974475225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020014419546342 47.55319450015241, 10.0200493 47.55336099624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_12_LVCableDist_mvgd_33535_lvgd_1164120004_building_445486,BranchTee_mvgd_33535_lvgd_1164120004_12,BranchTee_mvgd_33535_lvgd_1164120004_building_445486,0.025031380760357654,0.021727238499990444,0.0021311006916512045,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01972858426986 47.553420072937186, 10.0200493 47.55336099624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_12_LVCableDist_mvgd_33535_lvgd_1164120004_building_445488,BranchTee_mvgd_33535_lvgd_1164120004_12,BranchTee_mvgd_33535_lvgd_1164120004_building_445488,0.00969360205660173,0.008414046585130302,0.0008252857581125427,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02003248045331 47.5534474935108, 10.0200493 47.55336099624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_13_LVCableDist_mvgd_33535_lvgd_1164120004_16,BranchTee_mvgd_33535_lvgd_1164120004_13,BranchTee_mvgd_33535_lvgd_1164120004_16,0.05218385008282188,0.008558151413582788,0.004196874241439343,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020469399999993 47.55394459624394, 10.019806899999995 47.553807096243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_13_LVCableDist_mvgd_33535_lvgd_1164120004_19,BranchTee_mvgd_33535_lvgd_1164120004_13,BranchTee_mvgd_33535_lvgd_1164120004_19,0.008690497724726551,0.0014252416268551544,0.0006989312974858175,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020575399999998 47.553975496243915, 10.020469399999993 47.55394459624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_13_LVCableDist_mvgd_33535_lvgd_1164120004_building_445497,BranchTee_mvgd_33535_lvgd_1164120004_13,BranchTee_mvgd_33535_lvgd_1164120004_building_445497,0.023755017739883044,0.02061935539821848,0.0020224347677945697,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020240040744463 47.553797837605174, 10.020469399999993 47.55394459624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_13_LVCableDist_mvgd_33535_lvgd_1164120004_building_445504,BranchTee_mvgd_33535_lvgd_1164120004_13,BranchTee_mvgd_33535_lvgd_1164120004_building_445504,0.015076260904172115,0.013086194464821396,0.0012835500505540686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020308750006752 47.55402554632402, 10.020469399999993 47.55394459624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_14_LVCableDist_mvgd_33535_lvgd_1164120004_15,BranchTee_mvgd_33535_lvgd_1164120004_14,BranchTee_mvgd_33535_lvgd_1164120004_15,0.04706438959524689,0.007718559893620491,0.0037851427993117574,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020420899999996 47.55345399624389, 10.020554499999994 47.55304019624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_14_LVCableDist_mvgd_33535_lvgd_1164120004_building_445493,BranchTee_mvgd_33535_lvgd_1164120004_14,BranchTee_mvgd_33535_lvgd_1164120004_building_445493,0.02148606639853082,0.01864990563392475,0.0018292626923437241,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020322450009633 47.553272496337435, 10.020420899999996 47.55345399624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_15_LVCableDist_mvgd_33535_lvgd_1164120004_17,BranchTee_mvgd_33535_lvgd_1164120004_15,BranchTee_mvgd_33535_lvgd_1164120004_17,0.0321961126777023,0.005280162479143178,0.0025893650191979203,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020554499999994 47.55304019624387, 10.0201424 47.5529631962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_15_LVCableDist_mvgd_33535_lvgd_1164120004_building_445485,BranchTee_mvgd_33535_lvgd_1164120004_15,BranchTee_mvgd_33535_lvgd_1164120004_building_445485,0.016463584661870787,0.014290391486503844,0.0014016628565506942,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020468020739207 47.5529041090301, 10.020554499999994 47.55304019624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_15_LVCableDist_mvgd_33535_lvgd_1164120004_building_445494,BranchTee_mvgd_33535_lvgd_1164120004_15,BranchTee_mvgd_33535_lvgd_1164120004_building_445494,0.012204408098825994,0.010593426229780963,0.0010390486561489235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020665300004842 47.553120346266425, 10.020554499999994 47.55304019624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_16_LVCableDist_mvgd_33535_lvgd_1164120004_building_445495,BranchTee_mvgd_33535_lvgd_1164120004_16,BranchTee_mvgd_33535_lvgd_1164120004_building_445495,0.0278345975863345,0.024160430704938347,0.0023697586136364156,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019976510415118 47.554029673614274, 10.019806899999995 47.553807096243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_16_LVCableDist_mvgd_33535_lvgd_1164120004_building_445501,BranchTee_mvgd_33535_lvgd_1164120004_16,BranchTee_mvgd_33535_lvgd_1164120004_building_445501,0.015019536041885648,0.013036957284356741,0.0012787206568258586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019658601073225 47.55371672102794, 10.019806899999995 47.553807096243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_16_LVCableDist_mvgd_33535_lvgd_1164120004_building_445502,BranchTee_mvgd_33535_lvgd_1164120004_16,BranchTee_mvgd_33535_lvgd_1164120004_building_445502,0.011363503970323072,0.009863521446240427,0.0009674564660487667,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019854950005188 47.55371014627573, 10.019806899999995 47.553807096243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_16_LVCableDist_mvgd_33535_lvgd_1164120004_building_445507,BranchTee_mvgd_33535_lvgd_1164120004_16,BranchTee_mvgd_33535_lvgd_1164120004_building_445507,0.017834067446431404,0.01547997054350246,0.0015183418699073457,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019676228674644 47.55394095481283, 10.019806899999995 47.553807096243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_17_LVCableDist_mvgd_33535_lvgd_1164120004_building_445482,BranchTee_mvgd_33535_lvgd_1164120004_17,BranchTee_mvgd_33535_lvgd_1164120004_building_445482,0.01785381512463307,0.015497111528181505,0.0015200231311640448,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020155350011272 47.55280274628679, 10.0201424 47.5529631962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_18_LVCableDist_mvgd_33535_lvgd_1164120004_19,BranchTee_mvgd_33535_lvgd_1164120004_18,BranchTee_mvgd_33535_lvgd_1164120004_19,0.01728926323054881,0.0028354391698100045,0.00139048505218745,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020641500000002 47.55382649624394, 10.020627900000004 47.55385399624391, 10.020575399999998 47.553975496243915)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_18_LVCableDist_mvgd_33535_lvgd_1164120004_building_445498,BranchTee_mvgd_33535_lvgd_1164120004_18,BranchTee_mvgd_33535_lvgd_1164120004_building_445498,0.021739019390060583,0.018869468830572587,0.0018507983918868369,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020542750009726 47.55364264634607, 10.020641500000002 47.55382649624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_1_LVCableDist_mvgd_33535_lvgd_1164120004_2,BranchTee_mvgd_33535_lvgd_1164120004_1,BranchTee_mvgd_33535_lvgd_1164120004_2,0.012959464403441536,0.0026696496671089563,0.0010422619690063453,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021196799999995 47.55362669624393, 10.021334099999995 47.553696996243914)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_1_LVCableDist_mvgd_33535_lvgd_1164120004_4,BranchTee_mvgd_33535_lvgd_1164120004_1,BranchTee_mvgd_33535_lvgd_1164120004_4,0.01146598230477018,0.0023619923547826566,0.0009221490118363279,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021084400000001 47.553557096243885, 10.021196799999995 47.55362669624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_1_LVCableDist_mvgd_33535_lvgd_1164120004_5,BranchTee_mvgd_33535_lvgd_1164120004_1,BranchTee_mvgd_33535_lvgd_1164120004_5,0.023646638066367805,0.0048712074416717675,0.001901775473443785,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021196799999995 47.55362669624393, 10.021008300000007 47.55379689624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_1_LVCableDist_mvgd_33535_lvgd_1164120004_building_445520,BranchTee_mvgd_33535_lvgd_1164120004_1,BranchTee_mvgd_33535_lvgd_1164120004_building_445520,0.013513942138179533,0.011730101775939835,0.0011505386663774781,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021256500012855 47.55351199630807, 10.021196799999995 47.55362669624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_20_LVCableDist_mvgd_33535_lvgd_1164120004_21,BranchTee_mvgd_33535_lvgd_1164120004_20,BranchTee_mvgd_33535_lvgd_1164120004_21,0.03272506624924537,0.005366910864876241,0.002631905989551835,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0213449 47.55281929624385, 10.021192799999996 47.553095196243866)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_20_LVCableDist_mvgd_33535_lvgd_1164120004_building_445464,BranchTee_mvgd_33535_lvgd_1164120004_20,BranchTee_mvgd_33535_lvgd_1164120004_building_445464,0.030419431388584238,0.026404066445291117,0.002589824024990061,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020996600010646 47.552680696307995, 10.0213449 47.55281929624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_20_LVCableDist_mvgd_33535_lvgd_1164120004_building_445465,BranchTee_mvgd_33535_lvgd_1164120004_20,BranchTee_mvgd_33535_lvgd_1164120004_building_445465,0.014176708417195252,0.012305382906125479,0.0012069647057212746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021225180752275 47.5527208384481, 10.0213449 47.55281929624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_21_LVCableDist_mvgd_33535_lvgd_1164120004_building_445466,BranchTee_mvgd_33535_lvgd_1164120004_21,BranchTee_mvgd_33535_lvgd_1164120004_building_445466,0.028492836615994017,0.024731782182682807,0.002425799215823283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020929600007412 47.55291099630117, 10.021192799999996 47.553095196243866)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_21_LVCableDist_mvgd_33535_lvgd_1164120004_building_445467,BranchTee_mvgd_33535_lvgd_1164120004_21,BranchTee_mvgd_33535_lvgd_1164120004_building_445467,0.01808815343841273,0.01570051718454225,0.001539974029892217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02110287950039 47.55294424016143, 10.021192799999996 47.553095196243866)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_21_LVCableDist_mvgd_33535_lvgd_1164120004_building_445506,BranchTee_mvgd_33535_lvgd_1164120004_21,BranchTee_mvgd_33535_lvgd_1164120004_building_445506,0.018061443737229326,0.015677333163915053,0.0015377000417646466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020964167284273 47.553144232942614, 10.021192799999996 47.553095196243866)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_21_LVCableDist_mvgd_33535_lvgd_1164120004_building_445511,BranchTee_mvgd_33535_lvgd_1164120004_21,BranchTee_mvgd_33535_lvgd_1164120004_building_445511,0.020237986600535645,0.01756657236926494,0.0017230047217504387,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021450191332672 47.55304290634059, 10.021192799999996 47.553095196243866)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_22_LVCableDist_mvgd_33535_lvgd_1164120004_33,BranchTee_mvgd_33535_lvgd_1164120004_22,BranchTee_mvgd_33535_lvgd_1164120004_33,0.017132761649772586,0.0017132761649772588,0.001501694011956191,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023668300000002 47.55187559624374, 10.023443400000003 47.551852496243754)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_22_LVCableDist_mvgd_33535_lvgd_1164120004_54,BranchTee_mvgd_33535_lvgd_1164120004_22,BranchTee_mvgd_33535_lvgd_1164120004_54,0.04586673466271211,0.004586673466271211,0.00402023924682875,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023688299999995 47.55208539624382, 10.0237966 47.55207629624378, 10.02388389999999 47.55204129624372, 10.023911699999998 47.55197899624378, 10.023872500000003 47.55192899624375, 10.023668300000002 47.55187559624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_22_LVCableDist_mvgd_33535_lvgd_1164120004_building_445543,BranchTee_mvgd_33535_lvgd_1164120004_22,BranchTee_mvgd_33535_lvgd_1164120004_building_445543,0.020017162073914567,0.017374896680157844,0.0017042043484941211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023843742591964 47.55174027006508, 10.023668300000002 47.55187559624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_23_LVCableDist_mvgd_33535_lvgd_1164120004_24,BranchTee_mvgd_33535_lvgd_1164120004_23,BranchTee_mvgd_33535_lvgd_1164120004_24,0.06641384799744861,0.006641384799744861,0.005821202669335044,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0213424 47.55198869624373, 10.021369999999994 47.55204259624378, 10.0214366 47.55206179624378, 10.021628799999995 47.55206879624378, 10.021796199999997 47.55210859624377, 10.021944299999994 47.55220079624381, 10.022005500000002 47.552296796243816)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_23_LVCableDist_mvgd_33535_lvgd_1164120004_44,BranchTee_mvgd_33535_lvgd_1164120004_23,BranchTee_mvgd_33535_lvgd_1164120004_44,0.07475787966121251,0.007475787966121252,0.00655256067461106,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022298899999996 47.55202879624376, 10.022245099999997 47.552027896243764, 10.022175199999998 47.552015096243764, 10.021925899999994 47.551944296243775, 10.021799499999998 47.551925696243785, 10.0216602 47.551949596243766, 10.0213424 47.55198869624373)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_23_LVCableDist_mvgd_33535_lvgd_1164120004_46,BranchTee_mvgd_33535_lvgd_1164120004_23,BranchTee_mvgd_33535_lvgd_1164120004_46,0.0327479279380488,0.0032747927938048802,0.002870370130269892,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0213424 47.55198869624373, 10.021173500000003 47.55200429624381, 10.021016200000005 47.551980996243714, 10.020913000000002 47.551977696243746)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_23_LVCableDist_mvgd_33535_lvgd_1164120004_building_445490,BranchTee_mvgd_33535_lvgd_1164120004_23,BranchTee_mvgd_33535_lvgd_1164120004_building_445490,0.013035150715390017,0.011314510820958535,0.001109775723972026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021415326019621 47.55188229980278, 10.0213424 47.55198869624373)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_24_LVCableDist_mvgd_33535_lvgd_1164120004_25,BranchTee_mvgd_33535_lvgd_1164120004_24,BranchTee_mvgd_33535_lvgd_1164120004_25,0.029217787733285143,0.0029217787733285144,0.002560951805587265,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022005500000002 47.552296796243816, 10.022068299999997 47.5525562962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_24_LVCableDist_mvgd_33535_lvgd_1164120004_building_445474,BranchTee_mvgd_33535_lvgd_1164120004_24,BranchTee_mvgd_33535_lvgd_1164120004_building_445474,0.020187226470110148,0.017522512576055606,0.0017186831483584745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022223262167406 47.55240272011069, 10.022005500000002 47.552296796243816)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_25_LVCableDist_mvgd_33535_lvgd_1164120004_26,BranchTee_mvgd_33535_lvgd_1164120004_25,BranchTee_mvgd_33535_lvgd_1164120004_26,0.03245308911230556,0.003245308911230556,0.002844527378928242,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022068299999997 47.5525562962438, 10.022002199999996 47.55272299624384, 10.0221493 47.55278879624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_25_LVCableDist_mvgd_33535_lvgd_1164120004_building_445473,BranchTee_mvgd_33535_lvgd_1164120004_25,BranchTee_mvgd_33535_lvgd_1164120004_building_445473,0.019078001680700386,0.016559705458847936,0.001624246898974602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021815233197156 47.55254897925105, 10.022068299999997 47.5525562962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_26_LVCableDist_mvgd_33535_lvgd_1164120004_27,BranchTee_mvgd_33535_lvgd_1164120004_26,BranchTee_mvgd_33535_lvgd_1164120004_27,0.024937640317360604,0.0024937640317360607,0.0021857950225668836,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0221493 47.55278879624385, 10.022423400000001 47.55291469624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_26_LVCableDist_mvgd_33535_lvgd_1164120004_building_445476,BranchTee_mvgd_33535_lvgd_1164120004_26,BranchTee_mvgd_33535_lvgd_1164120004_building_445476,0.009926336383610833,0.008616059980974203,0.0008451000979609289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022215250024086 47.55271144628236, 10.0221493 47.55278879624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_27_LVCableDist_mvgd_33535_lvgd_1164120004_29,BranchTee_mvgd_33535_lvgd_1164120004_27,BranchTee_mvgd_33535_lvgd_1164120004_29,0.012952250937379435,0.0012952250937379435,0.0011352704293458046,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022423400000001 47.55291469624389, 10.0223704 47.55302559624386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_27_LVCableDist_mvgd_33535_lvgd_1164120004_49,BranchTee_mvgd_33535_lvgd_1164120004_27,BranchTee_mvgd_33535_lvgd_1164120004_49,0.04712940466713914,0.004712940466713915,0.0041309128220226215,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022423400000001 47.55291469624389, 10.022600500000001 47.552706496243864, 10.022632600000003 47.55266569624384, 10.022630600000001 47.55252809624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_28_LVCableDist_mvgd_33535_lvgd_1164120004_46,BranchTee_mvgd_33535_lvgd_1164120004_28,BranchTee_mvgd_33535_lvgd_1164120004_46,0.03271448815044126,0.0032714488150441257,0.0028674391183386074,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.020913000000002 47.551977696243746, 10.020866700000001 47.55199769624377, 10.020839800000001 47.55203579624374, 10.020825299999995 47.552071796243816, 10.020802399999999 47.5521903962438, 10.020785399999998 47.55224729624378)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_28_LVCableDist_mvgd_33535_lvgd_1164120004_building_445484,BranchTee_mvgd_33535_lvgd_1164120004_28,BranchTee_mvgd_33535_lvgd_1164120004_building_445484,0.009483956476910638,0.008232074221958433,0.0008074371286598334,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02066915000011 47.55228009625517, 10.020785399999998 47.55224729624378)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_29_LVCableDist_mvgd_33535_lvgd_1164120004_48,BranchTee_mvgd_33535_lvgd_1164120004_29,BranchTee_mvgd_33535_lvgd_1164120004_48,0.01062219436798413,0.001062219436798413,0.0009310399573817849,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0223704 47.55302559624386, 10.0223371 47.55311849624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_29_LVCableDist_mvgd_33535_lvgd_1164120004_building_445527,BranchTee_mvgd_33535_lvgd_1164120004_29,BranchTee_mvgd_33535_lvgd_1164120004_building_445527,0.011575576568214799,0.010047600461210445,0.0009855117249405606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022224600003504 47.55299264631158, 10.0223704 47.55302559624386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_2_LVCableDist_mvgd_33535_lvgd_1164120004_3,BranchTee_mvgd_33535_lvgd_1164120004_2,BranchTee_mvgd_33535_lvgd_1164120004_3,0.012118225474352092,0.002496354447716531,0.000974605519994092,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021334099999995 47.553696996243914, 10.021399999999995 47.55359749624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_2_LVCableDist_mvgd_33535_lvgd_1164120004_building_445509,BranchTee_mvgd_33535_lvgd_1164120004_2,BranchTee_mvgd_33535_lvgd_1164120004_building_445509,0.03050958947574128,0.026482323664943432,0.002597499828563894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021404433567723 47.55396742073349, 10.021334099999995 47.553696996243914)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_2_LVCableDist_mvgd_33535_lvgd_1164120004_building_445510,BranchTee_mvgd_33535_lvgd_1164120004_2,BranchTee_mvgd_33535_lvgd_1164120004_building_445510,0.027738127919093972,0.02407669503377357,0.0023615454600534043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021566352760862 47.553890744982255, 10.021334099999995 47.553696996243914)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_2_LVCableDist_mvgd_33535_lvgd_1164120004_building_445517,BranchTee_mvgd_33535_lvgd_1164120004_2,BranchTee_mvgd_33535_lvgd_1164120004_building_445517,0.03245050372873144,0.02816703723653889,0.0027627437576376616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021758354243039 47.55364607780043, 10.021334099999995 47.553696996243914)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_2_LVStation_mvgd_33535_lvgd_1164120004,BusBar_mvgd_33535_lvgd_1164120004_LV,BranchTee_mvgd_33535_lvgd_1164120004_2,0.03221296651703918,0.0066358711025100705,0.002590720485382765,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.021334099999995 47.553696996243914, 10.021746599999998 47.55377359624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_30_LVCableDist_mvgd_33535_lvgd_1164120004_48,BranchTee_mvgd_33535_lvgd_1164120004_30,BranchTee_mvgd_33535_lvgd_1164120004_48,0.03464225517073796,0.0034642255170737966,0.0030364087363140384,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0223371 47.55311849624385, 10.022384699999998 47.553123296243896, 10.022435199999997 47.55312119624387, 10.022601299999998 47.55310949624386, 10.022794599999996 47.55309659624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_30_LVCableDist_mvgd_33535_lvgd_1164120004_building_445525,BranchTee_mvgd_33535_lvgd_1164120004_30,BranchTee_mvgd_33535_lvgd_1164120004_building_445525,0.013648653582622603,0.01184703130971642,0.001162007616299754,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022720068092642 47.552984625731796, 10.022794599999996 47.55309659624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_30_LVCableDist_mvgd_33535_lvgd_1164120004_building_445539,BranchTee_mvgd_33535_lvgd_1164120004_30,BranchTee_mvgd_33535_lvgd_1164120004_building_445539,0.020174290101183972,0.01751128380782769,0.001717581782635586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02302260670826 47.553191883804246, 10.022794599999996 47.55309659624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_31_LVCableDist_mvgd_33535_lvgd_1164120004_41,BranchTee_mvgd_33535_lvgd_1164120004_31,BranchTee_mvgd_33535_lvgd_1164120004_41,0.1247254008614884,0.01247254008614884,0.010932235645443584,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.020433000000006 47.55128029624371, 10.020994399999996 47.551460896243704, 10.021415799999994 47.551599096243756, 10.021675899999998 47.551683796243736, 10.021920299999998 47.55177339624377)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_31_LVCableDist_mvgd_33535_lvgd_1164120004_44,BranchTee_mvgd_33535_lvgd_1164120004_31,BranchTee_mvgd_33535_lvgd_1164120004_44,0.04384628331760108,0.004384628331760108,0.0038431458074624043,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.021920299999998 47.55177339624377, 10.0222671 47.55190829624374, 10.022281500000004 47.55200309624378, 10.022298899999996 47.55202879624376)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_31_LVCableDist_mvgd_33535_lvgd_1164120004_52,BranchTee_mvgd_33535_lvgd_1164120004_31,BranchTee_mvgd_33535_lvgd_1164120004_52,0.1646099050753123,0.01646099050753123,0.014428129790946733,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.020265448184043 47.55113504752167, 10.020792099999998 47.551313296243684, 10.021062799999992 47.551400096243704, 10.0212707 47.55145639624372, 10.021415099999995 47.551484696243726, 10.021597199999999 47.551495796243714, 10.021745899999999 47.551495696243684, 10.021902099999993 47.55150089624373, 10.021839000000002 47.55159559624372, 10.021840599999996 47.551655496243725, 10.021862399999998 47.551711696243736, 10.021920299999998 47.55177339624377)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_32_LVCableDist_mvgd_33535_lvgd_1164120004_51,BranchTee_mvgd_33535_lvgd_1164120004_32,BranchTee_mvgd_33535_lvgd_1164120004_51,0.0361374150439453,0.00361374150439453,0.003167460149647769,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023234700000001 47.55219169624379, 10.023427899999993 47.552342196243806, 10.0236035 47.55238269624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_32_LVCableDist_mvgd_33535_lvgd_1164120004_55,BranchTee_mvgd_33535_lvgd_1164120004_32,BranchTee_mvgd_33535_lvgd_1164120004_55,0.02556325421996421,0.0025563254219964212,0.002240630353294131,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0236035 47.55238269624381, 10.023942899999994 47.552382696243804)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_32_LVCableDist_mvgd_33535_lvgd_1164120004_building_445538,BranchTee_mvgd_33535_lvgd_1164120004_32,BranchTee_mvgd_33535_lvgd_1164120004_building_445538,0.011876202907223545,0.010308544123470037,0.001011106197939219,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023571749998592 47.55227799627783, 10.0236035 47.55238269624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_33_LVCableDist_mvgd_33535_lvgd_1164120004_34,BranchTee_mvgd_33535_lvgd_1164120004_33,BranchTee_mvgd_33535_lvgd_1164120004_34,0.026171620467967692,0.0026171620467967693,0.002293953919592341,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023443400000003 47.551852496243754, 10.023096999999998 47.55183399624375)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_33_LVCableDist_mvgd_33535_lvgd_1164120004_building_445532,BranchTee_mvgd_33535_lvgd_1164120004_33,BranchTee_mvgd_33535_lvgd_1164120004_building_445532,0.018107043073569102,0.01571691338785798,0.0015415822398000994,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023587200001842 47.5517218962653, 10.023443400000003 47.551852496243754)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_34_LVCableDist_mvgd_33535_lvgd_1164120004_53,BranchTee_mvgd_33535_lvgd_1164120004_34,BranchTee_mvgd_33535_lvgd_1164120004_53,0.0291273817895123,0.0029127381789512304,0.0025530276852858114,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023096999999998 47.55183399624375, 10.022908099999995 47.55182119624376, 10.022807899999998 47.551786496243714, 10.022778499999998 47.551732896243706)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_34_LVCableDist_mvgd_33535_lvgd_1164120004_building_445531,BranchTee_mvgd_33535_lvgd_1164120004_34,BranchTee_mvgd_33535_lvgd_1164120004_building_445531,0.01751850592353154,0.015206063141625377,0.0014914758577544947,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023271457363778 47.551729717345424, 10.023096999999998 47.55183399624375)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_35_LVCableDist_mvgd_33535_lvgd_1164120004_40,BranchTee_mvgd_33535_lvgd_1164120004_35,BranchTee_mvgd_33535_lvgd_1164120004_40,0.061180580505949156,0.006118058050594916,0.005362504497049781,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022555700000003 47.55132589624369, 10.022595000000004 47.550775896243664)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_35_LVCableDist_mvgd_33535_lvgd_1164120004_42,BranchTee_mvgd_33535_lvgd_1164120004_35,BranchTee_mvgd_33535_lvgd_1164120004_42,0.015647754842029515,0.0015647754842029516,0.0013715325192273438,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022601300000005 47.551463296243675, 10.022555700000003 47.55132589624369)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_35_LVCableDist_mvgd_33535_lvgd_1164120004_building_445434,BranchTee_mvgd_33535_lvgd_1164120004_35,BranchTee_mvgd_33535_lvgd_1164120004_building_445434,0.03198054958879253,0.027759117043071917,0.002722733196404289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02232790000062 47.551082996276364, 10.022555700000003 47.55132589624369)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_35_LVCableDist_mvgd_33535_lvgd_1164120004_building_445436,BranchTee_mvgd_33535_lvgd_1164120004_35,BranchTee_mvgd_33535_lvgd_1164120004_building_445436,0.02786408667149515,0.02418602723085779,0.002372269230624894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022446174248676 47.55108635449293, 10.022555700000003 47.55132589624369)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_35_LVCableDist_mvgd_33535_lvgd_1164120004_building_445443,BranchTee_mvgd_33535_lvgd_1164120004_35,BranchTee_mvgd_33535_lvgd_1164120004_building_445443,0.023018608134952035,0.019980151861138367,0.001959738944762207,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022807149999998 47.551208146303644, 10.022555700000003 47.55132589624369)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_35_LVCableDist_mvgd_33535_lvgd_1164120004_building_445444,BranchTee_mvgd_33535_lvgd_1164120004_35,BranchTee_mvgd_33535_lvgd_1164120004_building_445444,0.02026744420532592,0.0175921415702229,0.0017255126585895585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022305019646039 47.551259598498824, 10.022555700000003 47.55132589624369)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_36_LVCableDist_mvgd_33535_lvgd_1164120004_37,BranchTee_mvgd_33535_lvgd_1164120004_36,BranchTee_mvgd_33535_lvgd_1164120004_37,0.03760921093500233,0.003760921093500233,0.0032964636997818717,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022587499999997 47.550619596243656, 10.022451000000004 47.55029399624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_36_LVCableDist_mvgd_33535_lvgd_1164120004_40,BranchTee_mvgd_33535_lvgd_1164120004_36,BranchTee_mvgd_33535_lvgd_1164120004_40,0.017375241758047846,0.0017375241758047846,0.0015229474989338892,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022595000000004 47.550775896243664, 10.022587499999997 47.550619596243656)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_36_LVCableDist_mvgd_33535_lvgd_1164120004_building_445427,BranchTee_mvgd_33535_lvgd_1164120004_36,BranchTee_mvgd_33535_lvgd_1164120004_building_445427,0.022816053006872564,0.019804334009965386,0.001942493976229297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022332699994815 47.55050854627851, 10.022587499999997 47.550619596243656)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_37_LVCableDist_mvgd_33535_lvgd_1164120004_39,BranchTee_mvgd_33535_lvgd_1164120004_37,BranchTee_mvgd_33535_lvgd_1164120004_39,0.03016676911374123,0.003016676911374123,0.0026441304364245035,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022451000000004 47.55029399624358, 10.0222167 47.55007379624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_37_LVCableDist_mvgd_33535_lvgd_1164120004_building_445440,BranchTee_mvgd_33535_lvgd_1164120004_37,BranchTee_mvgd_33535_lvgd_1164120004_building_445440,0.019483542832290507,0.01691171517842816,0.0016587735212540828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022204449991955 47.550347046296366, 10.022451000000004 47.55029399624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_38_LVCableDist_mvgd_33535_lvgd_1164120004_39,BranchTee_mvgd_33535_lvgd_1164120004_38,BranchTee_mvgd_33535_lvgd_1164120004_39,0.02545421923374832,0.0025454219233748323,0.002231073389318256,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0222167 47.55007379624358, 10.022018999999997 47.54988799624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_38_LVCableDist_mvgd_33535_lvgd_1164120004_building_445491,BranchTee_mvgd_33535_lvgd_1164120004_38,BranchTee_mvgd_33535_lvgd_1164120004_building_445491,0.019128414881490353,0.016603464117133628,0.0016285389357623607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022007824422916 47.54971600117863, 10.022018999999997 47.54988799624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_38_LVCableDist_mvgd_33535_lvgd_1164120004_building_445496,BranchTee_mvgd_33535_lvgd_1164120004_38,BranchTee_mvgd_33535_lvgd_1164120004_building_445496,0.023756974605400168,0.020621053957487347,0.0020226013697689847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021748039363485 47.54999743552938, 10.022018999999997 47.54988799624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_38_LVCableDist_mvgd_33535_lvgd_1164120004_building_445500,BranchTee_mvgd_33535_lvgd_1164120004_38,BranchTee_mvgd_33535_lvgd_1164120004_building_445500,0.018753353586105567,0.016277910912739633,0.0015966072819052167,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02226614623613 47.549867581636505, 10.022018999999997 47.54988799624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_39_LVCableDist_mvgd_33535_lvgd_1164120004_building_445422,BranchTee_mvgd_33535_lvgd_1164120004_39,BranchTee_mvgd_33535_lvgd_1164120004_building_445422,0.005937002509651939,0.005153318178377883,0.0005054595380008676,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02221385000077 47.550127196252106, 10.0222167 47.55007379624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_39_LVCableDist_mvgd_33535_lvgd_1164120004_building_445439,BranchTee_mvgd_33535_lvgd_1164120004_39,BranchTee_mvgd_33535_lvgd_1164120004_building_445439,0.046141259894632594,0.04005061358854109,0.003928335868344824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0216674979392 47.550257762807064, 10.0222167 47.55007379624358)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_3_LVCableDist_mvgd_33535_lvgd_1164120004_building_445518,BranchTee_mvgd_33535_lvgd_1164120004_3,BranchTee_mvgd_33535_lvgd_1164120004_building_445518,0.03010013867108801,0.026126920366504394,0.0025626403495224645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021425700063354 47.55332714636157, 10.021399999999995 47.55359749624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_3_LVCableDist_mvgd_33535_lvgd_1164120004_building_445524,BranchTee_mvgd_33535_lvgd_1164120004_3,BranchTee_mvgd_33535_lvgd_1164120004_building_445524,0.008834137629353051,0.007668031462278449,0.0007521133968714886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02151294872901 47.55357605815948, 10.021399999999995 47.55359749624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_40_LVCableDist_mvgd_33535_lvgd_1164120004_building_445428,BranchTee_mvgd_33535_lvgd_1164120004_40,BranchTee_mvgd_33535_lvgd_1164120004_building_445428,0.016998880479137394,0.014755028255891258,0.0014472364226809935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022379239940895 47.55073102569907, 10.022595000000004 47.550775896243664)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_40_LVCableDist_mvgd_33535_lvgd_1164120004_building_445432,BranchTee_mvgd_33535_lvgd_1164120004_40,BranchTee_mvgd_33535_lvgd_1164120004_building_445432,0.018649258059868497,0.016187555995965854,0.0015877448843377225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022463099999399 47.55091794626844, 10.022595000000004 47.550775896243664)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_40_LVCableDist_mvgd_33535_lvgd_1164120004_building_445442,BranchTee_mvgd_33535_lvgd_1164120004_40,BranchTee_mvgd_33535_lvgd_1164120004_building_445442,0.023156972561329633,0.02010025218323412,0.0019715188991952528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022761749999473 47.55095099633853, 10.022595000000004 47.550775896243664)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_41_LVCableDist_mvgd_33535_lvgd_1164120004_building_445437,BranchTee_mvgd_33535_lvgd_1164120004_41,BranchTee_mvgd_33535_lvgd_1164120004_building_445437,0.0318939841802979,0.02768397826849858,0.0027153632632918438,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020042464045154 47.55139124821769, 10.020433000000006 47.55128029624371)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_42_LVCableDist_mvgd_33535_lvgd_1164120004_43,BranchTee_mvgd_33535_lvgd_1164120004_42,BranchTee_mvgd_33535_lvgd_1164120004_43,0.03628978845427121,0.003628978845427121,0.003180815745350625,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023082100000003 47.55144219624374, 10.022601300000005 47.551463296243675)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_42_LVCableDist_mvgd_33535_lvgd_1164120004_53,BranchTee_mvgd_33535_lvgd_1164120004_42,BranchTee_mvgd_33535_lvgd_1164120004_53,0.032856990335295544,0.0032856990335295546,0.0028799294968345455,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022601300000005 47.551463296243675, 10.022667600000005 47.551586596243716, 10.022778499999998 47.551732896243706)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_43_LVCableDist_mvgd_33535_lvgd_1164120004_47,BranchTee_mvgd_33535_lvgd_1164120004_43,BranchTee_mvgd_33535_lvgd_1164120004_47,0.05851601270834109,0.00585160127083411,0.005128953970408769,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023842700000001 47.55154949624373, 10.023082100000003 47.55144219624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_43_LVCableDist_mvgd_33535_lvgd_1164120004_building_445449,BranchTee_mvgd_33535_lvgd_1164120004_43,BranchTee_mvgd_33535_lvgd_1164120004_building_445449,0.016620673425739693,0.014426744533542053,0.0014150369479177128,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023188929538392 47.5513113031654, 10.023082100000003 47.55144219624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_44_LVCableDist_mvgd_33535_lvgd_1164120004_45,BranchTee_mvgd_33535_lvgd_1164120004_44,BranchTee_mvgd_33535_lvgd_1164120004_45,0.0048199610981386936,0.00048199610981386937,0.00042247168710438104,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022329499999996 47.5520668962438, 10.022298899999996 47.55202879624376)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_45_LVCableDist_mvgd_33535_lvgd_1164120004_51,BranchTee_mvgd_33535_lvgd_1164120004_45,BranchTee_mvgd_33535_lvgd_1164120004_51,0.09882942700786444,0.009882942700786445,0.008662442271514439,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022329499999996 47.5520668962438, 10.022392400000003 47.55211259624373, 10.0224603 47.552173996243766, 10.022602900000003 47.552361196243815, 10.022736000000002 47.55238739624383, 10.022854399999993 47.55238269624381, 10.022894800000001 47.552326896243834, 10.022917399999995 47.55228739624377, 10.022936600000005 47.55223549624377, 10.023054399999996 47.55222269624378, 10.023112899999992 47.55220909624381, 10.023234700000001 47.55219169624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_45_LVCableDist_mvgd_33535_lvgd_1164120004_building_445461,BranchTee_mvgd_33535_lvgd_1164120004_45,BranchTee_mvgd_33535_lvgd_1164120004_building_445461,0.014523421154712253,0.012606329562290236,0.001236482843845598,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022198550003996 47.552162846290706, 10.022329499999996 47.5520668962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_46_LVCableDist_mvgd_33535_lvgd_1164120004_building_445468,BranchTee_mvgd_33535_lvgd_1164120004_46,BranchTee_mvgd_33535_lvgd_1164120004_building_445468,0.017887131408724676,0.015526030062773019,0.0015228595850037513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020776000002645 47.55184619629183, 10.020913000000002 47.551977696243746)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_47_LVCableDist_mvgd_33535_lvgd_1164120004_building_445451,BranchTee_mvgd_33535_lvgd_1164120004_47,BranchTee_mvgd_33535_lvgd_1164120004_building_445451,0.0257548143730244,0.02235517887578518,0.002192691775542168,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023584350003388 47.55139764627037, 10.023842700000001 47.55154949624373)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_47_LVCableDist_mvgd_33535_lvgd_1164120004_building_445458,BranchTee_mvgd_33535_lvgd_1164120004_47,BranchTee_mvgd_33535_lvgd_1164120004_building_445458,0.01698895311723357,0.01474641130575874,0.0014463912352731534,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023746827015966 47.55141109111164, 10.023842700000001 47.55154949624373)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_48_LVStation_mvgd_33535_lvgd_1164120004,BusBar_mvgd_33535_lvgd_1164120004_LV,BranchTee_mvgd_33535_lvgd_1164120004_48,0.10746499955947107,0.010746499955947108,0.009419353962440405,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0223371 47.55311849624385, 10.022333199999997 47.55312949624386, 10.022232 47.553459996243916, 10.022157899999996 47.55366389624393, 10.022112600000002 47.55381729624391, 10.021746599999998 47.55377359624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_49_LVCableDist_mvgd_33535_lvgd_1164120004_building_445537,BranchTee_mvgd_33535_lvgd_1164120004_49,BranchTee_mvgd_33535_lvgd_1164120004_building_445537,0.01411236135584386,0.01224952965687247,0.0012014863796047687,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02244470963168 47.55254402049148, 10.022630600000001 47.55252809624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_4_LVCableDist_mvgd_33535_lvgd_1164120004_building_445512,BranchTee_mvgd_33535_lvgd_1164120004_4,BranchTee_mvgd_33535_lvgd_1164120004_building_445512,0.012867586127472349,0.011169064758646,0.001095509750687279,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021038822521621 47.55344548150951, 10.021084400000001 47.553557096243885)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_4_LVCableDist_mvgd_33535_lvgd_1164120004_building_445514,BranchTee_mvgd_33535_lvgd_1164120004_4,BranchTee_mvgd_33535_lvgd_1164120004_building_445514,0.013549073162100479,0.011760595504703215,0.001153529622014049,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020921491769665 47.55360882313541, 10.021084400000001 47.553557096243885)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_50_LVCableDist_mvgd_33535_lvgd_1164120004_55,BranchTee_mvgd_33535_lvgd_1164120004_50,BranchTee_mvgd_33535_lvgd_1164120004_55,0.030127575285585604,0.0030127575285585607,0.0026406950803359694,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023942899999994 47.552382696243804, 10.0243426 47.55237219624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_50_LVCableDist_mvgd_33535_lvgd_1164120004_building_445516,BranchTee_mvgd_33535_lvgd_1164120004_50,BranchTee_mvgd_33535_lvgd_1164120004_building_445516,0.007478006272909535,0.006490909444885476,0.0006366562233597637,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024258899999896 47.55233599624661, 10.0243426 47.55237219624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_51_LVCableDist_mvgd_33535_lvgd_1164120004_54,BranchTee_mvgd_33535_lvgd_1164120004_51,BranchTee_mvgd_33535_lvgd_1164120004_54,0.03616258141291752,0.003616258141291752,0.0031696659928364393,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023234700000001 47.55219169624379, 10.023543000000005 47.55211499624376, 10.023688299999995 47.55208539624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_51_LVCableDist_mvgd_33535_lvgd_1164120004_building_445535,BranchTee_mvgd_33535_lvgd_1164120004_51,BranchTee_mvgd_33535_lvgd_1164120004_building_445535,0.014098097448114359,0.012237148584963263,0.0012002719909971643,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023319699984262 47.55207864628737, 10.023234700000001 47.55219169624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_52_LVCableDist_mvgd_33535_lvgd_1164120004_building_445433,BranchTee_mvgd_33535_lvgd_1164120004_52,BranchTee_mvgd_33535_lvgd_1164120004_building_445433,0.03710753750775549,0.03220934255673177,0.0031592303918563714,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019953438427883 47.551393514060706, 10.020265448184043 47.55113504752167)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_53_LVCableDist_mvgd_33535_lvgd_1164120004_building_445530,BranchTee_mvgd_33535_lvgd_1164120004_53,BranchTee_mvgd_33535_lvgd_1164120004_building_445530,0.018106884771156215,0.015716775981363593,0.0015415687623821007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022973956340891 47.55163801581385, 10.022778499999998 47.551732896243706)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_54_LVCableDist_mvgd_33535_lvgd_1164120004_building_445508,BranchTee_mvgd_33535_lvgd_1164120004_54,BranchTee_mvgd_33535_lvgd_1164120004_building_445508,0.00956841408946154,0.008305383429652617,0.0008146276100098468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02369734999351 47.55199949626529, 10.023688299999995 47.55208539624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_55_LVCableDist_mvgd_33535_lvgd_1164120004_building_445513,BranchTee_mvgd_33535_lvgd_1164120004_55,BranchTee_mvgd_33535_lvgd_1164120004_building_445513,0.019171965789628858,0.016641266305397848,0.0016322467364364246,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024108749993141 47.55225179629077, 10.023942899999994 47.552382696243804)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_56_LVCableDist_mvgd_33535_lvgd_1164120004_60,BranchTee_mvgd_33535_lvgd_1164120004_56,BranchTee_mvgd_33535_lvgd_1164120004_60,0.023332052618843573,0.007466256838029943,0.0019131249131238192,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022232 47.553459996243916, 10.022157899999996 47.55366389624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_56_LVCableDist_mvgd_33535_lvgd_1164120004_66,BranchTee_mvgd_33535_lvgd_1164120004_56,BranchTee_mvgd_33535_lvgd_1164120004_66,0.037503621059022885,0.012001158738887324,0.00307513072049329,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022333199999997 47.55312949624386, 10.022232 47.553459996243916)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_56_LVCableDist_mvgd_33535_lvgd_1164120004_building_445534,BranchTee_mvgd_33535_lvgd_1164120004_56,BranchTee_mvgd_33535_lvgd_1164120004_building_445534,0.02260422581329787,0.01962046800594255,0.0019244596103643308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022529886301655 47.55348476795522, 10.022232 47.553459996243916)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_57_LVCableDist_mvgd_33535_lvgd_1164120004_61,BranchTee_mvgd_33535_lvgd_1164120004_57,BranchTee_mvgd_33535_lvgd_1164120004_61,0.020492262787701096,0.006557524092064351,0.0016802747321840322,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023045000000003 47.55412719624392, 10.022803000000005 47.55421149624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_57_LVCableDist_mvgd_33535_lvgd_1164120004_65,BranchTee_mvgd_33535_lvgd_1164120004_57,BranchTee_mvgd_33535_lvgd_1164120004_65,0.025244936402301424,0.008078379648736455,0.0020699729059612854,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022946599999994 47.55390999624394, 10.023045000000003 47.55412719624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_58_LVCableDist_mvgd_33535_lvgd_1164120004_59,BranchTee_mvgd_33535_lvgd_1164120004_58,BranchTee_mvgd_33535_lvgd_1164120004_59,0.03132503942627966,0.010024012616409492,0.002568514408483783,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0234022 47.55341249624388, 10.023118400000007 47.5536185962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_58_LVCableDist_mvgd_33535_lvgd_1164120004_65,BranchTee_mvgd_33535_lvgd_1164120004_58,BranchTee_mvgd_33535_lvgd_1164120004_65,0.03486647522503299,0.011157272072010558,0.0028588964492542424,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023118400000007 47.5536185962439, 10.022946599999994 47.55390999624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_58_LVCableDist_mvgd_33535_lvgd_1164120004_building_445549,BranchTee_mvgd_33535_lvgd_1164120004_58,BranchTee_mvgd_33535_lvgd_1164120004_building_445549,0.011232509077180163,0.009749817878992382,0.0009563039327525715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023237724687553 47.55367923890434, 10.023118400000007 47.5536185962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_58_LVCableDist_mvgd_33535_lvgd_1164120004_building_445550,BranchTee_mvgd_33535_lvgd_1164120004_58,BranchTee_mvgd_33535_lvgd_1164120004_building_445550,0.016965676534860905,0.014726207232259265,0.0014444095331342035,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022928850003584 47.55370109633069, 10.023118400000007 47.5536185962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_59_LVCableDist_mvgd_33535_lvgd_1164120004_building_445544,BranchTee_mvgd_33535_lvgd_1164120004_59,BranchTee_mvgd_33535_lvgd_1164120004_building_445544,0.013663504257876892,0.011859921695837142,0.0011632719606285344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023228654183624 47.553376677222516, 10.0234022 47.55341249624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_5_LVCableDist_mvgd_33535_lvgd_1164120004_building_445533,BranchTee_mvgd_33535_lvgd_1164120004_5,BranchTee_mvgd_33535_lvgd_1164120004_building_445533,0.01522416149545434,0.013214572178054367,0.0012961418869930853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021190854960464 47.55385572671068, 10.021008300000007 47.55379689624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_60_LVCableDist_mvgd_33535_lvgd_1164120004_63,BranchTee_mvgd_33535_lvgd_1164120004_60,BranchTee_mvgd_33535_lvgd_1164120004_63,0.017381977033290866,0.005562232650653078,0.001425245084304246,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022112600000002 47.55381729624391, 10.022157899999996 47.55366389624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_60_LVCableDist_mvgd_33535_lvgd_1164120004_64,BranchTee_mvgd_33535_lvgd_1164120004_60,BranchTee_mvgd_33535_lvgd_1164120004_64,0.021500808730203543,0.006880258793665134,0.0017629710298545202,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021995099999994 47.55354259624388, 10.022011500000001 47.55363079624392, 10.022157899999996 47.55366389624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_61_LVCableDist_mvgd_33535_lvgd_1164120004_62,BranchTee_mvgd_33535_lvgd_1164120004_61,BranchTee_mvgd_33535_lvgd_1164120004_62,0.017621166607779605,0.005638773314489474,0.0014448575693860053,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.02257179999999 47.55423579624397, 10.022803000000005 47.55421149624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_61_LVCableDist_mvgd_33535_lvgd_1164120004_building_445667,BranchTee_mvgd_33535_lvgd_1164120004_61,BranchTee_mvgd_33535_lvgd_1164120004_building_445667,0.020146007609925173,0.01748673460541505,0.0017151738916262856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02300110937446 47.55433332534862, 10.022803000000005 47.55421149624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_62_LVCableDist_mvgd_33535_lvgd_1164120004_building_445548,BranchTee_mvgd_33535_lvgd_1164120004_62,BranchTee_mvgd_33535_lvgd_1164120004_building_445548,0.02535539855796675,0.02200848594831514,0.0021586866470246937,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022498225784561 47.55401310696151, 10.02257179999999 47.55423579624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_63_LVCableDist_mvgd_33535_lvgd_1164120004_65,BranchTee_mvgd_33535_lvgd_1164120004_63,BranchTee_mvgd_33535_lvgd_1164120004_65,0.0636531185066195,0.020368997922118243,0.005219273623388233,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022946599999994 47.55390999624394, 10.022112600000002 47.55381729624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_63_LVCableDist_mvgd_33535_lvgd_1164120004_building_445521,BranchTee_mvgd_33535_lvgd_1164120004_63,BranchTee_mvgd_33535_lvgd_1164120004_building_445521,0.02574419852043921,0.02234596431574123,0.0021917879719924012,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021800476081063 47.553911749625705, 10.022112600000002 47.55381729624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_63_LVStation_mvgd_33535_lvgd_1164120004,BusBar_mvgd_33535_lvgd_1164120004_LV,BranchTee_mvgd_33535_lvgd_1164120004_63,0.027990367741780996,0.008956917677369919,0.0022950861087571396,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021746599999998 47.55377359624393, 10.022112600000002 47.55381729624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_64_LVCableDist_mvgd_33535_lvgd_1164120004_building_445528,BranchTee_mvgd_33535_lvgd_1164120004_64,BranchTee_mvgd_33535_lvgd_1164120004_building_445528,0.020103277027553275,0.01744964445991624,0.0017115359311590135,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021783674691171 47.55343215812249, 10.021995099999994 47.55354259624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_66_LVCableDist_mvgd_33535_lvgd_1164120004_building_445526,BranchTee_mvgd_33535_lvgd_1164120004_66,BranchTee_mvgd_33535_lvgd_1164120004_building_445526,0.02956830558504429,0.025665289247818444,0.002517361590497484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021968658713384 47.5532282676065, 10.022333199999997 47.55312949624386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_67_LVCableDist_mvgd_33535_lvgd_1164120004_building_445551,BranchTee_mvgd_33535_lvgd_1164120004_67,BranchTee_mvgd_33535_lvgd_1164120004_building_445551,0.01810387045487684,0.015714159554833095,0.0015413121320519828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02319184065108 47.553877913368396, 10.023351199999999 47.553999896243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_67_LVCableDist_mvgd_33535_lvgd_1164120004_building_445556,BranchTee_mvgd_33535_lvgd_1164120004_67,BranchTee_mvgd_33535_lvgd_1164120004_building_445556,0.03667572969484502,0.03183453337512548,0.003122467500605431,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02362846266811 47.553728534357745, 10.023351199999999 47.553999896243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_67_LVCableDist_mvgd_33535_lvgd_1164120004_building_445558,BranchTee_mvgd_33535_lvgd_1164120004_67,BranchTee_mvgd_33535_lvgd_1164120004_building_445558,0.019420817726892428,0.016857269786942627,0.0016534332838625666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023552003817013 47.55410955011073, 10.023351199999999 47.553999896243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_67_LVCableDist_mvgd_33535_lvgd_1164120004_building_445574,BranchTee_mvgd_33535_lvgd_1164120004_67,BranchTee_mvgd_33535_lvgd_1164120004_building_445574,0.026948768498642396,0.0233915310568216,0.002294341640056792,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023704847842493 47.55403676661231, 10.023351199999999 47.553999896243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_67_LVStation_mvgd_33535_lvgd_1164120004,BusBar_mvgd_33535_lvgd_1164120004_LV,BranchTee_mvgd_33535_lvgd_1164120004_67,0.1439420308370905,0.04606144986786896,0.011802608614797636,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021746599999998 47.55377359624393, 10.022112600000002 47.55381729624391, 10.022946599999994 47.55390999624394, 10.023045000000003 47.55412719624392, 10.023351199999999 47.553999896243965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_6_LVCableDist_mvgd_33535_lvgd_1164120004_9,BranchTee_mvgd_33535_lvgd_1164120004_6,BranchTee_mvgd_33535_lvgd_1164120004_9,0.028734014644782892,0.012901572575507518,0.00243730537153717,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.020525200000005 47.554179096243956, 10.020906299999993 47.554191096243976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_6_LVCableDist_mvgd_33535_lvgd_1164120004_building_445622,BranchTee_mvgd_33535_lvgd_1164120004_6,BranchTee_mvgd_33535_lvgd_1164120004_building_445622,0.016247624955423517,0.014102938461307613,0.0013832766602723235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020822850920856 47.55432594613078, 10.020906299999993 47.554191096243976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_7_LVCableDist_mvgd_33535_lvgd_1164120004_8,BranchTee_mvgd_33535_lvgd_1164120004_7,BranchTee_mvgd_33535_lvgd_1164120004_8,0.02496400848748659,0.011208839810881478,0.00211752213304791,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.020208199999994 47.554684396244035, 10.0202216 47.554459896244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_7_LVCableDist_mvgd_33535_lvgd_1164120004_building_445592,BranchTee_mvgd_33535_lvgd_1164120004_7,BranchTee_mvgd_33535_lvgd_1164120004_building_445592,0.015420965845887707,0.01338539835423053,0.0013128972506441683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020087376466256 47.55435508665868, 10.0202216 47.554459896244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_7_LVCableDist_mvgd_33535_lvgd_1164120004_building_445608,BranchTee_mvgd_33535_lvgd_1164120004_7,BranchTee_mvgd_33535_lvgd_1164120004_building_445608,0.035892230265063434,0.03115445587007506,0.003055762583577434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019765429962757 47.55455337181453, 10.0202216 47.554459896244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_8_LVCableDist_mvgd_33535_lvgd_1164120004_building_445609,BranchTee_mvgd_33535_lvgd_1164120004_8,BranchTee_mvgd_33535_lvgd_1164120004_building_445609,0.03942021375882459,0.03421674554265974,0.0033561250819816573,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019766851676899 47.554875118386136, 10.020208199999994 47.554684396244035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_8_LVCableDist_mvgd_33535_lvgd_1164120004_building_445618,BranchTee_mvgd_33535_lvgd_1164120004_8,BranchTee_mvgd_33535_lvgd_1164120004_building_445618,0.031962486462144904,0.027743438249141775,0.0027211953530843105,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020148899992833 47.55496924628116, 10.020208199999994 47.554684396244035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_9_LVCableDist_mvgd_33535_lvgd_1164120004_building_34967288,BranchTee_mvgd_33535_lvgd_1164120004_9,BranchTee_mvgd_33535_lvgd_1164120004_building_34967288,0.011250535897136524,0.009765465158714503,0.000957838685023933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020651000000012 47.55423369624394, 10.020525200000005 47.554179096243956)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120004_9_LVStation_mvgd_33535_lvgd_1164120004,BusBar_mvgd_33535_lvgd_1164120004_LV,BranchTee_mvgd_33535_lvgd_1164120004_9,0.15725054614626116,0.07060549521967126,0.013338463334744076,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.020525200000005 47.554179096243956, 10.020569200000004 47.553996796243936, 10.020575399999998 47.553975496243915, 10.020627900000004 47.55385399624391, 10.020641500000002 47.55382649624394, 10.020821800000006 47.553493696243876, 10.021084400000001 47.553557096243885, 10.021196799999995 47.55362669624393, 10.021334099999995 47.553696996243914, 10.021746599999998 47.55377359624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_10_LVCableDist_mvgd_33535_lvgd_1164120005_11,BranchTee_mvgd_33535_lvgd_1164120005_10,BranchTee_mvgd_33535_lvgd_1164120005_11,0.048308099640353395,0.0048308099640353395,0.004234225949198601,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.016543599999999 47.55155789624372, 10.016460399999994 47.55169669624373, 10.016479099999996 47.551854496243756, 10.016573 47.551963996243735)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_10_LVCableDist_mvgd_33535_lvgd_1164120005_17,BranchTee_mvgd_33535_lvgd_1164120005_10,BranchTee_mvgd_33535_lvgd_1164120005_17,0.0983714303375192,0.009837143033751921,0.008622298664114026,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.016565099999998 47.550928896243676, 10.016824000000002 47.55101599624367, 10.016964700000006 47.55112579624368, 10.016975900000004 47.55120629624373, 10.016972300000006 47.5512229962437, 10.016905800000004 47.55130569624374, 10.016747500000001 47.5514103962437, 10.016543599999999 47.55155789624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_10_LVCableDist_mvgd_33535_lvgd_1164120005_2,BranchTee_mvgd_33535_lvgd_1164120005_2,BranchTee_mvgd_33535_lvgd_1164120005_10,0.046776243866470016,0.004677624386647002,0.0040999581242066084,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.016543599999999 47.55155789624372, 10.016429400000003 47.55152439624373, 10.016262300000005 47.551502296243726, 10.0160863 47.55151279624372, 10.015972500000005 47.551578696243745)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_11_LVCableDist_mvgd_33535_lvgd_1164120005_20,BranchTee_mvgd_33535_lvgd_1164120005_11,BranchTee_mvgd_33535_lvgd_1164120005_20,0.11674995603913339,0.01167499560391334,0.010233184437165291,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.016573 47.551963996243735, 10.016971199999995 47.55161529624372, 10.017281700000003 47.5515802962437, 10.017866400000004 47.55158729624378)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_11_LVCableDist_mvgd_33535_lvgd_1164120005_23,BranchTee_mvgd_33535_lvgd_1164120005_11,BranchTee_mvgd_33535_lvgd_1164120005_23,0.03278895286456934,0.0032788952864569345,0.0028739659829267023,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.016573 47.551963996243735, 10.016842800000004 47.55219559624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_12_LVCableDist_mvgd_33535_lvgd_1164120005_6,BranchTee_mvgd_33535_lvgd_1164120005_6,BranchTee_mvgd_33535_lvgd_1164120005_12,0.03117814056581373,0.0031178140565813733,0.0027327775841807945,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015103599999996 47.55151719624375, 10.015164099999994 47.55123959624371)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_12_LVCableDist_mvgd_33535_lvgd_1164120005_7,BranchTee_mvgd_33535_lvgd_1164120005_7,BranchTee_mvgd_33535_lvgd_1164120005_12,0.013061513465449483,0.0013061513465449483,0.0011448473374641853,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015164099999994 47.55123959624371, 10.015189399999995 47.55112329624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_12_LVCableDist_mvgd_33535_lvgd_1164120005_building_441644,BranchTee_mvgd_33535_lvgd_1164120005_12,BranchTee_mvgd_33535_lvgd_1164120005_building_441644,0.03703487425035597,0.03214627084930898,0.003153044048418737,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015639465753592 47.55132478744489, 10.015164099999994 47.55123959624371)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_13_LVCableDist_mvgd_33535_lvgd_1164120005_14,BranchTee_mvgd_33535_lvgd_1164120005_13,BranchTee_mvgd_33535_lvgd_1164120005_14,0.10528853155359429,0.01052885315535943,0.009228585594885208,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.017462000000002 47.55327309624392, 10.0173399 47.55315219624385, 10.017303200000004 47.55309179624385, 10.017335799999996 47.552990096243825, 10.017381599999995 47.552902496243846, 10.017486399999996 47.55270169624386, 10.0175151 47.55262059624383, 10.017540100000002 47.5525549962438, 10.017327899999994 47.552455996243815)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_13_LVCableDist_mvgd_33535_lvgd_1164120005_building_441662,BranchTee_mvgd_33535_lvgd_1164120005_13,BranchTee_mvgd_33535_lvgd_1164120005_building_441662,0.024401751011367705,0.02118071987786717,0.0020774958023962865,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017185875934484 47.55338798123624, 10.017462000000002 47.55327309624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_14_LVCableDist_mvgd_33535_lvgd_1164120005_25,BranchTee_mvgd_33535_lvgd_1164120005_14,BranchTee_mvgd_33535_lvgd_1164120005_25,0.01286354608312824,0.0012863546083128241,0.0011274954102809575,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.017188199999998 47.55238939624382, 10.017327899999994 47.552455996243815)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_14_LVCableDist_mvgd_33535_lvgd_1164120005_building_441654,BranchTee_mvgd_33535_lvgd_1164120005_14,BranchTee_mvgd_33535_lvgd_1164120005_building_441654,0.017183528614772965,0.014915302837622933,0.0014629568407167524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01725179999868 47.55260179625177, 10.017327899999994 47.552455996243815)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_15_LVCableDist_mvgd_33535_lvgd_1164120005_8,BranchTee_mvgd_33535_lvgd_1164120005_8,BranchTee_mvgd_33535_lvgd_1164120005_15,0.024586761006373182,0.0024586761006373183,0.0021550402983140007,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015207100000005 47.550831196243635, 10.014887899999994 47.5507848962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_15_LVCableDist_mvgd_33535_lvgd_1164120005_building_441605,BranchTee_mvgd_33535_lvgd_1164120005_15,BranchTee_mvgd_33535_lvgd_1164120005_building_441605,0.03403540218148215,0.029542729093526503,0.0028976775122391274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014655350022581 47.55104754631193, 10.014887899999994 47.5507848962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_16_LVCableDist_mvgd_33535_lvgd_1164120005_17,BranchTee_mvgd_33535_lvgd_1164120005_16,BranchTee_mvgd_33535_lvgd_1164120005_17,0.05435751756166052,0.0054357517561660525,0.004764460061710636,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015863799999996 47.55081729624368, 10.016229799999998 47.55086039624364, 10.016565099999998 47.550928896243676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_16_LVCableDist_mvgd_33535_lvgd_1164120005_8,BranchTee_mvgd_33535_lvgd_1164120005_8,BranchTee_mvgd_33535_lvgd_1164120005_16,0.049546915699689525,0.004954691569968953,0.00434280871572795,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015207100000005 47.550831196243635, 10.015497799999993 47.550814196243664, 10.015863799999996 47.55081729624368)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_16_LVCableDist_mvgd_33535_lvgd_1164120005_building_441641,BranchTee_mvgd_33535_lvgd_1164120005_16,BranchTee_mvgd_33535_lvgd_1164120005_building_441641,0.036719157165517824,0.03187222841966947,0.003126164792164115,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015934900030912 47.55114424628244, 10.015863799999996 47.55081729624368)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_17_LVCableDist_mvgd_33535_lvgd_1164120005_building_441621,BranchTee_mvgd_33535_lvgd_1164120005_17,BranchTee_mvgd_33535_lvgd_1164120005_building_441621,0.02908089908002123,0.025242220401458428,0.002475865184449642,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016518466754023 47.55118871760275, 10.016565099999998 47.550928896243676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_18_LVCableDist_mvgd_33535_lvgd_1164120005_19,BranchTee_mvgd_33535_lvgd_1164120005_18,BranchTee_mvgd_33535_lvgd_1164120005_19,0.0116383538121933,0.00116383538121933,0.0010201067747318,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.013300200000005 47.555076396244026, 10.013357800000003 47.55497919624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_18_LVCableDist_mvgd_33535_lvgd_1164120005_4,BranchTee_mvgd_33535_lvgd_1164120005_4,BranchTee_mvgd_33535_lvgd_1164120005_18,0.5089565609468953,0.05089565609468954,0.044610263980991875,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.013357800000003 47.55497919624397, 10.013374799999996 47.554871696244064, 10.013370200000006 47.554753596244, 10.013352199999996 47.55466749624403, 10.013269999999995 47.554535796244, 10.013142500000006 47.55445009624399, 10.013082199999992 47.554389296243976, 10.0130518 47.55433799624394, 10.013020699999998 47.554154996243916, 10.012930099999993 47.55396869624395, 10.012925599999999 47.55391159624396, 10.012982300000004 47.553870396243944, 10.013107099999994 47.553845696243926, 10.013689700000004 47.55378219624388, 10.013935499999999 47.55375349624393, 10.014039800000006 47.55367829624394, 10.014091599999995 47.553614196243885, 10.014121599999998 47.55352229624391, 10.0141537 47.5534326962439, 10.014171499999996 47.5531270962439, 10.014228999999998 47.55298209624384, 10.014244600000003 47.552844196243804, 10.014313599999998 47.55257959624384, 10.014447600000002 47.552491296243765, 10.014542599999995 47.55240809624379, 10.014575199999994 47.5522783962438, 10.0145636 47.552050996243764, 10.014501099999999 47.55196449624377, 10.0143048 47.551878796243784, 10.014208500000006 47.5518137962437, 10.014185499999995 47.55175669624375, 10.014266300000003 47.55170469624373, 10.014519900000005 47.55169899624372, 10.014708800000003 47.55172579624375, 10.014889000000002 47.55173109624373)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_18_LVCableDist_mvgd_33535_lvgd_1164120005_building_441709,BranchTee_mvgd_33535_lvgd_1164120005_18,BranchTee_mvgd_33535_lvgd_1164120005_building_441709,0.01669217013227634,0.014488803674815861,0.0014211239745268217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01357844226794 47.55496502133664, 10.013357800000003 47.55497919624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_19_LVCableDist_mvgd_33535_lvgd_1164120005_building_441720,BranchTee_mvgd_33535_lvgd_1164120005_19,BranchTee_mvgd_33535_lvgd_1164120005_building_441720,0.015119168534705732,0.013123438288124576,0.001287203084399174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013403171432884 47.55519320740453, 10.013300200000005 47.555076396244026)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_19_LVCableDist_mvgd_33535_lvgd_1164120005_building_441729,BranchTee_mvgd_33535_lvgd_1164120005_19,BranchTee_mvgd_33535_lvgd_1164120005_building_441729,0.024239897212199928,0.021040230780189538,0.002063716029452275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013545858278052 47.55521734659006, 10.013300200000005 47.555076396244026)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_1_LVCableDist_mvgd_33535_lvgd_1164120005_13,BranchTee_mvgd_33535_lvgd_1164120005_1,BranchTee_mvgd_33535_lvgd_1164120005_13,0.053499848094978174,0.005349984809497818,0.004689284959839558,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.017878399999995 47.553541596243896, 10.017860799999994 47.553482196243905, 10.017896499999997 47.5533760962439, 10.017542900000008 47.55328949624384, 10.017462000000002 47.55327309624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_1_LVCableDist_mvgd_33535_lvgd_1164120005_3,BranchTee_mvgd_33535_lvgd_1164120005_1,BranchTee_mvgd_33535_lvgd_1164120005_3,0.013158201060536692,0.0013158201060536692,0.001153322047236082,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.017815099999998 47.55365039624394, 10.017860800000003 47.553597196243935, 10.017878399999995 47.553541596243896)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_1_LVCableDist_mvgd_33535_lvgd_1164120005_building_441664,BranchTee_mvgd_33535_lvgd_1164120005_1,BranchTee_mvgd_33535_lvgd_1164120005_building_441664,0.01192111699164647,0.010347529548749136,0.0010149300555719614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018036675175498 47.55354088295634, 10.017878399999995 47.553541596243896)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_20_LVCableDist_mvgd_33535_lvgd_1164120005_building_441639,BranchTee_mvgd_33535_lvgd_1164120005_20,BranchTee_mvgd_33535_lvgd_1164120005_building_441639,0.02528290853378947,0.02194556460732926,0.0021525150521717776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01770098259298 47.55138929177925, 10.017866400000004 47.55158729624378)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_21_LVCableDist_mvgd_33535_lvgd_1164120005_24,BranchTee_mvgd_33535_lvgd_1164120005_21,BranchTee_mvgd_33535_lvgd_1164120005_24,0.02233697830788169,0.002233697830788169,0.001957845866056656,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015959400000002 47.55179219624376, 10.016112199999997 47.55196449624378)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_21_LVCableDist_mvgd_33535_lvgd_1164120005_building_441635,BranchTee_mvgd_33535_lvgd_1164120005_21,BranchTee_mvgd_33535_lvgd_1164120005_building_441635,0.01714318335907119,0.014880283155673791,0.0014595219601900228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015893441494558 47.552007098392195, 10.016112199999997 47.55196449624378)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_21_LVCableDist_mvgd_33535_lvgd_1164120005_building_441637,BranchTee_mvgd_33535_lvgd_1164120005_21,BranchTee_mvgd_33535_lvgd_1164120005_building_441637,0.01421642217261677,0.012339854445831355,0.0012103458221070275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016255107436523 47.551880909564005, 10.016112199999997 47.55196449624378)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_21_LVCableDist_mvgd_33535_lvgd_1164120005_building_441640,BranchTee_mvgd_33535_lvgd_1164120005_21,BranchTee_mvgd_33535_lvgd_1164120005_building_441640,0.0524872198624397,0.04555890684059766,0.004468612883266926,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016180219058828 47.55243464160637, 10.016112199999997 47.55196449624378)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_22_LVCableDist_mvgd_33535_lvgd_1164120005_23,BranchTee_mvgd_33535_lvgd_1164120005_22,BranchTee_mvgd_33535_lvgd_1164120005_23,0.04247786085008391,0.004247786085008392,0.003723202982872644,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.016842800000004 47.55219559624381, 10.0169104 47.55210989624374, 10.016880899999997 47.55204289624376, 10.017091399999996 47.551881796243755)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_22_LVCableDist_mvgd_33535_lvgd_1164120005_building_441643,BranchTee_mvgd_33535_lvgd_1164120005_22,BranchTee_mvgd_33535_lvgd_1164120005_building_441643,0.015840648857619013,0.013749683208413303,0.0013486278707460881,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017100049985027 47.552024246371836, 10.017091399999996 47.551881796243755)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_23_LVCableDist_mvgd_33535_lvgd_1164120005_25,BranchTee_mvgd_33535_lvgd_1164120005_23,BranchTee_mvgd_33535_lvgd_1164120005_25,0.03381264792414668,0.003381264792414668,0.0029636933002419948,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.016842800000004 47.55219559624381, 10.016969000000005 47.552275996243814, 10.017188199999998 47.55238939624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_24_LVCableDist_mvgd_33535_lvgd_1164120005_9,BranchTee_mvgd_33535_lvgd_1164120005_9,BranchTee_mvgd_33535_lvgd_1164120005_24,0.01395762304616273,0.0013957623046162732,0.001223391732052872,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015935800000006 47.55166759624374, 10.015959400000002 47.55179219624376)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_24_LVCableDist_mvgd_33535_lvgd_1164120005_building_441636,BranchTee_mvgd_33535_lvgd_1164120005_24,BranchTee_mvgd_33535_lvgd_1164120005_building_441636,0.01957299896582769,0.016989363102338433,0.0016663895624896288,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016188858642474 47.55170950630483, 10.015959400000002 47.55179219624376)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_25_LVCableDist_mvgd_33535_lvgd_1164120005_26,BranchTee_mvgd_33535_lvgd_1164120005_25,BranchTee_mvgd_33535_lvgd_1164120005_26,0.016220991711823275,0.0016220991711823275,0.0014217769802429576,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.017188199999998 47.55238939624382, 10.0171705 47.5522438962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_25_LVCableDist_mvgd_33535_lvgd_1164120005_building_441650,BranchTee_mvgd_33535_lvgd_1164120005_25,BranchTee_mvgd_33535_lvgd_1164120005_building_441650,0.011844356092313288,0.010280901088127934,0.0010083948505336606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017145250001445 47.552491946251195, 10.017188199999998 47.55238939624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_26_LVCableDist_mvgd_33535_lvgd_1164120005_building_441645,BranchTee_mvgd_33535_lvgd_1164120005_26,BranchTee_mvgd_33535_lvgd_1164120005_building_441645,0.020710088597917356,0.017976356902992263,0.0017631981454685358,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017431479127715 47.552185206128364, 10.0171705 47.5522438962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_27_LVCableDist_mvgd_33535_lvgd_1164120005_28,BranchTee_mvgd_33535_lvgd_1164120005_27,BranchTee_mvgd_33535_lvgd_1164120005_28,0.037699378839335246,0.009537942846351817,0.003031963945127785,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016667749202247 47.55444779732085, 10.016183199999999 47.55436269624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_27_LVCableDist_mvgd_33535_lvgd_1164120005_building_441653,BranchTee_mvgd_33535_lvgd_1164120005_27,BranchTee_mvgd_33535_lvgd_1164120005_building_441653,0.032371851093568375,0.02809876674921735,0.0027560474955816085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016395850022526 47.55410949639006, 10.016183199999999 47.55436269624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_27_LVCableDist_mvgd_33535_lvgd_1164120005_building_441691,BranchTee_mvgd_33535_lvgd_1164120005_27,BranchTee_mvgd_33535_lvgd_1164120005_building_441691,0.02390216518636412,0.020747079381764056,0.0020349624836234607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015871084299667 47.554401638230274, 10.016183199999999 47.55436269624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_27_LVCableDist_mvgd_33535_lvgd_1164120005_building_441695,BranchTee_mvgd_33535_lvgd_1164120005_27,BranchTee_mvgd_33535_lvgd_1164120005_building_441695,0.02167678249350248,0.018815447204360153,0.0018454997192098885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016339315157275 47.55452659826779, 10.016183199999999 47.55436269624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_28_LVCableDist_mvgd_33535_lvgd_1164120005_31,BranchTee_mvgd_33535_lvgd_1164120005_28,BranchTee_mvgd_33535_lvgd_1164120005_31,0.03769937883921835,0.009537942846322244,0.003031963945118384,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0171523 47.55453289624399, 10.016667749202247 47.55444779732085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_28_LVCableDist_mvgd_33535_lvgd_1164120005_building_441670,BranchTee_mvgd_33535_lvgd_1164120005_28,BranchTee_mvgd_33535_lvgd_1164120005_building_441670,0.022321663319426182,0.019375203761261926,0.0019004030418558009,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016863409934112 47.55429689828939, 10.016667749202247 47.55444779732085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_28_LVCableDist_mvgd_33535_lvgd_1164120005_building_441745,BranchTee_mvgd_33535_lvgd_1164120005_28,BranchTee_mvgd_33535_lvgd_1164120005_building_441745,0.02602924879636904,0.022593387955248328,0.0022160563432023304,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016791889631083 47.55466643265204, 10.016667749202247 47.55444779732085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_29_LVCableDist_mvgd_33535_lvgd_1164120005_30,BranchTee_mvgd_33535_lvgd_1164120005_29,BranchTee_mvgd_33535_lvgd_1164120005_30,0.06862573600688011,0.017362311209740668,0.005519209167012022,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0175105 47.55382809624396, 10.016890799999997 47.553703496243934, 10.016626099999998 47.55370769624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_29_LVCableDist_mvgd_33535_lvgd_1164120005_32,BranchTee_mvgd_33535_lvgd_1164120005_29,BranchTee_mvgd_33535_lvgd_1164120005_32,0.041412608987896025,0.010477390073937694,0.003330599632956436,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0175105 47.55382809624396, 10.01733140122069 47.554180496421544)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_29_LVCableDist_mvgd_33535_lvgd_1164120005_building_441677,BranchTee_mvgd_33535_lvgd_1164120005_29,BranchTee_mvgd_33535_lvgd_1164120005_building_441677,0.01639511779143985,0.014230962242969788,0.0013958337815856549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017621245751656 47.5539551331742, 10.0175105 47.55382809624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_29_LVStation_mvgd_33535_lvgd_1164120005,BusBar_mvgd_33535_lvgd_1164120005_LV,BranchTee_mvgd_33535_lvgd_1164120005_29,0.07830018241144185,0.01980994615009479,0.006297274312666277,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018368799999994 47.55378859624388, 10.017815099999998 47.55365039624394, 10.017732499999992 47.553644196243866, 10.017657300000003 47.55366859624389, 10.017588100000001 47.5537097962439, 10.0175105 47.55382809624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_2_LVCableDist_mvgd_33535_lvgd_1164120005_9,BranchTee_mvgd_33535_lvgd_1164120005_2,BranchTee_mvgd_33535_lvgd_1164120005_9,0.010256918493855856,0.0010256918493855855,0.000899023368106595,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015972500000005 47.551578696243745, 10.015935800000006 47.55166759624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_2_LVCableDist_mvgd_33535_lvgd_1164120005_building_441613,BranchTee_mvgd_33535_lvgd_1164120005_2,BranchTee_mvgd_33535_lvgd_1164120005_building_441613,0.028960916948211273,0.025138075911047386,0.0024656502463871388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015607563250233 47.55149660535948, 10.015972500000005 47.551578696243745)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_2_LVCableDist_mvgd_33535_lvgd_1164120005_building_441652,BranchTee_mvgd_33535_lvgd_1164120005_2,BranchTee_mvgd_33535_lvgd_1164120005_building_441652,0.032453289678973075,0.02816945544134863,0.0027629809455316768,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015604705570382 47.5514265432186, 10.015972500000005 47.551578696243745)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_30_LVCableDist_mvgd_33535_lvgd_1164120005_building_441647,BranchTee_mvgd_33535_lvgd_1164120005_30,BranchTee_mvgd_33535_lvgd_1164120005_building_441647,0.02735946305712794,0.02374801393358705,0.0023293070087683746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01627024023713 47.55375714026005, 10.016626099999998 47.55370769624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_30_LVCableDist_mvgd_33535_lvgd_1164120005_building_441651,BranchTee_mvgd_33535_lvgd_1164120005_30,BranchTee_mvgd_33535_lvgd_1164120005_building_441651,0.01843957779780263,0.016005553528492686,0.001569893302126091,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01672919702122 47.55385822533983, 10.016626099999998 47.55370769624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_31_LVCableDist_mvgd_33535_lvgd_1164120005_32,BranchTee_mvgd_33535_lvgd_1164120005_31,BranchTee_mvgd_33535_lvgd_1164120005_32,0.04141260898819959,0.010477390074014496,0.00333059963298085,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.01733140122069 47.554180496421544, 10.0171523 47.55453289624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_31_LVCableDist_mvgd_33535_lvgd_1164120005_building_441739,BranchTee_mvgd_33535_lvgd_1164120005_31,BranchTee_mvgd_33535_lvgd_1164120005_building_441739,0.02186597296159881,0.018979664530667767,0.0018616068585352759,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017397099999279 47.55463869629671, 10.0171523 47.55453289624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_31_LVCableDist_mvgd_33535_lvgd_1164120005_building_441746,BranchTee_mvgd_33535_lvgd_1164120005_31,BranchTee_mvgd_33535_lvgd_1164120005_building_441746,0.0350345641053965,0.030410001643484164,0.0029827433217328504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017291875821668 47.55483368797807, 10.0171523 47.55453289624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_31_LVCableDist_mvgd_33535_lvgd_1164120005_building_441748,BranchTee_mvgd_33535_lvgd_1164120005_31,BranchTee_mvgd_33535_lvgd_1164120005_building_441748,0.026375790703260547,0.022894186330430156,0.002245559937292202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017478775689362 47.554447002914316, 10.0171523 47.55453289624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_32_LVCableDist_mvgd_33535_lvgd_1164120005_building_441665,BranchTee_mvgd_33535_lvgd_1164120005_32,BranchTee_mvgd_33535_lvgd_1164120005_building_441665,0.023421244917008345,0.020329640587963244,0.0019940182972653393,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017115325790956 47.55402889892218, 10.01733140122069 47.554180496421544)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_32_LVCableDist_mvgd_33535_lvgd_1164120005_building_441672,BranchTee_mvgd_33535_lvgd_1164120005_32,BranchTee_mvgd_33535_lvgd_1164120005_building_441672,0.016463412955061027,0.014290242444992971,0.0014016482379204018,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01712215000244 47.55422334625482, 10.01733140122069 47.554180496421544)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_32_LVCableDist_mvgd_33535_lvgd_1164120005_building_441676,BranchTee_mvgd_33535_lvgd_1164120005_32,BranchTee_mvgd_33535_lvgd_1164120005_building_441676,0.011466118746300758,0.009952591071789058,0.0009761927967431569,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017425799293457 47.554261460641136, 10.01733140122069 47.554180496421544)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_33_LVCableDist_mvgd_33535_lvgd_1164120005_39,BranchTee_mvgd_33535_lvgd_1164120005_33,BranchTee_mvgd_33535_lvgd_1164120005_39,0.046773177786618,0.011833613980014354,0.003761722156018903,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019478198173188 47.55319564774409, 10.0189071 47.55303029624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_33_LVCableDist_mvgd_33535_lvgd_1164120005_building_441660,BranchTee_mvgd_33535_lvgd_1164120005_33,BranchTee_mvgd_33535_lvgd_1164120005_building_441660,0.017125850802978303,0.014865238496985168,0.0014580463155729217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019429100001673 47.55304514632612, 10.019478198173188 47.55319564774409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_33_LVCableDist_mvgd_33535_lvgd_1164120005_building_441663,BranchTee_mvgd_33535_lvgd_1164120005_33,BranchTee_mvgd_33535_lvgd_1164120005_building_441663,0.013660393792751848,0.011857221812108604,0.0011630071444586716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019372990827799 47.55329579748566, 10.019478198173188 47.55319564774409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_33_LVCableDist_mvgd_33535_lvgd_1164120005_building_445477,BranchTee_mvgd_33535_lvgd_1164120005_33,BranchTee_mvgd_33535_lvgd_1164120005_building_445477,0.020229912146702528,0.017559563743337794,0.0017223172856751696,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019717600006544 47.5531130963447, 10.019478198173188 47.55319564774409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_34_LVCableDist_mvgd_33535_lvgd_1164120005_39,BranchTee_mvgd_33535_lvgd_1164120005_34,BranchTee_mvgd_33535_lvgd_1164120005_39,0.04674994735935405,0.011827736681916574,0.0037598538542043193,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0189071 47.55303029624385, 10.018637951973709 47.55340944661108)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_34_LVCableDist_mvgd_33535_lvgd_1164120005_building_441671,BranchTee_mvgd_33535_lvgd_1164120005_34,BranchTee_mvgd_33535_lvgd_1164120005_building_441671,0.028625043949923087,0.02484653814853324,0.0024370549728857864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019012198493302 47.553454329153055, 10.018637951973709 47.55340944661108)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_34_LVCableDist_mvgd_33535_lvgd_1164120005_building_441689,BranchTee_mvgd_33535_lvgd_1164120005_34,BranchTee_mvgd_33535_lvgd_1164120005_building_441689,0.01633587304437498,0.014179537802517482,0.0013907898520215856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01848759446724 47.553303482302226, 10.018637951973709 47.55340944661108)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_34_LVCableDist_mvgd_33535_lvgd_1164120005_building_441696,BranchTee_mvgd_33535_lvgd_1164120005_34,BranchTee_mvgd_33535_lvgd_1164120005_building_441696,0.016335675988196147,0.014179366757754256,0.0013907730752179797,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018421450010656 47.55340064628422, 10.018637951973709 47.55340944661108)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_34_LVCableDist_mvgd_33535_lvgd_1164120005_building_441698,BranchTee_mvgd_33535_lvgd_1164120005_34,BranchTee_mvgd_33535_lvgd_1164120005_building_441698,0.022483378671023048,0.019515572686448004,0.0019141710277666899,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018714555283216 47.553605027370516, 10.018637951973709 47.55340944661108)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_34_LVStation_mvgd_33535_lvgd_1164120005,BusBar_mvgd_33535_lvgd_1164120005_LV,BranchTee_mvgd_33535_lvgd_1164120005_34,0.04674994735935405,0.011827736681916574,0.0037598538542043193,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018637951973709 47.55340944661108, 10.018368799999994 47.55378859624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_35_LVCableDist_mvgd_33535_lvgd_1164120005_40,BranchTee_mvgd_33535_lvgd_1164120005_35,BranchTee_mvgd_33535_lvgd_1164120005_40,0.03896593061875705,0.009858380446545533,0.003133826083127724,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019240499999993 47.55255419624381, 10.019716300000008 47.55269189624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_35_LVCableDist_mvgd_33535_lvgd_1164120005_43,BranchTee_mvgd_33535_lvgd_1164120005_35,BranchTee_mvgd_33535_lvgd_1164120005_43,0.05472675289668499,0.013845868482861302,0.004401386620289267,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019240499999993 47.55255419624381, 10.018929000000004 47.552999196243825)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_35_LVCableDist_mvgd_33535_lvgd_1164120005_building_441666,BranchTee_mvgd_33535_lvgd_1164120005_35,BranchTee_mvgd_33535_lvgd_1164120005_building_441666,0.016694917880571317,0.014491188720335904,0.0014213579100155577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019155600014926 47.55241539629727, 10.019240499999993 47.55255419624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_35_LVCableDist_mvgd_33535_lvgd_1164120005_building_441667,BranchTee_mvgd_33535_lvgd_1164120005_35,BranchTee_mvgd_33535_lvgd_1164120005_building_441667,0.022852513898097428,0.019835982063548568,0.0019455981529925136,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018937159578778 47.55255862989664, 10.019240499999993 47.55255419624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_35_LVCableDist_mvgd_33535_lvgd_1164120005_building_441674,BranchTee_mvgd_33535_lvgd_1164120005_35,BranchTee_mvgd_33535_lvgd_1164120005_building_441674,0.018537453124798393,0.016090509312325006,0.0015782261295898717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019340500008843 47.55270664628004, 10.019240499999993 47.55255419624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_36_LVCableDist_mvgd_33535_lvgd_1164120005_37,BranchTee_mvgd_33535_lvgd_1164120005_36,BranchTee_mvgd_33535_lvgd_1164120005_37,0.031279610161708334,0.007913741370912209,0.002515655513374094,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018063299999996 47.55251419624387, 10.018322800000005 47.552294396243774)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_36_LVCableDist_mvgd_33535_lvgd_1164120005_38,BranchTee_mvgd_33535_lvgd_1164120005_36,BranchTee_mvgd_33535_lvgd_1164120005_38,0.055764572269853964,0.014108436784273053,0.004484853006682888,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018063299999996 47.55251419624387, 10.017913999999996 47.552688396243845, 10.018308500000007 47.552825296243846)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_36_LVCableDist_mvgd_33535_lvgd_1164120005_building_441656,BranchTee_mvgd_33535_lvgd_1164120005_36,BranchTee_mvgd_33535_lvgd_1164120005_building_441656,0.021392112877022203,0.018568353977255272,0.0018212637562647692,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01784978116644 47.552387234831976, 10.018063299999996 47.55251419624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_36_LVCableDist_mvgd_33535_lvgd_1164120005_building_441657,BranchTee_mvgd_33535_lvgd_1164120005_36,BranchTee_mvgd_33535_lvgd_1164120005_building_441657,0.013177406286053175,0.011437988656294156,0.0011218869593822441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018148200005365 47.55261789631416, 10.018063299999996 47.55251419624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_37_LVCableDist_mvgd_33535_lvgd_1164120005_building_441658,BranchTee_mvgd_33535_lvgd_1164120005_37,BranchTee_mvgd_33535_lvgd_1164120005_building_441658,0.010950188471501712,0.009504763593263486,0.000932267957918072,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018452489581707 47.55233893661437, 10.018322800000005 47.552294396243774)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_38_LVCableDist_mvgd_33535_lvgd_1164120005_39,BranchTee_mvgd_33535_lvgd_1164120005_38,BranchTee_mvgd_33535_lvgd_1164120005_39,0.05051242140796209,0.012779642616214408,0.004062449971463308,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0189071 47.55303029624385, 10.018308500000007 47.552825296243846)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_38_LVCableDist_mvgd_33535_lvgd_1164120005_building_441686,BranchTee_mvgd_33535_lvgd_1164120005_38,BranchTee_mvgd_33535_lvgd_1164120005_building_441686,0.02064192466698442,0.017917190610942477,0.0017573948619122848,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018474427225726 47.552973159720665, 10.018308500000007 47.552825296243846)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_39_LVCableDist_mvgd_33535_lvgd_1164120005_43,BranchTee_mvgd_33535_lvgd_1164120005_39,BranchTee_mvgd_33535_lvgd_1164120005_43,0.003828928602793982,0.0009687189365068774,0.00030794070962322957,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0189071 47.55303029624385, 10.018929000000004 47.552999196243825)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_39_LVCableDist_mvgd_33535_lvgd_1164120005_building_441655,BranchTee_mvgd_33535_lvgd_1164120005_39,BranchTee_mvgd_33535_lvgd_1164120005_building_441655,0.023581548578823084,0.02046878416641844,0.002007666095916089,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01910249964521 47.553196129854676, 10.0189071 47.55303029624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_39_LVCableDist_mvgd_33535_lvgd_1164120005_building_441687,BranchTee_mvgd_33535_lvgd_1164120005_39,BranchTee_mvgd_33535_lvgd_1164120005_building_441687,0.01987538994191071,0.017251838469578496,0.0016921342716788312,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01865491189355 47.55308296876386, 10.0189071 47.55303029624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_39_LVCableDist_mvgd_33535_lvgd_1164120005_building_441701,BranchTee_mvgd_33535_lvgd_1164120005_39,BranchTee_mvgd_33535_lvgd_1164120005_building_441701,0.016799535515559873,0.01458199682750597,0.001430264758439841,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018960556189322 47.553177090433316, 10.0189071 47.55303029624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_3_LVCableDist_mvgd_33535_lvgd_1164120005_building_441697,BranchTee_mvgd_33535_lvgd_1164120005_3,BranchTee_mvgd_33535_lvgd_1164120005_building_441697,0.03274089027680583,0.02841909276026746,0.002787466443907833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018239000009878 47.55358509628598, 10.017815099999998 47.55365039624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_3_LVStation_mvgd_33535_lvgd_1164120005,BusBar_mvgd_33535_lvgd_1164120005_LV,BranchTee_mvgd_33535_lvgd_1164120005_3,0.04444017153213593,0.0044440171532135935,0.0038952003678286357,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.018368799999994 47.55378859624388, 10.017815099999998 47.55365039624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_40_LVCableDist_mvgd_33535_lvgd_1164120005_building_445470,BranchTee_mvgd_33535_lvgd_1164120005_40,BranchTee_mvgd_33535_lvgd_1164120005_building_445470,0.022352876696928838,0.019402296972934233,0.0019030604601988604,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019543380628205 47.552528392144964, 10.019716300000008 47.55269189624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_40_LVCableDist_mvgd_33535_lvgd_1164120005_building_445471,BranchTee_mvgd_33535_lvgd_1164120005_40,BranchTee_mvgd_33535_lvgd_1164120005_building_445471,0.00948974321790203,0.008237097113138962,0.0008079297953587752,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019644785209564 47.55276221554282, 10.019716300000008 47.55269189624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_40_LVCableDist_mvgd_33535_lvgd_1164120005_building_445472,BranchTee_mvgd_33535_lvgd_1164120005_40,BranchTee_mvgd_33535_lvgd_1164120005_building_445472,0.013338090195850956,0.01157746228999863,0.0011355671312667124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019859631085087 47.55262139252277, 10.019716300000008 47.55269189624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_40_LVCableDist_mvgd_33535_lvgd_1164120005_building_445478,BranchTee_mvgd_33535_lvgd_1164120005_40,BranchTee_mvgd_33535_lvgd_1164120005_building_445478,0.02452508706115296,0.021287775569080767,0.002087996283513139,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019561650002483 47.552886146252554, 10.019716300000008 47.55269189624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_41_LVCableDist_mvgd_33535_lvgd_1164120005_42,BranchTee_mvgd_33535_lvgd_1164120005_41,BranchTee_mvgd_33535_lvgd_1164120005_42,0.012743754297828775,0.00322416983735068,0.0010249135329590332,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018576400000002 47.5527515962438, 10.018638099999999 47.55264479624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_41_LVCableDist_mvgd_33535_lvgd_1164120005_building_441659,BranchTee_mvgd_33535_lvgd_1164120005_41,BranchTee_mvgd_33535_lvgd_1164120005_building_441659,0.018273236312263588,0.015861169119044796,0.0015557314603053653,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018550299138868 47.55249147967279, 10.018638099999999 47.55264479624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_41_LVCableDist_mvgd_33535_lvgd_1164120005_building_441669,BranchTee_mvgd_33535_lvgd_1164120005_41,BranchTee_mvgd_33535_lvgd_1164120005_building_441669,0.020734342239914924,0.017997409064246152,0.0017652630316899915,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01886583806825 47.55274963666766, 10.018638099999999 47.55264479624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_42_LVCableDist_mvgd_33535_lvgd_1164120005_43,BranchTee_mvgd_33535_lvgd_1164120005_42,BranchTee_mvgd_33535_lvgd_1164120005_43,0.038237488650926806,0.009674084628684482,0.0030752413039993533,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018929000000004 47.552999196243825, 10.018576400000002 47.5527515962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_42_LVCableDist_mvgd_33535_lvgd_1164120005_building_441661,BranchTee_mvgd_33535_lvgd_1164120005_42,BranchTee_mvgd_33535_lvgd_1164120005_building_441661,0.014803300746148182,0.012849265047656622,0.0012603109976577428,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018393400010918 47.55270299631221, 10.018576400000002 47.5527515962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_43_LVCableDist_mvgd_33535_lvgd_1164120005_building_441699,BranchTee_mvgd_33535_lvgd_1164120005_43,BranchTee_mvgd_33535_lvgd_1164120005_building_441699,0.017144641923394013,0.014881549189506004,0.0014596461382154762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019156018415394 47.55301049808214, 10.018929000000004 47.552999196243825)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_44_LVCableDist_mvgd_33535_lvgd_1164120005_45,BranchTee_mvgd_33535_lvgd_1164120005_44,BranchTee_mvgd_33535_lvgd_1164120005_45,0.03030140152084222,0.0076662545847730815,0.002436983306530624,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018703499999997 47.55410759624395, 10.018303200000005 47.55408029624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_44_LVCableDist_mvgd_33535_lvgd_1164120005_46,BranchTee_mvgd_33535_lvgd_1164120005_44,BranchTee_mvgd_33535_lvgd_1164120005_46,0.039261766174762784,0.009933226842214985,0.003157618590248832,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019223799999997 47.55412769624398, 10.018912800000004 47.55411979624392, 10.018703499999997 47.55410759624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_44_LVCableDist_mvgd_33535_lvgd_1164120005_building_441684,BranchTee_mvgd_33535_lvgd_1164120005_44,BranchTee_mvgd_33535_lvgd_1164120005_building_441684,0.014196762211337477,0.01232278959944093,0.0012086720288200631,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018772150000652 47.553988596289535, 10.018703499999997 47.55410759624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_45_LVCableDist_mvgd_33535_lvgd_1164120005_building_441678,BranchTee_mvgd_33535_lvgd_1164120005_45,BranchTee_mvgd_33535_lvgd_1164120005_building_441678,0.038198746763902704,0.03315651219106755,0.0032521328498859494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018577800007925 47.55379124626655, 10.018303200000005 47.55408029624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_45_LVCableDist_mvgd_33535_lvgd_1164120005_building_441680,BranchTee_mvgd_33535_lvgd_1164120005_45,BranchTee_mvgd_33535_lvgd_1164120005_building_441680,0.016985314369960272,0.014743252873125516,0.0014460814426610273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01847355824983 47.55398012417744, 10.018303200000005 47.55408029624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_45_LVStation_mvgd_33535_lvgd_1164120005,BusBar_mvgd_33535_lvgd_1164120005_LV,BranchTee_mvgd_33535_lvgd_1164120005_45,0.03840414610388569,0.00971624896428308,0.0030886446916443227,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018368799999994 47.55378859624388, 10.018220500000002 47.554000996243936, 10.018227300000001 47.554053396243965, 10.018303200000005 47.55408029624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_46_LVCableDist_mvgd_33535_lvgd_1164120005_48,BranchTee_mvgd_33535_lvgd_1164120005_46,BranchTee_mvgd_33535_lvgd_1164120005_48,0.004383341070648041,0.0011089852908739543,0.0003525292059065934,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0192819 47.55412999624396, 10.019223799999997 47.55412769624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_46_LVCableDist_mvgd_33535_lvgd_1164120005_49,BranchTee_mvgd_33535_lvgd_1164120005_46,BranchTee_mvgd_33535_lvgd_1164120005_49,0.03350643801469022,0.008477128817716626,0.0026947476355817616,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019223799999997 47.55412769624398, 10.019194200000003 47.55442859624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_46_LVCableDist_mvgd_33535_lvgd_1164120005_building_441688,BranchTee_mvgd_33535_lvgd_1164120005_46,BranchTee_mvgd_33535_lvgd_1164120005_building_441688,0.02623416998912169,0.022771259550557626,0.0022335027517640495,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0191226212779 47.553901762119935, 10.019223799999997 47.55412769624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_47_LVCableDist_mvgd_33535_lvgd_1164120005_48,BranchTee_mvgd_33535_lvgd_1164120005_47,BranchTee_mvgd_33535_lvgd_1164120005_48,0.026761339685474953,0.006770618940425163,0.002152274640796393,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019636900000002 47.55414019624395, 10.0192819 47.55412999624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_47_LVCableDist_mvgd_33535_lvgd_1164120005_building_441700,BranchTee_mvgd_33535_lvgd_1164120005_47,BranchTee_mvgd_33535_lvgd_1164120005_building_441700,0.022337948099486592,0.019389338950354364,0.0019017894817962254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019451534990433 47.55429714204662, 10.019636900000002 47.55414019624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_47_LVCableDist_mvgd_33535_lvgd_1164120005_building_445492,BranchTee_mvgd_33535_lvgd_1164120005_47,BranchTee_mvgd_33535_lvgd_1164120005_building_445492,0.01884532008730802,0.016357737835783363,0.0016044370487166297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019778800003495 47.55427989630648, 10.019636900000002 47.55414019624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_48_LVCableDist_mvgd_33535_lvgd_1164120005_building_441692,BranchTee_mvgd_33535_lvgd_1164120005_48,BranchTee_mvgd_33535_lvgd_1164120005_building_441692,0.026637597595494788,0.023121434712889476,0.0022678494328042934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01936705807897 47.55389730275858, 10.0192819 47.55412999624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_49_LVCableDist_mvgd_33535_lvgd_1164120005_51,BranchTee_mvgd_33535_lvgd_1164120005_49,BranchTee_mvgd_33535_lvgd_1164120005_51,0.016941199082212362,0.0042861233677997275,0.001362492072439821,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019194200000003 47.55442859624399, 10.019205000000003 47.554580896244005)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_49_LVCableDist_mvgd_33535_lvgd_1164120005_building_441754,BranchTee_mvgd_33535_lvgd_1164120005_49,BranchTee_mvgd_33535_lvgd_1164120005_building_441754,0.021110576476046604,0.01832398038120845,0.0017972945463922444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018926279858093 47.554372768609575, 10.019194200000003 47.55442859624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_4_LVCableDist_mvgd_33535_lvgd_1164120005_5,BranchTee_mvgd_33535_lvgd_1164120005_4,BranchTee_mvgd_33535_lvgd_1164120005_5,0.010094551906053078,0.0010094551906053078,0.0008847918660505078,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.014889000000002 47.55173109624373, 10.0150086 47.55169009624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_4_LVCableDist_mvgd_33535_lvgd_1164120005_building_441646,BranchTee_mvgd_33535_lvgd_1164120005_4,BranchTee_mvgd_33535_lvgd_1164120005_building_441646,0.14594439493401912,0.1266797348027286,0.012425291435743424,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01483580000251 47.553044146316225, 10.014889000000002 47.55173109624373)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_50_LVCableDist_mvgd_33535_lvgd_1164120005_51,BranchTee_mvgd_33535_lvgd_1164120005_50,BranchTee_mvgd_33535_lvgd_1164120005_51,0.015532802322925648,0.003929798987700189,0.0012492220842845617,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.019218500000003 47.554720396244036, 10.019205000000003 47.554580896244005)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_50_LVCableDist_mvgd_33535_lvgd_1164120005_building_441759,BranchTee_mvgd_33535_lvgd_1164120005_50,BranchTee_mvgd_33535_lvgd_1164120005_building_441759,0.018956957168544043,0.016454638822296228,0.0016139415128655985,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0190802999942 47.55486299631051, 10.019218500000003 47.554720396244036)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_50_LVCableDist_mvgd_33535_lvgd_1164120005_building_445596,BranchTee_mvgd_33535_lvgd_1164120005_50,BranchTee_mvgd_33535_lvgd_1164120005_building_445596,0.025676156615135406,0.02228690394193753,0.002185995077351773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019548462895969 47.55477849823574, 10.019218500000003 47.554720396244036)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_51_LVCableDist_mvgd_33535_lvgd_1164120005_building_441758,BranchTee_mvgd_33535_lvgd_1164120005_51,BranchTee_mvgd_33535_lvgd_1164120005_building_441758,0.022125028916086167,0.019204525099162793,0.0018836621470177512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019496920040243 47.55455862073315, 10.019205000000003 47.554580896244005)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_5_LVCableDist_mvgd_33535_lvgd_1164120005_6,BranchTee_mvgd_33535_lvgd_1164120005_5,BranchTee_mvgd_33535_lvgd_1164120005_6,0.02049973620407713,0.002049973620407713,0.0017968107963932825,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0150086 47.55169009624374, 10.015103599999996 47.55151719624375)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_5_LVCableDist_mvgd_33535_lvgd_1164120005_building_441627,BranchTee_mvgd_33535_lvgd_1164120005_5,BranchTee_mvgd_33535_lvgd_1164120005_building_441627,0.016763392491744827,0.01455062468283451,0.0014271876440054428,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01487852913017 47.5515676689278, 10.0150086 47.55169009624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_6_LVCableDist_mvgd_33535_lvgd_1164120005_building_441622,BranchTee_mvgd_33535_lvgd_1164120005_6,BranchTee_mvgd_33535_lvgd_1164120005_building_441622,0.01613171330207784,0.014002327146203565,0.0013734082711898239,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014891071860054 47.551499226390405, 10.015103599999996 47.55151719624375)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_6_LVCableDist_mvgd_33535_lvgd_1164120005_building_441631,BranchTee_mvgd_33535_lvgd_1164120005_6,BranchTee_mvgd_33535_lvgd_1164120005_building_441631,0.015710197071215678,0.013636451057815208,0.0013375215760157726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014943847948409 47.55142628588163, 10.015103599999996 47.55151719624375)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_7_LVCableDist_mvgd_33535_lvgd_1164120005_8,BranchTee_mvgd_33535_lvgd_1164120005_7,BranchTee_mvgd_33535_lvgd_1164120005_8,0.032481772350958595,0.0032481772350958595,0.0028470414772743978,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.015189399999995 47.55112329624372, 10.015207100000005 47.550831196243635)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_7_LVCableDist_mvgd_33535_lvgd_1164120005_building_441619,BranchTee_mvgd_33535_lvgd_1164120005_7,BranchTee_mvgd_33535_lvgd_1164120005_building_441619,0.017536094287182172,0.015221329841274125,0.0014929732811008024,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014961950003055 47.55115699631253, 10.015189399999995 47.55112329624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_7_LVCableDist_mvgd_33535_lvgd_1164120005_building_441634,BranchTee_mvgd_33535_lvgd_1164120005_7,BranchTee_mvgd_33535_lvgd_1164120005_building_441634,0.021069522854585406,0.01828834583778013,0.0017937993576158705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015467962266829 47.551105982611865, 10.015189399999995 47.55112329624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120005_9_LVCableDist_mvgd_33535_lvgd_1164120005_building_441628,BranchTee_mvgd_33535_lvgd_1164120005_9,BranchTee_mvgd_33535_lvgd_1164120005_building_441628,0.023509350153506112,0.020406115933243305,0.0020015193269622643,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015633223621833 47.55171953765845, 10.015935800000006 47.55166759624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_100_LVCableDist_mvgd_33535_lvgd_1164120006_103,BranchTee_mvgd_33535_lvgd_1164120006_100,BranchTee_mvgd_33535_lvgd_1164120006_103,0.011604260844605203,0.0014505326055756504,0.0009259788597416855,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.027784600000004 47.554543796244026, 10.027757500000002 47.55446759624401, 10.027741200000001 47.554443996243975)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_100_LVCableDist_mvgd_33535_lvgd_1164120006_building_445606,BranchTee_mvgd_33535_lvgd_1164120006_100,BranchTee_mvgd_33535_lvgd_1164120006_building_445606,0.028340166404708503,0.02459926443928698,0.002412801307478556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027595599993935 47.5542087962739, 10.027741200000001 47.554443996243975)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_100_LVCableDist_mvgd_33535_lvgd_1164120006_building_445855,BranchTee_mvgd_33535_lvgd_1164120006_100,BranchTee_mvgd_33535_lvgd_1164120006_building_445855,0.024199298158839682,0.021004990801872844,0.0020602595413134576,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027427500000003 47.55439689628358, 10.027741200000001 47.554443996243975)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_101_LVCableDist_mvgd_33535_lvgd_1164120006_102,BranchTee_mvgd_33535_lvgd_1164120006_101,BranchTee_mvgd_33535_lvgd_1164120006_102,0.016105897177184397,0.0020132371471480496,0.0012851934735834034,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026706900000004 47.55611589624413, 10.026850200000005 47.556008296244116)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_101_LVCableDist_mvgd_33535_lvgd_1164120006_98,BranchTee_mvgd_33535_lvgd_1164120006_98,BranchTee_mvgd_33535_lvgd_1164120006_101,0.028919821328096253,0.0036149776660120317,0.002307699174977906,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026440099999993 47.55630309624413, 10.026706900000004 47.55611589624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_101_LVCableDist_mvgd_33535_lvgd_1164120006_building_445851,BranchTee_mvgd_33535_lvgd_1164120006_101,BranchTee_mvgd_33535_lvgd_1164120006_building_445851,0.012819870824727953,0.011127647875863863,0.0010914474052795512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026536766082655 47.556112227491525, 10.026706900000004 47.55611589624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_102_LVCableDist_mvgd_33535_lvgd_1164120006_80,BranchTee_mvgd_33535_lvgd_1164120006_80,BranchTee_mvgd_33535_lvgd_1164120006_102,0.07001193197082657,0.008751491496353321,0.0055867038670366995,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026161199999997 47.55558529624407, 10.026653800000004 47.55588899624411, 10.026850200000005 47.556008296244116)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_102_LVCableDist_mvgd_33535_lvgd_1164120006_building_445856,BranchTee_mvgd_33535_lvgd_1164120006_102,BranchTee_mvgd_33535_lvgd_1164120006_building_445856,0.029549094002407357,0.025648613594089587,0.0025157259708951437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027238332054209 47.55596941582956, 10.026850200000005 47.556008296244116)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_103_LVCableDist_mvgd_33535_lvgd_1164120006_83,BranchTee_mvgd_33535_lvgd_1164120006_83,BranchTee_mvgd_33535_lvgd_1164120006_103,0.03476828740799647,0.004346035925999559,0.0027743860259910502,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.027802099999999 47.554856496244014, 10.027784600000004 47.554543796244026)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_103_LVCableDist_mvgd_33535_lvgd_1164120006_building_445860,BranchTee_mvgd_33535_lvgd_1164120006_103,BranchTee_mvgd_33535_lvgd_1164120006_building_445860,0.02418245103851343,0.020990367501429658,0.002058825225319333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027469161515354 47.554584422118985, 10.027784600000004 47.554543796244026)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_10_LVCableDist_mvgd_33535_lvgd_1164120006_19,BranchTee_mvgd_33535_lvgd_1164120006_10,BranchTee_mvgd_33535_lvgd_1164120006_19,0.04283090460708802,0.005353863075886003,0.0034177542836099175,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024047499999998 47.55614869624416, 10.024463699999998 47.55641139624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_10_LVCableDist_mvgd_33535_lvgd_1164120006_23,BranchTee_mvgd_33535_lvgd_1164120006_10,BranchTee_mvgd_33535_lvgd_1164120006_23,0.08385579953304594,0.010481974941630742,0.0066913953998574555,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023226799999994 47.55564019624407, 10.023399399999995 47.555726096244136, 10.024047499999998 47.55614869624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_10_LVCableDist_mvgd_33535_lvgd_1164120006_building_445701,BranchTee_mvgd_33535_lvgd_1164120006_10,BranchTee_mvgd_33535_lvgd_1164120006_building_445701,0.04113250142558409,0.03570301123740699,0.003501904392594679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02350245059801 47.55612520334845, 10.024047499999998 47.55614869624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_10_LVCableDist_mvgd_33535_lvgd_1164120006_building_445728,BranchTee_mvgd_33535_lvgd_1164120006_10,BranchTee_mvgd_33535_lvgd_1164120006_building_445728,0.02101332521230401,0.01823956628427988,0.0017890148499020684,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024008284528577 47.555961447757525, 10.024047499999998 47.55614869624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_10_LVCableDist_mvgd_33535_lvgd_1164120006_building_445729,BranchTee_mvgd_33535_lvgd_1164120006_10,BranchTee_mvgd_33535_lvgd_1164120006_building_445729,0.017058019392172535,0.01480636083240576,0.0014522713418362438,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023827700007786 47.556185746315045, 10.024047499999998 47.55614869624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_10_LVCableDist_mvgd_33535_lvgd_1164120006_building_445739,BranchTee_mvgd_33535_lvgd_1164120006_10,BranchTee_mvgd_33535_lvgd_1164120006_building_445739,0.029973547244688318,0.02601703900838946,0.002551862714882958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024444053866851 47.55612584592093, 10.024047499999998 47.55614869624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_11_LVCableDist_mvgd_33535_lvgd_1164120006_19,BranchTee_mvgd_33535_lvgd_1164120006_11,BranchTee_mvgd_33535_lvgd_1164120006_19,0.008741385081533418,0.0010926731351916772,0.0006975315273203581,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024463699999998 47.55641139624418, 10.024550800000007 47.55646339624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_11_LVCableDist_mvgd_33535_lvgd_1164120006_building_445695,BranchTee_mvgd_33535_lvgd_1164120006_11,BranchTee_mvgd_33535_lvgd_1164120006_building_445695,0.026815288852136,0.023275670723654048,0.002282977561913662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024819767992222 47.556305255194395, 10.024550800000007 47.55646339624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_12_LVCableDist_mvgd_33535_lvgd_1164120006_13,BranchTee_mvgd_33535_lvgd_1164120006_12,BranchTee_mvgd_33535_lvgd_1164120006_13,0.012142177769952816,0.001517772221244102,0.0009689027226088928,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022971400000001 47.555347496244075, 10.022840399999993 47.555411196244066)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_12_LVCableDist_mvgd_33535_lvgd_1164120006_6,BranchTee_mvgd_33535_lvgd_1164120006_6,BranchTee_mvgd_33535_lvgd_1164120006_12,0.006123895695517553,0.0007654869619396941,0.0004886651575010579,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023052700000006 47.55534659624406, 10.022971400000001 47.555347496244075)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_12_LVCableDist_mvgd_33535_lvgd_1164120006_building_445690,BranchTee_mvgd_33535_lvgd_1164120006_12,BranchTee_mvgd_33535_lvgd_1164120006_building_445690,0.009393779982798266,0.008153801025068895,0.0007997597579700828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022875366418825 47.55529354712057, 10.022971400000001 47.555347496244075)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_13_LVCableDist_mvgd_33535_lvgd_1164120006_22,BranchTee_mvgd_33535_lvgd_1164120006_13,BranchTee_mvgd_33535_lvgd_1164120006_22,0.030779817596510925,0.0038474771995638656,0.0024561202805368277,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022840399999993 47.555411196244066, 10.022914499999995 47.5554697962441, 10.022992799999995 47.55551839624412, 10.023043499999998 47.55554739624405, 10.023142599999995 47.55559599624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_13_LVCableDist_mvgd_33535_lvgd_1164120006_9,BranchTee_mvgd_33535_lvgd_1164120006_9,BranchTee_mvgd_33535_lvgd_1164120006_13,0.00544871526090195,0.0006810894076127438,0.0004347881534128649,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022840399999993 47.555411196244066, 10.022780400000002 47.55538379624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_14_LVCableDist_mvgd_33535_lvgd_1164120006_20,BranchTee_mvgd_33535_lvgd_1164120006_14,BranchTee_mvgd_33535_lvgd_1164120006_20,0.03824980547141434,0.004781225683926793,0.0030521988199039432,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022152600000004 47.556355996244186, 10.022339499999998 47.55667609624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_14_LVCableDist_mvgd_33535_lvgd_1164120006_building_445653,BranchTee_mvgd_33535_lvgd_1164120006_14,BranchTee_mvgd_33535_lvgd_1164120006_building_445653,0.029046753183972825,0.025212581763688412,0.0024729580998032745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021972082087713 47.55659660215184, 10.022339499999998 47.55667609624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_14_LVCableDist_mvgd_33535_lvgd_1164120006_building_445703,BranchTee_mvgd_33535_lvgd_1164120006_14,BranchTee_mvgd_33535_lvgd_1164120006_building_445703,0.021370198794542324,0.01854933255366274,0.0018193980534984347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022389050432112 47.55648671319073, 10.022339499999998 47.55667609624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_14_LVCableDist_mvgd_33535_lvgd_1164120006_building_445706,BranchTee_mvgd_33535_lvgd_1164120006_14,BranchTee_mvgd_33535_lvgd_1164120006_building_445706,0.031436672376841154,0.02728703162309812,0.0026764290346938603,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022686551344247 47.55651888504006, 10.022339499999998 47.55667609624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_14_LVCableDist_mvgd_33535_lvgd_1164120006_building_445707,BranchTee_mvgd_33535_lvgd_1164120006_14,BranchTee_mvgd_33535_lvgd_1164120006_building_445707,0.015177505637909046,0.013174074893705052,0.001292169739741751,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022335157159038 47.556812666533204, 10.022339499999998 47.55667609624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_15_LVCableDist_mvgd_33535_lvgd_1164120006_18,BranchTee_mvgd_33535_lvgd_1164120006_15,BranchTee_mvgd_33535_lvgd_1164120006_18,0.013007800406294996,0.0016259750507868745,0.0010379763389727788,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023103499999994 47.55519289624404, 10.023165 47.555302296244086)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_15_LVCableDist_mvgd_33535_lvgd_1164120006_building_445696,BranchTee_mvgd_33535_lvgd_1164120006_15,BranchTee_mvgd_33535_lvgd_1164120006_building_445696,0.0132216080718519,0.011476355806367449,0.0011256501739324003,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022980915871686 47.55510771524766, 10.023103499999994 47.55519289624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_16_LVCableDist_mvgd_33535_lvgd_1164120006_21,BranchTee_mvgd_33535_lvgd_1164120006_16,BranchTee_mvgd_33535_lvgd_1164120006_21,0.004778420431870509,0.0005973025539838137,0.00038130100332300513,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024363200000002 47.555612696244054, 10.024312999999994 47.55558639624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_16_LVCableDist_mvgd_33535_lvgd_1164120006_25,BranchTee_mvgd_33535_lvgd_1164120006_16,BranchTee_mvgd_33535_lvgd_1164120006_25,0.025479567811332027,0.0031849459764165034,0.0020331791455391814,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024312999999994 47.55558639624412, 10.024028699999997 47.55546209624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_16_LVCableDist_mvgd_33535_lvgd_1164120006_building_445684,BranchTee_mvgd_33535_lvgd_1164120006_16,BranchTee_mvgd_33535_lvgd_1164120006_building_445684,0.029352598291255885,0.02547805531681011,0.0024989968839162673,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024561349988305 47.55538279628195, 10.024312999999994 47.55558639624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_17_LVCableDist_mvgd_33535_lvgd_1164120006_23,BranchTee_mvgd_33535_lvgd_1164120006_17,BranchTee_mvgd_33535_lvgd_1164120006_23,0.05501561705061341,0.0068769521313266765,0.004390051122316479,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023226799999994 47.55564019624407, 10.023542599999997 47.55550809624409, 10.0238362 47.55536759624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_17_LVCableDist_mvgd_33535_lvgd_1164120006_25,BranchTee_mvgd_33535_lvgd_1164120006_17,BranchTee_mvgd_33535_lvgd_1164120006_25,0.01793068056760562,0.0022413350709507025,0.0014308047163643992,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024028699999997 47.55546209624404, 10.0239819 47.555440696244055, 10.023883899999992 47.55539609624405, 10.0238362 47.55536759624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_17_LVCableDist_mvgd_33535_lvgd_1164120006_5,BranchTee_mvgd_33535_lvgd_1164120006_5,BranchTee_mvgd_33535_lvgd_1164120006_17,0.048884814374172,0.0061106017967715,0.0039008348122339873,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024357099999996 47.55510509624404, 10.0238362 47.55536759624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_18_LVCableDist_mvgd_33535_lvgd_1164120006_6,BranchTee_mvgd_33535_lvgd_1164120006_6,BranchTee_mvgd_33535_lvgd_1164120006_18,0.009785750860685727,0.0012232188575857159,0.0007808682125502731,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023165 47.555302296244086, 10.023052700000006 47.55534659624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_18_LVCableDist_mvgd_33535_lvgd_1164120006_building_445698,BranchTee_mvgd_33535_lvgd_1164120006_18,BranchTee_mvgd_33535_lvgd_1164120006_building_445698,0.00918633560126798,0.007973739301900607,0.0007820985322793898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023269933178552 47.555260146581446, 10.023165 47.555302296244086)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_19_LVCableDist_mvgd_33535_lvgd_1164120006_building_445708,BranchTee_mvgd_33535_lvgd_1164120006_19,BranchTee_mvgd_33535_lvgd_1164120006_building_445708,0.02090267539551875,0.018143522243310273,0.0017795944386455069,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02419379999647 47.55645524629705, 10.024463699999998 47.55641139624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_1_LVCableDist_mvgd_33535_lvgd_1164120006_2,BranchTee_mvgd_33535_lvgd_1164120006_1,BranchTee_mvgd_33535_lvgd_1164120006_2,0.038700459116759366,0.004837557389594921,0.00308815938251479,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023353500000002 47.55655429624416, 10.023626598440895 47.55684934660727)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_1_LVCableDist_mvgd_33535_lvgd_1164120006_building_445702,BranchTee_mvgd_33535_lvgd_1164120006_1,BranchTee_mvgd_33535_lvgd_1164120006_building_445702,0.020363665066144985,0.017675661277413848,0.00173370462950023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023796601675768 47.556706824438585, 10.023626598440895 47.55684934660727)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_1_LVCableDist_mvgd_33535_lvgd_1164120006_building_445724,BranchTee_mvgd_33535_lvgd_1164120006_1,BranchTee_mvgd_33535_lvgd_1164120006_building_445724,0.015033861599373413,0.013049391868256122,0.0012799402941188526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023441699996564 47.55690034636016, 10.023626598440895 47.55684934660727)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_20_LVCableDist_mvgd_33535_lvgd_1164120006_22,BranchTee_mvgd_33535_lvgd_1164120006_20,BranchTee_mvgd_33535_lvgd_1164120006_22,0.14718391790845897,0.01839798973855737,0.01174475464678556,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022152600000004 47.556355996244186, 10.021919099999998 47.55597929624409, 10.02249609999999 47.55582619624412, 10.022939099999997 47.55568579624407, 10.023142599999995 47.55559599624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_20_LVCableDist_mvgd_33535_lvgd_1164120006_4,BranchTee_mvgd_33535_lvgd_1164120006_4,BranchTee_mvgd_33535_lvgd_1164120006_20,0.04842175821628037,0.006052719777035046,0.0038638845731086583,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022152600000004 47.556355996244186, 10.022737400000002 47.55617489624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_20_LVCableDist_mvgd_33535_lvgd_1164120006_building_445640,BranchTee_mvgd_33535_lvgd_1164120006_20,BranchTee_mvgd_33535_lvgd_1164120006_building_445640,0.024282202215096815,0.021076951522704036,0.002067317757291302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022266317695712 47.556151493623716, 10.022152600000004 47.556355996244186)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_21_LVCableDist_mvgd_33535_lvgd_1164120006_building_445734,BranchTee_mvgd_33535_lvgd_1164120006_21,BranchTee_mvgd_33535_lvgd_1164120006_building_445734,0.015668262876340707,0.013600052176663734,0.0013339514177189752,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024506700013474 47.55571479634618, 10.024363200000002 47.555612696244054)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_22_LVCableDist_mvgd_33535_lvgd_1164120006_23,BranchTee_mvgd_33535_lvgd_1164120006_22,BranchTee_mvgd_33535_lvgd_1164120006_23,0.00802100462931422,0.0010026255786642776,0.0006400477221337273,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023142599999995 47.55559599624411, 10.023179699999996 47.555615096244104, 10.023226799999994 47.55564019624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_23_LVCableDist_mvgd_33535_lvgd_1164120006_building_445699,BranchTee_mvgd_33535_lvgd_1164120006_23,BranchTee_mvgd_33535_lvgd_1164120006_building_445699,0.015417790859697704,0.013382642466217608,0.0013126269413340158,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023206014959388 47.5557782439617, 10.023226799999994 47.55564019624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_24_LVCableDist_mvgd_33535_lvgd_1164120006_5,BranchTee_mvgd_33535_lvgd_1164120006_5,BranchTee_mvgd_33535_lvgd_1164120006_24,0.03772318962043918,0.004715398702554898,0.003010176742691281,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024722799999994 47.554873096244, 10.024357099999996 47.55510509624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_24_LVCableDist_mvgd_33535_lvgd_1164120006_building_445671,BranchTee_mvgd_33535_lvgd_1164120006_24,BranchTee_mvgd_33535_lvgd_1164120006_building_445671,0.01292205102543968,0.011216340290081643,0.001100146737469595,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02480491207002 47.55497521398726, 10.024722799999994 47.554873096244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_24_LVStation_mvgd_33535_lvgd_1164120006,BusBar_mvgd_33535_lvgd_1164120006_LV,BranchTee_mvgd_33535_lvgd_1164120006_24,0.038102203860598226,0.004762775482574778,0.003040420734844516,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025067200000006 47.55462189624401, 10.024722799999994 47.554873096244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_25_LVCableDist_mvgd_33535_lvgd_1164120006_building_445673,BranchTee_mvgd_33535_lvgd_1164120006_25,BranchTee_mvgd_33535_lvgd_1164120006_building_445673,0.022371409139575305,0.019418383133151366,0.0019046382597505504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024264950000982 47.55534004629268, 10.024028699999997 47.55546209624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_25_LVCableDist_mvgd_33535_lvgd_1164120006_building_445675,BranchTee_mvgd_33535_lvgd_1164120006_25,BranchTee_mvgd_33535_lvgd_1164120006_building_445675,0.01879582920924023,0.016314779753620518,0.001600223535866882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023885777458718 47.55560077679337, 10.024028699999997 47.55546209624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_26_LVCableDist_mvgd_33535_lvgd_1164120006_29,BranchTee_mvgd_33535_lvgd_1164120006_26,BranchTee_mvgd_33535_lvgd_1164120006_29,0.026601457988089466,0.0033251822485111833,0.0021227020027500486,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0238513 47.55490619624402, 10.023810700000004 47.55503709624406, 10.023752799999999 47.555135196244066)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_26_LVCableDist_mvgd_33535_lvgd_1164120006_41,BranchTee_mvgd_33535_lvgd_1164120006_26,BranchTee_mvgd_33535_lvgd_1164120006_41,0.04269979835482272,0.00533747479435284,0.0034072924696604257,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023397900000003 47.55475009624399, 10.023651499999994 47.55476119624406, 10.023777000000006 47.55480249624402, 10.023825699999994 47.554844696244004, 10.0238513 47.55490619624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_26_LVCableDist_mvgd_33535_lvgd_1164120006_building_445663,BranchTee_mvgd_33535_lvgd_1164120006_26,BranchTee_mvgd_33535_lvgd_1164120006_building_445663,0.009300387265279169,0.008072736146262319,0.000791808567150624,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023962277530133 47.55494290529405, 10.0238513 47.55490619624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_26_LVCableDist_mvgd_33535_lvgd_1164120006_building_445664,BranchTee_mvgd_33535_lvgd_1164120006_26,BranchTee_mvgd_33535_lvgd_1164120006_building_445664,0.026295640845551128,0.02282461625393838,0.0022387362059592985,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024177617462433 47.554822030027445, 10.0238513 47.55490619624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_26_LVCableDist_mvgd_33535_lvgd_1164120006_building_445687,BranchTee_mvgd_33535_lvgd_1164120006_26,BranchTee_mvgd_33535_lvgd_1164120006_building_445687,0.01772383263345248,0.015384286725836752,0.0015089567908966235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02361839922065 47.55492905234511, 10.0238513 47.55490619624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_27_LVCableDist_mvgd_33535_lvgd_1164120006_36,BranchTee_mvgd_33535_lvgd_1164120006_27,BranchTee_mvgd_33535_lvgd_1164120006_36,0.02126339568460666,0.0026579244605758326,0.0016967435628975835,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023905899999995 47.55441959624394, 10.023634200000004 47.554367596244006)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_27_LVCableDist_mvgd_33535_lvgd_1164120006_building_445578,BranchTee_mvgd_33535_lvgd_1164120006_27,BranchTee_mvgd_33535_lvgd_1164120006_building_445578,0.014326597130686536,0.012435486309435913,0.0012197258052407173,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02383160000469 47.5543008962905, 10.023905899999995 47.55441959624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_27_LVCableDist_mvgd_33535_lvgd_1164120006_building_445583,BranchTee_mvgd_33535_lvgd_1164120006_27,BranchTee_mvgd_33535_lvgd_1164120006_building_445583,0.03145155253001621,0.027299947596054072,0.0026776958886891244,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024011231835145 47.55414567498012, 10.023905899999995 47.55441959624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_27_LVCableDist_mvgd_33535_lvgd_1164120006_building_445584,BranchTee_mvgd_33535_lvgd_1164120006_27,BranchTee_mvgd_33535_lvgd_1164120006_building_445584,0.01481618299927314,0.012860446843369086,0.0012614077561149551,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024004351437162 47.55430414680295, 10.023905899999995 47.55441959624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_27_LVCableDist_mvgd_33535_lvgd_1164120006_building_445655,BranchTee_mvgd_33535_lvgd_1164120006_27,BranchTee_mvgd_33535_lvgd_1164120006_building_445655,0.01824568648686115,0.015837255870595476,0.0015533859463869725,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023775226432036 47.55455787527229, 10.023905899999995 47.55441959624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_27_LVCableDist_mvgd_33535_lvgd_1164120006_building_445657,BranchTee_mvgd_33535_lvgd_1164120006_27,BranchTee_mvgd_33535_lvgd_1164120006_building_445657,0.020887814876085157,0.018130623312441915,0.001778329256211249,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024048600009099 47.55458079634615, 10.023905899999995 47.55441959624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_27_LVStation_mvgd_33535_lvgd_1164120006,BusBar_mvgd_33535_lvgd_1164120006_LV,BranchTee_mvgd_33535_lvgd_1164120006_27,0.09421731945917852,0.011777164932397315,0.0075182079418085,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025067200000006 47.55462189624401, 10.024977199999999 47.554564996243975, 10.024920400000001 47.554541596243986, 10.0248677 47.55451999624394, 10.0248164 47.55449799624404, 10.024783199999996 47.55448189624398, 10.024768499999995 47.554471596243935, 10.024753600000006 47.55445769624396, 10.024706699999996 47.554464896243964, 10.024648400000006 47.554461996244, 10.024384500000002 47.55445179624401, 10.023905899999995 47.55441959624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_28_LVCableDist_mvgd_33535_lvgd_1164120006_34,BranchTee_mvgd_33535_lvgd_1164120006_28,BranchTee_mvgd_33535_lvgd_1164120006_34,0.026039407327429362,0.0032549259159286702,0.002077852353397582,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022495699999997 47.554654496244005, 10.022150100000003 47.55466109624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_28_LVCableDist_mvgd_33535_lvgd_1164120006_35,BranchTee_mvgd_33535_lvgd_1164120006_28,BranchTee_mvgd_33535_lvgd_1164120006_35,0.03590471955564074,0.004488089944455093,0.0028650692809041502,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022495699999997 47.554654496244005, 10.022971500000006 47.554674596244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_28_LVCableDist_mvgd_33535_lvgd_1164120006_37,BranchTee_mvgd_33535_lvgd_1164120006_28,BranchTee_mvgd_33535_lvgd_1164120006_37,0.04019113949874149,0.005023892437342687,0.003207110390151681,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022202899999995 47.55450199624395, 10.022500399999997 47.554494596243956, 10.022495699999997 47.554654496244005)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_28_LVCableDist_mvgd_33535_lvgd_1164120006_building_445660,BranchTee_mvgd_33535_lvgd_1164120006_28,BranchTee_mvgd_33535_lvgd_1164120006_building_445660,0.015155869996703982,0.013155295157139056,0.0012903277426750352,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022661350010134 47.55457704627522, 10.022495699999997 47.554654496244005)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_29_LVCableDist_mvgd_33535_lvgd_1164120006_32,BranchTee_mvgd_33535_lvgd_1164120006_29,BranchTee_mvgd_33535_lvgd_1164120006_32,0.014629338444006965,0.0018286673055008707,0.001167369323437304,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023752799999999 47.555135196244066, 10.023580199999994 47.55519559624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_29_LVCableDist_mvgd_33535_lvgd_1164120006_building_445705,BranchTee_mvgd_33535_lvgd_1164120006_29,BranchTee_mvgd_33535_lvgd_1164120006_building_445705,0.012000979308408601,0.010416850039698666,0.0010217293064849666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023620550018759 47.555074946272775, 10.023752799999999 47.555135196244066)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_2_LVCableDist_mvgd_33535_lvgd_1164120006_3,BranchTee_mvgd_33535_lvgd_1164120006_2,BranchTee_mvgd_33535_lvgd_1164120006_3,0.05578131881411405,0.006972664851764256,0.0044511514074068595,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022828600000002 47.55620009624414, 10.023353500000002 47.55655429624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_2_LVCableDist_mvgd_33535_lvgd_1164120006_building_445714,BranchTee_mvgd_33535_lvgd_1164120006_2,BranchTee_mvgd_33535_lvgd_1164120006_building_445714,0.028664787097300602,0.02488103520045692,0.0024404385916192263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023027452590073 47.556687397839816, 10.023353500000002 47.55655429624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_2_LVCableDist_mvgd_33535_lvgd_1164120006_building_445716,BranchTee_mvgd_33535_lvgd_1164120006_2,BranchTee_mvgd_33535_lvgd_1164120006_building_445716,0.014137417494519765,0.012271278385243155,0.0012036195881150596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02351084248783 47.55648490195617, 10.023353500000002 47.55655429624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_30_LVCableDist_mvgd_33535_lvgd_1164120006_31,BranchTee_mvgd_33535_lvgd_1164120006_30,BranchTee_mvgd_33535_lvgd_1164120006_31,0.026021922030449667,0.0032527402538062083,0.0020764570887119357,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022001499999996 47.55425239624398, 10.021999200000003 47.55448659624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_30_LVCableDist_mvgd_33535_lvgd_1164120006_40,BranchTee_mvgd_33535_lvgd_1164120006_30,BranchTee_mvgd_33535_lvgd_1164120006_40,0.026145643385115734,0.0032682054231394668,0.0020863296140242777,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022001499999996 47.55425239624398, 10.021654500000002 47.55425919624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_30_LVCableDist_mvgd_33535_lvgd_1164120006_building_445529,BranchTee_mvgd_33535_lvgd_1164120006_30,BranchTee_mvgd_33535_lvgd_1164120006_building_445529,0.01763230501395147,0.015304840752109874,0.0015011643892272478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021885553700004 47.554114530901614, 10.022001499999996 47.55425239624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_31_LVCableDist_mvgd_33535_lvgd_1164120006_34,BranchTee_mvgd_33535_lvgd_1164120006_31,BranchTee_mvgd_33535_lvgd_1164120006_34,0.02289709789509011,0.002862137236886264,0.0018271072052078322,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021999200000003 47.55448659624401, 10.0220596 47.554534796243956, 10.0221315 47.55460579624395, 10.022150100000003 47.55466109624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_31_LVCableDist_mvgd_33535_lvgd_1164120006_building_445612,BranchTee_mvgd_33535_lvgd_1164120006_31,BranchTee_mvgd_33535_lvgd_1164120006_building_445612,0.014248859957021312,0.0123680104426945,0.0012131074829775151,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021840740123599 47.55441653549989, 10.021999200000003 47.55448659624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_32_LVCableDist_mvgd_33535_lvgd_1164120006_building_445704,BranchTee_mvgd_33535_lvgd_1164120006_32,BranchTee_mvgd_33535_lvgd_1164120006_building_445704,0.01503266109666191,0.013048349831902539,0.0012798380867263279,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023405283179336 47.55513042701925, 10.023580199999994 47.55519559624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_33_LVCableDist_mvgd_33535_lvgd_1164120006_42,BranchTee_mvgd_33535_lvgd_1164120006_33,BranchTee_mvgd_33535_lvgd_1164120006_42,0.004561221449735076,0.0005701526812168845,0.00036396929486625116,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023369299999995 47.55430489624399, 10.023317800000003 47.55428329624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_33_LVCableDist_mvgd_33535_lvgd_1164120006_building_445559,BranchTee_mvgd_33535_lvgd_1164120006_33,BranchTee_mvgd_33535_lvgd_1164120006_building_445559,0.013811203205107106,0.011988124382032967,0.001175846629665448,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023409450339539 47.55417562961072, 10.023317800000003 47.55428329624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_33_LVCableDist_mvgd_33535_lvgd_1164120006_building_445669,BranchTee_mvgd_33535_lvgd_1164120006_33,BranchTee_mvgd_33535_lvgd_1164120006_building_445669,0.015678941692869333,0.01360932138941058,0.0013348605818401256,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023203014993097 47.554401022309435, 10.023317800000003 47.55428329624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_34_LVCableDist_mvgd_33535_lvgd_1164120006_38,BranchTee_mvgd_33535_lvgd_1164120006_34,BranchTee_mvgd_33535_lvgd_1164120006_38,0.013857863863643688,0.001732232982955461,0.0011058083880351502,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022182299999999 47.554783896244004, 10.022150100000003 47.55466109624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_34_LVCableDist_mvgd_33535_lvgd_1164120006_building_445619,BranchTee_mvgd_33535_lvgd_1164120006_34,BranchTee_mvgd_33535_lvgd_1164120006_building_445619,0.012876128033454238,0.011176479133038278,0.0010962369843113568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02198141174121 47.554679935986016, 10.022150100000003 47.55466109624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_35_LVCableDist_mvgd_33535_lvgd_1164120006_43,BranchTee_mvgd_33535_lvgd_1164120006_35,BranchTee_mvgd_33535_lvgd_1164120006_43,0.012768110823186029,0.0015960138528982536,0.0010188499603234757,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023136700000002 47.55470039624399, 10.022971500000006 47.554674596244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_35_LVCableDist_mvgd_33535_lvgd_1164120006_building_445659,BranchTee_mvgd_33535_lvgd_1164120006_35,BranchTee_mvgd_33535_lvgd_1164120006_building_445659,0.023598437994069563,0.02048344417885238,0.0020091040127796426,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022864200014153 47.554475046275606, 10.022971500000006 47.554674596244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_35_LVCableDist_mvgd_33535_lvgd_1164120006_building_445666,BranchTee_mvgd_33535_lvgd_1164120006_35,BranchTee_mvgd_33535_lvgd_1164120006_building_445666,0.014570959896401163,0.012647593190076209,0.0012405301573463342,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022848994372687 47.55477609834236, 10.022971500000006 47.554674596244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_35_LVCableDist_mvgd_33535_lvgd_1164120006_building_445672,BranchTee_mvgd_33535_lvgd_1164120006_35,BranchTee_mvgd_33535_lvgd_1164120006_building_445672,0.009900826555832583,0.008593917450462682,0.0008429282636485273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023061237783795 47.55460947748555, 10.022971500000006 47.554674596244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_36_LVCableDist_mvgd_33535_lvgd_1164120006_42,BranchTee_mvgd_33535_lvgd_1164120006_36,BranchTee_mvgd_33535_lvgd_1164120006_42,0.021132573463793082,0.0026415716829741353,0.0016863044136505938,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023369299999995 47.55430489624399, 10.023634200000004 47.554367596244006)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_36_LVCableDist_mvgd_33535_lvgd_1164120006_building_445576,BranchTee_mvgd_33535_lvgd_1164120006_36,BranchTee_mvgd_33535_lvgd_1164120006_building_445576,0.020461253502467712,0.017760368040141975,0.001742013031906616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023725283513068 47.554194096892395, 10.023634200000004 47.554367596244006)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_36_LVCableDist_mvgd_33535_lvgd_1164120006_building_445678,BranchTee_mvgd_33535_lvgd_1164120006_36,BranchTee_mvgd_33535_lvgd_1164120006_building_445678,0.017174158990262266,0.014907170003547647,0.0014621591374870972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023554491922228 47.554512418366656, 10.023634200000004 47.554367596244006)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_37_LVCableDist_mvgd_33535_lvgd_1164120006_building_445615,BranchTee_mvgd_33535_lvgd_1164120006_37,BranchTee_mvgd_33535_lvgd_1164120006_building_445615,0.013441030291696533,0.011666814293192591,0.0011443311587710434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022244891641485 47.55438441917619, 10.022202899999995 47.55450199624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_37_LVCableDist_mvgd_33535_lvgd_1164120006_building_445654,BranchTee_mvgd_33535_lvgd_1164120006_37,BranchTee_mvgd_33535_lvgd_1164120006_building_445654,0.01347812119559855,0.01169900919777954,0.0011474889730249314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022344699998822 47.55457599626703, 10.022202899999995 47.55450199624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_38_LVCableDist_mvgd_33535_lvgd_1164120006_39,BranchTee_mvgd_33535_lvgd_1164120006_38,BranchTee_mvgd_33535_lvgd_1164120006_39,0.016898169084519427,0.0021122711355649284,0.0013484139619181277,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022182299999999 47.554783896244004, 10.022228000000007 47.55493279624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_38_LVCableDist_mvgd_33535_lvgd_1164120006_building_34967290,BranchTee_mvgd_33535_lvgd_1164120006_38,BranchTee_mvgd_33535_lvgd_1164120006_building_34967290,0.00974830902486985,0.008461532233587029,0.0008299433540730088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0222613 47.554714396244016, 10.022182299999999 47.554783896244004)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_39_LVCableDist_mvgd_33535_lvgd_1164120006_building_445626,BranchTee_mvgd_33535_lvgd_1164120006_39,BranchTee_mvgd_33535_lvgd_1164120006_building_445626,0.013098292876515235,0.011369318216815224,0.001115151468304093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022056518996525 47.55495244323171, 10.022228000000007 47.55493279624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_39_LVCableDist_mvgd_33535_lvgd_1164120006_building_445662,BranchTee_mvgd_33535_lvgd_1164120006_39,BranchTee_mvgd_33535_lvgd_1164120006_building_445662,0.020242074505935917,0.017570120671152375,0.0017233527544102958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02248757229429 47.5548855551141, 10.022228000000007 47.55493279624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_3_LVCableDist_mvgd_33535_lvgd_1164120006_building_445700,BranchTee_mvgd_33535_lvgd_1164120006_3,BranchTee_mvgd_33535_lvgd_1164120006_building_445700,0.024450671960077344,0.021223183261347135,0.0020816607930785607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023142596782192 47.55625601236543, 10.022828600000002 47.55620009624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_3_LVStation_mvgd_33535_lvgd_1164120006,BusBar_mvgd_33535_lvgd_1164120006_LV,BranchTee_mvgd_33535_lvgd_1164120006_3,0.3907698718004447,0.04884623397505559,0.031182049865709563,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025067200000006 47.55462189624401, 10.024722799999994 47.554873096244, 10.024357099999996 47.55510509624404, 10.0238362 47.55536759624411, 10.023542599999997 47.55550809624409, 10.023226799999994 47.55564019624407, 10.023179699999996 47.555615096244104, 10.023142599999995 47.55559599624411, 10.022939099999997 47.55568579624407, 10.02249609999999 47.55582619624412, 10.021919099999998 47.55597929624409, 10.022152600000004 47.556355996244186, 10.022737400000002 47.55617489624409, 10.022771299999999 47.55618429624414, 10.022828600000002 47.55620009624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_40_LVCableDist_mvgd_33535_lvgd_1164120006_building_34967289,BranchTee_mvgd_33535_lvgd_1164120006_40,BranchTee_mvgd_33535_lvgd_1164120006_building_34967289,0.020315756054488123,0.01763407625529569,0.0017296257922656511,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021399800000005 47.554198996243954, 10.021654500000002 47.55425919624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_40_LVCableDist_mvgd_33535_lvgd_1164120006_building_445515,BranchTee_mvgd_33535_lvgd_1164120006_40,BranchTee_mvgd_33535_lvgd_1164120006_building_445515,0.01350014055347412,0.011718122000415537,0.0011493636386395688,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021551292418087 47.554159854137886, 10.021654500000002 47.55425919624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_40_LVCableDist_mvgd_33535_lvgd_1164120006_building_445523,BranchTee_mvgd_33535_lvgd_1164120006_40,BranchTee_mvgd_33535_lvgd_1164120006_building_445523,0.019406468545768354,0.01684481469772693,0.001652211635320247,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021622421012957 47.55408589123938, 10.021654500000002 47.55425919624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_40_LVCableDist_mvgd_33535_lvgd_1164120006_building_445677,BranchTee_mvgd_33535_lvgd_1164120006_40,BranchTee_mvgd_33535_lvgd_1164120006_building_445677,0.013893955255511499,0.01205995316178398,0.0011828919042965482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02156407518655 47.55436819329421, 10.021654500000002 47.55425919624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_41_LVCableDist_mvgd_33535_lvgd_1164120006_43,BranchTee_mvgd_33535_lvgd_1164120006_41,BranchTee_mvgd_33535_lvgd_1164120006_43,0.020544792101849778,0.0025680990127312222,0.0016394015455922022,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023136700000002 47.55470039624399, 10.023225600000005 47.554726896243984, 10.023397900000003 47.55475009624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_41_LVCableDist_mvgd_33535_lvgd_1164120006_building_445676,BranchTee_mvgd_33535_lvgd_1164120006_41,BranchTee_mvgd_33535_lvgd_1164120006_building_445676,0.012266881156409462,0.010647652843763414,0.0010443674349050894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023365079705846 47.55464195559848, 10.023397900000003 47.55475009624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_42_LVCableDist_mvgd_33535_lvgd_1164120006_43,BranchTee_mvgd_33535_lvgd_1164120006_42,BranchTee_mvgd_33535_lvgd_1164120006_43,0.04730610103338014,0.005913262629172518,0.0037748590867016673,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023136700000002 47.55470039624399, 10.023369299999995 47.55430489624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_42_LVCableDist_mvgd_33535_lvgd_1164120006_building_445564,BranchTee_mvgd_33535_lvgd_1164120006_42,BranchTee_mvgd_33535_lvgd_1164120006_building_445564,0.01291398558092078,0.011209339484239236,0.00109946006842176,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023510606909573 47.55423906137805, 10.023369299999995 47.55430489624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_43_LVCableDist_mvgd_33535_lvgd_1164120006_building_445680,BranchTee_mvgd_33535_lvgd_1164120006_43,BranchTee_mvgd_33535_lvgd_1164120006_building_445680,0.013946509012528967,0.012105569822875143,0.0011873661819642894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023072950000957 47.554818246303526, 10.023136700000002 47.55470039624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_44_LVCableDist_mvgd_33535_lvgd_1164120006_45,BranchTee_mvgd_33535_lvgd_1164120006_44,BranchTee_mvgd_33535_lvgd_1164120006_45,0.02282175986804503,0.005773905246615392,0.0018354348324720801,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024916199999998 47.55386309624394, 10.024909399999995 47.55395109624393, 10.024880200000002 47.55406669624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_44_LVCableDist_mvgd_33535_lvgd_1164120006_56,BranchTee_mvgd_33535_lvgd_1164120006_44,BranchTee_mvgd_33535_lvgd_1164120006_56,0.03277614638651538,0.00829236503578839,0.0026360140979420255,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024916199999998 47.55386309624394, 10.025021099999995 47.55384609624396, 10.025169700000003 47.55364839624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_44_LVCableDist_mvgd_33535_lvgd_1164120006_62,BranchTee_mvgd_33535_lvgd_1164120006_44,BranchTee_mvgd_33535_lvgd_1164120006_62,0.006116473974672777,0.0015474679155922126,0.0004919160244404521,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024872500000006 47.55381669624389, 10.024894699999995 47.55384029624394, 10.024916199999998 47.55386309624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_45_LVCableDist_mvgd_33535_lvgd_1164120006_46,BranchTee_mvgd_33535_lvgd_1164120006_45,BranchTee_mvgd_33535_lvgd_1164120006_46,0.017443021782959263,0.004413084511088693,0.0014028510486976398,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024880200000002 47.55406669624398, 10.024829599999995 47.55421989624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_45_LVCableDist_mvgd_33535_lvgd_1164120006_building_445552,BranchTee_mvgd_33535_lvgd_1164120006_45,BranchTee_mvgd_33535_lvgd_1164120006_building_445552,0.009508253279476235,0.008253163846585372,0.0008095056894495146,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024795609338486 47.55413022158866, 10.024880200000002 47.55406669624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_45_LVCableDist_mvgd_33535_lvgd_1164120006_building_445563,BranchTee_mvgd_33535_lvgd_1164120006_45,BranchTee_mvgd_33535_lvgd_1164120006_building_445563,0.014815468609577259,0.012859826753113061,0.0012613469350044627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025072021408802 47.554037153941046, 10.024880200000002 47.55406669624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_46_LVCableDist_mvgd_33535_lvgd_1164120006_52,BranchTee_mvgd_33535_lvgd_1164120006_46,BranchTee_mvgd_33535_lvgd_1164120006_52,0.027092362013724794,0.006854367589472373,0.0021788970360502526,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024829599999995 47.55421989624394, 10.0247887 47.55431889624396, 10.024760299999999 47.55440979624396, 10.024753600000006 47.55445769624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_46_LVCableDist_mvgd_33535_lvgd_1164120006_building_445547,BranchTee_mvgd_33535_lvgd_1164120006_46,BranchTee_mvgd_33535_lvgd_1164120006_building_445547,0.017980986424226728,0.015607496216228799,0.0015308501345609744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024612847057535 47.55415206078548, 10.024829599999995 47.55421989624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_47_LVCableDist_mvgd_33535_lvgd_1164120006_48,BranchTee_mvgd_33535_lvgd_1164120006_47,BranchTee_mvgd_33535_lvgd_1164120006_48,0.021271530796287002,0.005381697291460611,0.0017107580129337417,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024636400000004 47.55350619624392, 10.024541100000006 47.55351319624384, 10.024469 47.553530196243926, 10.024427100000002 47.55354009624393, 10.024369299999996 47.55356149624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_47_LVCableDist_mvgd_33535_lvgd_1164120006_50,BranchTee_mvgd_33535_lvgd_1164120006_47,BranchTee_mvgd_33535_lvgd_1164120006_50,0.019850682302393334,0.005022222622505514,0.0015964865968625618,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024369299999996 47.55356149624391, 10.0241459 47.55365629624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_47_LVCableDist_mvgd_33535_lvgd_1164120006_building_445545,BranchTee_mvgd_33535_lvgd_1164120006_47,BranchTee_mvgd_33535_lvgd_1164120006_building_445545,0.017505501774051704,0.01519477553987688,0.0014903687213877026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024463519913029 47.553705524165224, 10.024369299999996 47.55356149624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_47_LVCableDist_mvgd_33535_lvgd_1164120006_building_445567,BranchTee_mvgd_33535_lvgd_1164120006_47,BranchTee_mvgd_33535_lvgd_1164120006_building_445567,0.03366850846760242,0.029224265349878903,0.002866441223082844,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024167173250929 47.553291217224945, 10.024369299999996 47.55356149624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_48_LVCableDist_mvgd_33535_lvgd_1164120006_57,BranchTee_mvgd_33535_lvgd_1164120006_48,BranchTee_mvgd_33535_lvgd_1164120006_57,0.0838639612672352,0.021217582200610503,0.006744739958222977,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024286200000008 47.55292709624385, 10.024629300000006 47.55313859624386, 10.0247398 47.55321119624388, 10.024778600000003 47.553246796243904, 10.024667499999998 47.553339996243835, 10.024643800000007 47.55336899624388, 10.024630500000002 47.55342099624388, 10.024624499999998 47.55345889624387, 10.024636400000004 47.55350619624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_48_LVCableDist_mvgd_33535_lvgd_1164120006_59,BranchTee_mvgd_33535_lvgd_1164120006_48,BranchTee_mvgd_33535_lvgd_1164120006_59,0.02843007097387452,0.007192807956390254,0.0022864819740815515,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024636400000004 47.55350619624392, 10.024685300000002 47.55359489624392, 10.024803399999994 47.55373479624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_49_LVCableDist_mvgd_33535_lvgd_1164120006_56,BranchTee_mvgd_33535_lvgd_1164120006_49,BranchTee_mvgd_33535_lvgd_1164120006_56,0.04092609443388753,0.010354301891773545,0.003291471810908754,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025481900000008 47.55334769624391, 10.025361299999997 47.55344589624388, 10.025169700000003 47.55364839624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_49_LVCableDist_mvgd_33535_lvgd_1164120006_60,BranchTee_mvgd_33535_lvgd_1164120006_49,BranchTee_mvgd_33535_lvgd_1164120006_60,0.3115847071889527,0.07883093091880504,0.025059129013138958,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0272275 47.550875396243654, 10.027140299999994 47.55103809624367, 10.027042799999997 47.55119249624368, 10.026797999999996 47.55157089624374, 10.026436399999994 47.552103596243754, 10.026237599999993 47.5523395962438, 10.026020900000004 47.5524970962438, 10.025959499999995 47.55252809624383, 10.0260066 47.552579296243835, 10.026019600000003 47.55262489624382, 10.025988799999993 47.55268929624384, 10.0259631 47.55274299624386, 10.0258617 47.55292309624382, 10.025722900000005 47.553141596243854, 10.025601000000002 47.55324669624392, 10.0255575 47.55328009624388, 10.025481900000008 47.55334769624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_49_LVCableDist_mvgd_33535_lvgd_1164120006_building_445581,BranchTee_mvgd_33535_lvgd_1164120006_49,BranchTee_mvgd_33535_lvgd_1164120006_building_445581,0.00791127593195714,0.006866987508938798,0.00067354357204051,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02558598123857 47.553357288855764, 10.025481900000008 47.55334769624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_4_LVCableDist_mvgd_33535_lvgd_1164120006_building_445686,BranchTee_mvgd_33535_lvgd_1164120006_4,BranchTee_mvgd_33535_lvgd_1164120006_building_445686,0.018914657136347456,0.016417922394349593,0.0016103402082178829,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022803183501422 47.55601060204837, 10.022737400000002 47.55617489624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_4_LVCableDist_mvgd_33535_lvgd_1164120006_building_445691,BranchTee_mvgd_33535_lvgd_1164120006_4,BranchTee_mvgd_33535_lvgd_1164120006_building_445691,0.020566996228080493,0.017852152725973867,0.0017510156673524147,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022516782562102 47.55606580177423, 10.022737400000002 47.55617489624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_4_LVCableDist_mvgd_33535_lvgd_1164120006_building_445693,BranchTee_mvgd_33535_lvgd_1164120006_4,BranchTee_mvgd_33535_lvgd_1164120006_building_445693,0.023810421982671588,0.02066744628095894,0.002027151727728081,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022621961957208 47.55637440126184, 10.022737400000002 47.55617489624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_50_LVCableDist_mvgd_33535_lvgd_1164120006_building_445565,BranchTee_mvgd_33535_lvgd_1164120006_50,BranchTee_mvgd_33535_lvgd_1164120006_building_445565,0.03064121568303587,0.026596575212875135,0.002608706110154607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02388236403641 47.553446201214335, 10.0241459 47.55365629624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_50_LVCableDist_mvgd_33535_lvgd_1164120006_building_445572,BranchTee_mvgd_33535_lvgd_1164120006_50,BranchTee_mvgd_33535_lvgd_1164120006_building_445572,0.02683104247376914,0.023289344867231613,0.002284318780533594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024067020265546 47.55389179015372, 10.0241459 47.55365629624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_51_LVCableDist_mvgd_33535_lvgd_1164120006_52,BranchTee_mvgd_33535_lvgd_1164120006_51,BranchTee_mvgd_33535_lvgd_1164120006_52,0.008024490681354022,0.0020301961423825677,0.0006453678329175436,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024753600000006 47.55445769624396, 10.024706699999996 47.554464896243964, 10.024648400000006 47.554461996244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_51_LVCableDist_mvgd_33535_lvgd_1164120006_61,BranchTee_mvgd_33535_lvgd_1164120006_51,BranchTee_mvgd_33535_lvgd_1164120006_61,0.019908169656514544,0.005036766923098179,0.0016011100042067283,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024648400000006 47.554461996244, 10.024384500000002 47.55445179624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_51_LVCableDist_mvgd_33535_lvgd_1164120006_building_445665,BranchTee_mvgd_33535_lvgd_1164120006_51,BranchTee_mvgd_33535_lvgd_1164120006_building_445665,0.01624557949812159,0.01410116300436954,0.00138310251584487,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024539850009617 47.55433564630945, 10.024648400000006 47.554461996244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_52_LVStation_mvgd_33535_lvgd_1164120006,BusBar_mvgd_33535_lvgd_1164120006_LV,BranchTee_mvgd_33535_lvgd_1164120006_52,0.030061293854731233,0.007605507345247002,0.0024176727022445473,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024753600000006 47.55445769624396, 10.024768499999995 47.554471596243935, 10.024783199999996 47.55448189624398, 10.0248164 47.55449799624404, 10.0248677 47.55451999624394, 10.024920400000001 47.554541596243986, 10.024977199999999 47.554564996243975, 10.025067200000006 47.55462189624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_53_LVCableDist_mvgd_33535_lvgd_1164120006_55,BranchTee_mvgd_33535_lvgd_1164120006_53,BranchTee_mvgd_33535_lvgd_1164120006_55,0.04956627025218403,0.012540266373802561,0.003986355980546756,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023440351074065 47.55301059815497, 10.024086099999996 47.552924596243805)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_53_LVCableDist_mvgd_33535_lvgd_1164120006_57,BranchTee_mvgd_33535_lvgd_1164120006_53,BranchTee_mvgd_33535_lvgd_1164120006_57,0.0151480531257589,0.003832457440817002,0.0012182787178514447,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024086099999996 47.552924596243805, 10.024185800000005 47.55291909624384, 10.024286200000008 47.55292709624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_53_LVCableDist_mvgd_33535_lvgd_1164120006_building_445519,BranchTee_mvgd_33535_lvgd_1164120006_53,BranchTee_mvgd_33535_lvgd_1164120006_building_445519,0.024792311618474647,0.021519726484835994,0.0021107470236495494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02376603917016 47.55287247428561, 10.024086099999996 47.552924596243805)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_54_LVCableDist_mvgd_33535_lvgd_1164120006_62,BranchTee_mvgd_33535_lvgd_1164120006_54,BranchTee_mvgd_33535_lvgd_1164120006_62,0.06046432822157639,0.015297475040058826,0.004862829807235747,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025177600000006 47.55335889624388, 10.025236500000002 47.55338749624385, 10.02522669999999 47.55339879624388, 10.025107399999996 47.55353689624393, 10.024960500000002 47.55371349624392, 10.024898599999993 47.55378599624392, 10.024872500000006 47.55381669624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_54_LVCableDist_mvgd_33535_lvgd_1164120006_building_34967294,BranchTee_mvgd_33535_lvgd_1164120006_54,BranchTee_mvgd_33535_lvgd_1164120006_building_34967294,0.003127531533349416,0.002714697370947293,0.0002662691554130097,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02519030000001 47.55333209624385, 10.025177600000006 47.55335889624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_55_LVCableDist_mvgd_33535_lvgd_1164120006_building_445540,BranchTee_mvgd_33535_lvgd_1164120006_55,BranchTee_mvgd_33535_lvgd_1164120006_building_445540,0.02102804168587013,0.018252340183335273,0.0017902677686801283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023192768507862 47.552923129323695, 10.023440351074065 47.55301059815497)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_55_LVCableDist_mvgd_33535_lvgd_1164120006_building_445541,BranchTee_mvgd_33535_lvgd_1164120006_55,BranchTee_mvgd_33535_lvgd_1164120006_building_445541,0.015803494307230104,0.01371743305867573,0.001345464637811004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023465273551556 47.55315182740483, 10.023440351074065 47.55301059815497)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_55_LVCableDist_mvgd_33535_lvgd_1164120006_building_445542,BranchTee_mvgd_33535_lvgd_1164120006_55,BranchTee_mvgd_33535_lvgd_1164120006_building_445542,0.014843948681914968,0.012884547455902192,0.0012637716475058717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02346224045428 47.552877824480134, 10.023440351074065 47.55301059815497)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_56_LVCableDist_mvgd_33535_lvgd_1164120006_building_445577,BranchTee_mvgd_33535_lvgd_1164120006_56,BranchTee_mvgd_33535_lvgd_1164120006_building_445577,0.013782896908408854,0.011963554516498885,0.0011734367119286182,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025350665680419 47.553629957813214, 10.025169700000003 47.55364839624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_57_LVCableDist_mvgd_33535_lvgd_1164120006_building_445522,BranchTee_mvgd_33535_lvgd_1164120006_57,BranchTee_mvgd_33535_lvgd_1164120006_building_445522,0.007597240132842894,0.006594404435307632,0.0006468074556791027,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024319050000289 47.55286244625214, 10.024286200000008 47.55292709624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_58_LVCableDist_mvgd_33535_lvgd_1164120006_59,BranchTee_mvgd_33535_lvgd_1164120006_58,BranchTee_mvgd_33535_lvgd_1164120006_59,0.05071959972483211,0.012832058730382524,0.004079112240346815,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0251294 47.553335396243924, 10.025121499999997 47.55334519624386, 10.025010599999998 47.55348369624388, 10.024870900000002 47.55365659624389, 10.024830800000002 47.553702996243906, 10.024803399999994 47.55373479624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_58_LVCableDist_mvgd_33535_lvgd_1164120006_building_34967293,BranchTee_mvgd_33535_lvgd_1164120006_58,BranchTee_mvgd_33535_lvgd_1164120006_building_34967293,0.002358266037721491,0.002046974920742254,0.0002007760751274676,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025159300000004 47.5533290962439, 10.0251294 47.553335396243924)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_59_LVCableDist_mvgd_33535_lvgd_1164120006_62,BranchTee_mvgd_33535_lvgd_1164120006_59,BranchTee_mvgd_33535_lvgd_1164120006_62,0.0104828958739004,0.0026521726560968014,0.0008430845098442817,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024803399999994 47.55373479624391, 10.024830200000004 47.55376659624392, 10.024872500000006 47.55381669624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_5_LVCableDist_mvgd_33535_lvgd_1164120006_building_445679,BranchTee_mvgd_33535_lvgd_1164120006_5,BranchTee_mvgd_33535_lvgd_1164120006_building_445679,0.014809630814501894,0.012854759546987643,0.0012608499217057585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024519068541471 47.55518067524143, 10.024357099999996 47.55510509624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_60_LVCableDist_mvgd_33535_lvgd_1164120006_building_445555,BranchTee_mvgd_33535_lvgd_1164120006_60,BranchTee_mvgd_33535_lvgd_1164120006_building_445555,0.011251490308506458,0.009766293587783605,0.0009579199408983115,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027086991614754 47.55084101805383, 10.0272275 47.550875396243654)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_61_LVCableDist_mvgd_33535_lvgd_1164120006_building_445585,BranchTee_mvgd_33535_lvgd_1164120006_61,BranchTee_mvgd_33535_lvgd_1164120006_building_445585,0.02270487940608795,0.01970783532448434,0.0019330289714900994,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02427830000426 47.554260546441185, 10.024384500000002 47.55445179624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_61_LVCableDist_mvgd_33535_lvgd_1164120006_building_445670,BranchTee_mvgd_33535_lvgd_1164120006_61,BranchTee_mvgd_33535_lvgd_1164120006_building_445670,0.01584846983029405,0.013756471812695235,0.0013492937261552133,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024390970999871 47.55459436975509, 10.024384500000002 47.55445179624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_62_LVCableDist_mvgd_33535_lvgd_1164120006_building_445546,BranchTee_mvgd_33535_lvgd_1164120006_62,BranchTee_mvgd_33535_lvgd_1164120006_building_445546,0.021524583743934764,0.018683338689735374,0.0018325419497772935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024624965710464 47.55391352041802, 10.024872500000006 47.55381669624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_63_LVCableDist_mvgd_33535_lvgd_1164120006_64,BranchTee_mvgd_33535_lvgd_1164120006_63,BranchTee_mvgd_33535_lvgd_1164120006_64,0.020548025563889162,0.009226063478186233,0.0017429452062468155,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025296699999995 47.554410596244026, 10.025133099999996 47.55455859624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_63_LVCableDist_mvgd_33535_lvgd_1164120006_65,BranchTee_mvgd_33535_lvgd_1164120006_63,BranchTee_mvgd_33535_lvgd_1164120006_65,0.0689258967983762,0.030947727662470913,0.005846501457644407,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025684199999999 47.553848596243924, 10.025296699999995 47.554410596244026)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_63_LVCableDist_mvgd_33535_lvgd_1164120006_77,BranchTee_mvgd_33535_lvgd_1164120006_63,BranchTee_mvgd_33535_lvgd_1164120006_77,0.036146994452955786,0.01623000050937715,0.0030660965700144366,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025296699999995 47.554410596244026, 10.025752000000002 47.55430769624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_64_LVCableDist_mvgd_33535_lvgd_1164120006_building_445825,BranchTee_mvgd_33535_lvgd_1164120006_64,BranchTee_mvgd_33535_lvgd_1164120006_building_445825,0.013766503118840973,0.011949324707153965,0.0011720409912282152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025311022692835 47.55458697999301, 10.025133099999996 47.55455859624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_64_LVStation_mvgd_33535_lvgd_1164120006,BusBar_mvgd_33535_lvgd_1164120006_LV,BranchTee_mvgd_33535_lvgd_1164120006_64,0.008608030361806409,0.0038650056324510775,0.0007301589735562805,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025067200000006 47.55462189624401, 10.025133099999996 47.55455859624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_65_LVCableDist_mvgd_33535_lvgd_1164120006_building_445568,BranchTee_mvgd_33535_lvgd_1164120006_65,BranchTee_mvgd_33535_lvgd_1164120006_building_445568,0.029887689606360866,0.02594251457832123,0.0025445530393131254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025984156374516 47.553672481252086, 10.025684199999999 47.553848596243924)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_66_LVCableDist_mvgd_33535_lvgd_1164120006_70,BranchTee_mvgd_33535_lvgd_1164120006_66,BranchTee_mvgd_33535_lvgd_1164120006_70,0.028733772394780453,0.012901463805256424,0.0024372848231648137,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.026511600000005 47.55414159624396, 10.026890599999994 47.55417119624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_66_LVCableDist_mvgd_33535_lvgd_1164120006_72,BranchTee_mvgd_33535_lvgd_1164120006_66,BranchTee_mvgd_33535_lvgd_1164120006_72,0.026533330758799514,0.011913465510700981,0.0022506367586520417,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.026511600000005 47.55414159624396, 10.026522200000002 47.55390289624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_66_LVCableDist_mvgd_33535_lvgd_1164120006_77,BranchTee_mvgd_33535_lvgd_1164120006_66,BranchTee_mvgd_33535_lvgd_1164120006_77,0.060113014051400016,0.026990743309078608,0.005098966289883495,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.025752000000002 47.55430769624396, 10.026511600000005 47.55414159624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_66_LVCableDist_mvgd_33535_lvgd_1164120006_building_445571,BranchTee_mvgd_33535_lvgd_1164120006_66,BranchTee_mvgd_33535_lvgd_1164120006_building_445571,0.023303431983778426,0.020227378961919673,0.0019839880386113957,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02624779994772 47.554031996341735, 10.026511600000005 47.55414159624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_66_LVCableDist_mvgd_33535_lvgd_1164120006_building_445575,BranchTee_mvgd_33535_lvgd_1164120006_66,BranchTee_mvgd_33535_lvgd_1164120006_building_445575,0.018957797022589203,0.016455367815607427,0.0016140130156545843,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026339399971096 47.554266046286884, 10.026511600000005 47.55414159624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_66_LVCableDist_mvgd_33535_lvgd_1164120006_building_445597,BranchTee_mvgd_33535_lvgd_1164120006_66,BranchTee_mvgd_33535_lvgd_1164120006_building_445597,0.014204889223789095,0.012329843846248934,0.0012093639395868926,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026595590352985 47.554256066831975, 10.026511600000005 47.55414159624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_67_LVCableDist_mvgd_33535_lvgd_1164120006_72,BranchTee_mvgd_33535_lvgd_1164120006_67,BranchTee_mvgd_33535_lvgd_1164120006_72,0.03221143838277059,0.014462935833863995,0.002732270890991554,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.026660700000004 47.553677596243894, 10.026550900000002 47.55368919624392, 10.026522200000002 47.55390289624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_67_LVCableDist_mvgd_33535_lvgd_1164120006_building_445586,BranchTee_mvgd_33535_lvgd_1164120006_67,BranchTee_mvgd_33535_lvgd_1164120006_building_445586,0.011029992193996103,0.009574033224388618,0.0009390622202814761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026736660898004 47.55376247063167, 10.026660700000004 47.553677596243894)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_68_LVCableDist_mvgd_33535_lvgd_1164120006_71,BranchTee_mvgd_33535_lvgd_1164120006_68,BranchTee_mvgd_33535_lvgd_1164120006_71,0.010836028953230162,0.004865377000000343,0.0009191445017459628,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027035100000006 47.554197896243956, 10.027117600000004 47.554277796244016)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_68_LVCableDist_mvgd_33535_lvgd_1164120006_building_445599,BranchTee_mvgd_33535_lvgd_1164120006_68,BranchTee_mvgd_33535_lvgd_1164120006_building_445599,0.016149218635442674,0.014017521775564241,0.0013748986255733289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027304588475495 47.55420666471345, 10.027117600000004 47.554277796244016)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_68_LVCableDist_mvgd_33535_lvgd_1164120006_building_445852,BranchTee_mvgd_33535_lvgd_1164120006_68,BranchTee_mvgd_33535_lvgd_1164120006_building_445852,0.03655567924749633,0.03173032958682681,0.0031122467463519142,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026902910972577 47.5545728738499, 10.027117600000004 47.554277796244016)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_69_LVCableDist_mvgd_33535_lvgd_1164120006_76,BranchTee_mvgd_33535_lvgd_1164120006_69,BranchTee_mvgd_33535_lvgd_1164120006_76,0.013503893408777919,0.0060632481405412855,0.0011454407728526614,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027194299999994 47.553897196243945, 10.027366000000002 47.55386219624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_69_LVCableDist_mvgd_33535_lvgd_1164120006_building_445593,BranchTee_mvgd_33535_lvgd_1164120006_69,BranchTee_mvgd_33535_lvgd_1164120006_building_445593,0.018595221357096424,0.016140652137959694,0.0015831443528786472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027531567885163 47.55373804303141, 10.027366000000002 47.55386219624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_69_LVCableDist_mvgd_33535_lvgd_1164120006_building_445600,BranchTee_mvgd_33535_lvgd_1164120006_69,BranchTee_mvgd_33535_lvgd_1164120006_building_445600,0.020027027444142323,0.017383459821515537,0.0017050442581066608,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027508799999467 47.554014246274, 10.027366000000002 47.55386219624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_6_LVCableDist_mvgd_33535_lvgd_1164120006_building_445697,BranchTee_mvgd_33535_lvgd_1164120006_6,BranchTee_mvgd_33535_lvgd_1164120006_building_445697,0.008897958561784672,0.007723428031629095,0.0007575469298654915,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023036395170665 47.55526727838356, 10.023052700000006 47.55534659624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_70_LVCableDist_mvgd_33535_lvgd_1164120006_71,BranchTee_mvgd_33535_lvgd_1164120006_70,BranchTee_mvgd_33535_lvgd_1164120006_71,0.011280313277790468,0.00506486066172792,0.0009568300317398444,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027035100000006 47.554197896243956, 10.026890599999994 47.55417119624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_70_LVCableDist_mvgd_33535_lvgd_1164120006_building_445591,BranchTee_mvgd_33535_lvgd_1164120006_70,BranchTee_mvgd_33535_lvgd_1164120006_building_445591,0.017008893147907288,0.014763719252383525,0.0014480888728732174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026828902771829 47.55431845817103, 10.026890599999994 47.55417119624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_70_LVCableDist_mvgd_33535_lvgd_1164120006_building_445595,BranchTee_mvgd_33535_lvgd_1164120006_70,BranchTee_mvgd_33535_lvgd_1164120006_building_445595,0.018128944409416495,0.015735923747373516,0.0015434468573543327,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026736600001607 47.55404579626478, 10.026890599999994 47.55417119624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_71_LVCableDist_mvgd_33535_lvgd_1164120006_74,BranchTee_mvgd_33535_lvgd_1164120006_71,BranchTee_mvgd_33535_lvgd_1164120006_74,0.015595822965902657,0.007002524511690293,0.0013228845171219029,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027035100000006 47.554197896243956, 10.027153199999999 47.55408259624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_72_LVCableDist_mvgd_33535_lvgd_1164120006_building_445590,BranchTee_mvgd_33535_lvgd_1164120006_72,BranchTee_mvgd_33535_lvgd_1164120006_building_445590,0.01765850292549354,0.015327580539328391,0.0015033948050377707,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02674480000161 47.553952796264774, 10.026522200000002 47.55390289624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_73_LVCableDist_mvgd_33535_lvgd_1164120006_74,BranchTee_mvgd_33535_lvgd_1164120006_73,BranchTee_mvgd_33535_lvgd_1164120006_74,0.00642811076172148,0.0028862217320129446,0.0005452516497281137,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027153199999999 47.55408259624392, 10.027180999999995 47.55402789624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_73_LVCableDist_mvgd_33535_lvgd_1164120006_76,BranchTee_mvgd_33535_lvgd_1164120006_73,BranchTee_mvgd_33535_lvgd_1164120006_76,0.014556228232086993,0.00653574647620706,0.0012347029713033228,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027180999999995 47.55402789624394, 10.027194299999994 47.553897196243945)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_73_LVCableDist_mvgd_33535_lvgd_1164120006_building_445594,BranchTee_mvgd_33535_lvgd_1164120006_73,BranchTee_mvgd_33535_lvgd_1164120006_building_445594,0.01458546249045209,0.012660181441712414,0.0012417648670296935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027018400001554 47.553956596258715, 10.027180999999995 47.55402789624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_73_LVCableDist_mvgd_33535_lvgd_1164120006_building_445598,BranchTee_mvgd_33535_lvgd_1164120006_73,BranchTee_mvgd_33535_lvgd_1164120006_building_445598,0.012225613400656265,0.010611832431769637,0.0010408540153430408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02734229287227 47.554015518117794, 10.027180999999995 47.55402789624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_74_LVCableDist_mvgd_33535_lvgd_1164120006_building_445601,BranchTee_mvgd_33535_lvgd_1164120006_74,BranchTee_mvgd_33535_lvgd_1164120006_building_445601,0.011832318517637972,0.01027045247330976,0.0010073700056015347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027012774123213 47.55403485000854, 10.027153199999999 47.55408259624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_75_LVCableDist_mvgd_33535_lvgd_1164120006_76,BranchTee_mvgd_33535_lvgd_1164120006_75,BranchTee_mvgd_33535_lvgd_1164120006_76,0.018632583509746607,0.008366029995876227,0.0015804716617336934,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027194299999994 47.553897196243945, 10.027256000000001 47.55373479624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_75_LVCableDist_mvgd_33535_lvgd_1164120006_building_445582,BranchTee_mvgd_33535_lvgd_1164120006_75,BranchTee_mvgd_33535_lvgd_1164120006_building_445582,0.021789904643229593,0.018913637230323285,0.0018551306178739492,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027363155217852 47.55355262762087, 10.027256000000001 47.55373479624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_75_LVCableDist_mvgd_33535_lvgd_1164120006_building_445589,BranchTee_mvgd_33535_lvgd_1164120006_75,BranchTee_mvgd_33535_lvgd_1164120006_building_445589,0.014750135301800691,0.012803117441963,0.0012557846426673575,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027061800002356 47.55375194634875, 10.027256000000001 47.55373479624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_77_LVCableDist_mvgd_33535_lvgd_1164120006_building_445570,BranchTee_mvgd_33535_lvgd_1164120006_77,BranchTee_mvgd_33535_lvgd_1164120006_building_445570,0.016588121423705054,0.014398489395775987,0.0014122655628824728,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025771574130582 47.55415898877346, 10.025752000000002 47.55430769624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_78_LVCableDist_mvgd_33535_lvgd_1164120006_building_445819,BranchTee_mvgd_33535_lvgd_1164120006_78,BranchTee_mvgd_33535_lvgd_1164120006_building_445819,0.013448668600976028,0.011673444345647193,0.0011449814627372695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02508494999544 47.554815796289006, 10.025241599999998 47.55475769624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_78_LVCableDist_mvgd_33535_lvgd_1164120006_building_445823,BranchTee_mvgd_33535_lvgd_1164120006_78,BranchTee_mvgd_33535_lvgd_1164120006_building_445823,0.02666193265257375,0.023142557542434015,0.002269921250474635,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025586098262949 47.55481292776933, 10.025241599999998 47.55475769624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_78_LVStation_mvgd_33535_lvgd_1164120006,BusBar_mvgd_33535_lvgd_1164120006_LV,BranchTee_mvgd_33535_lvgd_1164120006_78,0.020004813197479134,0.01736417785541189,0.0017031530002139517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025067200000006 47.55462189624401, 10.025241599999998 47.55475769624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_79_LVCableDist_mvgd_33535_lvgd_1164120006_80,BranchTee_mvgd_33535_lvgd_1164120006_79,BranchTee_mvgd_33535_lvgd_1164120006_80,0.02715495534818676,0.003394369418523345,0.002166869129052729,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026161199999997 47.55558529624407, 10.025908300000001 47.5557594962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_79_LVCableDist_mvgd_33535_lvgd_1164120006_82,BranchTee_mvgd_33535_lvgd_1164120006_79,BranchTee_mvgd_33535_lvgd_1164120006_82,0.010867197756939503,0.0013583997196174378,0.0008671638394130391,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025908300000001 47.5557594962441, 10.025875200000005 47.5558546962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_79_LVCableDist_mvgd_33535_lvgd_1164120006_building_445845,BranchTee_mvgd_33535_lvgd_1164120006_79,BranchTee_mvgd_33535_lvgd_1164120006_building_445845,0.012925813117301248,0.011219605785817483,0.00110046703128978,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025826849992674 47.55565709630036, 10.025908300000001 47.5557594962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_7_LVCableDist_mvgd_33535_lvgd_1164120006_8,BranchTee_mvgd_33535_lvgd_1164120006_7,BranchTee_mvgd_33535_lvgd_1164120006_8,0.051014877107391526,0.006376859638423941,0.004070806263866931,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021976700000003 47.5551623962441, 10.022115799999998 47.55511189624401, 10.022324100000004 47.555069396244036, 10.022528700000004 47.55521999624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_7_LVCableDist_mvgd_33535_lvgd_1164120006_building_445635,BranchTee_mvgd_33535_lvgd_1164120006_7,BranchTee_mvgd_33535_lvgd_1164120006_building_445635,0.01930128870875548,0.016753518599199758,0.0016432569226117542,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021741225795195 47.555093842100405, 10.021976700000003 47.5551623962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_7_LVCableDist_mvgd_33535_lvgd_1164120006_building_445642,BranchTee_mvgd_33535_lvgd_1164120006_7,BranchTee_mvgd_33535_lvgd_1164120006_building_445642,0.030023405028501777,0.02606031556473954,0.0025561074650462144,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022100758978027 47.55541919667441, 10.021976700000003 47.5551623962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_80_LVCableDist_mvgd_33535_lvgd_1164120006_91,BranchTee_mvgd_33535_lvgd_1164120006_80,BranchTee_mvgd_33535_lvgd_1164120006_91,0.025340998043767642,0.0031676247554709553,0.0020221217695389174,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025914099999996 47.55543049624405, 10.026161199999997 47.55558529624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_81_LVCableDist_mvgd_33535_lvgd_1164120006_82,BranchTee_mvgd_33535_lvgd_1164120006_81,BranchTee_mvgd_33535_lvgd_1164120006_82,0.012015796554014876,0.0015019745692518595,0.0009588179498005164,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025875200000005 47.5558546962441, 10.025977299999996 47.55593779624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_81_LVCableDist_mvgd_33535_lvgd_1164120006_building_445840,BranchTee_mvgd_33535_lvgd_1164120006_81,BranchTee_mvgd_33535_lvgd_1164120006_building_445840,0.017704323558124374,0.015367352848451957,0.0015072958436111647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025913254772737 47.5560911129919, 10.025977299999996 47.55593779624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_82_LVCableDist_mvgd_33535_lvgd_1164120006_building_445834,BranchTee_mvgd_33535_lvgd_1164120006_82,BranchTee_mvgd_33535_lvgd_1164120006_building_445834,0.020464920889153793,0.017763551331785494,0.0017423252627970364,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0256137524671 47.555904884150294, 10.025875200000005 47.5558546962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_83_LVCableDist_mvgd_33535_lvgd_1164120006_87,BranchTee_mvgd_33535_lvgd_1164120006_83,BranchTee_mvgd_33535_lvgd_1164120006_87,0.0764545321851828,0.00955681652314785,0.006100800514824014,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026800099999999 47.55496679624405, 10.027138299999997 47.55492889624404, 10.027802099999999 47.554856496244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_83_LVCableDist_mvgd_33535_lvgd_1164120006_building_445862,BranchTee_mvgd_33535_lvgd_1164120006_83,BranchTee_mvgd_33535_lvgd_1164120006_building_445862,0.026973661889696236,0.023413138520256335,0.002296460992696595,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027468388278614 47.554768369875084, 10.027802099999999 47.554856496244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_83_LVCableDist_mvgd_33535_lvgd_1164120006_building_445875,BranchTee_mvgd_33535_lvgd_1164120006_83,BranchTee_mvgd_33535_lvgd_1164120006_building_445875,0.059124146913523384,0.0513197595209383,0.005033662009578124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028183246324483 47.55532169899763, 10.027802099999999 47.554856496244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_84_LVCableDist_mvgd_33535_lvgd_1164120006_85,BranchTee_mvgd_33535_lvgd_1164120006_84,BranchTee_mvgd_33535_lvgd_1164120006_85,0.03642450042355889,0.004553062552944861,0.0029065459507098055,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.02475150000001 47.55583709624411, 10.025000100000002 47.55600309624413, 10.025108899999994 47.55594929624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_84_LVCableDist_mvgd_33535_lvgd_1164120006_building_445685,BranchTee_mvgd_33535_lvgd_1164120006_84,BranchTee_mvgd_33535_lvgd_1164120006_building_445685,0.026964801819999773,0.023405447979759804,0.0022957066715171533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024819284130109 47.555598793754825, 10.02475150000001 47.55583709624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_84_LVCableDist_mvgd_33535_lvgd_1164120006_building_445736,BranchTee_mvgd_33535_lvgd_1164120006_84,BranchTee_mvgd_33535_lvgd_1164120006_building_445736,0.020670456685317067,0.017941956402855213,0.0017598239969482234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025002699997069 47.555762146312055, 10.02475150000001 47.55583709624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_85_LVCableDist_mvgd_33535_lvgd_1164120006_86,BranchTee_mvgd_33535_lvgd_1164120006_85,BranchTee_mvgd_33535_lvgd_1164120006_86,0.041833476170418625,0.005229184521302328,0.0033381630318422154,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025511502020063 47.55568989700278, 10.025108899999994 47.55594929624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_85_LVCableDist_mvgd_33535_lvgd_1164120006_building_445832,BranchTee_mvgd_33535_lvgd_1164120006_85,BranchTee_mvgd_33535_lvgd_1164120006_building_445832,0.0243582200108909,0.0211429349694533,0.00207378969660402,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025410175129911 47.556029026950036, 10.025108899999994 47.55594929624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_86_LVCableDist_mvgd_33535_lvgd_1164120006_91,BranchTee_mvgd_33535_lvgd_1164120006_86,BranchTee_mvgd_33535_lvgd_1164120006_91,0.041833476170739334,0.005229184521342417,0.003338163031867807,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025914099999996 47.55543049624405, 10.025511502020063 47.55568989700278)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_86_LVCableDist_mvgd_33535_lvgd_1164120006_building_445835,BranchTee_mvgd_33535_lvgd_1164120006_86,BranchTee_mvgd_33535_lvgd_1164120006_building_445835,0.015752042621532812,0.013672772995490481,0.0013410841873665856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025325337781313 47.55562528154031, 10.025511502020063 47.55568989700278)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_87_LVCableDist_mvgd_33535_lvgd_1164120006_94,BranchTee_mvgd_33535_lvgd_1164120006_87,BranchTee_mvgd_33535_lvgd_1164120006_94,0.03369232681992724,0.004211540852490905,0.0026885281870636765,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026800099999999 47.55496679624405, 10.026433100000006 47.555140196244054)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_87_LVCableDist_mvgd_33535_lvgd_1164120006_building_445854,BranchTee_mvgd_33535_lvgd_1164120006_87,BranchTee_mvgd_33535_lvgd_1164120006_building_445854,0.01600894203185238,0.013895761683647865,0.0013629558738012333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026871349999887 47.5548310462658, 10.026800099999999 47.55496679624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_88_LVCableDist_mvgd_33535_lvgd_1164120006_91,BranchTee_mvgd_33535_lvgd_1164120006_88,BranchTee_mvgd_33535_lvgd_1164120006_91,0.03884635039820614,0.004855793799775768,0.003099800989356396,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026303600000002 47.55520129624407, 10.025914099999996 47.55543049624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_88_LVCableDist_mvgd_33535_lvgd_1164120006_94,BranchTee_mvgd_33535_lvgd_1164120006_88,BranchTee_mvgd_33535_lvgd_1164120006_94,0.011883224143867997,0.0014854030179834996,0.0009482391416519488,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026433100000006 47.555140196244054, 10.026303600000002 47.55520129624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_88_LVCableDist_mvgd_33535_lvgd_1164120006_building_445844,BranchTee_mvgd_33535_lvgd_1164120006_88,BranchTee_mvgd_33535_lvgd_1164120006_building_445844,0.0211946938083506,0.01839699422564832,0.0018044560572481217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026044433410677 47.55512696000531, 10.026303600000002 47.55520129624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_89_LVCableDist_mvgd_33535_lvgd_1164120006_90,BranchTee_mvgd_33535_lvgd_1164120006_89,BranchTee_mvgd_33535_lvgd_1164120006_90,0.009064727420603417,0.001133090927575427,0.000723333099212586,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0254981 47.55517489624406, 10.025567199999998 47.55510809624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_89_LVCableDist_mvgd_33535_lvgd_1164120006_91,BranchTee_mvgd_33535_lvgd_1164120006_89,BranchTee_mvgd_33535_lvgd_1164120006_91,0.04434124111366404,0.005542655139208005,0.003538273780277013,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025567199999998 47.55510809624401, 10.025817299999996 47.555344696244035, 10.025914099999996 47.55543049624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_89_LVCableDist_mvgd_33535_lvgd_1164120006_building_445842,BranchTee_mvgd_33535_lvgd_1164120006_89,BranchTee_mvgd_33535_lvgd_1164120006_building_445842,0.014090473171356805,0.012230530712737706,0.0011996228817200165,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025754058166283 47.555114368932834, 10.025567199999998 47.55510809624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_89_LVStation_mvgd_33535_lvgd_1164120006,BusBar_mvgd_33535_lvgd_1164120006_LV,BranchTee_mvgd_33535_lvgd_1164120006_89,0.06601657859551842,0.008252072324439802,0.005267888837602672,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025067200000006 47.55462189624401, 10.025241599999998 47.55475769624405, 10.025567199999998 47.55510809624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_8_LVCableDist_mvgd_33535_lvgd_1164120006_9,BranchTee_mvgd_33535_lvgd_1164120006_8,BranchTee_mvgd_33535_lvgd_1164120006_9,0.02627891003693613,0.0032848637546170163,0.002096963820196195,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022528700000004 47.55521999624407, 10.022780400000002 47.55538379624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_8_LVCableDist_mvgd_33535_lvgd_1164120006_building_445688,BranchTee_mvgd_33535_lvgd_1164120006_8,BranchTee_mvgd_33535_lvgd_1164120006_building_445688,0.012716251637911298,0.011037706421707007,0.0010826255618979416,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02240498129565 47.5552978799059, 10.022528700000004 47.55521999624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_8_LVCableDist_mvgd_33535_lvgd_1164120006_building_445689,BranchTee_mvgd_33535_lvgd_1164120006_8,BranchTee_mvgd_33535_lvgd_1164120006_building_445689,0.014462059326679235,0.012553067495557575,0.001231258672018479,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022720500001832 47.555213746289326, 10.022528700000004 47.55521999624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_90_LVCableDist_mvgd_33535_lvgd_1164120006_92,BranchTee_mvgd_33535_lvgd_1164120006_90,BranchTee_mvgd_33535_lvgd_1164120006_92,0.004964542924768428,0.0006205678655960535,0.0003961529181544455,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025502099999999 47.555219496244014, 10.0254981 47.55517489624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_90_LVCableDist_mvgd_33535_lvgd_1164120006_building_445682,BranchTee_mvgd_33535_lvgd_1164120006_90,BranchTee_mvgd_33535_lvgd_1164120006_building_445682,0.03780431840231848,0.03281414837321244,0.0032185523389973852,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024999215298525 47.55521244679797, 10.0254981 47.55517489624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_90_LVCableDist_mvgd_33535_lvgd_1164120006_building_445828,BranchTee_mvgd_33535_lvgd_1164120006_90,BranchTee_mvgd_33535_lvgd_1164120006_building_445828,0.014375819037468159,0.012478210924522361,0.0012239164186387938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025330741672342 47.55511267888484, 10.0254981 47.55517489624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_92_LVCableDist_mvgd_33535_lvgd_1164120006_93,BranchTee_mvgd_33535_lvgd_1164120006_92,BranchTee_mvgd_33535_lvgd_1164120006_93,0.01484743243163646,0.0018559290539545575,0.0011847724501582587,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025596799999997 47.55533649624408, 10.025534100000005 47.55526599624403, 10.025502099999999 47.555219496244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_92_LVCableDist_mvgd_33535_lvgd_1164120006_building_445830,BranchTee_mvgd_33535_lvgd_1164120006_92,BranchTee_mvgd_33535_lvgd_1164120006_building_445830,0.03871526437028503,0.03360484947340741,0.003296107692454549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025044649990427 47.55537844629749, 10.025502099999999 47.555219496244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_93_LVCableDist_mvgd_33535_lvgd_1164120006_building_445837,BranchTee_mvgd_33535_lvgd_1164120006_93,BranchTee_mvgd_33535_lvgd_1164120006_building_445837,0.008860002538628273,0.00769048220352934,0.0007543154618144348,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025503845635942 47.55538537117826, 10.025596799999997 47.55533649624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_94_LVCableDist_mvgd_33535_lvgd_1164120006_99,BranchTee_mvgd_33535_lvgd_1164120006_94,BranchTee_mvgd_33535_lvgd_1164120006_99,0.047358024335766497,0.005919753041970812,0.0037790023820809754,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026433100000006 47.555140196244054, 10.026415099999992 47.55494469624402, 10.026354800000005 47.55471799624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_95_LVCableDist_mvgd_33535_lvgd_1164120006_98,BranchTee_mvgd_33535_lvgd_1164120006_95,BranchTee_mvgd_33535_lvgd_1164120006_98,0.03028387528592528,0.00378548441074066,0.002416545843060506,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026440099999993 47.55630309624413, 10.026172600000006 47.55609959624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_95_LVCableDist_mvgd_33535_lvgd_1164120006_building_445838,BranchTee_mvgd_33535_lvgd_1164120006_95,BranchTee_mvgd_33535_lvgd_1164120006_building_445838,0.01591829474273622,0.013817079836695037,0.0013552384209614885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026220450010433 47.555960046326994, 10.026172600000006 47.55609959624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_95_LVCableDist_mvgd_33535_lvgd_1164120006_building_445841,BranchTee_mvgd_33535_lvgd_1164120006_95,BranchTee_mvgd_33535_lvgd_1164120006_building_445841,0.03799803066244384,0.03298229061500125,0.0032350444508583596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025787204436398 47.55632031250473, 10.026172600000006 47.55609959624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_96_LVCableDist_mvgd_33535_lvgd_1164120006_97,BranchTee_mvgd_33535_lvgd_1164120006_96,BranchTee_mvgd_33535_lvgd_1164120006_97,0.01870987323744163,0.002338734154680204,0.00149298152793351,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026737499999998 47.55652169624419, 10.026565799999995 47.556399996244146)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_96_LVCableDist_mvgd_33535_lvgd_1164120006_98,BranchTee_mvgd_33535_lvgd_1164120006_96,BranchTee_mvgd_33535_lvgd_1164120006_98,0.014336569832869043,0.0017920712291086304,0.0011440074266013084,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026440099999993 47.55630309624413, 10.026565799999995 47.556399996244146)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_96_LVCableDist_mvgd_33535_lvgd_1164120006_building_445864,BranchTee_mvgd_33535_lvgd_1164120006_96,BranchTee_mvgd_33535_lvgd_1164120006_building_445864,0.012613308692411295,0.010948351945013004,0.0010738612917821234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026425323176031 47.55646180814449, 10.026565799999995 47.556399996244146)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_97_LVCableDist_mvgd_33535_lvgd_1164120006_building_445865,BranchTee_mvgd_33535_lvgd_1164120006_97,BranchTee_mvgd_33535_lvgd_1164120006_building_445865,0.02828735257919407,0.024553422038740454,0.0024083048883173407,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026410294744784 47.556646705130674, 10.026737499999998 47.55652169624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_97_LVCableDist_mvgd_33535_lvgd_1164120006_building_445870,BranchTee_mvgd_33535_lvgd_1164120006_97,BranchTee_mvgd_33535_lvgd_1164120006_building_445870,0.020973224612795213,0.018204758963906244,0.001785600798709009,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026983299178386 47.55643296656751, 10.026737499999998 47.55652169624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_97_LVCableDist_mvgd_33535_lvgd_1164120006_building_445873,BranchTee_mvgd_33535_lvgd_1164120006_97,BranchTee_mvgd_33535_lvgd_1164120006_building_445873,0.02993106015660067,0.02598016021592938,0.002548245484827746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026568545396062 47.556765530162366, 10.026737499999998 47.55652169624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_98_LVCableDist_mvgd_33535_lvgd_1164120006_building_445848,BranchTee_mvgd_33535_lvgd_1164120006_98,BranchTee_mvgd_33535_lvgd_1164120006_building_445848,0.023653576471759905,0.020531304377487597,0.0020137983462272238,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026135954647396 47.55635619206001, 10.026440099999993 47.55630309624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_98_LVCableDist_mvgd_33535_lvgd_1164120006_building_445849,BranchTee_mvgd_33535_lvgd_1164120006_98,BranchTee_mvgd_33535_lvgd_1164120006_building_445849,0.01292204764990565,0.011216337360118104,0.001100146450086211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026269699999068 47.55628949627043, 10.026440099999993 47.55630309624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_98_LVCableDist_mvgd_33535_lvgd_1164120006_building_445850,BranchTee_mvgd_33535_lvgd_1164120006_98,BranchTee_mvgd_33535_lvgd_1164120006_building_445850,0.03511613724095695,0.03048080712515063,0.0029896882269011796,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026093416690777 47.556514446944874, 10.026440099999993 47.55630309624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_99_LVCableDist_mvgd_33535_lvgd_1164120006_building_445827,BranchTee_mvgd_33535_lvgd_1164120006_99,BranchTee_mvgd_33535_lvgd_1164120006_building_445827,0.03411327411111612,0.029610321928448795,0.0029043073072429247,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025926388482445 47.55461833726029, 10.026354800000005 47.55471799624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_99_LVCableDist_mvgd_33535_lvgd_1164120006_building_445847,BranchTee_mvgd_33535_lvgd_1164120006_99,BranchTee_mvgd_33535_lvgd_1164120006_building_445847,0.023925624662235162,0.02076744220682012,0.002036959756795611,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026423449991892 47.5545077462758, 10.026354800000005 47.55471799624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120006_9_LVCableDist_mvgd_33535_lvgd_1164120006_building_445694,BranchTee_mvgd_33535_lvgd_1164120006_9,BranchTee_mvgd_33535_lvgd_1164120006_building_445694,0.018089358447436303,0.01570156313237471,0.0015400766209393577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02258202690074 47.55547558729968, 10.022780400000002 47.55538379624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_10_LVCableDist_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_10,0.015879789214420317,0.005081532548614502,0.0013020723404646678,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019290800000002 47.55555619624409, 10.019428900000005 47.55544819624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_10_LVCableDist_mvgd_33535_lvgd_1164120007_9,BranchTee_mvgd_33535_lvgd_1164120007_9,BranchTee_mvgd_33535_lvgd_1164120007_10,0.031017257660671562,0.0099255224514149,0.0025432776677130823,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019015699999997 47.555763196244065, 10.019127099999995 47.555666296244084, 10.019290800000002 47.55555619624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_10_LVCableDist_mvgd_33535_lvgd_1164120007_building_441819,BranchTee_mvgd_33535_lvgd_1164120007_10,BranchTee_mvgd_33535_lvgd_1164120007_building_441819,0.02271436734949437,0.019716070859361112,0.0019338367480546184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019445850006363 47.55573154636198, 10.019290800000002 47.55555619624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_11_LVCableDist_mvgd_33535_lvgd_1164120007_9,BranchTee_mvgd_33535_lvgd_1164120007_9,BranchTee_mvgd_33535_lvgd_1164120007_11,0.014604174075315491,0.004673335704100957,0.001197477552254375,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018916399999998 47.55587609624412, 10.019015699999997 47.555763196244065)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_11_LVCableDist_mvgd_33535_lvgd_1164120007_building_441827,BranchTee_mvgd_33535_lvgd_1164120007_11,BranchTee_mvgd_33535_lvgd_1164120007_building_441827,0.020805862985239492,0.01805948907118788,0.0017713521048932559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019184891486645 47.55592017802907, 10.018916399999998 47.55587609624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_11_LVStation_mvgd_33535_lvgd_1164120007,BusBar_mvgd_33535_lvgd_1164120007_LV,BranchTee_mvgd_33535_lvgd_1164120007_11,0.015330017113846463,0.004905605476430868,0.0012569934646653388,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018853399999992 47.556007296244125, 10.018916399999998 47.55587609624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_12_LVCableDist_mvgd_33535_lvgd_1164120007_14,BranchTee_mvgd_33535_lvgd_1164120007_12,BranchTee_mvgd_33535_lvgd_1164120007_14,0.025517329213667856,0.008165545348373713,0.002092307909318859,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020563200000002 47.55537559624404, 10.020645799999992 47.555485196244085, 10.020755600000001 47.55556149624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_12_LVCableDist_mvgd_33535_lvgd_1164120007_16,BranchTee_mvgd_33535_lvgd_1164120007_12,BranchTee_mvgd_33535_lvgd_1164120007_16,0.017577833697655115,0.005624906783249637,0.0014413044627960448,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020420000000001 47.555256696244044, 10.020512499999997 47.55530319624408, 10.020563200000002 47.55537559624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_12_LVCableDist_mvgd_33535_lvgd_1164120007_building_445661,BranchTee_mvgd_33535_lvgd_1164120007_12,BranchTee_mvgd_33535_lvgd_1164120007_building_445661,0.011218159603266201,0.009737362535635062,0.0009550822592829519,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02046321771703 47.55545043707341, 10.020563200000002 47.55537559624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_12_LVCableDist_mvgd_33535_lvgd_1164120007_building_445668,BranchTee_mvgd_33535_lvgd_1164120007_12,BranchTee_mvgd_33535_lvgd_1164120007_building_445668,0.012639966344974711,0.01097149078743805,0.0010761308486379587,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020726003761364 47.55534796531496, 10.020563200000002 47.55537559624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_13_LVCableDist_mvgd_33535_lvgd_1164120007_3,BranchTee_mvgd_33535_lvgd_1164120007_3,BranchTee_mvgd_33535_lvgd_1164120007_13,0.0070439620878661605,0.0022540678681171713,0.0005775736741872797,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020111799999995 47.55634059624415, 10.020154800000007 47.556396896244195)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_13_LVCableDist_mvgd_33535_lvgd_1164120007_building_445621,BranchTee_mvgd_33535_lvgd_1164120007_13,BranchTee_mvgd_33535_lvgd_1164120007_building_445621,0.008961890958919114,0.007778921352341791,0.0007629899526478345,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020263121662557 47.556363507344216, 10.020154800000007 47.556396896244195)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_13_LVCableDist_mvgd_33535_lvgd_1164120007_building_445624,BranchTee_mvgd_33535_lvgd_1164120007_13,BranchTee_mvgd_33535_lvgd_1164120007_building_445624,0.015254162369833726,0.013240612937015674,0.0012986960762626323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01998141383558 47.55646786366854, 10.020154800000007 47.556396896244195)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_14_LVCableDist_mvgd_33535_lvgd_1164120007_17,BranchTee_mvgd_33535_lvgd_1164120007_14,BranchTee_mvgd_33535_lvgd_1164120007_17,0.009189576428303134,0.002940664457057003,0.0007535045412954115,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020755600000001 47.55556149624407, 10.020861399999998 47.55560269624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_14_LVCableDist_mvgd_33535_lvgd_1164120007_building_445611,BranchTee_mvgd_33535_lvgd_1164120007_14,BranchTee_mvgd_33535_lvgd_1164120007_building_445611,0.03689861291778574,0.032027996012638026,0.0031414431454215835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020515716261157 47.555851064475256, 10.020755600000001 47.55556149624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_15_LVCableDist_mvgd_33535_lvgd_1164120007_7,BranchTee_mvgd_33535_lvgd_1164120007_7,BranchTee_mvgd_33535_lvgd_1164120007_15,0.015296030886549001,0.0048947298836956804,0.0012542067446451143,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021347099999998 47.55551609624407, 10.0214995 47.55542509624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_15_LVCableDist_mvgd_33535_lvgd_1164120007_building_445629,BranchTee_mvgd_33535_lvgd_1164120007_15,BranchTee_mvgd_33535_lvgd_1164120007_building_445629,0.0177535488306441,0.015410080384999079,0.0015114867435586277,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021497855134967 47.555265312906755, 10.0214995 47.55542509624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_16_LVCableDist_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_16,0.07841703434958287,0.02509345099186652,0.006429849292655544,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019428900000005 47.55544819624408, 10.0200747 47.55530139624409, 10.020339300000007 47.55524479624403, 10.020420000000001 47.555256696244044)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_17_LVCableDist_mvgd_33535_lvgd_1164120007_7,BranchTee_mvgd_33535_lvgd_1164120007_7,BranchTee_mvgd_33535_lvgd_1164120007_17,0.03931635545481548,0.012581233745540954,0.0032237669073783837,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020861399999998 47.55560269624407, 10.020993199999992 47.555617596244055, 10.021171900000004 47.555585696244066, 10.021235500000007 47.5555659962441, 10.021347099999998 47.55551609624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_17_LVCableDist_mvgd_33535_lvgd_1164120007_building_445620,BranchTee_mvgd_33535_lvgd_1164120007_17,BranchTee_mvgd_33535_lvgd_1164120007_building_445620,0.020167999909643367,0.01750582392157044,0.0017170462535862246,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020722760242975 47.55575799388701, 10.020861399999998 47.55560269624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_18_LVCableDist_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_18,0.025513818852977124,0.00816442203295268,0.0020920200752992295,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019471600000001 47.55522439624408, 10.019482899999995 47.55530349624406, 10.019470600000004 47.555369796244065, 10.019428900000005 47.55544819624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_18_LVCableDist_mvgd_33535_lvgd_1164120007_building_441755,BranchTee_mvgd_33535_lvgd_1164120007_18,BranchTee_mvgd_33535_lvgd_1164120007_building_441755,0.033491208801337,0.029070369239560516,0.0028513464328663103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019141020685968 47.55502278881879, 10.019471600000001 47.55522439624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_18_LVCableDist_mvgd_33535_lvgd_1164120007_building_445602,BranchTee_mvgd_33535_lvgd_1164120007_18,BranchTee_mvgd_33535_lvgd_1164120007_building_445602,0.02700597899372022,0.02344118976654915,0.002299212379182104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019609138635179 47.554999925126445, 10.019471600000001 47.55522439624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_18_LVCableDist_mvgd_33535_lvgd_1164120007_building_445639,BranchTee_mvgd_33535_lvgd_1164120007_18,BranchTee_mvgd_33535_lvgd_1164120007_building_445639,0.022921280977865482,0.01989567188878724,0.0019514527869281943,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019772800681325 47.5551948422718, 10.019471600000001 47.55522439624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_19_LVCableDist_mvgd_33535_lvgd_1164120007_21,BranchTee_mvgd_33535_lvgd_1164120007_19,BranchTee_mvgd_33535_lvgd_1164120007_21,0.03268418998010217,0.008269100064965848,0.0026286185249285656,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020752200000004 47.554933796244015, 10.020968300000003 47.55518889624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_19_LVCableDist_mvgd_33535_lvgd_1164120007_22,BranchTee_mvgd_33535_lvgd_1164120007_19,BranchTee_mvgd_33535_lvgd_1164120007_22,0.00994539335674447,0.002516184519256351,0.0007998559924891944,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020968300000003 47.55518889624408, 10.021089199999995 47.55522489624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_19_LVCableDist_mvgd_33535_lvgd_1164120007_building_445627,BranchTee_mvgd_33535_lvgd_1164120007_19,BranchTee_mvgd_33535_lvgd_1164120007_building_445627,0.015732760198135583,0.013656035851981685,0.0013394425365830368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021001500000066 47.55504909632756, 10.020968300000003 47.55518889624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_1_LVCableDist_mvgd_33535_lvgd_1164120007_3,BranchTee_mvgd_33535_lvgd_1164120007_1,BranchTee_mvgd_33535_lvgd_1164120007_3,0.055849104363867905,0.01787171339643773,0.004579379049054434,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019770347052184 47.55589439682727, 10.020111799999995 47.55634059624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_1_LVCableDist_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_1,BranchTee_mvgd_33535_lvgd_1164120007_8,0.055849104363867905,0.01787171339643773,0.004579379049054434,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019428900000005 47.55544819624408, 10.019770347052184 47.55589439682727)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_1_LVCableDist_mvgd_33535_lvgd_1164120007_building_445616,BranchTee_mvgd_33535_lvgd_1164120007_1,BranchTee_mvgd_33535_lvgd_1164120007_building_445616,0.03550500437730659,0.03081834379950212,0.0030227952708620776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02024141640205 47.555906846466755, 10.019770347052184 47.55589439682727)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_1_LVCableDist_mvgd_33535_lvgd_1164120007_building_445643,BranchTee_mvgd_33535_lvgd_1164120007_1,BranchTee_mvgd_33535_lvgd_1164120007_building_445643,0.01674836941930532,0.014537584655957017,0.0014259086222697635,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019664355190672 47.55602691440912, 10.019770347052184 47.55589439682727)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_1_LVCableDist_mvgd_33535_lvgd_1164120007_building_445644,BranchTee_mvgd_33535_lvgd_1164120007_1,BranchTee_mvgd_33535_lvgd_1164120007_building_445644,0.015521280374587098,0.0134724713651416,0.0013214377448158882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019976326447907 47.555898930912825, 10.019770347052184 47.55589439682727)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_20_LVCableDist_mvgd_33535_lvgd_1164120007_24,BranchTee_mvgd_33535_lvgd_1164120007_20,BranchTee_mvgd_33535_lvgd_1164120007_24,0.009336996073177024,0.002362260006513787,0.0007509257797142959,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020622100000002 47.555060296244065, 10.0205356 47.55512049624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_20_LVCableDist_mvgd_33535_lvgd_1164120007_30,BranchTee_mvgd_33535_lvgd_1164120007_20,BranchTee_mvgd_33535_lvgd_1164120007_30,0.014235630912174188,0.0036016146207800697,0.001144897369418296,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020692699999994 47.554944096244, 10.020678299999997 47.55498489624404, 10.020662900000003 47.55502439624404, 10.020622100000002 47.555060296244065)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_20_LVCableDist_mvgd_33535_lvgd_1164120007_building_445656,BranchTee_mvgd_33535_lvgd_1164120007_20,BranchTee_mvgd_33535_lvgd_1164120007_building_445656,0.013466291741953646,0.011688741232015765,0.0011464818469264608,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020733532848622 47.55515507945745, 10.020622100000002 47.555060296244065)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_21_LVCableDist_mvgd_33535_lvgd_1164120007_26,BranchTee_mvgd_33535_lvgd_1164120007_21,BranchTee_mvgd_33535_lvgd_1164120007_26,0.03533962290544961,0.008940924595078751,0.0028421811123300884,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020752200000004 47.554933796244015, 10.020883600000001 47.554912196244075, 10.021178200000003 47.554805496244015)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_21_LVCableDist_mvgd_33535_lvgd_1164120007_30,BranchTee_mvgd_33535_lvgd_1164120007_21,BranchTee_mvgd_33535_lvgd_1164120007_30,0.004625066524935869,0.0011701418308087748,0.00037196992043782653,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020752200000004 47.554933796244015, 10.020692699999994 47.554944096244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_22_LVCableDist_mvgd_33535_lvgd_1164120007_25,BranchTee_mvgd_33535_lvgd_1164120007_22,BranchTee_mvgd_33535_lvgd_1164120007_25,0.025783940150807812,0.006523336858154377,0.002073667506134444,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021089199999995 47.55522489624407, 10.021368500000005 47.555090696244065)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_22_LVCableDist_mvgd_33535_lvgd_1164120007_27,BranchTee_mvgd_33535_lvgd_1164120007_22,BranchTee_mvgd_33535_lvgd_1164120007_27,0.006395865242977688,0.0016181539064733551,0.0005143860034736384,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021089199999995 47.55522489624407, 10.0211376 47.555272196244076)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_23_LVCableDist_mvgd_33535_lvgd_1164120007_26,BranchTee_mvgd_33535_lvgd_1164120007_23,BranchTee_mvgd_33535_lvgd_1164120007_26,0.03865387442988431,0.009779430230760732,0.003108729035307697,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021178200000003 47.554805496244015, 10.0209894 47.55448199624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_23_LVCableDist_mvgd_33535_lvgd_1164120007_building_445674,BranchTee_mvgd_33535_lvgd_1164120007_23,BranchTee_mvgd_33535_lvgd_1164120007_building_445674,0.01994112155165202,0.017308893506833952,0.0016977304743144004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021180599991164 47.55460614626983, 10.0209894 47.55448199624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_24_LVCableDist_mvgd_33535_lvgd_1164120007_building_445652,BranchTee_mvgd_33535_lvgd_1164120007_24,BranchTee_mvgd_33535_lvgd_1164120007_building_445652,0.012413996294235825,0.010775348783396695,0.0010568924000668454,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020372542790572 47.55510416482062, 10.0205356 47.55512049624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_24_LVStation_mvgd_33535_lvgd_1164120007,BusBar_mvgd_33535_lvgd_1164120007_LV,BranchTee_mvgd_33535_lvgd_1164120007_24,0.1727068462892021,0.04369483211116813,0.013889908723886565,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.018853399999992 47.556007296244125, 10.018916399999998 47.55587609624412, 10.019015699999997 47.555763196244065, 10.019127099999995 47.555666296244084, 10.019290800000002 47.55555619624409, 10.019428900000005 47.55544819624408, 10.0200747 47.55530139624409, 10.020339300000007 47.55524479624403, 10.020420000000001 47.555256696244044, 10.0205356 47.55512049624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_25_LVCableDist_mvgd_33535_lvgd_1164120007_building_445604,BranchTee_mvgd_33535_lvgd_1164120007_25,BranchTee_mvgd_33535_lvgd_1164120007_building_445604,0.014507706602266269,0.012592689330767121,0.0012351449514653395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021387968926176 47.55496079105936, 10.021368500000005 47.555090696244065)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_25_LVCableDist_mvgd_33535_lvgd_1164120007_building_445628,BranchTee_mvgd_33535_lvgd_1164120007_25,BranchTee_mvgd_33535_lvgd_1164120007_building_445628,0.017318621850359386,0.015032563766111947,0.0014744582952530344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021169913955896 47.55501211227773, 10.021368500000005 47.555090696244065)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_26_LVCableDist_mvgd_33535_lvgd_1164120007_29,BranchTee_mvgd_33535_lvgd_1164120007_26,BranchTee_mvgd_33535_lvgd_1164120007_29,0.020052878373546464,0.005073378228507256,0.0016127481697705782,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021178200000003 47.554805496244015, 10.021405400000008 47.55471139624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_26_LVCableDist_mvgd_33535_lvgd_1164120007_building_445603,BranchTee_mvgd_33535_lvgd_1164120007_26,BranchTee_mvgd_33535_lvgd_1164120007_building_445603,0.013257165271763835,0.011507219455891008,0.001128677412982893,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021329431065032 47.55486655149068, 10.021178200000003 47.554805496244015)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_26_LVCableDist_mvgd_33535_lvgd_1164120007_building_445683,BranchTee_mvgd_33535_lvgd_1164120007_26,BranchTee_mvgd_33535_lvgd_1164120007_building_445683,0.018458524397996546,0.016021999177461003,0.0015715063618755411,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020991685430545 47.554697723975856, 10.021178200000003 47.554805496244015)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_27_LVCableDist_mvgd_33535_lvgd_1164120007_building_445633,BranchTee_mvgd_33535_lvgd_1164120007_27,BranchTee_mvgd_33535_lvgd_1164120007_building_445633,0.01683040596890911,0.014608792381013107,0.0014328929811940699,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020989334945183 47.55538553335887, 10.0211376 47.555272196244076)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_28_LVCableDist_mvgd_33535_lvgd_1164120007_29,BranchTee_mvgd_33535_lvgd_1164120007_28,BranchTee_mvgd_33535_lvgd_1164120007_29,0.017692827331989333,0.004476285314993301,0.001422941603005706,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021613099999998 47.554636996243985, 10.021405400000008 47.55471139624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_28_LVCableDist_mvgd_33535_lvgd_1164120007_building_445613,BranchTee_mvgd_33535_lvgd_1164120007_28,BranchTee_mvgd_33535_lvgd_1164120007_building_445613,0.012659785585588538,0.01098869388829085,0.0010778182025152573,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021591788113463 47.554523974020015, 10.021613099999998 47.554636996243985)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_28_LVCableDist_mvgd_33535_lvgd_1164120007_building_445617,BranchTee_mvgd_33535_lvgd_1164120007_28,BranchTee_mvgd_33535_lvgd_1164120007_building_445617,0.013659431885165038,0.011856386876323254,0.0011629252503776704,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021733846332248 47.554728726994455, 10.021613099999998 47.554636996243985)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_29_LVCableDist_mvgd_33535_lvgd_1164120007_building_445605,BranchTee_mvgd_33535_lvgd_1164120007_29,BranchTee_mvgd_33535_lvgd_1164120007_building_445605,0.01672725815017319,0.01451926007435033,0.001424111268752599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021489015566427 47.554850869093315, 10.021405400000008 47.55471139624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_29_LVCableDist_mvgd_33535_lvgd_1164120007_building_445681,BranchTee_mvgd_33535_lvgd_1164120007_29,BranchTee_mvgd_33535_lvgd_1164120007_building_445681,0.015157008290459824,0.013156283196119127,0.0012904246537736917,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0213833999946 47.55457579631122, 10.021405400000008 47.55471139624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_29_LVCableDist_mvgd_33535_lvgd_1164120007_building_445692,BranchTee_mvgd_33535_lvgd_1164120007_29,BranchTee_mvgd_33535_lvgd_1164120007_building_445692,0.013324761147292084,0.011565892675849529,0.0011344323339147482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021231262403823 47.55469021525767, 10.021405400000008 47.55471139624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_2_LVCableDist_mvgd_33535_lvgd_1164120007_5,BranchTee_mvgd_33535_lvgd_1164120007_2,BranchTee_mvgd_33535_lvgd_1164120007_5,0.027263301499802082,0.008724256479936666,0.0022354698990843655,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018712999999995 47.55547319624408, 10.018573300000005 47.55546309624408, 10.018361300000002 47.555419596244064)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_2_LVCableDist_mvgd_33535_lvgd_1164120007_building_441760,BranchTee_mvgd_33535_lvgd_1164120007_2,BranchTee_mvgd_33535_lvgd_1164120007_building_441760,0.014030494654915232,0.012178469360466421,0.0011945164811144504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018397837480002 47.555295770032025, 10.018361300000002 47.555419596244064)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_30_LVCableDist_mvgd_33535_lvgd_1164120007_31,BranchTee_mvgd_33535_lvgd_1164120007_30,BranchTee_mvgd_33535_lvgd_1164120007_31,0.024405034547346185,0.0061744737404785845,0.0019627693374604255,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020612100000003 47.554732096244024, 10.020634600000001 47.55481879624404, 10.020668300000002 47.554904796244045, 10.020692699999994 47.554944096244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_31_LVCableDist_mvgd_33535_lvgd_1164120007_building_445631,BranchTee_mvgd_33535_lvgd_1164120007_31,BranchTee_mvgd_33535_lvgd_1164120007_building_445631,0.01306334982145255,0.011338987645020813,0.0011121765158024544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020467126543963 47.55466755052218, 10.020612100000003 47.554732096244024)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_31_LVCableDist_mvgd_33535_lvgd_1164120007_building_445634,BranchTee_mvgd_33535_lvgd_1164120007_31,BranchTee_mvgd_33535_lvgd_1164120007_building_445634,0.013516208783529967,0.011732069224104011,0.001150731642127409,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020791472990854 47.55472828384745, 10.020612100000003 47.554732096244024)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_32_LVCableDist_mvgd_33535_lvgd_1164120007_37,BranchTee_mvgd_33535_lvgd_1164120007_32,BranchTee_mvgd_33535_lvgd_1164120007_37,0.0490807434345739,0.00490807434345739,0.004301948513889242,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.018620899999993 47.556285496244165, 10.018104199999998 47.55655469624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_32_LVCableDist_mvgd_33535_lvgd_1164120007_building_441796,BranchTee_mvgd_33535_lvgd_1164120007_32,BranchTee_mvgd_33535_lvgd_1164120007_building_441796,0.03970954075084652,0.03446788137173478,0.003380757560657695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017614250000738 47.556422646251015, 10.018104199999998 47.55655469624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_32_LVCableDist_mvgd_33535_lvgd_1164120007_building_441803,BranchTee_mvgd_33535_lvgd_1164120007_32,BranchTee_mvgd_33535_lvgd_1164120007_building_441803,0.02138742651295553,0.0185642862132454,0.0018208647725331314,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017839323463026 47.556485287666014, 10.018104199999998 47.55655469624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_32_LVCableDist_mvgd_33535_lvgd_1164120007_building_441837,BranchTee_mvgd_33535_lvgd_1164120007_32,BranchTee_mvgd_33535_lvgd_1164120007_building_441837,0.020429191657460127,0.01773253835867539,0.0017392833774490606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0183438904445 47.556640781233675, 10.018104199999998 47.55655469624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_33_LVCableDist_mvgd_33535_lvgd_1164120007_38,BranchTee_mvgd_33535_lvgd_1164120007_33,BranchTee_mvgd_33535_lvgd_1164120007_38,0.10082298721209182,0.010082298721209183,0.008837178690683742,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0190778 47.55739689624424, 10.019104900000004 47.55747399624429, 10.0190988 47.557552796244245, 10.019073399999998 47.55760439624425, 10.018952100000005 47.55777079624425, 10.018891900000003 47.55782879624432, 10.018915699999999 47.5579425962443, 10.0188824 47.558033296244304, 10.018797799999994 47.5581007962443, 10.018770900000002 47.55824099624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_33_LVCableDist_mvgd_33535_lvgd_1164120007_building_441781,BranchTee_mvgd_33535_lvgd_1164120007_33,BranchTee_mvgd_33535_lvgd_1164120007_building_441781,0.0305892824575963,0.026551497173193588,0.002604284662783664,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01916587484793 47.55830520436879, 10.018770900000002 47.55824099624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_34_LVCableDist_mvgd_33535_lvgd_1164120007_37,BranchTee_mvgd_33535_lvgd_1164120007_34,BranchTee_mvgd_33535_lvgd_1164120007_37,0.01609540398161001,0.0016095403981610011,0.001410769161054687,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0188285 47.556251096244154, 10.018620899999993 47.556285496244165)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_34_LVCableDist_mvgd_33535_lvgd_1164120007_42,BranchTee_mvgd_33535_lvgd_1164120007_34,BranchTee_mvgd_33535_lvgd_1164120007_42,0.10598663675778021,0.010598663675778022,0.009289774819732411,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.018605699999998 47.55718989624418, 10.0186511 47.557056596244244, 10.018695299999996 47.55693689624422, 10.018757799999998 47.5567601962442, 10.018809999999998 47.5565221962442, 10.0188285 47.556251096244154)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_34_LVStation_mvgd_33535_lvgd_1164120007,BusBar_mvgd_33535_lvgd_1164120007_LV,BranchTee_mvgd_33535_lvgd_1164120007_34,0.0271633283482197,0.0027163328348219704,0.0023808775467242214,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0188285 47.556251096244154, 10.0188362 47.5561264962441, 10.018853399999992 47.556007296244125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_35_LVCableDist_mvgd_33535_lvgd_1164120007_38,BranchTee_mvgd_33535_lvgd_1164120007_35,BranchTee_mvgd_33535_lvgd_1164120007_38,0.11796237608015707,0.011796237608015708,0.010339453581206358,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0190778 47.55739689624424, 10.019265900000002 47.55716449624423, 10.019616200000003 47.556731596244155, 10.0197168 47.55658649624419, 10.019745500000003 47.55651089624416, 10.019727300000005 47.5564475962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_35_LVCableDist_mvgd_33535_lvgd_1164120007_building_441832,BranchTee_mvgd_33535_lvgd_1164120007_35,BranchTee_mvgd_33535_lvgd_1164120007_building_441832,0.032157684355461714,0.027912870020540766,0.0027378139475373628,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019335457208951 47.55633261156691, 10.019727300000005 47.5564475962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_35_LVCableDist_mvgd_33535_lvgd_1164120007_building_445651,BranchTee_mvgd_33535_lvgd_1164120007_35,BranchTee_mvgd_33535_lvgd_1164120007_building_445651,0.013434476710969883,0.011661125785121858,0.0011437732055141667,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019776868030338 47.556331443727196, 10.019727300000005 47.5564475962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_36_LVCableDist_mvgd_33535_lvgd_1164120007_41,BranchTee_mvgd_33535_lvgd_1164120007_36,BranchTee_mvgd_33535_lvgd_1164120007_41,0.03779043611854911,0.0037790436118549115,0.003312348165959073,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.020454299999997 47.55764229624422, 10.020948300000006 47.55758259624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_36_LVCableDist_mvgd_33535_lvgd_1164120007_building_445726,BranchTee_mvgd_33535_lvgd_1164120007_36,BranchTee_mvgd_33535_lvgd_1164120007_building_445726,0.025841337899023407,0.022430281296352318,0.0022000581428978433,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021112149979604 47.55737824629061, 10.020948300000006 47.55758259624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_36_LVCableDist_mvgd_33535_lvgd_1164120007_building_445743,BranchTee_mvgd_33535_lvgd_1164120007_36,BranchTee_mvgd_33535_lvgd_1164120007_building_445743,0.04358918590867855,0.03783541336873298,0.0037110595347426023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021217646041961 47.557929840919314, 10.020948300000006 47.55758259624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_36_LVCableDist_mvgd_33535_lvgd_1164120007_building_445744,BranchTee_mvgd_33535_lvgd_1164120007_36,BranchTee_mvgd_33535_lvgd_1164120007_building_445744,0.02409226088476787,0.02091208244797851,0.0020511466916871934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020754504970643 47.5574100772317, 10.020948300000006 47.55758259624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_37_LVCableDist_mvgd_33535_lvgd_1164120007_building_441814,BranchTee_mvgd_33535_lvgd_1164120007_37,BranchTee_mvgd_33535_lvgd_1164120007_building_441814,0.012747642073977893,0.011064953320212812,0.00108529805450445,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018507866375915 47.55620009722253, 10.018620899999993 47.556285496244165)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_37_LVCableDist_mvgd_33535_lvgd_1164120007_building_441840,BranchTee_mvgd_33535_lvgd_1164120007_37,BranchTee_mvgd_33535_lvgd_1164120007_building_441840,0.01600239910578699,0.013890082423823108,0.001362398827651967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018635813731647 47.556429167249036, 10.018620899999993 47.556285496244165)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_38_LVCableDist_mvgd_33535_lvgd_1164120007_42,BranchTee_mvgd_33535_lvgd_1164120007_38,BranchTee_mvgd_33535_lvgd_1164120007_42,0.043161754795841736,0.004316175479584174,0.0037831465847362263,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.018605699999998 47.55718989624418, 10.018683699999999 47.55721069624421, 10.018823700000002 47.5572479962442, 10.018958900000001 47.55730719624426, 10.0190778 47.55739689624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_39_LVCableDist_mvgd_33535_lvgd_1164120007_40,BranchTee_mvgd_33535_lvgd_1164120007_39,BranchTee_mvgd_33535_lvgd_1164120007_40,0.11104356585536859,0.01110435658553686,0.009733016855077967,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.019281000000001 47.55858869624433, 10.019332000000004 47.557944896244315, 10.019451499999999 47.55781759624426, 10.019563199999999 47.557756296244264, 10.019709300000004 47.557717396244286)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_39_LVCableDist_mvgd_33535_lvgd_1164120007_42,BranchTee_mvgd_33535_lvgd_1164120007_39,BranchTee_mvgd_33535_lvgd_1164120007_42,0.23309817160341176,0.023309817160341178,0.02043115614693831,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.018605699999998 47.55718989624418, 10.018490800000006 47.557465196244245, 10.018455899999998 47.55760939624427, 10.018439799999998 47.55776059624424, 10.018443100000002 47.55788249624428, 10.018462999999995 47.558006696244306, 10.018480200000004 47.55809699624432, 10.018534500000001 47.55822409624431, 10.018700799999998 47.55846659624434, 10.018841099999998 47.55861969624434, 10.018967300000002 47.55873469624436, 10.019080399999993 47.558852596244364, 10.019223700000001 47.55876699624438, 10.019249700000003 47.55871089624437, 10.019281000000001 47.55858869624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_39_LVCableDist_mvgd_33535_lvgd_1164120007_building_441783,BranchTee_mvgd_33535_lvgd_1164120007_39,BranchTee_mvgd_33535_lvgd_1164120007_building_441783,0.03481656889439294,0.030220781800333073,0.002964183828375533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019467100000291 47.558301846274944, 10.019281000000001 47.55858869624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_39_LVCableDist_mvgd_33535_lvgd_1164120007_building_441820,BranchTee_mvgd_33535_lvgd_1164120007_39,BranchTee_mvgd_33535_lvgd_1164120007_building_441820,0.013361549669803635,0.011597825113389556,0.0011375644042755392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0191166613545 47.558543375193935, 10.019281000000001 47.55858869624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_3_LVCableDist_mvgd_33535_lvgd_1164120007_building_445610,BranchTee_mvgd_33535_lvgd_1164120007_3,BranchTee_mvgd_33535_lvgd_1164120007_building_445610,0.02549339692685506,0.022128268532510192,0.0021704354363623704,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020164257026671 47.55611391980729, 10.020111799999995 47.55634059624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_3_LVCableDist_mvgd_33535_lvgd_1164120007_building_445645,BranchTee_mvgd_33535_lvgd_1164120007_3,BranchTee_mvgd_33535_lvgd_1164120007_building_445645,0.024870512880417583,0.021587605180202463,0.0021174048570711287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019846349993575 47.55620744628194, 10.020111799999995 47.55634059624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_40_LVCableDist_mvgd_33535_lvgd_1164120007_41,BranchTee_mvgd_33535_lvgd_1164120007_40,BranchTee_mvgd_33535_lvgd_1164120007_41,0.05672388512824538,0.0056723885128245385,0.00497187320837488,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.019709300000004 47.557717396244286, 10.020454299999997 47.55764229624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_40_LVCableDist_mvgd_33535_lvgd_1164120007_building_445741,BranchTee_mvgd_33535_lvgd_1164120007_40,BranchTee_mvgd_33535_lvgd_1164120007_building_445741,0.023343588272125626,0.020262234620205044,0.001987406830994051,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019910159417872 47.55755737788348, 10.019709300000004 47.557717396244286)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_40_LVCableDist_mvgd_33535_lvgd_1164120007_building_445754,BranchTee_mvgd_33535_lvgd_1164120007_40,BranchTee_mvgd_33535_lvgd_1164120007_building_445754,0.0371902262023519,0.03228111634364145,0.003166270272553852,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019864549986695 47.55803514628195, 10.019709300000004 47.557717396244286)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_41_LVCableDist_mvgd_33535_lvgd_1164120007_building_445713,BranchTee_mvgd_33535_lvgd_1164120007_41,BranchTee_mvgd_33535_lvgd_1164120007_building_445713,0.03165100126108803,0.027473069094624412,0.0026946763874001367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020482712135143 47.557926512479426, 10.020454299999997 47.55764229624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_41_LVCableDist_mvgd_33535_lvgd_1164120007_building_445750,BranchTee_mvgd_33535_lvgd_1164120007_41,BranchTee_mvgd_33535_lvgd_1164120007_building_445750,0.01967955432707357,0.01708185315589986,0.0016754613834260859,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020394328478506 47.5574699026955, 10.020454299999997 47.55764229624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_43_LVCableDist_mvgd_33535_lvgd_1164120007_48,BranchTee_mvgd_33535_lvgd_1164120007_43,BranchTee_mvgd_33535_lvgd_1164120007_48,0.0289207711464338,0.00289207711464338,0.002534918172537088,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.021747399999999 47.55733989624424, 10.022112299999995 47.557258796244234)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_43_LVCableDist_mvgd_33535_lvgd_1164120007_50,BranchTee_mvgd_33535_lvgd_1164120007_43,BranchTee_mvgd_33535_lvgd_1164120007_50,0.022982813108336157,0.002298281310833616,0.0020144535672773326,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022112299999995 47.557258796244234, 10.022356999999998 47.55713519624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_43_LVCableDist_mvgd_33535_lvgd_1164120007_building_445777,BranchTee_mvgd_33535_lvgd_1164120007_43,BranchTee_mvgd_33535_lvgd_1164120007_building_445777,0.03154405205781807,0.027380237186186086,0.0026855710358719017,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02232931949321 47.557501618945395, 10.022112299999995 47.557258796244234)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_44_LVCableDist_mvgd_33535_lvgd_1164120007_45,BranchTee_mvgd_33535_lvgd_1164120007_44,BranchTee_mvgd_33535_lvgd_1164120007_45,0.06124105504868706,0.006124105504868706,0.0053678051170293105,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.021308999999999 47.55699209624424, 10.021117599999998 47.55645639624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_44_LVCableDist_mvgd_33535_lvgd_1164120007_53,BranchTee_mvgd_33535_lvgd_1164120007_44,BranchTee_mvgd_33535_lvgd_1164120007_53,0.04255891118637793,0.0042558911186377935,0.0037303070801085604,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.021308999999999 47.55699209624424, 10.020773901274737 47.557115247558926)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_44_LVCableDist_mvgd_33535_lvgd_1164120007_56,BranchTee_mvgd_33535_lvgd_1164120007_44,BranchTee_mvgd_33535_lvgd_1164120007_56,0.05223564680114432,0.005223564680114433,0.0045784771664630144,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.021445799999995 47.557452996244244, 10.021308999999999 47.55699209624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_44_LVCableDist_mvgd_33535_lvgd_1164120007_building_445647,BranchTee_mvgd_33535_lvgd_1164120007_44,BranchTee_mvgd_33535_lvgd_1164120007_building_445647,0.032881149814540246,0.028540838039020935,0.0027994077427414108,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021413538163905 47.55670476417151, 10.021308999999999 47.55699209624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_44_LVCableDist_mvgd_33535_lvgd_1164120007_building_445649,BranchTee_mvgd_33535_lvgd_1164120007_44,BranchTee_mvgd_33535_lvgd_1164120007_building_445649,0.023647241004959494,0.02052580519230484,0.0020132589625707826,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021075049996519 47.556850146273895, 10.021308999999999 47.55699209624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_44_LVCableDist_mvgd_33535_lvgd_1164120007_building_445650,BranchTee_mvgd_33535_lvgd_1164120007_44,BranchTee_mvgd_33535_lvgd_1164120007_building_445650,0.014234616937653492,0.01235564750188323,0.0012118948727457201,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021479949991404 47.55693744628283, 10.021308999999999 47.55699209624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_45_LVCableDist_mvgd_33535_lvgd_1164120007_46,BranchTee_mvgd_33535_lvgd_1164120007_45,BranchTee_mvgd_33535_lvgd_1164120007_46,0.021908905374813496,0.00219089053748135,0.0019203250872464536,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.021117599999998 47.55645639624418, 10.021095000000004 47.55634759624415, 10.021116400000004 47.55626149624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_45_LVCableDist_mvgd_33535_lvgd_1164120007_building_445641,BranchTee_mvgd_33535_lvgd_1164120007_45,BranchTee_mvgd_33535_lvgd_1164120007_building_445641,0.02162062155859654,0.018766699512861796,0.0018407183366578172,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020916573293347 47.5565953155094, 10.021117599999998 47.55645639624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_45_LVCableDist_mvgd_33535_lvgd_1164120007_building_445646,BranchTee_mvgd_33535_lvgd_1164120007_45,BranchTee_mvgd_33535_lvgd_1164120007_building_445646,0.021992110562422992,0.019089151968183157,0.0018723458557537338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02140914998835 47.55644529629924, 10.021117599999998 47.55645639624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_46_LVCableDist_mvgd_33535_lvgd_1164120007_building_445623,BranchTee_mvgd_33535_lvgd_1164120007_46,BranchTee_mvgd_33535_lvgd_1164120007_building_445623,0.03673209096806624,0.0318834549602815,0.0031272659393928874,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020747299969818 47.55604539629556, 10.021116400000004 47.55626149624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_47_LVCableDist_mvgd_33535_lvgd_1164120007_52,BranchTee_mvgd_33535_lvgd_1164120007_47,BranchTee_mvgd_33535_lvgd_1164120007_52,0.026265251380891922,0.002626525138089192,0.002302160709842889,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.020393100000005 47.55702639624422, 10.020238799999996 47.55723839624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_47_LVCableDist_mvgd_33535_lvgd_1164120007_building_445625,BranchTee_mvgd_33535_lvgd_1164120007_47,BranchTee_mvgd_33535_lvgd_1164120007_building_445625,0.022875274529055276,0.01985573829121998,0.001947535928492837,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02051131648563 47.556836745138085, 10.020393100000005 47.55702639624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_47_LVCableDist_mvgd_33535_lvgd_1164120007_building_445630,BranchTee_mvgd_33535_lvgd_1164120007_47,BranchTee_mvgd_33535_lvgd_1164120007_building_445630,0.01418994344456861,0.012316870909885553,0.0012080914983764388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020389491100053 47.55689870607069, 10.020393100000005 47.55702639624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_47_LVCableDist_mvgd_33535_lvgd_1164120007_building_445632,BranchTee_mvgd_33535_lvgd_1164120007_47,BranchTee_mvgd_33535_lvgd_1164120007_building_445632,0.03269271512491117,0.028377276728422895,0.0027833649482490036,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020634302721058 47.556781754732064, 10.020393100000005 47.55702639624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_48_LVCableDist_mvgd_33535_lvgd_1164120007_56,BranchTee_mvgd_33535_lvgd_1164120007_48,BranchTee_mvgd_33535_lvgd_1164120007_56,0.02595826700908831,0.0025958267009088313,0.0022752533961053084,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.021445799999995 47.557452996244244, 10.021747399999999 47.55733989624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_48_LVCableDist_mvgd_33535_lvgd_1164120007_building_445730,BranchTee_mvgd_33535_lvgd_1164120007_48,BranchTee_mvgd_33535_lvgd_1164120007_building_445730,0.01601750360885962,0.013903193132490152,0.0013636847821605618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021852449985793 47.55721454628002, 10.021747399999999 47.55733989624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_48_LVCableDist_mvgd_33535_lvgd_1164120007_building_445732,BranchTee_mvgd_33535_lvgd_1164120007_48,BranchTee_mvgd_33535_lvgd_1164120007_building_445732,0.011944911491239878,0.010368183174396214,0.0010169558517126726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021599949002887 47.557300291281955, 10.021747399999999 47.55733989624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_48_LVCableDist_mvgd_33535_lvgd_1164120007_building_445738,BranchTee_mvgd_33535_lvgd_1164120007_48,BranchTee_mvgd_33535_lvgd_1164120007_building_445738,0.03137466830959987,0.027233212092732686,0.0026711501844439225,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021997416469615 47.557565770394866, 10.021747399999999 47.55733989624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_49_LVCableDist_mvgd_33535_lvgd_1164120007_51,BranchTee_mvgd_33535_lvgd_1164120007_49,BranchTee_mvgd_33535_lvgd_1164120007_51,0.016436897496430725,0.0016436897496430727,0.0014407012161904071,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0226949 47.5569168962442, 10.022783600000004 47.55692859624421, 10.022875899999999 47.55698859624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_49_LVCableDist_mvgd_33535_lvgd_1164120007_54,BranchTee_mvgd_33535_lvgd_1164120007_49,BranchTee_mvgd_33535_lvgd_1164120007_54,0.0487874338962286,0.0048787433896228605,0.004276239805253316,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022875899999999 47.55698859624418, 10.023161162314413 47.55738283039976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_49_LVCableDist_mvgd_33535_lvgd_1164120007_building_445722,BranchTee_mvgd_33535_lvgd_1164120007_49,BranchTee_mvgd_33535_lvgd_1164120007_building_445722,0.021015845818182007,0.018241754170181982,0.0017892294471302998,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023141513896123 47.55704657983562, 10.022875899999999 47.55698859624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_4_LVCableDist_mvgd_33535_lvgd_1164120007_5,BranchTee_mvgd_33535_lvgd_1164120007_4,BranchTee_mvgd_33535_lvgd_1164120007_5,0.031374425264956915,0.010039816084786213,0.002572563828390056,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019129500000002 47.55547869624405, 10.018712999999995 47.55547319624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_4_LVCableDist_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_4,BranchTee_mvgd_33535_lvgd_1164120007_8,0.022802344222024675,0.007296750151047896,0.001869691172115252,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019428900000005 47.55544819624408, 10.019129500000002 47.55547869624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_4_LVCableDist_mvgd_33535_lvgd_1164120007_building_441764,BranchTee_mvgd_33535_lvgd_1164120007_4,BranchTee_mvgd_33535_lvgd_1164120007_building_441764,0.020883535089523397,0.018126908457706307,0.0017779648873340703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01918520713226 47.55529457015406, 10.019129500000002 47.55547869624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_50_LVCableDist_mvgd_33535_lvgd_1164120007_51,BranchTee_mvgd_33535_lvgd_1164120007_50,BranchTee_mvgd_33535_lvgd_1164120007_51,0.03559074033160219,0.0035590740331602195,0.0031195438732881772,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.022356999999998 47.55713519624422, 10.022587299999998 47.556956296244174, 10.0226949 47.5569168962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_50_LVCableDist_mvgd_33535_lvgd_1164120007_building_445737,BranchTee_mvgd_33535_lvgd_1164120007_50,BranchTee_mvgd_33535_lvgd_1164120007_building_445737,0.014275074329220544,0.012390764517763431,0.0012153393002016556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022176869306145 47.55709520826067, 10.022356999999998 47.55713519624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_50_LVCableDist_mvgd_33535_lvgd_1164120007_building_445773,BranchTee_mvgd_33535_lvgd_1164120007_50,BranchTee_mvgd_33535_lvgd_1164120007_building_445773,0.029392070376163603,0.025512317086510007,0.0025023574251605988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022631737465098 47.55732307794864, 10.022356999999998 47.55713519624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_51_LVCableDist_mvgd_33535_lvgd_1164120007_building_445711,BranchTee_mvgd_33535_lvgd_1164120007_51,BranchTee_mvgd_33535_lvgd_1164120007_building_445711,0.015361150908347759,0.013333478988445854,0.0013078047766818715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02264799999593 47.55678234627964, 10.0226949 47.5569168962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_52_LVCableDist_mvgd_33535_lvgd_1164120007_53,BranchTee_mvgd_33535_lvgd_1164120007_52,BranchTee_mvgd_33535_lvgd_1164120007_53,0.042558911187110304,0.004255891118711031,0.0037303070801727534,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.020773901274737 47.557115247558926, 10.020238799999996 47.55723839624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_52_LVCableDist_mvgd_33535_lvgd_1164120007_building_445735,BranchTee_mvgd_33535_lvgd_1164120007_52,BranchTee_mvgd_33535_lvgd_1164120007_building_445735,0.014649913623822062,0.01271612502547755,0.0012472520535423918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020147509926733 47.557121965152554, 10.020238799999996 47.55723839624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_52_LVCableDist_mvgd_33535_lvgd_1164120007_building_445740,BranchTee_mvgd_33535_lvgd_1164120007_52,BranchTee_mvgd_33535_lvgd_1164120007_building_445740,0.017354736917499156,0.015063911644389267,0.001477533029535471,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020010311566514 47.55725867388721, 10.020238799999996 47.55723839624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_53_LVCableDist_mvgd_33535_lvgd_1164120007_building_445637,BranchTee_mvgd_33535_lvgd_1164120007_53,BranchTee_mvgd_33535_lvgd_1164120007_building_445637,0.013779606980279408,0.011960698858882526,0.0011731566167880716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020612563201164 47.557056755002066, 10.020773901274737 47.557115247558926)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_53_LVCableDist_mvgd_33535_lvgd_1164120007_building_445638,BranchTee_mvgd_33535_lvgd_1164120007_53,BranchTee_mvgd_33535_lvgd_1164120007_building_445638,0.017462498475806294,0.015157448676999863,0.001486707542665224,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020844749996723 47.556965596276946, 10.020773901274737 47.557115247558926)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_54_LVCableDist_mvgd_33535_lvgd_1164120007_55,BranchTee_mvgd_33535_lvgd_1164120007_54,BranchTee_mvgd_33535_lvgd_1164120007_55,0.048787433895810466,0.004878743389581047,0.004276239805216666,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.023161162314413 47.55738283039976, 10.023446428981037 47.557777063733134)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_54_LVCableDist_mvgd_33535_lvgd_1164120007_building_445790,BranchTee_mvgd_33535_lvgd_1164120007_54,BranchTee_mvgd_33535_lvgd_1164120007_building_445790,0.016876394397562302,0.014648710337084078,0.00143680830544442,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02331673182531 47.55727350534111, 10.023161162314413 47.55738283039976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_54_LVCableDist_mvgd_33535_lvgd_1164120007_building_445796,BranchTee_mvgd_33535_lvgd_1164120007_54,BranchTee_mvgd_33535_lvgd_1164120007_building_445796,0.02357970102163985,0.02046718048678339,0.0020075088001428854,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02344925927195 47.557465924461795, 10.023161162314413 47.55738283039976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_55_LVCableDist_mvgd_33535_lvgd_1164120007_building_445770,BranchTee_mvgd_33535_lvgd_1164120007_55,BranchTee_mvgd_33535_lvgd_1164120007_building_445770,0.026225777938743262,0.02276397525082915,0.0022327882764205972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023748858154226 47.55789407731604, 10.023446428981037 47.557777063733134)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_55_LVCableDist_mvgd_33535_lvgd_1164120007_building_445782,BranchTee_mvgd_33535_lvgd_1164120007_55,BranchTee_mvgd_33535_lvgd_1164120007_building_445782,0.038256071890888185,0.03320627040129095,0.0032570133484464297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022942813771 47.557732059430194, 10.023446428981037 47.557777063733134)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_55_LVCableDist_mvgd_33535_lvgd_1164120007_building_445805,BranchTee_mvgd_33535_lvgd_1164120007_55,BranchTee_mvgd_33535_lvgd_1164120007_building_445805,0.05157084674961114,0.04476349497866247,0.004390595478104351,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02279526691945 47.557920696058396, 10.023446428981037 47.557777063733134)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_56_LVCableDist_mvgd_33535_lvgd_1164120007_building_445727,BranchTee_mvgd_33535_lvgd_1164120007_56,BranchTee_mvgd_33535_lvgd_1164120007_building_445727,0.025047441150157293,0.02174117891833653,0.0021324680276418903,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021294988061353 47.557653922031506, 10.021445799999995 47.557452996244244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_56_LVCableDist_mvgd_33535_lvgd_1164120007_building_445746,BranchTee_mvgd_33535_lvgd_1164120007_56,BranchTee_mvgd_33535_lvgd_1164120007_building_445746,0.03969715699137563,0.034457132268514046,0.0033797032425349235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021678449972352 47.55777359629814, 10.021445799999995 47.557452996244244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_56_LVStation_mvgd_33535_lvgd_1164120007,BusBar_mvgd_33535_lvgd_1164120007_LV,BranchTee_mvgd_33535_lvgd_1164120007_56,0.6119451338188486,0.06119451338188486,0.05363725719686837,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.018853399999992 47.556007296244125, 10.0188362 47.5561264962441, 10.0188285 47.556251096244154, 10.018809999999998 47.5565221962442, 10.018757799999998 47.5567601962442, 10.018695299999996 47.55693689624422, 10.0186511 47.557056596244244, 10.018605699999998 47.55718989624418, 10.018490800000006 47.557465196244245, 10.018455899999998 47.55760939624427, 10.018439799999998 47.55776059624424, 10.018443100000002 47.55788249624428, 10.018462999999995 47.558006696244306, 10.018480200000004 47.55809699624432, 10.018534500000001 47.55822409624431, 10.018700799999998 47.55846659624434, 10.018841099999998 47.55861969624434, 10.018967300000002 47.55873469624436, 10.019080399999993 47.558852596244364, 10.019223700000001 47.55876699624438, 10.019249700000003 47.55871089624437, 10.019281000000001 47.55858869624433, 10.019332000000004 47.557944896244315, 10.019451499999999 47.55781759624426, 10.019563199999999 47.557756296244264, 10.019709300000004 47.557717396244286, 10.020454299999997 47.55764229624422, 10.020948300000006 47.55758259624427, 10.021445799999995 47.557452996244244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_57_LVCableDist_mvgd_33535_lvgd_1164120007_65,BranchTee_mvgd_33535_lvgd_1164120007_57,BranchTee_mvgd_33535_lvgd_1164120007_65,0.025057859201111938,0.004109488908982358,0.002015272611351057,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0170793 47.555980596244105, 10.017179300000004 47.556195696244174)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_57_LVCableDist_mvgd_33535_lvgd_1164120007_68,BranchTee_mvgd_33535_lvgd_1164120007_57,BranchTee_mvgd_33535_lvgd_1164120007_68,0.054511754438899565,0.00893992772797953,0.004384095418356164,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.017802300000005 47.55600359624415, 10.0170793 47.555980596244105)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_57_LVCableDist_mvgd_33535_lvgd_1164120007_73,BranchTee_mvgd_33535_lvgd_1164120007_57,BranchTee_mvgd_33535_lvgd_1164120007_73,0.04357697916478427,0.007146624583024621,0.003504668610808877,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0170793 47.555980596244105, 10.017305651580283 47.55561964651085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_57_LVCableDist_mvgd_33535_lvgd_1164120007_76,BranchTee_mvgd_33535_lvgd_1164120007_57,BranchTee_mvgd_33535_lvgd_1164120007_76,0.035908440418451246,0.005888984228626004,0.0028879281310841146,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0170793 47.555980596244105, 10.017043000000005 47.55598129624407, 10.016606499999998 47.5560212962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_57_LVCableDist_mvgd_33535_lvgd_1164120007_building_441773,BranchTee_mvgd_33535_lvgd_1164120007_57,BranchTee_mvgd_33535_lvgd_1164120007_building_441773,0.026584559767146694,0.02307539787788333,0.0022633339426777837,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017401584904427 47.55588299870372, 10.0170793 47.555980596244105)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_58_LVCableDist_mvgd_33535_lvgd_1164120007_59,BranchTee_mvgd_33535_lvgd_1164120007_58,BranchTee_mvgd_33535_lvgd_1164120007_59,0.03230852804379938,0.005298598599183098,0.0025984059993779183,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.016312199999994 47.55605019624414, 10.016034799999998 47.556030496244084, 10.015939900000003 47.55595169624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_58_LVCableDist_mvgd_33535_lvgd_1164120007_76,BranchTee_mvgd_33535_lvgd_1164120007_58,BranchTee_mvgd_33535_lvgd_1164120007_76,0.022396163072225306,0.0036729707438449503,0.001801206307233332,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.016606499999998 47.5560212962441, 10.016312199999994 47.55605019624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_58_LVCableDist_mvgd_33535_lvgd_1164120007_building_441737,BranchTee_mvgd_33535_lvgd_1164120007_58,BranchTee_mvgd_33535_lvgd_1164120007_building_441737,0.03340560734247744,0.028996067173270416,0.0028440585676890577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016239549998657 47.55634679649959, 10.016312199999994 47.55605019624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_59_LVCableDist_mvgd_33535_lvgd_1164120007_72,BranchTee_mvgd_33535_lvgd_1164120007_59,BranchTee_mvgd_33535_lvgd_1164120007_72,0.032593292351347024,0.005345299945620912,0.002621308103866783,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.015939900000003 47.55595169624409, 10.015914300000007 47.55580169624407, 10.015923899999997 47.55565949624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_59_LVCableDist_mvgd_33535_lvgd_1164120007_building_441731,BranchTee_mvgd_33535_lvgd_1164120007_59,BranchTee_mvgd_33535_lvgd_1164120007_building_441731,0.014482948848360168,0.012571199600376625,0.0012330371465872091,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016102188555383 47.55588176804989, 10.015939900000003 47.55595169624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_5_LVCableDist_mvgd_33535_lvgd_1164120007_building_441757,BranchTee_mvgd_33535_lvgd_1164120007_5,BranchTee_mvgd_33535_lvgd_1164120007_building_441757,0.0223517471018666,0.019401316484420207,0.001902964289682281,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018885670510484 47.555309577768234, 10.018712999999995 47.55547319624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_5_LVCableDist_mvgd_33535_lvgd_1164120007_building_441765,BranchTee_mvgd_33535_lvgd_1164120007_5,BranchTee_mvgd_33535_lvgd_1164120007_building_441765,0.014042108052975568,0.012188549789982793,0.0011955052128538514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018671126275274 47.55535004192772, 10.018712999999995 47.55547319624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_60_LVCableDist_mvgd_33535_lvgd_1164120007_61,BranchTee_mvgd_33535_lvgd_1164120007_60,BranchTee_mvgd_33535_lvgd_1164120007_61,0.009853667435951159,0.00161600145949599,0.000792478956229149,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.016049499999994 47.55502799624402, 10.016094400000002 47.55494469624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_60_LVCableDist_mvgd_33535_lvgd_1164120007_building_441710,BranchTee_mvgd_33535_lvgd_1164120007_60,BranchTee_mvgd_33535_lvgd_1164120007_building_441710,0.015170957088155378,0.013168390752518867,0.0012916122148076308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015849351480433 47.55504339341218, 10.016049499999994 47.55502799624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_60_LVCableDist_mvgd_33535_lvgd_1164120007_building_441713,BranchTee_mvgd_33535_lvgd_1164120007_60,BranchTee_mvgd_33535_lvgd_1164120007_building_441713,0.019985330065693096,0.017347266497021608,0.0017014942616880085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016242501527477 47.555151440891976, 10.016049499999994 47.55502799624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_61_LVCableDist_mvgd_33535_lvgd_1164120007_64,BranchTee_mvgd_33535_lvgd_1164120007_61,BranchTee_mvgd_33535_lvgd_1164120007_64,0.06066706386965071,0.009949398474622718,0.004879134775494591,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.016094400000002 47.55494469624402, 10.016864999999994 47.55510369624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_61_LVCableDist_mvgd_33535_lvgd_1164120007_69,BranchTee_mvgd_33535_lvgd_1164120007_61,BranchTee_mvgd_33535_lvgd_1164120007_69,0.06159311227145169,0.010101270412518078,0.0049536120070073335,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.016094400000002 47.55494469624402, 10.015302799999992 47.55480549624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_61_LVCableDist_mvgd_33535_lvgd_1164120007_building_441694,BranchTee_mvgd_33535_lvgd_1164120007_61,BranchTee_mvgd_33535_lvgd_1164120007_building_441694,0.025947320726547523,0.02252227439064325,0.002209081219938703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0159399500057 47.55473594632121, 10.016094400000002 47.55494469624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_61_LVCableDist_mvgd_33535_lvgd_1164120007_building_441703,BranchTee_mvgd_33535_lvgd_1164120007_61,BranchTee_mvgd_33535_lvgd_1164120007_building_441703,0.021537232209667828,0.018694317557991676,0.001833618804239703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016297571985847 47.55480828742032, 10.016094400000002 47.55494469624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_62_LVCableDist_mvgd_33535_lvgd_1164120007_63,BranchTee_mvgd_33535_lvgd_1164120007_62,BranchTee_mvgd_33535_lvgd_1164120007_63,0.047166586362524084,0.00773532016345395,0.003793361951012203,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018138799999996 47.55536369624407, 10.017532000000001 47.55525869624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_62_LVCableDist_mvgd_33535_lvgd_1164120007_64,BranchTee_mvgd_33535_lvgd_1164120007_62,BranchTee_mvgd_33535_lvgd_1164120007_64,0.053105129572339975,0.008709241249863756,0.004270967934269372,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.017532000000001 47.55525869624407, 10.016864999999994 47.55510369624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_62_LVCableDist_mvgd_33535_lvgd_1164120007_building_441730,BranchTee_mvgd_33535_lvgd_1164120007_62,BranchTee_mvgd_33535_lvgd_1164120007_building_441730,0.024224125271058855,0.021026540735279087,0.0020623732511614486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01724610498112 47.55535858754628, 10.017532000000001 47.55525869624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_62_LVCableDist_mvgd_33535_lvgd_1164120007_building_441740,BranchTee_mvgd_33535_lvgd_1164120007_62,BranchTee_mvgd_33535_lvgd_1164120007_building_441740,0.01628873706620272,0.014138623773463962,0.0013867768286631762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017622620821198 47.55539180937151, 10.017532000000001 47.55525869624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_63_LVCableDist_mvgd_33535_lvgd_1164120007_67,BranchTee_mvgd_33535_lvgd_1164120007_63,BranchTee_mvgd_33535_lvgd_1164120007_67,0.04745343140129994,0.007782362749813191,0.0038164313978355483,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018138799999996 47.55536369624407, 10.018413400000005 47.554979296244035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_63_LVCableDist_mvgd_33535_lvgd_1164120007_75,BranchTee_mvgd_33535_lvgd_1164120007_63,BranchTee_mvgd_33535_lvgd_1164120007_75,0.03773966474723998,0.006189305018547356,0.0030352039300830928,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.017970551041193 47.555683646399004, 10.018138799999996 47.55536369624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_63_LVCableDist_mvgd_33535_lvgd_1164120007_building_441734,BranchTee_mvgd_33535_lvgd_1164120007_63,BranchTee_mvgd_33535_lvgd_1164120007_building_441734,0.02613901004013186,0.022688660714834455,0.0022254011038744977,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01788450001798 47.5552035962875, 10.018138799999996 47.55536369624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_64_LVCableDist_mvgd_33535_lvgd_1164120007_74,BranchTee_mvgd_33535_lvgd_1164120007_64,BranchTee_mvgd_33535_lvgd_1164120007_74,0.05474716554766218,0.008978535149816598,0.004403028303088633,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.016864999999994 47.55510369624406, 10.016683300000004 47.555580796244094)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_64_LVCableDist_mvgd_33535_lvgd_1164120007_building_441704,BranchTee_mvgd_33535_lvgd_1164120007_64,BranchTee_mvgd_33535_lvgd_1164120007_building_441704,0.025734377200483508,0.022337439410019685,0.0021909518126949617,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016653191284176 47.55492194927193, 10.016864999999994 47.55510369624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_64_LVCableDist_mvgd_33535_lvgd_1164120007_building_441716,BranchTee_mvgd_33535_lvgd_1164120007_64,BranchTee_mvgd_33535_lvgd_1164120007_building_441716,0.029122139220710917,0.025278016843577077,0.002479376252943585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01656392555423 47.55526816583121, 10.016864999999994 47.55510369624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_64_LVCableDist_mvgd_33535_lvgd_1164120007_building_441719,BranchTee_mvgd_33535_lvgd_1164120007_64,BranchTee_mvgd_33535_lvgd_1164120007_building_441719,0.02176074830911648,0.018888329532313102,0.0018526483303649486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016983647587685 47.555282273836355, 10.016864999999994 47.55510369624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_64_LVCableDist_mvgd_33535_lvgd_1164120007_building_441721,BranchTee_mvgd_33535_lvgd_1164120007_64,BranchTee_mvgd_33535_lvgd_1164120007_building_441721,0.02720375573851221,0.0236128599810286,0.002316050529728167,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017224386925351 47.555079195649014, 10.016864999999994 47.55510369624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_65_LVCableDist_mvgd_33535_lvgd_1164120007_building_441776,BranchTee_mvgd_33535_lvgd_1164120007_65,BranchTee_mvgd_33535_lvgd_1164120007_building_441776,0.017388714520428603,0.015093404203732027,0.0014804257861834888,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017281286630267 47.55633610336494, 10.017179300000004 47.556195696244174)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_66_LVCableDist_mvgd_33535_lvgd_1164120007_67,BranchTee_mvgd_33535_lvgd_1164120007_66,BranchTee_mvgd_33535_lvgd_1164120007_67,0.040428958065143863,0.006630349122683594,0.003251489731833492,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018702600000003 47.554729396243985, 10.018541099999998 47.55474069624404, 10.018413400000005 47.554979296244035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_66_LVCableDist_mvgd_33535_lvgd_1164120007_building_441750,BranchTee_mvgd_33535_lvgd_1164120007_66,BranchTee_mvgd_33535_lvgd_1164120007_building_441750,0.016882908843526615,0.014654364876181101,0.001437362926878738,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018701700011627 47.554881346281896, 10.018702600000003 47.554729396243985)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_66_LVCableDist_mvgd_33535_lvgd_1164120007_building_441756,BranchTee_mvgd_33535_lvgd_1164120007_66,BranchTee_mvgd_33535_lvgd_1164120007_building_441756,0.020452917719428625,0.017753132580464046,0.0017413033470046874,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018919878796373 47.5546189715328, 10.018702600000003 47.554729396243985)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_67_LVCableDist_mvgd_33535_lvgd_1164120007_building_441732,BranchTee_mvgd_33535_lvgd_1164120007_67,BranchTee_mvgd_33535_lvgd_1164120007_building_441732,0.027797004155782096,0.02412779960721886,0.0023665580156902307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018048906169785 47.55501859780709, 10.018413400000005 47.554979296244035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_67_LVCableDist_mvgd_33535_lvgd_1164120007_building_441749,BranchTee_mvgd_33535_lvgd_1164120007_67,BranchTee_mvgd_33535_lvgd_1164120007_building_441749,0.020975203437243763,0.018206476583527587,0.0017857692702045022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018238613967851 47.554832322804856, 10.018413400000005 47.554979296244035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_67_LVCableDist_mvgd_33535_lvgd_1164120007_building_441752,BranchTee_mvgd_33535_lvgd_1164120007_67,BranchTee_mvgd_33535_lvgd_1164120007_building_441752,0.042081029918735156,0.036526333969462116,0.003582659415545967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018935230447418 47.55511465450423, 10.018413400000005 47.554979296244035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_67_LVCableDist_mvgd_33535_lvgd_1164120007_building_441763,BranchTee_mvgd_33535_lvgd_1164120007_67,BranchTee_mvgd_33535_lvgd_1164120007_building_441763,0.022618451316729713,0.019632815742921392,0.0019256707293390661,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01867877860428 47.55507459338053, 10.018413400000005 47.554979296244035)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_68_LVCableDist_mvgd_33535_lvgd_1164120007_75,BranchTee_mvgd_33535_lvgd_1164120007_68,BranchTee_mvgd_33535_lvgd_1164120007_75,0.037739664747991473,0.0061893050186706015,0.0030352039301435314,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.017802300000005 47.55600359624415, 10.017970551041193 47.555683646399004)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_68_LVCableDist_mvgd_33535_lvgd_1164120007_77,BranchTee_mvgd_33535_lvgd_1164120007_68,BranchTee_mvgd_33535_lvgd_1164120007_77,0.046964347305001486,0.007702152958020244,0.003777096920935226,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018424299999994 47.5560336962441, 10.017802300000005 47.55600359624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_68_LVCableDist_mvgd_33535_lvgd_1164120007_building_441782,BranchTee_mvgd_33535_lvgd_1164120007_68,BranchTee_mvgd_33535_lvgd_1164120007_building_441782,0.018225328999683932,0.015819585571725654,0.001551652767725396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017703020246008 47.55585400349572, 10.017802300000005 47.55600359624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_68_LVCableDist_mvgd_33535_lvgd_1164120007_building_441785,BranchTee_mvgd_33535_lvgd_1164120007_68,BranchTee_mvgd_33535_lvgd_1164120007_building_441785,0.017501619987357706,0.015191406149026488,0.0014900382370893084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018015042778801 47.555940216434735, 10.017802300000005 47.55600359624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_68_LVCableDist_mvgd_33535_lvgd_1164120007_building_441791,BranchTee_mvgd_33535_lvgd_1164120007_68,BranchTee_mvgd_33535_lvgd_1164120007_building_441791,0.031045489497153776,0.026947484883529476,0.0026431248349197854,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017942189574272 47.55626643256037, 10.017802300000005 47.55600359624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_69_LVCableDist_mvgd_33535_lvgd_1164120007_building_441690,BranchTee_mvgd_33535_lvgd_1164120007_69,BranchTee_mvgd_33535_lvgd_1164120007_building_441690,0.0335747201312597,0.02914285707393342,0.002858456350399938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015690720234176 47.55465660489145, 10.015302799999992 47.55480549624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_69_LVCableDist_mvgd_33535_lvgd_1164120007_building_441693,BranchTee_mvgd_33535_lvgd_1164120007_69,BranchTee_mvgd_33535_lvgd_1164120007_building_441693,0.017077343419331346,0.014823134087979608,0.0014539165346459369,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015470900002866 47.55470234625694, 10.015302799999992 47.55480549624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_69_LVCableDist_mvgd_33535_lvgd_1164120007_building_441706,BranchTee_mvgd_33535_lvgd_1164120007_69,BranchTee_mvgd_33535_lvgd_1164120007_building_441706,0.028303408199619445,0.024567358317269677,0.0024096718182570424,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015441757523236 47.5550421802422, 10.015302799999992 47.55480549624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_6_LVCableDist_mvgd_33535_lvgd_1164120007_7,BranchTee_mvgd_33535_lvgd_1164120007_6,BranchTee_mvgd_33535_lvgd_1164120007_7,0.027414519426255845,0.00877264621640187,0.0022478690988948433,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.021521700000003 47.5557325962441, 10.021347099999998 47.55551609624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_6_LVCableDist_mvgd_33535_lvgd_1164120007_building_445636,BranchTee_mvgd_33535_lvgd_1164120007_6,BranchTee_mvgd_33535_lvgd_1164120007_building_445636,0.021655150217513547,0.01879667038880176,0.0018436580086481197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021722567205215 47.55559313848922, 10.021521700000003 47.5557325962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_70_LVCableDist_mvgd_33535_lvgd_1164120007_72,BranchTee_mvgd_33535_lvgd_1164120007_70,BranchTee_mvgd_33535_lvgd_1164120007_72,0.026293074498369005,0.004312064217732517,0.002114614519919749,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.015923899999997 47.55565949624408, 10.015939799999995 47.55542309624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_70_LVCableDist_mvgd_33535_lvgd_1164120007_building_441707,BranchTee_mvgd_33535_lvgd_1164120007_70,BranchTee_mvgd_33535_lvgd_1164120007_building_441707,0.017150576946379725,0.014886700789457601,0.001460151429222429,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015732003954332 47.55535995531994, 10.015939799999995 47.55542309624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_70_LVCableDist_mvgd_33535_lvgd_1164120007_building_441711,BranchTee_mvgd_33535_lvgd_1164120007_70,BranchTee_mvgd_33535_lvgd_1164120007_building_441711,0.011290959132063544,0.009800552526631156,0.0009612802044805097,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016083198055824 47.55539345385702, 10.015939799999995 47.55542309624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_71_LVCableDist_mvgd_33535_lvgd_1164120007_72,BranchTee_mvgd_33535_lvgd_1164120007_71,BranchTee_mvgd_33535_lvgd_1164120007_72,0.04075368369601608,0.006683604126146637,0.0032776057166368317,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.015524700000006 47.555492396244055, 10.0155391 47.55555069624404, 10.015578500000007 47.555603796244064, 10.015664800000001 47.55564459624407, 10.0157905 47.55565949624408, 10.015923899999997 47.55565949624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_71_LVCableDist_mvgd_33535_lvgd_1164120007_building_441685,BranchTee_mvgd_33535_lvgd_1164120007_71,BranchTee_mvgd_33535_lvgd_1164120007_building_441685,0.022125102538444862,0.019204589003370142,0.0018836684150163503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015268906039248 47.55539447167216, 10.015524700000006 47.555492396244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_71_LVCableDist_mvgd_33535_lvgd_1164120007_building_441708,BranchTee_mvgd_33535_lvgd_1164120007_71,BranchTee_mvgd_33535_lvgd_1164120007_building_441708,0.030330470374234843,0.026326848284835842,0.0025822501367964764,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015534650002667 47.55521949625299, 10.015524700000006 47.555492396244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_71_LVCableDist_mvgd_33535_lvgd_1164120007_building_441715,BranchTee_mvgd_33535_lvgd_1164120007_71,BranchTee_mvgd_33535_lvgd_1164120007_building_441715,0.013869107454089563,0.012038385270149742,0.0011807764330285723,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015549643309072 47.55536872044182, 10.015524700000006 47.555492396244055)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_72_LVCableDist_mvgd_33535_lvgd_1164120007_building_441717,BranchTee_mvgd_33535_lvgd_1164120007_72,BranchTee_mvgd_33535_lvgd_1164120007_building_441717,0.014020155879453497,0.012169495303365635,0.0011936362671243286,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016109825723667 47.55565322679484, 10.015923899999997 47.55565949624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_73_LVCableDist_mvgd_33535_lvgd_1164120007_building_441728,BranchTee_mvgd_33535_lvgd_1164120007_73,BranchTee_mvgd_33535_lvgd_1164120007_building_441728,0.019892528753874365,0.01726671495836295,0.0016935934214708263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017044500009343 47.5556464463337, 10.017305651580283 47.55561964651085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_73_LVCableDist_mvgd_33535_lvgd_1164120007_building_441741,BranchTee_mvgd_33535_lvgd_1164120007_73,BranchTee_mvgd_33535_lvgd_1164120007_building_441741,0.021286340240056708,0.018476543328369222,0.0018122585742513214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017534159752728 47.55550689851215, 10.017305651580283 47.55561964651085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_73_LVCableDist_mvgd_33535_lvgd_1164120007_building_441743,BranchTee_mvgd_33535_lvgd_1164120007_73,BranchTee_mvgd_33535_lvgd_1164120007_building_441743,0.015121540770045534,0.013125497388399522,0.0012874050497810206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017503350006882 47.55564339626973, 10.017305651580283 47.55561964651085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_74_LVCableDist_mvgd_33535_lvgd_1164120007_building_441722,BranchTee_mvgd_33535_lvgd_1164120007_74,BranchTee_mvgd_33535_lvgd_1164120007_building_441722,0.020240959057171434,0.017569152461624805,0.0017232577882693445,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016885591536095 47.55546085911525, 10.016683300000004 47.555580796244094)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_74_LVCableDist_mvgd_33535_lvgd_1164120007_building_441723,BranchTee_mvgd_33535_lvgd_1164120007_74,BranchTee_mvgd_33535_lvgd_1164120007_building_441723,0.02234742279924077,0.019397562989740987,0.0019025961308337923,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016460436852665 47.555448007706445, 10.016683300000004 47.555580796244094)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_75_LVCableDist_mvgd_33535_lvgd_1164120007_building_441744,BranchTee_mvgd_33535_lvgd_1164120007_75,BranchTee_mvgd_33535_lvgd_1164120007_building_441744,0.016226850779303813,0.01408490647643571,0.0013815080058972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017843700006113 47.55556559627591, 10.017970551041193 47.555683646399004)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_75_LVCableDist_mvgd_33535_lvgd_1164120007_building_441747,BranchTee_mvgd_33535_lvgd_1164120007_75,BranchTee_mvgd_33535_lvgd_1164120007_building_441747,0.019567160840038195,0.016984295609153155,0.0016658925210348624,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018174500005468 47.55557454627664, 10.017970551041193 47.555683646399004)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_76_LVCableDist_mvgd_33535_lvgd_1164120007_building_441738,BranchTee_mvgd_33535_lvgd_1164120007_76,BranchTee_mvgd_33535_lvgd_1164120007_building_441738,0.036335132363804826,0.03153889489178259,0.003093470010826368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016664459176559 47.5563459544313, 10.016606499999998 47.5560212962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_77_LVCableDist_mvgd_33535_lvgd_1164120007_building_441808,BranchTee_mvgd_33535_lvgd_1164120007_77,BranchTee_mvgd_33535_lvgd_1164120007_building_441808,0.017362346114185273,0.015070516427112816,0.0014781808549381502,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018225942977441 47.555954067579805, 10.018424299999994 47.5560336962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_77_LVCableDist_mvgd_33535_lvgd_1164120007_building_441811,BranchTee_mvgd_33535_lvgd_1164120007_77,BranchTee_mvgd_33535_lvgd_1164120007_building_441811,0.015097879743294055,0.01310495961717924,0.00128539061713913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018443725044598 47.55589845021636, 10.018424299999994 47.5560336962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_77_LVStation_mvgd_33535_lvgd_1164120007,BusBar_mvgd_33535_lvgd_1164120007_LV,BranchTee_mvgd_33535_lvgd_1164120007_77,0.03244991250160871,0.005321785650263829,0.002609776812151949,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018853399999992 47.556007296244125, 10.018424299999994 47.5560336962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_8_LVCableDist_mvgd_33535_lvgd_1164120007_building_445648,BranchTee_mvgd_33535_lvgd_1164120007_8,BranchTee_mvgd_33535_lvgd_1164120007_building_445648,0.027482712332977565,0.023854994305024527,0.0023398001021987065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01976712460956 47.55554103984737, 10.019428900000005 47.55544819624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_9_LVCableDist_mvgd_33535_lvgd_1164120007_building_441768,BranchTee_mvgd_33535_lvgd_1164120007_9,BranchTee_mvgd_33535_lvgd_1164120007_building_441768,0.016107582254136017,0.013981381396590062,0.0013713538222782187,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018872881510122 47.55565528444691, 10.019015699999997 47.555763196244065)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120007_building_441761_LVStation_mvgd_33535_lvgd_1164120007,BusBar_mvgd_33535_lvgd_1164120007_LV,BranchTee_mvgd_33535_lvgd_1164120007_building_441761,0.2911348058623617,0.09316313787595575,0.02387176384656879,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019219987084679 47.55667424420849, 10.019616200000003 47.556731596244155, 10.019265900000002 47.55716449624423, 10.0190778 47.55739689624424, 10.018958900000001 47.55730719624426, 10.018823700000002 47.5572479962442, 10.018683699999999 47.55721069624421, 10.018605699999998 47.55718989624418, 10.0186511 47.557056596244244, 10.018695299999996 47.55693689624422, 10.018757799999998 47.5567601962442, 10.018809999999998 47.5565221962442, 10.0188285 47.556251096244154, 10.0188362 47.5561264962441, 10.018853399999992 47.556007296244125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_10_LVCableDist_mvgd_33535_lvgd_1164120008_11,BranchTee_mvgd_33535_lvgd_1164120008_10,BranchTee_mvgd_33535_lvgd_1164120008_11,0.05494495230303875,0.013901072932668804,0.004418935257780944,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016720399999999 47.56107179624455, 10.016417199999994 47.56152159624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_10_LVCableDist_mvgd_33535_lvgd_1164120008_12,BranchTee_mvgd_33535_lvgd_1164120008_10,BranchTee_mvgd_33535_lvgd_1164120008_12,0.014894890752035395,0.003768407360264955,0.0011979181916829938,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016851300000003 47.560971296244574, 10.016720399999999 47.56107179624455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_10_LVCableDist_mvgd_33535_lvgd_1164120008_building_441877,BranchTee_mvgd_33535_lvgd_1164120008_10,BranchTee_mvgd_33535_lvgd_1164120008_building_441877,0.01144077458911149,0.009930592343348773,0.0009740350671543479,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01657729410818 47.56110636604317, 10.016720399999999 47.56107179624455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_11_LVCableDist_mvgd_33535_lvgd_1164120008_3,BranchTee_mvgd_33535_lvgd_1164120008_3,BranchTee_mvgd_33535_lvgd_1164120008_11,0.018585748312149725,0.004702194322973881,0.0014947545691883128,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016417199999994 47.56152159624456, 10.016318099999996 47.56167479624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_11_LVCableDist_mvgd_33535_lvgd_1164120008_building_441906,BranchTee_mvgd_33535_lvgd_1164120008_11,BranchTee_mvgd_33535_lvgd_1164120008_building_441906,0.02817048627966911,0.024451982090752788,0.002398355223369461,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016432436962196 47.56126826456269, 10.016417199999994 47.56152159624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_11_LVCableDist_mvgd_33535_lvgd_1164120008_building_441914,BranchTee_mvgd_33535_lvgd_1164120008_11,BranchTee_mvgd_33535_lvgd_1164120008_building_441914,0.019903656585605396,0.017276373916305484,0.0016945408134715159,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016381000009341 47.56134414626897, 10.016417199999994 47.56152159624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_11_LVCableDist_mvgd_33535_lvgd_1164120008_building_441921,BranchTee_mvgd_33535_lvgd_1164120008_11,BranchTee_mvgd_33535_lvgd_1164120008_building_441921,0.016830415971551493,0.014608801063306696,0.0014328938327906441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016601698707998 47.561607086495826, 10.016417199999994 47.56152159624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_12_LVCableDist_mvgd_33535_lvgd_1164120008_13,BranchTee_mvgd_33535_lvgd_1164120008_12,BranchTee_mvgd_33535_lvgd_1164120008_13,0.05145553093579196,0.013018249326755365,0.004138299340145826,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016851300000003 47.560971296244574, 10.017129799999996 47.56054839624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_12_LVCableDist_mvgd_33535_lvgd_1164120008_4,BranchTee_mvgd_33535_lvgd_1164120008_4,BranchTee_mvgd_33535_lvgd_1164120008_12,0.021888127245830766,0.005537696193195184,0.0017603476417623173,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016851300000003 47.560971296244574, 10.017141900000002 47.56097509624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_12_LVStation_mvgd_33535_lvgd_1164120008,BusBar_mvgd_33535_lvgd_1164120008_LV,BranchTee_mvgd_33535_lvgd_1164120008_12,0.1633262044573944,0.04132152972772078,0.013135472743988602,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016442899999998 47.560134796244476, 10.016148201872008 47.560463146668724, 10.015853499999999 47.56079149624454, 10.0160585 47.560817596244554, 10.016251899999999 47.56084869624452, 10.016549399999993 47.56092369624456, 10.016851300000003 47.560971296244574)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_13_LVCableDist_mvgd_33535_lvgd_1164120008_building_441970,BranchTee_mvgd_33535_lvgd_1164120008_13,BranchTee_mvgd_33535_lvgd_1164120008_building_441970,0.016936919371881933,0.014701246014793518,0.001441961229922282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017027031567254 47.56041280463199, 10.017129799999996 47.56054839624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_13_LVCableDist_mvgd_33535_lvgd_1164120008_building_441987,BranchTee_mvgd_33535_lvgd_1164120008_13,BranchTee_mvgd_33535_lvgd_1164120008_building_441987,0.02381109589743717,0.020668031238975464,0.0020272091029179197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016830100015554 47.56061669630048, 10.017129799999996 47.56054839624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_14_LVCableDist_mvgd_33535_lvgd_1164120008_25,BranchTee_mvgd_33535_lvgd_1164120008_14,BranchTee_mvgd_33535_lvgd_1164120008_25,0.02213374559813284,0.00708279859140251,0.0018148690480122606,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015560100000005 47.56154679624465, 10.015611 47.5613505962446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_14_LVCableDist_mvgd_33535_lvgd_1164120008_26,BranchTee_mvgd_33535_lvgd_1164120008_14,BranchTee_mvgd_33535_lvgd_1164120008_26,0.06574318582750732,0.021037819464802345,0.005390649881063355,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015611 47.5613505962446, 10.015649100000005 47.56109729624457, 10.015767899999997 47.56088499624459, 10.015853499999999 47.56079149624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_14_LVCableDist_mvgd_33535_lvgd_1164120008_building_441882,BranchTee_mvgd_33535_lvgd_1164120008_14,BranchTee_mvgd_33535_lvgd_1164120008_building_441882,0.021162470514517404,0.018369024406601105,0.0018017126574959212,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015333850006717 47.56131909630437, 10.015611 47.5613505962446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_14_LVCableDist_mvgd_33535_lvgd_1164120008_building_441911,BranchTee_mvgd_33535_lvgd_1164120008_14,BranchTee_mvgd_33535_lvgd_1164120008_building_441911,0.02292757499005825,0.01990113509137056,0.0019519886412570338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015879478744306 47.561253282176565, 10.015611 47.5613505962446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_14_LVCableDist_mvgd_33535_lvgd_1164120008_building_441919,BranchTee_mvgd_33535_lvgd_1164120008_14,BranchTee_mvgd_33535_lvgd_1164120008_building_441919,0.023196574525904463,0.020134626688485074,0.0019748904980257023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015861600016766 47.56147199628518, 10.015611 47.5613505962446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_15_LVCableDist_mvgd_33535_lvgd_1164120008_26,BranchTee_mvgd_33535_lvgd_1164120008_15,BranchTee_mvgd_33535_lvgd_1164120008_26,0.042702133507182674,0.013664682722298456,0.0035013857027800448,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015853499999999 47.56079149624454, 10.016148201872008 47.560463146668724)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_15_LVCableDist_mvgd_33535_lvgd_1164120008_building_441878,BranchTee_mvgd_33535_lvgd_1164120008_15,BranchTee_mvgd_33535_lvgd_1164120008_building_441878,0.0336486720345047,0.029207047325950083,0.0028647524054862773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015701452017199 47.5604684725316, 10.016148201872008 47.560463146668724)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_15_LVCableDist_mvgd_33535_lvgd_1164120008_building_441888,BranchTee_mvgd_33535_lvgd_1164120008_15,BranchTee_mvgd_33535_lvgd_1164120008_building_441888,0.035517268772504204,0.03082898929453365,0.003023839426649509,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016574905686719 47.56032697906699, 10.016148201872008 47.560463146668724)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_15_LVCableDist_mvgd_33535_lvgd_1164120008_building_441899,BranchTee_mvgd_33535_lvgd_1164120008_15,BranchTee_mvgd_33535_lvgd_1164120008_building_441899,0.01625606260563306,0.014110262341689495,0.0013839950178559349,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016334669493252 47.56053685597724, 10.016148201872008 47.560463146668724)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_15_LVCableDist_mvgd_33535_lvgd_1164120008_building_441902,BranchTee_mvgd_33535_lvgd_1164120008_15,BranchTee_mvgd_33535_lvgd_1164120008_building_441902,0.02350378832194007,0.02040128826344398,0.0020010458084132594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016428930514202 47.56055558659596, 10.016148201872008 47.560463146668724)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_15_LVCableDist_mvgd_33535_lvgd_1164120008_building_441907,BranchTee_mvgd_33535_lvgd_1164120008_15,BranchTee_mvgd_33535_lvgd_1164120008_building_441907,0.030822875028223364,0.02675425552449788,0.0026241720710570545,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01652316949325 47.56057435597728, 10.016148201872008 47.560463146668724)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_15_LVStation_mvgd_33535_lvgd_1164120008,BusBar_mvgd_33535_lvgd_1164120008_LV,BranchTee_mvgd_33535_lvgd_1164120008_15,0.042702133507182674,0.013664682722298456,0.0035013857027800448,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016148201872008 47.560463146668724, 10.016442899999998 47.560134796244476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_16_LVCableDist_mvgd_33535_lvgd_1164120008_24,BranchTee_mvgd_33535_lvgd_1164120008_16,BranchTee_mvgd_33535_lvgd_1164120008_24,0.047743634130673514,0.015277962921815524,0.003914766411279734,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0152591 47.562205796244676, 10.015380600000002 47.56203539624464, 10.0154924 47.561807196244665)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_16_LVCableDist_mvgd_33535_lvgd_1164120008_25,BranchTee_mvgd_33535_lvgd_1164120008_16,BranchTee_mvgd_33535_lvgd_1164120008_25,0.029378173912898122,0.0094010156521274,0.00240888006439081,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0154924 47.561807196244665, 10.015560100000005 47.56154679624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_16_LVCableDist_mvgd_33535_lvgd_1164120008_building_441928,BranchTee_mvgd_33535_lvgd_1164120008_16,BranchTee_mvgd_33535_lvgd_1164120008_building_441928,0.018161919965898058,0.015764546530399513,0.0015462543026126757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015689450013415 47.56190144629567, 10.0154924 47.561807196244665)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_17_LVCableDist_mvgd_33535_lvgd_1164120008_18,BranchTee_mvgd_33535_lvgd_1164120008_17,BranchTee_mvgd_33535_lvgd_1164120008_18,0.02798812904875786,0.008956201295602515,0.0022949025458505507,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014992199999995 47.56257109624472, 10.014629499999998 47.5625160962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_17_LVCableDist_mvgd_33535_lvgd_1164120008_23,BranchTee_mvgd_33535_lvgd_1164120008_17,BranchTee_mvgd_33535_lvgd_1164120008_23,0.022728785825776244,0.007273211464248398,0.0018636597096146638,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014992199999995 47.56257109624472, 10.015126200000005 47.56238779624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_17_LVCableDist_mvgd_33535_lvgd_1164120008_building_441909,BranchTee_mvgd_33535_lvgd_1164120008_17,BranchTee_mvgd_33535_lvgd_1164120008_building_441909,0.01662158376709775,0.014427534709840846,0.0014151144517963988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014881950001964 47.56244149627045, 10.014992199999995 47.56257109624472)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_18_LVCableDist_mvgd_33535_lvgd_1164120008_19,BranchTee_mvgd_33535_lvgd_1164120008_18,BranchTee_mvgd_33535_lvgd_1164120008_19,0.01463228919389107,0.004682332542045142,0.0011997828673786402,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014448500000002 47.562468196244666, 10.014629499999998 47.5625160962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_18_LVCableDist_mvgd_33535_lvgd_1164120008_building_441908,BranchTee_mvgd_33535_lvgd_1164120008_18,BranchTee_mvgd_33535_lvgd_1164120008_building_441908,0.015828517137423562,0.013739152875283652,0.0013475950105316654,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014788955727521 47.56242327620221, 10.014629499999998 47.5625160962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_18_LVCableDist_mvgd_33535_lvgd_1164120008_building_441961,BranchTee_mvgd_33535_lvgd_1164120008_18,BranchTee_mvgd_33535_lvgd_1164120008_building_441961,0.018679784768809885,0.01621405317932698,0.001590343841668988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014658750009977 47.56268304626675, 10.014629499999998 47.5625160962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_19_LVCableDist_mvgd_33535_lvgd_1164120008_building_441955,BranchTee_mvgd_33535_lvgd_1164120008_19,BranchTee_mvgd_33535_lvgd_1164120008_building_441955,0.017015327440930716,0.014769304218727861,0.0014486366703137098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014312758205776 47.56259062475708, 10.014448500000002 47.562468196244666)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_1_LVCableDist_mvgd_33535_lvgd_1164120008_13,BranchTee_mvgd_33535_lvgd_1164120008_1,BranchTee_mvgd_33535_lvgd_1164120008_13,0.030928262157581307,0.007824850325868072,0.0024873984302734497,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.017263500000006 47.56028519624448, 10.017129799999996 47.56054839624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_1_LVCableDist_mvgd_33535_lvgd_1164120008_5,BranchTee_mvgd_33535_lvgd_1164120008_1,BranchTee_mvgd_33535_lvgd_1164120008_5,0.012718907521588796,0.0032178836029619655,0.00102291523664669,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.017211899999992 47.56017619624451, 10.017263500000006 47.56028519624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_1_LVCableDist_mvgd_33535_lvgd_1164120008_building_441973,BranchTee_mvgd_33535_lvgd_1164120008_1,BranchTee_mvgd_33535_lvgd_1164120008_building_441973,0.018455398335892065,0.01601928575555431,0.0015712402178231302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017465650004352 47.56037909637001, 10.017263500000006 47.56028519624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_20_LVCableDist_mvgd_33535_lvgd_1164120008_21,BranchTee_mvgd_33535_lvgd_1164120008_20,BranchTee_mvgd_33535_lvgd_1164120008_21,0.017692519535894752,0.005661606251486321,0.0014507081932737284,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014562500000004 47.56223289624465, 10.014451100000002 47.56237309624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_20_LVCableDist_mvgd_33535_lvgd_1164120008_building_441896,BranchTee_mvgd_33535_lvgd_1164120008_20,BranchTee_mvgd_33535_lvgd_1164120008_building_441896,0.010350928625590356,0.00898460604701243,0.0008812486759884467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014588312123964 47.562378625729714, 10.014451100000002 47.56237309624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_21_LVCableDist_mvgd_33535_lvgd_1164120008_22,BranchTee_mvgd_33535_lvgd_1164120008_21,BranchTee_mvgd_33535_lvgd_1164120008_22,0.00970806687136549,0.0031065813988369567,0.0007960184598110112,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.014687200000001 47.562230196244705, 10.014610699999997 47.5622210962447, 10.014562500000004 47.56223289624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_21_LVCableDist_mvgd_33535_lvgd_1164120008_building_441893,BranchTee_mvgd_33535_lvgd_1164120008_21,BranchTee_mvgd_33535_lvgd_1164120008_building_441893,0.011577635680324319,0.01004938777052151,0.0009856870318995653,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014451150001396 47.56216104628614, 10.014562500000004 47.56223289624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_22_LVCableDist_mvgd_33535_lvgd_1164120008_23,BranchTee_mvgd_33535_lvgd_1164120008_22,BranchTee_mvgd_33535_lvgd_1164120008_23,0.03740993860092257,0.011971180352295224,0.003067449174105484,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015126200000005 47.56238779624467, 10.014687200000001 47.562230196244705)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_22_LVCableDist_mvgd_33535_lvgd_1164120008_building_441894,BranchTee_mvgd_33535_lvgd_1164120008_22,BranchTee_mvgd_33535_lvgd_1164120008_building_441894,0.011873609084116443,0.010306292685013072,0.0010108853672039717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014708350002405 47.56212429626897, 10.014687200000001 47.562230196244705)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_22_LVCableDist_mvgd_33535_lvgd_1164120008_building_441901,BranchTee_mvgd_33535_lvgd_1164120008_22,BranchTee_mvgd_33535_lvgd_1164120008_building_441901,0.01903324017411477,0.016520852471131622,0.0016204360313857463,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014938545955527 47.56221216435613, 10.014687200000001 47.562230196244705)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_23_LVCableDist_mvgd_33535_lvgd_1164120008_24,BranchTee_mvgd_33535_lvgd_1164120008_23,BranchTee_mvgd_33535_lvgd_1164120008_24,0.022562601650669045,0.007220032528214094,0.0018500333437411467,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015126200000005 47.56238779624467, 10.0152591 47.562205796244676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_24_LVCableDist_mvgd_33535_lvgd_1164120008_building_441940,BranchTee_mvgd_33535_lvgd_1164120008_24,BranchTee_mvgd_33535_lvgd_1164120008_building_441940,0.020839743727463812,0.01808889755543859,0.0017742366150958354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015427326642229 47.56235472506659, 10.0152591 47.562205796244676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_25_LVCableDist_mvgd_33535_lvgd_1164120008_building_441892,BranchTee_mvgd_33535_lvgd_1164120008_25,BranchTee_mvgd_33535_lvgd_1164120008_building_441892,0.02481583888928313,0.021540148155897755,0.002112750068690198,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015257744871985 47.56163562143065, 10.015560100000005 47.56154679624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_26_LVCableDist_mvgd_33535_lvgd_1164120008_29,BranchTee_mvgd_33535_lvgd_1164120008_26,BranchTee_mvgd_33535_lvgd_1164120008_29,0.015707893283928895,0.005026525850857246,0.0012879776359626667,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.015853499999999 47.56079149624454, 10.0160585 47.560817596244554)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_26_LVCableDist_mvgd_33535_lvgd_1164120008_building_441889,BranchTee_mvgd_33535_lvgd_1164120008_26,BranchTee_mvgd_33535_lvgd_1164120008_building_441889,0.037979364754636036,0.03296608860702408,0.0032334552884617533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015517150002365 47.56053679625313, 10.015853499999999 47.56079149624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_26_LVCableDist_mvgd_33535_lvgd_1164120008_building_441890,BranchTee_mvgd_33535_lvgd_1164120008_26,BranchTee_mvgd_33535_lvgd_1164120008_building_441890,0.020013137759091335,0.017371403574891277,0.0017038617297554539,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015639500008998 47.56068469628349, 10.015853499999999 47.56079149624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_27_LVCableDist_mvgd_33535_lvgd_1164120008_28,BranchTee_mvgd_33535_lvgd_1164120008_27,BranchTee_mvgd_33535_lvgd_1164120008_28,0.023903317768868126,0.007649061686037801,0.0019599661237264705,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016251899999999 47.56084869624452, 10.016549399999993 47.56092369624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_27_LVCableDist_mvgd_33535_lvgd_1164120008_29,BranchTee_mvgd_33535_lvgd_1164120008_27,BranchTee_mvgd_33535_lvgd_1164120008_29,0.014968626151062498,0.004789960368339999,0.0012273610073083112,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0160585 47.560817596244554, 10.016251899999999 47.56084869624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_27_LVCableDist_mvgd_33535_lvgd_1164120008_building_441905,BranchTee_mvgd_33535_lvgd_1164120008_27,BranchTee_mvgd_33535_lvgd_1164120008_building_441905,0.01314916157023465,0.011413472242963676,0.0011194822844666807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016272290141334 47.56073115979552, 10.016251899999999 47.56084869624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_28_LVCableDist_mvgd_33535_lvgd_1164120008_building_441876,BranchTee_mvgd_33535_lvgd_1164120008_28,BranchTee_mvgd_33535_lvgd_1164120008_building_441876,0.0187317764215431,0.01625918193389941,0.0015947702633738311,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016455800003586 47.56107989628411, 10.016549399999993 47.56092369624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_28_LVCableDist_mvgd_33535_lvgd_1164120008_building_441912,BranchTee_mvgd_33535_lvgd_1164120008_28,BranchTee_mvgd_33535_lvgd_1164120008_building_441912,0.015100892811858758,0.013107574960693402,0.0012856471412423629,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016670304349542 47.56081526655022, 10.016549399999993 47.56092369624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_28_LVCableDist_mvgd_33535_lvgd_1164120008_building_441915,BranchTee_mvgd_33535_lvgd_1164120008_28,BranchTee_mvgd_33535_lvgd_1164120008_building_441915,0.021682498900047895,0.018820409045241574,0.0018459863978337856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016334294112607 47.56105341604421, 10.016549399999993 47.56092369624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_29_LVCableDist_mvgd_33535_lvgd_1164120008_building_441897,BranchTee_mvgd_33535_lvgd_1164120008_29,BranchTee_mvgd_33535_lvgd_1164120008_building_441897,0.024192507991864263,0.02099909693693818,0.00205968144577505,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016009254193852 47.56103276215662, 10.0160585 47.560817596244554)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_2_LVCableDist_mvgd_33535_lvgd_1164120008_3,BranchTee_mvgd_33535_lvgd_1164120008_2,BranchTee_mvgd_33535_lvgd_1164120008_3,0.05121095188469439,0.012956370826827681,0.004118629125741985,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016318099999996 47.56167479624465, 10.016267800447 47.56213444630848)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_2_LVCableDist_mvgd_33535_lvgd_1164120008_7,BranchTee_mvgd_33535_lvgd_1164120008_2,BranchTee_mvgd_33535_lvgd_1164120008_7,0.051210951884230006,0.012956370826710192,0.004118629125704636,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016267800447 47.56213444630848, 10.016217500000005 47.5625940962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_2_LVCableDist_mvgd_33535_lvgd_1164120008_building_441943,BranchTee_mvgd_33535_lvgd_1164120008_2,BranchTee_mvgd_33535_lvgd_1164120008_building_441943,0.03839851684113295,0.0333299126181034,0.00326914070709656,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016701068344199 47.561952222248664, 10.016267800447 47.56213444630848)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_2_LVCableDist_mvgd_33535_lvgd_1164120008_building_441946,BranchTee_mvgd_33535_lvgd_1164120008_2,BranchTee_mvgd_33535_lvgd_1164120008_building_441946,0.02424324600905719,0.02104313753586164,0.0020640011365091744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016587950005706 47.562111496276174, 10.016267800447 47.56213444630848)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_2_LVCableDist_mvgd_33535_lvgd_1164120008_building_441950,BranchTee_mvgd_33535_lvgd_1164120008_2,BranchTee_mvgd_33535_lvgd_1164120008_building_441950,0.030343921828566683,0.026338524147195883,0.0025833953554284307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016549094036451 47.562329990605136, 10.016267800447 47.56213444630848)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_2_LVCableDist_mvgd_33535_lvgd_1164120008_building_441964,BranchTee_mvgd_33535_lvgd_1164120008_2,BranchTee_mvgd_33535_lvgd_1164120008_building_441964,0.04780937311035137,0.04149853585978499,0.00407035429161138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016848000000168 47.56195974625214, 10.016267800447 47.56213444630848)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_2_LVCableDist_mvgd_33535_lvgd_1164120008_building_441965,BranchTee_mvgd_33535_lvgd_1164120008_2,BranchTee_mvgd_33535_lvgd_1164120008_building_441965,0.040248381424488375,0.03493559507645591,0.0034266329257956253,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016795027725577 47.56219389221588, 10.016267800447 47.56213444630848)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_30_LVCableDist_mvgd_33535_lvgd_1164120008_34,BranchTee_mvgd_33535_lvgd_1164120008_30,BranchTee_mvgd_33535_lvgd_1164120008_34,0.057140290637281335,0.018284893003930026,0.004685250601270793,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0174205 47.55915869624437, 10.017814999999997 47.558719396244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_30_LVCableDist_mvgd_33535_lvgd_1164120008_36,BranchTee_mvgd_33535_lvgd_1164120008_30,BranchTee_mvgd_33535_lvgd_1164120008_36,0.07081184268823573,0.022659789660235435,0.005806257280667107,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017814999999997 47.558719396244385, 10.016879099999997 47.55865799624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_30_LVCableDist_mvgd_33535_lvgd_1164120008_37,BranchTee_mvgd_33535_lvgd_1164120008_30,BranchTee_mvgd_33535_lvgd_1164120008_37,0.011830122201944453,0.003785639104622225,0.0009700175925182232,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017814999999997 47.558719396244385, 10.017909799999996 47.55863449624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_30_LVCableDist_mvgd_33535_lvgd_1164120008_building_441795,BranchTee_mvgd_33535_lvgd_1164120008_30,BranchTee_mvgd_33535_lvgd_1164120008_building_441795,0.01748024852778077,0.015172855722113708,0.0014882187316963766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018019317334394 47.558794047241484, 10.017814999999997 47.558719396244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_30_LVCableDist_mvgd_33535_lvgd_1164120008_building_441797,BranchTee_mvgd_33535_lvgd_1164120008_30,BranchTee_mvgd_33535_lvgd_1164120008_building_441797,0.030252854135660326,0.026259477389753164,0.0025756421106035514,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017878859638884 47.55898821773725, 10.017814999999997 47.558719396244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_31_LVCableDist_mvgd_33535_lvgd_1164120008_32,BranchTee_mvgd_33535_lvgd_1164120008_31,BranchTee_mvgd_33535_lvgd_1164120008_32,0.045080661306340586,0.014425811618028988,0.0036964144412910973,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017332100000006 47.55925059624438, 10.017000502166983 47.55958839677601)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_31_LVCableDist_mvgd_33535_lvgd_1164120008_35,BranchTee_mvgd_33535_lvgd_1164120008_31,BranchTee_mvgd_33535_lvgd_1164120008_35,0.045080661306340586,0.014425811618028988,0.0036964144412910973,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017000502166983 47.55958839677601, 10.016668900000003 47.559926196244504)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_31_LVCableDist_mvgd_33535_lvgd_1164120008_building_441787,BranchTee_mvgd_33535_lvgd_1164120008_31,BranchTee_mvgd_33535_lvgd_1164120008_building_441787,0.02116440754578415,0.018370705749740642,0.0018018775708385703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016951450563235 47.559400835299435, 10.017000502166983 47.55958839677601)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_31_LVCableDist_mvgd_33535_lvgd_1164120008_building_441793,BranchTee_mvgd_33535_lvgd_1164120008_31,BranchTee_mvgd_33535_lvgd_1164120008_building_441793,0.019506328864813308,0.016931493454657952,0.001660713459371529,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017259321939042 47.55959528199448, 10.017000502166983 47.55958839677601)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_31_LVCableDist_mvgd_33535_lvgd_1164120008_building_441794,BranchTee_mvgd_33535_lvgd_1164120008_31,BranchTee_mvgd_33535_lvgd_1164120008_building_441794,0.017364121574624365,0.015072057526773949,0.0014783320125992465,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017172128287175 47.559692760446744, 10.017000502166983 47.55958839677601)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_32_LVCableDist_mvgd_33535_lvgd_1164120008_34,BranchTee_mvgd_33535_lvgd_1164120008_32,BranchTee_mvgd_33535_lvgd_1164120008_34,0.012189307287300596,0.003900578331936191,0.0009994691777020475,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0174205 47.55915869624437, 10.017332100000006 47.55925059624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_32_LVCableDist_mvgd_33535_lvgd_1164120008_building_441788,BranchTee_mvgd_33535_lvgd_1164120008_32,BranchTee_mvgd_33535_lvgd_1164120008_building_441788,0.019694686016747547,0.017094987462536872,0.0016767496525247338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017434614058029 47.559413667080776, 10.017332100000006 47.55925059624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_32_LVCableDist_mvgd_33535_lvgd_1164120008_building_441800,BranchTee_mvgd_33535_lvgd_1164120008_32,BranchTee_mvgd_33535_lvgd_1164120008_building_441800,0.016239595567610357,0.01409596895268579,0.0013825930609900473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01752140000292 47.5593205962776, 10.017332100000006 47.55925059624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_33_LVCableDist_mvgd_33535_lvgd_1164120008_34,BranchTee_mvgd_33535_lvgd_1164120008_33,BranchTee_mvgd_33535_lvgd_1164120008_34,0.036300142609579734,0.011616045635065516,0.0029764508211441074,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017842400000003 47.55931669624443, 10.0174205 47.55915869624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_33_LVCableDist_mvgd_33535_lvgd_1164120008_building_441805,BranchTee_mvgd_33535_lvgd_1164120008_33,BranchTee_mvgd_33535_lvgd_1164120008_building_441805,0.01971114136053645,0.017109270700945638,0.0016781506137767566,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0179843500015 47.559167646262615, 10.017842400000003 47.55931669624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_33_LVCableDist_mvgd_33535_lvgd_1164120008_building_441806,BranchTee_mvgd_33535_lvgd_1164120008_33,BranchTee_mvgd_33535_lvgd_1164120008_building_441806,0.025015912880377175,0.02171381238016739,0.0021297838002643345,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018145250008843 47.5592241963226, 10.017842400000003 47.55931669624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_33_LVCableDist_mvgd_33535_lvgd_1164120008_building_441810,BranchTee_mvgd_33535_lvgd_1164120008_33,BranchTee_mvgd_33535_lvgd_1164120008_building_441810,0.031155261566986732,0.027042767040144484,0.002652470517292828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017943995479328 47.55958851497928, 10.017842400000003 47.55931669624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_34_LVCableDist_mvgd_33535_lvgd_1164120008_building_441789,BranchTee_mvgd_33535_lvgd_1164120008_34,BranchTee_mvgd_33535_lvgd_1164120008_building_441789,0.02384412262692627,0.020696698440172002,0.0020300209049008396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017124715277433 47.5590821404524, 10.0174205 47.55915869624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_34_LVCableDist_mvgd_33535_lvgd_1164120008_building_441799,BranchTee_mvgd_33535_lvgd_1164120008_34,BranchTee_mvgd_33535_lvgd_1164120008_building_441799,0.018948519265064027,0.016447314722075574,0.001613223133719258,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01767040001595 47.559138846293465, 10.0174205 47.55915869624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_35_LVCableDist_mvgd_33535_lvgd_1164120008_building_441774,BranchTee_mvgd_33535_lvgd_1164120008_35,BranchTee_mvgd_33535_lvgd_1164120008_building_441774,0.022147512768138866,0.019224041082744534,0.00188557635834789,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01664341202476 47.55972761259652, 10.016668900000003 47.559926196244504)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_35_LVCableDist_mvgd_33535_lvgd_1164120008_building_441886,BranchTee_mvgd_33535_lvgd_1164120008_35,BranchTee_mvgd_33535_lvgd_1164120008_building_441886,0.0205313175146594,0.017821183602724357,0.0017479780829867397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016733650001703 47.560105696296915, 10.016668900000003 47.559926196244504)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_35_LVCableDist_mvgd_33535_lvgd_1164120008_building_441962,BranchTee_mvgd_33535_lvgd_1164120008_35,BranchTee_mvgd_33535_lvgd_1164120008_building_441962,0.01907871705479435,0.016560326403561497,0.0016243078038939525,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01692176824097 47.559936698582156, 10.016668900000003 47.559926196244504)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_35_LVStation_mvgd_33535_lvgd_1164120008,BusBar_mvgd_33535_lvgd_1164120008_LV,BranchTee_mvgd_33535_lvgd_1164120008_35,0.028754768588442746,0.009201525948301679,0.0023577635905565964,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016442899999998 47.560134796244476, 10.016668900000003 47.559926196244504)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_36_LVCableDist_mvgd_33535_lvgd_1164120008_building_441790,BranchTee_mvgd_33535_lvgd_1164120008_36,BranchTee_mvgd_33535_lvgd_1164120008_building_441790,0.03803599994841774,0.0330152479552266,0.0032382770480680447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017324271263819 47.55881968996005, 10.016879099999997 47.55865799624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_37_LVCableDist_mvgd_33535_lvgd_1164120008_38,BranchTee_mvgd_33535_lvgd_1164120008_37,BranchTee_mvgd_33535_lvgd_1164120008_38,0.04202428626094439,0.013447771603502206,0.003445805232632146,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.017909799999996 47.55863449624434, 10.018030400000002 47.55851259624434, 10.018180499999996 47.558562296244325, 10.0183418 47.55860729624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_37_LVCableDist_mvgd_33535_lvgd_1164120008_building_441792,BranchTee_mvgd_33535_lvgd_1164120008_37,BranchTee_mvgd_33535_lvgd_1164120008_building_441792,0.011194697473889957,0.009716997407336482,0.0009530847601989018,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01805540000238 47.55865479625769, 10.017909799999996 47.55863449624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_38_LVCableDist_mvgd_33535_lvgd_1164120008_building_441817,BranchTee_mvgd_33535_lvgd_1164120008_38,BranchTee_mvgd_33535_lvgd_1164120008_building_441817,0.013281384714260831,0.011528241931978402,0.0011307393875559656,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01846364278442 47.55869371568935, 10.0183418 47.55860729624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_38_LVCableDist_mvgd_33535_lvgd_1164120008_building_441818,BranchTee_mvgd_33535_lvgd_1164120008_38,BranchTee_mvgd_33535_lvgd_1164120008_building_441818,0.031222576597550997,0.027101196486674264,0.002658201527881793,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018323899996318 47.55888804632556, 10.0183418 47.55860729624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_39_LVCableDist_mvgd_33535_lvgd_1164120008_40,BranchTee_mvgd_33535_lvgd_1164120008_39,BranchTee_mvgd_33535_lvgd_1164120008_40,0.037858369781173545,0.012114678329975535,0.003104218543555079,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016328900000003 47.559205396244444, 10.016830499780617 47.55922799739646)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_39_LVCableDist_mvgd_33535_lvgd_1164120008_41,BranchTee_mvgd_33535_lvgd_1164120008_39,BranchTee_mvgd_33535_lvgd_1164120008_41,0.04234915636594544,0.013551730037102541,0.0034724431415019685,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016328900000003 47.559205396244444, 10.0164011 47.55882739624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_39_LVCableDist_mvgd_33535_lvgd_1164120008_43,BranchTee_mvgd_33535_lvgd_1164120008_39,BranchTee_mvgd_33535_lvgd_1164120008_43,0.045030064583735464,0.01440962066679535,0.003692265734269063,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.01624475065301 47.55960664631668, 10.016328900000003 47.559205396244444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_39_LVCableDist_mvgd_33535_lvgd_1164120008_building_441777,BranchTee_mvgd_33535_lvgd_1164120008_39,BranchTee_mvgd_33535_lvgd_1164120008_building_441777,0.019629686953624804,0.01703856827574633,0.0016712158168285052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016098961319907 47.55928860261183, 10.016328900000003 47.559205396244444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_39_LVCableDist_mvgd_33535_lvgd_1164120008_building_441778,BranchTee_mvgd_33535_lvgd_1164120008_39,BranchTee_mvgd_33535_lvgd_1164120008_building_441778,0.020047100129117073,0.017400882912073617,0.0017067531895172976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016455362206816 47.55936416451863, 10.016328900000003 47.559205396244444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_3_LVCableDist_mvgd_33535_lvgd_1164120008_6,BranchTee_mvgd_33535_lvgd_1164120008_3,BranchTee_mvgd_33535_lvgd_1164120008_6,0.02314344451316514,0.0058552914618307805,0.001861306246689859,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016318099999996 47.56167479624465, 10.016011300000004 47.561662596244595)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_3_LVCableDist_mvgd_33535_lvgd_1164120008_building_441925,BranchTee_mvgd_33535_lvgd_1164120008_3,BranchTee_mvgd_33535_lvgd_1164120008_building_441925,0.023569984406217867,0.020458746464597107,0.002006681555092181,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016520209410338 47.56183677483584, 10.016318099999996 47.56167479624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_40_LVCableDist_mvgd_33535_lvgd_1164120008_building_441770,BranchTee_mvgd_33535_lvgd_1164120008_40,BranchTee_mvgd_33535_lvgd_1164120008_building_441770,0.018525755457344157,0.01608035573697473,0.001577230223393522,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016764770431351 47.55938867251558, 10.016830499780617 47.55922799739646)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_40_LVCableDist_mvgd_33535_lvgd_1164120008_building_441772,BranchTee_mvgd_33535_lvgd_1164120008_40,BranchTee_mvgd_33535_lvgd_1164120008_building_441772,0.020120301908448893,0.01746442205653364,0.0017129853811833362,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016642699999508 47.55909919628936, 10.016830499780617 47.55922799739646)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_40_LVCableDist_mvgd_33535_lvgd_1164120008_building_441779,BranchTee_mvgd_33535_lvgd_1164120008_40,BranchTee_mvgd_33535_lvgd_1164120008_building_441779,0.025558476534220467,0.022184757631703366,0.0021759761293667474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016564999723586 47.5593712855476, 10.016830499780617 47.55922799739646)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_40_LVCableDist_mvgd_33535_lvgd_1164120008_building_441786,BranchTee_mvgd_33535_lvgd_1164120008_40,BranchTee_mvgd_33535_lvgd_1164120008_building_441786,0.018647467916324233,0.016186002151369432,0.0015875924765987384,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016857921707821 47.55939479735697, 10.016830499780617 47.55922799739646)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_41_LVCableDist_mvgd_33535_lvgd_1164120008_building_441767,BranchTee_mvgd_33535_lvgd_1164120008_41,BranchTee_mvgd_33535_lvgd_1164120008_building_441767,0.022821433866628858,0.01980900459623385,0.001942952087352215,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016124416204926 47.55891117292165, 10.0164011 47.55882739624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_41_LVCableDist_mvgd_33535_lvgd_1164120008_building_441769,BranchTee_mvgd_33535_lvgd_1164120008_41,BranchTee_mvgd_33535_lvgd_1164120008_building_441769,0.01683133382467813,0.014609597759820615,0.0014329719761999803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01662320000585 47.55884429631003, 10.0164011 47.55882739624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_42_LVCableDist_mvgd_33535_lvgd_1164120008_43,BranchTee_mvgd_33535_lvgd_1164120008_42,BranchTee_mvgd_33535_lvgd_1164120008_43,0.045030064583866734,0.014409620666837356,0.0036922657342798267,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016160600000003 47.560007896244514, 10.01624475065301 47.55960664631668)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_42_LVCableDist_mvgd_33535_lvgd_1164120008_building_441879,BranchTee_mvgd_33535_lvgd_1164120008_42,BranchTee_mvgd_33535_lvgd_1164120008_building_441879,0.02205948985584132,0.019147637194870264,0.001878082337499646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016004151110504 47.56017574908498, 10.016160600000003 47.560007896244514)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_42_LVCableDist_mvgd_33535_lvgd_1164120008_building_441881,BranchTee_mvgd_33535_lvgd_1164120008_42,BranchTee_mvgd_33535_lvgd_1164120008_building_441881,0.018848726985149583,0.01636069502310984,0.0016047271023263785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016399173469182 47.559956600963964, 10.016160600000003 47.560007896244514)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_42_LVStation_mvgd_33535_lvgd_1164120008,BusBar_mvgd_33535_lvgd_1164120008_LV,BranchTee_mvgd_33535_lvgd_1164120008_42,0.02551005344841364,0.008163217103492364,0.002091711328812323,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.016442899999998 47.560134796244476, 10.016160600000003 47.560007896244514)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_43_LVCableDist_mvgd_33535_lvgd_1164120008_building_441771,BranchTee_mvgd_33535_lvgd_1164120008_43,BranchTee_mvgd_33535_lvgd_1164120008_building_441771,0.014097417429418233,0.012236558328735027,0.0012002140961360087,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016362340427458 47.55970536923261, 10.01624475065301 47.55960664631668)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_43_LVCableDist_mvgd_33535_lvgd_1164120008_building_441775,BranchTee_mvgd_33535_lvgd_1164120008_43,BranchTee_mvgd_33535_lvgd_1164120008_building_441775,0.022507656736065702,0.01953664604690503,0.0019162379932968652,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016026801439702 47.559745261840014, 10.01624475065301 47.55960664631668)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_4_LVCableDist_mvgd_33535_lvgd_1164120008_8,BranchTee_mvgd_33535_lvgd_1164120008_4,BranchTee_mvgd_33535_lvgd_1164120008_8,0.028024235747153927,0.0070901316440299435,0.0022538427685306174,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.017141900000002 47.56097509624456, 10.0171157 47.56122669624455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_4_LVCableDist_mvgd_33535_lvgd_1164120008_building_441992,BranchTee_mvgd_33535_lvgd_1164120008_4,BranchTee_mvgd_33535_lvgd_1164120008_building_441992,0.022981991565168985,0.01994836867856668,0.0019566215139685318,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017210243389146 47.5607735051982, 10.017141900000002 47.56097509624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_5_LVCableDist_mvgd_33535_lvgd_1164120008_building_441966,BranchTee_mvgd_33535_lvgd_1164120008_5,BranchTee_mvgd_33535_lvgd_1164120008_building_441966,0.022478280448950554,0.01951114742968908,0.0019137369796137374,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017364279912774 47.56000223421101, 10.017211899999992 47.56017619624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_5_LVCableDist_mvgd_33535_lvgd_1164120008_building_441980,BranchTee_mvgd_33535_lvgd_1164120008_5,BranchTee_mvgd_33535_lvgd_1164120008_building_441980,0.051300992698151464,0.04452926166199547,0.004367620870302397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017770505475104 47.559911926995554, 10.017211899999992 47.56017619624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_5_LVCableDist_mvgd_33535_lvgd_1164120008_building_441984,BranchTee_mvgd_33535_lvgd_1164120008_5,BranchTee_mvgd_33535_lvgd_1164120008_building_441984,0.03204430480454059,0.02781445657034123,0.0027281611344664282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017622337462054 47.56010010818296, 10.017211899999992 47.56017619624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_6_LVCableDist_mvgd_33535_lvgd_1164120008_building_441924,BranchTee_mvgd_33535_lvgd_1164120008_6,BranchTee_mvgd_33535_lvgd_1164120008_building_441924,0.015747350624898585,0.013668700342411971,0.0013406847240941375,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01580592997625 47.561689293386884, 10.016011300000004 47.561662596244595)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_7_LVCableDist_mvgd_33535_lvgd_1164120008_building_441958,BranchTee_mvgd_33535_lvgd_1164120008_7,BranchTee_mvgd_33535_lvgd_1164120008_building_441958,0.025787354533495174,0.02238342373507381,0.0021954621524202795,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016553000008926 47.562547596278044, 10.016217500000005 47.5625940962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_7_LVCableDist_mvgd_33535_lvgd_1164120008_building_441971,BranchTee_mvgd_33535_lvgd_1164120008_7,BranchTee_mvgd_33535_lvgd_1164120008_building_441971,0.023956508647691926,0.020794249506196592,0.0020395891316350562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016454274749139 47.56273810018179, 10.016217500000005 47.5625940962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_8_LVCableDist_mvgd_33535_lvgd_1164120008_9,BranchTee_mvgd_33535_lvgd_1164120008_8,BranchTee_mvgd_33535_lvgd_1164120008_9,0.034643597823812364,0.008764830249424527,0.002786203453880532,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016991900000004 47.561526996244595, 10.0171157 47.56122669624455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_8_LVCableDist_mvgd_33535_lvgd_1164120008_building_441952,BranchTee_mvgd_33535_lvgd_1164120008_8,BranchTee_mvgd_33535_lvgd_1164120008_building_441952,0.017988656716919092,0.015614154030285772,0.0015315031615041684,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016878912814052 47.56124805102314, 10.0171157 47.56122669624455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_8_LVCableDist_mvgd_33535_lvgd_1164120008_building_441956,BranchTee_mvgd_33535_lvgd_1164120008_8,BranchTee_mvgd_33535_lvgd_1164120008_building_441956,0.011941049193837011,0.010364830700250526,0.0010166270266771936,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016983567409024 47.5612861113111, 10.0171157 47.56122669624455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120008_9_LVCableDist_mvgd_33535_lvgd_1164120008_building_441959,BranchTee_mvgd_33535_lvgd_1164120008_9,BranchTee_mvgd_33535_lvgd_1164120008_building_441959,0.010616068204927895,0.009214747201877413,0.0009038219070187218,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016935929106833 47.56161469043382, 10.016991900000004 47.561526996244595)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_10_LVCableDist_mvgd_33535_lvgd_1164120009_8,BranchTee_mvgd_33535_lvgd_1164120009_8,BranchTee_mvgd_33535_lvgd_1164120009_10,0.017395799913218383,0.015099554324673557,0.001481029016409559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021298199999997 47.56782749624517, 10.0210743 47.56786609624513)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_10_LVCableDist_mvgd_33535_lvgd_1164120009_building_446050,BranchTee_mvgd_33535_lvgd_1164120009_10,BranchTee_mvgd_33535_lvgd_1164120009_building_446050,0.013201478059381553,0.011458882955543188,0.001123936361821546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020944528328036 47.56778620249208, 10.0210743 47.56786609624513)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_11_LVCableDist_mvgd_33535_lvgd_1164120009_13,BranchTee_mvgd_33535_lvgd_1164120009_11,BranchTee_mvgd_33535_lvgd_1164120009_13,0.024947747011092033,0.021654644405627883,0.00212398035168228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021420699999995 47.568354696245194, 10.021301800000002 47.56836629624519, 10.0212504 47.56837019624521, 10.0210917 47.568359496245186)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_11_LVCableDist_mvgd_33535_lvgd_1164120009_14,BranchTee_mvgd_33535_lvgd_1164120009_11,BranchTee_mvgd_33535_lvgd_1164120009_14,0.01176729307125767,0.010214010385851657,0.0010018339237096619,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0210917 47.568359496245186, 10.0209442 47.56832449624518)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_11_LVCableDist_mvgd_33535_lvgd_1164120009_building_446069,BranchTee_mvgd_33535_lvgd_1164120009_11,BranchTee_mvgd_33535_lvgd_1164120009_building_446069,0.05062494113641114,0.04394244890640487,0.004310063759705511,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020871250096205 47.56878994636112, 10.0210917 47.568359496245186)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_12_LVCableDist_mvgd_33535_lvgd_1164120009_15,BranchTee_mvgd_33535_lvgd_1164120009_12,BranchTee_mvgd_33535_lvgd_1164120009_15,0.28950045692052045,0.25128639660701174,0.02464724698502192,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020946099999998 47.56675289624504, 10.021023600000003 47.56649499624504, 10.021048400000003 47.56642249624503, 10.021077399999992 47.56631409624502, 10.021126599999997 47.566053596245006, 10.021131900000006 47.56574519624501, 10.021084400000005 47.565377596244936, 10.021080099999997 47.565354596244916, 10.020949000000003 47.56495809624495, 10.020833899999998 47.56466029624489, 10.020142499999995 47.56476609624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_12_LVCableDist_mvgd_33535_lvgd_1164120009_8,BranchTee_mvgd_33535_lvgd_1164120009_8,BranchTee_mvgd_33535_lvgd_1164120009_12,0.12376300640195378,0.10742628955689588,0.0105368309910311,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020946099999998 47.56675289624504, 10.020930699999996 47.56703339624508, 10.020990699999997 47.56720129624508, 10.021161300000003 47.5675205962451, 10.0212091 47.56760809624511, 10.021298199999997 47.56782749624517)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_12_LVCableDist_mvgd_33535_lvgd_1164120009_building_446071,BranchTee_mvgd_33535_lvgd_1164120009_12,BranchTee_mvgd_33535_lvgd_1164120009_building_446071,0.018060755780589834,0.015676736017551974,0.0015376414710895293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021148850003577 47.566839746307046, 10.020946099999998 47.56675289624504)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_13_LVCableDist_mvgd_33535_lvgd_1164120009_7,BranchTee_mvgd_33535_lvgd_1164120009_7,BranchTee_mvgd_33535_lvgd_1164120009_13,0.03196342421917552,0.027744252222244352,0.002721275191055523,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021420699999995 47.568354696245194, 10.021365099999999 47.56806949624518)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_13_LVStation_mvgd_33535_lvgd_1164120009,BusBar_mvgd_33535_lvgd_1164120009_LV,BranchTee_mvgd_33535_lvgd_1164120009_13,0.03461291337882283,0.030044008812818216,0.002946845175975766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021420699999995 47.568354696245194, 10.021444200000003 47.56840579624522, 10.021505700000006 47.56844199624519, 10.021708699999998 47.5685909962452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_14_LVCableDist_mvgd_33535_lvgd_1164120009_9,BranchTee_mvgd_33535_lvgd_1164120009_9,BranchTee_mvgd_33535_lvgd_1164120009_14,0.03648882229919203,0.03167229775569868,0.0031065547355860266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0209442 47.56832449624518, 10.020796699999996 47.56828339624515, 10.020617800000002 47.56823949624519, 10.020510999999994 47.568183696245185)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_14_LVCableDist_mvgd_33535_lvgd_1164120009_building_446068,BranchTee_mvgd_33535_lvgd_1164120009_14,BranchTee_mvgd_33535_lvgd_1164120009_building_446068,0.017930976723480332,0.015564087795980928,0.0015265924506213534,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020828350045033 47.56846549630336, 10.0209442 47.56832449624518)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_15_LVCableDist_mvgd_33535_lvgd_1164120009_building_446056,BranchTee_mvgd_33535_lvgd_1164120009_15,BranchTee_mvgd_33535_lvgd_1164120009_building_446056,0.020361089251030022,0.01767342546989406,0.001733485331914307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019922349997616 47.56465969627255, 10.020142499999995 47.56476609624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_16_LVCableDist_mvgd_33535_lvgd_1164120009_18,BranchTee_mvgd_33535_lvgd_1164120009_16,BranchTee_mvgd_33535_lvgd_1164120009_18,0.18419363804218358,0.15988007782061534,0.01568172340101627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022017600000003 47.5683248962452, 10.022295200000006 47.56815859624514, 10.022698300000005 47.567929996245226, 10.023234900000002 47.567678496245165, 10.023605399999996 47.56751159624511, 10.023984700000003 47.567343996245114)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_16_LVCableDist_mvgd_33535_lvgd_1164120009_building_446057,BranchTee_mvgd_33535_lvgd_1164120009_16,BranchTee_mvgd_33535_lvgd_1164120009_building_446057,0.04065486342986108,0.03528842145711941,0.0034612396496949884,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024390382668855 47.567585448256516, 10.023984700000003 47.567343996245114)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_17_LVCableDist_mvgd_33535_lvgd_1164120009_18,BranchTee_mvgd_33535_lvgd_1164120009_17,BranchTee_mvgd_33535_lvgd_1164120009_18,0.023630219513960923,0.02051103053811808,0.0020118098011526705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022017600000003 47.5683248962452, 10.021955399999994 47.56821849624518, 10.021951700000004 47.5681202962452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_17_LVCableDist_mvgd_33535_lvgd_1164120009_building_446074,BranchTee_mvgd_33535_lvgd_1164120009_17,BranchTee_mvgd_33535_lvgd_1164120009_building_446074,0.021580237256148608,0.018731645938336993,0.0018372801318019773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021665846899634 47.56810623610618, 10.021951700000004 47.5681202962452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_18_LVCableDist_mvgd_33535_lvgd_1164120009_20,BranchTee_mvgd_33535_lvgd_1164120009_18,BranchTee_mvgd_33535_lvgd_1164120009_20,0.015959287890296558,0.013852661888777412,0.001358728461161634,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021869099999995 47.56842689624522, 10.021932699999995 47.568376096245224, 10.022017600000003 47.5683248962452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_19_LVCableDist_mvgd_33535_lvgd_1164120009_20,BranchTee_mvgd_33535_lvgd_1164120009_19,BranchTee_mvgd_33535_lvgd_1164120009_20,0.015911633827311766,0.013811298162106612,0.0013546713295331738,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022049399999997 47.56849329624525, 10.021994800000003 47.568490096245206, 10.021905399999996 47.56844519624521, 10.021869099999995 47.56842689624522)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_19_LVCableDist_mvgd_33535_lvgd_1164120009_building_446075,BranchTee_mvgd_33535_lvgd_1164120009_19,BranchTee_mvgd_33535_lvgd_1164120009_building_446075,0.02455704938028166,0.021315518862084482,0.002090717464619929,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022193906768402 47.56869143548108, 10.022049399999997 47.56849329624525)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_1_LVCableDist_mvgd_33535_lvgd_1164120009_5,BranchTee_mvgd_33535_lvgd_1164120009_1,BranchTee_mvgd_33535_lvgd_1164120009_5,0.0841621548601369,0.07305275041859882,0.0071653269210519895,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021444999999995 47.569708696245335, 10.021478699999992 47.56990839624535, 10.021530499999997 47.570067996245356, 10.021606200000008 47.5704576962454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_1_LVCableDist_mvgd_33535_lvgd_1164120009_6,BranchTee_mvgd_33535_lvgd_1164120009_1,BranchTee_mvgd_33535_lvgd_1164120009_6,0.10807432564915086,0.09380851466346295,0.009201141253278275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021606200000008 47.5704576962454, 10.021641999999996 47.57061269624539, 10.021659099999994 47.57067219624543, 10.021293400000001 47.57071159624544, 10.020803000000003 47.57073929624541, 10.0206883 47.57071709624544, 10.020627599999997 47.570637096245406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_1_LVCableDist_mvgd_33535_lvgd_1164120009_building_446090,BranchTee_mvgd_33535_lvgd_1164120009_1,BranchTee_mvgd_33535_lvgd_1164120009_building_446090,0.03540419256208527,0.030730839143890014,0.003014212439127721,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021193802526138 47.57030460965121, 10.021606200000008 47.5704576962454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_20_LVStation_mvgd_33535_lvgd_1164120009,BusBar_mvgd_33535_lvgd_1164120009_LV,BranchTee_mvgd_33535_lvgd_1164120009_20,0.021869987051271533,0.01898314876050369,0.001861948606733659,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021708699999998 47.5685909962452, 10.021869099999995 47.56842689624522)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_2_LVCableDist_mvgd_33535_lvgd_1164120009_4,BranchTee_mvgd_33535_lvgd_1164120009_2,BranchTee_mvgd_33535_lvgd_1164120009_4,0.04838962892401374,0.042002197906043925,0.004119755624189441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021555500000002 47.56885489624524, 10.021704599999996 47.56890559624529, 10.022129999999997 47.56905009624528)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_2_LVCableDist_mvgd_33535_lvgd_1164120009_building_446076,BranchTee_mvgd_33535_lvgd_1164120009_2,BranchTee_mvgd_33535_lvgd_1164120009_building_446076,0.015858507751815295,0.013765184728575675,0.0013501483262949926,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021919817531863 47.56904091030531, 10.022129999999997 47.56905009624528)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_3_LVCableDist_mvgd_33535_lvgd_1164120009_6,BranchTee_mvgd_33535_lvgd_1164120009_3,BranchTee_mvgd_33535_lvgd_1164120009_6,0.06569184581087847,0.05702052216384251,0.005592817247425671,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019881199999999 47.57034369624539, 10.020370099999994 47.57048659624539, 10.020627599999997 47.570637096245406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_3_LVCableDist_mvgd_33535_lvgd_1164120009_building_446078,BranchTee_mvgd_33535_lvgd_1164120009_3,BranchTee_mvgd_33535_lvgd_1164120009_building_446078,0.016842475887737882,0.014619269070556482,0.0014339205798155933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020037282978434 47.570452282225936, 10.019881199999999 47.57034369624539)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_4_LVCableDist_mvgd_33535_lvgd_1164120009_5,BranchTee_mvgd_33535_lvgd_1164120009_4,BranchTee_mvgd_33535_lvgd_1164120009_5,0.10226371916497676,0.08876490823519982,0.008706442714037187,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021444999999995 47.569708696245335, 10.0214327 47.56956869624533, 10.021291900000005 47.56947489624533, 10.021403600000005 47.569266296245324, 10.021477599999997 47.56903029624529, 10.021555500000002 47.56885489624524)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_4_LVStation_mvgd_33535_lvgd_1164120009,BusBar_mvgd_33535_lvgd_1164120009_LV,BranchTee_mvgd_33535_lvgd_1164120009_4,0.031848677027891424,0.027644651660209758,0.0027115059409669362,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021708699999998 47.5685909962452, 10.021615600000006 47.568694996245235, 10.021555500000002 47.56885489624524)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_5_LVCableDist_mvgd_33535_lvgd_1164120009_building_446084,BranchTee_mvgd_33535_lvgd_1164120009_5,BranchTee_mvgd_33535_lvgd_1164120009_building_446084,0.029890795227609797,0.025945210257565302,0.0025448174430891283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021841786329297 47.569717295362764, 10.021444999999995 47.569708696245335)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_6_LVCableDist_mvgd_33535_lvgd_1164120009_building_446081,BranchTee_mvgd_33535_lvgd_1164120009_6,BranchTee_mvgd_33535_lvgd_1164120009_building_446081,0.011133875992236428,0.00966420436126122,0.0009479065919284418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020484746587595 47.57066298994864, 10.020627599999997 47.570637096245406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_7_LVCableDist_mvgd_33535_lvgd_1164120009_8,BranchTee_mvgd_33535_lvgd_1164120009_7,BranchTee_mvgd_33535_lvgd_1164120009_8,0.027355992005269267,0.023745001060573725,0.002329011493267748,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021298199999997 47.56782749624517, 10.021365099999999 47.56806949624518)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_7_LVCableDist_mvgd_33535_lvgd_1164120009_building_446072,BranchTee_mvgd_33535_lvgd_1164120009_7,BranchTee_mvgd_33535_lvgd_1164120009_building_446072,0.01849169862857147,0.016050794409600035,0.0015743307216821397,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021127311370163 47.56811110366489, 10.021365099999999 47.56806949624518)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120009_9_LVCableDist_mvgd_33535_lvgd_1164120009_building_446063,BranchTee_mvgd_33535_lvgd_1164120009_9,BranchTee_mvgd_33535_lvgd_1164120009_building_446063,0.024799481464909404,0.021525949911541362,0.0021113574440191816,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020415835646231 47.567970015439144, 10.020510999999994 47.568183696245185)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_10_LVCableDist_mvgd_33535_lvgd_1164120010_2,BranchTee_mvgd_33535_lvgd_1164120010_2,BranchTee_mvgd_33535_lvgd_1164120010_10,0.028592204809818434,0.009149505539141898,0.0023444340811500154,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019442999999997 47.562667496244735, 10.019065500000002 47.56263989624472)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_10_LVCableDist_mvgd_33535_lvgd_1164120010_6,BranchTee_mvgd_33535_lvgd_1164120010_6,BranchTee_mvgd_33535_lvgd_1164120010_10,0.01190556446511899,0.003809780628838077,0.0009762035237579413,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019065500000002 47.56263989624472, 10.018907399999998 47.56263989624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_10_LVCableDist_mvgd_33535_lvgd_1164120010_building_441954,BranchTee_mvgd_33535_lvgd_1164120010_10,BranchTee_mvgd_33535_lvgd_1164120010_building_441954,0.014586236504292457,0.012660853285725852,0.0012418307643705692,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01920285883408 47.56254733421768, 10.019065500000002 47.56263989624472)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_11_LVCableDist_mvgd_33535_lvgd_1164120010_14,BranchTee_mvgd_33535_lvgd_1164120010_11,BranchTee_mvgd_33535_lvgd_1164120010_14,0.009049891618669254,0.0028959653179741612,0.000742051005952374,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019165899999999 47.56200269624463, 10.019165200000005 47.56198639624465, 10.019156900000004 47.5619711962446, 10.019141899999997 47.56195839624466, 10.019121700000003 47.56194959624468, 10.019098399999999 47.56194549624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_11_LVCableDist_mvgd_33535_lvgd_1164120010_28,BranchTee_mvgd_33535_lvgd_1164120010_11,BranchTee_mvgd_33535_lvgd_1164120010_28,0.007409320904566423,0.0023709826894612557,0.0006075314779809416,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019098399999999 47.56194549624463, 10.019074299999998 47.56194659624465, 10.019052100000003 47.56195259624462, 10.019033000000004 47.561963896244606, 10.019020599999996 47.56197859624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_11_LVCableDist_mvgd_33535_lvgd_1164120010_building_441967,BranchTee_mvgd_33535_lvgd_1164120010_11,BranchTee_mvgd_33535_lvgd_1164120010_building_441967,0.015655087636432148,0.013588616068423105,0.0013328297151988223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019124258272852 47.56180569033484, 10.019098399999999 47.56194549624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_12_LVCableDist_mvgd_33535_lvgd_1164120010_14,BranchTee_mvgd_33535_lvgd_1164120010_12,BranchTee_mvgd_33535_lvgd_1164120010_14,0.007570590963865541,0.002422589108436973,0.0006207549081362861,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0190984 47.56204659624465, 10.019122699999999 47.56204219624463, 10.019143599999998 47.56203259624469, 10.019158499999998 47.562018896244666, 10.019165899999999 47.56200269624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_12_LVCableDist_mvgd_33535_lvgd_1164120010_24,BranchTee_mvgd_33535_lvgd_1164120010_12,BranchTee_mvgd_33535_lvgd_1164120010_24,0.0037913888114407845,0.001213244419661051,0.0003108770800837401,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019050200000002 47.562038596244626, 10.019073299999995 47.56204539624464, 10.0190984 47.56204659624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_12_LVCableDist_mvgd_33535_lvgd_1164120010_building_441945,BranchTee_mvgd_33535_lvgd_1164120010_12,BranchTee_mvgd_33535_lvgd_1164120010_building_441945,0.01883601360350152,0.01634965980783932,0.0016036447211072679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019105529329764 47.56221605650649, 10.0190984 47.56204659624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_12_LVCableDist_mvgd_33535_lvgd_1164120010_building_441948,BranchTee_mvgd_33535_lvgd_1164120010_12,BranchTee_mvgd_33535_lvgd_1164120010_building_441948,0.028308576575890313,0.02457184446787279,0.00241011183913927,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01909536998493 47.56230137275969, 10.0190984 47.56204659624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_13_LVCableDist_mvgd_33535_lvgd_1164120010_14,BranchTee_mvgd_33535_lvgd_1164120010_13,BranchTee_mvgd_33535_lvgd_1164120010_14,0.03333809797251636,0.010668191351205237,0.0027335762879204806,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019165899999999 47.56200269624463, 10.019606299999992 47.56197209624462)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_13_LVCableDist_mvgd_33535_lvgd_1164120010_20,BranchTee_mvgd_33535_lvgd_1164120010_13,BranchTee_mvgd_33535_lvgd_1164120010_20,0.021117760563387804,0.006757683380284097,0.0017315627777460128,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019606299999992 47.56197209624462, 10.019744000000001 47.561989296244676, 10.019845999999998 47.562054696244644)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_13_LVCableDist_mvgd_33535_lvgd_1164120010_building_441926,BranchTee_mvgd_33535_lvgd_1164120010_13,BranchTee_mvgd_33535_lvgd_1164120010_building_441926,0.019319528245131504,0.016769350516774147,0.0016448097849551652,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019467644449682 47.56182579901457, 10.019606299999992 47.56197209624462)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_13_LVCableDist_mvgd_33535_lvgd_1164120010_building_441953,BranchTee_mvgd_33535_lvgd_1164120010_13,BranchTee_mvgd_33535_lvgd_1164120010_building_441953,0.03323489703850791,0.028847890629424867,0.002829524777070619,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019466337590353 47.56225577969231, 10.019606299999992 47.56197209624462)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_15_LVCableDist_mvgd_33535_lvgd_1164120010_22,BranchTee_mvgd_33535_lvgd_1164120010_15,BranchTee_mvgd_33535_lvgd_1164120010_22,0.018117879028840544,0.005797721289228975,0.0014855857866120485,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020455700000003 47.56250359624466, 10.020223500000004 47.56246089624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_15_LVCableDist_mvgd_33535_lvgd_1164120010_23,BranchTee_mvgd_33535_lvgd_1164120010_15,BranchTee_mvgd_33535_lvgd_1164120010_23,0.12088203876797436,0.038682252405751794,0.00991179146104949,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020455700000003 47.56250359624466, 10.020541599999998 47.562063496244626, 10.0205587 47.56183759624462, 10.020486 47.561602396244616, 10.020395900000004 47.56143569624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_15_LVCableDist_mvgd_33535_lvgd_1164120010_35,BranchTee_mvgd_33535_lvgd_1164120010_15,BranchTee_mvgd_33535_lvgd_1164120010_35,0.08215686688123512,0.02629019740199524,0.006736498986280719,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020444300000005 47.56324049624475, 10.020404899999994 47.562929296244725, 10.020455700000003 47.56250359624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_16_LVCableDist_mvgd_33535_lvgd_1164120010_18,BranchTee_mvgd_33535_lvgd_1164120010_16,BranchTee_mvgd_33535_lvgd_1164120010_18,0.001882490159418625,0.00060239685101396,0.00015435585036292887,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019019799999995 47.56201209624463, 10.019031700000001 47.56202699624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_16_LVCableDist_mvgd_33535_lvgd_1164120010_building_441932,BranchTee_mvgd_33535_lvgd_1164120010_16,BranchTee_mvgd_33535_lvgd_1164120010_building_441932,0.01918319649212199,0.016651014555161887,0.0016332028865617403,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018770147177264 47.56204643086369, 10.019019799999995 47.56201209624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_17_LVCableDist_mvgd_33535_lvgd_1164120010_25,BranchTee_mvgd_33535_lvgd_1164120010_17,BranchTee_mvgd_33535_lvgd_1164120010_25,0.022316092670107302,0.007141149654434337,0.0018298206997991156,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019616499999998 47.56268579624467, 10.019830699999996 47.562546996244684)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_17_LVCableDist_mvgd_33535_lvgd_1164120010_30,BranchTee_mvgd_33535_lvgd_1164120010_17,BranchTee_mvgd_33535_lvgd_1164120010_30,0.02320899021630644,0.007426876869218061,0.001903034341496507,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019805500000002 47.56285079624473, 10.019616499999998 47.56268579624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_17_LVStation_mvgd_33535_lvgd_1164120010,BusBar_mvgd_33535_lvgd_1164120010_LV,BranchTee_mvgd_33535_lvgd_1164120010_17,0.004791846505857754,0.0015333908818744814,0.00039291017725624197,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019570500000002 47.562715596244686, 10.019616499999998 47.56268579624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_18_LVCableDist_mvgd_33535_lvgd_1164120010_24,BranchTee_mvgd_33535_lvgd_1164120010_18,BranchTee_mvgd_33535_lvgd_1164120010_24,0.0018978944084527146,0.0006073262107048686,0.0001556189305160775,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019050200000002 47.562038596244626, 10.019031700000001 47.56202699624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_18_LVCableDist_mvgd_33535_lvgd_1164120010_building_441933,BranchTee_mvgd_33535_lvgd_1164120010_18,BranchTee_mvgd_33535_lvgd_1164120010_building_441933,0.03637814763151729,0.03157623214415701,0.003097132208595289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018666429303744 47.5622412641322, 10.019031700000001 47.56202699624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_19_LVCableDist_mvgd_33535_lvgd_1164120010_23,BranchTee_mvgd_33535_lvgd_1164120010_19,BranchTee_mvgd_33535_lvgd_1164120010_23,0.15948231459835233,0.05103434067147274,0.013076843012703647,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.022442299999994 47.56108589624457, 10.022245999999992 47.56108409624455, 10.021679501197342 47.561193347716745, 10.021113 47.561302596244616, 10.020958899999995 47.561331496244605, 10.020524999999992 47.56141179624464, 10.020395900000004 47.56143569624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_19_LVCableDist_mvgd_33535_lvgd_1164120010_32,BranchTee_mvgd_33535_lvgd_1164120010_19,BranchTee_mvgd_33535_lvgd_1164120010_32,0.08228499192258482,0.02633119741522714,0.006747004671854356,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023380299999998 47.561433296244594, 10.023312599999999 47.56135979624458, 10.023241299999999 47.56132849624457, 10.023023400000003 47.561232696244566, 10.022442299999994 47.56108589624457)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_19_LVCableDist_mvgd_33535_lvgd_1164120010_building_445978,BranchTee_mvgd_33535_lvgd_1164120010_19,BranchTee_mvgd_33535_lvgd_1164120010_building_445978,0.016767220654351964,0.014553947527977505,0.001427513562901325,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022490876323573 47.56093862168524, 10.022442299999994 47.56108589624457)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_1_LVCableDist_mvgd_33535_lvgd_1164120010_3,BranchTee_mvgd_33535_lvgd_1164120010_1,BranchTee_mvgd_33535_lvgd_1164120010_3,0.011325441015637422,0.003624141125003975,0.0009286359718575066,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018815599999996 47.56268119624471, 10.018785000000005 47.56278099624472)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_1_LVCableDist_mvgd_33535_lvgd_1164120010_7,BranchTee_mvgd_33535_lvgd_1164120010_1,BranchTee_mvgd_33535_lvgd_1164120010_7,0.050399862412641966,0.01612795597204543,0.004132565358684551,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018785000000005 47.56278099624472, 10.018726899999999 47.56323289624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_1_LVCableDist_mvgd_33535_lvgd_1164120010_building_441996,BranchTee_mvgd_33535_lvgd_1164120010_1,BranchTee_mvgd_33535_lvgd_1164120010_building_441996,0.020322535409008625,0.017639960735019486,0.0017302029672623446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018595360961536 47.56291113495467, 10.018785000000005 47.56278099624472)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_1_LVCableDist_mvgd_33535_lvgd_1164120010_building_442001,BranchTee_mvgd_33535_lvgd_1164120010_1,BranchTee_mvgd_33535_lvgd_1164120010_building_442001,0.01740889789411161,0.015110923372088877,0.0014821441413164918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019004591296497 47.56282998558708, 10.018785000000005 47.56278099624472)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_20_LVCableDist_mvgd_33535_lvgd_1164120010_21,BranchTee_mvgd_33535_lvgd_1164120010_20,BranchTee_mvgd_33535_lvgd_1164120010_21,0.01645397166342612,0.005265270932296359,0.0013491527566550669,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019912799999998 47.56191369624464, 10.019845999999998 47.562054696244644)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_20_LVCableDist_mvgd_33535_lvgd_1164120010_27,BranchTee_mvgd_33535_lvgd_1164120010_20,BranchTee_mvgd_33535_lvgd_1164120010_27,0.024691839720722517,0.007901388710631205,0.0020246214292532253,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019845999999998 47.562054696244644, 10.019917399999999 47.56227159624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_21_LVCableDist_mvgd_33535_lvgd_1164120010_26,BranchTee_mvgd_33535_lvgd_1164120010_21,BranchTee_mvgd_33535_lvgd_1164120010_26,0.02028582098103715,0.006491462713931888,0.0016633474189342707,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.02017949999999 47.56188799624464, 10.019912799999998 47.56191369624464)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_21_LVCableDist_mvgd_33535_lvgd_1164120010_building_445985,BranchTee_mvgd_33535_lvgd_1164120010_21,BranchTee_mvgd_33535_lvgd_1164120010_building_445985,0.015408530408692375,0.013374604394744982,0.0013118385328266548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019739686577958 47.561839765025184, 10.019912799999998 47.56191369624464)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_22_LVCableDist_mvgd_33535_lvgd_1164120010_31,BranchTee_mvgd_33535_lvgd_1164120010_22,BranchTee_mvgd_33535_lvgd_1164120010_31,0.015462029869198495,0.004947849558143518,0.0012678179255578247,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.020018299999995 47.5624559962447, 10.020223500000004 47.56246089624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_22_LVCableDist_mvgd_33535_lvgd_1164120010_building_446001,BranchTee_mvgd_33535_lvgd_1164120010_22,BranchTee_mvgd_33535_lvgd_1164120010_building_446001,0.015610049508732442,0.01354952297357976,0.0013289952968736645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020175023474636 47.562324297613856, 10.020223500000004 47.56246089624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_23_LVCableDist_mvgd_33535_lvgd_1164120010_34,BranchTee_mvgd_33535_lvgd_1164120010_23,BranchTee_mvgd_33535_lvgd_1164120010_34,0.055679225500192914,0.017817352160061733,0.004565449735092262,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0199197 47.56128269624462, 10.020044400000002 47.56125939624458, 10.020143600000004 47.5612147962446, 10.0202025 47.56118499624459, 10.020302300000006 47.561308296244604, 10.020395900000004 47.56143569624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_24_LVCableDist_mvgd_33535_lvgd_1164120010_building_441934,BranchTee_mvgd_33535_lvgd_1164120010_24,BranchTee_mvgd_33535_lvgd_1164120010_building_441934,0.03205474873094764,0.027823521898462548,0.0027290503007095014,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018776483947725 47.56225954417229, 10.019050200000002 47.562038596244626)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_25_LVCableDist_mvgd_33535_lvgd_1164120010_33,BranchTee_mvgd_33535_lvgd_1164120010_25,BranchTee_mvgd_33535_lvgd_1164120010_33,0.012470338489037015,0.003990508316491845,0.0010225124907868488,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019946700000007 47.56246689624473, 10.019830699999996 47.562546996244684)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_25_LVCableDist_mvgd_33535_lvgd_1164120010_building_445996,BranchTee_mvgd_33535_lvgd_1164120010_25,BranchTee_mvgd_33535_lvgd_1164120010_building_445996,0.014557778120270757,0.012636151408395017,0.00123940789835081,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019637899988506 47.56253739630612, 10.019830699999996 47.562546996244684)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_26_LVCableDist_mvgd_33535_lvgd_1164120010_building_445987,BranchTee_mvgd_33535_lvgd_1164120010_26,BranchTee_mvgd_33535_lvgd_1164120010_building_445987,0.011927065741247207,0.010352693063402574,0.0010154365152239462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020080176803699 47.561804380825016, 10.02017949999999 47.56188799624464)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_26_LVCableDist_mvgd_33535_lvgd_1164120010_building_445988,BranchTee_mvgd_33535_lvgd_1164120010_26,BranchTee_mvgd_33535_lvgd_1164120010_building_445988,0.011192582811567663,0.009715161880440732,0.0009529047238524935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020318612835924 47.56185252802967, 10.02017949999999 47.56188799624464)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_26_LVCableDist_mvgd_33535_lvgd_1164120010_building_445994,BranchTee_mvgd_33535_lvgd_1164120010_26,BranchTee_mvgd_33535_lvgd_1164120010_building_445994,0.01932260972202244,0.016772025238715477,0.0016450721331490762,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020103515210138 47.56205410504267, 10.02017949999999 47.56188799624464)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_27_LVCableDist_mvgd_33535_lvgd_1164120010_33,BranchTee_mvgd_33535_lvgd_1164120010_27,BranchTee_mvgd_33535_lvgd_1164120010_33,0.021811260582538693,0.006979603386412382,0.001788426705903705,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019917399999999 47.56227159624467, 10.019946700000007 47.56246689624473)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_27_LVCableDist_mvgd_33535_lvgd_1164120010_building_445993,BranchTee_mvgd_33535_lvgd_1164120010_27,BranchTee_mvgd_33535_lvgd_1164120010_building_445993,0.01598007780665862,0.013870707536179683,0.001360498455616304,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019735295598936 47.56219775754492, 10.019917399999999 47.56227159624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_28_LVCableDist_mvgd_33535_lvgd_1164120010_building_441931,BranchTee_mvgd_33535_lvgd_1164120010_28,BranchTee_mvgd_33535_lvgd_1164120010_building_441931,0.014477058832435887,0.012566087066554349,0.0012325356873536877,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018834852137523 47.561945007635266, 10.019020599999996 47.56197859624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_29_LVCableDist_mvgd_33535_lvgd_1164120010_32,BranchTee_mvgd_33535_lvgd_1164120010_29,BranchTee_mvgd_33535_lvgd_1164120010_32,0.02647785785465968,0.008472914513491098,0.002171067001065735,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0235507 47.56162399624465, 10.023432200000006 47.56157089624458, 10.023380299999998 47.561433296244594)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_29_LVCableDist_mvgd_33535_lvgd_1164120010_building_445992,BranchTee_mvgd_33535_lvgd_1164120010_29,BranchTee_mvgd_33535_lvgd_1164120010_building_445992,0.015764523512818512,0.013683606409126468,0.0013421467750163048,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023574104384307 47.56176499154864, 10.0235507 47.56162399624465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_2_LVCableDist_mvgd_33535_lvgd_1164120010_building_442003,BranchTee_mvgd_33535_lvgd_1164120010_2,BranchTee_mvgd_33535_lvgd_1164120010_building_442003,0.008109957364957697,0.007039442992783281,0.0006904587451721614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019448400000043 47.56259459625623, 10.019442999999997 47.562667496244735)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_2_LVCableDist_mvgd_33535_lvgd_1164120010_building_442008,BranchTee_mvgd_33535_lvgd_1164120010_2,BranchTee_mvgd_33535_lvgd_1164120010_building_442008,0.0186229754446751,0.016164742685977986,0.0015855072570988065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019328223971979 47.562815963690724, 10.019442999999997 47.562667496244735)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_2_LVStation_mvgd_33535_lvgd_1164120010,BusBar_mvgd_33535_lvgd_1164120010_LV,BranchTee_mvgd_33535_lvgd_1164120010_2,0.01098845907235386,0.0035163069031532352,0.000901004945925052,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019570500000002 47.562715596244686, 10.019442999999997 47.562667496244735)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_30_LVCableDist_mvgd_33535_lvgd_1164120010_building_446000,BranchTee_mvgd_33535_lvgd_1164120010_30,BranchTee_mvgd_33535_lvgd_1164120010_building_446000,0.016044161991423122,0.01392633260855527,0.0013659544011665316,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020018524782284 47.562853398092535, 10.019805500000002 47.56285079624473)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_30_LVCableDist_mvgd_33535_lvgd_1164120010_building_446009,BranchTee_mvgd_33535_lvgd_1164120010_30,BranchTee_mvgd_33535_lvgd_1164120010_building_446009,0.01145803302706169,0.009945572667489548,0.0009755044015632089,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019775825206183 47.56295194151829, 10.019805500000002 47.56285079624473)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_31_LVCableDist_mvgd_33535_lvgd_1164120010_33,BranchTee_mvgd_33535_lvgd_1164120010_31,BranchTee_mvgd_33535_lvgd_1164120010_33,0.005526115788836296,0.0017683570524276147,0.00045311700436897096,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.019946700000007 47.56246689624473, 10.020018299999995 47.5624559962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_31_LVCableDist_mvgd_33535_lvgd_1164120010_building_445999,BranchTee_mvgd_33535_lvgd_1164120010_31,BranchTee_mvgd_33535_lvgd_1164120010_building_445999,0.021657334886536903,0.018798566681514032,0.0018438440051663015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020078604929848 47.562646584408725, 10.020018299999995 47.5624559962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_32_LVCableDist_mvgd_33535_lvgd_1164120010_building_445990,BranchTee_mvgd_33535_lvgd_1164120010_32,BranchTee_mvgd_33535_lvgd_1164120010_building_445990,0.013120168414776355,0.011388306184025877,0.0011170138895250728,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02324428305827 47.561507089863895, 10.023380299999998 47.561433296244594)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_34_LVCableDist_mvgd_33535_lvgd_1164120010_building_445981,BranchTee_mvgd_33535_lvgd_1164120010_34,BranchTee_mvgd_33535_lvgd_1164120010_building_445981,0.010004761368121584,0.008684132867529535,0.000851776978486764,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019912696501168 47.56119277590862, 10.0199197 47.56128269624462)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_35_LVCableDist_mvgd_33535_lvgd_1164120010_building_446035,BranchTee_mvgd_33535_lvgd_1164120010_35,BranchTee_mvgd_33535_lvgd_1164120010_building_446035,0.02085674004240272,0.01810365035680556,0.0017756836330957049,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020282208076518 47.5633927098738, 10.020444300000005 47.56324049624475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_36_LVCableDist_mvgd_33535_lvgd_1164120010_53,BranchTee_mvgd_33535_lvgd_1164120010_36,BranchTee_mvgd_33535_lvgd_1164120010_53,0.0134105165399168,0.0027625664072228606,0.001078537734211764,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0195246 47.563111496244744, 10.019514400000002 47.562990996244686)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_36_LVCableDist_mvgd_33535_lvgd_1164120010_building_442011,BranchTee_mvgd_33535_lvgd_1164120010_36,BranchTee_mvgd_33535_lvgd_1164120010_building_442011,0.012172781422409337,0.010565974274651304,0.0010363560507097179,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019363598149662 47.56303045482338, 10.019514400000002 47.562990996244686)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_36_LVCableDist_mvgd_33535_lvgd_1164120010_building_446006,BranchTee_mvgd_33535_lvgd_1164120010_36,BranchTee_mvgd_33535_lvgd_1164120010_building_446006,0.012000506077885286,0.010416439275604428,0.0010216890169817546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019660749468423 47.562948248656966, 10.019514400000002 47.562990996244686)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_36_LVStation_mvgd_33535_lvgd_1164120010,BusBar_mvgd_33535_lvgd_1164120010_LV,BranchTee_mvgd_33535_lvgd_1164120010_36,0.030889311837655028,0.006363198238556935,0.0024842658596767046,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019570500000002 47.562715596244686, 10.019514400000002 47.562990996244686)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_37_LVCableDist_mvgd_33535_lvgd_1164120010_40,BranchTee_mvgd_33535_lvgd_1164120010_37,BranchTee_mvgd_33535_lvgd_1164120010_40,0.010722547067488937,0.002208844695902721,0.000862358402431847,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019577100000003 47.56489219624491, 10.019442299999993 47.5649232962449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_37_LVCableDist_mvgd_33535_lvgd_1164120010_54,BranchTee_mvgd_33535_lvgd_1164120010_37,BranchTee_mvgd_33535_lvgd_1164120010_54,0.029679263818058417,0.006113928346520033,0.0023869480236740014,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019563099999996 47.56462569624487, 10.019560499999997 47.56478899624492, 10.019577100000003 47.56489219624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_37_LVCableDist_mvgd_33535_lvgd_1164120010_building_446062,BranchTee_mvgd_33535_lvgd_1164120010_37,BranchTee_mvgd_33535_lvgd_1164120010_building_446062,0.01720178285890208,0.014931147521527006,0.001464510955236505,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019664999999435 47.56503509625229, 10.019577100000003 47.56489219624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_37_LVCableDist_mvgd_33535_lvgd_1164120010_building_446064,BranchTee_mvgd_33535_lvgd_1164120010_37,BranchTee_mvgd_33535_lvgd_1164120010_building_446064,0.020590729337217558,0.01787275306470484,0.001753036236883966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019822900004526 47.56497339628609, 10.019577100000003 47.56489219624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_38_LVCableDist_mvgd_33535_lvgd_1164120010_48,BranchTee_mvgd_33535_lvgd_1164120010_38,BranchTee_mvgd_33535_lvgd_1164120010_48,0.04243753138173103,0.008742131464636592,0.003413028782728512,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0186462 47.56498479624486, 10.018655200000005 47.56460289624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_38_LVCableDist_mvgd_33535_lvgd_1164120010_51,BranchTee_mvgd_33535_lvgd_1164120010_38,BranchTee_mvgd_33535_lvgd_1164120010_51,0.03490443170273428,0.0071903129307632615,0.0028071809591049394,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018655200000005 47.56460289624489, 10.018723700000008 47.56429219624485)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_38_LVCableDist_mvgd_33535_lvgd_1164120010_building_442020,BranchTee_mvgd_33535_lvgd_1164120010_38,BranchTee_mvgd_33535_lvgd_1164120010_building_442020,0.019190176958063743,0.01665707359959933,0.001633797183613866,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018520044371256 47.564749323167334, 10.018655200000005 47.56460289624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_38_LVCableDist_mvgd_33535_lvgd_1164120010_building_442026,BranchTee_mvgd_33535_lvgd_1164120010_38,BranchTee_mvgd_33535_lvgd_1164120010_building_442026,0.02589214407654992,0.02247438105844533,0.0022043836366092565,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018987519680772 47.5646627314022, 10.018655200000005 47.56460289624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_38_LVCableDist_mvgd_33535_lvgd_1164120010_building_442038,BranchTee_mvgd_33535_lvgd_1164120010_38,BranchTee_mvgd_33535_lvgd_1164120010_building_442038,0.01590212875709023,0.013803047761154319,0.0013538620948402402,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018444228280341 47.56459653615569, 10.018655200000005 47.56460289624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_38_LVCableDist_mvgd_33535_lvgd_1164120010_building_442050,BranchTee_mvgd_33535_lvgd_1164120010_38,BranchTee_mvgd_33535_lvgd_1164120010_building_442050,0.01492377878597248,0.012953839986224113,0.0012705681559206606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018823623739745 47.56453209986355, 10.018655200000005 47.56460289624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_39_LVCableDist_mvgd_33535_lvgd_1164120010_45,BranchTee_mvgd_33535_lvgd_1164120010_39,BranchTee_mvgd_33535_lvgd_1164120010_45,0.03817163179741625,0.007863356150267746,0.0030699447815756144,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018104099999999 47.56547319624496, 10.018055499999994 47.56523829624495, 10.018050399999996 47.56513199624492)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_39_LVCableDist_mvgd_33535_lvgd_1164120010_building_442084,BranchTee_mvgd_33535_lvgd_1164120010_39,BranchTee_mvgd_33535_lvgd_1164120010_building_442084,0.01601843669015441,0.013904003047054027,0.0013637642220529003,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01789725542614 47.5654395238723, 10.018104099999999 47.56547319624496)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_3_LVCableDist_mvgd_33535_lvgd_1164120010_6,BranchTee_mvgd_33535_lvgd_1164120010_3,BranchTee_mvgd_33535_lvgd_1164120010_6,0.008297255475766749,0.0026551217522453596,0.0006803381777230518,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018907399999998 47.56263989624471, 10.018815599999996 47.56268119624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_3_LVCableDist_mvgd_33535_lvgd_1164120010_building_441995,BranchTee_mvgd_33535_lvgd_1164120010_3,BranchTee_mvgd_33535_lvgd_1164120010_building_441995,0.01701444618405477,0.01476853928775954,0.0014485616426052573,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01858980172769 47.56267570609085, 10.018815599999996 47.56268119624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_40_LVCableDist_mvgd_33535_lvgd_1164120010_41,BranchTee_mvgd_33535_lvgd_1164120010_40,BranchTee_mvgd_33535_lvgd_1164120010_41,0.015449791882662817,0.00318265712782854,0.001242545988558457,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019320300000002 47.56503509624496, 10.019442299999993 47.5649232962449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_40_LVCableDist_mvgd_33535_lvgd_1164120010_building_442036,BranchTee_mvgd_33535_lvgd_1164120010_40,BranchTee_mvgd_33535_lvgd_1164120010_building_442036,0.016415079519138044,0.014248289022611823,0.0013975332664087833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019324743821509 47.564798879695424, 10.019442299999993 47.5649232962449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_41_LVCableDist_mvgd_33535_lvgd_1164120010_building_442039,BranchTee_mvgd_33535_lvgd_1164120010_41,BranchTee_mvgd_33535_lvgd_1164120010_building_442039,0.015723436284856968,0.013647942695255849,0.0013386487250779033,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019498921513698 47.56510838873945, 10.019320300000002 47.56503509624496)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_42_LVCableDist_mvgd_33535_lvgd_1164120010_45,BranchTee_mvgd_33535_lvgd_1164120010_42,BranchTee_mvgd_33535_lvgd_1164120010_45,0.020285916803550626,0.004178898861531429,0.0016314902323550306,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018050399999996 47.56513199624492, 10.018050399999998 47.5650803962449, 10.018099499999998 47.56502729624487, 10.018199400000002 47.565036396244906)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_42_LVCableDist_mvgd_33535_lvgd_1164120010_48,BranchTee_mvgd_33535_lvgd_1164120010_42,BranchTee_mvgd_33535_lvgd_1164120010_48,0.034152194692479085,0.007035352106650691,0.0027466824691164318,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018199400000002 47.565036396244906, 10.018337700000002 47.56502569624493, 10.0186462 47.56498479624486)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_42_LVCableDist_mvgd_33535_lvgd_1164120010_49,BranchTee_mvgd_33535_lvgd_1164120010_42,BranchTee_mvgd_33535_lvgd_1164120010_49,0.03669729610144379,0.00755964299689742,0.002951371669475972,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.018472499999998 47.565300196244976, 10.018312499999997 47.56519359624495, 10.018224200000006 47.56510949624491, 10.018199400000002 47.565036396244906)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_43_LVCableDist_mvgd_33535_lvgd_1164120010_46,BranchTee_mvgd_33535_lvgd_1164120010_43,BranchTee_mvgd_33535_lvgd_1164120010_46,0.01130396531133869,0.00232861685413577,0.0009091188320905085,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019825600000003 47.56386189624484, 10.019886800000004 47.563768996244804)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_43_LVCableDist_mvgd_33535_lvgd_1164120010_47,BranchTee_mvgd_33535_lvgd_1164120010_43,BranchTee_mvgd_33535_lvgd_1164120010_47,0.020658528839444378,0.0042556569409255415,0.001661457470360866,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019886800000004 47.563768996244804, 10.019881700000003 47.56358309624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_43_LVCableDist_mvgd_33535_lvgd_1164120010_building_446033,BranchTee_mvgd_33535_lvgd_1164120010_43,BranchTee_mvgd_33535_lvgd_1164120010_building_446033,0.019798839555170235,0.017185392733887764,0.0016856169890850099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020118959983893 47.5638526380548, 10.019886800000004 47.563768996244804)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_44_LVCableDist_mvgd_33535_lvgd_1164120010_54,BranchTee_mvgd_33535_lvgd_1164120010_44,BranchTee_mvgd_33535_lvgd_1164120010_54,0.053372686278897484,0.01099477337345288,0.004292486121373109,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019563099999996 47.56462569624487, 10.020194999999996 47.564408096244875)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_44_LVCableDist_mvgd_33535_lvgd_1164120010_building_446053,BranchTee_mvgd_33535_lvgd_1164120010_44,BranchTee_mvgd_33535_lvgd_1164120010_building_446053,0.021682478624631994,0.01882039144618057,0.0018459846716424393,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020310692725 47.56458679871651, 10.020194999999996 47.564408096244875)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_45_LVCableDist_mvgd_33535_lvgd_1164120010_building_442025,BranchTee_mvgd_33535_lvgd_1164120010_45,BranchTee_mvgd_33535_lvgd_1164120010_building_442025,0.01709065782769981,0.014834690994443435,0.0014550500855736548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01782484231713 47.56511488608593, 10.018050399999996 47.56513199624492)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_46_LVCableDist_mvgd_33535_lvgd_1164120010_52,BranchTee_mvgd_33535_lvgd_1164120010_46,BranchTee_mvgd_33535_lvgd_1164120010_52,0.025339535624021328,0.005219944338548393,0.0020379263734221376,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0195399 47.56398239624477, 10.019825600000003 47.56386189624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_46_LVCableDist_mvgd_33535_lvgd_1164120010_building_446026,BranchTee_mvgd_33535_lvgd_1164120010_46,BranchTee_mvgd_33535_lvgd_1164120010_building_446026,0.013234518819562113,0.011487562335379915,0.0011267493583377026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019692200003751 47.56378434627786, 10.019825600000003 47.56386189624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_46_LVCableDist_mvgd_33535_lvgd_1164120010_building_446042,BranchTee_mvgd_33535_lvgd_1164120010_46,BranchTee_mvgd_33535_lvgd_1164120010_building_446042,0.023210000502416825,0.020146280436097803,0.00197603354754844,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019978414399496 47.56404330982855, 10.019825600000003 47.56386189624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_47_LVCableDist_mvgd_33535_lvgd_1164120010_56,BranchTee_mvgd_33535_lvgd_1164120010_47,BranchTee_mvgd_33535_lvgd_1164120010_56,0.03834364912300741,0.007898791719339526,0.0030837792357546186,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019881700000003 47.56358309624477, 10.019641799999997 47.563278696244744)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_47_LVCableDist_mvgd_33535_lvgd_1164120010_building_446021,BranchTee_mvgd_33535_lvgd_1164120010_47,BranchTee_mvgd_33535_lvgd_1164120010_building_446021,0.01269982102495768,0.011023444649663266,0.001081226706159022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019713544317954 47.56357434864717, 10.019881700000003 47.56358309624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_47_LVCableDist_mvgd_33535_lvgd_1164120010_building_446032,BranchTee_mvgd_33535_lvgd_1164120010_47,BranchTee_mvgd_33535_lvgd_1164120010_building_446032,0.014882301987873171,0.012917838125473912,0.0012670369390867533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020064309813005 47.563634320181784, 10.019881700000003 47.56358309624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_48_LVCableDist_mvgd_33535_lvgd_1164120010_building_442019,BranchTee_mvgd_33535_lvgd_1164120010_48,BranchTee_mvgd_33535_lvgd_1164120010_building_442019,0.017882969191621287,0.015522417258327276,0.0015225052256564683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0184788499897 47.56487059626727, 10.0186462 47.56498479624486)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_48_LVCableDist_mvgd_33535_lvgd_1164120010_building_442027,BranchTee_mvgd_33535_lvgd_1164120010_48,BranchTee_mvgd_33535_lvgd_1164120010_building_442027,0.02266462965992218,0.019672898544812453,0.0019296022223741058,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018931576938218 47.56491995208421, 10.0186462 47.56498479624486)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_49_LVCableDist_mvgd_33535_lvgd_1164120010_building_442091,BranchTee_mvgd_33535_lvgd_1164120010_49,BranchTee_mvgd_33535_lvgd_1164120010_building_442091,0.017719124940637737,0.015380200448473555,0.0015085559912959292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018366165560277 47.56544246215887, 10.018472499999998 47.565300196244976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_49_LVCableDist_mvgd_33535_lvgd_1164120010_building_442092,BranchTee_mvgd_33535_lvgd_1164120010_49,BranchTee_mvgd_33535_lvgd_1164120010_building_442092,0.01165358255727752,0.010115309659716888,0.0009921529333835153,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018491399996227 47.565404296284036, 10.018472499999998 47.565300196244976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_4_LVCableDist_mvgd_33535_lvgd_1164120010_5,BranchTee_mvgd_33535_lvgd_1164120010_4,BranchTee_mvgd_33535_lvgd_1164120010_5,0.01976462159539294,0.006324678910525741,0.0016206113791322916,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0186982 47.56345569624476, 10.018812600000004 47.56361579624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_4_LVCableDist_mvgd_33535_lvgd_1164120010_8,BranchTee_mvgd_33535_lvgd_1164120010_4,BranchTee_mvgd_33535_lvgd_1164120010_8,0.02665437617965092,0.008529400377488295,0.002185540721431464,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018812600000004 47.56361579624483, 10.018506700000001 47.563736496244786)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_4_LVCableDist_mvgd_33535_lvgd_1164120010_9,BranchTee_mvgd_33535_lvgd_1164120010_4,BranchTee_mvgd_33535_lvgd_1164120010_9,0.01550395789820237,0.004961266527424759,0.0012712558381219644,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018812600000004 47.56361579624483, 10.0189023 47.56374139624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_50_LVCableDist_mvgd_33535_lvgd_1164120010_54,BranchTee_mvgd_33535_lvgd_1164120010_50,BranchTee_mvgd_33535_lvgd_1164120010_54,0.016836154717719636,0.003468247871850245,0.0013540439033827621,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019502199999998 47.564479896244904, 10.019563099999996 47.56462569624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_50_LVCableDist_mvgd_33535_lvgd_1164120010_55,BranchTee_mvgd_33535_lvgd_1164120010_50,BranchTee_mvgd_33535_lvgd_1164120010_55,0.04685600130321634,0.009652336268462566,0.003768383218451923,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019209099999994 47.56410789624483, 10.019502199999998 47.564479896244904)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_50_LVCableDist_mvgd_33535_lvgd_1164120010_building_442078,BranchTee_mvgd_33535_lvgd_1164120010_50,BranchTee_mvgd_33535_lvgd_1164120010_building_442078,0.018389277220693324,0.015961892627561806,0.0015656108537987553,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019283148875285 47.56455306350267, 10.019502199999998 47.564479896244904)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_50_LVCableDist_mvgd_33535_lvgd_1164120010_building_446044,BranchTee_mvgd_33535_lvgd_1164120010_50,BranchTee_mvgd_33535_lvgd_1164120010_building_446044,0.014844900034639844,0.012885373230067384,0.0012638526429758939,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019689899986279 47.56443904630662, 10.019502199999998 47.564479896244904)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_51_LVCableDist_mvgd_33535_lvgd_1164120010_55,BranchTee_mvgd_33535_lvgd_1164120010_51,BranchTee_mvgd_33535_lvgd_1164120010_55,0.04189646264060781,0.008630671303965208,0.003369513452624198,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019209099999994 47.56410789624483, 10.018723700000008 47.56429219624485)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_51_LVCableDist_mvgd_33535_lvgd_1164120010_building_442030,BranchTee_mvgd_33535_lvgd_1164120010_51,BranchTee_mvgd_33535_lvgd_1164120010_building_442030,0.0243885723375064,0.021169280788955552,0.002076373807519146,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018437205011072 47.56418982225757, 10.018723700000008 47.56429219624485)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_51_LVCableDist_mvgd_33535_lvgd_1164120010_building_442032,BranchTee_mvgd_33535_lvgd_1164120010_51,BranchTee_mvgd_33535_lvgd_1164120010_building_442032,0.014439967123159928,0.012533891462902817,0.001229377804532549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018717347733268 47.56416230415997, 10.018723700000008 47.56429219624485)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_51_LVCableDist_mvgd_33535_lvgd_1164120010_building_442068,BranchTee_mvgd_33535_lvgd_1164120010_51,BranchTee_mvgd_33535_lvgd_1164120010_building_442068,0.019424802790398592,0.016860728822065976,0.0016537725608555367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018881324679292 47.56443058913273, 10.018723700000008 47.56429219624485)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_52_LVCableDist_mvgd_33535_lvgd_1164120010_55,BranchTee_mvgd_33535_lvgd_1164120010_52,BranchTee_mvgd_33535_lvgd_1164120010_55,0.028547042202159728,0.005880690693644904,0.0022958893584389835,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019209099999994 47.56410789624483, 10.0195399 47.56398239624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_52_LVCableDist_mvgd_33535_lvgd_1164120010_building_442057,BranchTee_mvgd_33535_lvgd_1164120010_52,BranchTee_mvgd_33535_lvgd_1164120010_building_442057,0.013040140296621726,0.011318841777467658,0.001110200522752235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019379754605293 47.56393774004528, 10.0195399 47.56398239624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_52_LVCableDist_mvgd_33535_lvgd_1164120010_building_446027,BranchTee_mvgd_33535_lvgd_1164120010_52,BranchTee_mvgd_33535_lvgd_1164120010_building_446027,0.010150772060768575,0.008810870148747122,0.0008642079143215647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01957365 47.56389394625559, 10.0195399 47.56398239624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_52_LVCableDist_mvgd_33535_lvgd_1164120010_building_446040,BranchTee_mvgd_33535_lvgd_1164120010_52,BranchTee_mvgd_33535_lvgd_1164120010_building_446040,0.021828636165440323,0.018947256191602202,0.0018584281097127817,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019683711081795 47.564152977513615, 10.0195399 47.56398239624477)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_53_LVCableDist_mvgd_33535_lvgd_1164120010_56,BranchTee_mvgd_33535_lvgd_1164120010_53,BranchTee_mvgd_33535_lvgd_1164120010_56,0.020570038842097522,0.0042374280014720895,0.001654340682505991,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.019641799999997 47.563278696244744, 10.019626700000005 47.56325949624472, 10.0195246 47.563111496244744)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_53_LVCableDist_mvgd_33535_lvgd_1164120010_building_442012,BranchTee_mvgd_33535_lvgd_1164120010_53,BranchTee_mvgd_33535_lvgd_1164120010_building_442012,0.027516651106144128,0.0238844531601331,0.0023426895529909536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0191946262031 47.563217890846914, 10.0195246 47.563111496244744)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_54_LVCableDist_mvgd_33535_lvgd_1164120010_building_446054,BranchTee_mvgd_33535_lvgd_1164120010_54,BranchTee_mvgd_33535_lvgd_1164120010_building_446054,0.019707040499774665,0.01710571115380441,0.0016778014781342015,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019796706487272 47.56470565591331, 10.019563099999996 47.56462569624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_55_LVCableDist_mvgd_33535_lvgd_1164120010_building_442054,BranchTee_mvgd_33535_lvgd_1164120010_55,BranchTee_mvgd_33535_lvgd_1164120010_building_442054,0.01902486236306584,0.016513580531141152,0.0016197227683383809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01896816372655 47.56405636887338, 10.019209099999994 47.56410789624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_55_LVCableDist_mvgd_33535_lvgd_1164120010_building_442065,BranchTee_mvgd_33535_lvgd_1164120010_55,BranchTee_mvgd_33535_lvgd_1164120010_building_442065,0.020950245656358203,0.01818481322971892,0.0017836444355972347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019435721426934 47.564217276390025, 10.019209099999994 47.56410789624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_55_LVCableDist_mvgd_33535_lvgd_1164120010_building_442073,BranchTee_mvgd_33535_lvgd_1164120010_55,BranchTee_mvgd_33535_lvgd_1164120010_building_442073,0.02592654259670082,0.022504238973936313,0.0022073122289544876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01916681322055 47.56433947542459, 10.019209099999994 47.56410789624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_56_LVCableDist_mvgd_33535_lvgd_1164120010_building_442005,BranchTee_mvgd_33535_lvgd_1164120010_56,BranchTee_mvgd_33535_lvgd_1164120010_building_442005,0.02333156274979835,0.020251796466824967,0.0019863830121646196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019456697349245 47.56344709410309, 10.019641799999997 47.563278696244744)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_56_LVCableDist_mvgd_33535_lvgd_1164120010_building_446010,BranchTee_mvgd_33535_lvgd_1164120010_56,BranchTee_mvgd_33535_lvgd_1164120010_building_446010,0.012229245327763986,0.01061498494449914,0.0010411632273056325,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019795894160557 47.56324394580854, 10.019641799999997 47.563278696244744)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_5_LVCableDist_mvgd_33535_lvgd_1164120010_7,BranchTee_mvgd_33535_lvgd_1164120010_5,BranchTee_mvgd_33535_lvgd_1164120010_7,0.024848978234582503,0.0079516730350664,0.0020375060909925014,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.018726899999999 47.56323289624478, 10.0187148 47.563326896244796, 10.0186982 47.56345569624476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_5_LVCableDist_mvgd_33535_lvgd_1164120010_building_442018,BranchTee_mvgd_33535_lvgd_1164120010_5,BranchTee_mvgd_33535_lvgd_1164120010_building_442018,0.017639554389703577,0.015311133210262704,0.0015017815804971686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018526720079295 47.56356385413874, 10.0186982 47.56345569624476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_6_LVCableDist_mvgd_33535_lvgd_1164120010_building_441939,BranchTee_mvgd_33535_lvgd_1164120010_6,BranchTee_mvgd_33535_lvgd_1164120010_building_441939,0.011588308522881344,0.010058651797861006,0.0009865956874137343,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018856880546029 47.56254137912732, 10.018907399999998 47.56263989624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_7_LVCableDist_mvgd_33535_lvgd_1164120010_building_442000,BranchTee_mvgd_33535_lvgd_1164120010_7,BranchTee_mvgd_33535_lvgd_1164120010_building_442000,0.014988817749074923,0.013010293806197034,0.0012761053885878813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018549169191195 47.563172159489504, 10.018726899999999 47.56323289624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_7_LVCableDist_mvgd_33535_lvgd_1164120010_building_442009,BranchTee_mvgd_33535_lvgd_1164120010_7,BranchTee_mvgd_33535_lvgd_1164120010_building_442009,0.01768786012543982,0.015353062588881765,0.0015058941936935315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018909530348298 47.563132783861626, 10.018726899999999 47.56323289624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_8_LVCableDist_mvgd_33535_lvgd_1164120010_building_442021,BranchTee_mvgd_33535_lvgd_1164120010_8,BranchTee_mvgd_33535_lvgd_1164120010_building_442021,0.014372068662715018,0.012474955599236635,0.0012235971223799544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018492567367003 47.56386549356873, 10.018506700000001 47.563736496244786)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_9_LVCableDist_mvgd_33535_lvgd_1164120010_building_442010,BranchTee_mvgd_33535_lvgd_1164120010_9,BranchTee_mvgd_33535_lvgd_1164120010_building_442010,0.00993548616420114,0.00862400199052659,0.0008458790843033579,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019018496148966 47.56369903324038, 10.0189023 47.56374139624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_9_LVCableDist_mvgd_33535_lvgd_1164120010_building_442017,BranchTee_mvgd_33535_lvgd_1164120010_9,BranchTee_mvgd_33535_lvgd_1164120010_building_442017,0.021571174065955524,0.018723779089249395,0.0018365085175201302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019150287481633 47.563838579417514, 10.0189023 47.56374139624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_9_LVCableDist_mvgd_33535_lvgd_1164120010_building_442022,BranchTee_mvgd_33535_lvgd_1164120010_9,BranchTee_mvgd_33535_lvgd_1164120010_building_442022,0.029820177251668915,0.025883913854448617,0.0025388052291081494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019298249993597 47.563736896301535, 10.0189023 47.56374139624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120010_9_LVCableDist_mvgd_33535_lvgd_1164120010_building_442023,BranchTee_mvgd_33535_lvgd_1164120010_9,BranchTee_mvgd_33535_lvgd_1164120010_building_442023,0.013456252284244566,0.011680026982724283,0.0011456271160000108,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01879217455843 47.5638367748532, 10.0189023 47.56374139624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_10_LVCableDist_mvgd_33535_lvgd_1164120011_11,BranchTee_mvgd_33535_lvgd_1164120011_10,BranchTee_mvgd_33535_lvgd_1164120011_11,0.04123728737750253,0.0067629151299104144,0.0033164994324258058,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0195974 47.55999569624451, 10.019539000000005 47.55966559624444, 10.019531 47.55962729624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_10_LVCableDist_mvgd_33535_lvgd_1164120011_building_445980,BranchTee_mvgd_33535_lvgd_1164120011_10,BranchTee_mvgd_33535_lvgd_1164120011_building_445980,0.031013343552724983,0.026919582203765283,0.002640388020476274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020005476637603 47.560033248437755, 10.0195974 47.55999569624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_11_LVCableDist_mvgd_33535_lvgd_1164120011_13,BranchTee_mvgd_33535_lvgd_1164120011_11,BranchTee_mvgd_33535_lvgd_1164120011_13,0.04835063923435891,0.007929504834434862,0.0038885891331848286,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.019531 47.55962729624444, 10.0195202 47.55956709624446, 10.0200619 47.55949319624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_11_LVCableDist_mvgd_33535_lvgd_1164120011_26,BranchTee_mvgd_33535_lvgd_1164120011_11,BranchTee_mvgd_33535_lvgd_1164120011_26,0.03602266994992212,0.005907717871787228,0.0028971150151005476,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.019056799999994 47.55966339624444, 10.019304000000005 47.559655896244465, 10.019531 47.55962729624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_12_LVCableDist_mvgd_33535_lvgd_1164120011_24,BranchTee_mvgd_33535_lvgd_1164120011_12,BranchTee_mvgd_33535_lvgd_1164120011_24,0.015312604554306525,0.0025112671469062703,0.0012315127289634557,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018939299999996 47.560034096244465, 10.018930900000004 47.5598963962445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_12_LVCableDist_mvgd_33535_lvgd_1164120011_25,BranchTee_mvgd_33535_lvgd_1164120011_12,BranchTee_mvgd_33535_lvgd_1164120011_25,0.02341096791223825,0.0038393987376070735,0.0018828217550467602,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018930900000004 47.5598963962445, 10.018897699999993 47.55968689624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_12_LVCableDist_mvgd_33535_lvgd_1164120011_9,BranchTee_mvgd_33535_lvgd_1164120011_9,BranchTee_mvgd_33535_lvgd_1164120011_12,0.036859850414474316,0.006045015467973788,0.0029644450630279986,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018455000000003 47.5599518962445, 10.018586400000002 47.55991159624448, 10.018930900000004 47.5598963962445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_12_LVCableDist_mvgd_33535_lvgd_1164120011_building_441923,BranchTee_mvgd_33535_lvgd_1164120011_12,BranchTee_mvgd_33535_lvgd_1164120011_building_441923,0.018444152449094985,0.016009524325814446,0.0015702827749492858,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01915443712549 47.55982856485545, 10.018930900000004 47.5598963962445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_13_LVCableDist_mvgd_33535_lvgd_1164120011_14,BranchTee_mvgd_33535_lvgd_1164120011_13,BranchTee_mvgd_33535_lvgd_1164120011_14,0.04906222574819279,0.00804620502270362,0.003945818316269734,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0200619 47.55949319624441, 10.019975799999997 47.559055496244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_13_LVCableDist_mvgd_33535_lvgd_1164120011_18,BranchTee_mvgd_33535_lvgd_1164120011_13,BranchTee_mvgd_33535_lvgd_1164120011_18,0.007332714087416819,0.0012025651103363584,0.0005897318581223185,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0200619 47.55949319624441, 10.020157699999997 47.55948139624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_14_LVCableDist_mvgd_33535_lvgd_1164120011_15,BranchTee_mvgd_33535_lvgd_1164120011_14,BranchTee_mvgd_33535_lvgd_1164120011_15,0.03046588088935488,0.0049964044658542,0.0024502115222307572,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.019975799999997 47.559055496244355, 10.0200221 47.55878309624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_14_LVCableDist_mvgd_33535_lvgd_1164120011_building_445748,BranchTee_mvgd_33535_lvgd_1164120011_14,BranchTee_mvgd_33535_lvgd_1164120011_building_445748,0.022985280671524833,0.019951223622883554,0.001956901539145607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020276774405716 47.559021141922805, 10.019975799999997 47.559055496244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_14_LVCableDist_mvgd_33535_lvgd_1164120011_building_445751,BranchTee_mvgd_33535_lvgd_1164120011_14,BranchTee_mvgd_33535_lvgd_1164120011_building_445751,0.024739055334606515,0.021473500030438457,0.002106212934840278,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019749648151452 47.559216990643684, 10.019975799999997 47.559055496244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_14_LVCableDist_mvgd_33535_lvgd_1164120011_building_445759,BranchTee_mvgd_33535_lvgd_1164120011_14,BranchTee_mvgd_33535_lvgd_1164120011_building_445759,0.016703155731912195,0.014498339175299786,0.0014220592572907374,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019754579107827 47.559044695049884, 10.019975799999997 47.559055496244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_15_LVCableDist_mvgd_33535_lvgd_1164120011_19,BranchTee_mvgd_33535_lvgd_1164120011_15,BranchTee_mvgd_33535_lvgd_1164120011_19,0.009323939578694802,0.0015291260909059475,0.0007498757141233332,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0200221 47.55878309624441, 10.0200371 47.558699796244376)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_15_LVCableDist_mvgd_33535_lvgd_1164120011_building_445757,BranchTee_mvgd_33535_lvgd_1164120011_15,BranchTee_mvgd_33535_lvgd_1164120011_building_445757,0.025789984301526743,0.022385706373725212,0.0021956860434043453,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01969021238251 47.558840309819324, 10.0200221 47.55878309624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_16_LVCableDist_mvgd_33535_lvgd_1164120011_17,BranchTee_mvgd_33535_lvgd_1164120011_16,BranchTee_mvgd_33535_lvgd_1164120011_17,0.010946462245588129,0.0017952198082764532,0.0008803667295625649,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.019080299999997 47.560771396244554, 10.018963999999997 47.56071229624459)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_16_LVCableDist_mvgd_33535_lvgd_1164120011_8,BranchTee_mvgd_33535_lvgd_1164120011_8,BranchTee_mvgd_33535_lvgd_1164120011_16,0.04545125109366145,0.007454005179360478,0.003655406503227184,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.019418700000001 47.561098996244624, 10.019310500000007 47.56091929624457, 10.0192354 47.56087099624455, 10.019080299999997 47.560771396244554)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_16_LVCableDist_mvgd_33535_lvgd_1164120011_building_441944,BranchTee_mvgd_33535_lvgd_1164120011_16,BranchTee_mvgd_33535_lvgd_1164120011_building_441944,0.024083811995663434,0.02090474881223586,0.002050427377255979,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019313465389889 47.56062303696584, 10.019080299999997 47.560771396244554)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_17_LVCableDist_mvgd_33535_lvgd_1164120011_22,BranchTee_mvgd_33535_lvgd_1164120011_17,BranchTee_mvgd_33535_lvgd_1164120011_22,0.022011106984961417,0.0036098215455336725,0.0017702382592341445,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018812999999994 47.56087519624456, 10.018931900000004 47.560790596244516, 10.018963999999997 47.56071229624459)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_17_LVCableDist_mvgd_33535_lvgd_1164120011_23,BranchTee_mvgd_33535_lvgd_1164120011_17,BranchTee_mvgd_33535_lvgd_1164120011_23,0.058251986157761594,0.009553325729872901,0.004684902701318097,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018963999999997 47.56071229624459, 10.018954299999992 47.56060039624449, 10.018946999999999 47.56038539624447, 10.018952400000002 47.56018829624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_18_LVCableDist_mvgd_33535_lvgd_1164120011_building_445756,BranchTee_mvgd_33535_lvgd_1164120011_18,BranchTee_mvgd_33535_lvgd_1164120011_building_445756,0.022803602046514337,0.019793526576374443,0.0019414339368137663,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02029905981057 47.55929989420158, 10.020157699999997 47.55948139624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_18_LVStation_mvgd_33535_lvgd_1164120011,BusBar_mvgd_33535_lvgd_1164120011_LV,BranchTee_mvgd_33535_lvgd_1164120011_18,0.06606424079778847,0.01083453549083731,0.005313201499016176,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021014800000001 47.55935469624443, 10.020157699999997 47.55948139624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_19_LVCableDist_mvgd_33535_lvgd_1164120011_building_445755,BranchTee_mvgd_33535_lvgd_1164120011_19,BranchTee_mvgd_33535_lvgd_1164120011_building_445755,0.024377026693638608,0.021159259170078312,0.002075390844179338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019742105647618 47.558609484987755, 10.0200371 47.558699796244376)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_1_LVCableDist_mvgd_33535_lvgd_1164120011_4,BranchTee_mvgd_33535_lvgd_1164120011_1,BranchTee_mvgd_33535_lvgd_1164120011_4,0.05318906980102691,0.006648633725128364,0.0042442991298297945,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020290999999999 47.560246296244486, 10.020202000000003 47.55977139624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_1_LVCableDist_mvgd_33535_lvgd_1164120011_5,BranchTee_mvgd_33535_lvgd_1164120011_1,BranchTee_mvgd_33535_lvgd_1164120011_5,0.04120976041237241,0.0051512200515465515,0.003288392726419699,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020401199999997 47.56060959624453, 10.020290999999999 47.560246296244486)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_1_LVCableDist_mvgd_33535_lvgd_1164120011_building_445983,BranchTee_mvgd_33535_lvgd_1164120011_1,BranchTee_mvgd_33535_lvgd_1164120011_building_445983,0.020592165268896668,0.017873999453402307,0.0017531584880303892,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02006831784892 47.56035385627088, 10.020290999999999 47.560246296244486)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_1_LVCableDist_mvgd_33535_lvgd_1164120011_building_445991,BranchTee_mvgd_33535_lvgd_1164120011_1,BranchTee_mvgd_33535_lvgd_1164120011_building_445991,0.025184018641737242,0.021859728181027927,0.0021440958475195285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020598724518583 47.56015756020467, 10.020290999999999 47.560246296244486)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_20_LVCableDist_mvgd_33535_lvgd_1164120011_21,BranchTee_mvgd_33535_lvgd_1164120011_20,BranchTee_mvgd_33535_lvgd_1164120011_21,0.034180785020389765,0.0056056487433439215,0.0027489818397181064,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018002899999995 47.560929796244544, 10.018452599999996 47.560888096244554)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_20_LVCableDist_mvgd_33535_lvgd_1164120011_building_441997,BranchTee_mvgd_33535_lvgd_1164120011_20,BranchTee_mvgd_33535_lvgd_1164120011_building_441997,0.017634513278917182,0.015306757526100114,0.0015013523946369705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018087071966152 47.56107790355766, 10.018002899999995 47.560929796244544)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_21_LVCableDist_mvgd_33535_lvgd_1164120011_22,BranchTee_mvgd_33535_lvgd_1164120011_21,BranchTee_mvgd_33535_lvgd_1164120011_22,0.027178298747411168,0.004457240994575432,0.002185808478257551,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018452599999996 47.560888096244554, 10.018812999999994 47.56087519624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_21_LVCableDist_mvgd_33535_lvgd_1164120011_building_441930,BranchTee_mvgd_33535_lvgd_1164120011_21,BranchTee_mvgd_33535_lvgd_1164120011_building_441930,0.03051473841007235,0.0264867929399428,0.0025979381942145647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018219335326545 47.56066352821885, 10.018452599999996 47.560888096244554)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_21_LVCableDist_mvgd_33535_lvgd_1164120011_building_441935,BranchTee_mvgd_33535_lvgd_1164120011_21,BranchTee_mvgd_33535_lvgd_1164120011_building_441935,0.017346624921918977,0.015056870432225672,0.0014768423972624414,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018438950000208 47.56073224629599, 10.018452599999996 47.560888096244554)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_21_LVCableDist_mvgd_33535_lvgd_1164120011_building_441938,BranchTee_mvgd_33535_lvgd_1164120011_21,BranchTee_mvgd_33535_lvgd_1164120011_building_441938,0.017597788247409023,0.015274880198751032,0.0014982257297199517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018377066082362 47.561037979310115, 10.018452599999996 47.560888096244554)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_22_LVCableDist_mvgd_33535_lvgd_1164120011_building_441936,BranchTee_mvgd_33535_lvgd_1164120011_22,BranchTee_mvgd_33535_lvgd_1164120011_building_441936,0.01562302301135262,0.013560783973854074,0.0013300998240538345,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018664949999437 47.560776696281, 10.018812999999994 47.56087519624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_22_LVCableDist_mvgd_33535_lvgd_1164120011_building_441942,BranchTee_mvgd_33535_lvgd_1164120011_22,BranchTee_mvgd_33535_lvgd_1164120011_building_441942,0.022561930130269633,0.01958375535307404,0.001920858675992461,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018679573955561 47.56105701169651, 10.018812999999994 47.56087519624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_23_LVCableDist_mvgd_33535_lvgd_1164120011_24,BranchTee_mvgd_33535_lvgd_1164120011_23,BranchTee_mvgd_33535_lvgd_1164120011_24,0.017161192462280643,0.0028144355638140255,0.0013801849898583398,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018952400000002 47.56018829624447, 10.018939299999996 47.560034096244465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_23_LVCableDist_mvgd_33535_lvgd_1164120011_building_441929,BranchTee_mvgd_33535_lvgd_1164120011_23,BranchTee_mvgd_33535_lvgd_1164120011_building_441929,0.024188144090536854,0.02099530907058599,0.0020593099156055333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019243076219206 47.560280910024304, 10.018952400000002 47.56018829624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_24_LVCableDist_mvgd_33535_lvgd_1164120011_building_441922,BranchTee_mvgd_33535_lvgd_1164120011_24,BranchTee_mvgd_33535_lvgd_1164120011_building_441922,0.016904372204558694,0.014672995073556946,0.0014391902565006444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01872291327215 47.560074559649735, 10.018939299999996 47.560034096244465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_24_LVCableDist_mvgd_33535_lvgd_1164120011_building_441927,BranchTee_mvgd_33535_lvgd_1164120011_24,BranchTee_mvgd_33535_lvgd_1164120011_building_441927,0.018034789518551607,0.015654197302102796,0.0015354307772600902,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019174564714321 47.56006441963017, 10.018939299999996 47.560034096244465)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_25_LVCableDist_mvgd_33535_lvgd_1164120011_26,BranchTee_mvgd_33535_lvgd_1164120011_25,BranchTee_mvgd_33535_lvgd_1164120011_26,0.012262735706648384,0.002011088655890335,0.000986227722468347,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018897699999993 47.55968689624447, 10.019056799999994 47.55966339624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_25_LVCableDist_mvgd_33535_lvgd_1164120011_7,BranchTee_mvgd_33535_lvgd_1164120011_7,BranchTee_mvgd_33535_lvgd_1164120011_25,0.037292126177112674,0.0061159086930464785,0.002999210742649876,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.018897699999993 47.55968689624447, 10.018890100000004 47.55935129624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_25_LVCableDist_mvgd_33535_lvgd_1164120011_building_441829,BranchTee_mvgd_33535_lvgd_1164120011_25,BranchTee_mvgd_33535_lvgd_1164120011_building_441829,0.014244989228521134,0.012364650650356345,0.0012127779401423476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018716786915554 47.559724331610596, 10.018897699999993 47.55968689624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_26_LVCableDist_mvgd_33535_lvgd_1164120011_building_441802,BranchTee_mvgd_33535_lvgd_1164120011_26,BranchTee_mvgd_33535_lvgd_1164120011_building_441802,0.018010788432728717,0.015633364359608527,0.0015333873929543175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019154295552344 47.55951537465795, 10.019056799999994 47.55966339624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_27_LVCableDist_mvgd_33535_lvgd_1164120011_28,BranchTee_mvgd_33535_lvgd_1164120011_27,BranchTee_mvgd_33535_lvgd_1164120011_28,0.006653830111500612,0.002987569720063775,0.0005643978425061717,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.023580199999996 47.55914129624439, 10.023498500000002 47.559164096244366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_27_LVCableDist_mvgd_33535_lvgd_1164120011_building_445795,BranchTee_mvgd_33535_lvgd_1164120011_27,BranchTee_mvgd_33535_lvgd_1164120011_building_445795,0.027904948216121026,0.024221495051593052,0.0023757480665248317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023561809595206 47.558890453479115, 10.023580199999996 47.55914129624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_27_LVCableDist_mvgd_33535_lvgd_1164120011_building_445797,BranchTee_mvgd_33535_lvgd_1164120011_27,BranchTee_mvgd_33535_lvgd_1164120011_building_445797,0.022178151854532258,0.019250635809734,0.0018881848831763695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023607441494878 47.558942542290474, 10.023580199999996 47.55914129624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_27_LVCableDist_mvgd_33535_lvgd_1164120011_building_445815,BranchTee_mvgd_33535_lvgd_1164120011_27,BranchTee_mvgd_33535_lvgd_1164120011_building_445815,0.020214853722240612,0.01754649303090485,0.0017210352541686702,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023676799998743 47.558971546272105, 10.023580199999996 47.55914129624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_28_LVCableDist_mvgd_33535_lvgd_1164120011_31,BranchTee_mvgd_33535_lvgd_1164120011_28,BranchTee_mvgd_33535_lvgd_1164120011_31,0.028603649047465117,0.012843038422311838,0.002426247370261182,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.023498500000002 47.559164096244366, 10.0231414 47.559251796244425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_28_LVCableDist_mvgd_33535_lvgd_1164120011_building_445803,BranchTee_mvgd_33535_lvgd_1164120011_28,BranchTee_mvgd_33535_lvgd_1164120011_building_445803,0.013465534323356353,0.011688083792673314,0.0011464173624574651,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02339664382072 47.55906448977143, 10.023498500000002 47.559164096244366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_29_LVCableDist_mvgd_33535_lvgd_1164120011_31,BranchTee_mvgd_33535_lvgd_1164120011_29,BranchTee_mvgd_33535_lvgd_1164120011_31,0.04107327610395494,0.01844190097067577,0.0034839585666103516,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022601699999996 47.55929779624443, 10.022948300000003 47.55928129624442, 10.0231414 47.559251796244425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_29_LVCableDist_mvgd_33535_lvgd_1164120011_33,BranchTee_mvgd_33535_lvgd_1164120011_29,BranchTee_mvgd_33535_lvgd_1164120011_33,0.012151495553478355,0.005456021503511782,0.0010307263273452894,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022440500000004 47.55930259624443, 10.022601699999996 47.55929779624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_29_LVCableDist_mvgd_33535_lvgd_1164120011_34,BranchTee_mvgd_33535_lvgd_1164120011_29,BranchTee_mvgd_33535_lvgd_1164120011_34,0.03413857344123349,0.015328219475113838,0.002895736271229399,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022683599999997 47.55959999624443, 10.022601699999996 47.55929779624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_2_LVCableDist_mvgd_33535_lvgd_1164120011_3,BranchTee_mvgd_33535_lvgd_1164120011_2,BranchTee_mvgd_33535_lvgd_1164120011_3,0.062300087080306495,0.007787510885038312,0.00497132599559318,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020901499999994 47.56121039624458, 10.020748900000003 47.56093859624452, 10.020507199999996 47.56072409624453)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_2_LVCableDist_mvgd_33535_lvgd_1164120011_5,BranchTee_mvgd_33535_lvgd_1164120011_2,BranchTee_mvgd_33535_lvgd_1164120011_5,0.015018904379545882,0.0018773630474432353,0.0011984553034592226,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020507199999996 47.56072409624453, 10.020401199999997 47.56060959624453)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_2_LVCableDist_mvgd_33535_lvgd_1164120011_building_446002,BranchTee_mvgd_33535_lvgd_1164120011_2,BranchTee_mvgd_33535_lvgd_1164120011_building_446002,0.020741383374929315,0.018003520769438647,0.001765862493934717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020357261957153 47.56088068907816, 10.020507199999996 47.56072409624453)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_30_LVCableDist_mvgd_33535_lvgd_1164120011_33,BranchTee_mvgd_33535_lvgd_1164120011_30,BranchTee_mvgd_33535_lvgd_1164120011_33,0.04401422414622552,0.01976238664165526,0.0037334186072433885,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022440500000004 47.55930259624443, 10.021856399999995 47.559316296244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_30_LVCableDist_mvgd_33535_lvgd_1164120011_building_445789,BranchTee_mvgd_33535_lvgd_1164120011_30,BranchTee_mvgd_33535_lvgd_1164120011_building_445789,0.015453388527077028,0.01341354124150286,0.0013156576256697912,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021846058647975 47.55917738820213, 10.021856399999995 47.559316296244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_30_LVStation_mvgd_33535_lvgd_1164120011,BusBar_mvgd_33535_lvgd_1164120011_LV,BranchTee_mvgd_33535_lvgd_1164120011_30,0.06355059236346976,0.028534215971197922,0.005390552000709618,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021014800000001 47.55935469624443, 10.021331699999998 47.55933209624442, 10.021856399999995 47.559316296244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_31_LVCableDist_mvgd_33535_lvgd_1164120011_38,BranchTee_mvgd_33535_lvgd_1164120011_31,BranchTee_mvgd_33535_lvgd_1164120011_38,0.032018307319795825,0.014376219986588326,0.0027158889345187736,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0231414 47.559251796244425, 10.0230849 47.55907189624443, 10.023108300000004 47.558995496244385, 10.0231357 47.558976996244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_32_LVCableDist_mvgd_33535_lvgd_1164120011_36,BranchTee_mvgd_33535_lvgd_1164120011_32,BranchTee_mvgd_33535_lvgd_1164120011_36,0.004702832627920127,0.002111571849936137,0.0003989083797432789,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0227698 47.56011409624445, 10.022813100000008 47.560083596244525)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_32_LVCableDist_mvgd_33535_lvgd_1164120011_building_445974,BranchTee_mvgd_33535_lvgd_1164120011_32,BranchTee_mvgd_33535_lvgd_1164120011_building_445974,0.021543461780284295,0.018699724825286767,0.0018341491721956915,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022672549998028 47.5602964462519, 10.0227698 47.56011409624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_32_LVCableDist_mvgd_33535_lvgd_1164120011_building_446012,BranchTee_mvgd_33535_lvgd_1164120011_32,BranchTee_mvgd_33535_lvgd_1164120011_building_446012,0.01139736322247832,0.009892911277111182,0.0009703391466478776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022663249998034 47.56018694625184, 10.0227698 47.56011409624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_32_LVCableDist_mvgd_33535_lvgd_1164120011_building_446013,BranchTee_mvgd_33535_lvgd_1164120011_32,BranchTee_mvgd_33535_lvgd_1164120011_building_446013,0.016120886275052284,0.013992929286745382,0.0013724864888477472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022667899998027 47.56024169625183, 10.0227698 47.56011409624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_33_LVCableDist_mvgd_33535_lvgd_1164120011_35,BranchTee_mvgd_33535_lvgd_1164120011_33,BranchTee_mvgd_33535_lvgd_1164120011_35,0.055497087335548596,0.02491819221366132,0.0047074295304627475,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022440500000004 47.55930259624443, 10.022325300000004 47.559002596244376, 10.022256699999994 47.558818896244325)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_34_LVCableDist_mvgd_33535_lvgd_1164120011_37,BranchTee_mvgd_33535_lvgd_1164120011_34,BranchTee_mvgd_33535_lvgd_1164120011_37,0.040728302797145996,0.018287007955918554,0.0034546968952387513,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022683599999997 47.55959999624443, 10.022760400000005 47.55986519624449, 10.022791300000002 47.55995919624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_34_LVCableDist_mvgd_33535_lvgd_1164120011_building_445807,BranchTee_mvgd_33535_lvgd_1164120011_34,BranchTee_mvgd_33535_lvgd_1164120011_building_445807,0.018111642839165804,0.015720905984395916,0.0015419738507838645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022484615128239 47.559508444753746, 10.022683599999997 47.55959999624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_34_LVCableDist_mvgd_33535_lvgd_1164120011_building_445808,BranchTee_mvgd_33535_lvgd_1164120011_34,BranchTee_mvgd_33535_lvgd_1164120011_building_445808,0.009696968022732969,0.008416968243732217,0.0008255723269126833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022802966503088 47.55963272440868, 10.022683599999997 47.55959999624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_35_LVCableDist_mvgd_33535_lvgd_1164120011_building_445774,BranchTee_mvgd_33535_lvgd_1164120011_35,BranchTee_mvgd_33535_lvgd_1164120011_building_445774,0.017053685440254717,0.014802598962141094,0.0014519023614744306,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022069180208549 47.5589049414723, 10.022256699999994 47.558818896244325)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_36_LVCableDist_mvgd_33535_lvgd_1164120011_37,BranchTee_mvgd_33535_lvgd_1164120011_36,BranchTee_mvgd_33535_lvgd_1164120011_37,0.01391896787921614,0.006249616577768047,0.0011806486353422387,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022813100000008 47.560083596244525, 10.022791300000002 47.55995919624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_36_LVCableDist_mvgd_33535_lvgd_1164120011_building_446011,BranchTee_mvgd_33535_lvgd_1164120011_36,BranchTee_mvgd_33535_lvgd_1164120011_building_446011,0.01032643390564132,0.008963344630096666,0.0008791632650746443,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02293929999601 47.560119946339285, 10.022813100000008 47.560083596244525)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_37_LVCableDist_mvgd_33535_lvgd_1164120011_building_446004,BranchTee_mvgd_33535_lvgd_1164120011_37,BranchTee_mvgd_33535_lvgd_1164120011_building_446004,0.01090556031330562,0.009466026351949278,0.0009284684432325123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022663928443526 47.56000589727473, 10.022791300000002 47.55995919624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_38_LVCableDist_mvgd_33535_lvgd_1164120011_building_445802,BranchTee_mvgd_33535_lvgd_1164120011_38,BranchTee_mvgd_33535_lvgd_1164120011_building_445802,0.0160375741976741,0.01392061440358112,0.0013653935351100645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023323397910582 47.559045180335396, 10.0231357 47.558976996244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_38_LVCableDist_mvgd_33535_lvgd_1164120011_building_445813,BranchTee_mvgd_33535_lvgd_1164120011_38,BranchTee_mvgd_33535_lvgd_1164120011_building_445813,0.010102779584597852,0.008769212679430935,0.0008601219711552391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023257150926078 47.55901561263834, 10.0231357 47.558976996244404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_39_LVCableDist_mvgd_33535_lvgd_1164120011_47,BranchTee_mvgd_33535_lvgd_1164120011_39,BranchTee_mvgd_33535_lvgd_1164120011_47,0.02423364484967749,0.003974317755347108,0.0019489853601139437,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021071099999999 47.55965759624446, 10.021085199999995 47.55987549624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_39_LVCableDist_mvgd_33535_lvgd_1164120011_51,BranchTee_mvgd_33535_lvgd_1164120011_39,BranchTee_mvgd_33535_lvgd_1164120011_51,0.057635119242623586,0.009452159555790268,0.0046352913203557885,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021085199999995 47.55987549624444, 10.0210937 47.56039419624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_39_LVCableDist_mvgd_33535_lvgd_1164120011_54,BranchTee_mvgd_33535_lvgd_1164120011_39,BranchTee_mvgd_33535_lvgd_1164120011_54,0.07116105884515364,0.011670413650605197,0.005723111928053904,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022027099999997 47.55987989624447, 10.021514800000006 47.559899096244486, 10.021443299999994 47.55990179624445, 10.021180600000005 47.559884196244454, 10.021085199999995 47.55987549624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_3_LVCableDist_mvgd_33535_lvgd_1164120011_6,BranchTee_mvgd_33535_lvgd_1164120011_3,BranchTee_mvgd_33535_lvgd_1164120011_6,0.011914422082688123,0.0014893027603360154,0.0009507286265232218,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020901499999994 47.56121039624458, 10.021058299999996 47.561224696244565)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_3_LVCableDist_mvgd_33535_lvgd_1164120011_building_446007,BranchTee_mvgd_33535_lvgd_1164120011_3,BranchTee_mvgd_33535_lvgd_1164120011_building_446007,0.023439572762516434,0.020345549157864264,0.001995578677997537,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020595566801656 47.561171545864475, 10.020901499999994 47.56121039624458)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_40_LVCableDist_mvgd_33535_lvgd_1164120011_41,BranchTee_mvgd_33535_lvgd_1164120011_40,BranchTee_mvgd_33535_lvgd_1164120011_41,0.03477700617716769,0.0057034290130555014,0.0027969327902729437,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022821900000002 47.56103589624456, 10.023169600000001 47.56102439624456, 10.023211999999997 47.56095289624458)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_40_LVCableDist_mvgd_33535_lvgd_1164120011_44,BranchTee_mvgd_33535_lvgd_1164120011_40,BranchTee_mvgd_33535_lvgd_1164120011_44,0.019752054781408308,0.0032393369841509628,0.0015885545009811325,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.023211999999997 47.56095289624458, 10.023194999999998 47.560775496244545)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_40_LVCableDist_mvgd_33535_lvgd_1164120011_building_445989,BranchTee_mvgd_33535_lvgd_1164120011_40,BranchTee_mvgd_33535_lvgd_1164120011_building_445989,0.021756629779121253,0.018884754648277248,0.0018522976904140232,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023495620218796 47.56091560275421, 10.023211999999997 47.56095289624458)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_41_LVCableDist_mvgd_33535_lvgd_1164120011_building_445982,BranchTee_mvgd_33535_lvgd_1164120011_41,BranchTee_mvgd_33535_lvgd_1164120011_building_445982,0.019064971092204005,0.016548394908033077,0.001623137511665004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022956275699649 47.560890471576634, 10.022821900000002 47.56103589624456)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_42_LVCableDist_mvgd_33535_lvgd_1164120011_43,BranchTee_mvgd_33535_lvgd_1164120011_42,BranchTee_mvgd_33535_lvgd_1164120011_43,0.046837005207773216,0.007681268854074808,0.003766855461808313,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021440499999999 47.559629696244485, 10.022062050178441 47.559614848013226)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_42_LVCableDist_mvgd_33535_lvgd_1164120011_building_445762,BranchTee_mvgd_33535_lvgd_1164120011_42,BranchTee_mvgd_33535_lvgd_1164120011_building_445762,0.012139425180059454,0.010537021056291606,0.0010335161949373466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021961649046583 47.55952937150432, 10.022062050178441 47.559614848013226)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_42_LVCableDist_mvgd_33535_lvgd_1164120011_building_445769,BranchTee_mvgd_33535_lvgd_1164120011_42,BranchTee_mvgd_33535_lvgd_1164120011_building_445769,0.016115527715645613,0.013988278057180392,0.0013720302763132837,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022226508812174 47.559522044263005, 10.022062050178441 47.559614848013226)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_43_LVCableDist_mvgd_33535_lvgd_1164120011_53,BranchTee_mvgd_33535_lvgd_1164120011_43,BranchTee_mvgd_33535_lvgd_1164120011_53,0.015131434223963888,0.0024815552127300778,0.0012169421464648224,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021440499999999 47.559629696244485, 10.021239599999996 47.55962749624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_43_LVCableDist_mvgd_33535_lvgd_1164120011_building_445758,BranchTee_mvgd_33535_lvgd_1164120011_43,BranchTee_mvgd_33535_lvgd_1164120011_building_445758,0.02318899397025624,0.020128046766182416,0.001974245111039675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02171420021668 47.55953407237756, 10.021440499999999 47.559629696244485)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_43_LVCableDist_mvgd_33535_lvgd_1164120011_building_445783,BranchTee_mvgd_33535_lvgd_1164120011_43,BranchTee_mvgd_33535_lvgd_1164120011_building_445783,0.010213027603914026,0.008864907960197375,0.0008695081745160206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021448791214144 47.55953794804345, 10.021440499999999 47.559629696244485)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_44_LVCableDist_mvgd_33535_lvgd_1164120011_49,BranchTee_mvgd_33535_lvgd_1164120011_44,BranchTee_mvgd_33535_lvgd_1164120011_49,0.016378317720250554,0.002686044106121091,0.001317222467279326,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.023080200000003 47.56065029624457, 10.023194999999998 47.560775496244545)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_44_LVCableDist_mvgd_33535_lvgd_1164120011_building_445984,BranchTee_mvgd_33535_lvgd_1164120011_44,BranchTee_mvgd_33535_lvgd_1164120011_building_445984,0.03143259328994471,0.027283490975672006,0.0026760817528163824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023485024589073 47.560572043353915, 10.023194999999998 47.560775496244545)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_45_LVCableDist_mvgd_33535_lvgd_1164120011_50,BranchTee_mvgd_33535_lvgd_1164120011_45,BranchTee_mvgd_33535_lvgd_1164120011_50,0.09242722129347682,0.015158064292130199,0.007433438192827004,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021550300000005 47.56040509624449, 10.0223936 47.56037669624454, 10.022351299999999 47.56011869624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_45_LVCableDist_mvgd_33535_lvgd_1164120011_51,BranchTee_mvgd_33535_lvgd_1164120011_45,BranchTee_mvgd_33535_lvgd_1164120011_51,0.034406633783291,0.005642687940459724,0.0027671456749655396,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0210937 47.56039419624449, 10.021550300000005 47.56040509624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_45_LVCableDist_mvgd_33535_lvgd_1164120011_52,BranchTee_mvgd_33535_lvgd_1164120011_45,BranchTee_mvgd_33535_lvgd_1164120011_52,0.02513199400024228,0.004121647016039734,0.002021234885663332,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021550300000005 47.56040509624449, 10.021488700000006 47.560271596244455, 10.021469199999999 47.56018629624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_46_LVCableDist_mvgd_33535_lvgd_1164120011_49,BranchTee_mvgd_33535_lvgd_1164120011_46,BranchTee_mvgd_33535_lvgd_1164120011_49,0.08872970985106007,0.014551672415573853,0.007136066678355052,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021904699999995 47.560693596244555, 10.022432699999996 47.560657696244554, 10.0225608 47.56065619624456, 10.023080200000003 47.56065029624457)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_46_LVCableDist_mvgd_33535_lvgd_1164120011_51,BranchTee_mvgd_33535_lvgd_1164120011_46,BranchTee_mvgd_33535_lvgd_1164120011_51,0.08013950374218994,0.01314287861371915,0.006445201311201168,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0210937 47.56039419624449, 10.021094300000005 47.56043099624455, 10.0212052 47.56059439624455, 10.0214668 47.56070199624457, 10.021784199999999 47.560701796244516, 10.021904699999995 47.560693596244555)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_46_LVCableDist_mvgd_33535_lvgd_1164120011_building_445975,BranchTee_mvgd_33535_lvgd_1164120011_46,BranchTee_mvgd_33535_lvgd_1164120011_building_445975,0.01819445758581384,0.015792789184486414,0.0015490244631951482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021990032330606 47.56054039443621, 10.021904699999995 47.560693596244555)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_47_LVCableDist_mvgd_33535_lvgd_1164120011_53,BranchTee_mvgd_33535_lvgd_1164120011_47,BranchTee_mvgd_33535_lvgd_1164120011_53,0.013122741782085652,0.002152129652262047,0.0010553935149454365,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021071099999999 47.55965759624446, 10.021239599999996 47.55962749624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_47_LVCableDist_mvgd_33535_lvgd_1164120011_building_445763,BranchTee_mvgd_33535_lvgd_1164120011_47,BranchTee_mvgd_33535_lvgd_1164120011_building_445763,0.015969234189179282,0.013861295276207617,0.0013595752608100942,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020870871291622 47.55970491827085, 10.021071099999999 47.55965759624446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_47_LVCableDist_mvgd_33535_lvgd_1164120011_building_445781,BranchTee_mvgd_33535_lvgd_1164120011_47,BranchTee_mvgd_33535_lvgd_1164120011_building_445781,0.021042529891880483,0.01826491594615226,0.0017915012534065623,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020973333366433 47.55948017954107, 10.021071099999999 47.55965759624446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_47_LVStation_mvgd_33535_lvgd_1164120011,BusBar_mvgd_33535_lvgd_1164120011_LV,BranchTee_mvgd_33535_lvgd_1164120011_47,0.033920567172597754,0.005562973016306032,0.0027280538786568246,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021014800000001 47.55935469624443, 10.021071099999999 47.55965759624446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_48_LVCableDist_mvgd_33535_lvgd_1164120011_52,BranchTee_mvgd_33535_lvgd_1164120011_48,BranchTee_mvgd_33535_lvgd_1164120011_52,0.014476733639671472,0.0023741843169061217,0.001164288001289424,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021469199999999 47.56018629624449, 10.0214822 47.56013159624448, 10.021592500000006 47.56012719624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_48_LVCableDist_mvgd_33535_lvgd_1164120011_building_446014,BranchTee_mvgd_33535_lvgd_1164120011_48,BranchTee_mvgd_33535_lvgd_1164120011_building_446014,0.011869430104520854,0.010302665330724102,0.0010105295807456929,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021552042896165 47.56002394764968, 10.021592500000006 47.56012719624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_48_LVCableDist_mvgd_33535_lvgd_1164120011_building_446020,BranchTee_mvgd_33535_lvgd_1164120011_48,BranchTee_mvgd_33535_lvgd_1164120011_building_446020,0.017119235758215896,0.014859496638131398,0.0014574831294425427,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021768702094024 47.56002984577888, 10.021592500000006 47.56012719624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_49_LVCableDist_mvgd_33535_lvgd_1164120011_building_445976,BranchTee_mvgd_33535_lvgd_1164120011_49,BranchTee_mvgd_33535_lvgd_1164120011_building_445976,0.024889438969328152,0.021604033025376838,0.002119016170548148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02287383622831 47.560475318524716, 10.023080200000003 47.56065029624457)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_4_LVCableDist_mvgd_33535_lvgd_1164120011_building_445752,BranchTee_mvgd_33535_lvgd_1164120011_4,BranchTee_mvgd_33535_lvgd_1164120011_building_445752,0.01656823301499994,0.014381226257019947,0.0014105723202302563,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019988726688162 47.55980800485247, 10.020202000000003 47.55977139624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_4_LVCableDist_mvgd_33535_lvgd_1164120011_building_445761,BranchTee_mvgd_33535_lvgd_1164120011_4,BranchTee_mvgd_33535_lvgd_1164120011_building_445761,0.018378943975465165,0.015952923370703764,0.0015647311106370195,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020443699985329 47.55974849628339, 10.020202000000003 47.55977139624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_4_LVStation_mvgd_33535_lvgd_1164120011,BusBar_mvgd_33535_lvgd_1164120011_LV,BranchTee_mvgd_33535_lvgd_1164120011_4,0.09845774097280309,0.012307217621600386,0.007856578539521807,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.020202000000003 47.55977139624448, 10.020157699999997 47.55948139624441, 10.021014800000001 47.55935469624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_50_LVCableDist_mvgd_33535_lvgd_1164120011_building_446003,BranchTee_mvgd_33535_lvgd_1164120011_50,BranchTee_mvgd_33535_lvgd_1164120011_building_446003,0.013142728917746342,0.011407888700603825,0.0011189346266966907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022445520106485 47.56001912757805, 10.022351299999999 47.56011869624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_50_LVCableDist_mvgd_33535_lvgd_1164120011_building_446029,BranchTee_mvgd_33535_lvgd_1164120011_50,BranchTee_mvgd_33535_lvgd_1164120011_building_446029,0.015077287638621845,0.013087085670323762,0.0012836374638101294,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022212324189798 47.56002101675581, 10.022351299999999 47.56011869624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_52_LVCableDist_mvgd_33535_lvgd_1164120011_building_446017,BranchTee_mvgd_33535_lvgd_1164120011_52,BranchTee_mvgd_33535_lvgd_1164120011_building_446017,0.009145257650082528,0.007938083640271635,0.000778601272139367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021347822303216 47.560183687806706, 10.021469199999999 47.56018629624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_53_LVCableDist_mvgd_33535_lvgd_1164120011_building_445784,BranchTee_mvgd_33535_lvgd_1164120011_53,BranchTee_mvgd_33535_lvgd_1164120011_building_445784,0.013326859421002783,0.011567713977430415,0.001134610974981294,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021296578596955 47.559741053915296, 10.021239599999996 47.55962749624448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_54_LVCableDist_mvgd_33535_lvgd_1164120011_building_446023,BranchTee_mvgd_33535_lvgd_1164120011_54,BranchTee_mvgd_33535_lvgd_1164120011_building_446023,0.016771256885648435,0.01455745097674284,0.0014278571961746918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021981021959492 47.5600275762034, 10.022027099999997 47.55987989624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_55_LVCableDist_mvgd_33535_lvgd_1164120011_56,BranchTee_mvgd_33535_lvgd_1164120011_55,BranchTee_mvgd_33535_lvgd_1164120011_56,0.04917725286486221,0.02208058653632313,0.004171362200747426,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.022016399999995 47.56099299624452, 10.021405999999999 47.56115029624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_55_LVCableDist_mvgd_33535_lvgd_1164120011_building_445979,BranchTee_mvgd_33535_lvgd_1164120011_55,BranchTee_mvgd_33535_lvgd_1164120011_building_445979,0.02055838433275156,0.017844677600828356,0.0017502824750340357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02176100986877 47.56092762509484, 10.022016399999995 47.56099299624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_55_LVStation_mvgd_33535_lvgd_1164120011,BusBar_mvgd_33535_lvgd_1164120011_LV,BranchTee_mvgd_33535_lvgd_1164120011_55,0.23024160467966676,0.10337848050117038,0.019529784012933895,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.021014800000001 47.55935469624443, 10.021071099999999 47.55965759624446, 10.021085199999995 47.55987549624444, 10.0210937 47.56039419624449, 10.021094300000005 47.56043099624455, 10.0212052 47.56059439624455, 10.0214668 47.56070199624457, 10.021784199999999 47.560701796244516, 10.021904699999995 47.560693596244555, 10.022016399999995 47.56099299624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_56_LVCableDist_mvgd_33535_lvgd_1164120011_building_445971,BranchTee_mvgd_33535_lvgd_1164120011_56,BranchTee_mvgd_33535_lvgd_1164120011_building_445971,0.017794251918430534,0.015445410665197702,0.001514952088893128,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021471030866829 47.56099632739882, 10.021405999999999 47.56115029624452)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_57_LVCableDist_mvgd_33535_lvgd_1164120011_60,BranchTee_mvgd_33535_lvgd_1164120011_57,BranchTee_mvgd_33535_lvgd_1164120011_60,0.035724012922046036,0.009038175269277648,0.0028730955917477545,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021322899999998 47.55902809624438, 10.021447100000003 47.55897019624437, 10.021566699999996 47.55883769624435, 10.021638999999999 47.55879649624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_57_LVCableDist_mvgd_33535_lvgd_1164120011_66,BranchTee_mvgd_33535_lvgd_1164120011_57,BranchTee_mvgd_33535_lvgd_1164120011_66,0.02320517841404954,0.005870910138754534,0.0018662711815889532,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014799999996 47.55903109624437, 10.021322899999998 47.55902809624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_57_LVCableDist_mvgd_33535_lvgd_1164120011_building_445780,BranchTee_mvgd_33535_lvgd_1164120011_57,BranchTee_mvgd_33535_lvgd_1164120011_building_445780,0.0177919271481406,0.01544339276458604,0.0015147541645508698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021229288412332 47.559175122058534, 10.021322899999998 47.55902809624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_58_LVCableDist_mvgd_33535_lvgd_1164120011_62,BranchTee_mvgd_33535_lvgd_1164120011_58,BranchTee_mvgd_33535_lvgd_1164120011_62,0.027577565773895505,0.006977124140795563,0.0022179194378024814,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020187599999996 47.55858659624431, 10.020531700000005 47.55850169624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_58_LVCableDist_mvgd_33535_lvgd_1164120011_building_445710,BranchTee_mvgd_33535_lvgd_1164120011_58,BranchTee_mvgd_33535_lvgd_1164120011_building_445710,0.024164846789510926,0.020975087013295483,0.002057326449539267,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020050478606366 47.55838996585205, 10.020187599999996 47.55858659624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_58_LVCableDist_mvgd_33535_lvgd_1164120011_building_445717,BranchTee_mvgd_33535_lvgd_1164120011_58,BranchTee_mvgd_33535_lvgd_1164120011_building_445717,0.020127047822661344,0.017470277510070048,0.0017135597091671422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020255249998753 47.55841134625727, 10.020187599999996 47.55858659624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_58_LVCableDist_mvgd_33535_lvgd_1164120011_building_445742,BranchTee_mvgd_33535_lvgd_1164120011_58,BranchTee_mvgd_33535_lvgd_1164120011_building_445742,0.01706966727248259,0.014816471192514887,0.0014532630092964878,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020278872225179 47.558727220929654, 10.020187599999996 47.55858659624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_59_LVCableDist_mvgd_33535_lvgd_1164120011_60,BranchTee_mvgd_33535_lvgd_1164120011_59,BranchTee_mvgd_33535_lvgd_1164120011_60,0.0440418577252401,0.011142590004485746,0.003542056363009566,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021638999999999 47.55879649624435, 10.022218500000003 47.558743196244336)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_59_LVCableDist_mvgd_33535_lvgd_1164120011_61,BranchTee_mvgd_33535_lvgd_1164120011_59,BranchTee_mvgd_33535_lvgd_1164120011_61,0.032103989904693604,0.008122309445887483,0.0025819560661889617,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022218500000003 47.558743196244336, 10.022145699999996 47.558458496244334)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_59_LVCableDist_mvgd_33535_lvgd_1164120011_building_445806,BranchTee_mvgd_33535_lvgd_1164120011_59,BranchTee_mvgd_33535_lvgd_1164120011_building_445806,0.019434688384595392,0.0168693095178288,0.0016546141922793832,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022470102755046 47.55870429999626, 10.022218500000003 47.558743196244336)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_5_LVCableDist_mvgd_33535_lvgd_1164120011_building_445998,BranchTee_mvgd_33535_lvgd_1164120011_5,BranchTee_mvgd_33535_lvgd_1164120011_building_445998,0.024101495721568847,0.02092009828632176,0.002051932919473917,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020708982796894 47.56055012937247, 10.020401199999997 47.56060959624453)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_60_LVCableDist_mvgd_33535_lvgd_1164120011_building_445765,BranchTee_mvgd_33535_lvgd_1164120011_60,BranchTee_mvgd_33535_lvgd_1164120011_building_445765,0.012910619273394262,0.01120641752930622,0.0010991734705561947,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021752362650833 47.55870932816875, 10.021638999999999 47.55879649624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_60_LVCableDist_mvgd_33535_lvgd_1164120011_building_445772,BranchTee_mvgd_33535_lvgd_1164120011_60,BranchTee_mvgd_33535_lvgd_1164120011_building_445772,0.0232969058476282,0.02022171427574128,0.0019834324219078383,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021867089305871 47.5589381418644, 10.021638999999999 47.55879649624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_61_LVCableDist_mvgd_33535_lvgd_1164120011_building_445771,BranchTee_mvgd_33535_lvgd_1164120011_61,BranchTee_mvgd_33535_lvgd_1164120011_building_445771,0.02048599738363068,0.01778184572899143,0.001744119655698782,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02195820910474 47.5585920851495, 10.022145699999996 47.558458496244334)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_62_LVCableDist_mvgd_33535_lvgd_1164120011_65,BranchTee_mvgd_33535_lvgd_1164120011_62,BranchTee_mvgd_33535_lvgd_1164120011_65,0.03639571248917099,0.009208115259760261,0.002927116876240534,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.020531700000005 47.55850169624434, 10.021014800000001 47.55849279624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_62_LVCableDist_mvgd_33535_lvgd_1164120011_building_445718,BranchTee_mvgd_33535_lvgd_1164120011_62,BranchTee_mvgd_33535_lvgd_1164120011_building_445718,0.018949015698710527,0.01644774562648074,0.0016132653986705024,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020449442534723 47.55834052138197, 10.020531700000005 47.55850169624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_62_LVCableDist_mvgd_33535_lvgd_1164120011_building_445747,BranchTee_mvgd_33535_lvgd_1164120011_62,BranchTee_mvgd_33535_lvgd_1164120011_building_445747,0.02121674922555703,0.018416138327783504,0.0018063337928518133,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020710219336923 47.55864942109209, 10.020531700000005 47.55850169624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_63_LVCableDist_mvgd_33535_lvgd_1164120011_64,BranchTee_mvgd_33535_lvgd_1164120011_63,BranchTee_mvgd_33535_lvgd_1164120011_64,0.044100158005218125,0.011157339975320186,0.0035467451497303644,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021186600000004 47.5584940962443, 10.021191499999995 47.55889099624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_63_LVCableDist_mvgd_33535_lvgd_1164120011_building_445764,BranchTee_mvgd_33535_lvgd_1164120011_63,BranchTee_mvgd_33535_lvgd_1164120011_building_445764,0.007203366311594064,0.0062525219584636475,0.0006132741567803052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02119081171534 47.55895582690122, 10.021191499999995 47.55889099624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_64_LVCableDist_mvgd_33535_lvgd_1164120011_65,BranchTee_mvgd_33535_lvgd_1164120011_64,BranchTee_mvgd_33535_lvgd_1164120011_65,0.012939074804440525,0.003273585925523453,0.001040622140156906,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014800000001 47.55849279624441, 10.021186600000004 47.5584940962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_64_LVCableDist_mvgd_33535_lvgd_1164120011_building_445745,BranchTee_mvgd_33535_lvgd_1164120011_64,BranchTee_mvgd_33535_lvgd_1164120011_building_445745,0.05769188576400085,0.050076556843152736,0.004911723361622812,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021556598354222 47.5580394317071, 10.021186600000004 47.5584940962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_65_LVCableDist_mvgd_33535_lvgd_1164120011_66,BranchTee_mvgd_33535_lvgd_1164120011_65,BranchTee_mvgd_33535_lvgd_1164120011_66,0.05980922924826455,0.015131734999810933,0.004810143621714322,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014800000001 47.55849279624441, 10.021014799999996 47.55903109624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_65_LVCableDist_mvgd_33535_lvgd_1164120011_building_445720,BranchTee_mvgd_33535_lvgd_1164120011_65,BranchTee_mvgd_33535_lvgd_1164120011_building_445720,0.025947195205470626,0.022522165438348504,0.002209070533430581,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020818328053805 47.55830095711712, 10.021014800000001 47.55849279624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_66_LVCableDist_mvgd_33535_lvgd_1164120011_building_445749,BranchTee_mvgd_33535_lvgd_1164120011_66,BranchTee_mvgd_33535_lvgd_1164120011_building_445749,0.024233413247006154,0.021034602698401343,0.002063164003064223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020710175787341 47.558960822594976, 10.021014799999996 47.55903109624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_66_LVCableDist_mvgd_33535_lvgd_1164120011_building_445760,BranchTee_mvgd_33535_lvgd_1164120011_66,BranchTee_mvgd_33535_lvgd_1164120011_building_445760,0.033400371627745444,0.028991522572883045,0.002843612813801429,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020709649998897 47.5592492462777, 10.021014799999996 47.55903109624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_66_LVStation_mvgd_33535_lvgd_1164120011,BusBar_mvgd_33535_lvgd_1164120011_LV,BranchTee_mvgd_33535_lvgd_1164120011_66,0.035954431939834615,0.009096471280778158,0.002891626988702173,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021014800000001 47.55935469624443, 10.021014799999996 47.55903109624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_6_LVCableDist_mvgd_33535_lvgd_1164120011_building_445969,BranchTee_mvgd_33535_lvgd_1164120011_6,BranchTee_mvgd_33535_lvgd_1164120011_building_445969,0.021740769462182917,0.018870987893174773,0.0018509473880587242,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021072774662846 47.56102926940478, 10.021058299999996 47.561224696244565)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_7_LVCableDist_mvgd_33535_lvgd_1164120011_building_441825,BranchTee_mvgd_33535_lvgd_1164120011_7,BranchTee_mvgd_33535_lvgd_1164120011_building_441825,0.016660952147993763,0.014461706464458586,0.001418466163975599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018700407973242 47.55942846519647, 10.018890100000004 47.55935129624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_7_LVCableDist_mvgd_33535_lvgd_1164120011_building_441830,BranchTee_mvgd_33535_lvgd_1164120011_7,BranchTee_mvgd_33535_lvgd_1164120011_building_441830,0.014090156214776245,0.01223025559442578,0.0011995958969366152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019021880090664 47.559261273614894, 10.018890100000004 47.55935129624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_8_LVCableDist_mvgd_33535_lvgd_1164120011_building_441951,BranchTee_mvgd_33535_lvgd_1164120011_8,BranchTee_mvgd_33535_lvgd_1164120011_building_441951,0.015463975264124933,0.013422730529260442,0.0013165589504053746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019219000178044 47.56113141549211, 10.019418700000001 47.561098996244624)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_8_LVCableDist_mvgd_33535_lvgd_1164120011_building_445995,BranchTee_mvgd_33535_lvgd_1164120011_8,BranchTee_mvgd_33535_lvgd_1164120011_building_445995,0.015619732828551341,0.013557928095182564,0.001329819707231251,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019592310498497 47.5611759189537, 10.019418700000001 47.561098996244624)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_9_LVCableDist_mvgd_33535_lvgd_1164120011_building_441920,BranchTee_mvgd_33535_lvgd_1164120011_9,BranchTee_mvgd_33535_lvgd_1164120011_building_441920,0.022437360864286614,0.01947562923020078,0.0019102532023497398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018286607692191 47.56011849241002, 10.018455000000003 47.5599518962445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120011_9_LVCableDist_mvgd_33535_lvgd_1164120011_building_442002,BranchTee_mvgd_33535_lvgd_1164120011_9,BranchTee_mvgd_33535_lvgd_1164120011_building_442002,0.013062966263546718,0.011338654716758552,0.0011121438607713063,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018418764266194 47.55983692002308, 10.018455000000003 47.5599518962445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_10_LVCableDist_mvgd_33535_lvgd_1164120012_14,BranchTee_mvgd_33535_lvgd_1164120012_10,BranchTee_mvgd_33535_lvgd_1164120012_14,0.07312668698572192,0.06347396430360662,0.0062257985168855876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016728299999999 47.53957889624267, 10.016642800000005 47.53946639624269, 10.016548600000005 47.53938749624266, 10.016427300000002 47.53931939624265, 10.016379800000006 47.539194996242614, 10.016218999999998 47.539165396242616, 10.0160984 47.53916829624261)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_10_LVCableDist_mvgd_33535_lvgd_1164120012_building_431760,BranchTee_mvgd_33535_lvgd_1164120012_10,BranchTee_mvgd_33535_lvgd_1164120012_building_431760,0.02045476334933067,0.01775473458721902,0.0017414604786946423,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016158081907808 47.53934789350321, 10.0160984 47.53916829624261)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_11_LVCableDist_mvgd_33535_lvgd_1164120012_12,BranchTee_mvgd_33535_lvgd_1164120012_11,BranchTee_mvgd_33535_lvgd_1164120012_12,0.07570588177998604,0.06571270538502788,0.006445383839108976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017266100000002 47.53935539624265, 10.017315800000008 47.53924259624262, 10.017377699999999 47.53915389624263, 10.017465500000002 47.53905659624261, 10.017576099999994 47.53896629624262, 10.0174404 47.53886609624257, 10.0173661 47.53878199624264)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_11_LVCableDist_mvgd_33535_lvgd_1164120012_building_431757,BranchTee_mvgd_33535_lvgd_1164120012_11,BranchTee_mvgd_33535_lvgd_1164120012_building_431757,0.03300493142584324,0.02864828047763193,0.002809946157700895,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017013542250002 47.53895832868212, 10.0173661 47.53878199624264)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_12_LVCableDist_mvgd_33535_lvgd_1164120012_15,BranchTee_mvgd_33535_lvgd_1164120012_12,BranchTee_mvgd_33535_lvgd_1164120012_15,0.03579053279402125,0.031066182465210444,0.0030471043496209434,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017249500000002 47.539676896242696, 10.017246099999996 47.53950519624263, 10.017266100000002 47.53935539624265)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_12_LVCableDist_mvgd_33535_lvgd_1164120012_building_431759,BranchTee_mvgd_33535_lvgd_1164120012_12,BranchTee_mvgd_33535_lvgd_1164120012_building_431759,0.017394553989350085,0.015098472862755874,0.0014809229419886995,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017047416999633 47.53940562302424, 10.017266100000002 47.53935539624265)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_13_LVCableDist_mvgd_33535_lvgd_1164120012_17,BranchTee_mvgd_33535_lvgd_1164120012_13,BranchTee_mvgd_33535_lvgd_1164120012_17,0.11123833237928892,0.09655487250522278,0.009470515803389586,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016351199999999 47.540909896242745, 10.016750753251829 47.54048894701767, 10.017150300000004 47.540067996242676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_13_LVCableDist_mvgd_33535_lvgd_1164120012_9,BranchTee_mvgd_33535_lvgd_1164120012_9,BranchTee_mvgd_33535_lvgd_1164120012_13,0.014680614027107169,0.012742772975529022,0.001249865798716948,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017218400000004 47.539944196242686, 10.017150300000004 47.540067996242676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_13_LVCableDist_mvgd_33535_lvgd_1164120012_building_431761,BranchTee_mvgd_33535_lvgd_1164120012_13,BranchTee_mvgd_33535_lvgd_1164120012_building_431761,0.023924400394550384,0.020766379542469734,0.0020368555261207327,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016873383799911 47.539962592232285, 10.017150300000004 47.540067996242676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_14_LVCableDist_mvgd_33535_lvgd_1164120012_15,BranchTee_mvgd_33535_lvgd_1164120012_14,BranchTee_mvgd_33535_lvgd_1164120012_15,0.04140566273823444,0.035940115256787496,0.003525160571224803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017249500000002 47.539676896242696, 10.017046899999995 47.539657696242706, 10.016775799999998 47.53960829624266, 10.016728299999999 47.53957889624267)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_14_LVCableDist_mvgd_33535_lvgd_1164120012_building_431770,BranchTee_mvgd_33535_lvgd_1164120012_14,BranchTee_mvgd_33535_lvgd_1164120012_building_431770,0.0236259304250272,0.020507307608923612,0.002011444640297953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016450846092056 47.539678008645794, 10.016728299999999 47.53957889624267)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_15_LVCableDist_mvgd_33535_lvgd_1164120012_9,BranchTee_mvgd_33535_lvgd_1164120012_9,BranchTee_mvgd_33535_lvgd_1164120012_15,0.02983457925072517,0.025896414789629448,0.0025400313744192602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017218400000004 47.539944196242686, 10.017244599999996 47.53981119624271, 10.017249500000002 47.539676896242696)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_16_LVCableDist_mvgd_33535_lvgd_1164120012_8,BranchTee_mvgd_33535_lvgd_1164120012_8,BranchTee_mvgd_33535_lvgd_1164120012_16,0.10843129541567059,0.09411836442080207,0.009231532645731285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020002999999999 47.54029809624275, 10.019752599999999 47.540343796242716, 10.019646599999996 47.54035989624275, 10.019475100000003 47.54036849624277, 10.019256699999994 47.54037189624275, 10.019168099999995 47.540383996242745, 10.019085900000004 47.540410996242706, 10.018984000000001 47.540471596242746, 10.019179799999996 47.54067939624272)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_16_LVCableDist_mvgd_33535_lvgd_1164120012_building_444869,BranchTee_mvgd_33535_lvgd_1164120012_16,BranchTee_mvgd_33535_lvgd_1164120012_building_444869,0.019636248462330773,0.01704426366530311,0.0016717744450510325,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020065674942101 47.54046964384001, 10.020002999999999 47.54029809624275)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_17_LVCableDist_mvgd_33535_lvgd_1164120012_18,BranchTee_mvgd_33535_lvgd_1164120012_17,BranchTee_mvgd_33535_lvgd_1164120012_18,0.04864766833111677,0.04222617611140936,0.004141724366713682,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016011100000002 47.54128209624278, 10.016351199999999 47.540909896242745)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_17_LVCableDist_mvgd_33535_lvgd_1164120012_building_431767,BranchTee_mvgd_33535_lvgd_1164120012_17,BranchTee_mvgd_33535_lvgd_1164120012_building_431767,0.017665672716456828,0.015333803917884527,0.0015040052206847197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016366783226434 47.54106854215541, 10.016351199999999 47.540909896242745)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_18_LVCableDist_mvgd_33535_lvgd_1164120012_building_431771,BranchTee_mvgd_33535_lvgd_1164120012_18,BranchTee_mvgd_33535_lvgd_1164120012_building_431771,0.03567254435120711,0.030963768496847774,0.0030370591485792864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016484600036977 47.541284896340365, 10.016011100000002 47.54128209624278)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_1_LVCableDist_mvgd_33535_lvgd_1164120012_2,BranchTee_mvgd_33535_lvgd_1164120012_1,BranchTee_mvgd_33535_lvgd_1164120012_2,0.06376293625876442,0.055346228672607516,0.0054285953645020965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019151799999996 47.54189559624284, 10.019244999999993 47.541325196242774)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_1_LVCableDist_mvgd_33535_lvgd_1164120012_3,BranchTee_mvgd_33535_lvgd_1164120012_1,BranchTee_mvgd_33535_lvgd_1164120012_3,0.05163651123919136,0.0448204917556181,0.004396185966319965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019244999999993 47.541325196242774, 10.018949200000005 47.541265196242804, 10.018756100000001 47.54122179624282, 10.018638099999993 47.54113579624278)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_1_LVStation_mvgd_33535_lvgd_1164120012,BusBar_mvgd_33535_lvgd_1164120012_LV,BranchTee_mvgd_33535_lvgd_1164120012_1,0.03233169410652478,0.028063910484463512,0.0027526286437139255,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019244999999993 47.541325196242774, 10.019289900000004 47.54111859624282, 10.019305299999996 47.54103709624282)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_2_LVCableDist_mvgd_33535_lvgd_1164120012_6,BranchTee_mvgd_33535_lvgd_1164120012_2,BranchTee_mvgd_33535_lvgd_1164120012_6,0.13417933164530219,0.1164676598681223,0.011423647349388734,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018753600000005 47.543071396242965, 10.018862 47.54284859624294, 10.018969900000004 47.54250319624291, 10.019151799999996 47.54189559624284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_2_LVCableDist_mvgd_33535_lvgd_1164120012_building_431775,BranchTee_mvgd_33535_lvgd_1164120012_2,BranchTee_mvgd_33535_lvgd_1164120012_building_431775,0.03856482204348577,0.03347426553374565,0.003283299459869822,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019425959060763 47.542188718967125, 10.019151799999996 47.54189559624284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_3_LVCableDist_mvgd_33535_lvgd_1164120012_building_431773,BranchTee_mvgd_33535_lvgd_1164120012_3,BranchTee_mvgd_33535_lvgd_1164120012_building_431773,0.015266207511752403,0.013251068120201086,0.0012997215654483739,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018788221274626 47.54104350183877, 10.018638099999993 47.54113579624278)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_4_LVCableDist_mvgd_33535_lvgd_1164120012_6,BranchTee_mvgd_33535_lvgd_1164120012_4,BranchTee_mvgd_33535_lvgd_1164120012_6,0.04927694086074711,0.042772384667128495,0.0041952988433265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018753600000005 47.543071396242965, 10.019204599999997 47.54321309624299, 10.019359 47.54319359624298)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_4_LVCableDist_mvgd_33535_lvgd_1164120012_building_431797,BranchTee_mvgd_33535_lvgd_1164120012_4,BranchTee_mvgd_33535_lvgd_1164120012_building_431797,0.01717499658915506,0.014907897039386591,0.0014622304482788129,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019528126047184 47.54329725830852, 10.019359 47.54319359624298)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_5_LVCableDist_mvgd_33535_lvgd_1164120012_6,BranchTee_mvgd_33535_lvgd_1164120012_5,BranchTee_mvgd_33535_lvgd_1164120012_6,0.05380237711347298,0.04670046333449455,0.004580581637773103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018141199999992 47.54282239624296, 10.018610600000006 47.543017596242976, 10.018753600000005 47.543071396242965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_5_LVCableDist_mvgd_33535_lvgd_1164120012_building_431793,BranchTee_mvgd_33535_lvgd_1164120012_5,BranchTee_mvgd_33535_lvgd_1164120012_building_431793,0.0516235113485467,0.04480920785053854,0.004395079192538309,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017821772448196 47.54323346318367, 10.018141199999992 47.54282239624296)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_6_LVCableDist_mvgd_33535_lvgd_1164120012_7,BranchTee_mvgd_33535_lvgd_1164120012_6,BranchTee_mvgd_33535_lvgd_1164120012_7,0.019172862843197608,0.016642044947895524,0.0016323231090304543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018703600000004 47.54324059624297, 10.018753600000005 47.543071396242965)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_7_LVCableDist_mvgd_33535_lvgd_1164120012_building_431794,BranchTee_mvgd_33535_lvgd_1164120012_7,BranchTee_mvgd_33535_lvgd_1164120012_building_431794,0.018969921903679333,0.01646589221239366,0.0016150452936069969,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.018953635136464 47.54326086851177, 10.018703600000004 47.54324059624297)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_8_LVCableDist_mvgd_33535_lvgd_1164120012_9,BranchTee_mvgd_33535_lvgd_1164120012_8,BranchTee_mvgd_33535_lvgd_1164120012_9,0.1807378912458679,0.15688048960141332,0.015387510929946233,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019179799999996 47.54067939624272, 10.018984000000001 47.540471596242746, 10.018874699999998 47.540461796242745, 10.018554300000003 47.54044889624278, 10.018343900000005 47.54043279624274, 10.018121 47.54040199624273, 10.0179658 47.54037209624272, 10.017809299999998 47.5403284962427, 10.017710499999994 47.540288396242694, 10.017610400000004 47.540247796242745, 10.01751329999999 47.54019689624273, 10.017429599999993 47.540122496242695, 10.017318999999999 47.539999696242724, 10.017218400000004 47.539944196242686)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_8_LVCableDist_mvgd_33535_lvgd_1164120012_building_431786,BranchTee_mvgd_33535_lvgd_1164120012_8,BranchTee_mvgd_33535_lvgd_1164120012_building_431786,0.03613540016766463,0.0313655273455329,0.0030764653787042164,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019430938298306 47.540956485097, 10.019179799999996 47.54067939624272)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120012_8_LVStation_mvgd_33535_lvgd_1164120012,BusBar_mvgd_33535_lvgd_1164120012_LV,BranchTee_mvgd_33535_lvgd_1164120012_8,0.04156557463873379,0.03607891878642093,0.003538775016429405,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.019305299999996 47.54103709624282, 10.019292500000002 47.54086139624279, 10.019259599999991 47.540785796242766, 10.019179799999996 47.54067939624272)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_10_LVCableDist_mvgd_33535_lvgd_1164120013_11,BranchTee_mvgd_33535_lvgd_1164120013_10,BranchTee_mvgd_33535_lvgd_1164120013_11,0.03194473760010631,0.02772803223689228,0.002719684265360921,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0120902 47.55138469624373, 10.012494899999997 47.551470696243726)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_10_LVCableDist_mvgd_33535_lvgd_1164120013_12,BranchTee_mvgd_33535_lvgd_1164120013_10,BranchTee_mvgd_33535_lvgd_1164120013_12,0.010735852618577735,0.009318720072925474,0.0009140200119184118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012494899999997 47.551470696243726, 10.012612700000002 47.5515250962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_10_LVCableDist_mvgd_33535_lvgd_1164120013_building_441620,BranchTee_mvgd_33535_lvgd_1164120013_10,BranchTee_mvgd_33535_lvgd_1164120013_building_441620,0.015547988579124306,0.013495654086679897,0.0013237116055232507,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012315157693441 47.55153951024117, 10.012494899999997 47.551470696243726)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_11_LVCableDist_mvgd_33535_lvgd_1164120013_9,BranchTee_mvgd_33535_lvgd_1164120013_9,BranchTee_mvgd_33535_lvgd_1164120013_11,0.07274591012811198,0.0631434499912012,0.006193380256287576,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011226500000006 47.55110319624368, 10.011965499999999 47.551310196243705, 10.0120902 47.55138469624373)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_11_LVCableDist_mvgd_33535_lvgd_1164120013_building_441618,BranchTee_mvgd_33535_lvgd_1164120013_11,BranchTee_mvgd_33535_lvgd_1164120013_building_441618,0.01278310943934296,0.01109573899334969,0.0010883176452966706,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012241339444069 47.55133235837812, 10.0120902 47.55138469624373)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_12_LVCableDist_mvgd_33535_lvgd_1164120013_building_441608,BranchTee_mvgd_33535_lvgd_1164120013_12,BranchTee_mvgd_33535_lvgd_1164120013_building_441608,0.01087053913499285,0.009435627969173794,0.0009254868395391604,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012510018967882 47.5515938501722, 10.012612700000002 47.5515250962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_1_LVCableDist_mvgd_33535_lvgd_1164120013_2,BranchTee_mvgd_33535_lvgd_1164120013_1,BranchTee_mvgd_33535_lvgd_1164120013_2,0.03460517786698712,0.03003729438854482,0.002946186596459871,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008992999999995 47.548526896243445, 10.009395299999994 47.54867729624346)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_1_LVCableDist_mvgd_33535_lvgd_1164120013_building_431791,BranchTee_mvgd_33535_lvgd_1164120013_1,BranchTee_mvgd_33535_lvgd_1164120013_building_431791,0.02960772512255126,0.025699505406374494,0.0025207176580053026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008706805201266 47.54870955994722, 10.008992999999995 47.548526896243445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_2_LVCableDist_mvgd_33535_lvgd_1164120013_6,BranchTee_mvgd_33535_lvgd_1164120013_2,BranchTee_mvgd_33535_lvgd_1164120013_6,0.2132437329751962,0.18509556022247028,0.018154966007845275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009395299999994 47.54867729624346, 10.009869099999994 47.54889379624348, 10.010265700000003 47.549077596243514, 10.010853500000003 47.54939529624354, 10.0108818 47.54948389624357, 10.010915400000002 47.54958829624355, 10.010941099999998 47.54974169624357, 10.010938399999999 47.54987689624357, 10.0109391 47.550002696243595, 10.010967000000004 47.550084196243624)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_2_LVCableDist_mvgd_33535_lvgd_1164120013_building_441589,BranchTee_mvgd_33535_lvgd_1164120013_2,BranchTee_mvgd_33535_lvgd_1164120013_building_441589,0.025175311467068317,0.021852170353415298,0.002143354543388649,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00925530006519 47.548883046365745, 10.009395299999994 47.54867729624346)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_3_LVCableDist_mvgd_33535_lvgd_1164120013_4,BranchTee_mvgd_33535_lvgd_1164120013_3,BranchTee_mvgd_33535_lvgd_1164120013_4,0.02934212321148472,0.025468962947568737,0.0024981050653642206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0113647 47.550618496243615, 10.010989900000002 47.55054649624362)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_3_LVCableDist_mvgd_33535_lvgd_1164120013_5,BranchTee_mvgd_33535_lvgd_1164120013_3,BranchTee_mvgd_33535_lvgd_1164120013_5,0.014162744103655157,0.012293261881972677,0.001205775823712382,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011421099999998 47.55049689624366, 10.0113647 47.550618496243615)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_3_LVCableDist_mvgd_33535_lvgd_1164120013_building_441594,BranchTee_mvgd_33535_lvgd_1164120013_3,BranchTee_mvgd_33535_lvgd_1164120013_building_441594,0.02098282091818292,0.018213088556982775,0.0017864178009049656,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011108603957808 47.55069282066604, 10.0113647 47.550618496243615)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_3_LVStation_mvgd_33535_lvgd_1164120013,BusBar_mvgd_33535_lvgd_1164120013_LV,BranchTee_mvgd_33535_lvgd_1164120013_3,0.01275756486060587,0.011073566299005895,0.0010861428523862944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0113647 47.550618496243615, 10.011309700000002 47.550727096243655)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_4_LVCableDist_mvgd_33535_lvgd_1164120013_building_441592,BranchTee_mvgd_33535_lvgd_1164120013_4,BranchTee_mvgd_33535_lvgd_1164120013_building_441592,0.018715661864135168,0.016245194498069326,0.0015933983157067617,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010777779500227 47.55063422275172, 10.010989900000002 47.55054649624362)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_5_LVCableDist_mvgd_33535_lvgd_1164120013_6,BranchTee_mvgd_33535_lvgd_1164120013_5,BranchTee_mvgd_33535_lvgd_1164120013_6,0.061868571819169146,0.05370192033903882,0.005267314554381766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010967000000004 47.550084196243624, 10.011038599999996 47.55013499624356, 10.011187100000004 47.5501861962436, 10.0112888 47.55023349624361, 10.011349199999993 47.55028779624364, 10.0114224 47.55038699624365, 10.011433699999996 47.55043539624362, 10.011421099999998 47.55049689624366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_5_LVCableDist_mvgd_33535_lvgd_1164120013_building_441598,BranchTee_mvgd_33535_lvgd_1164120013_5,BranchTee_mvgd_33535_lvgd_1164120013_building_441598,0.018564807127629635,0.016114252586782524,0.0015805549717305102,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011624513595873 47.55059125115963, 10.011421099999998 47.55049689624366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_6_LVCableDist_mvgd_33535_lvgd_1164120013_7,BranchTee_mvgd_33535_lvgd_1164120013_6,BranchTee_mvgd_33535_lvgd_1164120013_7,0.23141378568289925,0.20086716597275656,0.019701912709005658,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010967000000004 47.550084196243624, 10.0109391 47.550002696243595, 10.010938399999999 47.54987689624357, 10.010941099999998 47.54974169624357, 10.010915400000002 47.54958829624355, 10.0108818 47.54948389624357, 10.010853500000003 47.54939529624354, 10.0109938 47.54948729624356, 10.0111763 47.54972289624361, 10.011336499999995 47.54985419624361, 10.011585599999998 47.55000319624362, 10.011965100000005 47.550147096243585, 10.012353699999997 47.550285096243634)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_7_LVCableDist_mvgd_33535_lvgd_1164120013_building_441603,BranchTee_mvgd_33535_lvgd_1164120013_7,BranchTee_mvgd_33535_lvgd_1164120013_building_441603,0.024011425353733323,0.020841917207040525,0.0020442645840740756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012433712998028 47.55049428849969, 10.012353699999997 47.550285096243634)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_8_LVCableDist_mvgd_33535_lvgd_1164120013_9,BranchTee_mvgd_33535_lvgd_1164120013_8,BranchTee_mvgd_33535_lvgd_1164120013_9,0.01701857030202408,0.014772119022156902,0.0014489127583004317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011259800000001 47.550951696243665, 10.011226500000006 47.55110319624368)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_8_LVCableDist_mvgd_33535_lvgd_1164120013_building_441595,BranchTee_mvgd_33535_lvgd_1164120013_8,BranchTee_mvgd_33535_lvgd_1164120013_building_441595,0.019999404390735834,0.017359483011158704,0.001702692509763904,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010997256122629 47.55097858169381, 10.011259800000001 47.550951696243665)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_8_LVStation_mvgd_33535_lvgd_1164120013,BusBar_mvgd_33535_lvgd_1164120013_LV,BranchTee_mvgd_33535_lvgd_1164120013_8,0.025236112442698758,0.021904945600262522,0.0021485309658345214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011309700000002 47.550727096243655, 10.011259800000001 47.550951696243665)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120013_9_LVCableDist_mvgd_33535_lvgd_1164120013_building_441596,BranchTee_mvgd_33535_lvgd_1164120013_9,BranchTee_mvgd_33535_lvgd_1164120013_building_441596,0.02040991554780102,0.017715806695491287,0.0017376422641992503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011260168300877 47.5512854683959, 10.011226500000006 47.55110319624368)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_10_LVCableDist_mvgd_33535_lvgd_1164120014_3,BranchTee_mvgd_33535_lvgd_1164120014_3,BranchTee_mvgd_33535_lvgd_1164120014_10,0.04688091479789801,0.011860871443868196,0.003770386880579722,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.015071299999997 47.56499859624491, 10.015691300000006 47.565036996244906)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_10_LVCableDist_mvgd_33535_lvgd_1164120014_building_441981,BranchTee_mvgd_33535_lvgd_1164120014_10,BranchTee_mvgd_33535_lvgd_1164120014_building_441981,0.0202384050408702,0.017566935575475333,0.0017230403465725338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015805059559359 47.56520202576026, 10.015691300000006 47.565036996244906)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_10_LVStation_mvgd_33535_lvgd_1164120014,BusBar_mvgd_33535_lvgd_1164120014_LV,BranchTee_mvgd_33535_lvgd_1164120014_10,0.04254986797030378,0.010765116596486856,0.003422063427244083,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.016221000000002 47.56496159624492, 10.016063700000002 47.56503699624489, 10.015691300000006 47.565036996244906)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_11_LVCableDist_mvgd_33535_lvgd_1164120014_2,BranchTee_mvgd_33535_lvgd_1164120014_2,BranchTee_mvgd_33535_lvgd_1164120014_11,0.06659239940346492,0.016847877049076625,0.005355678534421574,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0132946 47.5646782962449, 10.013683099999998 47.56480289624491, 10.014091599999992 47.564937996244886)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_11_LVCableDist_mvgd_33535_lvgd_1164120014_9,BranchTee_mvgd_33535_lvgd_1164120014_9,BranchTee_mvgd_33535_lvgd_1164120014_11,0.07841971721820065,0.019840188456204767,0.006306887872237777,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.014106400000003 47.56564269624497, 10.014106299999996 47.56558819624496, 10.014104700000008 47.5649733962449, 10.014091599999992 47.564937996244886)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_12_LVCableDist_mvgd_33535_lvgd_1164120014_8,BranchTee_mvgd_33535_lvgd_1164120014_8,BranchTee_mvgd_33535_lvgd_1164120014_12,0.10217032075545146,0.02584909115112922,0.00821702474496612,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.015064850696046 47.56462409632206, 10.0151626 47.56425599624483, 10.015354000000002 47.56372609624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_12_LVCableDist_mvgd_33535_lvgd_1164120014_building_441976,BranchTee_mvgd_33535_lvgd_1164120014_12,BranchTee_mvgd_33535_lvgd_1164120014_building_441976,0.020763447803029557,0.018022672693029654,0.0017677409967003248,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015621978995595 47.56377010458204, 10.015354000000002 47.56372609624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_13_LVCableDist_mvgd_33535_lvgd_1164120014_3,BranchTee_mvgd_33535_lvgd_1164120014_3,BranchTee_mvgd_33535_lvgd_1164120014_13,0.013433028158954256,0.0033985561242154266,0.0010803482260386692,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0150707 47.56511949624494, 10.015071299999997 47.56499859624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_13_LVCableDist_mvgd_33535_lvgd_1164120014_6,BranchTee_mvgd_33535_lvgd_1164120014_6,BranchTee_mvgd_33535_lvgd_1164120014_13,0.05555405162069487,0.014055175060035802,0.004467921931487312,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.015103699999994 47.56561899624497, 10.0150707 47.56511949624494)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_13_LVCableDist_mvgd_33535_lvgd_1164120014_building_442004,BranchTee_mvgd_33535_lvgd_1164120014_13,BranchTee_mvgd_33535_lvgd_1164120014_building_442004,0.03168849819086249,0.02750561642966864,0.0026978687695440613,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014687148779336 47.56523685304652, 10.0150707 47.56511949624494)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_14_LVCableDist_mvgd_33535_lvgd_1164120014_2,BranchTee_mvgd_33535_lvgd_1164120014_2,BranchTee_mvgd_33535_lvgd_1164120014_14,0.052810289535450444,0.013361003252468962,0.004247255491546139,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0132946 47.5646782962449, 10.013632102720774 47.56426164680915)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_14_LVCableDist_mvgd_33535_lvgd_1164120014_building_441871,BranchTee_mvgd_33535_lvgd_1164120014_14,BranchTee_mvgd_33535_lvgd_1164120014_building_441871,0.035207236042538975,0.03055988088492383,0.002997444120230385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014030156330795 47.56442787161928, 10.013632102720774 47.56426164680915)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_14_LVCableDist_mvgd_33535_lvgd_1164120014_building_441874,BranchTee_mvgd_33535_lvgd_1164120014_14,BranchTee_mvgd_33535_lvgd_1164120014_building_441874,0.025264176982905895,0.021929305621162316,0.002150920301110066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013297062881675 47.56427363453452, 10.013632102720774 47.56426164680915)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_15_LVCableDist_mvgd_33535_lvgd_1164120014_2,BranchTee_mvgd_33535_lvgd_1164120014_2,BranchTee_mvgd_33535_lvgd_1164120014_15,0.03762710009008898,0.009519656322792513,0.0030261509432041316,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.013010301532027 47.56495679663406, 10.0132946 47.5646782962449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_15_LVCableDist_mvgd_33535_lvgd_1164120014_7,BranchTee_mvgd_33535_lvgd_1164120014_7,BranchTee_mvgd_33535_lvgd_1164120014_15,0.03762710009008898,0.009519656322792513,0.0030261509432041316,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.012726000000006 47.5652352962449, 10.013010301532027 47.56495679663406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_15_LVCableDist_mvgd_33535_lvgd_1164120014_building_441873,BranchTee_mvgd_33535_lvgd_1164120014_15,BranchTee_mvgd_33535_lvgd_1164120014_building_441873,0.032655454573847685,0.02834493457009979,0.0027801926907174315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013358550093946 47.56513194637359, 10.013010301532027 47.56495679663406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_16_LVCableDist_mvgd_33535_lvgd_1164120014_18,BranchTee_mvgd_33535_lvgd_1164120014_16,BranchTee_mvgd_33535_lvgd_1164120014_18,0.05765347833808816,0.025886411773801587,0.004890341088022574,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.016100399999997 47.56360659624478, 10.016063700000002 47.5641248962448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_16_LVCableDist_mvgd_33535_lvgd_1164120014_19,BranchTee_mvgd_33535_lvgd_1164120014_16,BranchTee_mvgd_33535_lvgd_1164120014_19,0.03320928585218852,0.014910969347632646,0.002816911308533371,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.016063700000002 47.5641248962448, 10.016124899999994 47.56442089624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_16_LVCableDist_mvgd_33535_lvgd_1164120014_building_442006,BranchTee_mvgd_33535_lvgd_1164120014_16,BranchTee_mvgd_33535_lvgd_1164120014_building_442006,0.03329516349165715,0.028900201910758403,0.0028346556917899983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01567790000672 47.564271296271635, 10.016063700000002 47.5641248962448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_16_LVCableDist_mvgd_33535_lvgd_1164120014_building_442007,BranchTee_mvgd_33535_lvgd_1164120014_16,BranchTee_mvgd_33535_lvgd_1164120014_building_442007,0.022152231642594306,0.019228137065771856,0.0018859781099217275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016328206794238 47.56403763438171, 10.016063700000002 47.5641248962448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_16_LVCableDist_mvgd_33535_lvgd_1164120014_building_442013,BranchTee_mvgd_33535_lvgd_1164120014_16,BranchTee_mvgd_33535_lvgd_1164120014_building_442013,0.013210009486290246,0.011466288234099934,0.0011246627032870829,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016200741426195 47.56419912077635, 10.016063700000002 47.5641248962448)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_17_LVCableDist_mvgd_33535_lvgd_1164120014_19,BranchTee_mvgd_33535_lvgd_1164120014_17,BranchTee_mvgd_33535_lvgd_1164120014_19,0.04621947674144318,0.02075254505690799,0.00392047475175942,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.016124899999994 47.56442089624489, 10.016191199999993 47.56466869624487, 10.016231999999995 47.564830496244916)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_17_LVCableDist_mvgd_33535_lvgd_1164120014_building_441986,BranchTee_mvgd_33535_lvgd_1164120014_17,BranchTee_mvgd_33535_lvgd_1164120014_building_441986,0.023097365657229592,0.020048513390475284,0.0019664441366094043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016508175925216 47.56474004244258, 10.016231999999995 47.564830496244916)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_17_LVStation_mvgd_33535_lvgd_1164120014,BusBar_mvgd_33535_lvgd_1164120014_LV,BranchTee_mvgd_33535_lvgd_1164120014_17,0.014589778980724177,0.0065508107623451555,0.0012375488465102302,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.016231999999995 47.564830496244916, 10.016221000000002 47.56496159624492)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_18_LVCableDist_mvgd_33535_lvgd_1164120014_20,BranchTee_mvgd_33535_lvgd_1164120014_18,BranchTee_mvgd_33535_lvgd_1164120014_20,0.05642085750228433,0.025332965018525666,0.004785786488837152,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.01615895057311 47.56310034632374, 10.016100399999997 47.56360659624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_18_LVCableDist_mvgd_33535_lvgd_1164120014_building_441983,BranchTee_mvgd_33535_lvgd_1164120014_18,BranchTee_mvgd_33535_lvgd_1164120014_building_441983,0.01953014834564518,0.016952168764020017,0.0016627413823439591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016358275246061 47.563587841906994, 10.016100399999997 47.56360659624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_18_LVCableDist_mvgd_33535_lvgd_1164120014_building_441985,BranchTee_mvgd_33535_lvgd_1164120014_18,BranchTee_mvgd_33535_lvgd_1164120014_building_441985,0.04792939619112898,0.04160271589389995,0.004080572715952731,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01666950555991 47.563413421637634, 10.016100399999997 47.56360659624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_18_LVCableDist_mvgd_33535_lvgd_1164120014_building_441990,BranchTee_mvgd_33535_lvgd_1164120014_18,BranchTee_mvgd_33535_lvgd_1164120014_building_441990,0.02934462007237596,0.025471130222822335,0.0024983176410116937,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016349950005065 47.56380944628616, 10.016100399999997 47.56360659624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_18_LVCableDist_mvgd_33535_lvgd_1164120014_building_441991,BranchTee_mvgd_33535_lvgd_1164120014_18,BranchTee_mvgd_33535_lvgd_1164120014_building_441991,0.040489131640154274,0.03514456626365391,0.00344712971564644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016636224680754 47.56363688805039, 10.016100399999997 47.56360659624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_18_LVCableDist_mvgd_33535_lvgd_1164120014_building_441993,BranchTee_mvgd_33535_lvgd_1164120014_18,BranchTee_mvgd_33535_lvgd_1164120014_building_441993,0.04792112235181072,0.04159553420137171,0.00407986830476333,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016648973929966 47.563825210149524, 10.016100399999997 47.56360659624478)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_19_LVCableDist_mvgd_33535_lvgd_1164120014_building_441977,BranchTee_mvgd_33535_lvgd_1164120014_19,BranchTee_mvgd_33535_lvgd_1164120014_building_441977,0.023270351300428423,0.02019866492877187,0.001981171643149938,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01641203097868 47.56449833190423, 10.016124899999994 47.56442089624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_19_LVCableDist_mvgd_33535_lvgd_1164120014_building_441978,BranchTee_mvgd_33535_lvgd_1164120014_19,BranchTee_mvgd_33535_lvgd_1164120014_building_441978,0.04309063838507267,0.03740267411824308,0.0036686146140029476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016696163334329 47.5644435680861, 10.016124899999994 47.56442089624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_19_LVCableDist_mvgd_33535_lvgd_1164120014_building_442014,BranchTee_mvgd_33535_lvgd_1164120014_19,BranchTee_mvgd_33535_lvgd_1164120014_building_442014,0.02739221913120424,0.02377644620588528,0.0023320957679178636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016403665222148 47.564262507678784, 10.016124899999994 47.56442089624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_19_LVCableDist_mvgd_33535_lvgd_1164120014_building_442015,BranchTee_mvgd_33535_lvgd_1164120014_19,BranchTee_mvgd_33535_lvgd_1164120014_building_442015,0.03466479647862176,0.030089043343443686,0.002951262355791976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016526160386922 47.56426797736834, 10.016124899999994 47.56442089624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_1_LVCableDist_mvgd_33535_lvgd_1164120014_11,BranchTee_mvgd_33535_lvgd_1164120014_1,BranchTee_mvgd_33535_lvgd_1164120014_11,0.06620020563589313,0.01674865202588096,0.0053241364401115,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.014967099999996 47.56499219624491, 10.014091599999992 47.564937996244886)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_1_LVCableDist_mvgd_33535_lvgd_1164120014_3,BranchTee_mvgd_33535_lvgd_1164120014_1,BranchTee_mvgd_33535_lvgd_1164120014_3,0.007878480978409133,0.0019932556875375106,0.0006336250358583567,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.015071299999997 47.56499859624491, 10.014967099999996 47.56499219624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_1_LVCableDist_mvgd_33535_lvgd_1164120014_8,BranchTee_mvgd_33535_lvgd_1164120014_1,BranchTee_mvgd_33535_lvgd_1164120014_8,0.04155587221416349,0.010513635670183364,0.0033421215452552255,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.015064850696046 47.56462409632206, 10.014967099999996 47.56499219624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_20_LVCableDist_mvgd_33535_lvgd_1164120014_building_441972,BranchTee_mvgd_33535_lvgd_1164120014_20,BranchTee_mvgd_33535_lvgd_1164120014_building_441972,0.019886911356109253,0.01726183905710283,0.0016931151721733897,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01641208266153 47.56315137083266, 10.01615895057311 47.56310034632374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_20_LVCableDist_mvgd_33535_lvgd_1164120014_building_441974,BranchTee_mvgd_33535_lvgd_1164120014_20,BranchTee_mvgd_33535_lvgd_1164120014_building_441974,0.028547993359362648,0.024779658235926778,0.0024304951043588557,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016441478351854 47.5629290209445, 10.01615895057311 47.56310034632374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_20_LVCableDist_mvgd_33535_lvgd_1164120014_building_441975,BranchTee_mvgd_33535_lvgd_1164120014_20,BranchTee_mvgd_33535_lvgd_1164120014_building_441975,0.03743791579969212,0.03249611091413276,0.0031873578616589053,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016638964220652 47.56318807751545, 10.01615895057311 47.56310034632374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_20_LVCableDist_mvgd_33535_lvgd_1164120014_building_441982,BranchTee_mvgd_33535_lvgd_1164120014_20,BranchTee_mvgd_33535_lvgd_1164120014_building_441982,0.034483904546717195,0.029932029146550524,0.002935861730277683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01641987416788 47.56335540083622, 10.01615895057311 47.56310034632374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_21_LVCableDist_mvgd_33535_lvgd_1164120014_22,BranchTee_mvgd_33535_lvgd_1164120014_21,BranchTee_mvgd_33535_lvgd_1164120014_22,0.04170454547385925,0.03619954547130983,0.003550606598781596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0165336 47.56539009624491, 10.016450100000002 47.56519069624494, 10.016331199999994 47.56504319624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_21_LVCableDist_mvgd_33535_lvgd_1164120014_building_442072,BranchTee_mvgd_33535_lvgd_1164120014_21,BranchTee_mvgd_33535_lvgd_1164120014_building_442072,0.04580523799406764,0.039758946578850714,0.003899727917726374,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015930339672607 47.565443074618074, 10.0165336 47.56539009624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_21_LVCableDist_mvgd_33535_lvgd_1164120014_building_442075,BranchTee_mvgd_33535_lvgd_1164120014_21,BranchTee_mvgd_33535_lvgd_1164120014_building_442075,0.022859670239324958,0.019842193767734065,0.001946207423567145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016236370028551 47.56534823309313, 10.0165336 47.56539009624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_21_LVCableDist_mvgd_33535_lvgd_1164120014_building_442080,BranchTee_mvgd_33535_lvgd_1164120014_21,BranchTee_mvgd_33535_lvgd_1164120014_building_442080,0.015203507931098996,0.013196644884193929,0.0012943835011611522,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016701549998563 47.56531414646183, 10.0165336 47.56539009624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_21_LVCableDist_mvgd_33535_lvgd_1164120014_building_442081,BranchTee_mvgd_33535_lvgd_1164120014_21,BranchTee_mvgd_33535_lvgd_1164120014_building_442081,0.0203121442157393,0.01763094117926171,0.0017293182905689032,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01668400723621 47.56554185406673, 10.0165336 47.56539009624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_22_LVCableDist_mvgd_33535_lvgd_1164120014_building_441988,BranchTee_mvgd_33535_lvgd_1164120014_22,BranchTee_mvgd_33535_lvgd_1164120014_building_441988,0.037333513484024396,0.03240548970413318,0.003178469344910287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016764299999878 47.56487964632448, 10.016331199999994 47.56504319624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_22_LVCableDist_mvgd_33535_lvgd_1164120014_building_441989,BranchTee_mvgd_33535_lvgd_1164120014_22,BranchTee_mvgd_33535_lvgd_1164120014_building_441989,0.016229818440597035,0.014087482406438225,0.0013817606641542543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01653053178998 47.564987631565515, 10.016331199999994 47.56504319624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_22_LVStation_mvgd_33535_lvgd_1164120014,BusBar_mvgd_33535_lvgd_1164120014_LV,BranchTee_mvgd_33535_lvgd_1164120014_22,0.012290630161857004,0.01066826698049188,0.0010463893578033835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016221000000002 47.56496159624492, 10.016331199999994 47.56504319624489)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_4_LVCableDist_mvgd_33535_lvgd_1164120014_9,BranchTee_mvgd_33535_lvgd_1164120014_4,BranchTee_mvgd_33535_lvgd_1164120014_9,0.06994716486056266,0.01769663270972235,0.0056254847811936706,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.014106400000003 47.56564269624497, 10.013522999999998 47.56613259624505)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_4_LVCableDist_mvgd_33535_lvgd_1164120014_building_442052,BranchTee_mvgd_33535_lvgd_1164120014_4,BranchTee_mvgd_33535_lvgd_1164120014_building_442052,0.05851804027017988,0.05079365895451613,0.004982059810753785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.013215361811481 47.565648943985686, 10.013522999999998 47.56613259624505)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_5_LVCableDist_mvgd_33535_lvgd_1164120014_7,BranchTee_mvgd_33535_lvgd_1164120014_5,BranchTee_mvgd_33535_lvgd_1164120014_7,0.15208766468071333,0.03847817916422047,0.012231615745601455,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0116363 47.56638549624505, 10.012033099999998 47.565900396245034, 10.0122529 47.56568619624497, 10.012726000000006 47.5652352962449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_5_LVCableDist_mvgd_33535_lvgd_1164120014_building_442043,BranchTee_mvgd_33535_lvgd_1164120014_5,BranchTee_mvgd_33535_lvgd_1164120014_building_442043,0.03141754996973515,0.02727043337373011,0.002674801007243046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011960347014963 47.566563620861324, 10.0116363 47.56638549624505)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_6_LVCableDist_mvgd_33535_lvgd_1164120014_building_442063,BranchTee_mvgd_33535_lvgd_1164120014_6,BranchTee_mvgd_33535_lvgd_1164120014_building_442063,0.011864912456816623,0.010298744012516828,0.0010101449610461527,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01494819999132 47.56563624633723, 10.015103699999994 47.56561899624497)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_6_LVCableDist_mvgd_33535_lvgd_1164120014_building_442067,BranchTee_mvgd_33535_lvgd_1164120014_6,BranchTee_mvgd_33535_lvgd_1164120014_building_442067,0.01782895537106429,0.015475533262083804,0.00151790664232422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015338931327378 47.56563727930237, 10.015103699999994 47.56561899624497)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_7_LVCableDist_mvgd_33535_lvgd_1164120014_building_442049,BranchTee_mvgd_33535_lvgd_1164120014_7,BranchTee_mvgd_33535_lvgd_1164120014_building_442049,0.026343959393202658,0.022866556753299908,0.0022428499099257544,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.012958763298968 47.56541230665812, 10.012726000000006 47.5652352962449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_8_LVCableDist_mvgd_33535_lvgd_1164120014_building_441979,BranchTee_mvgd_33535_lvgd_1164120014_8,BranchTee_mvgd_33535_lvgd_1164120014_building_441979,0.03883120009751705,0.0337054816846448,0.0033059781311193842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015571810993347 47.56468808966013, 10.015064850696046 47.56462409632206)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_8_LVCableDist_mvgd_33535_lvgd_1164120014_building_441999,BranchTee_mvgd_33535_lvgd_1164120014_8,BranchTee_mvgd_33535_lvgd_1164120014_building_441999,0.029771548040857562,0.025841703699464365,0.002534665076162266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014672002555209 47.564593902846624, 10.015064850696046 47.56462409632206)" +Branch_LVCableDist_mvgd_33535_lvgd_1164120014_9_LVCableDist_mvgd_33535_lvgd_1164120014_building_442062,BranchTee_mvgd_33535_lvgd_1164120014_9,BranchTee_mvgd_33535_lvgd_1164120014_building_442062,0.03633721086917781,0.03154069903444634,0.0030936469688727644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014584469384088 47.565687248388485, 10.014106400000003 47.56564269624497)" +Branch_LVCableDist_mvgd_33535_lvgd_1164130000_1_LVCableDist_mvgd_33535_lvgd_1164130000_building_431778,BranchTee_mvgd_33535_lvgd_1164130000_1,BranchTee_mvgd_33535_lvgd_1164130000_building_431778,0.030246427996324713,0.02625389950080985,0.0025750950073448907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00857480004571 47.5463864463555, 10.008776600000001 47.546621796243286)" +Branch_LVCableDist_mvgd_33535_lvgd_1164130000_1_LVCableDist_mvgd_33535_lvgd_1164130000_building_431783,BranchTee_mvgd_33535_lvgd_1164130000_1,BranchTee_mvgd_33535_lvgd_1164130000_building_431783,0.024022874810632713,0.020851855335629194,0.002045239358328477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009015799997325 47.546764796325945, 10.008776600000001 47.546621796243286)" +Branch_LVCableDist_mvgd_33535_lvgd_1164130000_1_LVStation_mvgd_33535_lvgd_1164130000,BusBar_mvgd_33535_lvgd_1164130000_LV,BranchTee_mvgd_33535_lvgd_1164130000_1,0.035822213308312374,0.031093681151615142,0.0030498015386639307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0088695 47.54693799624336, 10.008776600000001 47.546621796243286)" +Branch_LVCableDist_mvgd_33535_lvgd_1164150000_1_LVCableDist_mvgd_33535_lvgd_1164150000_building_431736,BranchTee_mvgd_33535_lvgd_1164150000_1,BranchTee_mvgd_33535_lvgd_1164150000_building_431736,0.07699652497246433,0.06683298367609904,0.006555265536267343,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00985636748941 47.54082564815172, 10.009561100000003 47.54148909624284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164150000_1_LVCableDist_mvgd_33535_lvgd_1164150000_building_431742,BranchTee_mvgd_33535_lvgd_1164150000_1,BranchTee_mvgd_33535_lvgd_1164150000_building_431742,0.05724445329759335,0.04968818546231103,0.004873630231732898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009644779679162 47.54097700894561, 10.009561100000003 47.54148909624284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164150000_1_LVCableDist_mvgd_33535_lvgd_1164150000_building_431748,BranchTee_mvgd_33535_lvgd_1164150000_1,BranchTee_mvgd_33535_lvgd_1164150000_building_431748,0.016108143340023733,0.0139818684191406,0.0013714015915377267,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009505000008353 47.5413491962806, 10.009561100000003 47.54148909624284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164150000_1_LVStation_mvgd_33535_lvgd_1164150000,BusBar_mvgd_33535_lvgd_1164150000_LV,BranchTee_mvgd_33535_lvgd_1164150000_1,0.056784260097742886,0.04928873776484082,0.00483445068922649,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009561100000003 47.54148909624284, 10.009866 47.54102169624281)" +Branch_LVCableDist_mvgd_33535_lvgd_1164150000_2_LVCableDist_mvgd_33535_lvgd_1164150000_building_431735,BranchTee_mvgd_33535_lvgd_1164150000_2,BranchTee_mvgd_33535_lvgd_1164150000_building_431735,0.015841160763449245,0.013750127542673945,0.0013486714529551286,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01071480002616 47.53967289632189, 10.010761599999995 47.539533896242666)" +Branch_LVCableDist_mvgd_33535_lvgd_1164150000_2_LVStation_mvgd_33535_lvgd_1164150000,BusBar_mvgd_33535_lvgd_1164150000_LV,BranchTee_mvgd_33535_lvgd_1164150000_2,0.630281347662689,0.547084209771214,0.053660364515969186,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.009866 47.54102169624281, 10.010112699999999 47.54050639624272, 10.009626499999994 47.54036969624278, 10.008618800000002 47.54004649624273, 10.007803099999995 47.53974989624267, 10.007064300000001 47.53947909624263, 10.007165699999996 47.539374696242625, 10.0073184 47.53929149624259, 10.007523600000006 47.53922979624264, 10.007758500000007 47.539194096242596, 10.008135900000003 47.539161196242645, 10.008523499999999 47.53913129624258, 10.009040999999995 47.53906579624263, 10.009342800000004 47.53902719624262, 10.009446200000003 47.53900549624264, 10.009635199999998 47.53903719624259, 10.009778600000006 47.539076696242645, 10.010311699999994 47.539272996242644, 10.010693200000006 47.53939409624262, 10.0107604 47.53946729624264, 10.010761599999995 47.539533896242666)" +Branch_Generator_mvgd_33535_lvgd_1164160000_water_391_LVStation_mvgd_33535_lvgd_1164160000,BusBar_mvgd_33535_lvgd_1164160000_LV,Bus_mvgd_33535_lvgd_1164160000_gen_391,0.88929900297034,0.7719115345782551,0.07571239231501904,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.098590999999995 47.558323996203825, 10.0977125 47.55219599624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164160000_building_447059_LVStation_mvgd_33535_lvgd_1164160000,BusBar_mvgd_33535_lvgd_1164160000_LV,BranchTee_mvgd_33535_lvgd_1164160000_building_447059,0.014099364689500666,0.012238248550486578,0.0012003798803309849,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09765259885293 47.5523162241268, 10.0977125 47.55219599624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164170000_1_LVCableDist_mvgd_33535_lvgd_1164170000_2,BranchTee_mvgd_33535_lvgd_1164170000_1,BranchTee_mvgd_33535_lvgd_1164170000_2,0.4568675299017793,0.39656101595474447,0.03889640440884524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017163399999994 47.53640379624241, 10.0172535 47.53649969624238, 10.017382399999999 47.536597296242384, 10.017450300000005 47.53664079624238, 10.017381300000006 47.53667559624244, 10.017337399999997 47.536734496242445, 10.017241299999997 47.53695829624242, 10.017189299999993 47.53704329624245, 10.0171169 47.53711179624242, 10.017026700000004 47.53716569624246, 10.016929000000005 47.53718959624242, 10.016707799999999 47.53719139624244, 10.0164731 47.53716489624246, 10.0157926 47.53700009624246, 10.015473399999998 47.53688089624245, 10.015173 47.53675619624243, 10.015079099999994 47.536642096242375, 10.015043200000004 47.53643539624238, 10.015010099999996 47.53638319624242, 10.014965999999996 47.536340796242335, 10.014890099999995 47.53635789624237, 10.014794699999994 47.53638359624241, 10.0147762 47.5364534962424, 10.014746099999998 47.536537596242404, 10.014553699999997 47.53667439624237, 10.014090999999997 47.53700589624247, 10.014012800000001 47.53708379624245, 10.013976399999995 47.537147296242466, 10.013971199999993 47.53722479624246, 10.014013399999994 47.53733169624245, 10.014049 47.537434896242445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164170000_1_LVCableDist_mvgd_33535_lvgd_1164170000_building_431737,BranchTee_mvgd_33535_lvgd_1164170000_1,BranchTee_mvgd_33535_lvgd_1164170000_building_431737,0.056037544843678115,0.048640588924312604,0.004770877472485521,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01395314439945 47.537935049765764, 10.014049 47.537434896242445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164170000_1_LVStation_mvgd_33535_lvgd_1164170000,BusBar_mvgd_33535_lvgd_1164170000_LV,BranchTee_mvgd_33535_lvgd_1164170000_1,0.048277133978451056,0.04190455229329552,0.0041101781239072524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014049 47.537434896242445, 10.014048500000001 47.53750289624249, 10.014046299999993 47.53758719624248, 10.0140421 47.537762896242526, 10.013885199999995 47.53775869624249)" +Branch_LVCableDist_mvgd_33535_lvgd_1164170000_2_LVCableDist_mvgd_33535_lvgd_1164170000_building_431693,BranchTee_mvgd_33535_lvgd_1164170000_2,BranchTee_mvgd_33535_lvgd_1164170000_building_431693,0.020320274455711215,0.017637998227557333,0.0017300104761176478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016893700030344 47.53640254630676, 10.017163399999994 47.53640379624241)" +Branch_LVCableDist_mvgd_33535_lvgd_1164190000_building_442332_LVStation_mvgd_33535_lvgd_1164190000,BusBar_mvgd_33535_lvgd_1164190000_LV,BranchTee_mvgd_33535_lvgd_1164190000_building_442332,0.0316512466667838,0.02747328210676834,0.0026946972805443462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01757713879938 47.57227366721396, 10.017450000000006 47.57254519624557)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_1_LVCableDist_mvgd_33535_lvgd_1164200000_3,BranchTee_mvgd_33535_lvgd_1164200000_1,BranchTee_mvgd_33535_lvgd_1164200000_3,0.5100992024619996,0.44276610773701564,0.04342839788123469,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032083200000004 47.54062869624272, 10.031889500000002 47.540447296242725, 10.031654700000006 47.54025669624274, 10.031559499999993 47.54017059624275, 10.031461799999999 47.54000289624268, 10.031412099999992 47.53976299624271, 10.031391399999995 47.53947389624265, 10.031469099999999 47.539184096242636, 10.031544400000003 47.539083196242636, 10.031669000000006 47.53905469624258, 10.031838 47.53906879624265, 10.032736999999996 47.539258196242656, 10.032964700000006 47.539262596242594, 10.033215199999999 47.53929789624261, 10.033412900000004 47.539358596242636, 10.033575900000006 47.53943159624263, 10.033666800000006 47.53949489624264, 10.033854099999996 47.5396573962427, 10.034099500000007 47.539942496242695, 10.034262 47.540180396242725, 10.034382899999995 47.540419796242766, 10.034475199999996 47.54071429624279)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_1_LVCableDist_mvgd_33535_lvgd_1164200000_4,BranchTee_mvgd_33535_lvgd_1164200000_1,BranchTee_mvgd_33535_lvgd_1164200000_4,0.022090142441079447,0.01917424363885696,0.0018806920115814417,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034520800000001 47.540910696242804, 10.034475199999996 47.54071429624279)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_1_LVCableDist_mvgd_33535_lvgd_1164200000_building_444963,BranchTee_mvgd_33535_lvgd_1164200000_1,BranchTee_mvgd_33535_lvgd_1164200000_building_444963,0.023777397842988254,0.020638781327713806,0.0020243401462338713,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034190549999899 47.54080674625411, 10.034475199999996 47.54071429624279)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_2_LVCableDist_mvgd_33535_lvgd_1164200000_4,BranchTee_mvgd_33535_lvgd_1164200000_2,BranchTee_mvgd_33535_lvgd_1164200000_4,0.04807504602305608,0.04172913994801268,0.004092972929130356,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034605100000006 47.541339596242864, 10.034520800000001 47.540910696242804)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_2_LVCableDist_mvgd_33535_lvgd_1164200000_building_444969,BranchTee_mvgd_33535_lvgd_1164200000_2,BranchTee_mvgd_33535_lvgd_1164200000_building_444969,0.01822094117465317,0.01581577693959895,0.0015512792007596973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034371399998582 47.54129734630091, 10.034605100000006 47.541339596242864)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_2_LVStation_mvgd_33535_lvgd_1164200000,BusBar_mvgd_33535_lvgd_1164200000_LV,BranchTee_mvgd_33535_lvgd_1164200000_2,0.011419022801700094,0.009911711791875681,0.0009721831817293742,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034605100000006 47.541339596242864, 10.0346109 47.54144229624284)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_3_LVCableDist_mvgd_33535_lvgd_1164200000_building_444959,BranchTee_mvgd_33535_lvgd_1164200000_3,BranchTee_mvgd_33535_lvgd_1164200000_building_444959,0.018412230545907578,0.015981816113847778,0.0015675650347409932,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03183886540187 47.54062482932374, 10.032083200000004 47.54062869624272)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_4_LVCableDist_mvgd_33535_lvgd_1164200000_building_444968,BranchTee_mvgd_33535_lvgd_1164200000_4,BranchTee_mvgd_33535_lvgd_1164200000_building_444968,0.023927542296060877,0.02076910671298084,0.002037123018695202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034353927673617 47.541093935701056, 10.034520800000001 47.540910696242804)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_5_LVCableDist_mvgd_33535_lvgd_1164200000_6,BranchTee_mvgd_33535_lvgd_1164200000_5,BranchTee_mvgd_33535_lvgd_1164200000_6,0.14852742100869595,0.1289218014355481,0.01264520294230381,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036489600000001 47.54210809624289, 10.035846100000002 47.54222139624288, 10.0357062 47.542226896242944, 10.035562500000001 47.54220809624292, 10.035429699999995 47.542156596242904, 10.035097999999998 47.54199539624285, 10.0346567 47.54190939624289)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_5_LVCableDist_mvgd_33535_lvgd_1164200000_7,BranchTee_mvgd_33535_lvgd_1164200000_5,BranchTee_mvgd_33535_lvgd_1164200000_7,0.04294803499536973,0.03727889437598092,0.003656473766267171,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036489600000001 47.54210809624289, 10.036699900000007 47.542101796242925, 10.036824999999999 47.5421189962429, 10.036910899999999 47.542172196242866, 10.036966300000001 47.542240996242896)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_5_LVCableDist_mvgd_33535_lvgd_1164200000_building_444989,BranchTee_mvgd_33535_lvgd_1164200000_5,BranchTee_mvgd_33535_lvgd_1164200000_building_444989,0.023642266653881142,0.02052148745556883,0.002012835460442591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036262016799311 47.54225461799286, 10.036489600000001 47.54210809624289)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_5_LVCableDist_mvgd_33535_lvgd_1164200000_building_444995,BranchTee_mvgd_33535_lvgd_1164200000_5,BranchTee_mvgd_33535_lvgd_1164200000_building_444995,0.016035918965405713,0.013919177661972159,0.0013652526133340833,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036582381471838 47.54223799278265, 10.036489600000001 47.54210809624289)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_6_LVCableDist_mvgd_33535_lvgd_1164200000_building_444974,BranchTee_mvgd_33535_lvgd_1164200000_6,BranchTee_mvgd_33535_lvgd_1164200000_building_444974,0.031402638847925615,0.027257490519999435,0.002673531516666165,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034755102179332 47.541634748358206, 10.0346567 47.54190939624289)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_6_LVCableDist_mvgd_33535_lvgd_1164200000_building_444975,BranchTee_mvgd_33535_lvgd_1164200000_6,BranchTee_mvgd_33535_lvgd_1164200000_building_444975,0.027646898198164245,0.023997507636006565,0.0023537784206226274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034925450024284 47.54173994629752, 10.0346567 47.54190939624289)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_6_LVCableDist_mvgd_33535_lvgd_1164200000_building_444980,BranchTee_mvgd_33535_lvgd_1164200000_6,BranchTee_mvgd_33535_lvgd_1164200000_building_444980,0.021859743824116158,0.018974257639332824,0.0018610765274550706,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034755250008695 47.54209444627497, 10.0346567 47.54190939624289)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_6_LVStation_mvgd_33535_lvgd_1164200000,BusBar_mvgd_33535_lvgd_1164200000_LV,BranchTee_mvgd_33535_lvgd_1164200000_6,0.05602238463644128,0.048627429864431033,0.004769586775482535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0346109 47.54144229624284, 10.034517699999997 47.54177969624285, 10.034569700000002 47.54184019624283, 10.0346567 47.54190939624289)" +Branch_LVCableDist_mvgd_33535_lvgd_1164200000_7_LVCableDist_mvgd_33535_lvgd_1164200000_building_444966,BranchTee_mvgd_33535_lvgd_1164200000_7,BranchTee_mvgd_33535_lvgd_1164200000_building_444966,0.01748349540575138,0.015175674012192197,0.0014884951616686228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036746000008662 47.54229049628515, 10.036966300000001 47.542240996242896)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_100_LVCableDist_mvgd_33535_lvgd_1164210000_74,BranchTee_mvgd_33535_lvgd_1164210000_74,BranchTee_mvgd_33535_lvgd_1164210000_100,0.06445747950544323,0.006445747950544323,0.005649726119921702,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089090000000002 47.55216399624374, 10.088349299999997 47.55245459624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_100_LVCableDist_mvgd_33535_lvgd_1164210000_98,BranchTee_mvgd_33535_lvgd_1164210000_98,BranchTee_mvgd_33535_lvgd_1164210000_100,0.01885995306591565,0.0018859953065915652,0.0016530830909701165,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089328600000004 47.552112496243794, 10.089090000000002 47.55216399624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_100_LVCableDist_mvgd_33535_lvgd_1164210000_building_446751,BranchTee_mvgd_33535_lvgd_1164210000_100,BranchTee_mvgd_33535_lvgd_1164210000_building_446751,0.039129881146569165,0.03396473683522203,0.0033314069876539836,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088737499999812 47.55190529628047, 10.089090000000002 47.55216399624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_100_LVCableDist_mvgd_33535_lvgd_1164210000_building_446754,BranchTee_mvgd_33535_lvgd_1164210000_100,BranchTee_mvgd_33535_lvgd_1164210000_building_446754,0.01955922003795208,0.016977402992942408,0.0016652164636898842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088837674539333 47.552122392069336, 10.089090000000002 47.55216399624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_100_LVCableDist_mvgd_33535_lvgd_1164210000_building_446756,BranchTee_mvgd_33535_lvgd_1164210000_100,BranchTee_mvgd_33535_lvgd_1164210000_building_446756,0.03277338044504339,0.028447294226297663,0.002790232564589141,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088927865804951 47.55189027150333, 10.089090000000002 47.55216399624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_100_LVCableDist_mvgd_33535_lvgd_1164210000_building_446765,BranchTee_mvgd_33535_lvgd_1164210000_100,BranchTee_mvgd_33535_lvgd_1164210000_building_446765,0.014356685734615529,0.01246160321764628,0.001222287463555046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089233448507658 47.552249082060044, 10.089090000000002 47.55216399624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_100_LVCableDist_mvgd_33535_lvgd_1164210000_building_446778,BranchTee_mvgd_33535_lvgd_1164210000_100,BranchTee_mvgd_33535_lvgd_1164210000_building_446778,0.01315048974414415,0.011414625097917122,0.001119595361422533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08907367479614 47.55228183661623, 10.089090000000002 47.55216399624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_101_LVCableDist_mvgd_33535_lvgd_1164210000_103,BranchTee_mvgd_33535_lvgd_1164210000_101,BranchTee_mvgd_33535_lvgd_1164210000_103,0.026143704042864684,0.0026143704042864684,0.0022915070327874363,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089823500000003 47.55257039624382, 10.090042 47.552576496243844, 10.090167799999996 47.552593996243836)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_101_LVCableDist_mvgd_33535_lvgd_1164210000_109,BranchTee_mvgd_33535_lvgd_1164210000_101,BranchTee_mvgd_33535_lvgd_1164210000_109,0.013380755027639767,0.0013380755027639767,0.0011728289992714662,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.090167799999996 47.552593996243836, 10.090341800000006 47.55261829624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_101_LVCableDist_mvgd_33535_lvgd_1164210000_building_446762,BranchTee_mvgd_33535_lvgd_1164210000_101,BranchTee_mvgd_33535_lvgd_1164210000_building_446762,0.03532527036171099,0.030662334673965144,0.003007493227054905,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09029999999953 47.5522889462662, 10.090167799999996 47.552593996243836)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_102_LVCableDist_mvgd_33535_lvgd_1164210000_105,BranchTee_mvgd_33535_lvgd_1164210000_102,BranchTee_mvgd_33535_lvgd_1164210000_105,0.024235160782745027,0.002423516078274503,0.002124222385754535,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.087085200000008 47.552792096243856, 10.086961900000004 47.55279229624381, 10.086773399999997 47.552750196243835)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_102_LVCableDist_mvgd_33535_lvgd_1164210000_71,BranchTee_mvgd_33535_lvgd_1164210000_71,BranchTee_mvgd_33535_lvgd_1164210000_102,0.027827240513351524,0.0027827240513351526,0.0024390697368231575,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.086773399999997 47.552750196243835, 10.086481700000006 47.55259649624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_102_LVCableDist_mvgd_33535_lvgd_1164210000_building_446726,BranchTee_mvgd_33535_lvgd_1164210000_102,BranchTee_mvgd_33535_lvgd_1164210000_building_446726,0.023249607881427183,0.020180659641078794,0.0019794056073485587,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086553129145587 47.55289679923568, 10.086773399999997 47.552750196243835)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_102_LVCableDist_mvgd_33535_lvgd_1164210000_building_446755,BranchTee_mvgd_33535_lvgd_1164210000_102,BranchTee_mvgd_33535_lvgd_1164210000_building_446755,0.04270769133968791,0.0370702760828491,0.003636011589779142,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086466450001282 47.553073396260686, 10.086773399999997 47.552750196243835)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_103_LVCableDist_mvgd_33535_lvgd_1164210000_77,BranchTee_mvgd_33535_lvgd_1164210000_77,BranchTee_mvgd_33535_lvgd_1164210000_103,0.011067122463438984,0.0011067122463438983,0.0009700380985077659,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089682400000004 47.552598196243814, 10.089823500000003 47.55257039624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_103_LVCableDist_mvgd_33535_lvgd_1164210000_building_446802,BranchTee_mvgd_33535_lvgd_1164210000_103,BranchTee_mvgd_33535_lvgd_1164210000_building_446802,0.013782159437222063,0.01196291439150875,0.00117337392572552,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089931322228276 47.55247017176123, 10.089823500000003 47.55257039624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_104_LVCableDist_mvgd_33535_lvgd_1164210000_107,BranchTee_mvgd_33535_lvgd_1164210000_104,BranchTee_mvgd_33535_lvgd_1164210000_107,0.24636181684325822,0.024636181684325825,0.02159372042236282,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.083899000000002 47.55170649624374, 10.083682399999997 47.551678496243746, 10.083434200000001 47.55166389624377, 10.082959299999999 47.55162949624375, 10.082530000000002 47.55157759624373, 10.081831499999995 47.55144009624374, 10.080979300000001 47.55129579624369, 10.0807098 47.551239996243716)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_104_LVCableDist_mvgd_33535_lvgd_1164210000_68,BranchTee_mvgd_33535_lvgd_1164210000_68,BranchTee_mvgd_33535_lvgd_1164210000_104,0.009214511867010187,0.0009214511867010188,0.0008076559737800435,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0807098 47.551239996243716, 10.080590000000003 47.5512231962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_104_LVCableDist_mvgd_33535_lvgd_1164210000_building_446612,BranchTee_mvgd_33535_lvgd_1164210000_104,BranchTee_mvgd_33535_lvgd_1164210000_building_446612,0.028188593404683084,0.024467699075264915,0.0023998968125854346,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080739490781117 47.55098708900986, 10.0807098 47.551239996243716)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_105_LVCableDist_mvgd_33535_lvgd_1164210000_106,BranchTee_mvgd_33535_lvgd_1164210000_105,BranchTee_mvgd_33535_lvgd_1164210000_106,0.004458860028899393,0.0004458860028899393,0.0003908210212938966,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.087144400000005 47.552791996243876, 10.087085200000008 47.552792096243856)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_105_LVCableDist_mvgd_33535_lvgd_1164210000_94,BranchTee_mvgd_33535_lvgd_1164210000_94,BranchTee_mvgd_33535_lvgd_1164210000_105,0.023432527846314093,0.0023432527846314094,0.0020538712597028197,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.087085200000008 47.552792096243856, 10.087085200000006 47.55258119624384)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_106_LVCableDist_mvgd_33535_lvgd_1164210000_69,BranchTee_mvgd_33535_lvgd_1164210000_69,BranchTee_mvgd_33535_lvgd_1164210000_106,0.05286028233405716,0.0052860282334057165,0.004633226742661241,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.087839999999996 47.552741096243786, 10.087449999999997 47.55275109624381, 10.087319899999999 47.552770396243844, 10.087144400000005 47.552791996243876)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_106_LVCableDist_mvgd_33535_lvgd_1164210000_building_446781,BranchTee_mvgd_33535_lvgd_1164210000_106,BranchTee_mvgd_33535_lvgd_1164210000_building_446781,0.01787184894495804,0.01551276488422358,0.0015215584794269152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08713250000073 47.55295264627033, 10.087144400000005 47.552791996243876)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_107_LVCableDist_mvgd_33535_lvgd_1164210000_90,BranchTee_mvgd_33535_lvgd_1164210000_90,BranchTee_mvgd_33535_lvgd_1164210000_107,0.15050490996415483,0.015050490996415485,0.013191820833285042,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.085672999999998 47.55232599624382, 10.0852209 47.55215349624378, 10.084592999999995 47.551924796243775, 10.084278999999999 47.55181359624374, 10.084078299999994 47.55174759624376, 10.083899000000002 47.55170649624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_107_LVCableDist_mvgd_33535_lvgd_1164210000_building_34328679,BranchTee_mvgd_33535_lvgd_1164210000_107,BranchTee_mvgd_33535_lvgd_1164210000_building_34328679,0.07902579245240192,0.06859438784868487,0.006728031608240853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084110712864849 47.55100986524256, 10.083899000000002 47.55170649624374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_108_LVCableDist_mvgd_33535_lvgd_1164210000_96,BranchTee_mvgd_33535_lvgd_1164210000_96,BranchTee_mvgd_33535_lvgd_1164210000_108,0.013452901212258056,0.0013452901212258057,0.001179152643739386,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089621799999996 47.55225499624385, 10.089515899999999 47.55215749624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_108_LVCableDist_mvgd_33535_lvgd_1164210000_98,BranchTee_mvgd_33535_lvgd_1164210000_98,BranchTee_mvgd_33535_lvgd_1164210000_108,0.014967276927703096,0.0014967276927703096,0.0013118883340048181,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089515899999999 47.55215749624381, 10.089328600000004 47.552112496243794)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_108_LVCableDist_mvgd_33535_lvgd_1164210000_building_446784,BranchTee_mvgd_33535_lvgd_1164210000_108,BranchTee_mvgd_33535_lvgd_1164210000_building_446784,0.020493165434154584,0.017788067596846178,0.001744729923169663,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089766150003362 47.55208509629259, 10.089515899999999 47.55215749624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_109_LVCableDist_mvgd_33535_lvgd_1164210000_110,BranchTee_mvgd_33535_lvgd_1164210000_109,BranchTee_mvgd_33535_lvgd_1164210000_110,0.03964664514074711,0.003964664514074711,0.0034750456942709076,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.090341800000006 47.55261829624383, 10.090861400000003 47.55267539624386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_109_LVCableDist_mvgd_33535_lvgd_1164210000_building_446761,BranchTee_mvgd_33535_lvgd_1164210000_109,BranchTee_mvgd_33535_lvgd_1164210000_building_446761,0.03120818816891548,0.027088707330618637,0.0026569765379177764,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090220076261193 47.55288678885026, 10.090341800000006 47.55261829624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_109_LVCableDist_mvgd_33535_lvgd_1164210000_building_446763,BranchTee_mvgd_33535_lvgd_1164210000_109,BranchTee_mvgd_33535_lvgd_1164210000_building_446763,0.013895204081989194,0.012061037143166621,0.0011829982258373312,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090397732002547 47.552499119892765, 10.090341800000006 47.55261829624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_109_LVCableDist_mvgd_33535_lvgd_1164210000_building_446769,BranchTee_mvgd_33535_lvgd_1164210000_109,BranchTee_mvgd_33535_lvgd_1164210000_building_446769,0.03739657607467835,0.0324602280328208,0.003183838314838338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090649824481417 47.55235430759575, 10.090341800000006 47.55261829624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_109_LVCableDist_mvgd_33535_lvgd_1164210000_building_446773,BranchTee_mvgd_33535_lvgd_1164210000_109,BranchTee_mvgd_33535_lvgd_1164210000_building_446773,0.01794217788136986,0.015573810401029037,0.001527546085402998,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090494123452732 47.552742450219164, 10.090341800000006 47.55261829624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_10_LVCableDist_mvgd_33535_lvgd_1164210000_20,BranchTee_mvgd_33535_lvgd_1164210000_10,BranchTee_mvgd_33535_lvgd_1164210000_20,0.02193314823551626,0.002193314823551626,0.0019224499845335477,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.099646299999996 47.55874359624436, 10.099936299999996 47.55872539624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_10_LVCableDist_mvgd_33535_lvgd_1164210000_26,BranchTee_mvgd_33535_lvgd_1164210000_10,BranchTee_mvgd_33535_lvgd_1164210000_26,0.06825712537386534,0.006825712537386535,0.005982766733268431,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0987411 47.55877459624438, 10.099646299999996 47.55874359624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_10_LVCableDist_mvgd_33535_lvgd_1164210000_5,BranchTee_mvgd_33535_lvgd_1164210000_5,BranchTee_mvgd_33535_lvgd_1164210000_10,0.07575791058797766,0.007575791058797767,0.0066402138203906355,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.099646299999996 47.55874359624436, 10.099647499999996 47.559204796244394, 10.099590299999994 47.559255896244395, 10.099640800000005 47.55929109624441, 10.0997905 47.559326296244414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_10_LVCableDist_mvgd_33535_lvgd_1164210000_building_447132,BranchTee_mvgd_33535_lvgd_1164210000_10,BranchTee_mvgd_33535_lvgd_1164210000_building_447132,0.035634407409845255,0.03093066563174568,0.0030338122776658594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.099198049999917 47.558640896255596, 10.099646299999996 47.55874359624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_10_LVCableDist_mvgd_33535_lvgd_1164210000_building_447139,BranchTee_mvgd_33535_lvgd_1164210000_10,BranchTee_mvgd_33535_lvgd_1164210000_building_447139,0.026420666817606547,0.02293313879768248,0.0022493805622603954,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.099367923008986 47.558888321755816, 10.099646299999996 47.55874359624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_110_LVCableDist_mvgd_33535_lvgd_1164210000_111,BranchTee_mvgd_33535_lvgd_1164210000_110,BranchTee_mvgd_33535_lvgd_1164210000_111,0.05492179376357644,0.0054921793763576445,0.004813919116288551,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.090861400000003 47.55267539624386, 10.091306500000002 47.55270859624382, 10.091433000000004 47.552705296243836, 10.091587599999993 47.55269979624384)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_110_LVCableDist_mvgd_33535_lvgd_1164210000_95,BranchTee_mvgd_33535_lvgd_1164210000_95,BranchTee_mvgd_33535_lvgd_1164210000_110,0.015080314182601784,0.0015080314182601784,0.0013217960985718678,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.090861400000003 47.55267539624386, 10.091017500000003 47.55259039624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_110_LVCableDist_mvgd_33535_lvgd_1164210000_building_446849,BranchTee_mvgd_33535_lvgd_1164210000_110,BranchTee_mvgd_33535_lvgd_1164210000_building_446849,0.02137675255279802,0.018555021215828683,0.0018199560218696302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090991899600088 47.552846246301726, 10.090861400000003 47.55267539624386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_111_LVCableDist_mvgd_33535_lvgd_1164210000_building_446844,BranchTee_mvgd_33535_lvgd_1164210000_111,BranchTee_mvgd_33535_lvgd_1164210000_building_446844,0.012643350223619412,0.01097442799410165,0.0010764189424586402,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091596630886118 47.55258616675208, 10.091587599999993 47.55269979624384)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_112_LVCableDist_mvgd_33535_lvgd_1164210000_133,BranchTee_mvgd_33535_lvgd_1164210000_112,BranchTee_mvgd_33535_lvgd_1164210000_133,0.06507746913036098,0.008134683641295123,0.00519295123292763,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0896744 47.558262396244324, 10.090534200000006 47.55832089624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_112_LVCableDist_mvgd_33535_lvgd_1164210000_134,BranchTee_mvgd_33535_lvgd_1164210000_112,BranchTee_mvgd_33535_lvgd_1164210000_134,0.06667493159224545,0.008334366449030682,0.0053204230718275295,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.090534200000006 47.55832089624432, 10.091398799999999 47.55844999624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_112_LVCableDist_mvgd_33535_lvgd_1164210000_building_446896,BranchTee_mvgd_33535_lvgd_1164210000_112,BranchTee_mvgd_33535_lvgd_1164210000_building_446896,0.02661731290603651,0.023103827602439692,0.0022661224519338282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090289690405518 47.558147918325304, 10.090534200000006 47.55832089624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_112_LVCableDist_mvgd_33535_lvgd_1164210000_building_446902,BranchTee_mvgd_33535_lvgd_1164210000_112,BranchTee_mvgd_33535_lvgd_1164210000_building_446902,0.016375013134049154,0.014213511400354666,0.001394122128134297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090647782429844 47.55819522062677, 10.090534200000006 47.55832089624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_113_LVCableDist_mvgd_33535_lvgd_1164210000_114,BranchTee_mvgd_33535_lvgd_1164210000_113,BranchTee_mvgd_33535_lvgd_1164210000_114,0.021836450492111536,0.002729556311513942,0.001742471304140969,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0875923 47.55849089624434, 10.087302399999997 47.55849469624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_113_LVCableDist_mvgd_33535_lvgd_1164210000_116,BranchTee_mvgd_33535_lvgd_1164210000_113,BranchTee_mvgd_33535_lvgd_1164210000_116,0.08215886603329223,0.010269858254161528,0.006555986124919456,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088606099999993 47.55864289624437, 10.088494200000003 47.55864789624437, 10.088441299999996 47.55863599624439, 10.088362000000004 47.55859139624434, 10.088309099999998 47.55854679624432, 10.088247399999998 47.55851409624436, 10.088137300000003 47.55849979624431, 10.087996700000003 47.55849719624436, 10.0875923 47.55849089624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_113_LVCableDist_mvgd_33535_lvgd_1164210000_building_446853,BranchTee_mvgd_33535_lvgd_1164210000_113,BranchTee_mvgd_33535_lvgd_1164210000_building_446853,0.012242256923431158,0.010626279009538246,0.001042270997619674,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087572950000729 47.558381496306545, 10.0875923 47.55849089624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_114_LVCableDist_mvgd_33535_lvgd_1164210000_building_446860,BranchTee_mvgd_33535_lvgd_1164210000_114,BranchTee_mvgd_33535_lvgd_1164210000_building_446860,0.04727759451555168,0.04103695203949886,0.004025080171816211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08668284087476 47.55856331927464, 10.087302399999997 47.55849469624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_114_LVCableDist_mvgd_33535_lvgd_1164210000_building_446861,BranchTee_mvgd_33535_lvgd_1164210000_114,BranchTee_mvgd_33535_lvgd_1164210000_building_446861,0.040512040997514716,0.035164451585842776,0.0034490801532904326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086802100002949 47.55862869625205, 10.087302399999997 47.55849469624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_114_LVCableDist_mvgd_33535_lvgd_1164210000_building_446862,BranchTee_mvgd_33535_lvgd_1164210000_114,BranchTee_mvgd_33535_lvgd_1164210000_building_446862,0.029964727482350448,0.02600938345468019,0.002551111825357591,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08691143534492 47.558544786241015, 10.087302399999997 47.55849469624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_115_LVCableDist_mvgd_33535_lvgd_1164210000_116,BranchTee_mvgd_33535_lvgd_1164210000_115,BranchTee_mvgd_33535_lvgd_1164210000_116,0.013406371285098855,0.0016757964106373568,0.0010697808815303186,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088773999999995 47.55860279624437, 10.088606099999993 47.55864289624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_115_LVCableDist_mvgd_33535_lvgd_1164210000_129,BranchTee_mvgd_33535_lvgd_1164210000_115,BranchTee_mvgd_33535_lvgd_1164210000_129,0.008624203611478589,0.0010780254514348236,0.000688180861605646,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088885500000002 47.55858509624437, 10.088773999999995 47.55860279624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_115_LVCableDist_mvgd_33535_lvgd_1164210000_building_446897,BranchTee_mvgd_33535_lvgd_1164210000_115,BranchTee_mvgd_33535_lvgd_1164210000_building_446897,0.024439587270488682,0.021213561750784177,0.002080717074077388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088805100003137 47.558821746284515, 10.088773999999995 47.55860279624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_116_LVCableDist_mvgd_33535_lvgd_1164210000_building_446893,BranchTee_mvgd_33535_lvgd_1164210000_116,BranchTee_mvgd_33535_lvgd_1164210000_building_446893,0.018717026466583978,0.016246378972994892,0.0015935144940850273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088672371854965 47.558805253840475, 10.088606099999993 47.55864289624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_116_LVCableDist_mvgd_33535_lvgd_1164210000_building_446907,BranchTee_mvgd_33535_lvgd_1164210000_116,BranchTee_mvgd_33535_lvgd_1164210000_building_446907,0.01727039575619411,0.01499070351637649,0.0014703524625139146,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088559666949914 47.55849067851254, 10.088606099999993 47.55864289624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_117_LVCableDist_mvgd_33535_lvgd_1164210000_118,BranchTee_mvgd_33535_lvgd_1164210000_117,BranchTee_mvgd_33535_lvgd_1164210000_118,0.03453974912669879,0.004317468640837349,0.002756149481677094,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0874437 47.55794929624432, 10.087706200000001 47.557977396244276, 10.087897800000002 47.55799239624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_117_LVCableDist_mvgd_33535_lvgd_1164210000_building_446915,BranchTee_mvgd_33535_lvgd_1164210000_117,BranchTee_mvgd_33535_lvgd_1164210000_building_446915,0.016120055434900984,0.013992208117494055,0.0013724157534760937,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087529731722977 47.55808214444125, 10.0874437 47.55794929624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_118_LVCableDist_mvgd_33535_lvgd_1164210000_119,BranchTee_mvgd_33535_lvgd_1164210000_118,BranchTee_mvgd_33535_lvgd_1164210000_119,0.115207455655253,0.014400931956906626,0.009193146366662994,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.087897800000002 47.55799239624429, 10.088300200000006 47.55799479624433, 10.088412500000004 47.557996696244295, 10.088649400000005 47.55800449624427, 10.089134799999997 47.55800089624432, 10.089427199999998 47.55800149624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_118_LVCableDist_mvgd_33535_lvgd_1164210000_building_446856,BranchTee_mvgd_33535_lvgd_1164210000_118,BranchTee_mvgd_33535_lvgd_1164210000_building_446856,0.025711138093458534,0.022317267865122007,0.002188973301100719,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088043100002855 47.558201796280656, 10.087897800000002 47.55799239624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_119_LVCableDist_mvgd_33535_lvgd_1164210000_122,BranchTee_mvgd_33535_lvgd_1164210000_119,BranchTee_mvgd_33535_lvgd_1164210000_122,0.028476642180833577,0.003559580272604197,0.002272335050804985,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089457 47.558256996244324, 10.089427199999998 47.55800149624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_119_LVCableDist_mvgd_33535_lvgd_1164210000_131,BranchTee_mvgd_33535_lvgd_1164210000_119,BranchTee_mvgd_33535_lvgd_1164210000_131,0.033791466074543954,0.004223933259317994,0.002696439147974927,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089427199999998 47.55800149624434, 10.089418199999997 47.55797189624432, 10.089403500000007 47.55790049624435, 10.0894054 47.55787189624426, 10.089409999999996 47.55777339624429, 10.089326300000003 47.55772489624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_11_LVCableDist_mvgd_33535_lvgd_1164210000_12,BranchTee_mvgd_33535_lvgd_1164210000_11,BranchTee_mvgd_33535_lvgd_1164210000_12,0.05030405261214323,0.005030405261214323,0.004409172095485691,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.096684999999997 47.55929849624439, 10.096758100000002 47.559256396244415, 10.096802999999998 47.559221996244425, 10.096814400000005 47.55919839624436, 10.096810400000006 47.5591604962444, 10.096591399999992 47.558924296244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_11_LVCableDist_mvgd_33535_lvgd_1164210000_building_447117,BranchTee_mvgd_33535_lvgd_1164210000_11,BranchTee_mvgd_33535_lvgd_1164210000_building_447117,0.012663300349196866,0.01099174470310288,0.0010781174395101483,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096582130022592 47.55920834201451, 10.096684999999997 47.55929849624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_11_LVCableDist_mvgd_33535_lvgd_1164210000_building_447210,BranchTee_mvgd_33535_lvgd_1164210000_11,BranchTee_mvgd_33535_lvgd_1164210000_building_447210,0.11801754229854686,0.10243922671513866,0.010047678489143596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097372368489516 47.56025304171057, 10.096684999999997 47.55929849624439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_120_LVCableDist_mvgd_33535_lvgd_1164210000_123,BranchTee_mvgd_33535_lvgd_1164210000_120,BranchTee_mvgd_33535_lvgd_1164210000_123,0.026891028065445195,0.0033613785081806494,0.0021458086679341415,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088857499999996 47.55767619624423, 10.088716800000002 47.557649096244305, 10.0886214 47.55760619624425, 10.088587499999997 47.55754509624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_120_LVCableDist_mvgd_33535_lvgd_1164210000_131,BranchTee_mvgd_33535_lvgd_1164210000_120,BranchTee_mvgd_33535_lvgd_1164210000_131,0.03578594283578089,0.004473242854472611,0.002855591319912708,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089326300000003 47.55772489624426, 10.089040500000001 47.557704996244226, 10.088857499999996 47.55767619624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_120_LVCableDist_mvgd_33535_lvgd_1164210000_building_446885,BranchTee_mvgd_33535_lvgd_1164210000_120,BranchTee_mvgd_33535_lvgd_1164210000_building_446885,0.022491160888700273,0.019522327651391835,0.0019148335836853302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08892223985731 47.55747858142719, 10.088857499999996 47.55767619624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_121_LVCableDist_mvgd_33535_lvgd_1164210000_138,BranchTee_mvgd_33535_lvgd_1164210000_121,BranchTee_mvgd_33535_lvgd_1164210000_138,0.07218281130548759,0.009022851413185949,0.005759932338704564,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.09289899999999 47.55826129624435, 10.093855900000007 47.55822409624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_121_LVCableDist_mvgd_33535_lvgd_1164210000_140,BranchTee_mvgd_33535_lvgd_1164210000_121,BranchTee_mvgd_33535_lvgd_1164210000_140,0.041372029912315006,0.005171503739039376,0.003301341257010301,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.093855900000007 47.55822409624431, 10.094396900000003 47.55815939624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_121_LVCableDist_mvgd_33535_lvgd_1164210000_building_446998,BranchTee_mvgd_33535_lvgd_1164210000_121,BranchTee_mvgd_33535_lvgd_1164210000_building_446998,0.01726201299432425,0.01498342727907345,0.001469638777967711,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093805750006563 47.558375696275796, 10.093855900000007 47.55822409624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_122_LVCableDist_mvgd_33535_lvgd_1164210000_132,BranchTee_mvgd_33535_lvgd_1164210000_122,BranchTee_mvgd_33535_lvgd_1164210000_132,0.017476032048667375,0.002184504006083422,0.0013945253770090277,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089231600000005 47.55829439624434, 10.089457 47.558256996244324)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_122_LVCableDist_mvgd_33535_lvgd_1164210000_133,BranchTee_mvgd_33535_lvgd_1164210000_122,BranchTee_mvgd_33535_lvgd_1164210000_133,0.01638348919358663,0.002047936149198329,0.001307344331984784,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089457 47.558256996244324, 10.0896744 47.558262396244324)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_123_LVCableDist_mvgd_33535_lvgd_1164210000_building_446876,BranchTee_mvgd_33535_lvgd_1164210000_123,BranchTee_mvgd_33535_lvgd_1164210000_building_446876,0.028545596856087978,0.024777578071084366,0.0024302910728739332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088229433000357 47.557629370767955, 10.088587499999997 47.55754509624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_123_LVStation_mvgd_33535_lvgd_1164210000,BusBar_mvgd_33535_lvgd_1164210000_LV,BranchTee_mvgd_33535_lvgd_1164210000_123,0.036450089977783914,0.004556261247222989,0.00290858790638108,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088587499999997 47.55754509624424, 10.088599399999998 47.55735189624423, 10.088636700000006 47.55721959624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_124_LVCableDist_mvgd_33535_lvgd_1164210000_125,BranchTee_mvgd_33535_lvgd_1164210000_124,BranchTee_mvgd_33535_lvgd_1164210000_125,0.03646806956572692,0.004558508695715865,0.0029100226137325465,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.092308200000005 47.55887019624437, 10.092105899999996 47.55888569624435, 10.091827700000003 47.55886059624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_124_LVCableDist_mvgd_33535_lvgd_1164210000_building_446963,BranchTee_mvgd_33535_lvgd_1164210000_124,BranchTee_mvgd_33535_lvgd_1164210000_building_446963,0.014518810951633165,0.012602327906017587,0.0012360903442442154,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092222349998131 47.55875319629326, 10.092308200000005 47.55887019624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_124_LVCableDist_mvgd_33535_lvgd_1164210000_building_446970,BranchTee_mvgd_33535_lvgd_1164210000_124,BranchTee_mvgd_33535_lvgd_1164210000_building_446970,0.028118961790902987,0.024407258834503794,0.0023939685746784565,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092255271323882 47.5591207204478, 10.092308200000005 47.55887019624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_124_LVCableDist_mvgd_33535_lvgd_1164210000_building_446989,BranchTee_mvgd_33535_lvgd_1164210000_124,BranchTee_mvgd_33535_lvgd_1164210000_building_446989,0.01634796068416814,0.014190029873857946,0.0013918189593557057,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092329149998125 47.55872374629333, 10.092308200000005 47.55887019624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_125_LVCableDist_mvgd_33535_lvgd_1164210000_142,BranchTee_mvgd_33535_lvgd_1164210000_125,BranchTee_mvgd_33535_lvgd_1164210000_142,0.04894846833154525,0.0061185585414431564,0.0039059141722773225,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091827700000003 47.55886059624441, 10.091186900000006 47.558786896244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_125_LVCableDist_mvgd_33535_lvgd_1164210000_building_446958,BranchTee_mvgd_33535_lvgd_1164210000_125,BranchTee_mvgd_33535_lvgd_1164210000_building_446958,0.020645381861921493,0.017920191456147858,0.0017576891976739473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091637100008043 47.558727046281874, 10.091827700000003 47.55886059624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_125_LVCableDist_mvgd_33535_lvgd_1164210000_building_446962,BranchTee_mvgd_33535_lvgd_1164210000_125,BranchTee_mvgd_33535_lvgd_1164210000_building_446962,0.012246208146083308,0.010629708670800311,0.0010426073934984104,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091867733595818 47.55875376835201, 10.091827700000003 47.55886059624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_125_LVCableDist_mvgd_33535_lvgd_1164210000_building_446967,BranchTee_mvgd_33535_lvgd_1164210000_125,BranchTee_mvgd_33535_lvgd_1164210000_building_446967,0.02490967050512145,0.021621593998445418,0.0021207386260664847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091694450004509 47.55906579627078, 10.091827700000003 47.55886059624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_126_LVCableDist_mvgd_33535_lvgd_1164210000_139,BranchTee_mvgd_33535_lvgd_1164210000_126,BranchTee_mvgd_33535_lvgd_1164210000_139,0.024831188917741328,0.003103898614717666,0.001981440809370462,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.090685599999995 47.55873149624438, 10.090358000000002 47.55870619624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_126_LVCableDist_mvgd_33535_lvgd_1164210000_142,BranchTee_mvgd_33535_lvgd_1164210000_126,BranchTee_mvgd_33535_lvgd_1164210000_142,0.038251457678137084,0.0047814322097671355,0.0030523306601407036,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091186900000006 47.558786896244385, 10.090685599999995 47.55873149624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_126_LVCableDist_mvgd_33535_lvgd_1164210000_building_446908,BranchTee_mvgd_33535_lvgd_1164210000_126,BranchTee_mvgd_33535_lvgd_1164210000_building_446908,0.023012506980266613,0.01997485605887142,0.0019592195097740037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090935500007022 47.55861229629303, 10.090685599999995 47.55873149624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_126_LVCableDist_mvgd_33535_lvgd_1164210000_building_446914,BranchTee_mvgd_33535_lvgd_1164210000_126,BranchTee_mvgd_33535_lvgd_1164210000_building_446914,0.024519318419928198,0.021282768388497676,0.0020875051577769416,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090555260297053 47.55893372486513, 10.090685599999995 47.55873149624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_126_LVCableDist_mvgd_33535_lvgd_1164210000_building_446916,BranchTee_mvgd_33535_lvgd_1164210000_126,BranchTee_mvgd_33535_lvgd_1164210000_building_446916,0.02794702949704479,0.024258021603434876,0.002379330747310233,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090865350004751 47.5589515462862, 10.090685599999995 47.55873149624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_127_LVCableDist_mvgd_33535_lvgd_1164210000_139,BranchTee_mvgd_33535_lvgd_1164210000_127,BranchTee_mvgd_33535_lvgd_1164210000_139,0.033467719297895535,0.004183464912236942,0.002670605303398319,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.090358000000002 47.55870619624437, 10.089914300000006 47.558689296244374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_127_LVCableDist_mvgd_33535_lvgd_1164210000_141,BranchTee_mvgd_33535_lvgd_1164210000_127,BranchTee_mvgd_33535_lvgd_1164210000_141,0.022523668626291987,0.0028154585782864984,0.0017973088739615456,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089914300000006 47.558689296244374, 10.089616400000002 47.558707296244364)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_127_LVCableDist_mvgd_33535_lvgd_1164210000_building_446927,BranchTee_mvgd_33535_lvgd_1164210000_127,BranchTee_mvgd_33535_lvgd_1164210000_building_446927,0.021756544028033925,0.018884680216333445,0.0018522903898099028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090087523221564 47.55853258262445, 10.089914300000006 47.558689296244374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_127_LVCableDist_mvgd_33535_lvgd_1164210000_building_446932,BranchTee_mvgd_33535_lvgd_1164210000_127,BranchTee_mvgd_33535_lvgd_1164210000_building_446932,0.02351066823980155,0.020407260032147743,0.0020016315450872954,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090050649999682 47.55887964628329, 10.089914300000006 47.558689296244374)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_128_LVCableDist_mvgd_33535_lvgd_1164210000_135,BranchTee_mvgd_33535_lvgd_1164210000_128,BranchTee_mvgd_33535_lvgd_1164210000_135,0.020172532038285073,0.002521566504785634,0.0016096965127768408,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089414000000003 47.55870669624436, 10.089151400000004 47.55867089624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_128_LVCableDist_mvgd_33535_lvgd_1164210000_141,BranchTee_mvgd_33535_lvgd_1164210000_128,BranchTee_mvgd_33535_lvgd_1164210000_141,0.015242838680007892,0.0019053548350009865,0.0012163244664309654,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089616400000002 47.558707296244364, 10.089414000000003 47.55870669624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_128_LVCableDist_mvgd_33535_lvgd_1164210000_building_446903,BranchTee_mvgd_33535_lvgd_1164210000_128,BranchTee_mvgd_33535_lvgd_1164210000_building_446903,0.015542114411550139,0.01349055530922552,0.0013232114955732631,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089456050000427 47.55856974628801, 10.089414000000003 47.55870669624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_128_LVCableDist_mvgd_33535_lvgd_1164210000_building_446912,BranchTee_mvgd_33535_lvgd_1164210000_128,BranchTee_mvgd_33535_lvgd_1164210000_building_446912,0.022819402988745838,0.01980724179423139,0.0019427791841750953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089247950001116 47.558878496279824, 10.089414000000003 47.55870669624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_129_LVCableDist_mvgd_33535_lvgd_1164210000_130,BranchTee_mvgd_33535_lvgd_1164210000_129,BranchTee_mvgd_33535_lvgd_1164210000_130,0.03028321632670938,0.0037854020408386725,0.0024164932604521412,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088885500000002 47.55858509624437, 10.088892600000003 47.558502796244376, 10.088954300000003 47.558419696244314, 10.089061099999995 47.55835499624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_129_LVCableDist_mvgd_33535_lvgd_1164210000_135,BranchTee_mvgd_33535_lvgd_1164210000_129,BranchTee_mvgd_33535_lvgd_1164210000_135,0.022302726096134408,0.002787840762016801,0.0017796784436494874,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088885500000002 47.55858509624437, 10.089003600000003 47.558634896244364, 10.089151400000004 47.55867089624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_12_LVCableDist_mvgd_33535_lvgd_1164210000_2,BranchTee_mvgd_33535_lvgd_1164210000_2,BranchTee_mvgd_33535_lvgd_1164210000_12,0.009668933783215485,0.0009668933783215485,0.0008474862524249467,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.096688799999999 47.55886759624438, 10.096591399999992 47.558924296244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_12_LVCableDist_mvgd_33535_lvgd_1164210000_3,BranchTee_mvgd_33535_lvgd_1164210000_3,BranchTee_mvgd_33535_lvgd_1164210000_12,0.009167523610062851,0.0009167523610062851,0.0008035374326170658,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.096591399999992 47.558924296244385, 10.096498100000007 47.55897729624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_130_LVCableDist_mvgd_33535_lvgd_1164210000_132,BranchTee_mvgd_33535_lvgd_1164210000_130,BranchTee_mvgd_33535_lvgd_1164210000_132,0.014498441703201763,0.0018123052129002204,0.0011569242277592753,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089061099999995 47.55835499624432, 10.089231600000005 47.55829439624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_130_LVCableDist_mvgd_33535_lvgd_1164210000_building_446887,BranchTee_mvgd_33535_lvgd_1164210000_130,BranchTee_mvgd_33535_lvgd_1164210000_building_446887,0.01848578962495991,0.0160456653944652,0.001573827645890831,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088859664809851 47.55825992506309, 10.089061099999995 47.55835499624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_131_LVCableDist_mvgd_33535_lvgd_1164210000_building_446866,BranchTee_mvgd_33535_lvgd_1164210000_131,BranchTee_mvgd_33535_lvgd_1164210000_building_446866,0.026538674917125464,0.023035569828064904,0.00225942743681809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089538822870246 47.55753436349146, 10.089326300000003 47.55772489624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_132_LVCableDist_mvgd_33535_lvgd_1164210000_building_446890,BranchTee_mvgd_33535_lvgd_1164210000_132,BranchTee_mvgd_33535_lvgd_1164210000_building_446890,0.015279112470754294,0.013262269624614726,0.0013008202570194843,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089196150011661 47.55815899628551, 10.089231600000005 47.55829439624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_133_LVCableDist_mvgd_33535_lvgd_1164210000_building_446888,BranchTee_mvgd_33535_lvgd_1164210000_133,BranchTee_mvgd_33535_lvgd_1164210000_building_446888,0.018933896789535297,0.016434622413316637,0.0016119782176672328,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089755022164866 47.558100983545486, 10.0896744 47.558262396244324)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_134_LVCableDist_mvgd_33535_lvgd_1164210000_136,BranchTee_mvgd_33535_lvgd_1164210000_134,BranchTee_mvgd_33535_lvgd_1164210000_136,0.03963016847522873,0.0049537710594035915,0.003162346892014532,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091398799999999 47.55844999624435, 10.091917700000005 47.55850929624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_134_LVCableDist_mvgd_33535_lvgd_1164210000_building_446941,BranchTee_mvgd_33535_lvgd_1164210000_134,BranchTee_mvgd_33535_lvgd_1164210000_building_446941,0.030981218496598385,0.026891697655047397,0.002637652984403508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091131500011679 47.55823804627607, 10.091398799999999 47.55844999624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_134_LVCableDist_mvgd_33535_lvgd_1164210000_building_446949,BranchTee_mvgd_33535_lvgd_1164210000_134,BranchTee_mvgd_33535_lvgd_1164210000_building_446949,0.02220226399227605,0.01927156514529561,0.0018902377221274018,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091518548588953 47.55826739378423, 10.091398799999999 47.55844999624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_135_LVCableDist_mvgd_33535_lvgd_1164210000_building_446899,BranchTee_mvgd_33535_lvgd_1164210000_135,BranchTee_mvgd_33535_lvgd_1164210000_building_446899,0.015839006525883364,0.01374825766446676,0.001348488047284839,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089175989152713 47.55852931776002, 10.089151400000004 47.55867089624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_135_LVCableDist_mvgd_33535_lvgd_1164210000_building_446905,BranchTee_mvgd_33535_lvgd_1164210000_135,BranchTee_mvgd_33535_lvgd_1164210000_building_446905,0.02265652653124452,0.019665865029120242,0.001928912345003983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089113600001124 47.55887319627978, 10.089151400000004 47.55867089624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_136_LVCableDist_mvgd_33535_lvgd_1164210000_137,BranchTee_mvgd_33535_lvgd_1164210000_136,BranchTee_mvgd_33535_lvgd_1164210000_137,0.050451401469430904,0.006306425183678863,0.004025842906379706,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091917700000005 47.55850929624432, 10.0921172 47.55848499624431, 10.0925115 47.558315096244314)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_136_LVCableDist_mvgd_33535_lvgd_1164210000_building_446972,BranchTee_mvgd_33535_lvgd_1164210000_136,BranchTee_mvgd_33535_lvgd_1164210000_building_446972,0.018514084721722956,0.016070225538455527,0.001576236610096975,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091830810240316 47.55835342147828, 10.091917700000005 47.55850929624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_137_LVCableDist_mvgd_33535_lvgd_1164210000_138,BranchTee_mvgd_33535_lvgd_1164210000_137,BranchTee_mvgd_33535_lvgd_1164210000_138,0.0297884571922301,0.0037235571490287626,0.002377013236232857,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0925115 47.558315096244314, 10.09289899999999 47.55826129624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_137_LVCableDist_mvgd_33535_lvgd_1164210000_building_447013,BranchTee_mvgd_33535_lvgd_1164210000_137,BranchTee_mvgd_33535_lvgd_1164210000_building_447013,0.006120253471816657,0.0053123800135368585,0.0005210610046540159,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092455325767233 47.55827529198487, 10.0925115 47.558315096244314)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_138_LVCableDist_mvgd_33535_lvgd_1164210000_building_447020,BranchTee_mvgd_33535_lvgd_1164210000_138,BranchTee_mvgd_33535_lvgd_1164210000_building_447020,0.019285553107976423,0.016739860097723536,0.0016419172382361761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092833636214657 47.558429123832404, 10.09289899999999 47.55826129624435)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_139_LVCableDist_mvgd_33535_lvgd_1164210000_building_446937,BranchTee_mvgd_33535_lvgd_1164210000_139,BranchTee_mvgd_33535_lvgd_1164210000_building_446937,0.023503506313586234,0.02040104348019285,0.00200102179902266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090175899999661 47.55887799628332, 10.090358000000002 47.55870619624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_139_LVCableDist_mvgd_33535_lvgd_1164210000_building_446939,BranchTee_mvgd_33535_lvgd_1164210000_139,BranchTee_mvgd_33535_lvgd_1164210000_building_446939,0.01694554328194336,0.014708731568726837,0.001442695445140875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090507686579983 47.558592320768746, 10.090358000000002 47.55870619624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_13_LVCableDist_mvgd_33535_lvgd_1164210000_14,BranchTee_mvgd_33535_lvgd_1164210000_13,BranchTee_mvgd_33535_lvgd_1164210000_14,0.01468469976039447,0.0014684699760394472,0.0012871203223592152,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.097323999999999 47.55830729624427, 10.097474900000002 47.55839099624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_13_LVCableDist_mvgd_33535_lvgd_1164210000_25,BranchTee_mvgd_33535_lvgd_1164210000_13,BranchTee_mvgd_33535_lvgd_1164210000_25,0.013729370153166878,0.0013729370153166879,0.0012033852666837527,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.097160099999996 47.55825319624433, 10.097323999999999 47.55830729624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_13_LVCableDist_mvgd_33535_lvgd_1164210000_7,BranchTee_mvgd_33535_lvgd_1164210000_7,BranchTee_mvgd_33535_lvgd_1164210000_13,0.050917185976726544,0.005091718597672655,0.004462913501625987,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.097323999999999 47.55830729624427, 10.097506599999996 47.558091996244315, 10.097586400000006 47.5579932962443, 10.097659599999997 47.55790949624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_140_LVCableDist_mvgd_33535_lvgd_1164210000_building_446999,BranchTee_mvgd_33535_lvgd_1164210000_140,BranchTee_mvgd_33535_lvgd_1164210000_building_446999,0.02691632490169779,0.023363370014673684,0.0022915794843231456,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094368699998038 47.55840089627648, 10.094396900000003 47.55815939624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_140_LVCableDist_mvgd_33535_lvgd_1164210000_building_447004,BranchTee_mvgd_33535_lvgd_1164210000_140,BranchTee_mvgd_33535_lvgd_1164210000_building_447004,0.038009513260857046,0.032992257510423915,0.003236022046687156,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094735949998649 47.55841279628323, 10.094396900000003 47.55815939624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_141_LVCableDist_mvgd_33535_lvgd_1164210000_building_446918,BranchTee_mvgd_33535_lvgd_1164210000_141,BranchTee_mvgd_33535_lvgd_1164210000_building_446918,0.02159058581719162,0.018740628489322324,0.0018381611789087067,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089563482913295 47.55889827999448, 10.089616400000002 47.558707296244364)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_141_LVCableDist_mvgd_33535_lvgd_1164210000_building_446922,BranchTee_mvgd_33535_lvgd_1164210000_141,BranchTee_mvgd_33535_lvgd_1164210000_building_446922,0.01523509878484119,0.013224065745242153,0.0012970730567595577,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089585400000413 47.558571796288, 10.089616400000002 47.558707296244364)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_141_LVCableDist_mvgd_33535_lvgd_1164210000_building_446928,BranchTee_mvgd_33535_lvgd_1164210000_141,BranchTee_mvgd_33535_lvgd_1164210000_building_446928,0.022066071386380608,0.019153349963378367,0.0018786426703242183,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089682050000494 47.55890084627661, 10.089616400000002 47.558707296244364)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_142_LVCableDist_mvgd_33535_lvgd_1164210000_building_446947,BranchTee_mvgd_33535_lvgd_1164210000_142,BranchTee_mvgd_33535_lvgd_1164210000_building_446947,0.013231952689943722,0.01148533493487115,0.00112653088534746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091260150005125 47.55867864626739, 10.091186900000006 47.558786896244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_142_LVCableDist_mvgd_33535_lvgd_1164210000_building_446953,BranchTee_mvgd_33535_lvgd_1164210000_142,BranchTee_mvgd_33535_lvgd_1164210000_building_446953,0.018516209302152965,0.016072069674268774,0.0015764174908429157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091394840884968 47.558697967821445, 10.091186900000006 47.558786896244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_142_LVCableDist_mvgd_33535_lvgd_1164210000_building_446956,BranchTee_mvgd_33535_lvgd_1164210000_142,BranchTee_mvgd_33535_lvgd_1164210000_building_446956,0.02393689100214589,0.02077722138986263,0.0020379189409894835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091309550013534 47.558985646276135, 10.091186900000006 47.558786896244385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_143_LVCableDist_mvgd_33535_lvgd_1164210000_144,BranchTee_mvgd_33535_lvgd_1164210000_143,BranchTee_mvgd_33535_lvgd_1164210000_144,0.019890172190512298,0.00198901721905123,0.0017433822454225496,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095187200000007 47.5590265962444, 10.095030900000003 47.55888229624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_143_LVCableDist_mvgd_33535_lvgd_1164210000_166,BranchTee_mvgd_33535_lvgd_1164210000_143,BranchTee_mvgd_33535_lvgd_1164210000_166,0.012830690913398881,0.0012830690913398883,0.0011246156403610253,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095030900000003 47.55888229624438, 10.094895400000004 47.55881229624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_143_LVCableDist_mvgd_33535_lvgd_1164210000_building_447051,BranchTee_mvgd_33535_lvgd_1164210000_143,BranchTee_mvgd_33535_lvgd_1164210000_building_447051,0.02415465654134002,0.020966241877883138,0.002056458880741004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095202900000778 47.558698796288006, 10.095030900000003 47.55888229624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_143_LVCableDist_mvgd_33535_lvgd_1164210000_building_447056,BranchTee_mvgd_33535_lvgd_1164210000_143,BranchTee_mvgd_33535_lvgd_1164210000_building_447056,0.029710233834087645,0.025788482967988077,0.0025294449586742867,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095323375933603 47.55870283697212, 10.095030900000003 47.55888229624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_144_LVCableDist_mvgd_33535_lvgd_1164210000_153,BranchTee_mvgd_33535_lvgd_1164210000_144,BranchTee_mvgd_33535_lvgd_1164210000_153,0.015720055735635084,0.0015720055735635086,0.0013778697240053024,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095320100000002 47.55913569624437, 10.095187200000007 47.5590265962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_144_LVCableDist_mvgd_33535_lvgd_1164210000_building_447035,BranchTee_mvgd_33535_lvgd_1164210000_144,BranchTee_mvgd_33535_lvgd_1164210000_building_447035,0.013535935555478835,0.01174919206215563,0.0011524111234850999,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095331650003613 47.558954096267655, 10.095187200000007 47.5590265962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_145_LVCableDist_mvgd_33535_lvgd_1164210000_146,BranchTee_mvgd_33535_lvgd_1164210000_145,BranchTee_mvgd_33535_lvgd_1164210000_146,0.021892188690963783,0.0021892188690963784,0.0019188598626346813,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095911099999995 47.55910129624443, 10.095851999999995 47.55909889624439, 10.095621499999996 47.559084396244366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_145_LVCableDist_mvgd_33535_lvgd_1164210000_153,BranchTee_mvgd_33535_lvgd_1164210000_145,BranchTee_mvgd_33535_lvgd_1164210000_153,0.023709859445511912,0.0023709859445511915,0.0020781794950215037,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095320100000002 47.55913569624437, 10.095457400000004 47.559094696244394, 10.095621499999996 47.559084396244366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_145_LVCableDist_mvgd_33535_lvgd_1164210000_building_447036,BranchTee_mvgd_33535_lvgd_1164210000_145,BranchTee_mvgd_33535_lvgd_1164210000_building_447036,0.029062692436327718,0.025226417034732457,0.0024743151224958346,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095552050000867 47.558827096255754, 10.095621499999996 47.559084396244366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_146_LVCableDist_mvgd_33535_lvgd_1164210000_148,BranchTee_mvgd_33535_lvgd_1164210000_146,BranchTee_mvgd_33535_lvgd_1164210000_148,0.00596824156860461,0.000596824156860461,0.0005231189698830913,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095911099999995 47.55910129624443, 10.095990200000006 47.55910459624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_146_LVCableDist_mvgd_33535_lvgd_1164210000_167,BranchTee_mvgd_33535_lvgd_1164210000_146,BranchTee_mvgd_33535_lvgd_1164210000_167,0.01341153343808102,0.001341153343808102,0.0011755267403363325,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095911099999995 47.55910129624443, 10.095909099999993 47.55922199624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_147_LVCableDist_mvgd_33535_lvgd_1164210000_169,BranchTee_mvgd_33535_lvgd_1164210000_147,BranchTee_mvgd_33535_lvgd_1164210000_169,0.025973418707481107,0.0025973418707481107,0.0022765814490609583,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.093990099999994 47.55884229624436, 10.093666799999996 47.55876089624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_147_LVCableDist_mvgd_33535_lvgd_1164210000_170,BranchTee_mvgd_33535_lvgd_1164210000_147,BranchTee_mvgd_33535_lvgd_1164210000_170,0.026083031369388877,0.002608303136938888,0.002286189046562536,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.093666799999996 47.55876089624438, 10.093327899999998 47.558712496244354)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_147_LVCableDist_mvgd_33535_lvgd_1164210000_building_447027,BranchTee_mvgd_33535_lvgd_1164210000_147,BranchTee_mvgd_33535_lvgd_1164210000_building_447027,0.017438729159633484,0.015136816910561863,0.0014846838905694447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093854435886145 47.55866891692738, 10.093666799999996 47.55876089624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_148_LVCableDist_mvgd_33535_lvgd_1164210000_building_447038,BranchTee_mvgd_33535_lvgd_1164210000_148,BranchTee_mvgd_33535_lvgd_1164210000_building_447038,0.01880014603785527,0.016318526760858376,0.0016005910583993116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096040861037041 47.55893890922967, 10.095990200000006 47.55910459624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_149_LVCableDist_mvgd_33535_lvgd_1164210000_150,BranchTee_mvgd_33535_lvgd_1164210000_149,BranchTee_mvgd_33535_lvgd_1164210000_150,0.02653571859762807,0.002653571859762807,0.00232586727905256,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.091346899999996 47.55938879624445, 10.090999800000002 47.55934769624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_149_LVCableDist_mvgd_33535_lvgd_1164210000_162,BranchTee_mvgd_33535_lvgd_1164210000_149,BranchTee_mvgd_33535_lvgd_1164210000_162,0.028123136380849678,0.002812313638084968,0.0024650051383344755,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.090999800000002 47.55934769624441, 10.090631200000004 47.55930709624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_149_LVCableDist_mvgd_33535_lvgd_1164210000_building_446976,BranchTee_mvgd_33535_lvgd_1164210000_149,BranchTee_mvgd_33535_lvgd_1164210000_building_446976,0.01901794834394295,0.01650757916254248,0.0016191341283797647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091187237565734 47.55923298523446, 10.090999800000002 47.55934769624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_14_LVCableDist_mvgd_33535_lvgd_1164210000_26,BranchTee_mvgd_33535_lvgd_1164210000_14,BranchTee_mvgd_33535_lvgd_1164210000_26,0.10710467864874292,0.010710467864874292,0.00938777167786282,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.097474900000002 47.55839099624433, 10.097865900000002 47.5585976962444, 10.0981164 47.55868759624434, 10.098320899999994 47.55873609624435, 10.098521399999996 47.5587691962444, 10.0987411 47.55877459624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_14_LVCableDist_mvgd_33535_lvgd_1164210000_building_447084,BranchTee_mvgd_33535_lvgd_1164210000_14,BranchTee_mvgd_33535_lvgd_1164210000_building_447084,0.023248188233802213,0.02017942738694032,0.001979284742580273,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097781850014137 47.55836874628869, 10.097474900000002 47.55839099624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_14_LVCableDist_mvgd_33535_lvgd_1164210000_building_447109,BranchTee_mvgd_33535_lvgd_1164210000_14,BranchTee_mvgd_33535_lvgd_1164210000_building_447109,0.013850626497079193,0.01202234379946474,0.0011792030168177674,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097441600004927 47.55851359626037, 10.097474900000002 47.55839099624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_150_LVCableDist_mvgd_33535_lvgd_1164210000_152,BranchTee_mvgd_33535_lvgd_1164210000_150,BranchTee_mvgd_33535_lvgd_1164210000_152,0.032340679365042695,0.0032340679365042697,0.00283467461567846,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.091761599999998 47.559464396244415, 10.091346899999996 47.55938879624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_150_LVCableDist_mvgd_33535_lvgd_1164210000_building_446977,BranchTee_mvgd_33535_lvgd_1164210000_150,BranchTee_mvgd_33535_lvgd_1164210000_building_446977,0.019046009158036482,0.016531935949175666,0.0016215231464245753,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091570563274612 47.55930877607876, 10.091346899999996 47.55938879624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_151_LVCableDist_mvgd_33535_lvgd_1164210000_172,BranchTee_mvgd_33535_lvgd_1164210000_151,BranchTee_mvgd_33535_lvgd_1164210000_172,0.010014868870950048,0.0010014868870950049,0.0008778076133588057,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.092700699999995 47.55874199624437, 10.092592599999994 47.558794496244325)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_151_LVCableDist_mvgd_33535_lvgd_1164210000_building_446961,BranchTee_mvgd_33535_lvgd_1164210000_151,BranchTee_mvgd_33535_lvgd_1164210000_building_446961,0.03401215423958932,0.02952254987996353,0.0028956982484693184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092622522969085 47.55909994182828, 10.092592599999994 47.558794496244325)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_151_LVStation_mvgd_33535_lvgd_1164210000,BusBar_mvgd_33535_lvgd_1164210000_LV,BranchTee_mvgd_33535_lvgd_1164210000_151,0.508871558319599,0.0508871558319599,0.04460281346373022,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.092592599999994 47.558794496244325, 10.092308200000005 47.55887019624437, 10.092105899999996 47.55888569624435, 10.091827700000003 47.55886059624441, 10.091186900000006 47.558786896244385, 10.090685599999995 47.55873149624438, 10.090358000000002 47.55870619624437, 10.089914300000006 47.558689296244374, 10.089616400000002 47.558707296244364, 10.089414000000003 47.55870669624436, 10.089151400000004 47.55867089624441, 10.089003600000003 47.558634896244364, 10.088885500000002 47.55858509624437, 10.088892600000003 47.558502796244376, 10.088954300000003 47.558419696244314, 10.089061099999995 47.55835499624432, 10.089231600000005 47.55829439624434, 10.089457 47.558256996244324, 10.089427199999998 47.55800149624434, 10.089418199999997 47.55797189624432, 10.089403500000007 47.55790049624435, 10.0894054 47.55787189624426, 10.089409999999996 47.55777339624429, 10.089326300000003 47.55772489624426, 10.089040500000001 47.557704996244226, 10.088857499999996 47.55767619624423, 10.088716800000002 47.557649096244305, 10.0886214 47.55760619624425, 10.088587499999997 47.55754509624424, 10.088599399999998 47.55735189624423, 10.088636700000006 47.55721959624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_152_LVCableDist_mvgd_33535_lvgd_1164210000_161,BranchTee_mvgd_33535_lvgd_1164210000_152,BranchTee_mvgd_33535_lvgd_1164210000_161,0.05200721389703143,0.005200721389703143,0.0045584549230411765,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.092435800000002 47.559557096244426, 10.092142100000002 47.559537396244444, 10.091761599999998 47.559464396244415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_152_LVCableDist_mvgd_33535_lvgd_1164210000_building_446986,BranchTee_mvgd_33535_lvgd_1164210000_152,BranchTee_mvgd_33535_lvgd_1164210000_building_446986,0.01829333157152986,0.01587861180408792,0.001557442313627092,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091978600577134 47.55939040001117, 10.091761599999998 47.559464396244415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_153_LVCableDist_mvgd_33535_lvgd_1164210000_154,BranchTee_mvgd_33535_lvgd_1164210000_153,BranchTee_mvgd_33535_lvgd_1164210000_154,0.03504222097141103,0.003504222097141103,0.0030714659127422167,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095320100000002 47.55913569624437, 10.095231399999998 47.55920969624439, 10.095149499999993 47.55931969624442, 10.095043999999996 47.55938499624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_154_LVCableDist_mvgd_33535_lvgd_1164210000_155,BranchTee_mvgd_33535_lvgd_1164210000_154,BranchTee_mvgd_33535_lvgd_1164210000_155,0.029476254509997475,0.0029476254509997477,0.0025836065310082352,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.095043999999996 47.55938499624445, 10.094946899999998 47.55943959624442, 10.094711000000002 47.55952179624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_154_LVCableDist_mvgd_33535_lvgd_1164210000_building_447043,BranchTee_mvgd_33535_lvgd_1164210000_154,BranchTee_mvgd_33535_lvgd_1164210000_building_447043,0.015127394224362708,0.01313057818674683,0.0012879033962631145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094901200010568 47.55928924628581, 10.095043999999996 47.55938499624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_155_LVCableDist_mvgd_33535_lvgd_1164210000_156,BranchTee_mvgd_33535_lvgd_1164210000_155,BranchTee_mvgd_33535_lvgd_1164210000_156,0.027084712890741006,0.0027084712890741006,0.002373986867675726,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.094711000000002 47.55952179624442, 10.094382800000004 47.55962149624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_155_LVCableDist_mvgd_33535_lvgd_1164210000_building_447040,BranchTee_mvgd_33535_lvgd_1164210000_155,BranchTee_mvgd_33535_lvgd_1164210000_building_447040,0.03195374215471566,0.02773584819029319,0.0027204508875756403,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094620722137764 47.55924079096983, 10.094711000000002 47.55952179624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_156_LVCableDist_mvgd_33535_lvgd_1164210000_157,BranchTee_mvgd_33535_lvgd_1164210000_156,BranchTee_mvgd_33535_lvgd_1164210000_157,0.03430694263079947,0.003430694263079947,0.0030070184463156864,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.094382800000004 47.55962149624447, 10.0942393 47.55966039624444, 10.094137100000001 47.55968309624444, 10.093943700000002 47.55968629624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_156_LVCableDist_mvgd_33535_lvgd_1164210000_building_447039,BranchTee_mvgd_33535_lvgd_1164210000_156,BranchTee_mvgd_33535_lvgd_1164210000_building_447039,0.015572949159104607,0.013517319870102799,0.0013258366784374975,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094267845071013 47.55950499101401, 10.094382800000004 47.55962149624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_157_LVCableDist_mvgd_33535_lvgd_1164210000_158,BranchTee_mvgd_33535_lvgd_1164210000_157,BranchTee_mvgd_33535_lvgd_1164210000_158,0.02494388933772255,0.0024943889337722554,0.002186342751920152,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.093943700000002 47.55968629624443, 10.093614900000002 47.559659196244475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_157_LVCableDist_mvgd_33535_lvgd_1164210000_building_447031,BranchTee_mvgd_33535_lvgd_1164210000_157,BranchTee_mvgd_33535_lvgd_1164210000_building_447031,0.0193140300214335,0.016764578058604276,0.0016443416817994564,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093850463824642 47.55952436091712, 10.093943700000002 47.55968629624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_157_LVCableDist_mvgd_33535_lvgd_1164210000_building_447034,BranchTee_mvgd_33535_lvgd_1164210000_157,BranchTee_mvgd_33535_lvgd_1164210000_building_447034,0.012919107936021152,0.01121378568846636,0.0010998961711921904,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093850668350866 47.559783991460726, 10.093943700000002 47.55968629624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_158_LVCableDist_mvgd_33535_lvgd_1164210000_159,BranchTee_mvgd_33535_lvgd_1164210000_158,BranchTee_mvgd_33535_lvgd_1164210000_159,0.03194929706789707,0.0031949297067897075,0.002800369787068588,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.093614900000002 47.559659196244475, 10.093222199999998 47.55955039624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_158_LVCableDist_mvgd_33535_lvgd_1164210000_building_447009,BranchTee_mvgd_33535_lvgd_1164210000_158,BranchTee_mvgd_33535_lvgd_1164210000_building_447009,0.02134071416070723,0.018523739891493876,0.0018168878154831765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093527849986895 47.55947641295612, 10.093614900000002 47.559659196244475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_158_LVCableDist_mvgd_33535_lvgd_1164210000_building_447010,BranchTee_mvgd_33535_lvgd_1164210000_158,BranchTee_mvgd_33535_lvgd_1164210000_building_447010,0.018950616525012943,0.016449135143711234,0.001613401688477004,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093585599999999 47.55948979627804, 10.093614900000002 47.559659196244475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_158_LVCableDist_mvgd_33535_lvgd_1164210000_building_447221,BranchTee_mvgd_33535_lvgd_1164210000_158,BranchTee_mvgd_33535_lvgd_1164210000_building_447221,0.033161011301912416,0.028783757810059978,0.0028232343552249657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093540020705785 47.559953309529206, 10.093614900000002 47.559659196244475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_159_LVCableDist_mvgd_33535_lvgd_1164210000_160,BranchTee_mvgd_33535_lvgd_1164210000_159,BranchTee_mvgd_33535_lvgd_1164210000_160,0.01616348954947933,0.001616348954947933,0.0014167368906980486,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.093222199999998 47.55955039624441, 10.093010200000005 47.55952769624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_159_LVCableDist_mvgd_33535_lvgd_1164210000_building_446994,BranchTee_mvgd_33535_lvgd_1164210000_159,BranchTee_mvgd_33535_lvgd_1164210000_building_446994,0.015240038105859369,0.013228353075885933,0.00129749357652788,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093238850000136 47.55941369627783, 10.093222199999998 47.55955039624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_159_LVCableDist_mvgd_33535_lvgd_1164210000_building_446995,BranchTee_mvgd_33535_lvgd_1164210000_159,BranchTee_mvgd_33535_lvgd_1164210000_building_446995,0.014970948571973907,0.012994783360473352,0.001274584057581662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093300450500935 47.55942652918803, 10.093222199999998 47.55955039624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_159_LVCableDist_mvgd_33535_lvgd_1164210000_building_446996,BranchTee_mvgd_33535_lvgd_1164210000_159,BranchTee_mvgd_33535_lvgd_1164210000_building_446996,0.016224346624773713,0.014082732870303582,0.0013812948092900216,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09336210000015 47.559439346277884, 10.093222199999998 47.55955039624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_159_LVCableDist_mvgd_33535_lvgd_1164210000_building_447002,BranchTee_mvgd_33535_lvgd_1164210000_159,BranchTee_mvgd_33535_lvgd_1164210000_building_447002,0.021038963801368195,0.01826182057958759,0.0017911976465847898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093470099999996 47.55946307961141, 10.093222199999998 47.55955039624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_15_LVCableDist_mvgd_33535_lvgd_1164210000_25,BranchTee_mvgd_33535_lvgd_1164210000_15,BranchTee_mvgd_33535_lvgd_1164210000_25,0.0147727487870519,0.00147727487870519,0.001294837857850161,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.097160099999996 47.55825319624433, 10.097087799999995 47.558376796244296)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_15_LVCableDist_mvgd_33535_lvgd_1164210000_building_447074,BranchTee_mvgd_33535_lvgd_1164210000_15,BranchTee_mvgd_33535_lvgd_1164210000_building_447074,0.01973984010904615,0.01713418121465206,0.001680593943746608,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096831144158704 47.55841287012378, 10.097087799999995 47.558376796244296)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_160_LVCableDist_mvgd_33535_lvgd_1164210000_161,BranchTee_mvgd_33535_lvgd_1164210000_160,BranchTee_mvgd_33535_lvgd_1164210000_161,0.04338025516519591,0.0043380255165195915,0.0038022982371654617,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.093010200000005 47.55952769624442, 10.092435800000002 47.559557096244426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_160_LVCableDist_mvgd_33535_lvgd_1164210000_building_446990,BranchTee_mvgd_33535_lvgd_1164210000_160,BranchTee_mvgd_33535_lvgd_1164210000_building_446990,0.014950733718028212,0.012977236867248488,0.001272863022308469,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092972617374208 47.559395569571436, 10.093010200000005 47.55952769624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_160_LVCableDist_mvgd_33535_lvgd_1164210000_building_447216,BranchTee_mvgd_33535_lvgd_1164210000_160,BranchTee_mvgd_33535_lvgd_1164210000_building_447216,0.038477960646907665,0.033398869841515855,0.0032759043271722863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092982399997963 47.559873496288795, 10.093010200000005 47.55952769624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_161_LVCableDist_mvgd_33535_lvgd_1164210000_building_446984,BranchTee_mvgd_33535_lvgd_1164210000_161,BranchTee_mvgd_33535_lvgd_1164210000_building_446984,0.015386784966482596,0.013355729350906892,0.001309987187614132,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092338924656149 47.55943516955295, 10.092435800000002 47.559557096244426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_161_LVCableDist_mvgd_33535_lvgd_1164210000_building_446985,BranchTee_mvgd_33535_lvgd_1164210000_161,BranchTee_mvgd_33535_lvgd_1164210000_building_446985,0.022604539530177055,0.019620740312193685,0.001924486319328755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092663573825625 47.559424591137166, 10.092435800000002 47.559557096244426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_162_LVCableDist_mvgd_33535_lvgd_1164210000_163,BranchTee_mvgd_33535_lvgd_1164210000_162,BranchTee_mvgd_33535_lvgd_1164210000_163,0.041543355010896905,0.004154335501089691,0.00364129313952501,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.090631200000004 47.55930709624441, 10.090320300000004 47.55928419624443, 10.090082199999996 47.5592708962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_162_LVCableDist_mvgd_33535_lvgd_1164210000_building_446933,BranchTee_mvgd_33535_lvgd_1164210000_162,BranchTee_mvgd_33535_lvgd_1164210000_building_446933,0.01708309438129343,0.014828125922962699,0.0014544061552199034,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090527014572872 47.559170522412686, 10.090631200000004 47.55930709624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_162_LVCableDist_mvgd_33535_lvgd_1164210000_building_446934,BranchTee_mvgd_33535_lvgd_1164210000_162,BranchTee_mvgd_33535_lvgd_1164210000_building_446934,0.016833154300466533,0.01461117793280495,0.0014331269663401145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090754610423309 47.55918077524097, 10.090631200000004 47.55930709624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_163_LVCableDist_mvgd_33535_lvgd_1164210000_164,BranchTee_mvgd_33535_lvgd_1164210000_163,BranchTee_mvgd_33535_lvgd_1164210000_164,0.027206197412729168,0.002720619741272917,0.0023846350388780266,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.090082199999996 47.5592708962444, 10.0897216 47.55925609624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_163_LVCableDist_mvgd_33535_lvgd_1164210000_building_446923,BranchTee_mvgd_33535_lvgd_1164210000_163,BranchTee_mvgd_33535_lvgd_1164210000_building_446923,0.01783106954496699,0.015477368365031347,0.0015180866370879706,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089964286100468 47.55913173106569, 10.090082199999996 47.5592708962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_163_LVCableDist_mvgd_33535_lvgd_1164210000_building_446925,BranchTee_mvgd_33535_lvgd_1164210000_163,BranchTee_mvgd_33535_lvgd_1164210000_building_446925,0.01533304573264286,0.013309083695934002,0.0013054119818154155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090101200000397 47.55913349628499, 10.090082199999996 47.5592708962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_164_LVCableDist_mvgd_33535_lvgd_1164210000_165,BranchTee_mvgd_33535_lvgd_1164210000_164,BranchTee_mvgd_33535_lvgd_1164210000_165,0.05964687840380306,0.005964687840380307,0.005228074840582344,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0897216 47.55925609624437, 10.088930099999995 47.55923649624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_164_LVCableDist_mvgd_33535_lvgd_1164210000_building_446920,BranchTee_mvgd_33535_lvgd_1164210000_164,BranchTee_mvgd_33535_lvgd_1164210000_building_446920,0.021532204638946985,0.01868995362660598,0.0018331907711422446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08951860911973 47.55911962231979, 10.0897216 47.55925609624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_164_LVCableDist_mvgd_33535_lvgd_1164210000_building_446931,BranchTee_mvgd_33535_lvgd_1164210000_164,BranchTee_mvgd_33535_lvgd_1164210000_building_446931,0.015375277614661639,0.013345740969526303,0.0013090074843504769,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08965560000118 47.5591251462813, 10.0897216 47.55925609624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_165_LVCableDist_mvgd_33535_lvgd_1164210000_building_446909,BranchTee_mvgd_33535_lvgd_1164210000_165,BranchTee_mvgd_33535_lvgd_1164210000_building_446909,0.017814640746587007,0.015463108168037523,0.0015166879358366986,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08904750000153 47.55909729628006, 10.088930099999995 47.55923649624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_165_LVCableDist_mvgd_33535_lvgd_1164210000_building_446910,BranchTee_mvgd_33535_lvgd_1164210000_165,BranchTee_mvgd_33535_lvgd_1164210000_building_446910,0.02337432443057712,0.020288913605740942,0.0019900236202619616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089172641619665 47.559105219708194, 10.088930099999995 47.55923649624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_166_LVCableDist_mvgd_33535_lvgd_1164210000_168,BranchTee_mvgd_33535_lvgd_1164210000_166,BranchTee_mvgd_33535_lvgd_1164210000_168,0.053994506715791174,0.005399450671579118,0.004732642003147707,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.094895400000004 47.55881229624437, 10.094729799999996 47.55878239624432, 10.094548000000003 47.5588121962444, 10.094403 47.55885679624435, 10.094204399999995 47.55886829624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_166_LVCableDist_mvgd_33535_lvgd_1164210000_building_447019,BranchTee_mvgd_33535_lvgd_1164210000_166,BranchTee_mvgd_33535_lvgd_1164210000_building_447019,0.016681197674366505,0.014479279581350127,0.0014201898106121489,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094884400000494 47.55866234628509, 10.094895400000004 47.55881229624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_166_LVCableDist_mvgd_33535_lvgd_1164210000_building_447021,BranchTee_mvgd_33535_lvgd_1164210000_166,BranchTee_mvgd_33535_lvgd_1164210000_building_447021,0.018507086800557248,0.016064151342883692,0.0015756408269566387,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095009792020246 47.55866487073735, 10.094895400000004 47.55881229624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_167_LVCableDist_mvgd_33535_lvgd_1164210000_building_447052,BranchTee_mvgd_33535_lvgd_1164210000_167,BranchTee_mvgd_33535_lvgd_1164210000_building_447052,0.012928927306513066,0.011222308902053342,0.0011007321645178179,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095828099814295 47.559324596277825, 10.095909099999993 47.55922199624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_168_LVCableDist_mvgd_33535_lvgd_1164210000_169,BranchTee_mvgd_33535_lvgd_1164210000_168,BranchTee_mvgd_33535_lvgd_1164210000_169,0.016395440221570228,0.001639544022157023,0.0014370674680135125,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.094204399999995 47.55886829624438, 10.093990099999994 47.55884229624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_168_LVCableDist_mvgd_33535_lvgd_1164210000_building_447024,BranchTee_mvgd_33535_lvgd_1164210000_168,BranchTee_mvgd_33535_lvgd_1164210000_building_447024,0.03324437883799397,0.028856120831378767,0.002830332030559202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094034449999992 47.55914444626868, 10.094204399999995 47.55886829624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_168_LVCableDist_mvgd_33535_lvgd_1164210000_building_447026,BranchTee_mvgd_33535_lvgd_1164210000_168,BranchTee_mvgd_33535_lvgd_1164210000_building_447026,0.03637349641697478,0.03157219488993411,0.0030967362173943457,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094327189506881 47.559184908742715, 10.094204399999995 47.55886829624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_168_LVCableDist_mvgd_33535_lvgd_1164210000_building_447028,BranchTee_mvgd_33535_lvgd_1164210000_168,BranchTee_mvgd_33535_lvgd_1164210000_building_447028,0.015824780364036284,0.013735909355983494,0.0013472768722544999,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094221600001978 47.55872634626591, 10.094204399999995 47.55886829624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_169_LVCableDist_mvgd_33535_lvgd_1164210000_building_447015,BranchTee_mvgd_33535_lvgd_1164210000_169,BranchTee_mvgd_33535_lvgd_1164210000_building_447015,0.030610465147181805,0.026569883747753806,0.00260608809683546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093722123347218 47.55904945057447, 10.093990099999994 47.55884229624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_16_LVCableDist_mvgd_33535_lvgd_1164210000_17,BranchTee_mvgd_33535_lvgd_1164210000_16,BranchTee_mvgd_33535_lvgd_1164210000_17,0.019015793626384375,0.0019015793626384375,0.0016667425838913226,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.101248999999996 47.558506496244355, 10.101501499999998 47.55850629624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_16_LVCableDist_mvgd_33535_lvgd_1164210000_19,BranchTee_mvgd_33535_lvgd_1164210000_16,BranchTee_mvgd_33535_lvgd_1164210000_19,0.03373029613416983,0.003373029613416983,0.0029564751300246005,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.101501499999998 47.55850629624433, 10.1017099 47.558522996244356, 10.101940499999994 47.558562996244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_16_LVCableDist_mvgd_33535_lvgd_1164210000_building_447121,BranchTee_mvgd_33535_lvgd_1164210000_16,BranchTee_mvgd_33535_lvgd_1164210000_building_447121,0.013672297717529227,0.011867554418815368,0.001164020610817931,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101460862586155 47.558386365196895, 10.101501499999998 47.55850629624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_16_LVCableDist_mvgd_33535_lvgd_1164210000_building_447129,BranchTee_mvgd_33535_lvgd_1164210000_16,BranchTee_mvgd_33535_lvgd_1164210000_building_447129,0.014864953368026478,0.012902779523446982,0.0012655599268472594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101603437416264 47.558391727329536, 10.101501499999998 47.55850629624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_170_LVCableDist_mvgd_33535_lvgd_1164210000_171,BranchTee_mvgd_33535_lvgd_1164210000_170,BranchTee_mvgd_33535_lvgd_1164210000_171,0.029385089334288683,0.0029385089334288683,0.002575615863697303,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.093327899999998 47.558712496244354, 10.092940000000006 47.55868389624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_170_LVCableDist_mvgd_33535_lvgd_1164210000_building_446946,BranchTee_mvgd_33535_lvgd_1164210000_170,BranchTee_mvgd_33535_lvgd_1164210000_building_446946,0.03601473834997214,0.031260792887775814,0.003066192574115362,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09338344998497 47.55839054628663, 10.093327899999998 47.558712496244354)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_170_LVCableDist_mvgd_33535_lvgd_1164210000_building_446973,BranchTee_mvgd_33535_lvgd_1164210000_170,BranchTee_mvgd_33535_lvgd_1164210000_building_446973,0.01862299849750062,0.016164762695830538,0.0015855092197509222,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093531076074822 47.5586169477716, 10.093327899999998 47.558712496244354)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_170_LVCableDist_mvgd_33535_lvgd_1164210000_building_446982,BranchTee_mvgd_33535_lvgd_1164210000_170,BranchTee_mvgd_33535_lvgd_1164210000_building_446982,0.03584544235130806,0.031113843960935392,0.0030517791934352926,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093367574746955 47.55903399159678, 10.093327899999998 47.558712496244354)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_171_LVCableDist_mvgd_33535_lvgd_1164210000_172,BranchTee_mvgd_33535_lvgd_1164210000_171,BranchTee_mvgd_33535_lvgd_1164210000_172,0.019594968579507998,0.0019594968579508,0.001717507520494074,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.092940000000006 47.55868389624434, 10.092796399999997 47.558698896244394, 10.092700699999995 47.55874199624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_171_LVCableDist_mvgd_33535_lvgd_1164210000_building_446964,BranchTee_mvgd_33535_lvgd_1164210000_171,BranchTee_mvgd_33535_lvgd_1164210000_building_446964,0.037275288835823754,0.03235495070949502,0.003173512263667368,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093000750000007 47.55901684628886, 10.092940000000006 47.55868389624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_171_LVCableDist_mvgd_33535_lvgd_1164210000_building_446966,BranchTee_mvgd_33535_lvgd_1164210000_171,BranchTee_mvgd_33535_lvgd_1164210000_building_446966,0.016835219381698432,0.014612970423314239,0.0014333027814932516,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093129806701024 47.55860384598684, 10.092940000000006 47.55868389624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_172_LVCableDist_mvgd_33535_lvgd_1164210000_building_446991,BranchTee_mvgd_33535_lvgd_1164210000_172,BranchTee_mvgd_33535_lvgd_1164210000_building_446991,0.013690736713800946,0.01188355946757922,0.0011655904546105772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092568949987896 47.55865709627189, 10.092700699999995 47.55874199624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_173_LVCableDist_mvgd_33535_lvgd_1164210000_177,BranchTee_mvgd_33535_lvgd_1164210000_173,BranchTee_mvgd_33535_lvgd_1164210000_177,0.02529912498681336,0.021959640488553995,0.002153895674942299,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0862641 47.557044496244224, 10.086598900000006 47.55706309624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_173_LVCableDist_mvgd_33535_lvgd_1164210000_181,BranchTee_mvgd_33535_lvgd_1164210000_173,BranchTee_mvgd_33535_lvgd_1164210000_181,0.042152656933222614,0.03658850621803723,0.0035887575362040522,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085715199999997 47.55710829624423, 10.085827200000002 47.55708689624424, 10.086029800000006 47.5570528962442, 10.0862641 47.557044496244224)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_173_LVCableDist_mvgd_33535_lvgd_1164210000_building_446847,BranchTee_mvgd_33535_lvgd_1164210000_173,BranchTee_mvgd_33535_lvgd_1164210000_building_446847,0.018155387055867802,0.01575887596449325,0.0015456981092002043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086366843794098 47.556896674273474, 10.0862641 47.557044496244224)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_174_LVCableDist_mvgd_33535_lvgd_1164210000_180,BranchTee_mvgd_33535_lvgd_1164210000_174,BranchTee_mvgd_33535_lvgd_1164210000_180,0.02144726142699489,0.018616222918631565,0.001825958947237873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084748599999996 47.557142096244185, 10.085029800000003 47.55717259624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_174_LVCableDist_mvgd_33535_lvgd_1164210000_building_446685,BranchTee_mvgd_33535_lvgd_1164210000_174,BranchTee_mvgd_33535_lvgd_1164210000_building_446685,0.0160278925471325,0.01391221073091101,0.0013645692668700076,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084614791989921 47.55725427501334, 10.084748599999996 47.557142096244185)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_175_LVCableDist_mvgd_33535_lvgd_1164210000_180,BranchTee_mvgd_33535_lvgd_1164210000_175,BranchTee_mvgd_33535_lvgd_1164210000_180,0.02459754011393077,0.021350664818891908,0.00209416473072607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085029800000003 47.55717259624419, 10.0852206 47.55718279624423, 10.085355299999996 47.55717479624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_175_LVCableDist_mvgd_33535_lvgd_1164210000_181,BranchTee_mvgd_33535_lvgd_1164210000_175,BranchTee_mvgd_33535_lvgd_1164210000_181,0.028093567176442062,0.02438521630915171,0.0023918065493007913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085355299999996 47.55717479624423, 10.085715199999997 47.55710829624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_175_LVCableDist_mvgd_33535_lvgd_1164210000_building_446875,BranchTee_mvgd_33535_lvgd_1164210000_175,BranchTee_mvgd_33535_lvgd_1164210000_building_446875,0.023963948286345436,0.020800707112547837,0.0020402225213482297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085565197991391 47.55733689262764, 10.085355299999996 47.55717479624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_176_LVCableDist_mvgd_33535_lvgd_1164210000_177,BranchTee_mvgd_33535_lvgd_1164210000_176,BranchTee_mvgd_33535_lvgd_1164210000_177,0.03097039590344818,0.026882303644193018,0.00263673157954899,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086598900000006 47.55706309624426, 10.086606099999996 47.55678439624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_176_LVCableDist_mvgd_33535_lvgd_1164210000_building_446845,BranchTee_mvgd_33535_lvgd_1164210000_176,BranchTee_mvgd_33535_lvgd_1164210000_building_446845,0.022654657236990658,0.01966424248170789,0.0019287531985982993,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086347966094113 47.55667971559361, 10.086606099999996 47.55678439624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_176_LVCableDist_mvgd_33535_lvgd_1164210000_building_446852,BranchTee_mvgd_33535_lvgd_1164210000_176,BranchTee_mvgd_33535_lvgd_1164210000_building_446852,0.01956126175728568,0.01697917520532397,0.0016653902898773265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086844188115986 47.55671402647332, 10.086606099999996 47.55678439624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_176_LVCableDist_mvgd_33535_lvgd_1164210000_building_446854,BranchTee_mvgd_33535_lvgd_1164210000_176,BranchTee_mvgd_33535_lvgd_1164210000_building_446854,0.042275236133749935,0.03669490496409494,0.003599193581323846,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087160665472737 47.556725490070995, 10.086606099999996 47.55678439624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_177_LVCableDist_mvgd_33535_lvgd_1164210000_179,BranchTee_mvgd_33535_lvgd_1164210000_177,BranchTee_mvgd_33535_lvgd_1164210000_179,0.0211438255354063,0.01835284056473267,0.001800125276909133,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086598900000006 47.55706309624426, 10.086877800000002 47.557084896244255)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_177_LVCableDist_mvgd_33535_lvgd_1164210000_building_446879,BranchTee_mvgd_33535_lvgd_1164210000_177,BranchTee_mvgd_33535_lvgd_1164210000_building_446879,0.031543796255457716,0.027380015149737296,0.0026855492575851864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086687322529885 47.557340598837314, 10.086598900000006 47.55706309624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_178_LVCableDist_mvgd_33535_lvgd_1164210000_179,BranchTee_mvgd_33535_lvgd_1164210000_178,BranchTee_mvgd_33535_lvgd_1164210000_179,0.03876651895804966,0.033649338455587104,0.0033004713625405593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086877800000002 47.557084896244255, 10.0873888 47.5571268962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_178_LVCableDist_mvgd_33535_lvgd_1164210000_182,BranchTee_mvgd_33535_lvgd_1164210000_178,BranchTee_mvgd_33535_lvgd_1164210000_182,0.03627943586751531,0.03149055033300329,0.0030887281692595168,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0873888 47.5571268962442, 10.087867 47.55716629624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_178_LVCableDist_mvgd_33535_lvgd_1164210000_building_446841,BranchTee_mvgd_33535_lvgd_1164210000_178,BranchTee_mvgd_33535_lvgd_1164210000_building_446841,0.03969346036786518,0.034453923599306976,0.003379388522504282,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087540238895905 47.55678470501278, 10.0873888 47.5571268962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_178_LVCableDist_mvgd_33535_lvgd_1164210000_building_446857,BranchTee_mvgd_33535_lvgd_1164210000_178,BranchTee_mvgd_33535_lvgd_1164210000_building_446857,0.022880297167582497,0.019860097941461607,0.0019479635416773332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087180432764647 47.556977038647894, 10.0873888 47.5571268962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_178_LVCableDist_mvgd_33535_lvgd_1164210000_building_446883,BranchTee_mvgd_33535_lvgd_1164210000_178,BranchTee_mvgd_33535_lvgd_1164210000_building_446883,0.02619101110990012,0.022733797643393304,0.002229828327318969,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087585124917183 47.557321463448446, 10.0873888 47.5571268962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_179_LVCableDist_mvgd_33535_lvgd_1164210000_building_446848,BranchTee_mvgd_33535_lvgd_1164210000_179,BranchTee_mvgd_33535_lvgd_1164210000_building_446848,0.01705538621407707,0.014804075233818898,0.0014520471605290197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086780326501417 47.55694634176253, 10.086877800000002 47.557084896244255)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_17_LVCableDist_mvgd_33535_lvgd_1164210000_21,BranchTee_mvgd_33535_lvgd_1164210000_17,BranchTee_mvgd_33535_lvgd_1164210000_21,0.021570791013710074,0.0021570791013710076,0.0018906892164041052,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.100968199999995 47.55854479624434, 10.101248999999996 47.558506496244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_17_LVCableDist_mvgd_33535_lvgd_1164210000_building_447112,BranchTee_mvgd_33535_lvgd_1164210000_17,BranchTee_mvgd_33535_lvgd_1164210000_building_447112,0.02317214631692415,0.020113423003090162,0.0019728107496669468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101214347829096 47.55829926811656, 10.101248999999996 47.558506496244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_17_LVCableDist_mvgd_33535_lvgd_1164210000_building_447167,BranchTee_mvgd_33535_lvgd_1164210000_17,BranchTee_mvgd_33535_lvgd_1164210000_building_447167,0.02242374704940107,0.01946381243888013,0.0019090941608011992,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10131295151154 47.55870360456783, 10.101248999999996 47.558506496244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_17_LVCableDist_mvgd_33535_lvgd_1164210000_building_447178,BranchTee_mvgd_33535_lvgd_1164210000_17,BranchTee_mvgd_33535_lvgd_1164210000_building_447178,0.04467472360212237,0.03877766008664222,0.0038034791320256775,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101245458804181 47.55890857429782, 10.101248999999996 47.558506496244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_180_LVCableDist_mvgd_33535_lvgd_1164210000_building_446663,BranchTee_mvgd_33535_lvgd_1164210000_180,BranchTee_mvgd_33535_lvgd_1164210000_building_446663,0.01891189792612183,0.016415527399873748,0.001610105296892913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084975760318727 47.557006372997826, 10.085029800000003 47.55717259624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_180_LVCableDist_mvgd_33535_lvgd_1164210000_building_446687,BranchTee_mvgd_33535_lvgd_1164210000_180,BranchTee_mvgd_33535_lvgd_1164210000_building_446687,0.012767656052225337,0.011082325453331593,0.0010870019877909976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085004507059761 47.55728622330785, 10.085029800000003 47.55717259624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_181_LVCableDist_mvgd_33535_lvgd_1164210000_building_446839,BranchTee_mvgd_33535_lvgd_1164210000_181,BranchTee_mvgd_33535_lvgd_1164210000_building_446839,0.011444689509487125,0.009933990494234825,0.0009743683723603272,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0856417433635 47.55701812601092, 10.085715199999997 47.55710829624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_182_LVCableDist_mvgd_33535_lvgd_1164210000_building_446891,BranchTee_mvgd_33535_lvgd_1164210000_182,BranchTee_mvgd_33535_lvgd_1164210000_building_446891,0.011054834486859766,0.009595596334594277,0.0009411772225664399,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087930200769016 47.55707649284789, 10.087867 47.55716629624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_182_LVCableDist_mvgd_33535_lvgd_1164210000_building_446895,BranchTee_mvgd_33535_lvgd_1164210000_182,BranchTee_mvgd_33535_lvgd_1164210000_building_446895,0.026489044048491776,0.022992490234090862,0.0022552020055690075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088016304809685 47.55738215570128, 10.087867 47.55716629624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_182_LVCableDist_mvgd_33535_lvgd_1164210000_building_446898,BranchTee_mvgd_33535_lvgd_1164210000_182,BranchTee_mvgd_33535_lvgd_1164210000_building_446898,0.03971399111629519,0.03447174428894423,0.0033811364521370174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087882208622089 47.55752358457879, 10.087867 47.55716629624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_182_LVStation_mvgd_33535_lvgd_1164210000,BusBar_mvgd_33535_lvgd_1164210000_LV,BranchTee_mvgd_33535_lvgd_1164210000_182,0.058277380150739355,0.05058476597084176,0.0049615706914398075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087867 47.55716629624423, 10.088342000000006 47.557203396244255, 10.088636700000006 47.55721959624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_18_LVCableDist_mvgd_33535_lvgd_1164210000_20,BranchTee_mvgd_33535_lvgd_1164210000_18,BranchTee_mvgd_33535_lvgd_1164210000_20,0.03411541824266168,0.003411541824266168,0.0029902312503755674,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.099936299999996 47.55872539624437, 10.100137199999995 47.558694696244345, 10.100366999999997 47.558633196244365)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_18_LVCableDist_mvgd_33535_lvgd_1164210000_21,BranchTee_mvgd_33535_lvgd_1164210000_18,BranchTee_mvgd_33535_lvgd_1164210000_21,0.046329032731547294,0.00463290327315473,0.004060759873678067,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.100366999999997 47.558633196244365, 10.100968199999995 47.55854479624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_18_LVCableDist_mvgd_33535_lvgd_1164210000_building_447104,BranchTee_mvgd_33535_lvgd_1164210000_18,BranchTee_mvgd_33535_lvgd_1164210000_building_447104,0.04380845994511457,0.038025743232359445,0.0037297279036665413,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10029768110778 47.55824171904739, 10.100366999999997 47.558633196244365)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_18_LVCableDist_mvgd_33535_lvgd_1164210000_building_447120,BranchTee_mvgd_33535_lvgd_1164210000_18,BranchTee_mvgd_33535_lvgd_1164210000_building_447120,0.025646006587998253,0.022260733718382483,0.0021834281896398874,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10058668456646 47.558456821693746, 10.100366999999997 47.558633196244365)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_18_LVCableDist_mvgd_33535_lvgd_1164210000_building_447140,BranchTee_mvgd_33535_lvgd_1164210000_18,BranchTee_mvgd_33535_lvgd_1164210000_building_447140,0.017369854970346394,0.01507703411426067,0.0014788201376334067,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100509208504807 47.558756274181285, 10.100366999999997 47.558633196244365)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_18_LVCableDist_mvgd_33535_lvgd_1164210000_building_447147,BranchTee_mvgd_33535_lvgd_1164210000_18,BranchTee_mvgd_33535_lvgd_1164210000_building_447147,0.025247686653398112,0.02191499201514956,0.002149516361273265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100497376565286 47.55884254177232, 10.100366999999997 47.558633196244365)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_18_LVCableDist_mvgd_33535_lvgd_1164210000_building_447149,BranchTee_mvgd_33535_lvgd_1164210000_18,BranchTee_mvgd_33535_lvgd_1164210000_building_447149,0.040236167606573094,0.03492499348250545,0.0034255930760144185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100489100000988 47.55898574625547, 10.100366999999997 47.558633196244365)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_18_LVCableDist_mvgd_33535_lvgd_1164210000_building_447153,BranchTee_mvgd_33535_lvgd_1164210000_18,BranchTee_mvgd_33535_lvgd_1164210000_building_447153,0.04340680555149366,0.0376771072186965,0.0036955321889257124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100590150000478 47.55899339625534, 10.100366999999997 47.558633196244365)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_19_LVCableDist_mvgd_33535_lvgd_1164210000_22,BranchTee_mvgd_33535_lvgd_1164210000_19,BranchTee_mvgd_33535_lvgd_1164210000_22,0.014998423025045745,0.0014998423025045747,0.0013146183029865486,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.101940499999994 47.558562996244355, 10.102131600000005 47.55860099624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_19_LVCableDist_mvgd_33535_lvgd_1164210000_building_447131,BranchTee_mvgd_33535_lvgd_1164210000_19,BranchTee_mvgd_33535_lvgd_1164210000_building_447131,0.017822814715014117,0.015470203172632252,0.0015173838443019695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101890161292467 47.55840625801535, 10.101940499999994 47.558562996244355)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_1_LVCableDist_mvgd_33535_lvgd_1164210000_15,BranchTee_mvgd_33535_lvgd_1164210000_1,BranchTee_mvgd_33535_lvgd_1164210000_15,0.038758899163930195,0.0038758899163930196,0.0033972343732021964,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.097087799999995 47.558376796244296, 10.097069900000001 47.55854049624433, 10.097026400000004 47.55863929624433, 10.096959000000005 47.55870689624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_1_LVCableDist_mvgd_33535_lvgd_1164210000_2,BranchTee_mvgd_33535_lvgd_1164210000_1,BranchTee_mvgd_33535_lvgd_1164210000_2,0.02707103522828003,0.0027071035228280033,0.0023727880146107577,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.096959000000005 47.55870689624438, 10.096688799999999 47.55886759624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_1_LVCableDist_mvgd_33535_lvgd_1164210000_9,BranchTee_mvgd_33535_lvgd_1164210000_1,BranchTee_mvgd_33535_lvgd_1164210000_9,0.08702295372726777,0.008702295372726777,0.007627599752239205,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.096959000000005 47.55870689624438, 10.097095300000003 47.558806896244384, 10.097181799999998 47.55889029624438, 10.097235800000002 47.55893399624437, 10.097288499999996 47.55896099624437, 10.097350199999992 47.5589815962444, 10.0975122 47.55903039624442, 10.097600899999994 47.55905739624441, 10.097669000000005 47.559074096244366, 10.097725600000002 47.55908569624443, 10.0977744 47.55910879624439, 10.097804000000002 47.55913199624444, 10.097828400000003 47.55914479624439, 10.097864399999995 47.55916149624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_20_LVCableDist_mvgd_33535_lvgd_1164210000_building_447102,BranchTee_mvgd_33535_lvgd_1164210000_20,BranchTee_mvgd_33535_lvgd_1164210000_building_447102,0.03539541460975372,0.03072321988126623,0.0030134651091875894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.099931999540408 47.5584068409506, 10.099936299999996 47.55872539624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_20_LVCableDist_mvgd_33535_lvgd_1164210000_building_447134,BranchTee_mvgd_33535_lvgd_1164210000_20,BranchTee_mvgd_33535_lvgd_1164210000_building_447134,0.01810521713745058,0.015715328475307103,0.001541426784782961,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.099843950305665 47.55857494879787, 10.099936299999996 47.55872539624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_20_LVCableDist_mvgd_33535_lvgd_1164210000_building_447142,BranchTee_mvgd_33535_lvgd_1164210000_20,BranchTee_mvgd_33535_lvgd_1164210000_building_447142,0.01936871888420279,0.016812047991488024,0.0016489977363091553,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100026100004436 47.55888874629525, 10.099936299999996 47.55872539624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_21_LVCableDist_mvgd_33535_lvgd_1164210000_building_447110,BranchTee_mvgd_33535_lvgd_1164210000_21,BranchTee_mvgd_33535_lvgd_1164210000_building_447110,0.023654502913662168,0.020532108529058762,0.0020138772208605324,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10090370302813 47.5583364375631, 10.100968199999995 47.55854479624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_21_LVCableDist_mvgd_33535_lvgd_1164210000_building_447141,BranchTee_mvgd_33535_lvgd_1164210000_21,BranchTee_mvgd_33535_lvgd_1164210000_building_447141,0.02546382087025186,0.022102596515378613,0.0021679174148721927,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101019625068082 47.55877131025488, 10.100968199999995 47.55854479624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_21_LVCableDist_mvgd_33535_lvgd_1164210000_building_447145,BranchTee_mvgd_33535_lvgd_1164210000_21,BranchTee_mvgd_33535_lvgd_1164210000_building_447145,0.03468720361742995,0.030108492739929195,0.0029531700359742724,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.100746349999325 47.5588183963907, 10.100968199999995 47.55854479624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_22_LVCableDist_mvgd_33535_lvgd_1164210000_4,BranchTee_mvgd_33535_lvgd_1164210000_4,BranchTee_mvgd_33535_lvgd_1164210000_22,0.06804627175018106,0.0068046271750181065,0.005964285321423764,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.102131600000005 47.55860099624434, 10.101843600000006 47.55918149624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_22_LVCableDist_mvgd_33535_lvgd_1164210000_building_447162,BranchTee_mvgd_33535_lvgd_1164210000_22,BranchTee_mvgd_33535_lvgd_1164210000_building_447162,0.012032120138210412,0.010443880279966638,0.0010243805483227456,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102211438239825 47.55850719211438, 10.102131600000005 47.55860099624434)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_23_LVCableDist_mvgd_33535_lvgd_1164210000_24,BranchTee_mvgd_33535_lvgd_1164210000_23,BranchTee_mvgd_33535_lvgd_1164210000_24,0.019944500250453273,0.0019944500250453274,0.001748144123510992,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.096783199999999 47.55819249624427, 10.096815100000004 47.55801429624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_23_LVCableDist_mvgd_33535_lvgd_1164210000_25,BranchTee_mvgd_33535_lvgd_1164210000_23,BranchTee_mvgd_33535_lvgd_1164210000_25,0.029639086931290626,0.0029639086931290627,0.0025978788635724077,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.096783199999999 47.55819249624427, 10.096936199999993 47.558193596244294, 10.097160099999996 47.55825319624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_23_LVStation_mvgd_33535_lvgd_1164210000,BusBar_mvgd_33535_lvgd_1164210000_LV,BranchTee_mvgd_33535_lvgd_1164210000_23,0.6278303886737333,0.06278303886737334,0.055029606695543326,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.088636700000006 47.55721959624428, 10.088786199999996 47.557237896244224, 10.089367200000005 47.557309496244265, 10.089952999320053 47.55736944781641, 10.090538800000001 47.557429396244274, 10.091151 47.55748379624426, 10.091636400000004 47.55756349624425, 10.092099100000002 47.55769029624424, 10.092488900000005 47.55776789624427, 10.092942500000001 47.55781229624422, 10.093422599999997 47.557816396244306, 10.094373599999999 47.55787079624427, 10.094694800000001 47.55789699624432, 10.094851499999995 47.55791919624427, 10.094925400000003 47.55793209624427, 10.095077500000007 47.557958596244326, 10.0955113 47.558054396244295, 10.096015500000002 47.5581872962443, 10.096249499999997 47.558225496244305, 10.0965016 47.558227696244344, 10.096608500000006 47.5582210962443, 10.096783199999999 47.55819249624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_24_LVCableDist_mvgd_33535_lvgd_1164210000_building_447065,BranchTee_mvgd_33535_lvgd_1164210000_24,BranchTee_mvgd_33535_lvgd_1164210000_building_447065,0.04864685089372439,0.042225466575752775,0.0041416547724148715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096907349999942 47.55758094626226, 10.096815100000004 47.55801429624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_24_LVCableDist_mvgd_33535_lvgd_1164210000_building_447066,BranchTee_mvgd_33535_lvgd_1164210000_24,BranchTee_mvgd_33535_lvgd_1164210000_building_447066,0.009872975897806583,0.008569743079296114,0.0008405571376946549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096684645109331 47.55800551895903, 10.096815100000004 47.55801429624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_24_LVCableDist_mvgd_33535_lvgd_1164210000_building_447068,BranchTee_mvgd_33535_lvgd_1164210000_24,BranchTee_mvgd_33535_lvgd_1164210000_building_447068,0.014425034958562632,0.012520930344032365,0.0012281065224324602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097000604063584 47.55804662776962, 10.096815100000004 47.55801429624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_25_LVCableDist_mvgd_33535_lvgd_1164210000_building_447083,BranchTee_mvgd_33535_lvgd_1164210000_25,BranchTee_mvgd_33535_lvgd_1164210000_building_447083,0.01319555933362038,0.01145374550158249,0.0011234324583140214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09719713943834 47.558137115431926, 10.097160099999996 47.55825319624433)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_26_LVCableDist_mvgd_33535_lvgd_1164210000_building_447128,BranchTee_mvgd_33535_lvgd_1164210000_26,BranchTee_mvgd_33535_lvgd_1164210000_building_447128,0.01410436090095974,0.012242585262033055,0.001200805243589928,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09864796080848 47.55866446644213, 10.0987411 47.55877459624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_26_LVCableDist_mvgd_33535_lvgd_1164210000_building_447135,BranchTee_mvgd_33535_lvgd_1164210000_26,BranchTee_mvgd_33535_lvgd_1164210000_building_447135,0.02208340281780021,0.019168393645850584,0.0018801182191898293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.098927201244765 47.55862099211291, 10.0987411 47.55877459624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_26_LVCableDist_mvgd_33535_lvgd_1164210000_building_447137,BranchTee_mvgd_33535_lvgd_1164210000_26,BranchTee_mvgd_33535_lvgd_1164210000_building_447137,0.011561923411943004,0.010035749521566528,0.0009843493339780883,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.098758685022354 47.55887797146843, 10.0987411 47.55877459624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_27_LVCableDist_mvgd_33535_lvgd_1164210000_32,BranchTee_mvgd_33535_lvgd_1164210000_27,BranchTee_mvgd_33535_lvgd_1164210000_32,0.04461781910604985,0.0055772273882562316,0.0035603437231582196,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089367200000005 47.557309496244265, 10.089952999320053 47.55736944781641)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_27_LVCableDist_mvgd_33535_lvgd_1164210000_41,BranchTee_mvgd_33535_lvgd_1164210000_27,BranchTee_mvgd_33535_lvgd_1164210000_41,0.04461781910704064,0.00557722738838008,0.0035603437232372814,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089952999320053 47.55736944781641, 10.090538800000001 47.557429396244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_27_LVCableDist_mvgd_33535_lvgd_1164210000_building_446863,BranchTee_mvgd_33535_lvgd_1164210000_27,BranchTee_mvgd_33535_lvgd_1164210000_building_446863,0.0195023230320742,0.016928016391840404,0.0016603724141450319,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089914219350883 47.55719590162723, 10.089952999320053 47.55736944781641)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_28_LVCableDist_mvgd_33535_lvgd_1164210000_35,BranchTee_mvgd_33535_lvgd_1164210000_28,BranchTee_mvgd_33535_lvgd_1164210000_35,0.03436043438249936,0.00429505429781242,0.0027418408010474395,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.095077500000007 47.557958596244326, 10.0955113 47.558054396244295)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_28_LVCableDist_mvgd_33535_lvgd_1164210000_39,BranchTee_mvgd_33535_lvgd_1164210000_28,BranchTee_mvgd_33535_lvgd_1164210000_39,0.04074218287734886,0.005092772859668608,0.003251081697434753,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0955113 47.558054396244295, 10.096015500000002 47.5581872962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_28_LVCableDist_mvgd_33535_lvgd_1164210000_building_447012,BranchTee_mvgd_33535_lvgd_1164210000_28,BranchTee_mvgd_33535_lvgd_1164210000_building_447012,0.024102842719543813,0.02092126748056403,0.00205204759905726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095306128783362 47.55822089370891, 10.0955113 47.558054396244295)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_28_LVCableDist_mvgd_33535_lvgd_1164210000_building_447017,BranchTee_mvgd_33535_lvgd_1164210000_28,BranchTee_mvgd_33535_lvgd_1164210000_building_447017,0.019023684047209558,0.016512557752977896,0.001619622449871719,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095757100800997 47.55801492456287, 10.0955113 47.558054396244295)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_28_LVCableDist_mvgd_33535_lvgd_1164210000_building_447050,BranchTee_mvgd_33535_lvgd_1164210000_28,BranchTee_mvgd_33535_lvgd_1164210000_building_447050,0.04689207370061106,0.040702319972130405,0.0039922580241595765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095350764691986 47.55846217373598, 10.0955113 47.558054396244295)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_29_LVCableDist_mvgd_33535_lvgd_1164210000_31,BranchTee_mvgd_33535_lvgd_1164210000_29,BranchTee_mvgd_33535_lvgd_1164210000_31,0.03761374427109273,0.004701718033886591,0.0030014433919721807,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091151 47.55748379624426, 10.091636400000004 47.55756349624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_29_LVCableDist_mvgd_33535_lvgd_1164210000_38,BranchTee_mvgd_33535_lvgd_1164210000_29,BranchTee_mvgd_33535_lvgd_1164210000_38,0.03758725013135118,0.004698406266418898,0.00299932925358489,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.091636400000004 47.55756349624425, 10.092099100000002 47.55769029624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_29_LVCableDist_mvgd_33535_lvgd_1164210000_building_446929,BranchTee_mvgd_33535_lvgd_1164210000_29,BranchTee_mvgd_33535_lvgd_1164210000_building_446929,0.031826663090148186,0.027625543562248625,0.002709631736806977,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091326510399638 47.55775826516108, 10.091636400000004 47.55756349624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_29_LVCableDist_mvgd_33535_lvgd_1164210000_building_446938,BranchTee_mvgd_33535_lvgd_1164210000_29,BranchTee_mvgd_33535_lvgd_1164210000_building_446938,0.03721158379897241,0.03229965473750805,0.003168088597694032,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091380171053636 47.55784986605659, 10.091636400000004 47.55756349624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_29_LVCableDist_mvgd_33535_lvgd_1164210000_building_446942,BranchTee_mvgd_33535_lvgd_1164210000_29,BranchTee_mvgd_33535_lvgd_1164210000_building_446942,0.020644137791495574,0.017919111603018158,0.0017575832810499095,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091485250004746 47.557408496262035, 10.091636400000004 47.55756349624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_29_LVCableDist_mvgd_33535_lvgd_1164210000_building_446948,BranchTee_mvgd_33535_lvgd_1164210000_29,BranchTee_mvgd_33535_lvgd_1164210000_building_446948,0.02002337272104128,0.01738028752186383,0.0017047331053579174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091413639407397 47.557661884356946, 10.091636400000004 47.55756349624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_29_LVCableDist_mvgd_33535_lvgd_1164210000_building_446952,BranchTee_mvgd_33535_lvgd_1164210000_29,BranchTee_mvgd_33535_lvgd_1164210000_building_446952,0.019787600230170708,0.017175636999788173,0.0016846601048639796,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091725250001016 47.5577310962723, 10.091636400000004 47.55756349624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_2_LVCableDist_mvgd_33535_lvgd_1164210000_building_447107,BranchTee_mvgd_33535_lvgd_1164210000_2,BranchTee_mvgd_33535_lvgd_1164210000_building_447107,0.016709693387236015,0.014504013860120861,0.0014226158547040305,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09689802057323 47.55891766442041, 10.096688799999999 47.55886759624438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_30_LVCableDist_mvgd_33535_lvgd_1164210000_33,BranchTee_mvgd_33535_lvgd_1164210000_30,BranchTee_mvgd_33535_lvgd_1164210000_33,0.057379334001529815,0.007172416750191227,0.00457866735184386,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.094694800000001 47.55789699624432, 10.094822199999996 47.55782639624426, 10.094995199999996 47.55777479624427, 10.0951628 47.557757596244265, 10.095398900000001 47.55773319624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_30_LVCableDist_mvgd_33535_lvgd_1164210000_35,BranchTee_mvgd_33535_lvgd_1164210000_30,BranchTee_mvgd_33535_lvgd_1164210000_35,0.02963069179441133,0.003703836474301416,0.002364424117017493,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.094694800000001 47.55789699624432, 10.094851499999995 47.55791919624427, 10.094925400000003 47.55793209624427, 10.095077500000007 47.557958596244326)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_30_LVCableDist_mvgd_33535_lvgd_1164210000_36,BranchTee_mvgd_33535_lvgd_1164210000_30,BranchTee_mvgd_33535_lvgd_1164210000_36,0.024364507189729486,0.0030455633987161858,0.0019442012626079825,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.094373599999999 47.55787079624427, 10.094694800000001 47.55789699624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_31_LVCableDist_mvgd_33535_lvgd_1164210000_41,BranchTee_mvgd_33535_lvgd_1164210000_31,BranchTee_mvgd_33535_lvgd_1164210000_41,0.046500450119803076,0.0058125562649753845,0.003710571001118796,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.090538800000001 47.557429396244274, 10.091151 47.55748379624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_31_LVCableDist_mvgd_33535_lvgd_1164210000_building_446884,BranchTee_mvgd_33535_lvgd_1164210000_31,BranchTee_mvgd_33535_lvgd_1164210000_building_446884,0.02337356094695523,0.02028825090195714,0.0019899586194339907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090924975542368 47.557627965848106, 10.091151 47.55748379624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_31_LVCableDist_mvgd_33535_lvgd_1164210000_building_446924,BranchTee_mvgd_33535_lvgd_1164210000_31,BranchTee_mvgd_33535_lvgd_1164210000_building_446924,0.03985837898826146,0.03459707296181094,0.0033934292256263916,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091266802702263 47.557833837500716, 10.091151 47.55748379624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_31_LVCableDist_mvgd_33535_lvgd_1164210000_building_446943,BranchTee_mvgd_33535_lvgd_1164210000_31,BranchTee_mvgd_33535_lvgd_1164210000_building_446943,0.025642730076331836,0.022257889706256032,0.002183149236738913,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09103134999701 47.55769987194808, 10.091151 47.55748379624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_32_LVCableDist_mvgd_33535_lvgd_1164210000_44,BranchTee_mvgd_33535_lvgd_1164210000_32,BranchTee_mvgd_33535_lvgd_1164210000_44,0.04447374236532713,0.005559217795665892,0.003548846910230945,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088786199999996 47.557237896244224, 10.089367200000005 47.557309496244265)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_32_LVCableDist_mvgd_33535_lvgd_1164210000_building_446859,BranchTee_mvgd_33535_lvgd_1164210000_32,BranchTee_mvgd_33535_lvgd_1164210000_building_446859,0.025254366232567892,0.02192078988986893,0.002150085041679869,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089607429577192 47.55715090717404, 10.089367200000005 47.557309496244265)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_32_LVCableDist_mvgd_33535_lvgd_1164210000_building_446881,BranchTee_mvgd_33535_lvgd_1164210000_32,BranchTee_mvgd_33535_lvgd_1164210000_building_446881,0.026305240256392675,0.02283294854254884,0.0022395534725447785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089219829759749 47.55709485019887, 10.089367200000005 47.557309496244265)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_33_LVCableDist_mvgd_33535_lvgd_1164210000_building_447011,BranchTee_mvgd_33535_lvgd_1164210000_33,BranchTee_mvgd_33535_lvgd_1164210000_building_447011,0.008057162016085882,0.006993616629962546,0.0006859638990598415,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095387449996064 47.55766109627623, 10.095398900000001 47.55773319624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_34_LVCableDist_mvgd_33535_lvgd_1164210000_35,BranchTee_mvgd_33535_lvgd_1164210000_34,BranchTee_mvgd_33535_lvgd_1164210000_35,0.016221129481507293,0.0020276411851884116,0.0012943886027856162,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.094902800000002 47.5580439962443, 10.095077500000007 47.557958596244326)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_34_LVCableDist_mvgd_33535_lvgd_1164210000_building_447014,BranchTee_mvgd_33535_lvgd_1164210000_34,BranchTee_mvgd_33535_lvgd_1164210000_building_447014,0.04244629633855101,0.03684338522186228,0.003613757161505683,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095072250005824 47.5584083462908, 10.094902800000002 47.5580439962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_36_LVCableDist_mvgd_33535_lvgd_1164210000_42,BranchTee_mvgd_33535_lvgd_1164210000_36,BranchTee_mvgd_33535_lvgd_1164210000_42,0.07187557045208752,0.00898444630651094,0.005735415608263287,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.093422599999997 47.557816396244306, 10.094373599999999 47.55787079624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_36_LVCableDist_mvgd_33535_lvgd_1164210000_building_447001,BranchTee_mvgd_33535_lvgd_1164210000_36,BranchTee_mvgd_33535_lvgd_1164210000_building_447001,0.01536569841358371,0.01333742622299066,0.0013081919383668942,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.094498800035153 47.557761596300644, 10.094373599999999 47.55787079624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_37_LVCableDist_mvgd_33535_lvgd_1164210000_39,BranchTee_mvgd_33535_lvgd_1164210000_37,BranchTee_mvgd_33535_lvgd_1164210000_39,0.018126709712439182,0.0022658387140548977,0.0014464471468853839,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.096015500000002 47.5581872962443, 10.096249499999997 47.558225496244305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_37_LVCableDist_mvgd_33535_lvgd_1164210000_building_447022,BranchTee_mvgd_33535_lvgd_1164210000_37,BranchTee_mvgd_33535_lvgd_1164210000_building_447022,0.013182903516382124,0.011442760252219684,0.0011223549779653316,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09632830001056 47.55811954628322, 10.096249499999997 47.558225496244305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_37_LVCableDist_mvgd_33535_lvgd_1164210000_building_447023,BranchTee_mvgd_33535_lvgd_1164210000_37,BranchTee_mvgd_33535_lvgd_1164210000_building_447023,0.01299439517788486,0.011279135014404059,0.001106305913217383,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096287700002089 47.55833954629983, 10.096249499999997 47.558225496244305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_37_LVCableDist_mvgd_33535_lvgd_1164210000_building_447037,BranchTee_mvgd_33535_lvgd_1164210000_37,BranchTee_mvgd_33535_lvgd_1164210000_building_447037,0.04061671285687132,0.03525530675976431,0.003457991618223464,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096111894780172 47.55857896284315, 10.096249499999997 47.558225496244305)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_38_LVCableDist_mvgd_33535_lvgd_1164210000_40,BranchTee_mvgd_33535_lvgd_1164210000_38,BranchTee_mvgd_33535_lvgd_1164210000_40,0.030596539859224114,0.0038245674824030143,0.0024414953671139466,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.092099100000002 47.55769029624424, 10.092488900000005 47.55776789624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_38_LVCableDist_mvgd_33535_lvgd_1164210000_building_446959,BranchTee_mvgd_33535_lvgd_1164210000_38,BranchTee_mvgd_33535_lvgd_1164210000_building_446959,0.019122876237973933,0.016598656574561374,0.0016280673913780675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091997708232698 47.55753250425992, 10.092099100000002 47.55769029624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_39_LVCableDist_mvgd_33535_lvgd_1164210000_building_447018,BranchTee_mvgd_33535_lvgd_1164210000_39,BranchTee_mvgd_33535_lvgd_1164210000_building_447018,0.020386009979279033,0.0176950566620142,0.0017356070119652943,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09581510001827 47.55831064628728, 10.096015500000002 47.5581872962443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_3_LVCableDist_mvgd_33535_lvgd_1164210000_6,BranchTee_mvgd_33535_lvgd_1164210000_3,BranchTee_mvgd_33535_lvgd_1164210000_6,0.026087003326441007,0.002608700332644101,0.002286537190326096,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.096498100000007 47.55897729624436, 10.096363499999999 47.559046896244396, 10.096203800000001 47.55909879624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_3_LVCableDist_mvgd_33535_lvgd_1164210000_building_447099,BranchTee_mvgd_33535_lvgd_1164210000_3,BranchTee_mvgd_33535_lvgd_1164210000_building_447099,0.00684570276558944,0.0059420700005316344,0.0005828236979116518,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096527088832914 47.55903569171114, 10.096498100000007 47.55897729624436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_40_LVCableDist_mvgd_33535_lvgd_1164210000_43,BranchTee_mvgd_33535_lvgd_1164210000_40,BranchTee_mvgd_33535_lvgd_1164210000_43,0.03451564113483633,0.004314455141854541,0.0027542257494278448,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.092488900000005 47.55776789624427, 10.092942500000001 47.55781229624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_40_LVCableDist_mvgd_33535_lvgd_1164210000_building_447000,BranchTee_mvgd_33535_lvgd_1164210000_40,BranchTee_mvgd_33535_lvgd_1164210000_building_447000,0.01444729896802731,0.012540255504247705,0.001230002016988807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092480473889188 47.55789780078763, 10.092488900000005 47.55776789624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_41_LVCableDist_mvgd_33535_lvgd_1164210000_building_446873,BranchTee_mvgd_33535_lvgd_1164210000_41,BranchTee_mvgd_33535_lvgd_1164210000_building_446873,0.025814623756570947,0.022407093420703583,0.002197783776653235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09031967764609 47.557250736685155, 10.090538800000001 47.557429396244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_41_LVCableDist_mvgd_33535_lvgd_1164210000_building_446880,BranchTee_mvgd_33535_lvgd_1164210000_41,BranchTee_mvgd_33535_lvgd_1164210000_building_446880,0.01710157797299599,0.014844169680560518,0.001455979795740921,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09066686117577 47.55730228575534, 10.090538800000001 47.557429396244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_41_LVCableDist_mvgd_33535_lvgd_1164210000_building_446882,BranchTee_mvgd_33535_lvgd_1164210000_41,BranchTee_mvgd_33535_lvgd_1164210000_building_446882,0.03244782507996536,0.028164712169409932,0.002762515705086636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090614579540384 47.5577168815062, 10.090538800000001 47.557429396244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_41_LVCableDist_mvgd_33535_lvgd_1164210000_building_446894,BranchTee_mvgd_33535_lvgd_1164210000_41,BranchTee_mvgd_33535_lvgd_1164210000_building_446894,0.040575623656359645,0.03521964133372017,0.0034544934003477444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090715550090685 47.557774373193055, 10.090538800000001 47.557429396244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_42_LVCableDist_mvgd_33535_lvgd_1164210000_43,BranchTee_mvgd_33535_lvgd_1164210000_42,BranchTee_mvgd_33535_lvgd_1164210000_43,0.03615971466446143,0.004519964333057679,0.002885416986222689,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.092942500000001 47.55781229624422, 10.093422599999997 47.557816396244306)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_42_LVCableDist_mvgd_33535_lvgd_1164210000_building_446944,BranchTee_mvgd_33535_lvgd_1164210000_42,BranchTee_mvgd_33535_lvgd_1164210000_building_446944,0.02384044252512394,0.020693504111807582,0.002029707591481521,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09367999749671 47.55794129429055, 10.093422599999997 47.557816396244306)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_42_LVCableDist_mvgd_33535_lvgd_1164210000_building_446993,BranchTee_mvgd_33535_lvgd_1164210000_42,BranchTee_mvgd_33535_lvgd_1164210000_building_446993,0.02381316927172834,0.0206698309278602,0.0020273856241185785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093579249602781 47.557630217544755, 10.093422599999997 47.557816396244306)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_43_LVCableDist_mvgd_33535_lvgd_1164210000_building_446988,BranchTee_mvgd_33535_lvgd_1164210000_43,BranchTee_mvgd_33535_lvgd_1164210000_building_446988,0.016220959918309286,0.01407979320909246,0.0013810064747167973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092845725470166 47.55768187158693, 10.092942500000001 47.55781229624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_43_LVCableDist_mvgd_33535_lvgd_1164210000_building_447025,BranchTee_mvgd_33535_lvgd_1164210000_43,BranchTee_mvgd_33535_lvgd_1164210000_building_447025,0.01790459727222521,0.015541190432291482,0.0015243465790350681,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09311996797122 47.557919521377265, 10.092942500000001 47.55781229624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_44_LVCableDist_mvgd_33535_lvgd_1164210000_building_446870,BranchTee_mvgd_33535_lvgd_1164210000_44,BranchTee_mvgd_33535_lvgd_1164210000_building_446870,0.01901271460209414,0.016503036274617713,0.001618688542457809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088866175887688 47.55707558813344, 10.088786199999996 47.557237896244224)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_44_LVStation_mvgd_33535_lvgd_1164210000,BusBar_mvgd_33535_lvgd_1164210000_LV,BranchTee_mvgd_33535_lvgd_1164210000_44,0.011441317221073197,0.0014301646526341497,0.0009129765364794943,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088636700000006 47.55721959624428, 10.088786199999996 47.557237896244224)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_45_LVCableDist_mvgd_33535_lvgd_1164210000_56,BranchTee_mvgd_33535_lvgd_1164210000_45,BranchTee_mvgd_33535_lvgd_1164210000_56,0.03770790197960098,0.004713487747450122,0.003008956843171521,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089349499999997 47.55428849624399, 10.088879200000001 47.55440489624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_45_LVCableDist_mvgd_33535_lvgd_1164210000_building_446803,BranchTee_mvgd_33535_lvgd_1164210000_45,BranchTee_mvgd_33535_lvgd_1164210000_building_446803,0.014512161171272778,0.01259655589666477,0.0012355242008236418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088943904354549 47.55428186548566, 10.088879200000001 47.55440489624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_46_LVCableDist_mvgd_33535_lvgd_1164210000_47,BranchTee_mvgd_33535_lvgd_1164210000_46,BranchTee_mvgd_33535_lvgd_1164210000_47,0.04536792698263521,0.0056709908728294015,0.003620199671378022,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0867576 47.55487889624399, 10.08629 47.55462149624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_46_LVCableDist_mvgd_33535_lvgd_1164210000_57,BranchTee_mvgd_33535_lvgd_1164210000_46,BranchTee_mvgd_33535_lvgd_1164210000_57,0.33551744700677505,0.04193968087584688,0.02677310232535926,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088720799999999 47.556742496244176, 10.088681600000005 47.55629489624413, 10.088718799999995 47.55613669624417, 10.088858999999996 47.55586469624412, 10.088887599999996 47.55559319624407, 10.088775399999996 47.55557769624411, 10.088680899999995 47.55553449624408, 10.0882415 47.55552319624411, 10.088137199999998 47.555526196244074, 10.087649300000006 47.55554049624407, 10.087546900000003 47.55554549624407, 10.087449100000006 47.55555019624407, 10.087360699999996 47.55552679624408, 10.0873118 47.55543539624408, 10.087288200000001 47.55538709624407, 10.087242399999997 47.55529839624404, 10.087194099999998 47.55519909624407, 10.087078800000002 47.55506379624406, 10.087012800000004 47.55498709624405, 10.0867576 47.55487889624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_46_LVCableDist_mvgd_33535_lvgd_1164210000_building_446822,BranchTee_mvgd_33535_lvgd_1164210000_46,BranchTee_mvgd_33535_lvgd_1164210000_building_446822,0.013109738101251552,0.011379252671886346,0.0011161258822441462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08674031703643 47.55476148812982, 10.0867576 47.55487889624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_47_LVCableDist_mvgd_33535_lvgd_1164210000_48,BranchTee_mvgd_33535_lvgd_1164210000_47,BranchTee_mvgd_33535_lvgd_1164210000_48,0.014456362939575947,0.0018070453674469934,0.0011535664916584286,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.08629 47.55462149624401, 10.086224500000004 47.55449919624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_47_LVCableDist_mvgd_33535_lvgd_1164210000_building_446815,BranchTee_mvgd_33535_lvgd_1164210000_47,BranchTee_mvgd_33535_lvgd_1164210000_building_446815,0.020926846676750665,0.018164502915419576,0.0017816523129052047,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08651784999506 47.554513696285284, 10.08629 47.55462149624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_47_LVCableDist_mvgd_33535_lvgd_1164210000_building_446817,BranchTee_mvgd_33535_lvgd_1164210000_47,BranchTee_mvgd_33535_lvgd_1164210000_building_446817,0.018715097742609287,0.01624470484058486,0.0015933502880016387,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08636375002566 47.554782346328835, 10.08629 47.55462149624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_48_LVCableDist_mvgd_33535_lvgd_1164210000_49,BranchTee_mvgd_33535_lvgd_1164210000_48,BranchTee_mvgd_33535_lvgd_1164210000_49,0.029046970148251233,0.003630871268531404,0.002317845199880418,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086224500000004 47.55449919624398, 10.086230499999997 47.55423779624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_48_LVCableDist_mvgd_33535_lvgd_1164210000_building_446814,BranchTee_mvgd_33535_lvgd_1164210000_48,BranchTee_mvgd_33535_lvgd_1164210000_building_446814,0.023559367918611514,0.020449531353354793,0.0020057776974785157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085948475584805 47.55439944139583, 10.086224500000004 47.55449919624398)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_49_LVCableDist_mvgd_33535_lvgd_1164210000_65,BranchTee_mvgd_33535_lvgd_1164210000_49,BranchTee_mvgd_33535_lvgd_1164210000_65,0.006210706146981247,0.0007763382683726559,0.000495592323646016,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086230499999997 47.55423779624396, 10.086150299999996 47.554224796244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_49_LVCableDist_mvgd_33535_lvgd_1164210000_building_446770,BranchTee_mvgd_33535_lvgd_1164210000_49,BranchTee_mvgd_33535_lvgd_1164210000_building_446770,0.013899224302827388,0.012064526694854173,0.0011833404960257354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086390949994884 47.554299596279805, 10.086230499999997 47.55423779624396)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_4_LVCableDist_mvgd_33535_lvgd_1164210000_building_447181,BranchTee_mvgd_33535_lvgd_1164210000_4,BranchTee_mvgd_33535_lvgd_1164210000_building_447181,0.029777922154171254,0.025847236429820647,0.002535207750073127,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101728472658431 47.55892510144836, 10.101843600000006 47.55918149624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_4_LVCableDist_mvgd_33535_lvgd_1164210000_building_447184,BranchTee_mvgd_33535_lvgd_1164210000_4,BranchTee_mvgd_33535_lvgd_1164210000_building_447184,0.0349310287361245,0.030320132942956064,0.002973928614339027,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101783883675163 47.55886972523469, 10.101843600000006 47.55918149624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_50_LVCableDist_mvgd_33535_lvgd_1164210000_55,BranchTee_mvgd_33535_lvgd_1164210000_50,BranchTee_mvgd_33535_lvgd_1164210000_55,0.026404487060039762,0.0033005608825049703,0.002106984421268543,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089772600000003 47.55349769624387, 10.089736699999996 47.55373409624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_50_LVCableDist_mvgd_33535_lvgd_1164210000_building_446786,BranchTee_mvgd_33535_lvgd_1164210000_50,BranchTee_mvgd_33535_lvgd_1164210000_building_446786,0.019958615202294007,0.017324077995591197,0.0016992198340640508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089552561756355 47.55359780045185, 10.089772600000003 47.55349769624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_50_LVCableDist_mvgd_33535_lvgd_1164210000_building_446808,BranchTee_mvgd_33535_lvgd_1164210000_50,BranchTee_mvgd_33535_lvgd_1164210000_building_446808,0.019348182876045204,0.01679422273640724,0.0016472493588781468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089570620827823 47.553390099225346, 10.089772600000003 47.55349769624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_51_LVCableDist_mvgd_33535_lvgd_1164210000_52,BranchTee_mvgd_33535_lvgd_1164210000_51,BranchTee_mvgd_33535_lvgd_1164210000_52,0.03174541456655249,0.0039681768208190615,0.002533171494161071,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0892608 47.55375249624394, 10.0893239 47.55346999624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_51_LVCableDist_mvgd_33535_lvgd_1164210000_building_446785,BranchTee_mvgd_33535_lvgd_1164210000_51,BranchTee_mvgd_33535_lvgd_1164210000_building_446785,0.02325025006416336,0.020181217055693795,0.0019794602809635035,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089058187953965 47.55357652058412, 10.0893239 47.55346999624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_52_LVCableDist_mvgd_33535_lvgd_1164210000_58,BranchTee_mvgd_33535_lvgd_1164210000_52,BranchTee_mvgd_33535_lvgd_1164210000_58,0.024216034125499414,0.0030270042656874267,0.001932353638656817,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0892401 47.5539699962439, 10.0892608 47.55375249624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_52_LVCableDist_mvgd_33535_lvgd_1164210000_building_446795,BranchTee_mvgd_33535_lvgd_1164210000_52,BranchTee_mvgd_33535_lvgd_1164210000_building_446795,0.01755099487816112,0.015234263554243852,0.0014942418751126652,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089031500001672 47.55378064629499, 10.0892608 47.55375249624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_53_LVCableDist_mvgd_33535_lvgd_1164210000_54,BranchTee_mvgd_33535_lvgd_1164210000_53,BranchTee_mvgd_33535_lvgd_1164210000_54,0.045616094444505595,0.005702011805563199,0.0036400025546848513,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089634100000003 47.554681896244006, 10.0896434 47.55451519624398, 10.089629500000004 47.554425696243946, 10.089544 47.55428329624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_53_LVCableDist_mvgd_33535_lvgd_1164210000_55,BranchTee_mvgd_33535_lvgd_1164210000_53,BranchTee_mvgd_33535_lvgd_1164210000_55,0.09532503501577921,0.011915629376972402,0.00760659971460255,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089736699999996 47.55373409624389, 10.0898894 47.55373609624391, 10.089883100000003 47.55425889624394, 10.089733199999996 47.554276896243984, 10.089544 47.55428329624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_53_LVCableDist_mvgd_33535_lvgd_1164210000_56,BranchTee_mvgd_33535_lvgd_1164210000_53,BranchTee_mvgd_33535_lvgd_1164210000_56,0.014660365042779703,0.001832545630347463,0.00116984513598047,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089544 47.55428329624397, 10.089349499999997 47.55428849624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_53_LVCableDist_mvgd_33535_lvgd_1164210000_58,BranchTee_mvgd_33535_lvgd_1164210000_53,BranchTee_mvgd_33535_lvgd_1164210000_58,0.04170049744077744,0.00521256218009718,0.003327551800839054,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.089544 47.55428329624397, 10.089417199999994 47.554147496243985, 10.089324599999998 47.55404449624397, 10.0892401 47.5539699962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_54_LVCableDist_mvgd_33535_lvgd_1164210000_57,BranchTee_mvgd_33535_lvgd_1164210000_54,BranchTee_mvgd_33535_lvgd_1164210000_57,0.2487981304519847,0.031099766306498088,0.019853208422912688,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088720799999999 47.556742496244176, 10.0888543 47.55664039624423, 10.088979299999997 47.55641899624416, 10.089003799999995 47.55625839624413, 10.088988799999996 47.555966096244134, 10.0889737 47.555802096244086, 10.089003999999997 47.55553939624407, 10.089113399999993 47.55545459624406, 10.089349399999998 47.55526529624408, 10.089461400000001 47.55514579624405, 10.089552999999995 47.55500279624405, 10.089610499999997 47.55482779624404, 10.089634100000003 47.554681896244006)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_54_LVCableDist_mvgd_33535_lvgd_1164210000_building_446855,BranchTee_mvgd_33535_lvgd_1164210000_54,BranchTee_mvgd_33535_lvgd_1164210000_building_446855,0.025307564828294805,0.02196696627095989,0.0021546142190845786,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089298203073739 47.554688074681486, 10.089634100000003 47.554681896244006)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_55_LVCableDist_mvgd_33535_lvgd_1164210000_building_446818,BranchTee_mvgd_33535_lvgd_1164210000_55,BranchTee_mvgd_33535_lvgd_1164210000_building_446818,0.021973823898570742,0.019073279143959405,0.0018707889811107959,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089767932915512 47.553930730061914, 10.089736699999996 47.55373409624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_56_LVCableDist_mvgd_33535_lvgd_1164210000_building_446804,BranchTee_mvgd_33535_lvgd_1164210000_56,BranchTee_mvgd_33535_lvgd_1164210000_building_446804,0.010580437781262842,0.009183819994136148,0.0009007884339057774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08929622530733 47.55420038372826, 10.089349499999997 47.55428849624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_56_LVCableDist_mvgd_33535_lvgd_1164210000_building_446850,BranchTee_mvgd_33535_lvgd_1164210000_56,BranchTee_mvgd_33535_lvgd_1164210000_building_446850,0.015511246557840532,0.013463762012205581,0.0013205834941449714,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089370464416106 47.55442737645426, 10.089349499999997 47.55428849624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_57_LVCableDist_mvgd_33535_lvgd_1164210000_building_446872,BranchTee_mvgd_33535_lvgd_1164210000_57,BranchTee_mvgd_33535_lvgd_1164210000_building_446872,0.028022933503577326,0.024323906281105118,0.0023857929989282807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08835086602274 47.55676960654979, 10.088720799999999 47.556742496244176)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_57_LVStation_mvgd_33535_lvgd_1164210000,BusBar_mvgd_33535_lvgd_1164210000_LV,BranchTee_mvgd_33535_lvgd_1164210000_57,0.05338623059056035,0.006673278823820044,0.0042600318615843395,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088636700000006 47.55721959624428, 10.088720799999999 47.556742496244176)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_58_LVCableDist_mvgd_33535_lvgd_1164210000_63,BranchTee_mvgd_33535_lvgd_1164210000_58,BranchTee_mvgd_33535_lvgd_1164210000_63,0.0702523921242169,0.008781549015527112,0.0056058917344615515,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0892401 47.5539699962439, 10.0888834 47.553969396243936, 10.088326002125267 47.554067999093625)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_58_LVCableDist_mvgd_33535_lvgd_1164210000_building_446796,BranchTee_mvgd_33535_lvgd_1164210000_58,BranchTee_mvgd_33535_lvgd_1164210000_building_446796,0.015795707190119995,0.013710673841024156,0.001344801664768558,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089421934225792 47.553899153611546, 10.0892401 47.5539699962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_59_LVCableDist_mvgd_33535_lvgd_1164210000_60,BranchTee_mvgd_33535_lvgd_1164210000_59,BranchTee_mvgd_33535_lvgd_1164210000_60,0.01534530027452374,0.0019181625343154675,0.00122450053828316,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.087211199999997 47.554265196243975, 10.087007999999997 47.554275296243986)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_59_LVCableDist_mvgd_33535_lvgd_1164210000_64,BranchTee_mvgd_33535_lvgd_1164210000_59,BranchTee_mvgd_33535_lvgd_1164210000_64,0.043386862244956845,0.005423357780619606,0.0034621177313531475,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.08776860212526 47.55416659909366, 10.087211199999997 47.554265196243975)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_59_LVCableDist_mvgd_33535_lvgd_1164210000_building_446819,BranchTee_mvgd_33535_lvgd_1164210000_59,BranchTee_mvgd_33535_lvgd_1164210000_building_446819,0.027122026371885762,0.02354191889079684,0.0023090923234904324,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087412849994218 47.55406294630703, 10.087211199999997 47.554265196243975)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_59_LVCableDist_mvgd_33535_lvgd_1164210000_building_446825,BranchTee_mvgd_33535_lvgd_1164210000_59,BranchTee_mvgd_33535_lvgd_1164210000_building_446825,0.019231713489125283,0.016693127308560745,0.0016373334859425906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087343621468664 47.55441318961573, 10.087211199999997 47.554265196243975)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_5_LVCableDist_mvgd_33535_lvgd_1164210000_building_447114,BranchTee_mvgd_33535_lvgd_1164210000_5,BranchTee_mvgd_33535_lvgd_1164210000_building_447114,0.014138364933040637,0.012272100761879273,0.0012037002503408657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09992510870922 47.55923759084604, 10.0997905 47.559326296244414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_5_LVCableDist_mvgd_33535_lvgd_1164210000_building_447148,BranchTee_mvgd_33535_lvgd_1164210000_5,BranchTee_mvgd_33535_lvgd_1164210000_building_447148,0.048446446641034334,0.042051515684417805,0.004124592923306092,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10035360000505 47.559115446268734, 10.0997905 47.559326296244414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_60_LVCableDist_mvgd_33535_lvgd_1164210000_61,BranchTee_mvgd_33535_lvgd_1164210000_60,BranchTee_mvgd_33535_lvgd_1164210000_61,0.02618502549334599,0.0032731281866682487,0.0020894721665885136,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.087007999999997 47.554275296243986, 10.086876999999996 47.55405699624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_60_LVCableDist_mvgd_33535_lvgd_1164210000_building_446823,BranchTee_mvgd_33535_lvgd_1164210000_60,BranchTee_mvgd_33535_lvgd_1164210000_building_446823,0.022720445758622834,0.01972134691848462,0.001934354246550679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08698756782213 47.554479318007054, 10.087007999999997 47.554275296243986)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_61_LVCableDist_mvgd_33535_lvgd_1164210000_62,BranchTee_mvgd_33535_lvgd_1164210000_61,BranchTee_mvgd_33535_lvgd_1164210000_62,0.054890360525498574,0.006861295065687322,0.004380056095846959,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.086876999999996 47.55405699624394, 10.086868999999998 47.55356299624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_61_LVCableDist_mvgd_33535_lvgd_1164210000_building_446774,BranchTee_mvgd_33535_lvgd_1164210000_61,BranchTee_mvgd_33535_lvgd_1164210000_building_446774,0.019830785966137215,0.017213122218607102,0.0016883368158160756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086751631597872 47.55421395142205, 10.086876999999996 47.55405699624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_61_LVCableDist_mvgd_33535_lvgd_1164210000_building_446816,BranchTee_mvgd_33535_lvgd_1164210000_61,BranchTee_mvgd_33535_lvgd_1164210000_building_446816,0.01832723057390766,0.015908036138151848,0.0015603283784472967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087108930074079 47.55410690066683, 10.086876999999996 47.55405699624394)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_62_LVCableDist_mvgd_33535_lvgd_1164210000_building_446797,BranchTee_mvgd_33535_lvgd_1164210000_62,BranchTee_mvgd_33535_lvgd_1164210000_building_446797,0.013496146209661835,0.011714654909986473,0.0011490235715476834,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087047474247395 47.55357384344577, 10.086868999999998 47.55356299624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_62_LVCableDist_mvgd_33535_lvgd_1164210000_building_446801,BranchTee_mvgd_33535_lvgd_1164210000_62,BranchTee_mvgd_33535_lvgd_1164210000_building_446801,0.04457089945151822,0.038687540723917814,0.0037946398386091112,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087316499999408 47.55330049625954, 10.086868999999998 47.55356299624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_62_LVCableDist_mvgd_33535_lvgd_1164210000_building_446812,BranchTee_mvgd_33535_lvgd_1164210000_62,BranchTee_mvgd_33535_lvgd_1164210000_building_446812,0.02691535731463397,0.023362530149102285,0.0022914971067075963,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087037149999684 47.55377674628612, 10.086868999999998 47.55356299624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_63_LVCableDist_mvgd_33535_lvgd_1164210000_64,BranchTee_mvgd_33535_lvgd_1164210000_63,BranchTee_mvgd_33535_lvgd_1164210000_64,0.043386862244172465,0.005423357780521558,0.003462117731290557,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.088326002125267 47.554067999093625, 10.08776860212526 47.55416659909366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_63_LVCableDist_mvgd_33535_lvgd_1164210000_building_446788,BranchTee_mvgd_33535_lvgd_1164210000_63,BranchTee_mvgd_33535_lvgd_1164210000_building_446788,0.01977722212203187,0.017166628801923663,0.0016837765422013985,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088317179318475 47.55424589978808, 10.088326002125267 47.554067999093625)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_63_LVCableDist_mvgd_33535_lvgd_1164210000_building_446790,BranchTee_mvgd_33535_lvgd_1164210000_63,BranchTee_mvgd_33535_lvgd_1164210000_building_446790,0.024568313541726214,0.021325296154218354,0.002091676463345376,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088613656338236 47.554172266162176, 10.088326002125267 47.554067999093625)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_63_LVCableDist_mvgd_33535_lvgd_1164210000_building_446830,BranchTee_mvgd_33535_lvgd_1164210000_63,BranchTee_mvgd_33535_lvgd_1164210000_building_446830,0.019637335777483257,0.017045207454855466,0.001671867015976132,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088119141961354 47.5539604179521, 10.088326002125267 47.554067999093625)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_64_LVCableDist_mvgd_33535_lvgd_1164210000_building_446824,BranchTee_mvgd_33535_lvgd_1164210000_64,BranchTee_mvgd_33535_lvgd_1164210000_building_446824,0.021661146859300383,0.018801875473872732,0.001844168545704859,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087773512052234 47.553971670500864, 10.08776860212526 47.55416659909366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_64_LVCableDist_mvgd_33535_lvgd_1164210000_building_446832,BranchTee_mvgd_33535_lvgd_1164210000_64,BranchTee_mvgd_33535_lvgd_1164210000_building_446832,0.022642923145526957,0.019654057290317398,0.0019277541913651948,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08765834998867 47.55435619628375, 10.08776860212526 47.55416659909366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_64_LVCableDist_mvgd_33535_lvgd_1164210000_building_446833,BranchTee_mvgd_33535_lvgd_1164210000_64,BranchTee_mvgd_33535_lvgd_1164210000_building_446833,0.022738393154171126,0.019736925257820538,0.0019358822368534306,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087993364580294 47.55430322903509, 10.08776860212526 47.55416659909366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_65_LVCableDist_mvgd_33535_lvgd_1164210000_building_446758,BranchTee_mvgd_33535_lvgd_1164210000_65,BranchTee_mvgd_33535_lvgd_1164210000_building_446758,0.02384487965064761,0.02069735553676213,0.0020300853557512176,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085847749551077 47.55416158827426, 10.086150299999996 47.554224796244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_65_LVCableDist_mvgd_33535_lvgd_1164210000_building_446766,BranchTee_mvgd_33535_lvgd_1164210000_65,BranchTee_mvgd_33535_lvgd_1164210000_building_446766,0.0143026691289543,0.012414716803932333,0.0012176886431069305,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08597704955107 47.554172088274285, 10.086150299999996 47.554224796244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_66_LVCableDist_mvgd_33535_lvgd_1164210000_67,BranchTee_mvgd_33535_lvgd_1164210000_66,BranchTee_mvgd_33535_lvgd_1164210000_67,0.036623076926430374,0.0036623076926430376,0.003210028624927578,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0890398 47.55311719624388, 10.088615100000002 47.552956696243875)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_66_LVCableDist_mvgd_33535_lvgd_1164210000_69,BranchTee_mvgd_33535_lvgd_1164210000_66,BranchTee_mvgd_33535_lvgd_1164210000_69,0.06432253333174404,0.006432253333174404,0.0056378980290906384,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.088615100000002 47.552956696243875, 10.088231499999996 47.55279849624385, 10.088054099999999 47.55275179624382, 10.087839999999996 47.552741096243786)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_66_LVCableDist_mvgd_33535_lvgd_1164210000_building_446776,BranchTee_mvgd_33535_lvgd_1164210000_66,BranchTee_mvgd_33535_lvgd_1164210000_building_446776,0.018324420159320575,0.01590559669829026,0.0015600891077283657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08885523778855 47.55293021282143, 10.088615100000002 47.552956696243875)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_67_LVCableDist_mvgd_33535_lvgd_1164210000_88,BranchTee_mvgd_33535_lvgd_1164210000_67,BranchTee_mvgd_33535_lvgd_1164210000_88,0.028486005950389776,0.002848600595038978,0.0024968108139656847,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089384700000004 47.55322239624389, 10.0890398 47.55311719624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_67_LVCableDist_mvgd_33535_lvgd_1164210000_building_446779,BranchTee_mvgd_33535_lvgd_1164210000_67,BranchTee_mvgd_33535_lvgd_1164210000_building_446779,0.019802164008575315,0.017188278359443372,0.0016859000236095036,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088845272401379 47.55323709852685, 10.0890398 47.55311719624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_68_LVCableDist_mvgd_33535_lvgd_1164210000_building_446605,BranchTee_mvgd_33535_lvgd_1164210000_68,BranchTee_mvgd_33535_lvgd_1164210000_building_446605,0.08921702323407571,0.07744037616717772,0.007595684063194431,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080768649972187 47.55042939649964, 10.080590000000003 47.5512231962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_69_LVCableDist_mvgd_33535_lvgd_1164210000_building_446739,BranchTee_mvgd_33535_lvgd_1164210000_69,BranchTee_mvgd_33535_lvgd_1164210000_building_446739,0.015287291259939927,0.013269368813627856,0.0013015165759104493,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087845160187307 47.552878641990894, 10.087839999999996 47.552741096243786)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_6_LVCableDist_mvgd_33535_lvgd_1164210000_building_447045,BranchTee_mvgd_33535_lvgd_1164210000_6,BranchTee_mvgd_33535_lvgd_1164210000_building_447045,0.011102700666296676,0.009637144178345514,0.0009452524131874163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.096173900003736 47.559000946286055, 10.096203800000001 47.55909879624443)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_70_LVCableDist_mvgd_33535_lvgd_1164210000_89,BranchTee_mvgd_33535_lvgd_1164210000_70,BranchTee_mvgd_33535_lvgd_1164210000_89,0.01442300435392766,0.001442300435392766,0.0012641826061356974,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.086374500000003 47.55060269624367, 10.086470299999997 47.55049029624366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_70_LVCableDist_mvgd_33535_lvgd_1164210000_building_446735,BranchTee_mvgd_33535_lvgd_1164210000_70,BranchTee_mvgd_33535_lvgd_1164210000_building_446735,0.01883213360848775,0.016346291972167366,0.0016033143893474419,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086704121585534 47.55043027010872, 10.086470299999997 47.55049029624366)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_71_LVCableDist_mvgd_33535_lvgd_1164210000_97,BranchTee_mvgd_33535_lvgd_1164210000_71,BranchTee_mvgd_33535_lvgd_1164210000_97,0.014813345572461082,0.0014813345572461084,0.0012983961837523047,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.086481700000006 47.55259649624381, 10.086318399999994 47.552522196243835)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_71_LVCableDist_mvgd_33535_lvgd_1164210000_building_446724,BranchTee_mvgd_33535_lvgd_1164210000_71,BranchTee_mvgd_33535_lvgd_1164210000_building_446724,0.021986961357505767,0.019084682458315006,0.0018719074670661257,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086759550059458 47.55253579634366, 10.086481700000006 47.55259649624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_72_LVCableDist_mvgd_33535_lvgd_1164210000_76,BranchTee_mvgd_33535_lvgd_1164210000_72,BranchTee_mvgd_33535_lvgd_1164210000_76,0.02663517281379093,0.002663517281379093,0.0023345844843653146,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.086085199999998 47.55228979624379, 10.086028299999997 47.55205319624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_72_LVCableDist_mvgd_33535_lvgd_1164210000_84,BranchTee_mvgd_33535_lvgd_1164210000_72,BranchTee_mvgd_33535_lvgd_1164210000_84,0.02136248123721279,0.002136248123721279,0.0018724307738720424,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.086131400000001 47.55247949624382, 10.086085199999998 47.55228979624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_72_LVCableDist_mvgd_33535_lvgd_1164210000_building_446722,BranchTee_mvgd_33535_lvgd_1164210000_72,BranchTee_mvgd_33535_lvgd_1164210000_building_446722,0.017474981861385262,0.015168284255682408,0.0014877703426719908,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08631714999921 47.552293446369355, 10.086085199999998 47.55228979624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_73_LVCableDist_mvgd_33535_lvgd_1164210000_75,BranchTee_mvgd_33535_lvgd_1164210000_73,BranchTee_mvgd_33535_lvgd_1164210000_75,0.03638109772648761,0.003638109772648761,0.003188819042783136,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.085896000000002 47.55092699624367, 10.085939099999996 47.550860296243634, 10.0862363 47.550704596243676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_73_LVCableDist_mvgd_33535_lvgd_1164210000_92,BranchTee_mvgd_33535_lvgd_1164210000_73,BranchTee_mvgd_33535_lvgd_1164210000_92,0.07430467566724792,0.007430467566724793,0.006512837147380395,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.085997699999998 47.55159219624372, 10.085896000000002 47.55092699624367)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_73_LVCableDist_mvgd_33535_lvgd_1164210000_building_34328680,BranchTee_mvgd_33535_lvgd_1164210000_73,BranchTee_mvgd_33535_lvgd_1164210000_building_34328680,0.09915760366463952,0.0860687999809071,0.008441996858872838,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084598016764247 47.55077801375015, 10.085896000000002 47.55092699624367)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_73_LVCableDist_mvgd_33535_lvgd_1164210000_building_34328681,BranchTee_mvgd_33535_lvgd_1164210000_73,BranchTee_mvgd_33535_lvgd_1164210000_building_34328681,0.08139302796022921,0.07064914826947895,0.006929571318588016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084819705879923 47.55086158633855, 10.085896000000002 47.55092699624367)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_73_LVCableDist_mvgd_33535_lvgd_1164210000_building_446710,BranchTee_mvgd_33535_lvgd_1164210000_73,BranchTee_mvgd_33535_lvgd_1164210000_building_446710,0.017512167251530545,0.015200561174328513,0.0014909362012163758,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085713549998577 47.551024696285765, 10.085896000000002 47.55092699624367)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_73_LVCableDist_mvgd_33535_lvgd_1164210000_building_446712,BranchTee_mvgd_33535_lvgd_1164210000_73,BranchTee_mvgd_33535_lvgd_1164210000_building_446712,0.036517131381466714,0.03169687003911311,0.0031089648904789255,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085621999999766 47.55119814629138, 10.085896000000002 47.55092699624367)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_73_LVCableDist_mvgd_33535_lvgd_1164210000_building_446721,BranchTee_mvgd_33535_lvgd_1164210000_73,BranchTee_mvgd_33535_lvgd_1164210000_building_446721,0.035590221820087545,0.03089231253983599,0.0030300504420006534,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086151500000506 47.55119644630824, 10.085896000000002 47.55092699624367)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_74_LVCableDist_mvgd_33535_lvgd_1164210000_building_446742,BranchTee_mvgd_33535_lvgd_1164210000_74,BranchTee_mvgd_33535_lvgd_1164210000_building_446742,0.02504665854773993,0.021740499619438258,0.002132401399093953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088018495375922 47.55243159315306, 10.088349299999997 47.55245459624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_74_LVCableDist_mvgd_33535_lvgd_1164210000_building_446752,BranchTee_mvgd_33535_lvgd_1164210000_74,BranchTee_mvgd_33535_lvgd_1164210000_building_446752,0.024334726933981272,0.021122542978695744,0.0020717895627348406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08849684999905 47.55225974627088, 10.088349299999997 47.55245459624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_74_LVCableDist_mvgd_33535_lvgd_1164210000_building_446767,BranchTee_mvgd_33535_lvgd_1164210000_74,BranchTee_mvgd_33535_lvgd_1164210000_building_446767,0.022022414666543172,0.019115455930559473,0.0018749258611425162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088240049999573 47.55227074627435, 10.088349299999997 47.55245459624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_74_LVCableDist_mvgd_33535_lvgd_1164210000_building_446768,BranchTee_mvgd_33535_lvgd_1164210000_74,BranchTee_mvgd_33535_lvgd_1164210000_building_446768,0.018443277142196884,0.016008764559426895,0.0015702082538050545,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088365375717387 47.55262023297368, 10.088349299999997 47.55245459624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_74_LVCableDist_mvgd_33535_lvgd_1164210000_building_446772,BranchTee_mvgd_33535_lvgd_1164210000_74,BranchTee_mvgd_33535_lvgd_1164210000_building_446772,0.034913318689648414,0.030304760622614824,0.0029724208312624286,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088738924098303 47.55262482201484, 10.088349299999997 47.55245459624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_75_LVCableDist_mvgd_33535_lvgd_1164210000_89,BranchTee_mvgd_33535_lvgd_1164210000_75,BranchTee_mvgd_33535_lvgd_1164210000_89,0.015379588764601777,0.0015379588764601777,0.0013480276458791316,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0862363 47.550704596243676, 10.086374500000003 47.55060269624367)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_75_LVCableDist_mvgd_33535_lvgd_1164210000_building_446708,BranchTee_mvgd_33535_lvgd_1164210000_75,BranchTee_mvgd_33535_lvgd_1164210000_building_446708,0.029553605694909786,0.025652529743181694,0.0025161100835857098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086535149999994 47.550876946270094, 10.0862363 47.550704596243676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_75_LVCableDist_mvgd_33535_lvgd_1164210000_building_446727,BranchTee_mvgd_33535_lvgd_1164210000_75,BranchTee_mvgd_33535_lvgd_1164210000_building_446727,0.05824240181677947,0.05055440477696458,0.004958592735393021,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086596515987848 47.55116843528047, 10.0862363 47.550704596243676)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_76_LVCableDist_mvgd_33535_lvgd_1164210000_92,BranchTee_mvgd_33535_lvgd_1164210000_76,BranchTee_mvgd_33535_lvgd_1164210000_92,0.05127234641748745,0.005127234641748746,0.004494043468765958,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.086028299999997 47.55205319624379, 10.085997699999998 47.55159219624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_76_LVCableDist_mvgd_33535_lvgd_1164210000_building_446749,BranchTee_mvgd_33535_lvgd_1164210000_76,BranchTee_mvgd_33535_lvgd_1164210000_building_446749,0.015243988616907176,0.013231782119475429,0.001297829911822643,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086140699999994 47.55193909626657, 10.086028299999997 47.55205319624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_76_LVCableDist_mvgd_33535_lvgd_1164210000_building_446750,BranchTee_mvgd_33535_lvgd_1164210000_76,BranchTee_mvgd_33535_lvgd_1164210000_building_446750,0.04164535132690183,0.036148164951750786,0.003545566977167016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086567681594026 47.55197075948647, 10.086028299999997 47.55205319624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_77_LVCableDist_mvgd_33535_lvgd_1164210000_86,BranchTee_mvgd_33535_lvgd_1164210000_77,BranchTee_mvgd_33535_lvgd_1164210000_86,0.029492361590071483,0.0029492361590071486,0.002585018323583868,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089570400000003 47.55285209624383, 10.089601400000005 47.55279289624384, 10.089643799999996 47.55271199624384, 10.089656799999998 47.5526737962438, 10.089682400000004 47.552598196243814)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_77_LVCableDist_mvgd_33535_lvgd_1164210000_96,BranchTee_mvgd_33535_lvgd_1164210000_77,BranchTee_mvgd_33535_lvgd_1164210000_96,0.03876030210743627,0.0038760302107436273,0.0033973573418108337,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089682400000004 47.552598196243814, 10.089679999999992 47.55238999624383, 10.089621799999996 47.55225499624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_77_LVCableDist_mvgd_33535_lvgd_1164210000_building_446780,BranchTee_mvgd_33535_lvgd_1164210000_77,BranchTee_mvgd_33535_lvgd_1164210000_building_446780,0.014997359805337401,0.013017708311032864,0.0012768326350064217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08949225001386 47.552558146298374, 10.089682400000004 47.552598196243814)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_78_LVCableDist_mvgd_33535_lvgd_1164210000_79,BranchTee_mvgd_33535_lvgd_1164210000_78,BranchTee_mvgd_33535_lvgd_1164210000_79,0.02176827720850038,0.002176827720850038,0.0019079989672909129,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.085709400000004 47.55284939624388, 10.085725499999997 47.55293079624387, 10.085746900000002 47.552977896243824, 10.085827399999998 47.55301229624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_78_LVCableDist_mvgd_33535_lvgd_1164210000_building_446748,BranchTee_mvgd_33535_lvgd_1164210000_78,BranchTee_mvgd_33535_lvgd_1164210000_building_446748,0.016812324655721776,0.0145930978011665,0.0014313535895237345,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086025876903584 47.553081532782315, 10.085827399999998 47.55301229624391)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_79_LVCableDist_mvgd_33535_lvgd_1164210000_80,BranchTee_mvgd_33535_lvgd_1164210000_79,BranchTee_mvgd_33535_lvgd_1164210000_80,0.009057521102789805,0.0009057521102789805,0.0007938956649996254,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.085712099999997 47.55276789624379, 10.085709400000004 47.55284939624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_79_LVCableDist_mvgd_33535_lvgd_1164210000_building_446716,BranchTee_mvgd_33535_lvgd_1164210000_79,BranchTee_mvgd_33535_lvgd_1164210000_building_446716,0.013506391529584043,0.011723547847678949,0.0011498958289984983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08553380000186 47.55287404630417, 10.085709400000004 47.55284939624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_7_LVCableDist_mvgd_33535_lvgd_1164210000_building_447089,BranchTee_mvgd_33535_lvgd_1164210000_7,BranchTee_mvgd_33535_lvgd_1164210000_building_447089,0.020019279895214386,0.017376734949046086,0.0017043846537869072,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097863680543064 47.5580249442152, 10.097659599999997 47.55790949624431)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_80_LVCableDist_mvgd_33535_lvgd_1164210000_82,BranchTee_mvgd_33535_lvgd_1164210000_80,BranchTee_mvgd_33535_lvgd_1164210000_82,0.02571245422059223,0.0025712454220592233,0.0022537077982564225,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.085749599999998 47.552537996243835, 10.085720100000001 47.55268649624381, 10.085712099999997 47.55276789624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_80_LVCableDist_mvgd_33535_lvgd_1164210000_building_446718,BranchTee_mvgd_33535_lvgd_1164210000_80,BranchTee_mvgd_33535_lvgd_1164210000_building_446718,0.01361843697966301,0.011820803298347492,0.0011594350605113606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085892896517302 47.55276947427094, 10.085712099999997 47.55276789624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_81_LVCableDist_mvgd_33535_lvgd_1164210000_85,BranchTee_mvgd_33535_lvgd_1164210000_81,BranchTee_mvgd_33535_lvgd_1164210000_85,0.016771704929257343,0.0016771704929257345,0.0014700472333306635,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.091652299999996 47.552280096243805, 10.091669499999997 47.5521295962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_81_LVCableDist_mvgd_33535_lvgd_1164210000_building_446827,BranchTee_mvgd_33535_lvgd_1164210000_81,BranchTee_mvgd_33535_lvgd_1164210000_building_446827,0.03052776967281355,0.02649810407600216,0.0025990476389274528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091293733893187 47.55202662578024, 10.091669499999997 47.5521295962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_81_LVCableDist_mvgd_33535_lvgd_1164210000_building_446828,BranchTee_mvgd_33535_lvgd_1164210000_81,BranchTee_mvgd_33535_lvgd_1164210000_building_446828,0.014514275335101204,0.012598390990867845,0.0012357041947296972,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091573193112795 47.55201644965532, 10.091669499999997 47.5521295962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_82_LVCableDist_mvgd_33535_lvgd_1164210000_83,BranchTee_mvgd_33535_lvgd_1164210000_82,BranchTee_mvgd_33535_lvgd_1164210000_83,0.0186423069427843,0.00186423069427843,0.0016340063135939387,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.085813499999999 47.55237589624381, 10.085749599999998 47.552537996243835)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_82_LVCableDist_mvgd_33535_lvgd_1164210000_building_446715,BranchTee_mvgd_33535_lvgd_1164210000_82,BranchTee_mvgd_33535_lvgd_1164210000_building_446715,0.01617662982854664,0.014041314691178482,0.0013772323367314187,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08556960593225 47.552458566393724, 10.085749599999998 47.552537996243835)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_83_LVCableDist_mvgd_33535_lvgd_1164210000_84,BranchTee_mvgd_33535_lvgd_1164210000_83,BranchTee_mvgd_33535_lvgd_1164210000_84,0.026580770897702572,0.002658077089770257,0.0023298161327534243,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.086131400000001 47.55247949624382, 10.085957100000003 47.55242689624379, 10.085813499999999 47.55237589624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_83_LVCableDist_mvgd_33535_lvgd_1164210000_90,BranchTee_mvgd_33535_lvgd_1164210000_83,BranchTee_mvgd_33535_lvgd_1164210000_90,0.011946891070441229,0.001194689107044123,0.001047150199641785,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.085813499999999 47.55237589624381, 10.085672999999998 47.55232599624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_84_LVCableDist_mvgd_33535_lvgd_1164210000_97,BranchTee_mvgd_33535_lvgd_1164210000_84,BranchTee_mvgd_33535_lvgd_1164210000_97,0.014862336735068475,0.0014862336735068475,0.0013026902804677207,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.086131400000001 47.55247949624382, 10.086318399999994 47.552522196243835)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_85_LVCableDist_mvgd_33535_lvgd_1164210000_91,BranchTee_mvgd_33535_lvgd_1164210000_85,BranchTee_mvgd_33535_lvgd_1164210000_91,0.01806540080601313,0.001806540080601313,0.0015834402397314948,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.091446400000002 47.55236349624377, 10.091652299999996 47.552280096243805)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_85_LVCableDist_mvgd_33535_lvgd_1164210000_building_446831,BranchTee_mvgd_33535_lvgd_1164210000_85,BranchTee_mvgd_33535_lvgd_1164210000_building_446831,0.015611555666397207,0.013550830318432776,0.001329123526861129,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091472500001927 47.552210196268746, 10.091652299999996 47.552280096243805)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_86_LVCableDist_mvgd_33535_lvgd_1164210000_87,BranchTee_mvgd_33535_lvgd_1164210000_86,BranchTee_mvgd_33535_lvgd_1164210000_87,0.035168816906523466,0.003516881690652347,0.0030825621015285044,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089417999999995 47.553151296243875, 10.089570400000003 47.55285209624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_86_LVCableDist_mvgd_33535_lvgd_1164210000_building_446782,BranchTee_mvgd_33535_lvgd_1164210000_86,BranchTee_mvgd_33535_lvgd_1164210000_building_446782,0.02963268824313781,0.02572117339504362,0.0025228429472195523,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089209752148815 47.55274551830531, 10.089570400000003 47.55285209624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_87_LVCableDist_mvgd_33535_lvgd_1164210000_88,BranchTee_mvgd_33535_lvgd_1164210000_87,BranchTee_mvgd_33535_lvgd_1164210000_88,0.008288233380377706,0.0008288233380377706,0.0007264672614630012,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089384700000004 47.55322239624389, 10.089417999999995 47.553151296243875)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_87_LVCableDist_mvgd_33535_lvgd_1164210000_99,BranchTee_mvgd_33535_lvgd_1164210000_87,BranchTee_mvgd_33535_lvgd_1164210000_99,0.021667650556346736,0.0021667650556346737,0.0018991789974535148,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.089417999999995 47.553151296243875, 10.089698699999994 47.55319399624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_88_LVStation_mvgd_33535_lvgd_1164210000,BusBar_mvgd_33535_lvgd_1164210000_LV,BranchTee_mvgd_33535_lvgd_1164210000_88,0.47335094468114497,0.0473350944681145,0.04148941622560406,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.088636700000006 47.55721959624428, 10.088720799999999 47.556742496244176, 10.0888543 47.55664039624423, 10.088979299999997 47.55641899624416, 10.089003799999995 47.55625839624413, 10.088988799999996 47.555966096244134, 10.0889737 47.555802096244086, 10.089003999999997 47.55553939624407, 10.089113399999993 47.55545459624406, 10.089349399999998 47.55526529624408, 10.089461400000001 47.55514579624405, 10.089552999999995 47.55500279624405, 10.089610499999997 47.55482779624404, 10.089634100000003 47.554681896244006, 10.0896434 47.55451519624398, 10.089629500000004 47.554425696243946, 10.089544 47.55428329624397, 10.089417199999994 47.554147496243985, 10.089324599999998 47.55404449624397, 10.0892401 47.5539699962439, 10.0892608 47.55375249624394, 10.0893239 47.55346999624389, 10.089384700000004 47.55322239624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_89_LVCableDist_mvgd_33535_lvgd_1164210000_building_446704,BranchTee_mvgd_33535_lvgd_1164210000_89,BranchTee_mvgd_33535_lvgd_1164210000_building_446704,0.0189694775762029,0.016465506536144116,0.001615007464827138,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086607799996232 47.550666996282516, 10.086374500000003 47.55060269624367)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_8_LVCableDist_mvgd_33535_lvgd_1164210000_9,BranchTee_mvgd_33535_lvgd_1164210000_8,BranchTee_mvgd_33535_lvgd_1164210000_9,0.013648562634955556,0.0013648562634955557,0.0011963024525584191,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.097864399999995 47.55916149624441, 10.097950899999997 47.559175696244395, 10.0980428 47.55918099624446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_8_LVCableDist_mvgd_33535_lvgd_1164210000_building_447138,BranchTee_mvgd_33535_lvgd_1164210000_8,BranchTee_mvgd_33535_lvgd_1164210000_building_447138,0.01496809573162365,0.012992307095049328,0.001274341174853705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09808107903001 47.55931319020871, 10.0980428 47.55918099624446)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_90_LVCableDist_mvgd_33535_lvgd_1164210000_building_446744,BranchTee_mvgd_33535_lvgd_1164210000_90,BranchTee_mvgd_33535_lvgd_1164210000_building_446744,0.013178942968104538,0.01143932249631474,0.001122017788129322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085733700023638 47.55221474629332, 10.085672999999998 47.55232599624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_91_LVCableDist_mvgd_33535_lvgd_1164210000_93,BranchTee_mvgd_33535_lvgd_1164210000_91,BranchTee_mvgd_33535_lvgd_1164210000_93,0.01445811157046788,0.001445811157046788,0.0012672597689383212,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0912886 47.55243759624381, 10.091446400000002 47.55236349624377)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_91_LVCableDist_mvgd_33535_lvgd_1164210000_building_446829,BranchTee_mvgd_33535_lvgd_1164210000_91,BranchTee_mvgd_33535_lvgd_1164210000_building_446829,0.020002891095723653,0.017362509471088132,0.0017029893579275056,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091330576505165 47.55220149040226, 10.091446400000002 47.55236349624377)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_92_LVCableDist_mvgd_33535_lvgd_1164210000_building_446728,BranchTee_mvgd_33535_lvgd_1164210000_92,BranchTee_mvgd_33535_lvgd_1164210000_building_446728,0.018739603537747403,0.016265975870764747,0.001595436641825596,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08620519080575 47.5514991215893, 10.085997699999998 47.55159219624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_92_LVCableDist_mvgd_33535_lvgd_1164210000_building_446746,BranchTee_mvgd_33535_lvgd_1164210000_92,BranchTee_mvgd_33535_lvgd_1164210000_building_446746,0.013516144555030297,0.011732013473766298,0.0011507261738952976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086150025900997 47.551656500548354, 10.085997699999998 47.55159219624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_93_LVCableDist_mvgd_33535_lvgd_1164210000_95,BranchTee_mvgd_33535_lvgd_1164210000_93,BranchTee_mvgd_33535_lvgd_1164210000_95,0.026554324245332793,0.0026554324245332793,0.00232749807216799,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.091017500000003 47.55259039624383, 10.0912886 47.55243759624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_93_LVCableDist_mvgd_33535_lvgd_1164210000_building_446800,BranchTee_mvgd_33535_lvgd_1164210000_93,BranchTee_mvgd_33535_lvgd_1164210000_building_446800,0.047503048997949396,0.041232646530220074,0.004044274726362501,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090822349944062 47.552149696284104, 10.0912886 47.55243759624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_93_LVCableDist_mvgd_33535_lvgd_1164210000_building_446842,BranchTee_mvgd_33535_lvgd_1164210000_93,BranchTee_mvgd_33535_lvgd_1164210000_building_446842,0.012417049198963628,0.010777998704700429,0.0010571523157079062,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09128468982551 47.552325870478846, 10.0912886 47.55243759624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_94_LVCableDist_mvgd_33535_lvgd_1164210000_building_446711,BranchTee_mvgd_33535_lvgd_1164210000_94,BranchTee_mvgd_33535_lvgd_1164210000_building_446711,0.047648891475559244,0.041359237800785424,0.004056691340846616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086788201069938 47.5522025460993, 10.087085200000006 47.55258119624384)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_94_LVCableDist_mvgd_33535_lvgd_1164210000_building_446731,BranchTee_mvgd_33535_lvgd_1164210000_94,BranchTee_mvgd_33535_lvgd_1164210000_building_446731,0.0603786286756766,0.05240864969048729,0.005140465025224088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086997658662945 47.552041021834725, 10.087085200000006 47.55258119624384)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_94_LVCableDist_mvgd_33535_lvgd_1164210000_building_446733,BranchTee_mvgd_33535_lvgd_1164210000_94,BranchTee_mvgd_33535_lvgd_1164210000_building_446733,0.040034602987488316,0.03475003539313986,0.0034084324366051746,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086958109268068 47.55223132670415, 10.087085200000006 47.55258119624384)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_94_LVCableDist_mvgd_33535_lvgd_1164210000_building_446737,BranchTee_mvgd_33535_lvgd_1164210000_94,BranchTee_mvgd_33535_lvgd_1164210000_building_446737,0.0496468203406163,0.04309344005565495,0.004226789332122275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087193650000577 47.55214044627488, 10.087085200000006 47.55258119624384)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_94_LVCableDist_mvgd_33535_lvgd_1164210000_building_446740,BranchTee_mvgd_33535_lvgd_1164210000_94,BranchTee_mvgd_33535_lvgd_1164210000_building_446740,0.0241583717971557,0.02096946671993115,0.002056775187073214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087243643396222 47.55239214056054, 10.087085200000006 47.55258119624384)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_95_LVCableDist_mvgd_33535_lvgd_1164210000_building_446771,BranchTee_mvgd_33535_lvgd_1164210000_95,BranchTee_mvgd_33535_lvgd_1164210000_building_446771,0.024766682966019336,0.021497480814504782,0.0021085650729414968,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090875835450543 47.55238923932633, 10.091017500000003 47.55259039624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_96_LVCableDist_mvgd_33535_lvgd_1164210000_building_446783,BranchTee_mvgd_33535_lvgd_1164210000_96,BranchTee_mvgd_33535_lvgd_1164210000_building_446783,0.05722238717420108,0.049669032067206534,0.004871751584634939,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090182801616983 47.55190768540705, 10.089621799999996 47.55225499624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_96_LVCableDist_mvgd_33535_lvgd_1164210000_building_446791,BranchTee_mvgd_33535_lvgd_1164210000_96,BranchTee_mvgd_33535_lvgd_1164210000_building_446791,0.037131541074617386,0.032230177652767894,0.003161273987390761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090108349994617 47.55220114628263, 10.089621799999996 47.55225499624385)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_97_LVCableDist_mvgd_33535_lvgd_1164210000_building_446723,BranchTee_mvgd_33535_lvgd_1164210000_97,BranchTee_mvgd_33535_lvgd_1164210000_building_446723,0.01079783636135492,0.00937252196165607,0.0009192971318011785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08621455000791 47.55258919626649, 10.086318399999994 47.552522196243835)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_98_LVCableDist_mvgd_33535_lvgd_1164210000_building_446757,BranchTee_mvgd_33535_lvgd_1164210000_98,BranchTee_mvgd_33535_lvgd_1164210000_building_446757,0.03071954515930854,0.02666456519827981,0.002615374859380208,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089221712871936 47.5518456768282, 10.089328600000004 47.552112496243794)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_98_LVCableDist_mvgd_33535_lvgd_1164210000_building_446759,BranchTee_mvgd_33535_lvgd_1164210000_98,BranchTee_mvgd_33535_lvgd_1164210000_building_446759,0.038172399326675197,0.03313364261555407,0.003249889703883085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089541512426168 47.551800715879374, 10.089328600000004 47.552112496243794)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_98_LVCableDist_mvgd_33535_lvgd_1164210000_building_446764,BranchTee_mvgd_33535_lvgd_1164210000_98,BranchTee_mvgd_33535_lvgd_1164210000_building_446764,0.00851708852018676,0.007392832835522108,0.000725120735847302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089266700000058 47.55204834625228, 10.089328600000004 47.552112496243794)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_99_LVCableDist_mvgd_33535_lvgd_1164210000_building_446807,BranchTee_mvgd_33535_lvgd_1164210000_99,BranchTee_mvgd_33535_lvgd_1164210000_building_446807,0.017545853612456575,0.015229800935612306,0.0014938041623470846,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089676814978608 47.553036777095244, 10.089698699999994 47.55319399624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210000_9_LVCableDist_mvgd_33535_lvgd_1164210000_building_447127,BranchTee_mvgd_33535_lvgd_1164210000_9,BranchTee_mvgd_33535_lvgd_1164210000_building_447127,0.016050805928648926,0.013932099546067268,0.001366520047119216,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.097793486414009 47.559297729224255, 10.097864399999995 47.55916149624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_10_LVCableDist_mvgd_33535_lvgd_1164210001_23,BranchTee_mvgd_33535_lvgd_1164210001_10,BranchTee_mvgd_33535_lvgd_1164210001_23,0.1367385953324021,0.01367385953324021,0.01198519736698109,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.07525913044398 47.555503199151275, 10.075821700000006 47.555635896244105, 10.07644810000001 47.555769696244106, 10.076952198340157 47.55593984741499)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_10_LVCableDist_mvgd_33535_lvgd_1164210001_9,BranchTee_mvgd_33535_lvgd_1164210001_9,BranchTee_mvgd_33535_lvgd_1164210001_10,0.04486189788981162,0.004486189788981162,0.003932164866544701,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0746965637773 47.55537049915125, 10.07525913044398 47.555503199151275)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_10_LVCableDist_mvgd_33535_lvgd_1164210001_building_446629,BranchTee_mvgd_33535_lvgd_1164210001_10,BranchTee_mvgd_33535_lvgd_1164210001_building_446629,0.04108092744586203,0.03565824502300824,0.0034975135303841956,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074976630185178 47.555819493595855, 10.07525913044398 47.555503199151275)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_11_LVCableDist_mvgd_33535_lvgd_1164210001_16,BranchTee_mvgd_33535_lvgd_1164210001_11,BranchTee_mvgd_33535_lvgd_1164210001_16,0.05293730531934199,0.005293730531934199,0.004639977840829162,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.082249399999995 47.55686149624417, 10.082952299999997 47.55686279624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_11_LVCableDist_mvgd_33535_lvgd_1164210001_22,BranchTee_mvgd_33535_lvgd_1164210001_11,BranchTee_mvgd_33535_lvgd_1164210001_22,0.02764005638835809,0.002764005638835809,0.0024226629668358084,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.082249399999995 47.55686149624417, 10.0822225 47.55710959624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_11_LVCableDist_mvgd_33535_lvgd_1164210001_6,BranchTee_mvgd_33535_lvgd_1164210001_6,BranchTee_mvgd_33535_lvgd_1164210001_11,0.008572898923088946,0.0008572898923088946,0.00075141832012116,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.082135700000006 47.55685779624423, 10.082249399999995 47.55686149624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_11_LVCableDist_mvgd_33535_lvgd_1164210001_building_446665,BranchTee_mvgd_33535_lvgd_1164210001_11,BranchTee_mvgd_33535_lvgd_1164210001_building_446665,0.019472862764826737,0.016902444879869607,0.0016578642506318657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082431798258193 47.556737271650945, 10.082249399999995 47.55686149624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_12_LVCableDist_mvgd_33535_lvgd_1164210001_19,BranchTee_mvgd_33535_lvgd_1164210001_12,BranchTee_mvgd_33535_lvgd_1164210001_19,0.020127171474086675,0.0020127171474086675,0.0017641553357308638,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.082134900000005 47.55753959624426, 10.081996099999998 47.55738479624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_12_LVCableDist_mvgd_33535_lvgd_1164210001_5,BranchTee_mvgd_33535_lvgd_1164210001_5,BranchTee_mvgd_33535_lvgd_1164210001_12,0.02949841973401788,0.002949841973401788,0.0025855493225362754,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.082134900000005 47.55753959624426, 10.082227899999996 47.55779749624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_12_LVCableDist_mvgd_33535_lvgd_1164210001_building_446668,BranchTee_mvgd_33535_lvgd_1164210001_12,BranchTee_mvgd_33535_lvgd_1164210001_building_446668,0.012238309170969502,0.010622852360401527,0.0010419348971831043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082239264398963 47.5574551641709, 10.082134900000005 47.55753959624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_13_LVCableDist_mvgd_33535_lvgd_1164210001_14,BranchTee_mvgd_33535_lvgd_1164210001_13,BranchTee_mvgd_33535_lvgd_1164210001_14,0.2225013601029243,0.02225013601029243,0.019502341008935047,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.081878100000003 47.557377696244224, 10.081749100000005 47.557344896244224, 10.081501300000003 47.55729819624419, 10.080820600000001 47.557189696244194, 10.080283300000005 47.557132596244216, 10.0797969 47.557089896244214, 10.078972300000002 47.55705959624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_13_LVCableDist_mvgd_33535_lvgd_1164210001_18,BranchTee_mvgd_33535_lvgd_1164210001_13,BranchTee_mvgd_33535_lvgd_1164210001_18,0.22069231200260078,0.02206923120026008,0.019343777155942172,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.081878100000003 47.557377696244224, 10.081770599999997 47.55738569624421, 10.081417399999994 47.55735999624426, 10.08080539921759 47.557326999674615, 10.080193399217574 47.557293999674606, 10.079581399999997 47.557260996244224, 10.079216499999996 47.55726099624424, 10.079113399999999 47.55726369624424, 10.079038099999998 47.55729579624422, 10.079026199999996 47.55734129624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_13_LVCableDist_mvgd_33535_lvgd_1164210001_19,BranchTee_mvgd_33535_lvgd_1164210001_13,BranchTee_mvgd_33535_lvgd_1164210001_19,0.008921746724570754,0.0008921746724570754,0.0007819949816820979,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.081878100000003 47.557377696244224, 10.081996099999998 47.55738479624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_14_LVCableDist_mvgd_33535_lvgd_1164210001_building_446645,BranchTee_mvgd_33535_lvgd_1164210001_14,BranchTee_mvgd_33535_lvgd_1164210001_building_446645,0.0803325627374582,0.06972866445611371,0.006839286320275081,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07790617245357 47.557082499346734, 10.078972300000002 47.55705959624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_14_LVCableDist_mvgd_33535_lvgd_1164210001_building_446652,BranchTee_mvgd_33535_lvgd_1164210001_14,BranchTee_mvgd_33535_lvgd_1164210001_building_446652,0.05934800306198498,0.05151406665780296,0.005052720486510904,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07820892534397 47.55719217517891, 10.078972300000002 47.55705959624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_14_LVCableDist_mvgd_33535_lvgd_1164210001_building_446676,BranchTee_mvgd_33535_lvgd_1164210001_14,BranchTee_mvgd_33535_lvgd_1164210001_building_446676,0.02827480776992397,0.024542533144294006,0.002407236858871898,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078670173559287 47.55690853486878, 10.078972300000002 47.55705959624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_15_LVCableDist_mvgd_33535_lvgd_1164210001_8,BranchTee_mvgd_33535_lvgd_1164210001_8,BranchTee_mvgd_33535_lvgd_1164210001_15,0.1398696893430445,0.01398696893430445,0.012259639119149866,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.074005799999997 47.55498379624402, 10.074157399999994 47.554704596244015, 10.074223099999998 47.55450289624395, 10.074297299999998 47.554396596244004, 10.073857999999996 47.554298096243976, 10.073400800000002 47.55420519624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_15_LVCableDist_mvgd_33535_lvgd_1164210001_building_34328708,BranchTee_mvgd_33535_lvgd_1164210001_15,BranchTee_mvgd_33535_lvgd_1164210001_building_34328708,0.02919831346363388,0.02534413608643421,0.0024858615117206886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07338565660911 47.5544677896241, 10.073400800000002 47.55420519624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_16_LVCableDist_mvgd_33535_lvgd_1164210001_building_446672,BranchTee_mvgd_33535_lvgd_1164210001_16,BranchTee_mvgd_33535_lvgd_1164210001_building_446672,0.018436296793760784,0.016002705616984362,0.0015696139667570265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082759274231307 47.5569648521462, 10.082952299999997 47.55686279624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_17_LVCableDist_mvgd_33535_lvgd_1164210001_building_446679,BranchTee_mvgd_33535_lvgd_1164210001_17,BranchTee_mvgd_33535_lvgd_1164210001_building_446679,0.017986474002232827,0.015612259433938094,0.0015313173313726983,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0840601793442 47.55690532053557, 10.084084000000002 47.55706639624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_17_LVCableDist_mvgd_33535_lvgd_1164210001_building_446680,BranchTee_mvgd_33535_lvgd_1164210001_17,BranchTee_mvgd_33535_lvgd_1164210001_building_446680,0.020288294603869984,0.017610239716159146,0.00172728780232549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084277915858713 47.55693964065865, 10.084084000000002 47.55706639624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_17_LVCableDist_mvgd_33535_lvgd_1164210001_building_446681,BranchTee_mvgd_33535_lvgd_1164210001_17,BranchTee_mvgd_33535_lvgd_1164210001_building_446681,0.016093400085209302,0.013969071273961674,0.0013701463926802198,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.084028079030507 47.557206195100306, 10.084084000000002 47.55706639624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_18_LVCableDist_mvgd_33535_lvgd_1164210001_20,BranchTee_mvgd_33535_lvgd_1164210001_18,BranchTee_mvgd_33535_lvgd_1164210001_20,0.037174864546634226,0.0037174864546634227,0.003258393049885459,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.079026199999996 47.55734129624424, 10.0790539 47.55737079624421, 10.079184800000005 47.557426996244274, 10.079442599999995 47.55751259624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_18_LVCableDist_mvgd_33535_lvgd_1164210001_building_446653,BranchTee_mvgd_33535_lvgd_1164210001_18,BranchTee_mvgd_33535_lvgd_1164210001_building_446653,0.03796765180600889,0.03295592176761571,0.0032324580812697263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078528350018656 47.55728749631246, 10.079026199999996 47.55734129624424)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_19_LVCableDist_mvgd_33535_lvgd_1164210001_22,BranchTee_mvgd_33535_lvgd_1164210001_19,BranchTee_mvgd_33535_lvgd_1164210001_22,0.03559212005910969,0.0035592120059109687,0.0031196648070044393,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.0822225 47.55710959624421, 10.082202399999998 47.55717809624419, 10.082160100000001 47.55723149624423, 10.0821407 47.55725839624427, 10.081996099999998 47.55738479624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_1_LVCableDist_mvgd_33535_lvgd_1164210001_16,BranchTee_mvgd_33535_lvgd_1164210001_1,BranchTee_mvgd_33535_lvgd_1164210001_16,0.04334788478233396,0.004334788478233396,0.003799460959025357,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.082952299999997 47.55686279624422, 10.083145299999998 47.5568787962442, 10.083510899999999 47.55695179624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_1_LVCableDist_mvgd_33535_lvgd_1164210001_17,BranchTee_mvgd_33535_lvgd_1164210001_1,BranchTee_mvgd_33535_lvgd_1164210001_17,0.045000807291199374,0.004500080729119937,0.003944340336006811,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.083510899999999 47.55695179624421, 10.084084000000002 47.55706639624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_1_LVCableDist_mvgd_33535_lvgd_1164210001_building_446673,BranchTee_mvgd_33535_lvgd_1164210001_1,BranchTee_mvgd_33535_lvgd_1164210001_building_446673,0.017208453462302643,0.014936937605278694,0.0014650788714716005,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.083390732275316 47.55682006645944, 10.083510899999999 47.55695179624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_20_LVCableDist_mvgd_33535_lvgd_1164210001_building_446655,BranchTee_mvgd_33535_lvgd_1164210001_20,BranchTee_mvgd_33535_lvgd_1164210001_building_446655,0.014455148842803474,0.012547069195553415,0.0012306703330407665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07947672391829 47.557384567622485, 10.079442599999995 47.55751259624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_21_LVCableDist_mvgd_33535_lvgd_1164210001_24,BranchTee_mvgd_33535_lvgd_1164210001_21,BranchTee_mvgd_33535_lvgd_1164210001_24,0.06547206570121088,0.006547206570121088,0.005738655041361399,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.077910900000001 47.55624539624413, 10.078760599999995 47.55636989624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_21_LVCableDist_mvgd_33535_lvgd_1164210001_building_446644,BranchTee_mvgd_33535_lvgd_1164210001_21,BranchTee_mvgd_33535_lvgd_1164210001_building_446644,0.03072251044883359,0.026667139069587557,0.0026156273157116536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078439400007168 47.55619944627449, 10.078760599999995 47.55636989624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_21_LVCableDist_mvgd_33535_lvgd_1164210001_building_446662,BranchTee_mvgd_33535_lvgd_1164210001_21,BranchTee_mvgd_33535_lvgd_1164210001_building_446662,0.01303867938128064,0.011317573702951595,0.0011100761445677616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078795121801338 47.55625490027986, 10.078760599999995 47.55636989624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_21_LVCableDist_mvgd_33535_lvgd_1164210001_building_446666,BranchTee_mvgd_33535_lvgd_1164210001_21,BranchTee_mvgd_33535_lvgd_1164210001_building_446666,0.023852326934254865,0.020703819778933222,0.002030719396334048,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079048794350761 47.55628086755709, 10.078760599999995 47.55636989624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_22_LVCableDist_mvgd_33535_lvgd_1164210001_building_446657,BranchTee_mvgd_33535_lvgd_1164210001_22,BranchTee_mvgd_33535_lvgd_1164210001_building_446657,0.02346537473422191,0.02036794526930462,0.0019977753846144803,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.081937800001816 47.5570237962851, 10.0822225 47.55710959624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_22_LVCableDist_mvgd_33535_lvgd_1164210001_building_446660,BranchTee_mvgd_33535_lvgd_1164210001_22,BranchTee_mvgd_33535_lvgd_1164210001_building_446660,0.012456631211650693,0.010812355891712802,0.0010605222158912768,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08210550104398 47.55703035220815, 10.0822225 47.55710959624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_23_LVCableDist_mvgd_33535_lvgd_1164210001_3,BranchTee_mvgd_33535_lvgd_1164210001_3,BranchTee_mvgd_33535_lvgd_1164210001_23,0.04241264602546857,0.004241264602546857,0.003717486875124368,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.076952198340157 47.55593984741499, 10.077456299999998 47.556109996244125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_23_LVCableDist_mvgd_33535_lvgd_1164210001_building_446632,BranchTee_mvgd_33535_lvgd_1164210001_23,BranchTee_mvgd_33535_lvgd_1164210001_building_446632,0.03239352335531381,0.028117578272412385,0.002757892610417162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.076589200011417 47.55609624628604, 10.076952198340157 47.55593984741499)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_23_LVCableDist_mvgd_33535_lvgd_1164210001_building_446633,BranchTee_mvgd_33535_lvgd_1164210001_23,BranchTee_mvgd_33535_lvgd_1164210001_building_446633,0.021818410613878354,0.01893838041284641,0.0018575575352840336,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07699407039192 47.55613415668962, 10.076952198340157 47.55593984741499)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_24_LVCableDist_mvgd_33535_lvgd_1164210001_3,BranchTee_mvgd_33535_lvgd_1164210001_3,BranchTee_mvgd_33535_lvgd_1164210001_24,0.037397291299249125,0.0037397291299249126,0.0032778888515156116,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.077456299999998 47.556109996244125, 10.077910900000001 47.55624539624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_24_LVCableDist_mvgd_33535_lvgd_1164210001_building_446647,BranchTee_mvgd_33535_lvgd_1164210001_24,BranchTee_mvgd_33535_lvgd_1164210001_building_446647,0.06521296292911632,0.05660485182247297,0.005552046518462949,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077826416056277 47.55682953336446, 10.077910900000001 47.55624539624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_24_LVCableDist_mvgd_33535_lvgd_1164210001_building_446658,BranchTee_mvgd_33535_lvgd_1164210001_24,BranchTee_mvgd_33535_lvgd_1164210001_building_446658,0.023009659466738996,0.01997238441712945,0.0019589770805566033,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078127327701344 47.55639156234382, 10.077910900000001 47.55624539624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_25_LVCableDist_mvgd_33535_lvgd_1164210001_26,BranchTee_mvgd_33535_lvgd_1164210001_25,BranchTee_mvgd_33535_lvgd_1164210001_26,0.0695949575366561,0.06040842314181749,0.0059251170984818205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072091199999996 47.55496609624402, 10.073011599999996 47.55502169624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_25_LVCableDist_mvgd_33535_lvgd_1164210001_27,BranchTee_mvgd_33535_lvgd_1164210001_25,BranchTee_mvgd_33535_lvgd_1164210001_27,0.03935619233787023,0.03416117494927136,0.003350674479964033,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073011599999996 47.55502169624404, 10.073531200000005 47.55505929624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_25_LVCableDist_mvgd_33535_lvgd_1164210001_building_34328706,BranchTee_mvgd_33535_lvgd_1164210001_25,BranchTee_mvgd_33535_lvgd_1164210001_building_34328706,0.02652310754223551,0.023022057346660425,0.0022581020747171024,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073164085351653 47.55480651604067, 10.073011599999996 47.55502169624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_25_LVCableDist_mvgd_33535_lvgd_1164210001_building_446572,BranchTee_mvgd_33535_lvgd_1164210001_25,BranchTee_mvgd_33535_lvgd_1164210001_building_446572,0.037574334715334834,0.03261452253291063,0.0031989721808314583,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072838982531668 47.554704407289286, 10.073011599999996 47.55502169624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_25_LVCableDist_mvgd_33535_lvgd_1164210001_building_446583,BranchTee_mvgd_33535_lvgd_1164210001_25,BranchTee_mvgd_33535_lvgd_1164210001_building_446583,0.0295401306435883,0.025640833398634644,0.002514962855973051,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072756400010483 47.5552235963011, 10.073011599999996 47.55502169624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_25_LVCableDist_mvgd_33535_lvgd_1164210001_building_446589,BranchTee_mvgd_33535_lvgd_1164210001_25,BranchTee_mvgd_33535_lvgd_1164210001_building_446589,0.017379638484692983,0.015085526204713508,0.0014796530782686197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073159320616039 47.55490152242526, 10.073011599999996 47.55502169624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_26_LVCableDist_mvgd_33535_lvgd_1164210001_building_446563,BranchTee_mvgd_33535_lvgd_1164210001_26,BranchTee_mvgd_33535_lvgd_1164210001_building_446563,0.016936699138884088,0.014701054852551389,0.0014419424799101063,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071941752096235 47.554852196160574, 10.072091199999996 47.55496609624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_26_LVCableDist_mvgd_33535_lvgd_1164210001_building_446571,BranchTee_mvgd_33535_lvgd_1164210001_26,BranchTee_mvgd_33535_lvgd_1164210001_building_446571,0.03271997861672537,0.02840094143931762,0.00278568608453862,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072518775634562 47.55491394316578, 10.072091199999996 47.55496609624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_26_LVCableDist_mvgd_33535_lvgd_1164210001_building_446574,BranchTee_mvgd_33535_lvgd_1164210001_26,BranchTee_mvgd_33535_lvgd_1164210001_building_446574,0.02690212780203407,0.02335104693216557,0.0022903707835645877,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07181491382594 47.555119563994666, 10.072091199999996 47.55496609624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_26_LVCableDist_mvgd_33535_lvgd_1164210001_building_446579,BranchTee_mvgd_33535_lvgd_1164210001_26,BranchTee_mvgd_33535_lvgd_1164210001_building_446579,0.022464088747882065,0.019498829033161632,0.0019125287384762503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072093559270403 47.55516827339009, 10.072091199999996 47.55496609624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_26_LVCableDist_mvgd_33535_lvgd_1164210001_building_446582,BranchTee_mvgd_33535_lvgd_1164210001_26,BranchTee_mvgd_33535_lvgd_1164210001_building_446582,0.036921150678564295,0.032047558788993805,0.00314336194638759,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072426920141087 47.55520823824326, 10.072091199999996 47.55496609624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_27_LVCableDist_mvgd_33535_lvgd_1164210001_building_34328707,BranchTee_mvgd_33535_lvgd_1164210001_27,BranchTee_mvgd_33535_lvgd_1164210001_building_34328707,0.04055094002261555,0.035198215939630295,0.003452391905849773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07351868746349 47.554694424439866, 10.073531200000005 47.55505929624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_27_LVCableDist_mvgd_33535_lvgd_1164210001_building_446593,BranchTee_mvgd_33535_lvgd_1164210001_27,BranchTee_mvgd_33535_lvgd_1164210001_building_446593,0.014504013610901352,0.012589483814262373,0.001234830540665257,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073508750002068 47.554929646282595, 10.073531200000005 47.55505929624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_27_LVStation_mvgd_33535_lvgd_1164210001,BusBar_mvgd_33535_lvgd_1164210001_LV,BranchTee_mvgd_33535_lvgd_1164210001_27,0.017239924485387394,0.014964254453316258,0.0014677582250280411,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073531200000005 47.55505929624403, 10.073738500000001 47.55512509624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_28_LVCableDist_mvgd_33535_lvgd_1164210001_41,BranchTee_mvgd_33535_lvgd_1164210001_28,BranchTee_mvgd_33535_lvgd_1164210001_41,0.05706156316796466,0.018259700213748693,0.004678795297686603,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0727017 47.555703796244124, 10.073119699999996 47.55577039624413, 10.073434300000004 47.55583389624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_28_LVCableDist_mvgd_33535_lvgd_1164210001_48,BranchTee_mvgd_33535_lvgd_1164210001_28,BranchTee_mvgd_33535_lvgd_1164210001_48,0.09888168482380993,0.03164213914361918,0.008107859937505336,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.071452799999992 47.555633596244114, 10.071574799999995 47.55560709624408, 10.071679900000003 47.555565896244076, 10.071816699999996 47.55554289624409, 10.071977300000004 47.55554409624409, 10.072335800000001 47.55562739624407, 10.0727017 47.555703796244124)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_28_LVCableDist_mvgd_33535_lvgd_1164210001_49,BranchTee_mvgd_33535_lvgd_1164210001_28,BranchTee_mvgd_33535_lvgd_1164210001_49,0.007744996779450119,0.002478398969424038,0.0006350554120927644,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.072649599999998 47.55576389624412, 10.0727017 47.555703796244124)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_29_LVCableDist_mvgd_33535_lvgd_1164210001_47,BranchTee_mvgd_33535_lvgd_1164210001_29,BranchTee_mvgd_33535_lvgd_1164210001_47,0.020404488864971145,0.006529436436790766,0.0016730776595114954,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073476599999994 47.55544009624411, 10.073421899999998 47.55543669624406, 10.073337899999999 47.555434196244036, 10.073206899999995 47.55542369624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_29_LVCableDist_mvgd_33535_lvgd_1164210001_building_446587,BranchTee_mvgd_33535_lvgd_1164210001_29,BranchTee_mvgd_33535_lvgd_1164210001_building_446587,0.013299293828750558,0.011543787043355484,0.001132264118718074,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073062062661583 47.5554921718727, 10.073206899999995 47.55542369624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_2_LVCableDist_mvgd_33535_lvgd_1164210001_21,BranchTee_mvgd_33535_lvgd_1164210001_2,BranchTee_mvgd_33535_lvgd_1164210001_21,0.0625539848448395,0.00625539848448395,0.005482883984832689,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.078760599999995 47.55636989624412, 10.079576100000004 47.55647669624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_2_LVCableDist_mvgd_33535_lvgd_1164210001_6,BranchTee_mvgd_33535_lvgd_1164210001_2,BranchTee_mvgd_33535_lvgd_1164210001_6,0.19921099466902847,0.019921099466902847,0.01746093034652634,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.079576100000004 47.55647669624417, 10.0800472 47.556578396244205, 10.0806963 47.556755796244246, 10.080900200000006 47.55679199624419, 10.0810997 47.556808396244165, 10.0815133 47.55683899624419, 10.082135700000006 47.55685779624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_2_LVCableDist_mvgd_33535_lvgd_1164210001_building_446669,BranchTee_mvgd_33535_lvgd_1164210001_2,BranchTee_mvgd_33535_lvgd_1164210001_building_446669,0.01971139238174268,0.017109488587352645,0.0016781719850095839,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079439918680006 47.55632519756574, 10.079576100000004 47.55647669624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_30_LVCableDist_mvgd_33535_lvgd_1164210001_36,BranchTee_mvgd_33535_lvgd_1164210001_30,BranchTee_mvgd_33535_lvgd_1164210001_36,0.04042357406347692,0.012935543700312616,0.003314553926382179,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.068851600000004 47.55574219624414, 10.069119899999995 47.555633596244114, 10.069173500000003 47.55560459624409, 10.069231200000004 47.55550659624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_30_LVCableDist_mvgd_33535_lvgd_1164210001_building_446546,BranchTee_mvgd_33535_lvgd_1164210001_30,BranchTee_mvgd_33535_lvgd_1164210001_building_446546,0.018032612507772102,0.015652307656746186,0.0015352454327430477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.068837735741512 47.555580169961694, 10.068851600000004 47.55574219624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_31_LVCableDist_mvgd_33535_lvgd_1164210001_36,BranchTee_mvgd_33535_lvgd_1164210001_31,BranchTee_mvgd_33535_lvgd_1164210001_36,0.028136989033910913,0.009003836490851493,0.002307108404924156,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.069231200000004 47.55550659624411, 10.069603900000004 47.55552409624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_31_LVCableDist_mvgd_33535_lvgd_1164210001_43,BranchTee_mvgd_33535_lvgd_1164210001_31,BranchTee_mvgd_33535_lvgd_1164210001_43,0.028000037726194294,0.008960012072382175,0.0022958790046241607,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.069603900000004 47.55552409624406, 10.069961799999996 47.55559229624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_31_LVCableDist_mvgd_33535_lvgd_1164210001_building_446564,BranchTee_mvgd_33535_lvgd_1164210001_31,BranchTee_mvgd_33535_lvgd_1164210001_building_446564,0.010548698315346322,0.009156270137720609,0.0008980862258887727,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0694887483368 47.55557814631675, 10.069603900000004 47.55552409624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_32_LVCableDist_mvgd_33535_lvgd_1164210001_42,BranchTee_mvgd_33535_lvgd_1164210001_32,BranchTee_mvgd_33535_lvgd_1164210001_42,0.03005210478751188,0.009616673532003803,0.002464139409421844,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.072059600000003 47.555908796244104, 10.072338500000003 47.555915996244124, 10.072456500000003 47.555901496244125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_32_LVCableDist_mvgd_33535_lvgd_1164210001_49,BranchTee_mvgd_33535_lvgd_1164210001_32,BranchTee_mvgd_33535_lvgd_1164210001_49,0.021100338970928674,0.006752108470697175,0.001730134284372355,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.072456500000003 47.555901496244125, 10.072649599999998 47.55576389624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_32_LVCableDist_mvgd_33535_lvgd_1164210001_building_446595,BranchTee_mvgd_33535_lvgd_1164210001_32,BranchTee_mvgd_33535_lvgd_1164210001_building_446595,0.014066675682213054,0.01220987449216093,0.0011975968310574767,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072463207372634 47.55577497353816, 10.072456500000003 47.555901496244125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_32_LVCableDist_mvgd_33535_lvgd_1164210001_building_446597,BranchTee_mvgd_33535_lvgd_1164210001_32,BranchTee_mvgd_33535_lvgd_1164210001_building_446597,0.013328573675088835,0.011569201949977109,0.0011347569217072628,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072489550008507 47.55601934626313, 10.072456500000003 47.555901496244125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_33_LVCableDist_mvgd_33535_lvgd_1164210001_34,BranchTee_mvgd_33535_lvgd_1164210001_33,BranchTee_mvgd_33535_lvgd_1164210001_34,0.03945958767248944,0.012627068055196622,0.003235511314459513,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.070178900000005 47.55560979624411, 10.070702300000002 47.55562579624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_33_LVCableDist_mvgd_33535_lvgd_1164210001_43,BranchTee_mvgd_33535_lvgd_1164210001_33,BranchTee_mvgd_33535_lvgd_1164210001_43,0.016465984517402752,0.005269115045568881,0.0013501377574432895,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.069961799999996 47.55559229624411, 10.070178900000005 47.55560979624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_33_LVCableDist_mvgd_33535_lvgd_1164210001_building_446592,BranchTee_mvgd_33535_lvgd_1164210001_33,BranchTee_mvgd_33535_lvgd_1164210001_building_446592,0.02799612083940133,0.024300632888600352,0.002383510244823842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070192700000565 47.555357996272505, 10.070178900000005 47.55560979624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_33_LVCableDist_mvgd_33535_lvgd_1164210001_building_446620,BranchTee_mvgd_33535_lvgd_1164210001_33,BranchTee_mvgd_33535_lvgd_1164210001_building_446620,0.025304533013884876,0.021964334656052072,0.0021543560990133046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070293249998683 47.55582394629178, 10.070178900000005 47.55560979624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_34_LVCableDist_mvgd_33535_lvgd_1164210001_37,BranchTee_mvgd_33535_lvgd_1164210001_34,BranchTee_mvgd_33535_lvgd_1164210001_37,0.04546169499301017,0.014547742397763255,0.003727657514955275,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.070702300000002 47.55562579624413, 10.071305099999998 47.55564719624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_34_LVCableDist_mvgd_33535_lvgd_1164210001_building_446596,BranchTee_mvgd_33535_lvgd_1164210001_34,BranchTee_mvgd_33535_lvgd_1164210001_building_446596,0.0236443953164172,0.020523335134650128,0.0020130166887274512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070488214447158 47.555470148935, 10.070702300000002 47.55562579624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_34_LVCableDist_mvgd_33535_lvgd_1164210001_building_446624,BranchTee_mvgd_33535_lvgd_1164210001_34,BranchTee_mvgd_33535_lvgd_1164210001_building_446624,0.02308178855183317,0.02003499246299119,0.0019651179460807213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070659971606265 47.55583154903441, 10.070702300000002 47.55562579624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_34_LVCableDist_mvgd_33535_lvgd_1164210001_building_446631,BranchTee_mvgd_33535_lvgd_1164210001_34,BranchTee_mvgd_33535_lvgd_1164210001_building_446631,0.01883197975467571,0.016346158427058517,0.0016033012906706892,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.070832515244188 47.555770490235425, 10.070702300000002 47.55562579624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_35_LVCableDist_mvgd_33535_lvgd_1164210001_45,BranchTee_mvgd_33535_lvgd_1164210001_35,BranchTee_mvgd_33535_lvgd_1164210001_45,0.05445519659559024,0.017425662910588877,0.0044650847894943,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.066482400000002 47.555341196244015, 10.066969499999992 47.55530369624407, 10.067202299999998 47.55530259624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_35_LVCableDist_mvgd_33535_lvgd_1164210001_building_446549,BranchTee_mvgd_33535_lvgd_1164210001_35,BranchTee_mvgd_33535_lvgd_1164210001_building_446549,0.01405533667273254,0.012200032231931845,0.0011966314599827484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.066601082457804 47.55543881950901, 10.066482400000002 47.555341196244015)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_36_LVCableDist_mvgd_33535_lvgd_1164210001_44,BranchTee_mvgd_33535_lvgd_1164210001_36,BranchTee_mvgd_33535_lvgd_1164210001_44,0.07151420804881845,0.022884546575621903,0.005863848127533309,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.06829249880725 47.55541064881588, 10.069041699999996 47.55549289624405, 10.069231200000004 47.55550659624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_37_LVCableDist_mvgd_33535_lvgd_1164210001_48,BranchTee_mvgd_33535_lvgd_1164210001_37,BranchTee_mvgd_33535_lvgd_1164210001_48,0.011226027468467459,0.003592328789909587,0.0009204845015646929,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.071305099999998 47.55564719624407, 10.071452799999992 47.555633596244114)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_37_LVCableDist_mvgd_33535_lvgd_1164210001_building_446556,BranchTee_mvgd_33535_lvgd_1164210001_37,BranchTee_mvgd_33535_lvgd_1164210001_building_446556,0.019055773395464676,0.016540411307263338,0.0016223544458776854,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071158824481357 47.55578714043297, 10.071305099999998 47.55564719624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_37_LVCableDist_mvgd_33535_lvgd_1164210001_building_446604,BranchTee_mvgd_33535_lvgd_1164210001_37,BranchTee_mvgd_33535_lvgd_1164210001_building_446604,0.02192611890987925,0.019031871213775187,0.0018667275138122496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071099260242736 47.5555076457382, 10.071305099999998 47.55564719624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_38_LVCableDist_mvgd_33535_lvgd_1164210001_42,BranchTee_mvgd_33535_lvgd_1164210001_38,BranchTee_mvgd_33535_lvgd_1164210001_42,0.31846620995561337,0.10190918718579628,0.02611281785650295,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.071544599999998 47.55787059624429, 10.071718100000002 47.557772296244295, 10.071992899999993 47.55770139624427, 10.072182299999994 47.557671796244286, 10.072359999999996 47.557638896244256, 10.072374499999999 47.5576003962443, 10.072186799999999 47.55723529624421, 10.072005899999995 47.557059596244216, 10.07186639999999 47.556958296244225, 10.071458700000006 47.556842396244186, 10.071381800000003 47.55681329624422, 10.071355800000003 47.5567862962442, 10.071349199999998 47.55675549624419, 10.071405199999997 47.55650609624416, 10.071469700000003 47.55625709624413, 10.071557799999997 47.55614949624414, 10.071748399999997 47.55601739624414, 10.071877199999998 47.555944996244115, 10.072059600000003 47.555908796244104)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_38_LVCableDist_mvgd_33535_lvgd_1164210001_building_446607,BranchTee_mvgd_33535_lvgd_1164210001_38,BranchTee_mvgd_33535_lvgd_1164210001_building_446607,0.015639838532456003,0.01357537984617181,0.001331531449779837,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071359917461445 47.55793497235676, 10.071544599999998 47.55787059624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_39_LVCableDist_mvgd_33535_lvgd_1164210001_40,BranchTee_mvgd_33535_lvgd_1164210001_39,BranchTee_mvgd_33535_lvgd_1164210001_40,0.06094107332766954,0.019501143464854254,0.004996897937796981,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.074846500000003 47.558294896244306, 10.074792999999998 47.558270896244345, 10.074123099999994 47.55804989624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_39_LVCableDist_mvgd_33535_lvgd_1164210001_41,BranchTee_mvgd_33535_lvgd_1164210001_39,BranchTee_mvgd_33535_lvgd_1164210001_41,0.483052215914687,0.15457670909269985,0.03960814094254592,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.074123099999994 47.55804989624432, 10.074047799999999 47.55799529624429, 10.074001499999996 47.55793569624428, 10.074008800000005 47.55787889624432, 10.074039599999997 47.55782319624425, 10.074124800000002 47.55778829624429, 10.074731002194142 47.557601147935145, 10.075337199999998 47.55741399624423, 10.075846600000002 47.5573170962442, 10.076147699999995 47.55729619624422, 10.076227099999999 47.557284296244205, 10.076267699999997 47.55725719624426, 10.076270100000004 47.557215096244214, 10.076253699999999 47.557170796244236, 10.076209100000003 47.557134196244206, 10.076103000000002 47.557082096244166, 10.075630998414749 47.55690854727184, 10.075159000000003 47.55673499624415, 10.074451000000002 47.55640899624418, 10.073904199999996 47.556216096244135, 10.073662499999994 47.55608929624413, 10.0734911 47.55595029624413, 10.073434300000004 47.55583389624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_39_LVCableDist_mvgd_33535_lvgd_1164210001_building_446683,BranchTee_mvgd_33535_lvgd_1164210001_39,BranchTee_mvgd_33535_lvgd_1164210001_building_446683,0.02659733478681226,0.02308648659495304,0.0022644215715827086,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074472824437052 47.55801654200746, 10.074123099999994 47.55804989624432)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_3_LVCableDist_mvgd_33535_lvgd_1164210001_building_446640,BranchTee_mvgd_33535_lvgd_1164210001_3,BranchTee_mvgd_33535_lvgd_1164210001_building_446640,0.016271185901615814,0.014123389362602526,0.0013852825723395428,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077562459402824 47.55598244760424, 10.077456299999998 47.556109996244125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_3_LVCableDist_mvgd_33535_lvgd_1164210001_building_446649,BranchTee_mvgd_33535_lvgd_1164210001_3,BranchTee_mvgd_33535_lvgd_1164210001_building_446649,0.024418363960725113,0.021195139917909396,0.0020789101817389557,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077559534990685 47.556318328301856, 10.077456299999998 47.556109996244125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_40_LVCableDist_mvgd_33535_lvgd_1164210001_building_446689,BranchTee_mvgd_33535_lvgd_1164210001_40,BranchTee_mvgd_33535_lvgd_1164210001_building_446689,0.02325639636258765,0.02018655204272608,0.001979983559361467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075115053296377 47.558191557923294, 10.074846500000003 47.558294896244306)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_41_LVCableDist_mvgd_33535_lvgd_1164210001_47,BranchTee_mvgd_33535_lvgd_1164210001_41,BranchTee_mvgd_33535_lvgd_1164210001_47,0.04391169991568785,0.014051743973020113,0.003600564787792054,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073434300000004 47.55583389624414, 10.073435300000002 47.55572139624412, 10.073437700000001 47.555693096244084, 10.073476599999994 47.55544009624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_41_LVCableDist_mvgd_33535_lvgd_1164210001_building_446603,BranchTee_mvgd_33535_lvgd_1164210001_41,BranchTee_mvgd_33535_lvgd_1164210001_building_446603,0.018588062859359957,0.016134438561924442,0.0015825348987049675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073227314895396 47.555925023114824, 10.073434300000004 47.55583389624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_42_LVCableDist_mvgd_33535_lvgd_1164210001_building_446594,BranchTee_mvgd_33535_lvgd_1164210001_42,BranchTee_mvgd_33535_lvgd_1164210001_building_446594,0.016474603331785465,0.014299955691989783,0.0014026009548242593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072025171335529 47.55576236867613, 10.072059600000003 47.555908796244104)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_43_LVCableDist_mvgd_33535_lvgd_1164210001_building_446617,BranchTee_mvgd_33535_lvgd_1164210001_43,BranchTee_mvgd_33535_lvgd_1164210001_building_446617,0.024396212009047874,0.021175912023853556,0.0020770242274644897,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.069791325329954 47.55577900544374, 10.069961799999996 47.55559229624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_43_LVCableDist_mvgd_33535_lvgd_1164210001_building_446619,BranchTee_mvgd_33535_lvgd_1164210001_43,BranchTee_mvgd_33535_lvgd_1164210001_building_446619,0.025294340401020254,0.02195548746808558,0.0021534883288917327,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07002393978689 47.555816021012646, 10.069961799999996 47.55559229624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_44_LVCableDist_mvgd_33535_lvgd_1164210001_45,BranchTee_mvgd_33535_lvgd_1164210001_44,BranchTee_mvgd_33535_lvgd_1164210001_45,0.08300300779546294,0.02656096249454814,0.006805878791369759,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.067202299999998 47.55530259624405, 10.067543299999995 47.55532839624411, 10.06829249880725 47.55541064881588)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_44_LVCableDist_mvgd_33535_lvgd_1164210001_building_446538,BranchTee_mvgd_33535_lvgd_1164210001_44,BranchTee_mvgd_33535_lvgd_1164210001_building_446538,0.029770076010999808,0.025840425977547835,0.0025345397517193987,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06796143046414 47.55526426832248, 10.06829249880725 47.55541064881588)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_44_LVCableDist_mvgd_33535_lvgd_1164210001_building_446544,BranchTee_mvgd_33535_lvgd_1164210001_44,BranchTee_mvgd_33535_lvgd_1164210001_building_446544,0.0271337768083661,0.023552118269661776,0.0023100927222918484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.068566988816972 47.5555688203869, 10.06829249880725 47.55541064881588)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_45_LVCableDist_mvgd_33535_lvgd_1164210001_building_446551,BranchTee_mvgd_33535_lvgd_1164210001_45,BranchTee_mvgd_33535_lvgd_1164210001_building_446551,0.013739575120568302,0.011925951204653286,0.0011697484179062291,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.067276074383276 47.55541569237405, 10.067202299999998 47.55530259624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_46_LVCableDist_mvgd_33535_lvgd_1164210001_47,BranchTee_mvgd_33535_lvgd_1164210001_46,BranchTee_mvgd_33535_lvgd_1164210001_47,0.016605287379539296,0.005313691961452574,0.001361559974784238,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073476599999994 47.55544009624411, 10.073534000000004 47.55529579624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_46_LVCableDist_mvgd_33535_lvgd_1164210001_building_446575,BranchTee_mvgd_33535_lvgd_1164210001_46,BranchTee_mvgd_33535_lvgd_1164210001_building_446575,0.011703735332163422,0.01015884226831785,0.0009964227982491739,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07366118388892 47.55535631950126, 10.073534000000004 47.55529579624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_46_LVStation_mvgd_33535_lvgd_1164210001,BusBar_mvgd_33535_lvgd_1164210001_LV,BranchTee_mvgd_33535_lvgd_1164210001_46,0.02443177357639283,0.007818167544445706,0.0020032971579640652,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.073738500000001 47.55512509624403, 10.073534000000004 47.55529579624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_47_LVCableDist_mvgd_33535_lvgd_1164210001_building_446576,BranchTee_mvgd_33535_lvgd_1164210001_47,BranchTee_mvgd_33535_lvgd_1164210001_building_446576,0.019610503161123675,0.01702191674385535,0.0016695825631994287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073678200003346 47.555551796283765, 10.073476599999994 47.55544009624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_48_LVCableDist_mvgd_33535_lvgd_1164210001_building_446557,BranchTee_mvgd_33535_lvgd_1164210001_48,BranchTee_mvgd_33535_lvgd_1164210001_building_446557,0.023282374263004,0.02020910086028747,0.001982195244049377,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071472999999408 47.55584269628261, 10.071452799999992 47.555633596244114)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_48_LVCableDist_mvgd_33535_lvgd_1164210001_building_446613,BranchTee_mvgd_33535_lvgd_1164210001_48,BranchTee_mvgd_33535_lvgd_1164210001_building_446613,0.016285781026442573,0.014136057930952153,0.0013865251598304533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.071409455344149 47.55548999512413, 10.071452799999992 47.555633596244114)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_49_LVCableDist_mvgd_33535_lvgd_1164210001_building_446602,BranchTee_mvgd_33535_lvgd_1164210001_49,BranchTee_mvgd_33535_lvgd_1164210001_building_446602,0.013943180568138194,0.012102680733143953,0.0011870828076586046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.072713712233904 47.55588162265798, 10.072649599999998 47.55576389624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_4_LVCableDist_mvgd_33535_lvgd_1164210001_7,BranchTee_mvgd_33535_lvgd_1164210001_4,BranchTee_mvgd_33535_lvgd_1164210001_7,0.025472687402167314,0.0025472687402167318,0.0022326921323144833,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.073823700000004 47.55514659624404, 10.074133999999999 47.55523779624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_4_LVCableDist_mvgd_33535_lvgd_1164210001_9,BranchTee_mvgd_33535_lvgd_1164210001_4,BranchTee_mvgd_33535_lvgd_1164210001_9,0.0448618978899651,0.00448618978899651,0.0039321648665581535,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.074133999999999 47.55523779624404, 10.0746965637773 47.55537049915125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_4_LVCableDist_mvgd_33535_lvgd_1164210001_building_446585,BranchTee_mvgd_33535_lvgd_1164210001_4,BranchTee_mvgd_33535_lvgd_1164210001_building_446585,0.040748579345913624,0.035369766872253024,0.0034692183567199965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074056984273376 47.555600812480876, 10.074133999999999 47.55523779624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_5_LVCableDist_mvgd_33535_lvgd_1164210001_building_446670,BranchTee_mvgd_33535_lvgd_1164210001_5,BranchTee_mvgd_33535_lvgd_1164210001_building_446670,0.023523062587478633,0.02041801832593145,0.002002686764659882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082435609489178 47.55763937430145, 10.082227899999996 47.55779749624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_5_LVCableDist_mvgd_33535_lvgd_1164210001_building_446675,BranchTee_mvgd_33535_lvgd_1164210001_5,BranchTee_mvgd_33535_lvgd_1164210001_building_446675,0.021271048249229412,0.01846326988033113,0.0018109566575675886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.082504029954366 47.55775724113754, 10.082227899999996 47.55779749624428)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_6_LVCableDist_mvgd_33535_lvgd_1164210001_building_446659,BranchTee_mvgd_33535_lvgd_1164210001_6,BranchTee_mvgd_33535_lvgd_1164210001_building_446659,0.00866575513568971,0.007521875457778668,0.0007377777894136612,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08212870000109 47.55693564625293, 10.082135700000006 47.55685779624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_7_LVCableDist_mvgd_33535_lvgd_1164210001_8,BranchTee_mvgd_33535_lvgd_1164210001_7,BranchTee_mvgd_33535_lvgd_1164210001_8,0.022699543580853382,0.002269954358085338,0.0019896248699612647,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.073823700000004 47.55514659624404, 10.074005799999997 47.55498379624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_7_LVStation_mvgd_33535_lvgd_1164210001,BusBar_mvgd_33535_lvgd_1164210001_LV,BranchTee_mvgd_33535_lvgd_1164210001_7,0.006847120080714504,0.0006847120080714504,0.0006001530538125735,0.2902917153485438,1,cable,NAYY 4x1x300,"LINESTRING (10.073823700000004 47.55514659624404, 10.073738500000001 47.55512509624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_8_LVCableDist_mvgd_33535_lvgd_1164210001_building_446562,BranchTee_mvgd_33535_lvgd_1164210001_8,BranchTee_mvgd_33535_lvgd_1164210001_building_446562,0.026112115771375448,0.02266531648955389,0.0022231114021877647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074338807570967 47.55491838440514, 10.074005799999997 47.55498379624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_8_LVCableDist_mvgd_33535_lvgd_1164210001_building_446599,BranchTee_mvgd_33535_lvgd_1164210001_8,BranchTee_mvgd_33535_lvgd_1164210001_building_446599,0.011932356002603416,0.010357285010259764,0.0010158869130562978,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.073924138099521 47.554891768367305, 10.074005799999997 47.55498379624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_9_LVCableDist_mvgd_33535_lvgd_1164210001_building_446586,BranchTee_mvgd_33535_lvgd_1164210001_9,BranchTee_mvgd_33535_lvgd_1164210001_building_446586,0.03333647953389035,0.028936064235416826,0.0028381732223258654,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074391141980696 47.55558767144102, 10.0746965637773 47.55537049915125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_9_LVCableDist_mvgd_33535_lvgd_1164210001_building_446621,BranchTee_mvgd_33535_lvgd_1164210001_9,BranchTee_mvgd_33535_lvgd_1164210001_building_446621,0.0214501873956745,0.018618762659445464,0.0018262080559041732,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07449480606352 47.55523424071875, 10.0746965637773 47.55537049915125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210001_9_LVCableDist_mvgd_33535_lvgd_1164210001_building_446628,BranchTee_mvgd_33535_lvgd_1164210001_9,BranchTee_mvgd_33535_lvgd_1164210001_building_446628,0.031232159197168406,0.027109514183142176,0.0026590173632073787,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074811042429099 47.55564067233315, 10.0746965637773 47.55537049915125)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_10_LVCableDist_mvgd_33535_lvgd_1164210002_22,BranchTee_mvgd_33535_lvgd_1164210002_10,BranchTee_mvgd_33535_lvgd_1164210002_22,0.019341445467965047,0.003171997056746268,0.0015555313405943448,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.043195099999995 47.556740296244186, 10.043137100000004 47.55670519624419, 10.042996200000003 47.55663029624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_10_LVCableDist_mvgd_33535_lvgd_1164210002_building_446271,BranchTee_mvgd_33535_lvgd_1164210002_10,BranchTee_mvgd_33535_lvgd_1164210002_building_446271,0.010973185921031775,0.009524725379455581,0.000934225895479285,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042851667668897 47.556642784611604, 10.042996200000003 47.55663029624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_11_LVCableDist_mvgd_33535_lvgd_1164210002_18,BranchTee_mvgd_33535_lvgd_1164210002_11,BranchTee_mvgd_33535_lvgd_1164210002_18,0.019682842144403637,0.003227986111682197,0.0015829880904352266,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.044588600000003 47.556768496244196, 10.044440799999993 47.55662239624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_11_LVCableDist_mvgd_33535_lvgd_1164210002_building_446300,BranchTee_mvgd_33535_lvgd_1164210002_11,BranchTee_mvgd_33535_lvgd_1164210002_building_446300,0.014011967898429147,0.0121623881358365,0.001192939165666312,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044417699984105 47.55681834629733, 10.044588600000003 47.556768496244196)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_12_LVCableDist_mvgd_33535_lvgd_1164210002_5,BranchTee_mvgd_33535_lvgd_1164210002_5,BranchTee_mvgd_33535_lvgd_1164210002_12,0.1338169627446242,0.02194598189011837,0.010762198709355787,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.036742699999998 47.560687696244564, 10.0367614 47.560508096244504, 10.0367997 47.56038829624451, 10.036856800000002 47.560275896244555, 10.037026599999999 47.560054096244464, 10.037287000000001 47.55991629624442, 10.037464199999992 47.55984629624444, 10.037695399999995 47.55978019624444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_12_LVCableDist_mvgd_33535_lvgd_1164210002_6,BranchTee_mvgd_33535_lvgd_1164210002_6,BranchTee_mvgd_33535_lvgd_1164210002_12,0.1597097883543553,0.026192405290114268,0.012844623303690836,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.037695399999995 47.55978019624444, 10.037751800000002 47.55976559624441, 10.038279099999993 47.559720696244476, 10.038809500000005 47.55970259624445, 10.0391315 47.55967459624441, 10.039484899999996 47.559613596244475, 10.039770400000005 47.55953429624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_12_LVCableDist_mvgd_33535_lvgd_1164210002_7,BranchTee_mvgd_33535_lvgd_1164210002_7,BranchTee_mvgd_33535_lvgd_1164210002_12,0.026654825805487073,0.00437139143209988,0.002143708286290786,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.037695399999995 47.55978019624444, 10.037730800000002 47.55983479624446, 10.0377559 47.55988129624452, 10.037762100000002 47.55991219624448, 10.037650199999995 47.55997669624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_13_LVCableDist_mvgd_33535_lvgd_1164210002_9,BranchTee_mvgd_33535_lvgd_1164210002_9,BranchTee_mvgd_33535_lvgd_1164210002_13,0.054282915912850824,0.008902398209707535,0.004365691132089462,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.040132800000002 47.56002289624449, 10.040838200000003 47.55992239624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_13_LVCableDist_mvgd_33535_lvgd_1164210002_building_446139,BranchTee_mvgd_33535_lvgd_1164210002_13,BranchTee_mvgd_33535_lvgd_1164210002_building_446139,0.01045064284453906,0.009071157989059903,0.0008897380614923251,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040829203007458 47.559828535538394, 10.040838200000003 47.55992239624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_14_LVCableDist_mvgd_33535_lvgd_1164210002_16,BranchTee_mvgd_33535_lvgd_1164210002_14,BranchTee_mvgd_33535_lvgd_1164210002_16,0.03751821680650801,0.006152987556267315,0.0030173940299549357,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.043902399999997 47.55633619624416, 10.043856099999996 47.55629289624413, 10.043791500000003 47.55625489624415, 10.043599700000003 47.556257596244095, 10.043461499999996 47.556279396244186)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_14_LVCableDist_mvgd_33535_lvgd_1164210002_building_446276,BranchTee_mvgd_33535_lvgd_1164210002_14,BranchTee_mvgd_33535_lvgd_1164210002_building_446276,0.016350091456440962,0.014191879384190755,0.0013920003672575644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043262199996585 47.55633774625791, 10.043461499999996 47.556279396244186)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_15_LVCableDist_mvgd_33535_lvgd_1164210002_17,BranchTee_mvgd_33535_lvgd_1164210002_15,BranchTee_mvgd_33535_lvgd_1164210002_17,0.034282745971099045,0.005622370339260244,0.00275718202592486,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.039993899999994 47.55944579624444, 10.040167899999995 47.55963419624446, 10.040280999999995 47.55967379624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_15_LVCableDist_mvgd_33535_lvgd_1164210002_24,BranchTee_mvgd_33535_lvgd_1164210002_15,BranchTee_mvgd_33535_lvgd_1164210002_24,0.09421493301177807,0.015451249013931603,0.007577214500051365,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.039993899999994 47.55944579624444, 10.040255999999996 47.5593060962444, 10.040473899999999 47.559175196244425, 10.040678300000005 47.55902209624439, 10.040872 47.5588478962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_15_LVCableDist_mvgd_33535_lvgd_1164210002_6,BranchTee_mvgd_33535_lvgd_1164210002_6,BranchTee_mvgd_33535_lvgd_1164210002_15,0.01949311856794054,0.0031968714451422486,0.0015677296150680778,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.039993899999994 47.55944579624444, 10.039770400000005 47.55953429624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_16_LVCableDist_mvgd_33535_lvgd_1164210002_2,BranchTee_mvgd_33535_lvgd_1164210002_2,BranchTee_mvgd_33535_lvgd_1164210002_16,0.01732238208501451,0.00284087066194238,0.0013931486285044998,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.043902399999997 47.55633619624416, 10.04371489999999 47.55642649624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_16_LVCableDist_mvgd_33535_lvgd_1164210002_20,BranchTee_mvgd_33535_lvgd_1164210002_16,BranchTee_mvgd_33535_lvgd_1164210002_20,0.01546205104325194,0.002535776371093318,0.0012435319287529137,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.044077099999997 47.55626309624415, 10.043902399999997 47.55633619624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_17_LVCableDist_mvgd_33535_lvgd_1164210002_building_445977,BranchTee_mvgd_33535_lvgd_1164210002_17,BranchTee_mvgd_33535_lvgd_1164210002_building_445977,0.011205461468780044,0.009726340554901078,0.0009540011761639182,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040427743416819 47.5596571072602, 10.040280999999995 47.55967379624447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_18_LVCableDist_mvgd_33535_lvgd_1164210002_20,BranchTee_mvgd_33535_lvgd_1164210002_18,BranchTee_mvgd_33535_lvgd_1164210002_20,0.048414920184935664,0.00794004691032945,0.00389375891397453,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.044440799999993 47.55662239624418, 10.044077099999997 47.55626309624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_18_LVCableDist_mvgd_33535_lvgd_1164210002_building_446297,BranchTee_mvgd_33535_lvgd_1164210002_18,BranchTee_mvgd_33535_lvgd_1164210002_building_446297,0.024142072376708776,0.020955318822983217,0.0020553875006918475,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044463059712017 47.55640563476481, 10.044440799999993 47.55662239624418)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_19_LVCableDist_mvgd_33535_lvgd_1164210002_21,BranchTee_mvgd_33535_lvgd_1164210002_19,BranchTee_mvgd_33535_lvgd_1164210002_21,0.01712576365225884,0.0028086252389704497,0.0013773356358925178,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.043001299999993 47.55687729624422, 10.042943899999992 47.55684979624424, 10.042816699999992 47.55678729624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_19_LVCableDist_mvgd_33535_lvgd_1164210002_building_446272,BranchTee_mvgd_33535_lvgd_1164210002_19,BranchTee_mvgd_33535_lvgd_1164210002_building_446272,0.00950722948025722,0.008252275188863267,0.0008094185260906634,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042741863844075 47.55685620773599, 10.042816699999992 47.55678729624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_1_LVCableDist_mvgd_33535_lvgd_1164210002_21,BranchTee_mvgd_33535_lvgd_1164210002_1,BranchTee_mvgd_33535_lvgd_1164210002_21,0.052994223658087494,0.008691052679926349,0.004262048351409717,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.042569400000001 47.557253696244274, 10.042859099999992 47.55699309624422, 10.043001299999993 47.55687729624422)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_1_LVCableDist_mvgd_33535_lvgd_1164210002_24,BranchTee_mvgd_33535_lvgd_1164210002_1,BranchTee_mvgd_33535_lvgd_1164210002_24,0.21848831684783943,0.035832083963045665,0.017571873052271907,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.040872 47.5588478962444, 10.041158499999995 47.558570896244326, 10.041523 47.55820749624431, 10.041629999999996 47.5581053962443, 10.0419612 47.55781699624426, 10.042272300000002 47.55752869624428, 10.042569400000001 47.557253696244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_1_LVCableDist_mvgd_33535_lvgd_1164210002_26,BranchTee_mvgd_33535_lvgd_1164210002_1,BranchTee_mvgd_33535_lvgd_1164210002_26,0.013968812284650835,0.002290885214682737,0.0011234385421525482,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.042692900000004 47.557347496244205, 10.042569400000001 47.557253696244274)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_20_LVCableDist_mvgd_33535_lvgd_1164210002_23,BranchTee_mvgd_33535_lvgd_1164210002_20,BranchTee_mvgd_33535_lvgd_1164210002_23,0.023190715453927292,0.003803277334444076,0.0018651080013196613,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.044077099999997 47.55626309624415, 10.044340599999996 47.55615509624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_21_LVCableDist_mvgd_33535_lvgd_1164210002_22,BranchTee_mvgd_33535_lvgd_1164210002_21,BranchTee_mvgd_33535_lvgd_1164210002_22,0.02110179334968859,0.003460694109348929,0.0016971069175027618,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.043001299999993 47.55687729624422, 10.0430899 47.55680979624421, 10.043195099999995 47.556740296244186)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_22_LVCableDist_mvgd_33535_lvgd_1164210002_building_446275,BranchTee_mvgd_33535_lvgd_1164210002_22,BranchTee_mvgd_33535_lvgd_1164210002_building_446275,0.019885420511456954,0.017260545003944635,0.0016929882458923318,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043341150018097 47.55688939636051, 10.043195099999995 47.556740296244186)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_23_LVCableDist_mvgd_33535_lvgd_1164210002_building_446288,BranchTee_mvgd_33535_lvgd_1164210002_23,BranchTee_mvgd_33535_lvgd_1164210002_building_446288,0.015000204529435056,0.013020177531549628,0.0012770748267396748,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044511584902057 47.556224330553874, 10.044340599999996 47.55615509624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_23_LVStation_mvgd_33535_lvgd_1164210002,BusBar_mvgd_33535_lvgd_1164210002_LV,BranchTee_mvgd_33535_lvgd_1164210002_23,0.11394183427903146,0.01868646082176116,0.009163746035393303,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.044340599999996 47.55615509624412, 10.044591800000005 47.55607259624417, 10.044930799999996 47.555961396244136, 10.045465499999995 47.555835296244105, 10.045738800000006 47.55576749624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_24_LVCableDist_mvgd_33535_lvgd_1164210002_4,BranchTee_mvgd_33535_lvgd_1164210002_4,BranchTee_mvgd_33535_lvgd_1164210002_24,0.10351925858104792,0.01697715840729186,0.008325512761940027,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.042168700000003 47.55910599624441, 10.041973699999994 47.55911539624437, 10.041804799999994 47.559108696244415, 10.041682300000005 47.55907989624438, 10.041616599999998 47.55905459624441, 10.041492099999994 47.55901799624435, 10.041353899999994 47.558978696244374, 10.040872 47.5588478962444)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_25_LVCableDist_mvgd_33535_lvgd_1164210002_3,BranchTee_mvgd_33535_lvgd_1164210002_3,BranchTee_mvgd_33535_lvgd_1164210002_25,0.023210768388642906,0.003806566015737437,0.0018667207540207296,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0369243 47.561687096244604, 10.036922600000004 47.561478196244565)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_25_LVCableDist_mvgd_33535_lvgd_1164210002_5,BranchTee_mvgd_33535_lvgd_1164210002_5,BranchTee_mvgd_33535_lvgd_1164210002_25,0.08899276580513932,0.014594813592042849,0.007157222893467203,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.036922600000004 47.561478196244565, 10.036859699999995 47.56122189624458, 10.036766399999992 47.56091059624455, 10.036742699999998 47.560687696244564)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_25_LVCableDist_mvgd_33535_lvgd_1164210002_building_446201,BranchTee_mvgd_33535_lvgd_1164210002_25,BranchTee_mvgd_33535_lvgd_1164210002_building_446201,0.01923745731955323,0.016698112953372205,0.0016378224993579876,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036690678951661 47.56155079158211, 10.036922600000004 47.561478196244565)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_26_LVCableDist_mvgd_33535_lvgd_1164210002_building_446287,BranchTee_mvgd_33535_lvgd_1164210002_26,BranchTee_mvgd_33535_lvgd_1164210002_building_446287,0.021646350705640555,0.018789032412496,0.0018429088431898394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04293149863782 47.557238865938025, 10.042692900000004 47.557347496244205)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_27_LVCableDist_mvgd_33535_lvgd_1164210002_32,BranchTee_mvgd_33535_lvgd_1164210002_27,BranchTee_mvgd_33535_lvgd_1164210002_32,0.06265147294644331,0.007831434118305414,0.004999365341486201,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.046556900000004 47.55557269624411, 10.047344500000003 47.55539119624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_27_LVCableDist_mvgd_33535_lvgd_1164210002_building_446305,BranchTee_mvgd_33535_lvgd_1164210002_27,BranchTee_mvgd_33535_lvgd_1164210002_building_446305,0.05320392650283321,0.04618100820445923,0.0045296312518370106,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045964115864534 47.55583316548142, 10.046556900000004 47.55557269624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_27_LVCableDist_mvgd_33535_lvgd_1164210002_building_446307,BranchTee_mvgd_33535_lvgd_1164210002_27,BranchTee_mvgd_33535_lvgd_1164210002_building_446307,0.0729293330576955,0.0633026610940797,0.006208996363758532,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045849649969528 47.55602104630231, 10.046556900000004 47.55557269624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_27_LVCableDist_mvgd_33535_lvgd_1164210002_building_446327,BranchTee_mvgd_33535_lvgd_1164210002_27,BranchTee_mvgd_33535_lvgd_1164210002_building_446327,0.04487531017259326,0.03895176922981095,0.0038205565031527006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.047076349974859 47.55577054629387, 10.046556900000004 47.55557269624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_27_LVStation_mvgd_33535_lvgd_1164210002,BusBar_mvgd_33535_lvgd_1164210002_LV,BranchTee_mvgd_33535_lvgd_1164210002_27,0.06530506380846357,0.008163132976057946,0.005211112481053199,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.045738800000006 47.55576749624408, 10.046556900000004 47.55557269624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_28_LVCableDist_mvgd_33535_lvgd_1164210002_35,BranchTee_mvgd_33535_lvgd_1164210002_28,BranchTee_mvgd_33535_lvgd_1164210002_35,0.18152473417932186,0.022690591772415232,0.01448502999210198,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.046281299999999 47.5519025962438, 10.04682092954349 47.55208409892719, 10.047360562876833 47.55226559892721, 10.047900200000008 47.55244709624381, 10.048445048156292 47.55262199761081)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_28_LVCableDist_mvgd_33535_lvgd_1164210002_37,BranchTee_mvgd_33535_lvgd_1164210002_28,BranchTee_mvgd_33535_lvgd_1164210002_37,0.045406195215798015,0.005675774401974752,0.003623253340662343,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.048989900000004 47.55279689624379, 10.048445048156292 47.55262199761081)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_28_LVCableDist_mvgd_33535_lvgd_1164210002_building_446262,BranchTee_mvgd_33535_lvgd_1164210002_28,BranchTee_mvgd_33535_lvgd_1164210002_building_446262,0.022569843307440614,0.019590623990858452,0.0019215323814305942,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048255497856806 47.55246466855344, 10.048445048156292 47.55262199761081)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_28_LVCableDist_mvgd_33535_lvgd_1164210002_building_446267,BranchTee_mvgd_33535_lvgd_1164210002_28,BranchTee_mvgd_33535_lvgd_1164210002_building_446267,0.01683990421177848,0.01461703685582372,0.0014337016346256234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048423437731644 47.55247114316342, 10.048445048156292 47.55262199761081)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_29_LVCableDist_mvgd_33535_lvgd_1164210002_35,BranchTee_mvgd_33535_lvgd_1164210002_29,BranchTee_mvgd_33535_lvgd_1164210002_35,0.02604924312611334,0.0032561553907641677,0.0020786372152489315,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.046281299999999 47.5519025962438, 10.045973800000002 47.551795296243725)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_29_LVCableDist_mvgd_33535_lvgd_1164210002_36,BranchTee_mvgd_33535_lvgd_1164210002_29,BranchTee_mvgd_33535_lvgd_1164210002_36,0.02648957728048501,0.0033111971600606263,0.0021137743190791985,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.045794199999992 47.55161769624372, 10.045885399999994 47.551652096243714, 10.045963099999998 47.55172089624375, 10.045992000000002 47.55176289624371, 10.045973800000002 47.551795296243725)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_29_LVCableDist_mvgd_33535_lvgd_1164210002_41,BranchTee_mvgd_33535_lvgd_1164210002_29,BranchTee_mvgd_33535_lvgd_1164210002_41,0.11365947247960026,0.014207434059950032,0.00906962279932121,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.045973800000002 47.551795296243725, 10.045354199999997 47.55157349624375, 10.045111299999995 47.55147749624372, 10.0450617 47.55145489624374, 10.044993199999995 47.551390796243744, 10.044944899999996 47.55129599624367, 10.044943299999998 47.55115859624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_2_LVCableDist_mvgd_33535_lvgd_1164210002_22,BranchTee_mvgd_33535_lvgd_1164210002_2,BranchTee_mvgd_33535_lvgd_1164210002_22,0.052436375336684174,0.008599565555216205,0.004217183527388263,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.043195099999995 47.556740296244186, 10.043350200000003 47.55663989624417, 10.04371489999999 47.55642649624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_2_LVCableDist_mvgd_33535_lvgd_1164210002_building_446279,BranchTee_mvgd_33535_lvgd_1164210002_2,BranchTee_mvgd_33535_lvgd_1164210002_building_446279,0.02919154473129247,0.025338260826761865,0.002485285241066166,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043828949992049 47.55667759628607, 10.04371489999999 47.55642649624413)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_30_LVCableDist_mvgd_33535_lvgd_1164210002_35,BranchTee_mvgd_33535_lvgd_1164210002_30,BranchTee_mvgd_33535_lvgd_1164210002_35,0.06917027361642888,0.00864628420205361,0.00551954251538029,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.045567799999995 47.55206199624372, 10.045736300000002 47.551948396243766, 10.045781499999993 47.55192979624374, 10.045855800000005 47.55193989624374, 10.046090699999999 47.55202309624376, 10.046161000000003 47.552023196243745, 10.046220200000004 47.551977196243776, 10.046235799999993 47.55194859624379, 10.046281299999999 47.5519025962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_30_LVCableDist_mvgd_33535_lvgd_1164210002_43,BranchTee_mvgd_33535_lvgd_1164210002_30,BranchTee_mvgd_33535_lvgd_1164210002_43,0.07375320685895607,0.00921915085736951,0.005885244334308333,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.044839000000003 47.55228289624382, 10.044873300000004 47.55225989624376, 10.0449042 47.55219959624382, 10.044939300000003 47.552131296243815, 10.045049700000007 47.55207019624376, 10.045152000000003 47.552061496243795, 10.045250999999993 47.55207189624378, 10.045311300000002 47.55210989624374, 10.0453696 47.552129796243804, 10.045418500000002 47.55213449624376, 10.045457900000002 47.55212789624378, 10.045531699999996 47.55208359624379, 10.045567799999995 47.55206199624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_30_LVCableDist_mvgd_33535_lvgd_1164210002_building_446264,BranchTee_mvgd_33535_lvgd_1164210002_30,BranchTee_mvgd_33535_lvgd_1164210002_building_446264,0.01603278915504322,0.013916460986577514,0.001364986150165627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045772104372965 47.552102502418066, 10.045567799999995 47.55206199624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_31_LVCableDist_mvgd_33535_lvgd_1164210002_33,BranchTee_mvgd_33535_lvgd_1164210002_31,BranchTee_mvgd_33535_lvgd_1164210002_33,0.06718754748039037,0.008398443435048796,0.005361328001658589,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.048386799999996 47.55518159624408, 10.048871799999999 47.55512049624408, 10.048991800000005 47.555107096244065, 10.049093899999995 47.55509129624402, 10.049259499999998 47.55505869624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_31_LVCableDist_mvgd_33535_lvgd_1164210002_34,BranchTee_mvgd_33535_lvgd_1164210002_31,BranchTee_mvgd_33535_lvgd_1164210002_34,0.07801123811698646,0.009751404764623307,0.006225020127170526,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.049259499999998 47.55505869624402, 10.0494392 47.55500619624404, 10.049600799999997 47.55494469624402, 10.049721600000005 47.55488859624404, 10.049849599999998 47.55481969624401, 10.050092199999998 47.554653496244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_31_LVCableDist_mvgd_33535_lvgd_1164210002_building_446321,BranchTee_mvgd_33535_lvgd_1164210002_31,BranchTee_mvgd_33535_lvgd_1164210002_building_446321,0.024725664802837825,0.021461877048863234,0.0021050729029823863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049331299996151 47.55527584627673, 10.049259499999998 47.55505869624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_32_LVCableDist_mvgd_33535_lvgd_1164210002_46,BranchTee_mvgd_33535_lvgd_1164210002_32,BranchTee_mvgd_33535_lvgd_1164210002_46,0.04647005048776271,0.005808756310970339,0.0037081452182972743,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.047344500000003 47.55539119624403, 10.047926600000004 47.55525249624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_32_LVCableDist_mvgd_33535_lvgd_1164210002_building_446334,BranchTee_mvgd_33535_lvgd_1164210002_32,BranchTee_mvgd_33535_lvgd_1164210002_building_446334,0.043794286814639254,0.03801344095510687,0.0037285212435766335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.047502746853844 47.55577047905872, 10.047344500000003 47.55539119624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_33_LVCableDist_mvgd_33535_lvgd_1164210002_46,BranchTee_mvgd_33535_lvgd_1164210002_33,BranchTee_mvgd_33535_lvgd_1164210002_46,0.035543668111470965,0.004442958513933871,0.0028362586561640275,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.047926600000004 47.55525249624406, 10.048386799999996 47.55518159624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_33_LVCableDist_mvgd_33535_lvgd_1164210002_building_446291,BranchTee_mvgd_33535_lvgd_1164210002_33,BranchTee_mvgd_33535_lvgd_1164210002_building_446291,0.018344187389910484,0.0159227546544423,0.0015617720336198889,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048366494697342 47.55534612494023, 10.048386799999996 47.55518159624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_33_LVCableDist_mvgd_33535_lvgd_1164210002_building_446306,BranchTee_mvgd_33535_lvgd_1164210002_33,BranchTee_mvgd_33535_lvgd_1164210002_building_446306,0.019618109726388024,0.017028519242504803,0.0016702301645703293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048538272708964 47.555325239922475, 10.048386799999996 47.55518159624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_34_LVCableDist_mvgd_33535_lvgd_1164210002_39,BranchTee_mvgd_33535_lvgd_1164210002_34,BranchTee_mvgd_33535_lvgd_1164210002_39,0.019275606813169362,0.0024094508516461703,0.0015381250608465513,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.050303200000004 47.554750996244, 10.0502769 47.554737396244, 10.050180800000003 47.55468759624402, 10.050092199999998 47.554653496244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_34_LVCableDist_mvgd_33535_lvgd_1164210002_42,BranchTee_mvgd_33535_lvgd_1164210002_34,BranchTee_mvgd_33535_lvgd_1164210002_42,0.16207929649071656,0.02025991206133957,0.012933353029717624,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.050092199999998 47.554653496244, 10.050294399999997 47.55447519624399, 10.050519600000003 47.55421549624394, 10.050637000000004 47.55409169624396, 10.050914600000002 47.55385639624396, 10.051048200000004 47.553768896243966, 10.051162099999996 47.55368829624387, 10.051242599999995 47.5535827962439, 10.051282900000004 47.553457896243906)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_36_LVCableDist_mvgd_33535_lvgd_1164210002_building_446243,BranchTee_mvgd_33535_lvgd_1164210002_36,BranchTee_mvgd_33535_lvgd_1164210002_building_446243,0.013020900430383129,0.011302141573572556,0.0011085624951643488,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045650800010499 47.55155224627197, 10.045794199999992 47.55161769624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_36_LVCableDist_mvgd_33535_lvgd_1164210002_building_446261,BranchTee_mvgd_33535_lvgd_1164210002_36,BranchTee_mvgd_33535_lvgd_1164210002_building_446261,0.006477015743409319,0.005622049665279289,0.0005514347315780322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04577245000267 47.55167409624876, 10.045794199999992 47.55161769624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_37_LVCableDist_mvgd_33535_lvgd_1164210002_40,BranchTee_mvgd_33535_lvgd_1164210002_37,BranchTee_mvgd_33535_lvgd_1164210002_40,0.020986437289033072,0.002623304661129134,0.0016746432651911299,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.049247799999991 47.55286839624383, 10.048989900000004 47.55279689624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_37_LVCableDist_mvgd_33535_lvgd_1164210002_building_446268,BranchTee_mvgd_33535_lvgd_1164210002_37,BranchTee_mvgd_33535_lvgd_1164210002_building_446268,0.020306000337051308,0.017625608292560536,0.0017287952181804184,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048870918886877 47.552632898033906, 10.048989900000004 47.55279689624379)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_38_LVCableDist_mvgd_33535_lvgd_1164210002_42,BranchTee_mvgd_33535_lvgd_1164210002_38,BranchTee_mvgd_33535_lvgd_1164210002_42,0.3078053457645676,0.03847566822057095,0.02456177492993665,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.051282900000004 47.553457896243906, 10.0513651 47.55334849624386, 10.051420000000007 47.55326369624385, 10.0514937 47.55326269624386, 10.051565800000004 47.55325219624388, 10.051633600000002 47.55323279624393, 10.051694799999996 47.55320509624386, 10.051775299999994 47.55314409624389, 10.051820399999997 47.553078096243866, 10.051836899999996 47.553006196243864, 10.051823399999998 47.552933996243894, 10.0517811 47.55286709624382, 10.051713100000002 47.55281069624384, 10.051764100000002 47.552653096243816, 10.0518002 47.55260579624384, 10.051879299999994 47.55254369624377, 10.051452299999996 47.552373696243784, 10.050968299999992 47.552198596243805, 10.0504393 47.551908496243755, 10.050301000000001 47.55181129624372, 10.0502751 47.55177639624376, 10.050269900000009 47.55174599624377, 10.050150700000001 47.551723996243744, 10.049938699999995 47.55166459624376)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_38_LVCableDist_mvgd_33535_lvgd_1164210002_building_446255,BranchTee_mvgd_33535_lvgd_1164210002_38,BranchTee_mvgd_33535_lvgd_1164210002_building_446255,0.024782453538224364,0.021511169671178748,0.002109907734684995,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.050101289991883 47.55147067995778, 10.049938699999995 47.55166459624376)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_39_LVCableDist_mvgd_33535_lvgd_1164210002_44,BranchTee_mvgd_33535_lvgd_1164210002_39,BranchTee_mvgd_33535_lvgd_1164210002_44,0.056434806166105515,0.007054350770763189,0.0045032973804383074,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.050936200000004 47.554923196244005, 10.050665699999996 47.554957996243985, 10.050303200000004 47.554750996244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_39_LVCableDist_mvgd_33535_lvgd_1164210002_building_446338,BranchTee_mvgd_33535_lvgd_1164210002_39,BranchTee_mvgd_33535_lvgd_1164210002_building_446338,0.026675937685425206,0.02315471391094908,0.002271113599210091,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.05019119472053 47.5549787683731, 10.050303200000004 47.554750996244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_3_LVCableDist_mvgd_33535_lvgd_1164210002_building_446129,BranchTee_mvgd_33535_lvgd_1164210002_3,BranchTee_mvgd_33535_lvgd_1164210002_building_446129,0.020820986510422888,0.018072616291047068,0.0017726396788903555,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036652060998449 47.56165437522361, 10.0369243 47.561687096244604)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_40_LVCableDist_mvgd_33535_lvgd_1164210002_45,BranchTee_mvgd_33535_lvgd_1164210002_40,BranchTee_mvgd_33535_lvgd_1164210002_45,0.02935523030023208,0.00366940378752901,0.0023424432667333984,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.049626700000005 47.55293029624381, 10.049247799999991 47.55286839624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_40_LVCableDist_mvgd_33535_lvgd_1164210002_building_446273,BranchTee_mvgd_33535_lvgd_1164210002_40,BranchTee_mvgd_33535_lvgd_1164210002_building_446273,0.016931547481161487,0.014696583213648171,0.0014415038823976122,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049228801510337 47.55271655251758, 10.049247799999991 47.55286839624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_41_LVCableDist_mvgd_33535_lvgd_1164210002_building_446230,BranchTee_mvgd_33535_lvgd_1164210002_41,BranchTee_mvgd_33535_lvgd_1164210002_building_446230,0.024310570400587758,0.021101575107710175,0.002069732944064234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045257399984736 47.551108246285, 10.044943299999998 47.55115859624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_41_LVCableDist_mvgd_33535_lvgd_1164210002_building_446235,BranchTee_mvgd_33535_lvgd_1164210002_41,BranchTee_mvgd_33535_lvgd_1164210002_building_446235,0.029263772981117812,0.02540095494761026,0.002491434549193959,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04532498164639 47.551207798263796, 10.044943299999998 47.55115859624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_41_LVCableDist_mvgd_33535_lvgd_1164210002_building_446239,BranchTee_mvgd_33535_lvgd_1164210002_41,BranchTee_mvgd_33535_lvgd_1164210002_building_446239,0.04619499290045781,0.04009725383759738,0.003932910543908066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045555867406962 47.55117904964621, 10.044943299999998 47.55115859624372)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_42_LVCableDist_mvgd_33535_lvgd_1164210002_45,BranchTee_mvgd_33535_lvgd_1164210002_42,BranchTee_mvgd_33535_lvgd_1164210002_45,0.15659258344625962,0.019574072930782453,0.012495532787939965,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.051282900000004 47.553457896243906, 10.051285999999992 47.55333909624392, 10.051289900000002 47.553241396243855, 10.051219399999999 47.55321369624389, 10.051159000000006 47.55317669624385, 10.0511115 47.55313189624388, 10.050935099999998 47.553115796243866, 10.050870499999995 47.55310989624388, 10.050639299999998 47.55307319624386, 10.050340300000006 47.55303799624384, 10.050067499999999 47.55299159624389, 10.049626700000005 47.55293029624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_43_LVCableDist_mvgd_33535_lvgd_1164210002_47,BranchTee_mvgd_33535_lvgd_1164210002_43,BranchTee_mvgd_33535_lvgd_1164210002_47,0.003420473775301606,0.00042755922191270077,0.0002729416762208154,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.044794399999994 47.5522886962438, 10.044839000000003 47.55228289624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_43_LVCableDist_mvgd_33535_lvgd_1164210002_building_446250,BranchTee_mvgd_33535_lvgd_1164210002_43,BranchTee_mvgd_33535_lvgd_1164210002_building_446250,0.03642965843726501,0.03162094352354603,0.0031015176923529543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04505537666393 47.552576132507454, 10.044839000000003 47.55228289624382)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_44_LVCableDist_mvgd_33535_lvgd_1164210002_building_446346,BranchTee_mvgd_33535_lvgd_1164210002_44,BranchTee_mvgd_33535_lvgd_1164210002_building_446346,0.0295592194868478,0.02565740251458389,0.0025165880258932643,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.05088690223002 47.55465926213196, 10.050936200000004 47.554923196244005)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_45_LVCableDist_mvgd_33535_lvgd_1164210002_building_446258,BranchTee_mvgd_33535_lvgd_1164210002_45,BranchTee_mvgd_33535_lvgd_1164210002_building_446258,0.03379170272623339,0.029331197966370584,0.002876929632503378,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.049808499996905 47.55265224625901, 10.049626700000005 47.55293029624381)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_46_LVCableDist_mvgd_33535_lvgd_1164210002_building_446303,BranchTee_mvgd_33535_lvgd_1164210002_46,BranchTee_mvgd_33535_lvgd_1164210002_building_446303,0.019734669243408616,0.01712969290327868,0.0016801537109267695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048027382440393 47.55541644942294, 10.047926600000004 47.55525249624406)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_47_LVCableDist_mvgd_33535_lvgd_1164210002_building_446240,BranchTee_mvgd_33535_lvgd_1164210002_47,BranchTee_mvgd_33535_lvgd_1164210002_building_446240,0.036862420056606574,0.0319965806091345,0.003138361787975497,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044610474668453 47.55259615243734, 10.044794399999994 47.5522886962438)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_4_LVCableDist_mvgd_33535_lvgd_1164210002_8,BranchTee_mvgd_33535_lvgd_1164210002_4,BranchTee_mvgd_33535_lvgd_1164210002_8,0.012986048159692665,0.002129711898189597,0.0010443999615399355,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0423408 47.55909869624441, 10.042168700000003 47.55910599624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_4_LVCableDist_mvgd_33535_lvgd_1164210002_building_446292,BranchTee_mvgd_33535_lvgd_1164210002_4,BranchTee_mvgd_33535_lvgd_1164210002_building_446292,0.01913161499036997,0.016606241811641137,0.0016288113839469816,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042089166480066 47.5589424634241, 10.042168700000003 47.55910599624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_5_LVCableDist_mvgd_33535_lvgd_1164210002_building_446180,BranchTee_mvgd_33535_lvgd_1164210002_5,BranchTee_mvgd_33535_lvgd_1164210002_building_446180,0.021571839242351135,0.018724356462360786,0.0018365651487499582,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037028945626535 47.56068031588594, 10.036742699999998 47.560687696244564)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_6_LVCableDist_mvgd_33535_lvgd_1164210002_9,BranchTee_mvgd_33535_lvgd_1164210002_6,BranchTee_mvgd_33535_lvgd_1164210002_9,0.064193473584032,0.01052772966778125,0.005162745472512138,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.039770400000005 47.55953429624445, 10.039784000000003 47.559561596244436, 10.039841199999994 47.55967589624449, 10.039979800000001 47.55995659624449, 10.040044700000003 47.560013296244506, 10.040132800000002 47.56002289624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_6_LVCableDist_mvgd_33535_lvgd_1164210002_building_445963,BranchTee_mvgd_33535_lvgd_1164210002_6,BranchTee_mvgd_33535_lvgd_1164210002_building_445963,0.014464855082366552,0.012555494211494166,0.0012314966947203016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039707531741417 47.55941128039511, 10.039770400000005 47.55953429624445)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_7_LVCableDist_mvgd_33535_lvgd_1164210002_building_446188,BranchTee_mvgd_33535_lvgd_1164210002_7,BranchTee_mvgd_33535_lvgd_1164210002_building_446188,0.012832428808008573,0.01113854820535144,0.001092516556322847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03777978410901 47.56005169431776, 10.037650199999995 47.55997669624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_8_LVCableDist_mvgd_33535_lvgd_1164210002_building_446293,BranchTee_mvgd_33535_lvgd_1164210002_8,BranchTee_mvgd_33535_lvgd_1164210002_building_446293,0.01773668465626962,0.015395442281642031,0.0015100509756312548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04240530533267 47.5589451645064, 10.0423408 47.55909869624441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210002_9_LVCableDist_mvgd_33535_lvgd_1164210002_building_446136,BranchTee_mvgd_33535_lvgd_1164210002_9,BranchTee_mvgd_33535_lvgd_1164210002_building_446136,0.017461310198142725,0.015156417251987886,0.0014866063760785725,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04018752057953 47.55987017826217, 10.040132800000002 47.56002289624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_10_LVCableDist_mvgd_33535_lvgd_1164210003_18,BranchTee_mvgd_33535_lvgd_1164210003_10,BranchTee_mvgd_33535_lvgd_1164210003_18,0.07071760845233462,0.011597687786182878,0.005687447531348324,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.105110299999998 47.55929529624442, 10.1051192 47.55933299624445, 10.105094600000003 47.55937569624441, 10.105063700000004 47.55940289624437, 10.105017999999996 47.55941019624444, 10.104953500000004 47.559404696244414, 10.104872800000003 47.55939199624443, 10.104774400000004 47.559377496244416, 10.104651699999993 47.5593843962444, 10.104524000000005 47.559429196244444, 10.104386000000005 47.559529196244426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_10_LVCableDist_mvgd_33535_lvgd_1164210003_26,BranchTee_mvgd_33535_lvgd_1164210003_10,BranchTee_mvgd_33535_lvgd_1164210003_26,0.203657877496939,0.033399891909498,0.016379138349825885,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.105110299999998 47.55929529624442, 10.105227500000002 47.55934379624439, 10.1056647 47.559581296244446, 10.106250196425426 47.55989669783918, 10.106835700000005 47.56021209624453, 10.107237800000005 47.56042569624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_10_LVCableDist_mvgd_33535_lvgd_1164210003_9,BranchTee_mvgd_33535_lvgd_1164210003_9,BranchTee_mvgd_33535_lvgd_1164210003_10,0.07770469006918568,0.012743569171346452,0.006249381976853132,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.105110299999998 47.55929529624442, 10.105019800000003 47.55925889624437, 10.104965499999997 47.5592305962444, 10.104925399999999 47.55919539624436, 10.104873600000003 47.55911799624436, 10.104969199999994 47.55909959624436, 10.105046100000004 47.55908609624441, 10.1051716 47.5590551962444, 10.105505599999994 47.55897419624437)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_11_LVCableDist_mvgd_33535_lvgd_1164210003_14,BranchTee_mvgd_33535_lvgd_1164210003_11,BranchTee_mvgd_33535_lvgd_1164210003_14,0.014370132463487083,0.002356701724011882,0.0011557146260071224,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108659899999996 47.55687349624423, 10.108502700000003 47.5568001962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_11_LVCableDist_mvgd_33535_lvgd_1164210003_24,BranchTee_mvgd_33535_lvgd_1164210003_11,BranchTee_mvgd_33535_lvgd_1164210003_24,0.0140240464649478,0.0022999436202514392,0.001127880738505777,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108337700000003 47.55674169624417, 10.108502700000003 47.5568001962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_11_LVCableDist_mvgd_33535_lvgd_1164210003_building_448036,BranchTee_mvgd_33535_lvgd_1164210003_11,BranchTee_mvgd_33535_lvgd_1164210003_building_448036,0.01582174712662984,0.0137332765059147,0.0013470186310333423,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108611800711214 47.556678501207735, 10.108502700000003 47.5568001962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_11_LVCableDist_mvgd_33535_lvgd_1164210003_building_448042,BranchTee_mvgd_33535_lvgd_1164210003_11,BranchTee_mvgd_33535_lvgd_1164210003_building_448042,0.009143796885464416,0.007936815696583114,0.0007784769067870199,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108427040363244 47.55686456186561, 10.108502700000003 47.5568001962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_12_LVCableDist_mvgd_33535_lvgd_1164210003_13,BranchTee_mvgd_33535_lvgd_1164210003_12,BranchTee_mvgd_33535_lvgd_1164210003_13,0.015750379678670323,0.0025830622673019333,0.0012667206934978727,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.10887589999999 47.55696559624419, 10.109052899999996 47.55704109624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_12_LVCableDist_mvgd_33535_lvgd_1164210003_3,BranchTee_mvgd_33535_lvgd_1164210003_3,BranchTee_mvgd_33535_lvgd_1164210003_12,0.02030360402428368,0.0033297910599825236,0.0016329127230485956,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.109281 47.55713849624423, 10.109052899999996 47.55704109624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_12_LVCableDist_mvgd_33535_lvgd_1164210003_building_448112,BranchTee_mvgd_33535_lvgd_1164210003_12,BranchTee_mvgd_33535_lvgd_1164210003_building_448112,0.010058694966916797,0.00873094723128378,0.0008563687319659705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109143050014476 47.556974296272024, 10.109052899999996 47.55704109624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_13_LVCableDist_mvgd_33535_lvgd_1164210003_14,BranchTee_mvgd_33535_lvgd_1164210003_13,BranchTee_mvgd_33535_lvgd_1164210003_14,0.01921871764707771,0.0031518696941207447,0.0015456609835897818,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108659899999996 47.55687349624423, 10.10887589999999 47.55696559624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_13_LVCableDist_mvgd_33535_lvgd_1164210003_building_448045,BranchTee_mvgd_33535_lvgd_1164210003_13,BranchTee_mvgd_33535_lvgd_1164210003_building_448045,0.020090403755975185,0.01743847046018646,0.0017104399373652022,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108650105990138 47.55706189029663, 10.10887589999999 47.55696559624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_14_LVCableDist_mvgd_33535_lvgd_1164210003_16,BranchTee_mvgd_33535_lvgd_1164210003_14,BranchTee_mvgd_33535_lvgd_1164210003_16,0.034802905825433716,0.005707676555371129,0.0027990157635778556,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108659899999996 47.55687349624423, 10.108341299999998 47.55710039624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_15_LVCableDist_mvgd_33535_lvgd_1164210003_4,BranchTee_mvgd_33535_lvgd_1164210003_4,BranchTee_mvgd_33535_lvgd_1164210003_15,0.010860788810832798,0.0017811693649765789,0.0008734764631117451,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.109329799999996 47.55596939624412, 10.109337799999999 47.5558717962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_15_LVCableDist_mvgd_33535_lvgd_1164210003_building_448046,BranchTee_mvgd_33535_lvgd_1164210003_15,BranchTee_mvgd_33535_lvgd_1164210003_building_448046,0.0154521490941227,0.013412465413698503,0.0013155521038669185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109542909063189 47.55587518114626, 10.109337799999999 47.5558717962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_16_LVCableDist_mvgd_33535_lvgd_1164210003_building_448043,BranchTee_mvgd_33535_lvgd_1164210003_16,BranchTee_mvgd_33535_lvgd_1164210003_building_448043,0.018320601040303114,0.015902281702983103,0.001559763958778033,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108264734688618 47.55694388806785, 10.108341299999998 47.55710039624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_16_LVCableDist_mvgd_33535_lvgd_1164210003_building_448075,BranchTee_mvgd_33535_lvgd_1164210003_16,BranchTee_mvgd_33535_lvgd_1164210003_building_448075,0.025190692350725144,0.021865520960429426,0.002144664028155513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108006839322742 47.557097722285036, 10.108341299999998 47.55710039624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_16_LVCableDist_mvgd_33535_lvgd_1164210003_building_448085,BranchTee_mvgd_33535_lvgd_1164210003_16,BranchTee_mvgd_33535_lvgd_1164210003_building_448085,0.0201149570724168,0.017459782738857784,0.0017125303370180223,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108590405689664 47.55716569498034, 10.108341299999998 47.55710039624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_17_LVCableDist_mvgd_33535_lvgd_1164210003_25,BranchTee_mvgd_33535_lvgd_1164210003_17,BranchTee_mvgd_33535_lvgd_1164210003_25,0.033165708143551395,0.005439176135542429,0.0026673445134050367,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.109152000000003 47.55626419624409, 10.1093281 47.5559905962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_17_LVCableDist_mvgd_33535_lvgd_1164210003_4,BranchTee_mvgd_33535_lvgd_1164210003_4,BranchTee_mvgd_33535_lvgd_1164210003_17,0.0023589501179621703,0.00038686781934579596,0.00018971802523583308,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.109329799999996 47.55596939624412, 10.1093281 47.5559905962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_17_LVCableDist_mvgd_33535_lvgd_1164210003_building_448049,BranchTee_mvgd_33535_lvgd_1164210003_17,BranchTee_mvgd_33535_lvgd_1164210003_building_448049,0.021413014778320336,0.018586496827582052,0.001823043284798961,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1096116006321 47.556005188629754, 10.1093281 47.5559905962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_17_LVCableDist_mvgd_33535_lvgd_1164210003_building_448064,BranchTee_mvgd_33535_lvgd_1164210003_17,BranchTee_mvgd_33535_lvgd_1164210003_building_448064,0.01107624413780077,0.009614179911611068,0.0009429999794636799,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109384200001784 47.55608274625117, 10.1093281 47.5559905962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_18_LVCableDist_mvgd_33535_lvgd_1164210003_19,BranchTee_mvgd_33535_lvgd_1164210003_18,BranchTee_mvgd_33535_lvgd_1164210003_19,0.02151937505124009,0.0035291775084033746,0.001730690830612975,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.104386000000005 47.559529196244426, 10.104237800000005 47.559694796244436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_18_LVCableDist_mvgd_33535_lvgd_1164210003_building_447180,BranchTee_mvgd_33535_lvgd_1164210003_18,BranchTee_mvgd_33535_lvgd_1164210003_building_447180,0.01771899168501445,0.015380084782592543,0.001508544646290487,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104506566257148 47.55966613987383, 10.104386000000005 47.559529196244426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_19_LVCableDist_mvgd_33535_lvgd_1164210003_building_447174,BranchTee_mvgd_33535_lvgd_1164210003_19,BranchTee_mvgd_33535_lvgd_1164210003_building_447174,0.011218855979275476,0.009737966990011114,0.000955141546759309,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104165774755504 47.55978318535392, 10.104237800000005 47.559694796244436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_19_LVCableDist_mvgd_33535_lvgd_1164210003_building_447217,BranchTee_mvgd_33535_lvgd_1164210003_19,BranchTee_mvgd_33535_lvgd_1164210003_building_447217,0.02591341932822043,0.022492847976895332,0.002206194951134178,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104475531196366 47.55986340595176, 10.104237800000005 47.559694796244436)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_1_LVCableDist_mvgd_33535_lvgd_1164210003_28,BranchTee_mvgd_33535_lvgd_1164210003_1,BranchTee_mvgd_33535_lvgd_1164210003_28,0.021434670778969135,0.003515286007750938,0.0017238785088339263,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.107401199999996 47.56060769624451, 10.107289 47.56078499624455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_1_LVCableDist_mvgd_33535_lvgd_1164210003_building_448124,BranchTee_mvgd_33535_lvgd_1164210003_1,BranchTee_mvgd_33535_lvgd_1164210003_building_448124,0.015714044436433327,0.013639790570824128,0.001337849129767396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107491246782383 47.560819804192626, 10.107289 47.56078499624455)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_20_LVCableDist_mvgd_33535_lvgd_1164210003_21,BranchTee_mvgd_33535_lvgd_1164210003_20,BranchTee_mvgd_33535_lvgd_1164210003_21,0.014676873990537059,0.002407007334448078,0.001180384243362159,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108928099999996 47.556459896244135, 10.109062900000003 47.556364496244115)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_20_LVCableDist_mvgd_33535_lvgd_1164210003_25,BranchTee_mvgd_33535_lvgd_1164210003_20,BranchTee_mvgd_33535_lvgd_1164210003_25,0.013008215606891646,0.00213334735953023,0.0010461827734252259,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.109062900000003 47.556364496244115, 10.109152000000003 47.55626419624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_20_LVCableDist_mvgd_33535_lvgd_1164210003_building_448097,BranchTee_mvgd_33535_lvgd_1164210003_20,BranchTee_mvgd_33535_lvgd_1164210003_building_448097,0.017402011146435376,0.015104945675105907,0.001481557823171418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109259376522902 47.556446916308474, 10.109062900000003 47.556364496244115)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_21_LVCableDist_mvgd_33535_lvgd_1164210003_22,BranchTee_mvgd_33535_lvgd_1164210003_21,BranchTee_mvgd_33535_lvgd_1164210003_22,0.015501098058892472,0.0025421800816583656,0.0012466722760804247,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108731499999994 47.55650119624411, 10.108928099999996 47.556459896244135)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_21_LVCableDist_mvgd_33535_lvgd_1164210003_building_448091,BranchTee_mvgd_33535_lvgd_1164210003_21,BranchTee_mvgd_33535_lvgd_1164210003_building_448091,0.018374725574177134,0.015949261798385753,0.0015643719679277678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109000150000414 47.5566178962699, 10.108928099999996 47.556459896244135)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_21_LVCableDist_mvgd_33535_lvgd_1164210003_building_448094,BranchTee_mvgd_33535_lvgd_1164210003_21,BranchTee_mvgd_33535_lvgd_1164210003_building_448094,0.02150725333805384,0.018668295897430732,0.0018310664882231341,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109086300000437 47.5566210462699, 10.108928099999996 47.556459896244135)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_22_LVCableDist_mvgd_33535_lvgd_1164210003_23,BranchTee_mvgd_33535_lvgd_1164210003_22,BranchTee_mvgd_33535_lvgd_1164210003_23,0.028536548526779164,0.004679993958391783,0.0022950454069897742,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108421399999997 47.55661019624414, 10.108482599999995 47.55654239624415, 10.108569899999999 47.5565099962442, 10.108731499999994 47.55650119624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_22_LVCableDist_mvgd_33535_lvgd_1164210003_building_448033,BranchTee_mvgd_33535_lvgd_1164210003_22,BranchTee_mvgd_33535_lvgd_1164210003_building_448033,0.014673584564949887,0.012736671402376502,0.0012492673302661366,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108686326581985 47.55637272978782, 10.108731499999994 47.55650119624411)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_23_LVCableDist_mvgd_33535_lvgd_1164210003_24,BranchTee_mvgd_33535_lvgd_1164210003_23,BranchTee_mvgd_33535_lvgd_1164210003_24,0.015912232297162734,0.0026096060967346884,0.0012797376534267055,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108337700000003 47.55674169624417, 10.108421399999997 47.55661019624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_23_LVCableDist_mvgd_33535_lvgd_1164210003_building_448029,BranchTee_mvgd_33535_lvgd_1164210003_23,BranchTee_mvgd_33535_lvgd_1164210003_building_448029,0.018172885713534436,0.01577406479934789,0.0015471878952337175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108212750001748 47.55652804627018, 10.108421399999997 47.55661019624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_23_LVCableDist_mvgd_33535_lvgd_1164210003_building_448031,BranchTee_mvgd_33535_lvgd_1164210003_23,BranchTee_mvgd_33535_lvgd_1164210003_building_448031,0.011080016993024293,0.009617454749945086,0.0009433211896459437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108301718604528 47.55655220348384, 10.108421399999997 47.55661019624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_24_LVCableDist_mvgd_33535_lvgd_1164210003_building_448022,BranchTee_mvgd_33535_lvgd_1164210003_24,BranchTee_mvgd_33535_lvgd_1164210003_building_448022,0.026749013210562854,0.023218143466768558,0.002277335041952484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107982633936063 47.55674761906583, 10.108337700000003 47.55674169624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_24_LVCableDist_mvgd_33535_lvgd_1164210003_building_448027,BranchTee_mvgd_33535_lvgd_1164210003_24,BranchTee_mvgd_33535_lvgd_1164210003_building_448027,0.022751822394518634,0.019748581838442174,0.001937025564249826,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108041480898109 47.556781908064, 10.108337700000003 47.55674169624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_24_LVCableDist_mvgd_33535_lvgd_1164210003_building_448034,BranchTee_mvgd_33535_lvgd_1164210003_24,BranchTee_mvgd_33535_lvgd_1164210003_building_448034,0.01644730823139648,0.014276263544852143,0.0014002771274703254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10820335000166 47.5566249962535, 10.108337700000003 47.55674169624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_24_LVCableDist_mvgd_33535_lvgd_1164210003_building_448037,BranchTee_mvgd_33535_lvgd_1164210003_24,BranchTee_mvgd_33535_lvgd_1164210003_building_448037,0.012464927830369633,0.010819557356760842,0.0010612285664541791,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108246422566296 47.5568352837247, 10.108337700000003 47.55674169624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_24_LVStation_mvgd_33535_lvgd_1164210003,BusBar_mvgd_33535_lvgd_1164210003_LV,BranchTee_mvgd_33535_lvgd_1164210003_24,0.02856748289871109,0.004685067195388619,0.0022975332967972556,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.107986899999998 47.556643896244175, 10.108337700000003 47.55674169624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_25_LVCableDist_mvgd_33535_lvgd_1164210003_building_448039,BranchTee_mvgd_33535_lvgd_1164210003_25,BranchTee_mvgd_33535_lvgd_1164210003_building_448039,0.020466572763318914,0.017764985158560818,0.001742465898673639,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109418844207793 47.556229337035006, 10.109152000000003 47.55626419624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_25_LVCableDist_mvgd_33535_lvgd_1164210003_building_448061,BranchTee_mvgd_33535_lvgd_1164210003_25,BranchTee_mvgd_33535_lvgd_1164210003_building_448061,0.01668654853383786,0.014483924127371262,0.0014206453675959805,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108934345174712 47.556236123407785, 10.109152000000003 47.55626419624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_25_LVCableDist_mvgd_33535_lvgd_1164210003_building_448066,BranchTee_mvgd_33535_lvgd_1164210003_25,BranchTee_mvgd_33535_lvgd_1164210003_building_448066,0.009061806241430671,0.007865647817561822,0.0007714964561326171,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109269840495811 47.556247715931775, 10.109152000000003 47.55626419624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_26_LVCableDist_mvgd_33535_lvgd_1164210003_27,BranchTee_mvgd_33535_lvgd_1164210003_26,BranchTee_mvgd_33535_lvgd_1164210003_27,0.014956325894654775,0.0024528374467233834,0.001202859099016761,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.107237800000005 47.56042569624451, 10.1073785 47.560520696244524)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_26_LVCableDist_mvgd_33535_lvgd_1164210003_building_447211,BranchTee_mvgd_33535_lvgd_1164210003_26,BranchTee_mvgd_33535_lvgd_1164210003_building_447211,0.014988174554227738,0.013009735513069677,0.0012760506288046786,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107074017990493 47.560502345464, 10.107237800000005 47.56042569624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_27_LVCableDist_mvgd_33535_lvgd_1164210003_28,BranchTee_mvgd_33535_lvgd_1164210003_27,BranchTee_mvgd_33535_lvgd_1164210003_28,0.009816437677267137,0.0016098957790718106,0.0007894847613779069,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.1073785 47.560520696244524, 10.107401199999996 47.56060769624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_27_LVCableDist_mvgd_33535_lvgd_1164210003_building_34328718,BranchTee_mvgd_33535_lvgd_1164210003_27,BranchTee_mvgd_33535_lvgd_1164210003_building_34328718,0.03397789096555233,0.02949280935809942,0.0028927811705942493,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107828964592349 47.56050333646587, 10.1073785 47.560520696244524)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_28_LVCableDist_mvgd_33535_lvgd_1164210003_building_34328719,BranchTee_mvgd_33535_lvgd_1164210003_28,BranchTee_mvgd_33535_lvgd_1164210003_building_34328719,0.0942867531490224,0.08184090173335144,0.008027306474745064,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.108512581628188 47.56099844897529, 10.107401199999996 47.56060769624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_28_LVCableDist_mvgd_33535_lvgd_1164210003_building_34328720,BranchTee_mvgd_33535_lvgd_1164210003_28,BranchTee_mvgd_33535_lvgd_1164210003_building_34328720,0.040586982434871355,0.03522950075346833,0.0034554604545016625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107939893667151 47.56059633127986, 10.107401199999996 47.56060769624451)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_29_LVCableDist_mvgd_33535_lvgd_1164210003_31,BranchTee_mvgd_33535_lvgd_1164210003_29,BranchTee_mvgd_33535_lvgd_1164210003_31,0.07634197561760697,0.024429432197634233,0.006259703672757016,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.111216499999998 47.555036496244014, 10.111509299999996 47.555103596244024, 10.111677600000002 47.55513919624405, 10.111915799999995 47.55515069624404, 10.112203500000005 47.55512919624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_29_LVCableDist_mvgd_33535_lvgd_1164210003_33,BranchTee_mvgd_33535_lvgd_1164210003_29,BranchTee_mvgd_33535_lvgd_1164210003_33,0.053702942590590226,0.017184941628988874,0.004403403294879446,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1106401 47.555257296244015, 10.110814799999995 47.55510699624403, 10.110923399999997 47.555057296244044, 10.111054699999997 47.55502939624405, 10.111216499999998 47.555036496244014)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_29_LVCableDist_mvgd_33535_lvgd_1164210003_38,BranchTee_mvgd_33535_lvgd_1164210003_29,BranchTee_mvgd_33535_lvgd_1164210003_38,0.12782143083848202,0.04090285786831425,0.010480790857240636,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.111216499999998 47.555036496244014, 10.111391000000001 47.55498489624404, 10.1116315 47.55481849624405, 10.111829199999999 47.554718596244015, 10.112113099999998 47.55462149624402, 10.112649099999997 47.554440896243996)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_2_LVCableDist_mvgd_33535_lvgd_1164210003_7,BranchTee_mvgd_33535_lvgd_1164210003_2,BranchTee_mvgd_33535_lvgd_1164210003_7,0.04069783840316346,0.006674445498118808,0.00327311437169569,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.102466200000007 47.558154496244306, 10.102035300000004 47.55804189624429, 10.101957800000001 47.55803309624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_2_LVCableDist_mvgd_33535_lvgd_1164210003_9,BranchTee_mvgd_33535_lvgd_1164210003_2,BranchTee_mvgd_33535_lvgd_1164210003_9,0.2638182310345694,0.04326618988966938,0.021217521062432205,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.105505599999994 47.55897419624437, 10.105406900000002 47.558857296244334, 10.105279000000003 47.55883759624434, 10.105117000000003 47.55895099624442, 10.104937800000004 47.558977196244406, 10.104244799999998 47.55871049624436, 10.103599999999993 47.55848599624438, 10.102996899999999 47.558298596244335, 10.102674400000003 47.55821289624431, 10.102466200000007 47.558154496244306)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_2_LVCableDist_mvgd_33535_lvgd_1164210003_building_447157,BranchTee_mvgd_33535_lvgd_1164210003_2,BranchTee_mvgd_33535_lvgd_1164210003_building_447157,0.02272507611062721,0.01972536606402442,0.0019347484615743562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102379625071794 47.55795856540067, 10.102466200000007 47.558154496244306)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_30_LVCableDist_mvgd_33535_lvgd_1164210003_34,BranchTee_mvgd_33535_lvgd_1164210003_30,BranchTee_mvgd_33535_lvgd_1164210003_34,0.01993262398403467,0.006378439674891094,0.0016343868304577883,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.110054900000002 47.5559764962441, 10.1101772 47.55581739624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_30_LVCableDist_mvgd_33535_lvgd_1164210003_35,BranchTee_mvgd_33535_lvgd_1164210003_30,BranchTee_mvgd_33535_lvgd_1164210003_35,0.0162911544185904,0.005213169413948928,0.0013358024641424472,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.1101772 47.55581739624412, 10.110233900000003 47.55567589624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_30_LVCableDist_mvgd_33535_lvgd_1164210003_building_448053,BranchTee_mvgd_33535_lvgd_1164210003_30,BranchTee_mvgd_33535_lvgd_1164210003_building_448053,0.023354153122239343,0.02027140491010375,0.0019883062923381966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10987210001439 47.555779846286654, 10.1101772 47.55581739624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_30_LVCableDist_mvgd_33535_lvgd_1164210003_building_448069,BranchTee_mvgd_33535_lvgd_1164210003_30,BranchTee_mvgd_33535_lvgd_1164210003_building_448069,0.017071976983538226,0.01481847602171118,0.0014534596515382925,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110348467219099 47.55591804708257, 10.1101772 47.55581739624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_31_LVCableDist_mvgd_33535_lvgd_1164210003_building_448063,BranchTee_mvgd_33535_lvgd_1164210003_31,BranchTee_mvgd_33535_lvgd_1164210003_building_448063,0.013519725827596798,0.01173512201835402,0.0011510310732740624,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.112205052548722 47.55500751918485, 10.112203500000005 47.55512919624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_31_LVCableDist_mvgd_33535_lvgd_1164210003_building_448068,BranchTee_mvgd_33535_lvgd_1164210003_31,BranchTee_mvgd_33535_lvgd_1164210003_building_448068,0.021679541163554857,0.018817841729965618,0.0018457345845460417,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.112199217290106 47.55532429709501, 10.112203500000005 47.55512919624402)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_32_LVCableDist_mvgd_33535_lvgd_1164210003_33,BranchTee_mvgd_33535_lvgd_1164210003_32,BranchTee_mvgd_33535_lvgd_1164210003_33,0.03135782858267134,0.010034505146454828,0.0025712029739948412,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.110386800000002 47.55548129624408, 10.1106401 47.555257296244015)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_32_LVCableDist_mvgd_33535_lvgd_1164210003_35,BranchTee_mvgd_33535_lvgd_1164210003_32,BranchTee_mvgd_33535_lvgd_1164210003_35,0.024496448625703125,0.007838863560225,0.0020086002253844218,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.110233900000003 47.55567589624409, 10.110386800000002 47.55548129624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_32_LVCableDist_mvgd_33535_lvgd_1164210003_building_448028,BranchTee_mvgd_33535_lvgd_1164210003_32,BranchTee_mvgd_33535_lvgd_1164210003_building_448028,0.020755640268591724,0.018015895753137615,0.0017670762853845628,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110144081296829 47.55539283021923, 10.110386800000002 47.55548129624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_32_LVCableDist_mvgd_33535_lvgd_1164210003_building_448054,BranchTee_mvgd_33535_lvgd_1164210003_32,BranchTee_mvgd_33535_lvgd_1164210003_building_448054,0.01156353121375729,0.010037145093541328,0.0009844862176598662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110488504629934 47.5555592601103, 10.110386800000002 47.55548129624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_32_LVCableDist_mvgd_33535_lvgd_1164210003_building_448062,BranchTee_mvgd_33535_lvgd_1164210003_32,BranchTee_mvgd_33535_lvgd_1164210003_building_448062,0.026714004611547725,0.023187756002823426,0.0022743545092248196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110614050002773 47.5556658962689, 10.110386800000002 47.55548129624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_33_LVCableDist_mvgd_33535_lvgd_1164210003_building_448137,BranchTee_mvgd_33535_lvgd_1164210003_33,BranchTee_mvgd_33535_lvgd_1164210003_building_448137,0.020922219128042575,0.018160486203140955,0.0017812583365462145,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110402367935176 47.55515988398954, 10.1106401 47.555257296244015)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_34_LVCableDist_mvgd_33535_lvgd_1164210003_36,BranchTee_mvgd_33535_lvgd_1164210003_34,BranchTee_mvgd_33535_lvgd_1164210003_36,0.06330459360331014,0.020257469953059246,0.005190696125889076,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.109596299999994 47.55645399624417, 10.110054900000002 47.5559764962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_34_LVCableDist_mvgd_33535_lvgd_1164210003_building_448060,BranchTee_mvgd_33535_lvgd_1164210003_34,BranchTee_mvgd_33535_lvgd_1164210003_building_448060,0.00805262073869162,0.006989674801184326,0.0006855772675955789,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110160015679586 47.555989755493776, 10.110054900000002 47.5559764962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_34_LVCableDist_mvgd_33535_lvgd_1164210003_building_448070,BranchTee_mvgd_33535_lvgd_1164210003_34,BranchTee_mvgd_33535_lvgd_1164210003_building_448070,0.027186292863899182,0.02359770220586449,0.0023145637901622468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110328250005997 47.556136296258984, 10.110054900000002 47.5559764962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_34_LVCableDist_mvgd_33535_lvgd_1164210003_building_448071,BranchTee_mvgd_33535_lvgd_1164210003_34,BranchTee_mvgd_33535_lvgd_1164210003_building_448071,0.026581619439548926,0.023072845673528467,0.0022630836115339575,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110370350005999 47.556083796258946, 10.110054900000002 47.5559764962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_34_LVCableDist_mvgd_33535_lvgd_1164210003_building_448073,BranchTee_mvgd_33535_lvgd_1164210003_34,BranchTee_mvgd_33535_lvgd_1164210003_building_448073,0.01663499861483235,0.014439178797674479,0.0014162565538465932,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11000034951025 47.55612157976656, 10.110054900000002 47.5559764962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_34_LVCableDist_mvgd_33535_lvgd_1164210003_building_448083,BranchTee_mvgd_33535_lvgd_1164210003_34,BranchTee_mvgd_33535_lvgd_1164210003_building_448083,0.027527090841284487,0.023893514850234936,0.00234357836240148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.110090560989107 47.55622306503902, 10.110054900000002 47.5559764962441)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_35_LVCableDist_mvgd_33535_lvgd_1164210003_building_448024,BranchTee_mvgd_33535_lvgd_1164210003_35,BranchTee_mvgd_33535_lvgd_1164210003_building_448024,0.040737256623372034,0.035359938749086925,0.0034682543722690078,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10975525000524 47.55550514628352, 10.110233900000003 47.55567589624409)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_36_LVCableDist_mvgd_33535_lvgd_1164210003_37,BranchTee_mvgd_33535_lvgd_1164210003_36,BranchTee_mvgd_33535_lvgd_1164210003_37,0.04671725612318773,0.014949521959420073,0.0038306079633077116,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.109334199999997 47.55683129624419, 10.109421599999992 47.55664259624415, 10.109596299999994 47.55645399624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_36_LVCableDist_mvgd_33535_lvgd_1164210003_building_448065,BranchTee_mvgd_33535_lvgd_1164210003_36,BranchTee_mvgd_33535_lvgd_1164210003_building_448065,0.022583212760369877,0.019602228676001053,0.0019226706186959422,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109553136183333 47.55625285884161, 10.109596299999994 47.55645399624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_36_LVCableDist_mvgd_33535_lvgd_1164210003_building_448116,BranchTee_mvgd_33535_lvgd_1164210003_36,BranchTee_mvgd_33535_lvgd_1164210003_building_448116,0.013515105010476496,0.011731111149093598,0.0011506376700233451,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109694572905944 47.556555772281065, 10.109596299999994 47.55645399624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_36_LVCableDist_mvgd_33535_lvgd_1164210003_building_448120,BranchTee_mvgd_33535_lvgd_1164210003_36,BranchTee_mvgd_33535_lvgd_1164210003_building_448120,0.022212316666925802,0.019280290866891595,0.0018910935783066566,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10989030001335 47.556438096291735, 10.109596299999994 47.55645399624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_36_LVCableDist_mvgd_33535_lvgd_1164210003_building_448123,BranchTee_mvgd_33535_lvgd_1164210003_36,BranchTee_mvgd_33535_lvgd_1164210003_building_448123,0.02949859290974197,0.02560477864565603,0.0025114264512426446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109855452872905 47.55665306244038, 10.109596299999994 47.55645399624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_37_LVCableDist_mvgd_33535_lvgd_1164210003_building_448105,BranchTee_mvgd_33535_lvgd_1164210003_37,BranchTee_mvgd_33535_lvgd_1164210003_building_448105,0.01203815354634761,0.010449117278229727,0.0010248942155621716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109178049999912 47.556808146265496, 10.109334199999997 47.55683129624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_37_LVCableDist_mvgd_33535_lvgd_1164210003_building_448109,BranchTee_mvgd_33535_lvgd_1164210003_37,BranchTee_mvgd_33535_lvgd_1164210003_building_448109,0.010505549690234277,0.009118817131123353,0.0008944126744494647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109467300002514 47.556802996255534, 10.109334199999997 47.55683129624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_37_LVCableDist_mvgd_33535_lvgd_1164210003_building_448130,BranchTee_mvgd_33535_lvgd_1164210003_37,BranchTee_mvgd_33535_lvgd_1164210003_building_448130,0.025132262437808143,0.021814803796017468,0.002139689471257408,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109665780188726 47.55680579252332, 10.109334199999997 47.55683129624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_37_LVStation_mvgd_33535_lvgd_1164210003,BusBar_mvgd_33535_lvgd_1164210003_LV,BranchTee_mvgd_33535_lvgd_1164210003_37,0.1466007789972868,0.046912249279131776,0.012020614181049686,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.107986899999998 47.556643896244175, 10.108337700000003 47.55674169624417, 10.108502700000003 47.5568001962442, 10.108659899999996 47.55687349624423, 10.10887589999999 47.55696559624419, 10.109052899999996 47.55704109624421, 10.109281 47.55713849624423, 10.109334199999997 47.55683129624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_38_LVCableDist_mvgd_33535_lvgd_1164210003_building_448005,BranchTee_mvgd_33535_lvgd_1164210003_38,BranchTee_mvgd_33535_lvgd_1164210003_building_448005,0.01708504857836325,0.014829822166019302,0.001454572530010291,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.112560206729276 47.55429942672013, 10.112649099999997 47.554440896243996)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_39_LVCableDist_mvgd_33535_lvgd_1164210003_56,BranchTee_mvgd_33535_lvgd_1164210003_39,BranchTee_mvgd_33535_lvgd_1164210003_56,0.007109900353781769,0.0014646394728790443,0.0005718121144114247,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106402599999994 47.55679019624421, 10.106431999999996 47.55678249624423, 10.106463400000003 47.55678139624416, 10.106493699999994 47.55678709624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_39_LVCableDist_mvgd_33535_lvgd_1164210003_62,BranchTee_mvgd_33535_lvgd_1164210003_39,BranchTee_mvgd_33535_lvgd_1164210003_62,0.007083962963665634,0.0014592963705151207,0.0005697261057268258,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.1063544 47.55684239624419, 10.106361799999998 47.556821796244215, 10.1063784 47.55680369624421, 10.106402599999994 47.55679019624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_39_LVCableDist_mvgd_33535_lvgd_1164210003_building_447177,BranchTee_mvgd_33535_lvgd_1164210003_39,BranchTee_mvgd_33535_lvgd_1164210003_building_447177,0.01917012165071204,0.016639665592818053,0.001632089731684719,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106269549225043 47.556643110649944, 10.106402599999994 47.55679019624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_3_LVCableDist_mvgd_33535_lvgd_1164210003_8,BranchTee_mvgd_33535_lvgd_1164210003_3,BranchTee_mvgd_33535_lvgd_1164210003_8,0.437083083116835,0.07168162563116094,0.03515230727496258,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.1059175 47.55883549624442, 10.1061677 47.55868779624436, 10.106358000000002 47.558559396244355, 10.1064338 47.55850219624434, 10.106480599999996 47.55845509624435, 10.106505899999998 47.55841749624429, 10.106552799999998 47.55832029624434, 10.106573999999995 47.55822779624437, 10.106567999999998 47.558149896244295, 10.106833300000002 47.558131696244324, 10.1071675 47.55809059624432, 10.107599400000005 47.55803099624431, 10.1078578 47.55799299624433, 10.108283900000004 47.55792679624434, 10.109929700000002 47.5576737962443, 10.109882199999994 47.55758209624427, 10.109718499999994 47.55727729624424, 10.109281 47.55713849624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_3_LVCableDist_mvgd_33535_lvgd_1164210003_building_448076,BranchTee_mvgd_33535_lvgd_1164210003_3,BranchTee_mvgd_33535_lvgd_1164210003_building_448076,0.02695088488591708,0.023393368080976026,0.0022945218232607494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109349731615355 47.55737654395808, 10.109281 47.55713849624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_3_LVCableDist_mvgd_33535_lvgd_1164210003_building_448132,BranchTee_mvgd_33535_lvgd_1164210003_3,BranchTee_mvgd_33535_lvgd_1164210003_building_448132,0.02083907623092227,0.018088318168440528,0.0017741797863353695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109507493393465 47.55703074810997, 10.109281 47.55713849624423)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_40_LVCableDist_mvgd_33535_lvgd_1164210003_50,BranchTee_mvgd_33535_lvgd_1164210003_40,BranchTee_mvgd_33535_lvgd_1164210003_50,0.015061935384889195,0.003102758689287174,0.0012113527181827084,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106559200000001 47.55666959624417, 10.106633499999996 47.556628396244186, 10.106731499999999 47.556604796244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_40_LVCableDist_mvgd_33535_lvgd_1164210003_72,BranchTee_mvgd_33535_lvgd_1164210003_40,BranchTee_mvgd_33535_lvgd_1164210003_72,0.038631754591145984,0.007958141445776072,0.0031069500523219964,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106731499999999 47.556604796244144, 10.106928300000002 47.55656059624418, 10.107007000000001 47.55650039624417, 10.1070859 47.55638549624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_40_LVCableDist_mvgd_33535_lvgd_1164210003_building_447192,BranchTee_mvgd_33535_lvgd_1164210003_40,BranchTee_mvgd_33535_lvgd_1164210003_building_447192,0.014238705983338262,0.012359196793537612,0.001212243002486162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10678146895104 47.55672839025856, 10.106731499999999 47.556604796244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_41_LVCableDist_mvgd_33535_lvgd_1164210003_42,BranchTee_mvgd_33535_lvgd_1164210003_41,BranchTee_mvgd_33535_lvgd_1164210003_42,0.03714757930968636,0.007652401337795389,0.0029875855938036443,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.1016323 47.55293419624386, 10.101955399999994 47.55318679624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_41_LVCableDist_mvgd_33535_lvgd_1164210003_building_447049,BranchTee_mvgd_33535_lvgd_1164210003_41,BranchTee_mvgd_33535_lvgd_1164210003_building_447049,0.018116789046791263,0.015725372892614817,0.0015424119842905612,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10162175002308 47.55309709629373, 10.1016323 47.55293419624386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_41_LVCableDist_mvgd_33535_lvgd_1164210003_building_447072,BranchTee_mvgd_33535_lvgd_1164210003_41,BranchTee_mvgd_33535_lvgd_1164210003_building_447072,0.023337119854358573,0.02025662003358324,0.0019868561282697698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10193940000805 47.552962096309784, 10.1016323 47.55293419624386)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_42_LVCableDist_mvgd_33535_lvgd_1164210003_43,BranchTee_mvgd_33535_lvgd_1164210003_42,BranchTee_mvgd_33535_lvgd_1164210003_43,0.04518493388497226,0.009308096380304285,0.0036339880024568155,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.101955399999994 47.55318679624383, 10.102408799999994 47.55345309624388)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_42_LVCableDist_mvgd_33535_lvgd_1164210003_building_447075,BranchTee_mvgd_33535_lvgd_1164210003_42,BranchTee_mvgd_33535_lvgd_1164210003_building_447075,0.024538908461066013,0.0212997725442053,0.00208917299826157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102269957186184 47.55324431903717, 10.101955399999994 47.55318679624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_42_LVCableDist_mvgd_33535_lvgd_1164210003_building_447078,BranchTee_mvgd_33535_lvgd_1164210003_42,BranchTee_mvgd_33535_lvgd_1164210003_building_447078,0.01668437230348675,0.014482035159426499,0.001420460089522396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101978366813555 47.55333615082549, 10.101955399999994 47.55318679624383)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_43_LVCableDist_mvgd_33535_lvgd_1164210003_51,BranchTee_mvgd_33535_lvgd_1164210003_43,BranchTee_mvgd_33535_lvgd_1164210003_51,0.01642146637480997,0.003382822073210854,0.0013206926879814353,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.102408799999994 47.55345309624388, 10.102578500000005 47.55336029624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_43_LVCableDist_mvgd_33535_lvgd_1164210003_68,BranchTee_mvgd_33535_lvgd_1164210003_43,BranchTee_mvgd_33535_lvgd_1164210003_68,0.013407039506868943,0.0027618501384150023,0.0010782580946218905,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.102408799999994 47.55345309624388, 10.102521500000003 47.55354649624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_44_LVCableDist_mvgd_33535_lvgd_1164210003_47,BranchTee_mvgd_33535_lvgd_1164210003_44,BranchTee_mvgd_33535_lvgd_1164210003_47,0.03416140749607295,0.007037249944191027,0.002747423406744322,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.1031839 47.55388859624395, 10.103577400000002 47.55404149624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_44_LVCableDist_mvgd_33535_lvgd_1164210003_61,BranchTee_mvgd_33535_lvgd_1164210003_44,BranchTee_mvgd_33535_lvgd_1164210003_61,0.03680185967001296,0.00758118309202267,0.0029597811706305334,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.102770900000007 47.5537115962439, 10.1031839 47.55388859624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_44_LVCableDist_mvgd_33535_lvgd_1164210003_building_447071,BranchTee_mvgd_33535_lvgd_1164210003_44,BranchTee_mvgd_33535_lvgd_1164210003_building_447071,0.020778985093617107,0.01803615906125965,0.001769063797509218,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102921461677271 47.553946284012454, 10.1031839 47.55388859624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_44_LVCableDist_mvgd_33535_lvgd_1164210003_building_447073,BranchTee_mvgd_33535_lvgd_1164210003_44,BranchTee_mvgd_33535_lvgd_1164210003_building_447073,0.019392691628056156,0.01683285633315274,0.001651038707660108,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10319895042677 47.554062837504326, 10.1031839 47.55388859624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_44_LVCableDist_mvgd_33535_lvgd_1164210003_building_447085,BranchTee_mvgd_33535_lvgd_1164210003_44,BranchTee_mvgd_33535_lvgd_1164210003_building_447085,0.03012756642128621,0.026150727653676428,0.0025649754703045502,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103461100000196 47.553693096246505, 10.1031839 47.55388859624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_44_LVCableDist_mvgd_33535_lvgd_1164210003_building_447090,BranchTee_mvgd_33535_lvgd_1164210003_44,BranchTee_mvgd_33535_lvgd_1164210003_building_447090,0.01257217370822756,0.010912646778741522,0.0010703591760145485,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103333133037603 47.55383789594533, 10.1031839 47.55388859624395)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_45_LVCableDist_mvgd_33535_lvgd_1164210003_54,BranchTee_mvgd_33535_lvgd_1164210003_45,BranchTee_mvgd_33535_lvgd_1164210003_54,0.015935139661454323,0.0032826387702595905,0.0012815799729754174,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.107394500000007 47.5571990962442, 10.107390899999999 47.55705569624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_45_LVCableDist_mvgd_33535_lvgd_1164210003_66,BranchTee_mvgd_33535_lvgd_1164210003_45,BranchTee_mvgd_33535_lvgd_1164210003_66,0.024797122669835376,0.005108207269986087,0.001994302935288825,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.107390899999999 47.55705569624421, 10.107495599999995 47.55684409624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_45_LVCableDist_mvgd_33535_lvgd_1164210003_building_447197,BranchTee_mvgd_33535_lvgd_1164210003_45,BranchTee_mvgd_33535_lvgd_1164210003_building_447197,0.020612161798305675,0.017891356440929325,0.001754860935772371,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107127150004441 47.557105246269124, 10.107390899999999 47.55705569624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_45_LVCableDist_mvgd_33535_lvgd_1164210003_building_448020,BranchTee_mvgd_33535_lvgd_1164210003_45,BranchTee_mvgd_33535_lvgd_1164210003_building_448020,0.021807993867751663,0.018929338677208443,0.001856670683092863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107670894289253 47.55700563496373, 10.107390899999999 47.55705569624421)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_46_LVCableDist_mvgd_33535_lvgd_1164210003_66,BranchTee_mvgd_33535_lvgd_1164210003_46,BranchTee_mvgd_33535_lvgd_1164210003_66,0.024648490981700112,0.005077589142230223,0.0019823492656686936,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.107495599999995 47.55684409624425, 10.107613700000002 47.55663719624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_46_LVCableDist_mvgd_33535_lvgd_1164210003_71,BranchTee_mvgd_33535_lvgd_1164210003_46,BranchTee_mvgd_33535_lvgd_1164210003_71,0.009699710627249338,0.0019981403892133636,0.0007800970150019421,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.107613700000002 47.55663719624416, 10.1077097 47.55657899624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_46_LVCableDist_mvgd_33535_lvgd_1164210003_building_447190,BranchTee_mvgd_33535_lvgd_1164210003_46,BranchTee_mvgd_33535_lvgd_1164210003_building_447190,0.01971502405737898,0.017112640881804954,0.0016784811755626127,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107360565461574 47.55668241742235, 10.107613700000002 47.55663719624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_46_LVCableDist_mvgd_33535_lvgd_1164210003_building_448048,BranchTee_mvgd_33535_lvgd_1164210003_46,BranchTee_mvgd_33535_lvgd_1164210003_building_448048,0.018210911135950216,0.015807070866004788,0.0015504252717406873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107762987215516 47.55676612792825, 10.107613700000002 47.55663719624416)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_47_LVCableDist_mvgd_33535_lvgd_1164210003_48,BranchTee_mvgd_33535_lvgd_1164210003_47,BranchTee_mvgd_33535_lvgd_1164210003_48,0.175367839584825,0.036125774954473944,0.014103918502799347,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.103577400000002 47.55404149624392, 10.104047 47.55420959624399, 10.104249000000003 47.554299996243955, 10.104553199999993 47.554459696244, 10.1048679 47.554676696244016, 10.105169899999993 47.55488509624401, 10.105361600000005 47.55503319624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_47_LVCableDist_mvgd_33535_lvgd_1164210003_building_447091,BranchTee_mvgd_33535_lvgd_1164210003_47,BranchTee_mvgd_33535_lvgd_1164210003_building_447091,0.01904629250234415,0.01653218189203472,0.0016215472695544908,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103346700255129 47.5541117128138, 10.103577400000002 47.55404149624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_47_LVCableDist_mvgd_33535_lvgd_1164210003_building_447093,BranchTee_mvgd_33535_lvgd_1164210003_47,BranchTee_mvgd_33535_lvgd_1164210003_building_447093,0.015307416732026017,0.013286837723398583,0.0013032300014658785,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103442053706004 47.55414427833497, 10.103577400000002 47.55404149624392)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_48_LVCableDist_mvgd_33535_lvgd_1164210003_52,BranchTee_mvgd_33535_lvgd_1164210003_48,BranchTee_mvgd_33535_lvgd_1164210003_52,0.03696388327324439,0.007614559954288344,0.0029728118819680053,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.105361600000005 47.55503319624405, 10.105413099999993 47.55497969624406, 10.1054809 47.554909396244014, 10.105604899999996 47.55474479624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_48_LVCableDist_mvgd_33535_lvgd_1164210003_69,BranchTee_mvgd_33535_lvgd_1164210003_48,BranchTee_mvgd_33535_lvgd_1164210003_69,0.1530643369889082,0.031531253419715084,0.012310164393240229,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.105361600000005 47.55503319624405, 10.105463899999993 47.555167196244, 10.105644299999994 47.55534499624405, 10.105892399999995 47.55556849624406, 10.106084300000004 47.55571849624413, 10.1063184 47.555883996244106, 10.1066321 47.55610039624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_49_LVCableDist_mvgd_33535_lvgd_1164210003_51,BranchTee_mvgd_33535_lvgd_1164210003_49,BranchTee_mvgd_33535_lvgd_1164210003_51,0.022555908742112808,0.0046465172008752385,0.0018140538163011427,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.102578500000005 47.55336029624387, 10.1027045 47.55332549624386, 10.102865500000007 47.55334449624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_49_LVCableDist_mvgd_33535_lvgd_1164210003_63,BranchTee_mvgd_33535_lvgd_1164210003_49,BranchTee_mvgd_33535_lvgd_1164210003_63,0.01808061148245873,0.003724605965386498,0.001454129054866012,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.102865500000007 47.55334449624389, 10.102956099999997 47.553394996243945, 10.103061200000003 47.55343799624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_49_LVCableDist_mvgd_33535_lvgd_1164210003_building_447094,BranchTee_mvgd_33535_lvgd_1164210003_49,BranchTee_mvgd_33535_lvgd_1164210003_building_447094,0.022012855609784096,0.019107158669292596,0.001874112030189049,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102883841689934 47.553146763816706, 10.102865500000007 47.55334449624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_49_LVCableDist_mvgd_33535_lvgd_1164210003_building_447103,BranchTee_mvgd_33535_lvgd_1164210003_49,BranchTee_mvgd_33535_lvgd_1164210003_building_447103,0.020017005768748916,0.01737476100727406,0.0017041910411160818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103045954986985 47.55321222864538, 10.102865500000007 47.55334449624389)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_4_LVCableDist_mvgd_33535_lvgd_1164210003_5,BranchTee_mvgd_33535_lvgd_1164210003_4,BranchTee_mvgd_33535_lvgd_1164210003_5,0.029527274015714276,0.004842472938577142,0.0023747242784844993,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.108974200000004 47.555857496244144, 10.109329799999996 47.55596939624412)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_50_LVCableDist_mvgd_33535_lvgd_1164210003_56,BranchTee_mvgd_33535_lvgd_1164210003_50,BranchTee_mvgd_33535_lvgd_1164210003_56,0.013955835128327753,0.002874902036435517,0.0011223948573149398,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106493699999994 47.55678709624421, 10.106559200000001 47.55666959624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_50_LVCableDist_mvgd_33535_lvgd_1164210003_building_447176,BranchTee_mvgd_33535_lvgd_1164210003_50,BranchTee_mvgd_33535_lvgd_1164210003_building_447176,0.03067746520691566,0.026628039799602793,0.002611792291702154,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106328635520246 47.55644198583151, 10.106559200000001 47.55666959624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_51_LVCableDist_mvgd_33535_lvgd_1164210003_building_447088,BranchTee_mvgd_33535_lvgd_1164210003_51,BranchTee_mvgd_33535_lvgd_1164210003_building_447088,0.015774552606530108,0.013692311662468135,0.0013430006235814335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102391450942498 47.553296429334594, 10.102578500000005 47.55336029624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_52_LVCableDist_mvgd_33535_lvgd_1164210003_53,BranchTee_mvgd_33535_lvgd_1164210003_52,BranchTee_mvgd_33535_lvgd_1164210003_53,0.023491147438731423,0.004839176372378673,0.001889270175178581,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.105725100000006 47.55454969624397, 10.105604899999996 47.55474479624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_52_LVCableDist_mvgd_33535_lvgd_1164210003_building_447151,BranchTee_mvgd_33535_lvgd_1164210003_52,BranchTee_mvgd_33535_lvgd_1164210003_building_447151,0.013109139854999934,0.011378733394139943,0.0011160749492567569,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105499998092771 47.55465064913679, 10.105604899999996 47.55474479624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_52_LVCableDist_mvgd_33535_lvgd_1164210003_building_447198,BranchTee_mvgd_33535_lvgd_1164210003_52,BranchTee_mvgd_33535_lvgd_1164210003_building_447198,0.018514034370428666,0.016070181833532083,0.0015762323233307308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105359379220463 47.55473658852412, 10.105604899999996 47.55474479624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_53_LVCableDist_mvgd_33535_lvgd_1164210003_55,BranchTee_mvgd_33535_lvgd_1164210003_53,BranchTee_mvgd_33535_lvgd_1164210003_55,0.3634989975772543,0.07488079350091438,0.029234323977624474,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.105725100000006 47.55454969624397, 10.105999599999999 47.554031196243905, 10.106173999999998 47.55357479624385, 10.106255200000001 47.55330869624387, 10.106290199999998 47.553201496243894, 10.106334799999997 47.55315829624386, 10.106396799999999 47.553137996243834, 10.106460600000002 47.55313559624387, 10.106542999999993 47.55315349624387, 10.106732500000001 47.553196896243904, 10.106854500000008 47.553213896243854, 10.106922999999993 47.55321369624389, 10.1070144 47.55319449624386, 10.107172899999993 47.553161196243884, 10.1072636 47.553142196243904, 10.107387 47.55309379624385, 10.107607400000004 47.55312429624384, 10.107887000000005 47.553189896243886, 10.108165199999995 47.55326959624388, 10.1083543 47.55329859624389, 10.108894499999998 47.553365996243855)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_53_LVCableDist_mvgd_33535_lvgd_1164210003_building_447095,BranchTee_mvgd_33535_lvgd_1164210003_53,BranchTee_mvgd_33535_lvgd_1164210003_building_447095,0.02956008452025429,0.025658153363580724,0.0025166616723815874,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105699900007409 47.55428419625943, 10.105725100000006 47.55454969624397)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_54_LVCableDist_mvgd_33535_lvgd_1164210003_59,BranchTee_mvgd_33535_lvgd_1164210003_54,BranchTee_mvgd_33535_lvgd_1164210003_59,0.016087532505088223,0.003314031696048174,0.0012938361326687274,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.107363900000005 47.557342396244245, 10.107394500000007 47.5571990962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_54_LVCableDist_mvgd_33535_lvgd_1164210003_building_447200,BranchTee_mvgd_33535_lvgd_1164210003_54,BranchTee_mvgd_33535_lvgd_1164210003_building_447200,0.011768771323737784,0.010215293509004396,0.0010019597779289302,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107253074535596 47.557244155508506, 10.107394500000007 47.5571990962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_54_LVCableDist_mvgd_33535_lvgd_1164210003_building_448072,BranchTee_mvgd_33535_lvgd_1164210003_54,BranchTee_mvgd_33535_lvgd_1164210003_building_448072,0.019339758787354607,0.0167869106274238,0.0016465321558837562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107612232558498 47.55729137560904, 10.107394500000007 47.5571990962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_55_LVCableDist_mvgd_33535_lvgd_1164210003_building_447996,BranchTee_mvgd_33535_lvgd_1164210003_55,BranchTee_mvgd_33535_lvgd_1164210003_building_447996,0.012085620264363708,0.010490318389467698,0.001028935397171886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109018935715214 47.55329731597324, 10.108894499999998 47.553365996243855)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_56_LVCableDist_mvgd_33535_lvgd_1164210003_64,BranchTee_mvgd_33535_lvgd_1164210003_56,BranchTee_mvgd_33535_lvgd_1164210003_64,0.010209821717595598,0.002103223273824693,0.0008211225831029722,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106493699999994 47.55678709624421, 10.106521700000004 47.55680009624418, 10.1065414 47.55681879624419, 10.106550500000003 47.55684089624421, 10.106548 47.5568637962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_57_LVCableDist_mvgd_33535_lvgd_1164210003_71,BranchTee_mvgd_33535_lvgd_1164210003_57,BranchTee_mvgd_33535_lvgd_1164210003_71,0.03871396207901852,0.007975076188277815,0.0031135615707852393,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.1077097 47.55657899624414, 10.107231899999995 47.55645049624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_57_LVCableDist_mvgd_33535_lvgd_1164210003_72,BranchTee_mvgd_33535_lvgd_1164210003_57,BranchTee_mvgd_33535_lvgd_1164210003_72,0.013155585779055227,0.0027100506704853767,0.0010580349859110466,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.1070859 47.55638549624417, 10.107231899999995 47.55645049624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_57_LVCableDist_mvgd_33535_lvgd_1164210003_building_448038,BranchTee_mvgd_33535_lvgd_1164210003_57,BranchTee_mvgd_33535_lvgd_1164210003_building_448038,0.020027384430675168,0.017383769685826046,0.0017050746509265512,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107485224247345 47.556395666727305, 10.107231899999995 47.55645049624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_58_LVCableDist_mvgd_33535_lvgd_1164210003_60,BranchTee_mvgd_33535_lvgd_1164210003_58,BranchTee_mvgd_33535_lvgd_1164210003_60,0.018645631537984823,0.0038410000968248734,0.001499570663968647,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106372100000002 47.55714659624419, 10.1063634 47.55719409624423, 10.106373799999997 47.55723379624423, 10.106453500000004 47.557292296244256)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_58_LVCableDist_mvgd_33535_lvgd_1164210003_64,BranchTee_mvgd_33535_lvgd_1164210003_58,BranchTee_mvgd_33535_lvgd_1164210003_64,0.03508213134325604,0.007226919056710743,0.002821472412166282,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106548 47.5568637962442, 10.106533999999998 47.556884696244175, 10.106510399999996 47.556901196244176, 10.106479800000006 47.55691129624418, 10.106464799999996 47.55696309624418, 10.106372100000002 47.55714659624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_58_LVCableDist_mvgd_33535_lvgd_1164210003_building_447182,BranchTee_mvgd_33535_lvgd_1164210003_58,BranchTee_mvgd_33535_lvgd_1164210003_building_447182,0.010593788616744749,0.009195408519334442,0.0009019250861345139,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10627007263388 47.5570809610737, 10.106372100000002 47.55714659624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_58_LVCableDist_mvgd_33535_lvgd_1164210003_building_447187,BranchTee_mvgd_33535_lvgd_1164210003_58,BranchTee_mvgd_33535_lvgd_1164210003_building_447187,0.01003677100424204,0.008711917231682091,0.0008545021880278949,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10648480304534 47.55709838272817, 10.106372100000002 47.55714659624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_58_LVCableDist_mvgd_33535_lvgd_1164210003_building_447189,BranchTee_mvgd_33535_lvgd_1164210003_58,BranchTee_mvgd_33535_lvgd_1164210003_building_447189,0.01851071275928228,0.01606729867505702,0.001575949530788073,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106616896054627 47.55713164423666, 10.106372100000002 47.55714659624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_59_LVCableDist_mvgd_33535_lvgd_1164210003_65,BranchTee_mvgd_33535_lvgd_1164210003_59,BranchTee_mvgd_33535_lvgd_1164210003_65,0.010329289536257159,0.0021278336444689747,0.0008307307551720297,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.107302700000002 47.55742559624426, 10.107363900000005 47.557342396244245)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_59_LVCableDist_mvgd_33535_lvgd_1164210003_building_448074,BranchTee_mvgd_33535_lvgd_1164210003_59,BranchTee_mvgd_33535_lvgd_1164210003_building_448074,0.02968167274455274,0.02576369194227178,0.0025270133485987235,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10775785000708 47.557334596272234, 10.107363900000005 47.557342396244245)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_5_LVCableDist_mvgd_33535_lvgd_1164210003_building_448012,BranchTee_mvgd_33535_lvgd_1164210003_5,BranchTee_mvgd_33535_lvgd_1164210003_building_448012,0.020043661555200556,0.017397898229914083,0.0017064604390964583,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109044835196004 47.55568356527599, 10.108974200000004 47.555857496244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_5_LVCableDist_mvgd_33535_lvgd_1164210003_building_448051,BranchTee_mvgd_33535_lvgd_1164210003_5,BranchTee_mvgd_33535_lvgd_1164210003_building_448051,0.011231246990557877,0.009748722387804238,0.0009561964822807248,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10888201817159 47.555778040283144, 10.108974200000004 47.555857496244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_5_LVCableDist_mvgd_33535_lvgd_1164210003_building_448052,BranchTee_mvgd_33535_lvgd_1164210003_5,BranchTee_mvgd_33535_lvgd_1164210003_building_448052,0.006763050695745955,0.005870328003907489,0.0005757869353416536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109063284928473 47.55584983696682, 10.108974200000004 47.555857496244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_5_LVCableDist_mvgd_33535_lvgd_1164210003_building_448055,BranchTee_mvgd_33535_lvgd_1164210003_5,BranchTee_mvgd_33535_lvgd_1164210003_building_448055,0.019368553775149774,0.016811904676830004,0.0016489836793931406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109013926115514 47.55602972536714, 10.108974200000004 47.555857496244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_5_LVCableDist_mvgd_33535_lvgd_1164210003_building_448056,BranchTee_mvgd_33535_lvgd_1164210003_5,BranchTee_mvgd_33535_lvgd_1164210003_building_448056,0.014203117627169063,0.012328306100382746,0.0012092131108803813,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.109148644809343 47.55580892431244, 10.108974200000004 47.555857496244144)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_60_LVCableDist_mvgd_33535_lvgd_1164210003_building_447196,BranchTee_mvgd_33535_lvgd_1164210003_60,BranchTee_mvgd_33535_lvgd_1164210003_building_447196,0.025874248965503232,0.022458848102056804,0.002202860097660531,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106746413328404 47.557170587587414, 10.106453500000004 47.557292296244256)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_61_LVCableDist_mvgd_33535_lvgd_1164210003_68,BranchTee_mvgd_33535_lvgd_1164210003_61,BranchTee_mvgd_33535_lvgd_1164210003_68,0.026255780664832976,0.0054086908169555924,0.0021116151718631477,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.102521500000003 47.55354649624393, 10.102770900000007 47.5537115962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_61_LVCableDist_mvgd_33535_lvgd_1164210003_building_447070,BranchTee_mvgd_33535_lvgd_1164210003_61,BranchTee_mvgd_33535_lvgd_1164210003_building_447070,0.008184311873280252,0.007103982706007259,0.0006967890769117724,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10268426535609 47.55375606283197, 10.102770900000007 47.5537115962439)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_62_LVCableDist_mvgd_33535_lvgd_1164210003_67,BranchTee_mvgd_33535_lvgd_1164210003_62,BranchTee_mvgd_33535_lvgd_1164210003_67,0.004723577711527595,0.0009730570085746845,0.0003798926601522068,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106369500000003 47.556883096244235, 10.106357100000004 47.55686359624421, 10.1063544 47.55684239624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_62_LVCableDist_mvgd_33535_lvgd_1164210003_building_447183,BranchTee_mvgd_33535_lvgd_1164210003_62,BranchTee_mvgd_33535_lvgd_1164210003_building_447183,0.015397985865178553,0.013365451730974984,0.0013109408003287718,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10615341141052 47.556816991788715, 10.1063544 47.55684239624419)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_63_LVCableDist_mvgd_33535_lvgd_1164210003_building_447061,BranchTee_mvgd_33535_lvgd_1164210003_63,BranchTee_mvgd_33535_lvgd_1164210003_building_447061,0.009758161039281123,0.008470083782096014,0.0008307821266092517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103187820474597 47.55341938902018, 10.103061200000003 47.55343799624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_63_LVCableDist_mvgd_33535_lvgd_1164210003_building_447063,BranchTee_mvgd_33535_lvgd_1164210003_63,BranchTee_mvgd_33535_lvgd_1164210003_building_447063,0.0162920205806034,0.014141473863963751,0.0013870563777570646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1029891000013 47.553576246249165, 10.103061200000003 47.55343799624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_63_LVCableDist_mvgd_33535_lvgd_1164210003_building_447079,BranchTee_mvgd_33535_lvgd_1164210003_63,BranchTee_mvgd_33535_lvgd_1164210003_building_447079,0.0202752080887058,0.017598880620996633,0.0017261736535781756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103321509829462 47.553391487933595, 10.103061200000003 47.55343799624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_63_LVCableDist_mvgd_33535_lvgd_1164210003_building_447080,BranchTee_mvgd_33535_lvgd_1164210003_63,BranchTee_mvgd_33535_lvgd_1164210003_building_447080,0.02515504823778498,0.02183458187039736,0.0021416293895765506,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103303100003153 47.55359409625453, 10.103061200000003 47.55343799624387)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_64_LVCableDist_mvgd_33535_lvgd_1164210003_building_447185,BranchTee_mvgd_33535_lvgd_1164210003_64,BranchTee_mvgd_33535_lvgd_1164210003_building_447185,0.014030388374501112,0.012178377109066964,0.0011945074327017315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10672630633457 47.5569003753518, 10.106548 47.5568637962442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_65_LVCableDist_mvgd_33535_lvgd_1164210003_building_447199,BranchTee_mvgd_33535_lvgd_1164210003_65,BranchTee_mvgd_33535_lvgd_1164210003_building_447199,0.01863492990132975,0.016175119154354222,0.0015865250255986322,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107104737923489 47.557324981033375, 10.107302700000002 47.55742559624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_65_LVCableDist_mvgd_33535_lvgd_1164210003_building_448080,BranchTee_mvgd_33535_lvgd_1164210003_65,BranchTee_mvgd_33535_lvgd_1164210003_building_448080,0.019795909501562906,0.017182849447356603,0.001685367532639561,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107514971850057 47.55753066991113, 10.107302700000002 47.55742559624426)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_66_LVCableDist_mvgd_33535_lvgd_1164210003_building_447155,BranchTee_mvgd_33535_lvgd_1164210003_66,BranchTee_mvgd_33535_lvgd_1164210003_building_447155,0.008516465164065316,0.007392291762408694,0.0007250676650768849,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107390058964079 47.55681657746444, 10.107495599999995 47.55684409624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_66_LVCableDist_mvgd_33535_lvgd_1164210003_building_447193,BranchTee_mvgd_33535_lvgd_1164210003_66,BranchTee_mvgd_33535_lvgd_1164210003_building_447193,0.02111791922261076,0.01833035388522614,0.0017979196869880151,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10722156225207 47.556884375881374, 10.107495599999995 47.55684409624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_66_LVCableDist_mvgd_33535_lvgd_1164210003_building_447194,BranchTee_mvgd_33535_lvgd_1164210003_66,BranchTee_mvgd_33535_lvgd_1164210003_building_447194,0.009672572977243823,0.008395793344247638,0.0008234954019994116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107417532255745 47.55677497156472, 10.107495599999995 47.55684409624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_66_LVCableDist_mvgd_33535_lvgd_1164210003_building_448019,BranchTee_mvgd_33535_lvgd_1164210003_66,BranchTee_mvgd_33535_lvgd_1164210003_building_448019,0.01595478585428964,0.013848754121523409,0.0013583451705976802,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107705549087449 47.5568249072474, 10.107495599999995 47.55684409624425)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_67_LVCableDist_mvgd_33535_lvgd_1164210003_building_447165,BranchTee_mvgd_33535_lvgd_1164210003_67,BranchTee_mvgd_33535_lvgd_1164210003_building_447165,0.02955141477786687,0.025650628027188444,0.0025159235551288814,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106006350009233 47.55698384626885, 10.106369500000003 47.556883096244235)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_68_LVCableDist_mvgd_33535_lvgd_1164210003_building_447058,BranchTee_mvgd_33535_lvgd_1164210003_68,BranchTee_mvgd_33535_lvgd_1164210003_building_447058,0.015687564235610737,0.01361680575651012,0.0013355946806489734,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102721915275861 47.55350804277406, 10.102521500000003 47.55354649624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_68_LVCableDist_mvgd_33535_lvgd_1164210003_building_447064,BranchTee_mvgd_33535_lvgd_1164210003_68,BranchTee_mvgd_33535_lvgd_1164210003_building_447064,0.020628967365914297,0.01790594367361361,0.0017562917140860885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102372400001114 47.55370224625173, 10.102521500000003 47.55354649624393)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_69_LVCableDist_mvgd_33535_lvgd_1164210003_70,BranchTee_mvgd_33535_lvgd_1164210003_69,BranchTee_mvgd_33535_lvgd_1164210003_70,0.025153713180123348,0.00518166491510541,0.0020229816457518145,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.1066321 47.55610039624415, 10.106873000000009 47.556257196244154)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_69_LVCableDist_mvgd_33535_lvgd_1164210003_building_447168,BranchTee_mvgd_33535_lvgd_1164210003_69,BranchTee_mvgd_33535_lvgd_1164210003_building_447168,0.021401176697065656,0.018576221373052988,0.0018220354241702886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106434511520495 47.55623883221237, 10.1066321 47.55610039624415)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_6_LVCableDist_mvgd_33535_lvgd_1164210003_8,BranchTee_mvgd_33535_lvgd_1164210003_6,BranchTee_mvgd_33535_lvgd_1164210003_8,0.018973410609910354,0.003111639340025298,0.0015259322210723074,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.106152699999996 47.558896696244354, 10.1059175 47.55883549624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_6_LVCableDist_mvgd_33535_lvgd_1164210003_building_447207,BranchTee_mvgd_33535_lvgd_1164210003_6,BranchTee_mvgd_33535_lvgd_1164210003_building_447207,0.031092335988871442,0.026988147638340412,0.0026471132122233283,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105903809551123 47.55911997644994, 10.106152699999996 47.558896696244354)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_70_LVCableDist_mvgd_33535_lvgd_1164210003_72,BranchTee_mvgd_33535_lvgd_1164210003_70,BranchTee_mvgd_33535_lvgd_1164210003_72,0.02145511611514189,0.004419753919719229,0.0017255228203326908,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.106873000000009 47.556257196244154, 10.1070859 47.55638549624417)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_70_LVCableDist_mvgd_33535_lvgd_1164210003_building_447175,BranchTee_mvgd_33535_lvgd_1164210003_70,BranchTee_mvgd_33535_lvgd_1164210003_building_447175,0.018291243940001162,0.01587679973992101,0.0015572645786057077,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10665882112635 47.55633482247577, 10.106873000000009 47.556257196244154)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_71_LVCableDist_mvgd_33535_lvgd_1164210003_building_448040,BranchTee_mvgd_33535_lvgd_1164210003_71,BranchTee_mvgd_33535_lvgd_1164210003_building_448040,0.014602871989894696,0.012675292887228596,0.001243247062385141,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.107869164926214 47.55650422447865, 10.1077097 47.55657899624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_71_LVCableDist_mvgd_33535_lvgd_1164210003_building_448041,BranchTee_mvgd_33535_lvgd_1164210003_71,BranchTee_mvgd_33535_lvgd_1164210003_building_448041,0.0220836614112714,0.019168618104983576,0.0018801402351037969,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10797610984361 47.55649595131686, 10.1077097 47.55657899624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_71_LVCableDist_mvgd_33535_lvgd_1164210003_building_448044,BranchTee_mvgd_33535_lvgd_1164210003_71,BranchTee_mvgd_33535_lvgd_1164210003_building_448044,0.027298600023665524,0.023695184820541674,0.002324125302894875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10807180000044 47.55656789624642, 10.1077097 47.55657899624414)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_71_LVStation_mvgd_33535_lvgd_1164210003,BusBar_mvgd_33535_lvgd_1164210003_LV,BranchTee_mvgd_33535_lvgd_1164210003_71,0.022087244972365114,0.0045499724643072136,0.0017763616395064406,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.1077097 47.55657899624414, 10.107986899999998 47.556643896244175)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_7_LVCableDist_mvgd_33535_lvgd_1164210003_building_447119,BranchTee_mvgd_33535_lvgd_1164210003_7,BranchTee_mvgd_33535_lvgd_1164210003_building_447119,0.019530905066346745,0.016952825597588976,0.001662805807396094,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.101844868731098 47.55787485749006, 10.101957800000001 47.55803309624427)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210003_8_LVCableDist_mvgd_33535_lvgd_1164210003_9,BranchTee_mvgd_33535_lvgd_1164210003_8,BranchTee_mvgd_33535_lvgd_1164210003_9,0.034636475407861536,0.0056803819668892926,0.002785630635202082,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.105505599999994 47.55897419624437, 10.1059175 47.55883549624442)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_10_LVCableDist_mvgd_33535_lvgd_1164210004_28,BranchTee_mvgd_33535_lvgd_1164210004_10,BranchTee_mvgd_33535_lvgd_1164210004_28,0.05428850811725657,0.013734992553665913,0.004366140883853392,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035319899999998 47.56661759624504, 10.0354434 47.566768996245074, 10.035516000000003 47.56685809624508, 10.0355049 47.56707179624508)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_10_LVCableDist_mvgd_33535_lvgd_1164210004_30,BranchTee_mvgd_33535_lvgd_1164210004_10,BranchTee_mvgd_33535_lvgd_1164210004_30,0.05747877209316927,0.014542129339571825,0.004622717136518722,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0355049 47.56707179624508, 10.0354375 47.56720639624513, 10.035398800000001 47.56733529624509, 10.035406599999998 47.56738959624513, 10.035436199999998 47.56743109624509, 10.035643599999997 47.567457396245146)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_10_LVCableDist_mvgd_33535_lvgd_1164210004_building_446231,BranchTee_mvgd_33535_lvgd_1164210004_10,BranchTee_mvgd_33535_lvgd_1164210004_building_446231,0.020376360571325542,0.01768668097591057,0.0017347854887676496,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035272710823415 47.566977604714275, 10.0355049 47.56707179624508)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_10_LVCableDist_mvgd_33535_lvgd_1164210004_building_446238,BranchTee_mvgd_33535_lvgd_1164210004_10,BranchTee_mvgd_33535_lvgd_1164210004_building_446238,0.024788649181399242,0.021516547489454543,0.0021104352141549294,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035833900005288 47.5670797462763, 10.0355049 47.56707179624508)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_11_LVCableDist_mvgd_33535_lvgd_1164210004_14,BranchTee_mvgd_33535_lvgd_1164210004_11,BranchTee_mvgd_33535_lvgd_1164210004_14,0.09664303636100535,0.024450688199334353,0.007772494158140049,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.036457499999996 47.56547579624494, 10.0369924 47.56528199624499, 10.037613499999996 47.56509959624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_11_LVCableDist_mvgd_33535_lvgd_1164210004_17,BranchTee_mvgd_33535_lvgd_1164210004_11,BranchTee_mvgd_33535_lvgd_1164210004_17,0.03786337259927589,0.0095794332676168,0.003045153105869266,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035986099999999 47.565582996244956, 10.0360928 47.56557849624494, 10.036249799999995 47.565543396244934, 10.0363425 47.565516796244964, 10.036411300000003 47.56549229624493, 10.036457499999996 47.56547579624494)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_11_LVCableDist_mvgd_33535_lvgd_1164210004_8,BranchTee_mvgd_33535_lvgd_1164210004_8,BranchTee_mvgd_33535_lvgd_1164210004_11,0.006718772606010045,0.0016998494693205412,0.0005403557545006466,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.036457499999996 47.56547579624494, 10.036464200000005 47.56541549624494)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_12_LVCableDist_mvgd_33535_lvgd_1164210004_20,BranchTee_mvgd_33535_lvgd_1164210004_12,BranchTee_mvgd_33535_lvgd_1164210004_20,0.0651097866669989,0.01647277602675072,0.005236439743227966,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.036900800000007 47.56763349624518, 10.037224699999994 47.567678096245146, 10.037481999999999 47.56770789624513, 10.037692500000006 47.567698996245134, 10.037754699999995 47.56769729624512)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_12_LVCableDist_mvgd_33535_lvgd_1164210004_30,BranchTee_mvgd_33535_lvgd_1164210004_12,BranchTee_mvgd_33535_lvgd_1164210004_30,0.0966934112496721,0.024463433046167042,0.007776545547072166,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035643599999997 47.567457396245146, 10.035971799999993 47.56750399624514, 10.036052900000003 47.56751299624514, 10.036140600000003 47.56752639624518, 10.0366618 47.5675928962451, 10.036900800000007 47.56763349624518)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_12_LVCableDist_mvgd_33535_lvgd_1164210004_building_446213,BranchTee_mvgd_33535_lvgd_1164210004_12,BranchTee_mvgd_33535_lvgd_1164210004_building_446213,0.09765972907306165,0.08476864483541752,0.008314472068743252,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036760524535952 47.5685073030315, 10.036900800000007 47.56763349624518)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_13_LVCableDist_mvgd_33535_lvgd_1164210004_20,BranchTee_mvgd_33535_lvgd_1164210004_13,BranchTee_mvgd_33535_lvgd_1164210004_20,0.013583986048201406,0.0034367484701949558,0.001092488979852692,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.037932700000006 47.56771719624515, 10.037754699999995 47.56769729624512)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_13_LVCableDist_mvgd_33535_lvgd_1164210004_building_446214,BranchTee_mvgd_33535_lvgd_1164210004_13,BranchTee_mvgd_33535_lvgd_1164210004_building_446214,0.011883140598280816,0.010314566039307749,0.0010116968532591214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037917524049167 47.56782365191671, 10.037932700000006 47.56771719624515)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_14_LVCableDist_mvgd_33535_lvgd_1164210004_31,BranchTee_mvgd_33535_lvgd_1164210004_14,BranchTee_mvgd_33535_lvgd_1164210004_31,0.12036283565354049,0.030451797420345744,0.0096801536065126,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.038968300000008 47.565642296244945, 10.0387212 47.565516796244964, 10.038474200000003 47.56543399624498, 10.0382321 47.565398396244944, 10.037945400000002 47.56529699624496, 10.037759300000001 47.56520199624495, 10.037613499999996 47.56509959624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_14_LVCableDist_mvgd_33535_lvgd_1164210004_9,BranchTee_mvgd_33535_lvgd_1164210004_9,BranchTee_mvgd_33535_lvgd_1164210004_14,0.10117799701608803,0.025598033245070272,0.008137217334545206,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.038921100000003 47.56492829624491, 10.038536299999995 47.56493919624492, 10.0381952 47.5649660962449, 10.037921400000002 47.56501659624489, 10.037613499999996 47.56509959624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_15_LVCableDist_mvgd_33535_lvgd_1164210004_21,BranchTee_mvgd_33535_lvgd_1164210004_15,BranchTee_mvgd_33535_lvgd_1164210004_21,0.023147351369727853,0.005856279896541147,0.0018616204547378856,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.036929000000004 47.56514299624492, 10.036679500000005 47.56526469624499)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_15_LVCableDist_mvgd_33535_lvgd_1164210004_building_446185,BranchTee_mvgd_33535_lvgd_1164210004_15,BranchTee_mvgd_33535_lvgd_1164210004_building_446185,0.01266872699050082,0.010996455027754712,0.0010785794483440562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036783303811502 47.565085979670734, 10.036929000000004 47.56514299624492)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_16_LVCableDist_mvgd_33535_lvgd_1164210004_26,BranchTee_mvgd_33535_lvgd_1164210004_16,BranchTee_mvgd_33535_lvgd_1164210004_26,0.015588959760383837,0.003944006819377111,0.0012537385333844164,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035144299999999 47.56622419624501, 10.0351969 47.56635989624506)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_16_LVCableDist_mvgd_33535_lvgd_1164210004_building_446207,BranchTee_mvgd_33535_lvgd_1164210004_16,BranchTee_mvgd_33535_lvgd_1164210004_building_446207,0.019769230371834617,0.01715969196275245,0.0016830961472788842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034914300004274 47.56613839629134, 10.035144299999999 47.56622419624501)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_16_LVCableDist_mvgd_33535_lvgd_1164210004_building_446208,BranchTee_mvgd_33535_lvgd_1164210004_16,BranchTee_mvgd_33535_lvgd_1164210004_building_446208,0.02510401595899381,0.021790285852406624,0.0021372846462453863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03522177115898 47.56600443786831, 10.035144299999999 47.56622419624501)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_16_LVCableDist_mvgd_33535_lvgd_1164210004_building_446215,BranchTee_mvgd_33535_lvgd_1164210004_16,BranchTee_mvgd_33535_lvgd_1164210004_building_446215,0.019198938060406803,0.016664678236433104,0.0016345430789938163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035398783116923 47.566213519791965, 10.035144299999999 47.56622419624501)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_16_LVCableDist_mvgd_33535_lvgd_1164210004_building_446217,BranchTee_mvgd_33535_lvgd_1164210004_16,BranchTee_mvgd_33535_lvgd_1164210004_building_446217,0.05344826430729193,0.046393093418729395,0.0045504334788121666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03582630000163 47.56609084626773, 10.035144299999999 47.56622419624501)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_17_LVCableDist_mvgd_33535_lvgd_1164210004_18,BranchTee_mvgd_33535_lvgd_1164210004_17,BranchTee_mvgd_33535_lvgd_1164210004_18,0.02151936736397458,0.005444399943085569,0.0017306902123663999,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035747099999996 47.565493696244914, 10.035793600000002 47.56553199624499, 10.035900600000002 47.56557809624498, 10.035986099999999 47.565582996244956)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_17_LVCableDist_mvgd_33535_lvgd_1164210004_building_446203,BranchTee_mvgd_33535_lvgd_1164210004_17,BranchTee_mvgd_33535_lvgd_1164210004_building_446203,0.013271229738155145,0.011519427412718665,0.0011298748217211953,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036015967545527 47.56546527916919, 10.035986099999999 47.565582996244956)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_18_LVCableDist_mvgd_33535_lvgd_1164210004_19,BranchTee_mvgd_33535_lvgd_1164210004_18,BranchTee_mvgd_33535_lvgd_1164210004_19,0.038250760780533605,0.009677442477475002,0.003076308711996031,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035747099999996 47.565493696244914, 10.0357719 47.56537419624492, 10.035831599999996 47.56515429624495)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_18_LVCableDist_mvgd_33535_lvgd_1164210004_6,BranchTee_mvgd_33535_lvgd_1164210004_6,BranchTee_mvgd_33535_lvgd_1164210004_18,0.0290758538939548,0.007356191035170565,0.0023384189181465237,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035747099999996 47.565493696244914, 10.035584199999997 47.56558399624495, 10.035423100000004 47.565631496244976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_19_LVCableDist_mvgd_33535_lvgd_1164210004_25,BranchTee_mvgd_33535_lvgd_1164210004_19,BranchTee_mvgd_33535_lvgd_1164210004_25,0.025541054223692298,0.006461886718594151,0.002054133460840711,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035831599999996 47.56515429624495, 10.035718400000002 47.565238496244895, 10.0355656 47.565290696244936)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_19_LVCableDist_mvgd_33535_lvgd_1164210004_29,BranchTee_mvgd_33535_lvgd_1164210004_19,BranchTee_mvgd_33535_lvgd_1164210004_29,0.0503659676305063,0.012742589810518094,0.004050671459812862,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.036043800000005 47.56472589624488, 10.036027700000005 47.56478749624494, 10.0359131 47.56496969624492, 10.035831599999996 47.56515429624495)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_19_LVCableDist_mvgd_33535_lvgd_1164210004_building_446178,BranchTee_mvgd_33535_lvgd_1164210004_19,BranchTee_mvgd_33535_lvgd_1164210004_building_446178,0.020670311195151198,0.017941830117391238,0.0017598116103285607,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03603263577148 47.56528097152551, 10.035831599999996 47.56515429624495)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_1_LVCableDist_mvgd_33535_lvgd_1164210004_16,BranchTee_mvgd_33535_lvgd_1164210004_1,BranchTee_mvgd_33535_lvgd_1164210004_16,0.046112846154682724,0.011666550077134729,0.0037086151351210903,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035012500000002 47.56581889624501, 10.035144299999999 47.56622419624501)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_1_LVCableDist_mvgd_33535_lvgd_1164210004_32,BranchTee_mvgd_33535_lvgd_1164210004_1,BranchTee_mvgd_33535_lvgd_1164210004_32,0.01597954342955222,0.004042824487676711,0.0012851511358976076,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035062200000004 47.56568229624497, 10.035012899999996 47.565755996244945, 10.035012500000002 47.56581889624501)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_1_LVCableDist_mvgd_33535_lvgd_1164210004_building_446196,BranchTee_mvgd_33535_lvgd_1164210004_1,BranchTee_mvgd_33535_lvgd_1164210004_building_446196,0.01916850420600261,0.016638261650810265,0.0016319520270342254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034777845707458 47.56588578368532, 10.035012500000002 47.56581889624501)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_20_LVCableDist_mvgd_33535_lvgd_1164210004_building_446212,BranchTee_mvgd_33535_lvgd_1164210004_20,BranchTee_mvgd_33535_lvgd_1164210004_building_446212,0.006399022101200989,0.0055543511838424585,0.0005447945743112065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037780627112872 47.56775214307458, 10.037754699999995 47.56769729624512)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_21_LVCableDist_mvgd_33535_lvgd_1164210004_8,BranchTee_mvgd_33535_lvgd_1164210004_8,BranchTee_mvgd_33535_lvgd_1164210004_21,0.02331431663066733,0.005898522107558834,0.001875048597769493,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.036679500000005 47.56526469624499, 10.036464200000005 47.56541549624494)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_21_LVCableDist_mvgd_33535_lvgd_1164210004_building_446182,BranchTee_mvgd_33535_lvgd_1164210004_21,BranchTee_mvgd_33535_lvgd_1164210004_building_446182,0.01457951139318291,0.012655015889282766,0.0012412582075038826,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03651704021272 47.565193311873145, 10.036679500000005 47.56526469624499)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_22_LVCableDist_mvgd_33535_lvgd_1164210004_23,BranchTee_mvgd_33535_lvgd_1164210004_22,BranchTee_mvgd_33535_lvgd_1164210004_23,0.020167168866266016,0.005102293723165302,0.0016219399565815325,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035086800000002 47.56528279624492, 10.0348695 47.565176696244954)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_22_LVCableDist_mvgd_33535_lvgd_1164210004_25,BranchTee_mvgd_33535_lvgd_1164210004_22,BranchTee_mvgd_33535_lvgd_1164210004_25,0.03608847529591736,0.009130384249867092,0.0029024073950441143,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0355656 47.565290696244936, 10.035327299999995 47.56529269624494, 10.035086800000002 47.56528279624492)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_22_LVCableDist_mvgd_33535_lvgd_1164210004_building_446190,BranchTee_mvgd_33535_lvgd_1164210004_22,BranchTee_mvgd_33535_lvgd_1164210004_building_446190,0.01141994937981011,0.009912516061675177,0.0009722620679590245,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035018150013736 47.565374446284906, 10.035086800000002 47.56528279624492)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_23_LVCableDist_mvgd_33535_lvgd_1164210004_building_446152,BranchTee_mvgd_33535_lvgd_1164210004_23,BranchTee_mvgd_33535_lvgd_1164210004_building_446152,0.03018256062781068,0.026198462624939668,0.0025696575209146672,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034808780951716 47.5649081809939, 10.0348695 47.565176696244954)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_23_LVCableDist_mvgd_33535_lvgd_1164210004_building_446160,BranchTee_mvgd_33535_lvgd_1164210004_23,BranchTee_mvgd_33535_lvgd_1164210004_building_446160,0.015268931031275591,0.013253432135147214,0.0012999534381682675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034894322241328 47.565040305286765, 10.0348695 47.565176696244954)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_23_LVCableDist_mvgd_33535_lvgd_1164210004_building_446166,BranchTee_mvgd_33535_lvgd_1164210004_23,BranchTee_mvgd_33535_lvgd_1164210004_building_446166,0.02062324566034066,0.017900977233175693,0.001755804584317973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035109571624568 47.565087358677026, 10.0348695 47.565176696244954)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_24_LVCableDist_mvgd_33535_lvgd_1164210004_31,BranchTee_mvgd_33535_lvgd_1164210004_24,BranchTee_mvgd_33535_lvgd_1164210004_31,0.050701438216945116,0.012827463868887114,0.004077651605217064,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.039204400000001 47.566001096244975, 10.039276900000004 47.56584049624501, 10.039143400000004 47.565762696244995, 10.038968300000008 47.565642296244945)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_24_LVCableDist_mvgd_33535_lvgd_1164210004_building_446206,BranchTee_mvgd_33535_lvgd_1164210004_24,BranchTee_mvgd_33535_lvgd_1164210004_building_446206,0.011448716370471068,0.009937485809568887,0.0009747112078718886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039053890681835 47.56601569739644, 10.039204400000001 47.566001096244975)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_24_LVCableDist_mvgd_33535_lvgd_1164210004_building_446218,BranchTee_mvgd_33535_lvgd_1164210004_24,BranchTee_mvgd_33535_lvgd_1164210004_building_446218,0.014902480430458939,0.012935353013638358,0.0012687548744001371,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039394631169788 47.56596409460104, 10.039204400000001 47.566001096244975)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_25_LVCableDist_mvgd_33535_lvgd_1164210004_building_446171,BranchTee_mvgd_33535_lvgd_1164210004_25,BranchTee_mvgd_33535_lvgd_1164210004_building_446171,0.019201222894813436,0.01666666147269806,0.0016347376033083517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035457805795206 47.56513408188496, 10.0355656 47.565290696244936)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_26_LVCableDist_mvgd_33535_lvgd_1164210004_28,BranchTee_mvgd_33535_lvgd_1164210004_26,BranchTee_mvgd_33535_lvgd_1164210004_28,0.030093338277320383,0.007613614584162057,0.0024202498676229693,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0351969 47.56635989624506, 10.035319899999998 47.56661759624504)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_26_LVCableDist_mvgd_33535_lvgd_1164210004_building_446211,BranchTee_mvgd_33535_lvgd_1164210004_26,BranchTee_mvgd_33535_lvgd_1164210004_building_446211,0.019162951646889602,0.016633442029500175,0.0016314792979155463,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035000026610899 47.56646919078349, 10.0351969 47.56635989624506)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_26_LVCableDist_mvgd_33535_lvgd_1164210004_building_446222,BranchTee_mvgd_33535_lvgd_1164210004_26,BranchTee_mvgd_33535_lvgd_1164210004_building_446222,0.04642503227693556,0.04029692801638007,0.003952495443319414,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035805737672984 47.56629402743356, 10.0351969 47.56635989624506)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_27_LVCableDist_mvgd_33535_lvgd_1164210004_31,BranchTee_mvgd_33535_lvgd_1164210004_27,BranchTee_mvgd_33535_lvgd_1164210004_31,0.05361551271300311,0.013564724716389788,0.004312015381955091,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0396704 47.56571899624502, 10.0394299 47.56570159624495, 10.039344500000006 47.56569539624496, 10.038968300000008 47.565642296244945)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_27_LVCableDist_mvgd_33535_lvgd_1164210004_building_446220,BranchTee_mvgd_33535_lvgd_1164210004_27,BranchTee_mvgd_33535_lvgd_1164210004_building_446220,0.014738876171439954,0.01279334451680988,0.0012548260722741028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03977334379636 47.565831820766725, 10.0396704 47.56571899624502)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_28_LVCableDist_mvgd_33535_lvgd_1164210004_building_446223,BranchTee_mvgd_33535_lvgd_1164210004_28,BranchTee_mvgd_33535_lvgd_1164210004_building_446223,0.01777402041126933,0.015427849716981778,0.0015132296358124466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035435595684177 47.56647815743607, 10.035319899999998 47.56661759624504)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_29_LVCableDist_mvgd_33535_lvgd_1164210004_5,BranchTee_mvgd_33535_lvgd_1164210004_5,BranchTee_mvgd_33535_lvgd_1164210004_29,0.03153063994175658,0.007977251905264415,0.002535844526182589,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0359819 47.56444529624484, 10.036002400000005 47.564558296244876, 10.036043800000005 47.56472589624488)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_29_LVCableDist_mvgd_33535_lvgd_1164210004_building_446177,BranchTee_mvgd_33535_lvgd_1164210004_29,BranchTee_mvgd_33535_lvgd_1164210004_building_446177,0.011797457545901564,0.010240193149842558,0.0010044020414412536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036178054145722 47.564671164387555, 10.036043800000005 47.56472589624488)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_2_LVCableDist_mvgd_33535_lvgd_1164210004_33,BranchTee_mvgd_33535_lvgd_1164210004_2,BranchTee_mvgd_33535_lvgd_1164210004_33,0.04172349041486399,0.010556043074960591,0.003355602200818198,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.034198900000003 47.56553199624499, 10.034129499999993 47.56539049624495, 10.034151900000003 47.56516459624495)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_2_LVCableDist_mvgd_33535_lvgd_1164210004_4,BranchTee_mvgd_33535_lvgd_1164210004_2,BranchTee_mvgd_33535_lvgd_1164210004_4,0.019231014840211228,0.004865446754573441,0.0015466499825429474,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.034151900000003 47.56516459624495, 10.0341349 47.56499189624492)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_2_LVCableDist_mvgd_33535_lvgd_1164210004_building_446121,BranchTee_mvgd_33535_lvgd_1164210004_2,BranchTee_mvgd_33535_lvgd_1164210004_building_446121,0.029228005807105422,0.025369909040567507,0.002488389433544688,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033775331012029 47.565100814834366, 10.034151900000003 47.56516459624495)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_2_LVCableDist_mvgd_33535_lvgd_1164210004_building_446130,BranchTee_mvgd_33535_lvgd_1164210004_2,BranchTee_mvgd_33535_lvgd_1164210004_building_446130,0.0223475737744161,0.019397694036193174,0.0019026089844315882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034437707780526 47.56521877707248, 10.034151900000003 47.56516459624495)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_30_LVCableDist_mvgd_33535_lvgd_1164210004_building_446242,BranchTee_mvgd_33535_lvgd_1164210004_30,BranchTee_mvgd_33535_lvgd_1164210004_building_446242,0.01977112060074749,0.017161332681448822,0.0016832570760020003,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035810386720128 47.56731995884946, 10.035643599999997 47.567457396245146)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_32_LVCableDist_mvgd_33535_lvgd_1164210004_33,BranchTee_mvgd_33535_lvgd_1164210004_32,BranchTee_mvgd_33535_lvgd_1164210004_33,0.07498831334098639,0.018972043275269558,0.006030917998006587,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035062200000004 47.56568229624497, 10.034852599999997 47.565710796244986, 10.034695700000002 47.56569799624496, 10.0345927 47.565622496244956, 10.034536399999997 47.56555699624498, 10.0344581 47.565514796244955, 10.034198900000003 47.56553199624499)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_32_LVCableDist_mvgd_33535_lvgd_1164210004_6,BranchTee_mvgd_33535_lvgd_1164210004_6,BranchTee_mvgd_33535_lvgd_1164210004_32,0.02775551545284172,0.007022145409568956,0.0022322310001470854,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.035423100000004 47.565631496244976, 10.035062200000004 47.56568229624497)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_33_LVCableDist_mvgd_33535_lvgd_1164210004_building_446187,BranchTee_mvgd_33535_lvgd_1164210004_33,BranchTee_mvgd_33535_lvgd_1164210004_building_446187,0.03344181137181246,0.029027492270733212,0.0028471408759602264,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0338403353926 47.565709595672736, 10.034198900000003 47.56553199624499)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_34_LVCableDist_mvgd_33535_lvgd_1164210004_36,BranchTee_mvgd_33535_lvgd_1164210004_34,BranchTee_mvgd_33535_lvgd_1164210004_36,0.22685403782213373,0.05739407156899983,0.01824468425367543,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.041935999999998 47.56279989624472, 10.0414431 47.562770596244675, 10.041357000000007 47.562776796244705, 10.041264000000004 47.56279859624468, 10.040616499999997 47.563116196244735, 10.040232899999994 47.56341679624479, 10.0400841 47.56351449624481, 10.039940900000001 47.56355549624479, 10.039375101086927 47.563654797712736)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_34_LVCableDist_mvgd_33535_lvgd_1164210004_40,BranchTee_mvgd_33535_lvgd_1164210004_34,BranchTee_mvgd_33535_lvgd_1164210004_40,0.044011347823287784,0.011134870999291809,0.0035396026111033864,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.039375101086927 47.563654797712736, 10.038809300000006 47.56375409624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_34_LVCableDist_mvgd_33535_lvgd_1164210004_building_34328732,BranchTee_mvgd_33535_lvgd_1164210004_34,BranchTee_mvgd_33535_lvgd_1164210004_building_34328732,0.0442804010572591,0.0384353881177009,0.003769907630072312,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039775819403019 47.563946466089135, 10.039375101086927 47.563654797712736)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_35_LVCableDist_mvgd_33535_lvgd_1164210004_40,BranchTee_mvgd_33535_lvgd_1164210004_35,BranchTee_mvgd_33535_lvgd_1164210004_40,0.045707682055859476,0.011564043560132447,0.0036760299048782374,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.038203800000002 47.56378289624483, 10.038809300000006 47.56375409624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_35_LVCableDist_mvgd_33535_lvgd_1164210004_43,BranchTee_mvgd_33535_lvgd_1164210004_35,BranchTee_mvgd_33535_lvgd_1164210004_43,0.05371098691771184,0.013588879690181096,0.004319693873094169,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.038203800000002 47.56378289624483, 10.038403599999999 47.563624896244754, 10.0386644 47.56341379624475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_35_LVCableDist_mvgd_33535_lvgd_1164210004_44,BranchTee_mvgd_33535_lvgd_1164210004_35,BranchTee_mvgd_33535_lvgd_1164210004_44,0.07102644910575592,0.017969691623756247,0.00571228597046303,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0375262 47.56422759624481, 10.038203800000002 47.56378289624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_35_LVCableDist_mvgd_33535_lvgd_1164210004_building_446159,BranchTee_mvgd_33535_lvgd_1164210004_35,BranchTee_mvgd_33535_lvgd_1164210004_building_446159,0.018549712838311656,0.016101150743654518,0.0015792698867919887,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038129452652298 47.563623730189775, 10.038203800000002 47.56378289624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_35_LVCableDist_mvgd_33535_lvgd_1164210004_building_446162,BranchTee_mvgd_33535_lvgd_1164210004_35,BranchTee_mvgd_33535_lvgd_1164210004_building_446162,0.04623917931480703,0.0401356076452525,0.003936672449776653,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037613257758736 47.56366886281832, 10.038203800000002 47.56378289624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_35_LVCableDist_mvgd_33535_lvgd_1164210004_building_446164,BranchTee_mvgd_33535_lvgd_1164210004_35,BranchTee_mvgd_33535_lvgd_1164210004_building_446164,0.032176450607913874,0.027929159127669242,0.002739411652992103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037789256369908 47.563853125510384, 10.038203800000002 47.56378289624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_35_LVCableDist_mvgd_33535_lvgd_1164210004_building_446169,BranchTee_mvgd_33535_lvgd_1164210004_35,BranchTee_mvgd_33535_lvgd_1164210004_building_446169,0.019199043857892,0.016664770068650255,0.0016345520862913376,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038284549985692 47.56394679629565, 10.038203800000002 47.56378289624483)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_36_LVCableDist_mvgd_33535_lvgd_1164210004_building_446354,BranchTee_mvgd_33535_lvgd_1164210004_36,BranchTee_mvgd_33535_lvgd_1164210004_building_446354,0.032439767668850344,0.0281577183365621,0.0027618297199800005,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042364077564775 47.56283257691557, 10.041935999999998 47.56279989624472)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_36_LVCableDist_mvgd_33535_lvgd_1164210004_building_446362,BranchTee_mvgd_33535_lvgd_1164210004_36,BranchTee_mvgd_33535_lvgd_1164210004_building_446362,0.035567935561649104,0.03087296806751142,0.003028153053229847,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041789856680623 47.56310430986495, 10.041935999999998 47.56279989624472)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_37_LVCableDist_mvgd_33535_lvgd_1164210004_38,BranchTee_mvgd_33535_lvgd_1164210004_37,BranchTee_mvgd_33535_lvgd_1164210004_38,0.036364445248105344,0.009200204647770651,0.00292460221550889,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.036154999999995 47.56436919624487, 10.036610400000004 47.56447809624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_37_LVCableDist_mvgd_33535_lvgd_1164210004_building_446165,BranchTee_mvgd_33535_lvgd_1164210004_37,BranchTee_mvgd_33535_lvgd_1164210004_building_446165,0.015320222208388993,0.013297952876881645,0.0013043202233675515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036267678337241 47.56425438754369, 10.036154999999995 47.56436919624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_37_LVStation_mvgd_33535_lvgd_1164210004,BusBar_mvgd_33535_lvgd_1164210004_LV,BranchTee_mvgd_33535_lvgd_1164210004_37,0.013036604446933686,0.003298260925074223,0.001048465939411018,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0359923 47.56432909624486, 10.036154999999995 47.56436919624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_38_LVCableDist_mvgd_33535_lvgd_1164210004_39,BranchTee_mvgd_33535_lvgd_1164210004_38,BranchTee_mvgd_33535_lvgd_1164210004_39,0.014446442261376006,0.0036549498921281294,0.0011618518240985082,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0367969 47.56450809624488, 10.036683000000002 47.56449249624483, 10.036610400000004 47.56447809624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_38_LVCableDist_mvgd_33535_lvgd_1164210004_building_446168,BranchTee_mvgd_33535_lvgd_1164210004_38,BranchTee_mvgd_33535_lvgd_1164210004_building_446168,0.015465986916582604,0.0134244766435937,0.001316730216784363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036639228680176 47.56434027611946, 10.036610400000004 47.56447809624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_38_LVCableDist_mvgd_33535_lvgd_1164210004_building_446173,BranchTee_mvgd_33535_lvgd_1164210004_38,BranchTee_mvgd_33535_lvgd_1164210004_building_446173,0.01337247924109139,0.011607311981267326,0.001138494916944967,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036508350008276 47.56457659632062, 10.036610400000004 47.56447809624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_39_LVCableDist_mvgd_33535_lvgd_1164210004_44,BranchTee_mvgd_33535_lvgd_1164210004_39,BranchTee_mvgd_33535_lvgd_1164210004_44,0.06402270042012032,0.01619774320629044,0.005149011079752451,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0367969 47.56450809624488, 10.036873299999995 47.56450869624486, 10.037370199999996 47.56430239624484, 10.0375262 47.56422759624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_39_LVCableDist_mvgd_33535_lvgd_1164210004_building_446183,BranchTee_mvgd_33535_lvgd_1164210004_39,BranchTee_mvgd_33535_lvgd_1164210004_building_446183,0.015218006739709742,0.013209229850068057,0.0012956178885628817,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036746344053114 47.56464070784881, 10.0367969 47.56450809624488)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_3_LVCableDist_mvgd_33535_lvgd_1164210004_7,BranchTee_mvgd_33535_lvgd_1164210004_3,BranchTee_mvgd_33535_lvgd_1164210004_7,0.2992669011665583,0.07571452599513925,0.024068472273086523,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.042632599999997 47.56494639624488, 10.0429135 47.565512596244986, 10.041702000000004 47.56527689624496, 10.040791299999999 47.5651159962449, 10.039929699999995 47.56496129624493)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_3_LVCableDist_mvgd_33535_lvgd_1164210004_building_446359,BranchTee_mvgd_33535_lvgd_1164210004_3,BranchTee_mvgd_33535_lvgd_1164210004_building_446359,0.016193423712580982,0.014055891782520293,0.0013786621203387929,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042687596718674 47.56480549729363, 10.042632599999997 47.56494639624488)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_40_LVCableDist_mvgd_33535_lvgd_1164210004_building_446161,BranchTee_mvgd_33535_lvgd_1164210004_40,BranchTee_mvgd_33535_lvgd_1164210004_building_446161,0.01752669281082734,0.015213169359798131,0.0014921728660955678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038756109270743 47.56390766716081, 10.038809300000006 47.56375409624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_41_LVCableDist_mvgd_33535_lvgd_1164210004_45,BranchTee_mvgd_33535_lvgd_1164210004_41,BranchTee_mvgd_33535_lvgd_1164210004_45,0.0672796690823651,0.01702175627783837,0.00541095204160283,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0397919 47.562734496244715, 10.039839500000003 47.562436196244725, 10.0398758 47.56237359624472, 10.039973900000003 47.5622941962447, 10.040129099999996 47.56221009624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_41_LVCableDist_mvgd_33535_lvgd_1164210004_47,BranchTee_mvgd_33535_lvgd_1164210004_41,BranchTee_mvgd_33535_lvgd_1164210004_47,0.029492596125562435,0.007461626819767296,0.002371935317077958,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0395286 47.56291959624471, 10.039722500000002 47.5628297962447, 10.0397919 47.562734496244715)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_41_LVCableDist_mvgd_33535_lvgd_1164210004_building_446170,BranchTee_mvgd_33535_lvgd_1164210004_41,BranchTee_mvgd_33535_lvgd_1164210004_building_446170,0.01821674742537106,0.01581213676522208,0.0015509221568522403,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03955960002893 47.562688746286184, 10.0397919 47.562734496244715)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_42_LVCableDist_mvgd_33535_lvgd_1164210004_48,BranchTee_mvgd_33535_lvgd_1164210004_42,BranchTee_mvgd_33535_lvgd_1164210004_48,0.15047604012191212,0.038070438150843766,0.01210200120802002,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.041720599999998 47.56183469624462, 10.042144199999997 47.56176749624465, 10.042216799999995 47.56175599624464, 10.043080299999996 47.56166179624466, 10.0436935 47.56164059624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_42_LVCableDist_mvgd_33535_lvgd_1164210004_49,BranchTee_mvgd_33535_lvgd_1164210004_42,BranchTee_mvgd_33535_lvgd_1164210004_49,0.050375584191410264,0.012745022800426798,0.004051444869530332,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.041059099999996 47.56189979624467, 10.041607099999995 47.561852696244664, 10.041720599999998 47.56183469624462)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_42_LVCableDist_mvgd_33535_lvgd_1164210004_building_446357,BranchTee_mvgd_33535_lvgd_1164210004_42,BranchTee_mvgd_33535_lvgd_1164210004_building_446357,0.016142749466722825,0.014011906537115412,0.0013743478589150584,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041760681263957 47.561691968988136, 10.041720599999998 47.56183469624462)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_43_LVCableDist_mvgd_33535_lvgd_1164210004_47,BranchTee_mvgd_33535_lvgd_1164210004_43,BranchTee_mvgd_33535_lvgd_1164210004_47,0.08521840718366218,0.02156025701746653,0.006853670962145709,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0386644 47.56341379624475, 10.039129999999995 47.56312709624473, 10.0395286 47.56291959624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_43_LVCableDist_mvgd_33535_lvgd_1164210004_building_446157,BranchTee_mvgd_33535_lvgd_1164210004_43,BranchTee_mvgd_33535_lvgd_1164210004_building_446157,0.014718679310222174,0.012775813641272848,0.0012531065688506818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038713349990688 47.563542046282784, 10.0386644 47.56341379624475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_44_LVCableDist_mvgd_33535_lvgd_1164210004_building_446195,BranchTee_mvgd_33535_lvgd_1164210004_44,BranchTee_mvgd_33535_lvgd_1164210004_building_446195,0.016151080179355935,0.014019137595680952,0.0013750571121370174,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037658149997089 47.56434219628682, 10.0375262 47.56422759624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_44_LVCableDist_mvgd_33535_lvgd_1164210004_building_446200,BranchTee_mvgd_33535_lvgd_1164210004_44,BranchTee_mvgd_33535_lvgd_1164210004_building_446200,0.042339985286204466,0.03675110722842548,0.0036047061403353016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038064344175282 47.564338023094486, 10.0375262 47.56422759624481)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_45_LVCableDist_mvgd_33535_lvgd_1164210004_46,BranchTee_mvgd_33535_lvgd_1164210004_45,BranchTee_mvgd_33535_lvgd_1164210004_46,0.11424654517294822,0.028904375928755898,0.009188252339541724,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.039890400000004 47.561237496244566, 10.039786800000003 47.56135389624455, 10.039940900000001 47.561654896244626, 10.040134499999997 47.56211269624467, 10.040129099999996 47.56221009624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_45_LVCableDist_mvgd_33535_lvgd_1164210004_49,BranchTee_mvgd_33535_lvgd_1164210004_45,BranchTee_mvgd_33535_lvgd_1164210004_49,0.07811532084463468,0.019763176173692575,0.006282406863316837,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.040129099999996 47.56221009624467, 10.040503699999999 47.5620929962446, 10.040885899999997 47.561951096244634, 10.041059099999996 47.56189979624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_46_LVCableDist_mvgd_33535_lvgd_1164210004_building_446132,BranchTee_mvgd_33535_lvgd_1164210004_46,BranchTee_mvgd_33535_lvgd_1164210004_building_446132,0.0231679475256223,0.020109778452240157,0.0019724532764962437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039990299021438 47.56104027662786, 10.039890400000004 47.561237496244566)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_47_LVCableDist_mvgd_33535_lvgd_1164210004_building_446175,BranchTee_mvgd_33535_lvgd_1164210004_47,BranchTee_mvgd_33535_lvgd_1164210004_building_446175,0.01761537717469124,0.015290147387631995,0.0014997232010522522,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039507549981323 47.56307749630973, 10.0395286 47.56291959624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_48_LVCableDist_mvgd_33535_lvgd_1164210004_building_446360,BranchTee_mvgd_33535_lvgd_1164210004_48,BranchTee_mvgd_33535_lvgd_1164210004_building_446360,0.021740175334239827,0.01887047219012017,0.0018508968056924308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043965928458926 47.56157584423986, 10.0436935 47.56164059624463)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_49_LVCableDist_mvgd_33535_lvgd_1164210004_building_446150,BranchTee_mvgd_33535_lvgd_1164210004_49,BranchTee_mvgd_33535_lvgd_1164210004_building_446150,0.0122330733811784,0.010618307694862852,0.0010414891369051563,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0410742002529 47.562009420325055, 10.041059099999996 47.56189979624467)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_4_LVCableDist_mvgd_33535_lvgd_1164210004_building_446127,BranchTee_mvgd_33535_lvgd_1164210004_4,BranchTee_mvgd_33535_lvgd_1164210004_building_446127,0.02518770033214443,0.021862923888301366,0.0021444092961881546,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034450105908736 47.564916023700796, 10.0341349 47.56499189624492)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_50_LVCableDist_mvgd_33535_lvgd_1164210004_67,BranchTee_mvgd_33535_lvgd_1164210004_50,BranchTee_mvgd_33535_lvgd_1164210004_67,0.016349470122246745,0.0026813131000484663,0.0013149024057890865,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0323076 47.563954496244826, 10.0325245 47.56394789624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_50_LVCableDist_mvgd_33535_lvgd_1164210004_70,BranchTee_mvgd_33535_lvgd_1164210004_50,BranchTee_mvgd_33535_lvgd_1164210004_70,0.015703749156726638,0.0025754148617031687,0.0012629704444054863,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0325245 47.56394789624484, 10.032718300000004 47.56389569624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_50_LVCableDist_mvgd_33535_lvgd_1164210004_building_446114,BranchTee_mvgd_33535_lvgd_1164210004_50,BranchTee_mvgd_33535_lvgd_1164210004_building_446114,0.025160533403788606,0.02183934299448851,0.002142096381037232,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032449350002246 47.56416854626538, 10.0325245 47.56394789624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_51_LVCableDist_mvgd_33535_lvgd_1164210004_61,BranchTee_mvgd_33535_lvgd_1164210004_51,BranchTee_mvgd_33535_lvgd_1164210004_61,0.04640696555989855,0.007610742351823363,0.003732269621206319,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.035586100000007 47.564043596244844, 10.036035099999998 47.563757496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_51_LVCableDist_mvgd_33535_lvgd_1164210004_building_446148,BranchTee_mvgd_33535_lvgd_1164210004_51,BranchTee_mvgd_33535_lvgd_1164210004_building_446148,0.02661484045564925,0.023101681515503552,0.0022659119545273606,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03574965001483 47.563616246297855, 10.036035099999998 47.563757496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_51_LVCableDist_mvgd_33535_lvgd_1164210004_building_446149,BranchTee_mvgd_33535_lvgd_1164210004_51,BranchTee_mvgd_33535_lvgd_1164210004_building_446149,0.02625861835224243,0.02279248072974643,0.002235584215989102,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035690505667157 47.56379369873778, 10.036035099999998 47.563757496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_51_LVCableDist_mvgd_33535_lvgd_1164210004_building_446155,BranchTee_mvgd_33535_lvgd_1164210004_51,BranchTee_mvgd_33535_lvgd_1164210004_building_446155,0.013451517954342912,0.011675917584369647,0.0011452240485933618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036119075190765 47.56365063985645, 10.036035099999998 47.563757496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_52_LVCableDist_mvgd_33535_lvgd_1164210004_55,BranchTee_mvgd_33535_lvgd_1164210004_52,BranchTee_mvgd_33535_lvgd_1164210004_55,0.02994197127736526,0.004910483289487903,0.002408076211173563,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.035869399999997 47.56421759624487, 10.036082200000005 47.56414489624482, 10.036144400000003 47.56410919624484, 10.036173899999994 47.564060396244855)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_52_LVCableDist_mvgd_33535_lvgd_1164210004_building_446167,BranchTee_mvgd_33535_lvgd_1164210004_52,BranchTee_mvgd_33535_lvgd_1164210004_building_446167,0.016682719099468526,0.01448060017833868,0.0014203193404258756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036392200010827 47.564085996291816, 10.036173899999994 47.564060396244855)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_53_LVCableDist_mvgd_33535_lvgd_1164210004_68,BranchTee_mvgd_33535_lvgd_1164210004_53,BranchTee_mvgd_33535_lvgd_1164210004_68,0.02747953267743418,0.0045066433590992055,0.0022100351483778017,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.031838599999995 47.563916396244764, 10.031477000000004 47.56388309624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_53_LVCableDist_mvgd_33535_lvgd_1164210004_69,BranchTee_mvgd_33535_lvgd_1164210004_53,BranchTee_mvgd_33535_lvgd_1164210004_69,0.01677605376794505,0.0027512728179429884,0.0013492102982042506,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.031838599999995 47.563916396244764, 10.0320594 47.56393649624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_53_LVCableDist_mvgd_33535_lvgd_1164210004_building_446098,BranchTee_mvgd_33535_lvgd_1164210004_53,BranchTee_mvgd_33535_lvgd_1164210004_building_446098,0.009536830546979305,0.008277968914778036,0.0008119386768713568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031805970407495 47.56399933278904, 10.031838599999995 47.563916396244764)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_53_LVCableDist_mvgd_33535_lvgd_1164210004_building_446099,BranchTee_mvgd_33535_lvgd_1164210004_53,BranchTee_mvgd_33535_lvgd_1164210004_building_446099,0.030344437844713912,0.026338972049211675,0.0025834392875781907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031618062231892 47.564144975430615, 10.031838599999995 47.563916396244764)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_54_LVCableDist_mvgd_33535_lvgd_1164210004_57,BranchTee_mvgd_33535_lvgd_1164210004_54,BranchTee_mvgd_33535_lvgd_1164210004_57,0.01564907251004892,0.002566447891648023,0.00125857308756643,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.034941899999998 47.562877296244764, 10.034792500000004 47.562779396244714)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_54_LVCableDist_mvgd_33535_lvgd_1164210004_building_446135,BranchTee_mvgd_33535_lvgd_1164210004_54,BranchTee_mvgd_33535_lvgd_1164210004_building_446135,0.015694594661405915,0.013622908166100334,0.0013361932311411796,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03465567564528 47.56288595114171, 10.034792500000004 47.562779396244714)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_55_LVCableDist_mvgd_33535_lvgd_1164210004_61,BranchTee_mvgd_33535_lvgd_1164210004_55,BranchTee_mvgd_33535_lvgd_1164210004_61,0.028790020310185644,0.004721563330870445,0.002315430817361412,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.035586100000007 47.564043596244844, 10.035869399999997 47.56421759624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_55_LVCableDist_mvgd_33535_lvgd_1164210004_building_446142,BranchTee_mvgd_33535_lvgd_1164210004_55,BranchTee_mvgd_33535_lvgd_1164210004_building_446142,0.020048951044387364,0.017402489506528233,0.0017069107711884994,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035658734147315 47.564327942444365, 10.035869399999997 47.56421759624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_55_LVStation_mvgd_33535_lvgd_1164210004,BusBar_mvgd_33535_lvgd_1164210004_LV,BranchTee_mvgd_33535_lvgd_1164210004_55,0.015558555642970958,0.002551603125447237,0.0012512932891756948,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.035869399999997 47.56421759624487, 10.035941700000006 47.56427029624488, 10.0359923 47.56432909624486)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_56_LVCableDist_mvgd_33535_lvgd_1164210004_65,BranchTee_mvgd_33535_lvgd_1164210004_56,BranchTee_mvgd_33535_lvgd_1164210004_65,0.28187120282875266,0.04622687726391544,0.022669427201672393,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0280832 47.56454249624488, 10.028340099999994 47.56463829624486, 10.028485399999996 47.56463599624492, 10.028668200000002 47.56460289624488, 10.028941799999998 47.56469069624489, 10.029250399999993 47.56479519624488, 10.029312900000004 47.56485399624487, 10.029603300000003 47.56478309624489, 10.029811199999996 47.564693396244884, 10.030016399999996 47.564540696244904, 10.0301254 47.56441389624488, 10.030212600000002 47.564283796244865, 10.030349899999997 47.564132796244834, 10.030552600000002 47.56400949624484, 10.0308485 47.56390009624483, 10.031048600000002 47.56387919624479)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_56_LVCableDist_mvgd_33535_lvgd_1164210004_building_446034,BranchTee_mvgd_33535_lvgd_1164210004_56,BranchTee_mvgd_33535_lvgd_1164210004_building_446034,0.016475916666376905,0.014301095666415154,0.0014027127684027025,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028287150038915 47.564488796333045, 10.0280832 47.56454249624488)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_57_LVCableDist_mvgd_33535_lvgd_1164210004_59,BranchTee_mvgd_33535_lvgd_1164210004_57,BranchTee_mvgd_33535_lvgd_1164210004_59,0.014265491799918319,0.0023395406551866044,0.0011472989245048019,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0350965 47.5629514962447, 10.034941899999998 47.562877296244764)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_57_LVCableDist_mvgd_33535_lvgd_1164210004_building_446140,BranchTee_mvgd_33535_lvgd_1164210004_57,BranchTee_mvgd_33535_lvgd_1164210004_building_446140,0.008326547080859899,0.007227442866186392,0.0007088985786668729,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035024266798494 47.56282729734361, 10.034941899999998 47.562877296244764)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_58_LVCableDist_mvgd_33535_lvgd_1164210004_61,BranchTee_mvgd_33535_lvgd_1164210004_58,BranchTee_mvgd_33535_lvgd_1164210004_61,0.02693275203139448,0.004416971333148695,0.0021660604396232827,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.035301600000002 47.56389669624484, 10.035586100000007 47.564043596244844)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_58_LVCableDist_mvgd_33535_lvgd_1164210004_63,BranchTee_mvgd_33535_lvgd_1164210004_58,BranchTee_mvgd_33535_lvgd_1164210004_63,0.052889768701451984,0.008673922067038126,0.00425364758534515,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.034756400000003 47.56359659624476, 10.035301600000002 47.56389669624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_58_LVCableDist_mvgd_33535_lvgd_1164210004_building_446146,BranchTee_mvgd_33535_lvgd_1164210004_58,BranchTee_mvgd_33535_lvgd_1164210004_building_446146,0.01983659819367485,0.017218167232109772,0.001688831652367206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03532520212923 47.563718879511754, 10.035301600000002 47.56389669624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_59_LVCableDist_mvgd_33535_lvgd_1164210004_60,BranchTee_mvgd_33535_lvgd_1164210004_59,BranchTee_mvgd_33535_lvgd_1164210004_60,0.23822181854889596,0.03906837824201894,0.019158935425997115,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0350965 47.5629514962447, 10.0352147 47.562851996244746, 10.0354819 47.56271789624472, 10.035709299999999 47.5626454962447, 10.036048600000003 47.56254489624473, 10.036241000000006 47.56246699624466, 10.036298000000007 47.56254209624472, 10.036317699999998 47.5626052962447, 10.036321899999999 47.56290549624473, 10.036333199999996 47.56332269624479, 10.036367400000001 47.56347659624483, 10.036427800000002 47.56366789624479)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_59_LVCableDist_mvgd_33535_lvgd_1164210004_66,BranchTee_mvgd_33535_lvgd_1164210004_59,BranchTee_mvgd_33535_lvgd_1164210004_66,0.06440766774476796,0.010562857510141946,0.005179971989038471,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.034557499999998 47.56339239624475, 10.034746699999998 47.56329069624475, 10.034928700000002 47.56315119624476, 10.0350965 47.5629514962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_5_LVCableDist_mvgd_33535_lvgd_1164210004_building_446147,BranchTee_mvgd_33535_lvgd_1164210004_5,BranchTee_mvgd_33535_lvgd_1164210004_building_446147,0.015866311925988114,0.013771958751757683,0.0013508127515273313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03577708384403 47.56447882093662, 10.0359819 47.56444529624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_5_LVStation_mvgd_33535_lvgd_1164210004,BusBar_mvgd_33535_lvgd_1164210004_LV,BranchTee_mvgd_33535_lvgd_1164210004_5,0.012934459573196751,0.003272418272018778,0.0010402509612367126,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0359923 47.56432909624486, 10.0359819 47.56444529624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_60_LVCableDist_mvgd_33535_lvgd_1164210004_building_446153,BranchTee_mvgd_33535_lvgd_1164210004_60,BranchTee_mvgd_33535_lvgd_1164210004_building_446153,0.022695417514388045,0.019699622402488823,0.00193222341289391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036684373490958 47.56356072087208, 10.036427800000002 47.56366789624479)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_60_LVCableDist_mvgd_33535_lvgd_1164210004_building_446158,BranchTee_mvgd_33535_lvgd_1164210004_60,BranchTee_mvgd_33535_lvgd_1164210004_building_446158,0.020242116057457897,0.017570156737873453,0.0017233562919889086,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036434836402485 47.56385001807506, 10.036427800000002 47.56366789624479)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_61_LVCableDist_mvgd_33535_lvgd_1164210004_building_446138,BranchTee_mvgd_33535_lvgd_1164210004_61,BranchTee_mvgd_33535_lvgd_1164210004_building_446138,0.02073278869563451,0.017996060587810756,0.0017651307673406057,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03533260216576 47.5641164193125, 10.035586100000007 47.564043596244844)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_62_LVCableDist_mvgd_33535_lvgd_1164210004_64,BranchTee_mvgd_33535_lvgd_1164210004_62,BranchTee_mvgd_33535_lvgd_1164210004_64,0.006069478448266412,0.0009953944655156917,0.00048813641994740066,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.034274199999997 47.563472396244784, 10.0341981 47.56349039624475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_62_LVCableDist_mvgd_33535_lvgd_1164210004_72,BranchTee_mvgd_33535_lvgd_1164210004_62,BranchTee_mvgd_33535_lvgd_1164210004_72,0.017337533791785938,0.002843355541852894,0.001394367201065971,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0341981 47.56349039624475, 10.0339786 47.563537496244784)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_62_LVCableDist_mvgd_33535_lvgd_1164210004_building_446133,BranchTee_mvgd_33535_lvgd_1164210004_62,BranchTee_mvgd_33535_lvgd_1164210004_building_446133,0.033722920151751136,0.029271494691719985,0.0028710736793917213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034231272043478 47.56379307723874, 10.0341981 47.56349039624475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_63_LVCableDist_mvgd_33535_lvgd_1164210004_64,BranchTee_mvgd_33535_lvgd_1164210004_63,BranchTee_mvgd_33535_lvgd_1164210004_64,0.038997203282536745,0.006395541338336026,0.0031363411799799094,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.034274199999997 47.563472396244784, 10.034517899999996 47.563518596244776, 10.034756400000003 47.56359659624476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_63_LVCableDist_mvgd_33535_lvgd_1164210004_building_446134,BranchTee_mvgd_33535_lvgd_1164210004_63,BranchTee_mvgd_33535_lvgd_1164210004_building_446134,0.02507314133019857,0.021763486674612358,0.002134656068005539,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034556976714862 47.56377731071136, 10.034756400000003 47.56359659624476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_63_LVCableDist_mvgd_33535_lvgd_1164210004_building_446143,BranchTee_mvgd_33535_lvgd_1164210004_63,BranchTee_mvgd_33535_lvgd_1164210004_building_446143,0.017439389320913767,0.01513738993055315,0.0014847400948265921,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034983850037838 47.56356704635459, 10.034756400000003 47.56359659624476)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_64_LVCableDist_mvgd_33535_lvgd_1164210004_66,BranchTee_mvgd_33535_lvgd_1164210004_64,BranchTee_mvgd_33535_lvgd_1164210004_66,0.023110868625526467,0.003790182454586341,0.0018586863383560394,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.034274199999997 47.563472396244784, 10.034557499999998 47.56339239624475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_65_LVCableDist_mvgd_33535_lvgd_1164210004_68,BranchTee_mvgd_33535_lvgd_1164210004_65,BranchTee_mvgd_33535_lvgd_1164210004_68,0.03226237960132143,0.005291030254616715,0.002594694521416617,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.031048600000002 47.56387919624479, 10.031477000000004 47.56388309624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_65_LVCableDist_mvgd_33535_lvgd_1164210004_building_446092,BranchTee_mvgd_33535_lvgd_1164210004_65,BranchTee_mvgd_33535_lvgd_1164210004_building_446092,0.04016639502116329,0.03486443087836973,0.0034196528361831176,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031133539043415 47.563522300404244, 10.031048600000002 47.56387919624479)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_65_LVCableDist_mvgd_33535_lvgd_1164210004_building_446100,BranchTee_mvgd_33535_lvgd_1164210004_65,BranchTee_mvgd_33535_lvgd_1164210004_building_446100,0.026636793450800247,0.023120736715294615,0.0022677809702080372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031190850007004 47.56365969625965, 10.031048600000002 47.56387919624479)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_66_LVCableDist_mvgd_33535_lvgd_1164210004_building_446119,BranchTee_mvgd_33535_lvgd_1164210004_66,BranchTee_mvgd_33535_lvgd_1164210004_building_446119,0.018586613793310367,0.0161331807725934,0.001582411529335531,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034384773053961 47.563272899610865, 10.034557499999998 47.56339239624475)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_67_LVCableDist_mvgd_33535_lvgd_1164210004_69,BranchTee_mvgd_33535_lvgd_1164210004_67,BranchTee_mvgd_33535_lvgd_1164210004_69,0.018796707443413392,0.0030826600207197966,0.0015117209092071447,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.0320594 47.56393649624482, 10.0323076 47.563954496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_67_LVCableDist_mvgd_33535_lvgd_1164210004_building_446086,BranchTee_mvgd_33535_lvgd_1164210004_67,BranchTee_mvgd_33535_lvgd_1164210004_building_446086,0.0264762771059039,0.022981408527924584,0.0022541150643235453,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032237800009334 47.56372094629816, 10.0323076 47.563954496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_67_LVCableDist_mvgd_33535_lvgd_1164210004_building_446113,BranchTee_mvgd_33535_lvgd_1164210004_67,BranchTee_mvgd_33535_lvgd_1164210004_building_446113,0.02534067033377984,0.0219957018497209,0.002157432727832141,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032216200001065 47.5641739962659, 10.0323076 47.563954496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_67_LVCableDist_mvgd_33535_lvgd_1164210004_building_446115,BranchTee_mvgd_33535_lvgd_1164210004_67,BranchTee_mvgd_33535_lvgd_1164210004_building_446115,0.04359979561910957,0.037844622597387106,0.0037119628153668006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032324151244445 47.56434674519825, 10.0323076 47.563954496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_67_LVCableDist_mvgd_33535_lvgd_1164210004_building_446120,BranchTee_mvgd_33535_lvgd_1164210004_67,BranchTee_mvgd_33535_lvgd_1164210004_building_446120,0.04470581935783873,0.03880465120260402,0.0038061265363837906,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03241835000041 47.56434979626591, 10.0323076 47.563954496244826)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_68_LVCableDist_mvgd_33535_lvgd_1164210004_building_446097,BranchTee_mvgd_33535_lvgd_1164210004_68,BranchTee_mvgd_33535_lvgd_1164210004_building_446097,0.024636081774622384,0.02138411898037223,0.0020974460582941982,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031406508136541 47.564099619922104, 10.031477000000004 47.56388309624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_68_LVCableDist_mvgd_33535_lvgd_1164210004_building_446109,BranchTee_mvgd_33535_lvgd_1164210004_68,BranchTee_mvgd_33535_lvgd_1164210004_building_446109,0.024056902428505497,0.02088139130794277,0.002048136373106774,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.031447867273084 47.56366748022721, 10.031477000000004 47.56388309624484)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_69_LVCableDist_mvgd_33535_lvgd_1164210004_building_446107,BranchTee_mvgd_33535_lvgd_1164210004_69,BranchTee_mvgd_33535_lvgd_1164210004_building_446107,0.033045849897796936,0.02868379771128774,0.002813429840231902,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03190593014434 47.56421513864123, 10.0320594 47.56393649624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_69_LVCableDist_mvgd_33535_lvgd_1164210004_building_446112,BranchTee_mvgd_33535_lvgd_1164210004_69,BranchTee_mvgd_33535_lvgd_1164210004_building_446112,0.025961676055329484,0.02253473481602599,0.0022103033918751615,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032122264506805 47.56416624036618, 10.0320594 47.56393649624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_6_LVCableDist_mvgd_33535_lvgd_1164210004_building_446198,BranchTee_mvgd_33535_lvgd_1164210004_6,BranchTee_mvgd_33535_lvgd_1164210004_building_446198,0.01802780900540593,0.015648138216692347,0.0015348364761891566,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035403736786884 47.565469773128555, 10.035423100000004 47.565631496244976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_6_LVCableDist_mvgd_33535_lvgd_1164210004_building_446199,BranchTee_mvgd_33535_lvgd_1164210004_6,BranchTee_mvgd_33535_lvgd_1164210004_building_446199,0.01001276870592919,0.008691083236746538,0.0008524587004941691,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03532467669164 47.565570901356296, 10.035423100000004 47.565631496244976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_6_LVCableDist_mvgd_33535_lvgd_1164210004_building_446205,BranchTee_mvgd_33535_lvgd_1164210004_6,BranchTee_mvgd_33535_lvgd_1164210004_building_446205,0.02233162605914068,0.01938385141933411,0.0019012512412300013,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035376524864667 47.5658299929314, 10.035423100000004 47.565631496244976)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_70_LVCableDist_mvgd_33535_lvgd_1164210004_71,BranchTee_mvgd_33535_lvgd_1164210004_70,BranchTee_mvgd_33535_lvgd_1164210004_71,0.03506466178405571,0.005750604532585137,0.002820067426851845,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.032718300000004 47.56389569624482, 10.033139199999995 47.56376069624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_70_LVCableDist_mvgd_33535_lvgd_1164210004_building_446088,BranchTee_mvgd_33535_lvgd_1164210004_70,BranchTee_mvgd_33535_lvgd_1164210004_building_446088,0.018877447784005696,0.016385624676516945,0.0016071723096001207,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032648389715108 47.56373253524524, 10.032718300000004 47.56389569624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_70_LVCableDist_mvgd_33535_lvgd_1164210004_building_446122,BranchTee_mvgd_33535_lvgd_1164210004_70,BranchTee_mvgd_33535_lvgd_1164210004_building_446122,0.024235958274410278,0.021036811782188122,0.0020633806794718543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032789800476383 47.56410837478585, 10.032718300000004 47.56389569624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_71_LVCableDist_mvgd_33535_lvgd_1164210004_72,BranchTee_mvgd_33535_lvgd_1164210004_71,BranchTee_mvgd_33535_lvgd_1164210004_72,0.06789944403601186,0.011135508821905947,0.005460797300898974,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.033139199999995 47.56376069624482, 10.0339786 47.563537496244784)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_71_LVCableDist_mvgd_33535_lvgd_1164210004_building_446089,BranchTee_mvgd_33535_lvgd_1164210004_71,BranchTee_mvgd_33535_lvgd_1164210004_building_446089,0.01595213955778999,0.01384645713616171,0.0013581198724267676,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033015436587327 47.56364417467077, 10.033139199999995 47.56376069624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_71_LVCableDist_mvgd_33535_lvgd_1164210004_building_446108,BranchTee_mvgd_33535_lvgd_1164210004_71,BranchTee_mvgd_33535_lvgd_1164210004_building_446108,0.028275706146617428,0.024543312935263926,0.002407313344113009,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033352747040837 47.56355136737869, 10.033139199999995 47.56376069624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_71_LVCableDist_mvgd_33535_lvgd_1164210004_building_446116,BranchTee_mvgd_33535_lvgd_1164210004_71,BranchTee_mvgd_33535_lvgd_1164210004_building_446116,0.031584628359594295,0.027415457416127848,0.0026890255870054493,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033518468620805 47.56388208859298, 10.033139199999995 47.56376069624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_71_LVCableDist_mvgd_33535_lvgd_1164210004_building_446123,BranchTee_mvgd_33535_lvgd_1164210004_71,BranchTee_mvgd_33535_lvgd_1164210004_building_446123,0.026551904568252512,0.02304705316524318,0.002260553771754907,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03313685819382 47.56399966504848, 10.033139199999995 47.56376069624482)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_72_LVCableDist_mvgd_33535_lvgd_1164210004_building_446110,BranchTee_mvgd_33535_lvgd_1164210004_72,BranchTee_mvgd_33535_lvgd_1164210004_building_446110,0.026551497979835335,0.02304670024649707,0.002260519155971409,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03366990912328 47.56342201518372, 10.0339786 47.563537496244784)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_72_LVCableDist_mvgd_33535_lvgd_1164210004_building_446125,BranchTee_mvgd_33535_lvgd_1164210004_72,BranchTee_mvgd_33535_lvgd_1164210004_building_446125,0.016951139460449974,0.014713589051670577,0.0014431718878908863,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034118846458512 47.563656831776306, 10.0339786 47.563537496244784)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_72_LVCableDist_mvgd_33535_lvgd_1164210004_building_446126,BranchTee_mvgd_33535_lvgd_1164210004_72,BranchTee_mvgd_33535_lvgd_1164210004_building_446126,0.029388129185695177,0.025508896133183412,0.0025020218833935026,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033966163096206 47.56380186285808, 10.0339786 47.563537496244784)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_72_LVCableDist_mvgd_33535_lvgd_1164210004_building_446128,BranchTee_mvgd_33535_lvgd_1164210004_72,BranchTee_mvgd_33535_lvgd_1164210004_building_446128,0.034230071306518825,0.02971170189405834,0.002914251088862028,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034092183890916 47.56383580213031, 10.0339786 47.563537496244784)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_7_LVCableDist_mvgd_33535_lvgd_1164210004_9,BranchTee_mvgd_33535_lvgd_1164210004_7,BranchTee_mvgd_33535_lvgd_1164210004_9,0.0760833756255373,0.019249094033260937,0.006118988132492818,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.039929699999995 47.56496129624493, 10.039390800000003 47.564931696244926, 10.038921100000003 47.56492829624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_7_LVCableDist_mvgd_33535_lvgd_1164210004_building_34328731,BranchTee_mvgd_33535_lvgd_1164210004_7,BranchTee_mvgd_33535_lvgd_1164210004_building_34328731,0.05678019975397678,0.049285213386451844,0.004834105003085916,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039780144483865 47.564460413899624, 10.039929699999995 47.56496129624493)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_8_LVCableDist_mvgd_33535_lvgd_1164210004_building_446209,BranchTee_mvgd_33535_lvgd_1164210004_8,BranchTee_mvgd_33535_lvgd_1164210004_building_446209,0.006667962705164703,0.005787791628082962,0.0005676914137867119,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036406513878743 47.56536996456823, 10.036464200000005 47.56541549624494)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210004_9_LVCableDist_mvgd_33535_lvgd_1164210004_building_34328730,BranchTee_mvgd_33535_lvgd_1164210004_9,BranchTee_mvgd_33535_lvgd_1164210004_building_34328730,0.06293062252125402,0.05462378034844849,0.005357734535902169,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039082867589793 47.56437261489198, 10.038921100000003 47.56492829624491)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_10_LVCableDist_mvgd_33535_lvgd_1164210005_3,BranchTee_mvgd_33535_lvgd_1164210005_3,BranchTee_mvgd_33535_lvgd_1164210005_10,0.06377717534256856,0.028635951728813284,0.005409771449118881,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.053874399999994 47.55504379624405, 10.0547098 47.55494989624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_10_LVCableDist_mvgd_33535_lvgd_1164210005_building_446322,BranchTee_mvgd_33535_lvgd_1164210005_10,BranchTee_mvgd_33535_lvgd_1164210005_building_446322,0.03343101284994243,0.029018119153750032,0.002846221520466163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.053976974385096 47.5547510496373, 10.053874399999994 47.55504379624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_11_LVCableDist_mvgd_33535_lvgd_1164210005_12,BranchTee_mvgd_33535_lvgd_1164210005_11,BranchTee_mvgd_33535_lvgd_1164210005_12,0.041076352536244,0.018443282288773555,0.0034842195188314728,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.058998599999997 47.55537339624407, 10.059543399999999 47.55535609624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_11_LVCableDist_mvgd_33535_lvgd_1164210005_6,BranchTee_mvgd_33535_lvgd_1164210005_6,BranchTee_mvgd_33535_lvgd_1164210005_11,0.019062982872960307,0.008559279309959178,0.0016169794276284042,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.058998599999997 47.55537339624407, 10.059024100000006 47.555202696244024)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_11_LVCableDist_mvgd_33535_lvgd_1164210005_9,BranchTee_mvgd_33535_lvgd_1164210005_9,BranchTee_mvgd_33535_lvgd_1164210005_11,0.04980366687533983,0.022361846427027585,0.004224496517389826,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0583608 47.555289396244085, 10.058619700000001 47.55536549624404, 10.058998599999997 47.55537339624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_11_LVCableDist_mvgd_33535_lvgd_1164210005_building_446341,BranchTee_mvgd_33535_lvgd_1164210005_11,BranchTee_mvgd_33535_lvgd_1164210005_building_446341,0.024588408766013183,0.021342738808899444,0.0020933873136890642,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059224740733612 47.55553300830566, 10.058998599999997 47.55537339624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_11_LVCableDist_mvgd_33535_lvgd_1164210005_building_446342,BranchTee_mvgd_33535_lvgd_1164210005_11,BranchTee_mvgd_33535_lvgd_1164210005_building_446342,0.015435835201444372,0.013398304954853715,0.001314163185360858,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.058979515717029 47.555511720055605, 10.058998599999997 47.55537339624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_12_LVCableDist_mvgd_33535_lvgd_1164210005_building_446352,BranchTee_mvgd_33535_lvgd_1164210005_12,BranchTee_mvgd_33535_lvgd_1164210005_building_446352,0.021116215630739513,0.018328875167481898,0.001797774648012744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059694911382431 47.555196181355655, 10.059543399999999 47.55535609624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_12_LVCableDist_mvgd_33535_lvgd_1164210005_building_446353,BranchTee_mvgd_33535_lvgd_1164210005_12,BranchTee_mvgd_33535_lvgd_1164210005_building_446353,0.04002632532604802,0.034742850383009685,0.003407727700011155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06002627901912 47.555205623993814, 10.059543399999999 47.55535609624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_12_LVCableDist_mvgd_33535_lvgd_1164210005_building_446355,BranchTee_mvgd_33535_lvgd_1164210005_12,BranchTee_mvgd_33535_lvgd_1164210005_building_446355,0.015061128561184684,0.013073059591108306,0.0012822617258341678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059508095502018 47.55548952227469, 10.059543399999999 47.55535609624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_12_LVStation_mvgd_33535_lvgd_1164210005,BusBar_mvgd_33535_lvgd_1164210005_LV,BranchTee_mvgd_33535_lvgd_1164210005_12,0.02477533726151804,0.011124126430421601,0.002101518473336853,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.059543399999999 47.55535609624408, 10.0598717 47.555341996244074)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_13_LVCableDist_mvgd_33535_lvgd_1164210005_14,BranchTee_mvgd_33535_lvgd_1164210005_13,BranchTee_mvgd_33535_lvgd_1164210005_14,0.12771383245212126,0.05734351077100244,0.010833070620421312,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.060875799999998 47.55525019624408, 10.060931000000004 47.55547939624405, 10.0609356 47.555505396244065, 10.0609607 47.555582796244074, 10.061042600000002 47.55563869624409, 10.061153499999993 47.55567639624412, 10.061334099999995 47.55568759624406, 10.062109800000005 47.555700996244106)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_13_LVCableDist_mvgd_33535_lvgd_1164210005_15,BranchTee_mvgd_33535_lvgd_1164210005_13,BranchTee_mvgd_33535_lvgd_1164210005_15,0.04208491834879736,0.018896128338610013,0.0035697690984107184,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.060875799999998 47.55525019624408, 10.06142950054595 47.55519919764838)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_13_LVCableDist_mvgd_33535_lvgd_1164210005_building_446363,BranchTee_mvgd_33535_lvgd_1164210005_13,BranchTee_mvgd_33535_lvgd_1164210005_building_446363,0.027608542699493945,0.023964215063160745,0.0023505129423604634,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.061120699992303 47.555065296305344, 10.060875799999998 47.55525019624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_13_LVStation_mvgd_33535_lvgd_1164210005,BusBar_mvgd_33535_lvgd_1164210005_LV,BranchTee_mvgd_33535_lvgd_1164210005_13,0.07631452312474324,0.03426522088300971,0.006473226920694348,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0598717 47.555341996244074, 10.060347799999995 47.55530299624407, 10.060875799999998 47.55525019624408)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_14_LVCableDist_mvgd_33535_lvgd_1164210005_building_446344,BranchTee_mvgd_33535_lvgd_1164210005_14,BranchTee_mvgd_33535_lvgd_1164210005_building_446344,0.017807957232403776,0.015457306877726477,0.0015161189204142213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.062183726925081 47.555548753320146, 10.062109800000005 47.555700996244106)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_15_LVCableDist_mvgd_33535_lvgd_1164210005_16,BranchTee_mvgd_33535_lvgd_1164210005_15,BranchTee_mvgd_33535_lvgd_1164210005_16,0.04208491834978262,0.018896128339052395,0.003569769098494291,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.06142950054595 47.55519919764838, 10.061983199999995 47.55514819624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_15_LVCableDist_mvgd_33535_lvgd_1164210005_building_446364,BranchTee_mvgd_33535_lvgd_1164210005_15,BranchTee_mvgd_33535_lvgd_1164210005_building_446364,0.016919479662936793,0.014686108347429137,0.0014404764626155563,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0614845531753 47.555051559707984, 10.06142950054595 47.55519919764838)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_16_LVCableDist_mvgd_33535_lvgd_1164210005_17,BranchTee_mvgd_33535_lvgd_1164210005_16,BranchTee_mvgd_33535_lvgd_1164210005_17,0.02941925664773952,0.013209246234835045,0.0024954296550825017,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.061983199999995 47.55514819624401, 10.062371500000003 47.55511939624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_16_LVCableDist_mvgd_33535_lvgd_1164210005_building_446365,BranchTee_mvgd_33535_lvgd_1164210005_16,BranchTee_mvgd_33535_lvgd_1164210005_building_446365,0.022796381831356998,0.019787259429617874,0.0019408192281940946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0617298466666 47.55503593864708, 10.061983199999995 47.55514819624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_17_LVCableDist_mvgd_33535_lvgd_1164210005_18,BranchTee_mvgd_33535_lvgd_1164210005_17,BranchTee_mvgd_33535_lvgd_1164210005_18,0.04769587626364267,0.02141544844237556,0.004045707390862466,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.062371500000003 47.55511939624407, 10.062718600000002 47.55512329624401, 10.063004500000005 47.55513119624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_17_LVCableDist_mvgd_33535_lvgd_1164210005_building_446343,BranchTee_mvgd_33535_lvgd_1164210005_17,BranchTee_mvgd_33535_lvgd_1164210005_building_446343,0.014355105332930692,0.01246023142898384,0.001222152912642498,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06250540000004 47.555027446255046, 10.062371500000003 47.55511939624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_18_LVCableDist_mvgd_33535_lvgd_1164210005_19,BranchTee_mvgd_33535_lvgd_1164210005_18,BranchTee_mvgd_33535_lvgd_1164210005_19,0.07096995171720229,0.031865508321023826,0.0060198843313903965,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.063004500000005 47.55513119624405, 10.063195399999996 47.55510889624403, 10.063468099999996 47.55507209624403, 10.063622400000003 47.55503369624401, 10.063628699999999 47.554826196243994)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_18_LVCableDist_mvgd_33535_lvgd_1164210005_building_446349,BranchTee_mvgd_33535_lvgd_1164210005_18,BranchTee_mvgd_33535_lvgd_1164210005_building_446349,0.014262034976195586,0.012379446359337768,0.0012142291667049776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.062892999997608 47.55502744629373, 10.063004500000005 47.55513119624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_19_LVCableDist_mvgd_33535_lvgd_1164210005_21,BranchTee_mvgd_33535_lvgd_1164210005_19,BranchTee_mvgd_33535_lvgd_1164210005_21,0.11442625266940594,0.051377387448563266,0.009705978218628411,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.063628699999999 47.554826196243994, 10.063734 47.554830596244045, 10.064602900000002 47.554848396244054, 10.065004399999996 47.55483919624402, 10.0650152 47.554742696244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_19_LVCableDist_mvgd_33535_lvgd_1164210005_building_446366,BranchTee_mvgd_33535_lvgd_1164210005_19,BranchTee_mvgd_33535_lvgd_1164210005_building_446366,0.02850779091969007,0.02474476251829098,0.002427072382783385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.063353578336207 47.55464998407479, 10.063628699999999 47.554826196243994)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_19_LVCableDist_mvgd_33535_lvgd_1164210005_building_446533,BranchTee_mvgd_33535_lvgd_1164210005_19,BranchTee_mvgd_33535_lvgd_1164210005_building_446533,0.025476551468346917,0.022113646674525124,0.0021690012618507215,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.063597122780603 47.55459790143124, 10.063628699999999 47.554826196243994)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_1_LVCableDist_mvgd_33535_lvgd_1164210005_2,BranchTee_mvgd_33535_lvgd_1164210005_1,BranchTee_mvgd_33535_lvgd_1164210005_2,0.14241666070353995,0.06394508065588944,0.012080208645405847,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.057419099999997 47.55517239624403, 10.056603399999995 47.55506489624405, 10.0555555 47.55495679624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_1_LVCableDist_mvgd_33535_lvgd_1164210005_5,BranchTee_mvgd_33535_lvgd_1164210005_1,BranchTee_mvgd_33535_lvgd_1164210005_5,0.028674809333421813,0.012874989390706394,0.0024322833993140826,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.057419099999997 47.55517239624403, 10.057793599999997 47.55521889624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_1_LVCableDist_mvgd_33535_lvgd_1164210005_building_446323,BranchTee_mvgd_33535_lvgd_1164210005_1,BranchTee_mvgd_33535_lvgd_1164210005_building_446323,0.03065425948818707,0.026607897235746376,0.002609816622692673,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.057220111636385 47.555413076251234, 10.057419099999997 47.55517239624403)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_20_LVCableDist_mvgd_33535_lvgd_1164210005_21,BranchTee_mvgd_33535_lvgd_1164210005_20,BranchTee_mvgd_33535_lvgd_1164210005_21,0.028888828558075005,0.012971084022575678,0.0024504371523593137,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0650152 47.554742696244, 10.065043500000003 47.554483396244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_20_LVCableDist_mvgd_33535_lvgd_1164210005_building_446537,BranchTee_mvgd_33535_lvgd_1164210005_20,BranchTee_mvgd_33535_lvgd_1164210005_building_446537,0.011297404882309122,0.009806147437844318,0.0009618289773563679,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065151800000038 47.55455374626567, 10.065043500000003 47.554483396244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_21_LVCableDist_mvgd_33535_lvgd_1164210005_building_446541,BranchTee_mvgd_33535_lvgd_1164210005_21,BranchTee_mvgd_33535_lvgd_1164210005_building_446541,0.01593280882722342,0.01382967806202993,0.00135647410890797,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065189773390424 47.55466169949057, 10.0650152 47.554742696244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_21_LVCableDist_mvgd_33535_lvgd_1164210005_building_446543,BranchTee_mvgd_33535_lvgd_1164210005_21,BranchTee_mvgd_33535_lvgd_1164210005_building_446543,0.007129909709055003,0.006188761627459743,0.0006070202701898675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065099650000118 47.55471369625027, 10.0650152 47.554742696244)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_2_LVCableDist_mvgd_33535_lvgd_1164210005_7,BranchTee_mvgd_33535_lvgd_1164210005_2,BranchTee_mvgd_33535_lvgd_1164210005_7,0.03373525772067339,0.01514713071658235,0.0028615258212000986,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.055109199999995 47.55493099624401, 10.0555555 47.55495679624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_2_LVCableDist_mvgd_33535_lvgd_1164210005_building_446339,BranchTee_mvgd_33535_lvgd_1164210005_2,BranchTee_mvgd_33535_lvgd_1164210005_building_446339,0.012588771053513019,0.010927053274449301,0.0010717722268708335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055514072994447 47.55484702927649, 10.0555555 47.55495679624407)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_3_LVCableDist_mvgd_33535_lvgd_1164210005_7,BranchTee_mvgd_33535_lvgd_1164210005_3,BranchTee_mvgd_33535_lvgd_1164210005_7,0.0301540651244449,0.01353917524087576,0.002557758315712256,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.0547098 47.55494989624404, 10.055109199999995 47.55493099624401)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_3_LVCableDist_mvgd_33535_lvgd_1164210005_building_446320,BranchTee_mvgd_33535_lvgd_1164210005_3,BranchTee_mvgd_33535_lvgd_1164210005_building_446320,0.041280550426512304,0.03583151777021268,0.0035145088642096075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.05441067341645 47.55463857156333, 10.0547098 47.55494989624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_3_LVCableDist_mvgd_33535_lvgd_1164210005_building_446329,BranchTee_mvgd_33535_lvgd_1164210005_3,BranchTee_mvgd_33535_lvgd_1164210005_building_446329,0.023225863940922818,0.020160049900721008,0.0019773841156651467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.054428156915955 47.55486475797469, 10.0547098 47.55494989624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_4_LVCableDist_mvgd_33535_lvgd_1164210005_7,BranchTee_mvgd_33535_lvgd_1164210005_4,BranchTee_mvgd_33535_lvgd_1164210005_7,0.04294396504446065,0.019281840304962834,0.0036426360176917507,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.055109199999995 47.55493099624401, 10.055227500000004 47.55455289624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_4_LVCableDist_mvgd_33535_lvgd_1164210005_building_446330,BranchTee_mvgd_33535_lvgd_1164210005_4,BranchTee_mvgd_33535_lvgd_1164210005_building_446330,0.007297853833889179,0.006334537127815808,0.0006213185561701474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055148671147556 47.55451470176916, 10.055227500000004 47.55455289624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_4_LVCableDist_mvgd_33535_lvgd_1164210005_building_446332,BranchTee_mvgd_33535_lvgd_1164210005_4,BranchTee_mvgd_33535_lvgd_1164210005_building_446332,0.008939134217707796,0.007759168500970367,0.0007610525083094873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0553327000053 47.55459014627812, 10.055227500000004 47.55455289624404)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_5_LVCableDist_mvgd_33535_lvgd_1164210005_9,BranchTee_mvgd_33535_lvgd_1164210005_5,BranchTee_mvgd_33535_lvgd_1164210005_9,0.043491707329432014,0.019527776590914973,0.003689097162431967,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.057793599999997 47.55521889624405, 10.058075299999997 47.555243396244045, 10.0583608 47.555289396244085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_5_LVCableDist_mvgd_33535_lvgd_1164210005_building_446326,BranchTee_mvgd_33535_lvgd_1164210005_5,BranchTee_mvgd_33535_lvgd_1164210005_building_446326,0.03434251814363063,0.029809305748671387,0.0029238244933272933,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.057657165195662 47.55551383112688, 10.057793599999997 47.55521889624405)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_6_LVCableDist_mvgd_33535_lvgd_1164210005_8,BranchTee_mvgd_33535_lvgd_1164210005_6,BranchTee_mvgd_33535_lvgd_1164210005_8,0.04645960485740593,0.020860362580975265,0.003940843139335202,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.059024100000006 47.555202696244024, 10.059203400000005 47.55480259624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_6_LVCableDist_mvgd_33535_lvgd_1164210005_building_446347,BranchTee_mvgd_33535_lvgd_1164210005_6,BranchTee_mvgd_33535_lvgd_1164210005_building_446347,0.025557684315143235,0.022184069985544327,0.0021759086820836914,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.059357388163612 47.55515942669589, 10.059024100000006 47.555202696244024)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_8_LVCableDist_mvgd_33535_lvgd_1164210005_building_446335,BranchTee_mvgd_33535_lvgd_1164210005_8,BranchTee_mvgd_33535_lvgd_1164210005_building_446335,0.019766857493236426,0.017157632304129217,0.0016828941271318446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0590708927205 47.554956166703654, 10.059203400000005 47.55480259624399)" +Branch_LVCableDist_mvgd_33535_lvgd_1164210005_9_LVCableDist_mvgd_33535_lvgd_1164210005_building_446336,BranchTee_mvgd_33535_lvgd_1164210005_9,BranchTee_mvgd_33535_lvgd_1164210005_building_446336,0.015721034179488547,0.013645857667796059,0.0013384442166466239,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.058257821332921 47.55541247457989, 10.0583608 47.555289396244085)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_1_LVCableDist_mvgd_33535_lvgd_1164250000_2,BranchTee_mvgd_33535_lvgd_1164250000_1,BranchTee_mvgd_33535_lvgd_1164250000_2,0.2257090356084808,0.19591544290816132,0.019216226483955535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.053771199999998 47.563268396244794, 10.053731799999998 47.56339929624482, 10.053703299999999 47.563462096244784, 10.053534999999995 47.56341719624478, 10.053319000000007 47.563306996244776, 10.052840500000002 47.56291109624475, 10.052650399999996 47.56283599624473, 10.052463400000002 47.56279949624474, 10.052194300000005 47.56279619624477, 10.051755000000002 47.56279349624469, 10.051702500000003 47.56279319624471, 10.0514717 47.56272569624471, 10.051416600000003 47.56269649624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_1_LVCableDist_mvgd_33535_lvgd_1164250000_building_446377,BranchTee_mvgd_33535_lvgd_1164250000_1,BranchTee_mvgd_33535_lvgd_1164250000_building_446377,0.059952161970899344,0.05203847659074063,0.005104156860755735,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051528823722016 47.56216229695371, 10.051416600000003 47.56269649624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_1_LVCableDist_mvgd_33535_lvgd_1164250000_building_446385,BranchTee_mvgd_33535_lvgd_1164250000_1,BranchTee_mvgd_33535_lvgd_1164250000_building_446385,0.018059566521351253,0.015675703740532888,0.0015375402209343678,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051180172690168 47.56272375272389, 10.051416600000003 47.56269649624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_1_LVStation_mvgd_33535_lvgd_1164250000,BusBar_mvgd_33535_lvgd_1164250000_LV,BranchTee_mvgd_33535_lvgd_1164250000_1,0.05124618278768099,0.0444816866597071,0.004362954510135085,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.051416600000003 47.56269649624471, 10.051396700000007 47.56264979624473, 10.051391300000008 47.5625596962447, 10.0513759 47.56248249624468, 10.051365699999998 47.562310896244654, 10.0513544 47.56223849624466)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_2_LVCableDist_mvgd_33535_lvgd_1164250000_building_446380,BranchTee_mvgd_33535_lvgd_1164250000_2,BranchTee_mvgd_33535_lvgd_1164250000_building_446380,0.017134684202373872,0.01487290588766052,0.0014587983661186648,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.053573063348413 47.5631925713402, 10.053771199999998 47.563268396244794)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_3_LVCableDist_mvgd_33535_lvgd_1164250000_4,BranchTee_mvgd_33535_lvgd_1164250000_3,BranchTee_mvgd_33535_lvgd_1164250000_4,0.1721585268977797,0.14943360134727277,0.01465708820691794,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048245999999999 47.56059759624454, 10.048100699999999 47.560575496244525, 10.047890700000004 47.56058749624453, 10.047876700000007 47.560510496244525, 10.047839000000005 47.56046599624451, 10.047779900000002 47.560430696244495, 10.047688499999996 47.56041069624451, 10.047485499999993 47.56037989624454, 10.047363100000004 47.56035719624448, 10.047295900000005 47.56033269624449, 10.047247500000003 47.560297296244464, 10.0470298 47.560031496244484, 10.047008300000003 47.55996349624449, 10.047016300000001 47.55992719624451, 10.047036500000004 47.55988909624442, 10.047071399999998 47.55985829624446, 10.0471265 47.55983649624445, 10.047221999999996 47.55984369624446, 10.047407499999998 47.55988819624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_3_LVCableDist_mvgd_33535_lvgd_1164250000_building_446376,BranchTee_mvgd_33535_lvgd_1164250000_3,BranchTee_mvgd_33535_lvgd_1164250000_building_446376,0.01633478218621467,0.014178590937634334,0.0013906969794548589,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.048170400007438 47.560735396268655, 10.048245999999999 47.56059759624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_3_LVStation_mvgd_33535_lvgd_1164250000,BusBar_mvgd_33535_lvgd_1164250000_LV,BranchTee_mvgd_33535_lvgd_1164250000_3,0.3317011443443296,0.2879165932908781,0.028240093700831737,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0513544 47.56223849624466, 10.051307499999998 47.56209329624469, 10.051006700000004 47.56153429624455, 10.050779899999998 47.56123139624461, 10.050625599999995 47.56110769624458, 10.0504846 47.561050196244565, 10.050218100000004 47.561021496244614, 10.050182700000002 47.5610176962446, 10.049680700000005 47.56100989624455, 10.0492804 47.560990796244575, 10.048959899999998 47.56091549624459, 10.048498400000003 47.560703696244566, 10.048428200000004 47.56067149624454, 10.048337000000004 47.56063449624457, 10.048245999999999 47.56059759624454)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_4_LVCableDist_mvgd_33535_lvgd_1164250000_building_446369,BranchTee_mvgd_33535_lvgd_1164250000_4,BranchTee_mvgd_33535_lvgd_1164250000_building_446369,0.009261389598194631,0.00803888617123294,0.0007884884164928441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.047406519612409 47.559971548687116, 10.047407499999998 47.55988819624449)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_5_LVCableDist_mvgd_33535_lvgd_1164250000_building_446370,BranchTee_mvgd_33535_lvgd_1164250000_5,BranchTee_mvgd_33535_lvgd_1164250000_building_446370,0.020646485939203405,0.017921149795228554,0.001757783195679157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0506767124009 47.56232077281203, 10.050635599999998 47.56250449624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164250000_5_LVStation_mvgd_33535_lvgd_1164250000,BusBar_mvgd_33535_lvgd_1164250000_LV,BranchTee_mvgd_33535_lvgd_1164250000_5,0.06184301126414875,0.053679733777281115,0.005265138401295987,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0513544 47.56223849624466, 10.050976399999998 47.56240189624465, 10.050635599999998 47.56250449624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1164270000_building_446395_LVStation_mvgd_33535_lvgd_1164270000,BusBar_mvgd_33535_lvgd_1164270000_LV,BranchTee_mvgd_33535_lvgd_1164270000_building_446395,0.01700278477753843,0.014758417186903357,0.0014475688235622121,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.058863726561917 47.565628434212776, 10.058768199999996 47.56576709624502)" +Branch_LVCableDist_mvgd_33535_lvgd_1164920000_building_431409_LVStation_mvgd_33535_lvgd_1164920000,BusBar_mvgd_33535_lvgd_1164920000_LV,BranchTee_mvgd_33535_lvgd_1164920000_building_431409,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006545348901419 47.511165158297686, 10.006545348901419 47.511165158297686)" +Branch_LVCableDist_mvgd_33535_lvgd_1165830000_building_442272_LVStation_mvgd_33535_lvgd_1165830000,BusBar_mvgd_33535_lvgd_1165830000_LV,BranchTee_mvgd_33535_lvgd_1165830000_building_442272,0.027862219537178413,0.024184406558270862,0.002372110268110125,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008300057214763 47.57223794176855, 10.008001799999994 47.57208949624548)" +Branch_LVCableDist_mvgd_33535_lvgd_1165850000_building_431049_LVStation_mvgd_33535_lvgd_1165850000,BusBar_mvgd_33535_lvgd_1165850000_LV,BranchTee_mvgd_33535_lvgd_1165850000_building_431049,0.011647730989084885,0.01011023049852568,0.0009916547474807097,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.00497080004529 47.50384399629569, 10.00487026241384 47.50392359944945)" +Branch_LVCableDist_mvgd_33535_lvgd_1165850000_building_431050_LVStation_mvgd_33535_lvgd_1165850000,BusBar_mvgd_33535_lvgd_1165850000_LV,BranchTee_mvgd_33535_lvgd_1165850000_building_431050,0.003986822245570147,0.003460561709154887,0.00033942672704977665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.004835850003975 47.50395084624699, 10.00487026241384 47.50392359944945)" +Branch_LVCableDist_mvgd_33535_lvgd_1166430000_building_431450_LVStation_mvgd_33535_lvgd_1166430000,BusBar_mvgd_33535_lvgd_1166430000_LV,BranchTee_mvgd_33535_lvgd_1166430000_building_431450,0.01050352636030089,0.009117060880741172,0.0008942404138833473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.007413250026959 47.52283874630099, 10.007437925988821 47.52293178918052)" +Branch_LVCableDist_mvgd_33535_lvgd_1166430000_building_431451_LVStation_mvgd_33535_lvgd_1166430000,BusBar_mvgd_33535_lvgd_1166430000_LV,BranchTee_mvgd_33535_lvgd_1166430000_building_431451,0.009334769681787005,0.00810258008379112,0.0007947357884774048,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.007459856262065 47.52301447891101, 10.007437925988821 47.52293178918052)" +Branch_LVCableDist_mvgd_33535_lvgd_1166640000_building_431424_LVStation_mvgd_33535_lvgd_1166640000,BusBar_mvgd_33535_lvgd_1166640000_LV,BranchTee_mvgd_33535_lvgd_1166640000_building_431424,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010055050033241 47.51512089628523, 10.010055050033241 47.51512089628523)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_10_LVCableDist_mvgd_33535_lvgd_1166910000_7,BranchTee_mvgd_33535_lvgd_1166910000_7,BranchTee_mvgd_33535_lvgd_1166910000_10,0.04292413159764635,0.037258146226757036,0.0036544386988488463,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002593900000004 47.52808699624162, 10.002474100000006 47.52804769624162, 10.002059399999993 47.52795519624159)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_10_LVCableDist_mvgd_33535_lvgd_1166910000_9,BranchTee_mvgd_33535_lvgd_1166910000_9,BranchTee_mvgd_33535_lvgd_1166910000_10,0.026904279369302238,0.023352914492554343,0.0022905539618933114,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002059399999993 47.52795519624159, 10.0018989 47.52791949624162, 10.0017151 47.5278922962416)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_10_LVCableDist_mvgd_33535_lvgd_1166910000_building_431603,BranchTee_mvgd_33535_lvgd_1166910000_10,BranchTee_mvgd_33535_lvgd_1166910000_building_431603,0.012164955311647057,0.010559181210509645,0.0010356897578584323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002217250003524 47.52793224624926, 10.002059399999993 47.52795519624159)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_11_LVCableDist_mvgd_33535_lvgd_1166910000_5,BranchTee_mvgd_33535_lvgd_1166910000_5,BranchTee_mvgd_33535_lvgd_1166910000_11,0.034389878214692325,0.02985041429035294,0.00292785659531809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000840899999996 47.52756649624161, 10.0009675 47.52758049624157, 10.001022100000007 47.52759529624155, 10.001090599999996 47.52765079624159, 10.0011433 47.527689296241604, 10.001219600000002 47.52771489624163)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_11_LVCableDist_mvgd_33535_lvgd_1166910000_6,BranchTee_mvgd_33535_lvgd_1166910000_6,BranchTee_mvgd_33535_lvgd_1166910000_11,0.022574684247880866,0.01959482592716059,0.0019219445253558227,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000547499999998 47.52753119624159, 10.000688499999997 47.52755879624157, 10.000840899999996 47.52756649624161)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_11_LVCableDist_mvgd_33535_lvgd_1166910000_building_431616,BranchTee_mvgd_33535_lvgd_1166910000_11,BranchTee_mvgd_33535_lvgd_1166910000_building_431616,0.009591994936305215,0.008325851604712926,0.0008166352163620247,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000811382993684 47.52748251741519, 10.000840899999996 47.52756649624161)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_12_LVCableDist_mvgd_33535_lvgd_1166910000_14,BranchTee_mvgd_33535_lvgd_1166910000_12,BranchTee_mvgd_33535_lvgd_1166910000_14,0.17827180646142166,0.154739928008514,0.0151775554728295,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000305600000006 47.52884329624169, 10.000216599999996 47.52875819624168, 10.000190499999995 47.52868279624164, 10.000197800000004 47.52863989624164, 10.000214199999995 47.52860369624168, 10.0002721 47.528564796241696, 10.0003262 47.528548596241656, 10.000534200000004 47.52852959624172, 10.0008166 47.52852759624168, 10.000941300000004 47.52852179624164, 10.001061700000001 47.528500496241676, 10.001138199999993 47.528478396241624, 10.001197100000004 47.52843689624165, 10.001241800000003 47.52837719624165, 10.001275 47.52825389624166, 10.001396100000001 47.52803839624163, 10.0015165 47.527848896241615)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_12_LVCableDist_mvgd_33535_lvgd_1166910000_8,BranchTee_mvgd_33535_lvgd_1166910000_8,BranchTee_mvgd_33535_lvgd_1166910000_12,0.016666688197198107,0.014466685355167958,0.0014189545149197098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001601100000006 47.5277102962416, 10.0015165 47.527848896241615)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_12_LVCableDist_mvgd_33535_lvgd_1166910000_9,BranchTee_mvgd_33535_lvgd_1166910000_9,BranchTee_mvgd_33535_lvgd_1166910000_12,0.015723105149874426,0.013647655270091002,0.001338620533185611,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0015165 47.527848896241615, 10.0017151 47.5278922962416)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_13_LVCableDist_mvgd_33535_lvgd_1166910000_8,BranchTee_mvgd_33535_lvgd_1166910000_8,BranchTee_mvgd_33535_lvgd_1166910000_13,0.09672848327917628,0.08396032348632501,0.008235188445740347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001601100000006 47.5277102962416, 10.001741000000004 47.52766279624159, 10.001911900000003 47.52763279624158, 10.002075 47.5276257962416, 10.002485499999999 47.52760019624158, 10.002586499999994 47.52758909624159, 10.002721800000002 47.52756989624157, 10.002854999999997 47.52755749624156)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_13_LVCableDist_mvgd_33535_lvgd_1166910000_building_431601,BranchTee_mvgd_33535_lvgd_1166910000_13,BranchTee_mvgd_33535_lvgd_1166910000_building_431601,0.018488391886272302,0.016047924157284357,0.00157404919503092,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002773674409687 47.52740050032532, 10.002854999999997 47.52755749624156)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_13_LVStation_mvgd_33535_lvgd_1166910000,BusBar_mvgd_33535_lvgd_1166910000_LV,BranchTee_mvgd_33535_lvgd_1166910000_13,0.01502797511627382,0.013044282400925675,0.001279439135659995,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002854999999997 47.52755749624156, 10.002959199999998 47.527557696241615, 10.003053600000003 47.527566196241544)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_14_LVCableDist_mvgd_33535_lvgd_1166910000_building_431608,BranchTee_mvgd_33535_lvgd_1166910000_14,BranchTee_mvgd_33535_lvgd_1166910000_building_431608,0.023485450564044306,0.020385371089590456,0.001999484583768517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000598500029314 47.528915546293646, 10.000305600000006 47.52884329624169)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_15_LVCableDist_mvgd_33535_lvgd_1166910000_18,BranchTee_mvgd_33535_lvgd_1166910000_15,BranchTee_mvgd_33535_lvgd_1166910000_18,0.35012278259049884,0.30390657528855297,0.02980845968046372,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.005959700000002 47.525792696241425, 10.005704499999998 47.52563299624142, 10.005519400000006 47.525544196241405, 10.005299600000003 47.525472096241366, 10.005154600000003 47.52544349624141, 10.0051068 47.525439496241404, 10.004991400000003 47.52544329624137, 10.0047372 47.525498996241424, 10.004272199999999 47.52562699624142, 10.003789400000004 47.525775496241465, 10.003640700000002 47.525786796241405, 10.003483299999996 47.52579229624146, 10.0033884 47.52577009624143, 10.003343799999998 47.525734696241415, 10.003297599999996 47.525656096241406, 10.003255699999993 47.52561159624142, 10.0031499 47.5255516962414, 10.003056500000001 47.52552939624139, 10.002981600000002 47.52552509624142, 10.0028944 47.52584449624143, 10.002879100000001 47.525969496241466, 10.002885499999994 47.526144496241415, 10.002924500000002 47.52634719624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_15_LVCableDist_mvgd_33535_lvgd_1166910000_20,BranchTee_mvgd_33535_lvgd_1166910000_15,BranchTee_mvgd_33535_lvgd_1166910000_20,0.045635370633719904,0.03961150171006888,0.003885265892934704,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002924500000002 47.52634719624145, 10.002946400000003 47.52641599624144, 10.002958299999998 47.526453296241485, 10.003035400000002 47.52659779624149, 10.003119600000002 47.52673489624151)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_15_LVCableDist_mvgd_33535_lvgd_1166910000_building_431452,BranchTee_mvgd_33535_lvgd_1166910000_15,BranchTee_mvgd_33535_lvgd_1166910000_building_431452,0.013935660884380344,0.012096153647642138,0.001186442603132503,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003109172948914 47.52635379219151, 10.002924500000002 47.52634719624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_16_LVCableDist_mvgd_33535_lvgd_1166910000_19,BranchTee_mvgd_33535_lvgd_1166910000_16,BranchTee_mvgd_33535_lvgd_1166910000_19,0.0712937181143247,0.061882947323233836,0.006069744751134236,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0031976 47.526873296241526, 10.003241899999997 47.52701249624156, 10.003266300000002 47.52709139624155, 10.003275099999996 47.527145596241546, 10.003256000000004 47.52722499624158, 10.003095299999995 47.527486896241584)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_16_LVCableDist_mvgd_33535_lvgd_1166910000_20,BranchTee_mvgd_33535_lvgd_1166910000_16,BranchTee_mvgd_33535_lvgd_1166910000_20,0.016462146241460283,0.014289142937587526,0.0014015403935207455,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003119600000002 47.52673489624151, 10.0031976 47.526873296241526)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_16_LVCableDist_mvgd_33535_lvgd_1166910000_building_431594,BranchTee_mvgd_33535_lvgd_1166910000_16,BranchTee_mvgd_33535_lvgd_1166910000_building_431594,0.012292961183339652,0.010670290307138819,0.0010465878143544418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003036879541833 47.526892248828574, 10.0031976 47.526873296241526)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_17_LVCableDist_mvgd_33535_lvgd_1166910000_21,BranchTee_mvgd_33535_lvgd_1166910000_17,BranchTee_mvgd_33535_lvgd_1166910000_21,0.035651942954823934,0.030945886484787175,0.003035305204180394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002681100000002 47.52669719624153, 10.002468700000005 47.526684296241505, 10.002378000000006 47.52662589624149, 10.002270099999999 47.5265710962415)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_17_LVCableDist_mvgd_33535_lvgd_1166910000_building_431434,BranchTee_mvgd_33535_lvgd_1166910000_17,BranchTee_mvgd_33535_lvgd_1166910000_building_431434,0.06463117800071977,0.05609986250462476,0.00550251500139771,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001669780825766 47.526155641524056, 10.002270099999999 47.5265710962415)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_17_LVCableDist_mvgd_33535_lvgd_1166910000_building_431435,BranchTee_mvgd_33535_lvgd_1166910000_17,BranchTee_mvgd_33535_lvgd_1166910000_building_431435,0.01928626998523631,0.01674048234718512,0.0016419782711308054,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002372449974104 47.52641199630945, 10.002270099999999 47.5265710962415)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_18_LVCableDist_mvgd_33535_lvgd_1166910000_22,BranchTee_mvgd_33535_lvgd_1166910000_18,BranchTee_mvgd_33535_lvgd_1166910000_22,0.011898211208731498,0.01032764732917894,0.0010129799222461076,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006094099999995 47.52584889624143, 10.005959700000002 47.525792696241425)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_18_LVCableDist_mvgd_33535_lvgd_1166910000_building_431463,BranchTee_mvgd_33535_lvgd_1166910000_18,BranchTee_mvgd_33535_lvgd_1166910000_building_431463,0.011979359338600996,0.010398083905905665,0.001019888643636538,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.005875515514706 47.52588415573355, 10.005959700000002 47.525792696241425)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_19_LVCableDist_mvgd_33535_lvgd_1166910000_building_431632,BranchTee_mvgd_33535_lvgd_1166910000_19,BranchTee_mvgd_33535_lvgd_1166910000_building_431632,0.031151265965277373,0.027039298857860758,0.002652130343107157,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0034957723341 47.527556444213474, 10.003095299999995 47.527486896241584)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_19_LVStation_mvgd_33535_lvgd_1166910000,BusBar_mvgd_33535_lvgd_1166910000_LV,BranchTee_mvgd_33535_lvgd_1166910000_19,0.009354273663327889,0.008119509539768607,0.0007963963020922812,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003095299999995 47.527486896241584, 10.003053600000003 47.527566196241544)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_1_LVCableDist_mvgd_33535_lvgd_1166910000_4,BranchTee_mvgd_33535_lvgd_1166910000_1,BranchTee_mvgd_33535_lvgd_1166910000_4,0.06966271466603441,0.060467236330117864,0.005930885748108657,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.005604700000001 47.52833659624167, 10.006528100000002 47.52836679624166)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_1_LVCableDist_mvgd_33535_lvgd_1166910000_building_431621,BranchTee_mvgd_33535_lvgd_1166910000_1,BranchTee_mvgd_33535_lvgd_1166910000_building_431621,0.042393689337862514,0.03679772234526466,0.003609278350822954,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006428500835318 47.52874233042319, 10.006528100000002 47.52836679624166)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_1_LVCableDist_mvgd_33535_lvgd_1166910000_building_431624,BranchTee_mvgd_33535_lvgd_1166910000_1,BranchTee_mvgd_33535_lvgd_1166910000_building_431624,0.021158351808241032,0.018365449369553217,0.0018013620025369194,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006519188640201 47.52855713434549, 10.006528100000002 47.52836679624166)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_20_LVCableDist_mvgd_33535_lvgd_1166910000_21,BranchTee_mvgd_33535_lvgd_1166910000_20,BranchTee_mvgd_33535_lvgd_1166910000_21,0.03336495301923611,0.028960779220696942,0.0028405973740294804,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003119600000002 47.52673489624151, 10.002904700000004 47.52670759624153, 10.002681100000002 47.52669719624153)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_20_LVCableDist_mvgd_33535_lvgd_1166910000_building_431459,BranchTee_mvgd_33535_lvgd_1166910000_20,BranchTee_mvgd_33535_lvgd_1166910000_building_431459,0.01884731461676932,0.01635946908735577,0.0016046068572923206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003307249996766 47.52662274632496, 10.003119600000002 47.52673489624151)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_21_LVCableDist_mvgd_33535_lvgd_1166910000_building_431442,BranchTee_mvgd_33535_lvgd_1166910000_21,BranchTee_mvgd_33535_lvgd_1166910000_building_431442,0.01856210060854291,0.016111903328215244,0.0015803245463795112,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002588831559741 47.52685209970552, 10.002681100000002 47.52669719624153)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_21_LVCableDist_mvgd_33535_lvgd_1166910000_building_431446,BranchTee_mvgd_33535_lvgd_1166910000_21,BranchTee_mvgd_33535_lvgd_1166910000_building_431446,0.0064696751133607915,0.005615677998397167,0.0005508097711763931,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002719373350626 47.52674931982209, 10.002681100000002 47.52669719624153)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_22_LVCableDist_mvgd_33535_lvgd_1166910000_building_431460,BranchTee_mvgd_33535_lvgd_1166910000_22,BranchTee_mvgd_33535_lvgd_1166910000_building_431460,0.018342955861906804,0.015921685688135106,0.0015616671848220718,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.006208420901238 47.52570314285222, 10.006094099999995 47.52584889624143)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_2_LVCableDist_mvgd_33535_lvgd_1166910000_3,BranchTee_mvgd_33535_lvgd_1166910000_2,BranchTee_mvgd_33535_lvgd_1166910000_3,0.011549056643600907,0.010024581166645587,0.0009832538938513262,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003101400000004 47.52798599624161, 10.003195399999994 47.528068096241654)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_2_LVCableDist_mvgd_33535_lvgd_1166910000_building_431610,BranchTee_mvgd_33535_lvgd_1166910000_2,BranchTee_mvgd_33535_lvgd_1166910000_building_431610,0.01847354400307058,0.016035036194665262,0.001572785088409568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002869920429045 47.52804075344283, 10.003101400000004 47.52798599624161)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_2_LVCableDist_mvgd_33535_lvgd_1166910000_building_431636,BranchTee_mvgd_33535_lvgd_1166910000_2,BranchTee_mvgd_33535_lvgd_1166910000_building_431636,0.01713377594655977,0.01487211752161388,0.00145872103979727,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003295455370742 47.527905627090206, 10.003101400000004 47.52798599624161)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_2_LVStation_mvgd_33535_lvgd_1166910000,BusBar_mvgd_33535_lvgd_1166910000_LV,BranchTee_mvgd_33535_lvgd_1166910000_2,0.047139993239834505,0.04091751413217635,0.004013365189863742,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003053600000003 47.527566196241544, 10.003042500000003 47.527604696241596, 10.003035499999992 47.52768469624161, 10.003044600000003 47.52776629624161, 10.003054899999995 47.52781409624164, 10.003101400000004 47.52798599624161)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_3_LVCableDist_mvgd_33535_lvgd_1166910000_4,BranchTee_mvgd_33535_lvgd_1166910000_3,BranchTee_mvgd_33535_lvgd_1166910000_4,0.18596752565290925,0.16141981226672522,0.01583274715597093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003195399999994 47.528068096241654, 10.003350900000001 47.5281446962416, 10.003569199999998 47.52818729624164, 10.003690000000002 47.528207196241624, 10.0049208 47.52829589624166, 10.005604700000001 47.52833659624167)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_3_LVCableDist_mvgd_33535_lvgd_1166910000_building_431614,BranchTee_mvgd_33535_lvgd_1166910000_3,BranchTee_mvgd_33535_lvgd_1166910000_building_431614,0.012784934380067836,0.011097323041898881,0.0010884730155688196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.003045916441627 47.52812252589443, 10.003195399999994 47.528068096241654)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_4_LVCableDist_mvgd_33535_lvgd_1166910000_building_431617,BranchTee_mvgd_33535_lvgd_1166910000_4,BranchTee_mvgd_33535_lvgd_1166910000_building_431617,0.02532507063900247,0.021982161314654143,0.0021561046141076973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.005823945100627 47.528509351646115, 10.005604700000001 47.52833659624167)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_5_LVCableDist_mvgd_33535_lvgd_1166910000_8,BranchTee_mvgd_33535_lvgd_1166910000_5,BranchTee_mvgd_33535_lvgd_1166910000_8,0.02875243511467804,0.024957113679540538,0.002447900694978332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001219600000002 47.52771489624163, 10.001601100000006 47.5277102962416)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_5_LVCableDist_mvgd_33535_lvgd_1166910000_building_431581,BranchTee_mvgd_33535_lvgd_1166910000_5,BranchTee_mvgd_33535_lvgd_1166910000_building_431581,0.014796371258726149,0.012843250252574297,0.0012597210407720536,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001185500001585 47.527846046250374, 10.001219600000002 47.52771489624163)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_6_LVCableDist_mvgd_33535_lvgd_1166910000_building_431605,BranchTee_mvgd_33535_lvgd_1166910000_6,BranchTee_mvgd_33535_lvgd_1166910000_building_431605,0.029148748981750325,0.025301114116159283,0.0024816417324510344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.000195525626594 47.52764001469639, 10.000547499999998 47.52753119624159)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_7_LVCableDist_mvgd_33535_lvgd_1166910000_building_431611,BranchTee_mvgd_33535_lvgd_1166910000_7,BranchTee_mvgd_33535_lvgd_1166910000_building_431611,0.014133926862529783,0.012268248516675852,0.0012033224056176431,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.002733216197905 47.5281721718628, 10.002593900000004 47.52808699624162)" +Branch_LVCableDist_mvgd_33535_lvgd_1166910000_9_LVCableDist_mvgd_33535_lvgd_1166910000_building_431588,BranchTee_mvgd_33535_lvgd_1166910000_9,BranchTee_mvgd_33535_lvgd_1166910000_building_431588,0.013618337638283988,0.011820717070030502,0.0011594266028683894,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.001661464944748 47.5280093447294, 10.0017151 47.5278922962416)" +Branch_LVCableDist_mvgd_33535_lvgd_1166920000_building_431653_LVStation_mvgd_33535_lvgd_1166920000,BusBar_mvgd_33535_lvgd_1166920000_LV,BranchTee_mvgd_33535_lvgd_1166920000_building_431653,0.06241768568426049,0.054178551173938105,0.005314064549873213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.008596767676996 47.52992093596578, 10.0078172 47.529730996241796)" +Branch_LVCableDist_mvgd_33535_lvgd_1167600000_building_430847_LVStation_mvgd_33535_lvgd_1167600000,BusBar_mvgd_33535_lvgd_1167600000_LV,BranchTee_mvgd_33535_lvgd_1167600000_building_430847,0.014891651183756755,0.012925953227500864,0.0012678329030810945,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010642098111346 47.50397985325051, 10.010591400000001 47.50410939623945)" +Branch_LVCableDist_mvgd_33535_lvgd_1168040000_building_431679_LVStation_mvgd_33535_lvgd_1168040000,BusBar_mvgd_33535_lvgd_1168040000_LV,BranchTee_mvgd_33535_lvgd_1168040000_building_431679,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.011235800007439 47.5333865462718, 10.011235800007439 47.5333865462718)" +Branch_LVCableDist_mvgd_33535_lvgd_1168900000_building_431444_LVStation_mvgd_33535_lvgd_1168900000,BusBar_mvgd_33535_lvgd_1168900000_LV,BranchTee_mvgd_33535_lvgd_1168900000_building_431444,0.023371012451808292,0.020286038808169597,0.001989741647792582,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014781542056882 47.51553041471124, 10.015019600000004 47.51566519624052)" +Branch_LVCableDist_mvgd_33535_lvgd_1170090000_building_446407_LVStation_mvgd_33535_lvgd_1170090000,BusBar_mvgd_33535_lvgd_1170090000_LV,BranchTee_mvgd_33535_lvgd_1170090000_building_446407,0.0265907857281573,0.023080802012040536,0.002263864003322177,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022265418993758 47.57801400474753, 10.0221088 47.57779949624604)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_10_LVCableDist_mvgd_33535_lvgd_1170540000_11,BranchTee_mvgd_33535_lvgd_1170540000_10,BranchTee_mvgd_33535_lvgd_1170540000_11,0.020983589346608184,0.0182137555528559,0.0017864832227194568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0227041 47.57474269624579, 10.022430099999994 47.57477729624575)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_10_LVCableDist_mvgd_33535_lvgd_1170540000_9,BranchTee_mvgd_33535_lvgd_1170540000_9,BranchTee_mvgd_33535_lvgd_1170540000_10,0.01756203222157448,0.015243843968326648,0.0014951815631948924,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022937099999996 47.574735096245796, 10.0227041 47.57474269624579)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_10_LVCableDist_mvgd_33535_lvgd_1170540000_building_446413,BranchTee_mvgd_33535_lvgd_1170540000_10,BranchTee_mvgd_33535_lvgd_1170540000_building_446413,0.021789466548595173,0.01891325696418061,0.0018550933197405638,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022780176676955 47.57455348227748, 10.0227041 47.57474269624579)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_11_LVCableDist_mvgd_33535_lvgd_1170540000_5,BranchTee_mvgd_33535_lvgd_1170540000_5,BranchTee_mvgd_33535_lvgd_1170540000_11,0.0057638275848406004,0.0050030023436416415,0.000490715916561232,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022356099999993 47.57479059624579, 10.022430099999994 47.57477729624575)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_11_LVCableDist_mvgd_33535_lvgd_1170540000_building_446415,BranchTee_mvgd_33535_lvgd_1170540000_11,BranchTee_mvgd_33535_lvgd_1170540000_building_446415,0.009616244257619123,0.008346900015613399,0.0008186997347327406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022490799425304 47.574701144983386, 10.022430099999994 47.57477729624575)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_12_LVCableDist_mvgd_33535_lvgd_1170540000_13,BranchTee_mvgd_33535_lvgd_1170540000_12,BranchTee_mvgd_33535_lvgd_1170540000_13,0.04033343716756063,0.035009423461442625,0.003433874330280082,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022348799999996 47.574931896245815, 10.022330599999995 47.575294696245805)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_12_LVCableDist_mvgd_33535_lvgd_1170540000_5,BranchTee_mvgd_33535_lvgd_1170540000_5,BranchTee_mvgd_33535_lvgd_1170540000_12,0.01570924268885466,0.013635622653925844,0.0013374403226111308,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022356099999993 47.57479059624579, 10.022348799999996 47.574931896245815)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_12_LVCableDist_mvgd_33535_lvgd_1170540000_building_446405,BranchTee_mvgd_33535_lvgd_1170540000_12,BranchTee_mvgd_33535_lvgd_1170540000_building_446405,0.0183404238596893,0.015919487910210313,0.0015614516173418499,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022108379928019 47.57490527395065, 10.022348799999996 47.574931896245815)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_13_LVCableDist_mvgd_33535_lvgd_1170540000_building_446411,BranchTee_mvgd_33535_lvgd_1170540000_13,BranchTee_mvgd_33535_lvgd_1170540000_building_446411,0.022145387472548378,0.019222196326171993,0.0018853954167152164,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022105339850702 47.57516652269757, 10.022330599999995 47.575294696245805)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_14_LVCableDist_mvgd_33535_lvgd_1170540000_9,BranchTee_mvgd_33535_lvgd_1170540000_9,BranchTee_mvgd_33535_lvgd_1170540000_14,0.025272795734235166,0.021936786697316125,0.002151654077128849,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022897200000001 47.574960196245804, 10.022912199999999 47.574804196245786, 10.022937099999996 47.574735096245796)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_14_LVCableDist_mvgd_33535_lvgd_1170540000_building_446424,BranchTee_mvgd_33535_lvgd_1170540000_14,BranchTee_mvgd_33535_lvgd_1170540000_building_446424,0.017379214122566655,0.015085157858387857,0.0014796169492819855,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022934944026103 47.575114507620846, 10.022897200000001 47.574960196245804)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_15_LVCableDist_mvgd_33535_lvgd_1170540000_9,BranchTee_mvgd_33535_lvgd_1170540000_9,BranchTee_mvgd_33535_lvgd_1170540000_15,0.04591277172920616,0.039852285860950944,0.003908883034638361,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023480199999996 47.574918396245806, 10.023230500000006 47.57481089624581, 10.022937099999996 47.574735096245796)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_15_LVCableDist_mvgd_33535_lvgd_1170540000_building_446426,BranchTee_mvgd_33535_lvgd_1170540000_15,BranchTee_mvgd_33535_lvgd_1170540000_building_446426,0.024978152456411436,0.021681036332165126,0.0021265689849730473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023410535182032 47.57513819361646, 10.023480199999996 47.574918396245806)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_1_LVCableDist_mvgd_33535_lvgd_1170540000_2,BranchTee_mvgd_33535_lvgd_1170540000_1,BranchTee_mvgd_33535_lvgd_1170540000_2,0.0047883995580212425,0.004156330816362438,0.00040767074368356124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023604699999996 47.57456979624575, 10.023556100000004 47.57454199624575)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_1_LVCableDist_mvgd_33535_lvgd_1170540000_building_446408,BranchTee_mvgd_33535_lvgd_1170540000_1,BranchTee_mvgd_33535_lvgd_1170540000_building_446408,0.01936489441659855,0.01680872835360754,0.0016486721319953293,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023590788656378 47.57474382940575, 10.023604699999996 47.57456979624575)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_2_LVCableDist_mvgd_33535_lvgd_1170540000_3,BranchTee_mvgd_33535_lvgd_1170540000_2,BranchTee_mvgd_33535_lvgd_1170540000_3,0.023888157895654072,0.020734921053427734,0.002033769942660334,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023556100000004 47.57454199624575, 10.023401499999995 47.5743915962457, 10.023372900000004 47.57436649624571)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_2_LVCableDist_mvgd_33535_lvgd_1170540000_building_446416,BranchTee_mvgd_33535_lvgd_1170540000_2,BranchTee_mvgd_33535_lvgd_1170540000_building_446416,0.016647865231861247,0.014450347021255562,0.0014173519810909791,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023714625094115 47.57443753418937, 10.023556100000004 47.57454199624575)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_3_LVCableDist_mvgd_33535_lvgd_1170540000_6,BranchTee_mvgd_33535_lvgd_1170540000_3,BranchTee_mvgd_33535_lvgd_1170540000_6,0.012347506712962664,0.010717635826851592,0.001051231665887002,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023372900000004 47.57436649624571, 10.023356900000003 47.57425589624573)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_3_LVCableDist_mvgd_33535_lvgd_1170540000_7,BranchTee_mvgd_33535_lvgd_1170540000_3,BranchTee_mvgd_33535_lvgd_1170540000_7,0.02316573324358338,0.020107856455430374,0.001972264758809991,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0232206 47.57454719624577, 10.023301500000002 47.57446429624577, 10.023372900000004 47.57436649624571)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_4_LVCableDist_mvgd_33535_lvgd_1170540000_5,BranchTee_mvgd_33535_lvgd_1170540000_4,BranchTee_mvgd_33535_lvgd_1170540000_5,0.02218030975929157,0.019252508871065083,0.0018883686010610964,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022086699999996 47.5747097962458, 10.022148000000005 47.5747282962458, 10.022356099999993 47.57479059624579)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_4_LVCableDist_mvgd_33535_lvgd_1170540000_building_446402,BranchTee_mvgd_33535_lvgd_1170540000_4,BranchTee_mvgd_33535_lvgd_1170540000_building_446402,0.012053435293581435,0.010462381834828685,0.0010261952601354385,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021957219162381 47.57464599142411, 10.022086699999996 47.5747097962458)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_6_LVCableDist_mvgd_33535_lvgd_1170540000_building_446404,BranchTee_mvgd_33535_lvgd_1170540000_6,BranchTee_mvgd_33535_lvgd_1170540000_building_446404,0.010781781445363483,0.009358586294575503,0.0009179302618349824,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023498024673627 47.57427239077096, 10.023356900000003 47.57425589624573)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_6_LVCableDist_mvgd_33535_lvgd_1170540000_building_446412,BranchTee_mvgd_33535_lvgd_1170540000_6,BranchTee_mvgd_33535_lvgd_1170540000_building_446412,0.02052914796244778,0.017819300431404672,0.0017477933734709916,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023613900001354 47.57419414625325, 10.023356900000003 47.57425589624573)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_6_LVStation_mvgd_33535_lvgd_1170540000,BusBar_mvgd_33535_lvgd_1170540000_LV,BranchTee_mvgd_33535_lvgd_1170540000_6,0.03097771645946445,0.026888657886815142,0.002637354830904515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023356900000003 47.57425589624573, 10.023310899999997 47.5741007962457, 10.0232901 47.57405929624573, 10.023249199999997 47.5739876962457)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_7_LVCableDist_mvgd_33535_lvgd_1170540000_8,BranchTee_mvgd_33535_lvgd_1170540000_7,BranchTee_mvgd_33535_lvgd_1170540000_8,0.015705364476794943,0.013632256365858011,0.0013371101426469508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0232206 47.57454719624577, 10.023088500000002 47.57465659624575)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_7_LVCableDist_mvgd_33535_lvgd_1170540000_building_446406,BranchTee_mvgd_33535_lvgd_1170540000_7,BranchTee_mvgd_33535_lvgd_1170540000_building_446406,0.011963057957203097,0.010383934306852288,0.0010185007903053725,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023348934062797 47.574610685973255, 10.0232206 47.57454719624577)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_8_LVCableDist_mvgd_33535_lvgd_1170540000_9,BranchTee_mvgd_33535_lvgd_1170540000_8,BranchTee_mvgd_33535_lvgd_1170540000_9,0.01435251040850894,0.01245797903458576,0.001221931988144448,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023088500000002 47.57465659624575, 10.022937099999996 47.574735096245796)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_8_LVCableDist_mvgd_33535_lvgd_1170540000_building_446403,BranchTee_mvgd_33535_lvgd_1170540000_8,BranchTee_mvgd_33535_lvgd_1170540000_building_446403,0.010315712129218182,0.008954038128161382,0.0008782504434700421,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023052599998683 47.574566996262334, 10.023088500000002 47.57465659624575)" +Branch_LVCableDist_mvgd_33535_lvgd_1170540000_building_544076_LVStation_mvgd_33535_lvgd_1170540000,BusBar_mvgd_33535_lvgd_1170540000_LV,BranchTee_mvgd_33535_lvgd_1170540000_building_544076,0.13103593240446634,0.026993402075320066,0.010538534978512901,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.02451185766711 47.573175998773344, 10.023249199999997 47.5739876962457)" +Branch_LVCableDist_mvgd_33535_lvgd_1171050000_1_LVCableDist_mvgd_33535_lvgd_1171050000_building_446469,BranchTee_mvgd_33535_lvgd_1171050000_1,BranchTee_mvgd_33535_lvgd_1171050000_building_446469,0.0920593074241243,0.07990747884413989,0.007837668069641037,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023258122721703 47.58229120372857, 10.022954499999999 47.58148859624634)" +Branch_LVCableDist_mvgd_33535_lvgd_1171050000_1_LVCableDist_mvgd_33535_lvgd_1171050000_building_446481,BranchTee_mvgd_33535_lvgd_1171050000_1,BranchTee_mvgd_33535_lvgd_1171050000_building_446481,0.06002173898457292,0.052098869438609294,0.0051100804501646585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023144644663516 47.582013216614584, 10.022954499999999 47.58148859624634)" +Branch_LVCableDist_mvgd_33535_lvgd_1171050000_1_LVCableDist_mvgd_33535_lvgd_1171050000_building_446487,BranchTee_mvgd_33535_lvgd_1171050000_1,BranchTee_mvgd_33535_lvgd_1171050000_building_446487,0.06160506637451818,0.05347319761308178,0.005244880448939254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023403780321006 47.58195202710066, 10.022954499999999 47.58148859624634)" +Branch_LVCableDist_mvgd_33535_lvgd_1171050000_1_LVStation_mvgd_33535_lvgd_1171050000,BusBar_mvgd_33535_lvgd_1171050000_LV,BranchTee_mvgd_33535_lvgd_1171050000_1,0.040043143405343234,0.03475744847583793,0.003409159543534347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022954499999999 47.58148859624634, 10.023486400000003 47.5814837962464)" +Branch_LVCableDist_mvgd_33535_lvgd_1171050000_2_LVCableDist_mvgd_33535_lvgd_1171050000_building_446434,BranchTee_mvgd_33535_lvgd_1171050000_2,BranchTee_mvgd_33535_lvgd_1171050000_building_446434,0.03792760204839654,0.032921158578008196,0.0032290483586113862,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026444980277402 47.581395902843724, 10.026040800000002 47.58119209624628)" +Branch_LVCableDist_mvgd_33535_lvgd_1171050000_2_LVStation_mvgd_33535_lvgd_1171050000,BusBar_mvgd_33535_lvgd_1171050000_LV,BranchTee_mvgd_33535_lvgd_1171050000_2,0.19666164662253544,0.17070230926836075,0.016743214253777415,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026040800000002 47.58119209624628, 10.025898499999993 47.58123199624633, 10.025797300000004 47.58126099624631, 10.0254341 47.581345896246354, 10.025052600000002 47.58140989624632, 10.024632600000007 47.58144949624635, 10.024172999999994 47.58146629624632, 10.023955600000006 47.58147249624635, 10.023486400000003 47.5814837962464)" +Branch_LVCableDist_mvgd_33535_lvgd_1172390000_building_431648_LVStation_mvgd_33535_lvgd_1172390000,BusBar_mvgd_33535_lvgd_1172390000_LV,BranchTee_mvgd_33535_lvgd_1172390000_building_431648,0.027460870595958822,0.02383603567729226,0.0023379405587195382,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.010723982805679 47.527551416924844, 10.010766399999996 47.52779689624157)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_10_LVCableDist_mvgd_33535_lvgd_1172410000_3,BranchTee_mvgd_33535_lvgd_1172410000_3,BranchTee_mvgd_33535_lvgd_1172410000_10,0.0387345386150393,0.009799838269604944,0.0031152164340018593,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.034440799999999 47.52476549624135, 10.034949799999998 47.52481399624134)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_10_LVCableDist_mvgd_33535_lvgd_1172410000_9,BranchTee_mvgd_33535_lvgd_1172410000_9,BranchTee_mvgd_33535_lvgd_1172410000_10,0.02795859094580794,0.007073523509289409,0.002248563300353852,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.034070800000004 47.52474699624133, 10.034440799999999 47.52476549624135)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_10_LVCableDist_mvgd_33535_lvgd_1172410000_building_444568,BranchTee_mvgd_33535_lvgd_1172410000_10,BranchTee_mvgd_33535_lvgd_1172410000_building_444568,0.020348782580454507,0.01766274327983451,0.0017324375769212249,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034700765694119 47.52471597259204, 10.034440799999999 47.52476549624135)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_10_LVCableDist_mvgd_33535_lvgd_1172410000_building_444577,BranchTee_mvgd_33535_lvgd_1172410000_10,BranchTee_mvgd_33535_lvgd_1172410000_building_444577,0.027382879416645457,0.023768339333648258,0.002331300611136597,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03437863405351 47.52500832097543, 10.034440799999999 47.52476549624135)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_11_LVCableDist_mvgd_33535_lvgd_1172410000_13,BranchTee_mvgd_33535_lvgd_1172410000_11,BranchTee_mvgd_33535_lvgd_1172410000_13,0.04219583764449431,0.010675546924057061,0.0033935906190338807,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0350068 47.524733996241345, 10.035133700000001 47.524364096241264)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_11_LVCableDist_mvgd_33535_lvgd_1172410000_3,BranchTee_mvgd_33535_lvgd_1172410000_3,BranchTee_mvgd_33535_lvgd_1172410000_11,0.009871916459743012,0.002497594864314982,0.0007939466298055887,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.034949799999998 47.52481399624134, 10.0350068 47.524733996241345)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_11_LVCableDist_mvgd_33535_lvgd_1172410000_building_444569,BranchTee_mvgd_33535_lvgd_1172410000_11,BranchTee_mvgd_33535_lvgd_1172410000_building_444569,0.010611446272913317,0.00921073536488876,0.0009034284088490711,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034875959808176 47.52469869694947, 10.0350068 47.524733996241345)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_11_LVCableDist_mvgd_33535_lvgd_1172410000_building_444571,BranchTee_mvgd_33535_lvgd_1172410000_11,BranchTee_mvgd_33535_lvgd_1172410000_building_444571,0.021390528184016325,0.01856697846372617,0.0018211288400013313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035265850000572 47.52465529626661, 10.0350068 47.524733996241345)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_11_LVCableDist_mvgd_33535_lvgd_1172410000_building_444583,BranchTee_mvgd_33535_lvgd_1172410000_11,BranchTee_mvgd_33535_lvgd_1172410000_building_444583,0.030556722308723853,0.026523234963972304,0.0026015125841497826,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035384509630363 47.52483402339261, 10.0350068 47.524733996241345)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_12_LVCableDist_mvgd_33535_lvgd_1172410000_2,BranchTee_mvgd_33535_lvgd_1172410000_2,BranchTee_mvgd_33535_lvgd_1172410000_12,0.029228703449070952,0.007394861972614951,0.0023507118087566325,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.033149899999996 47.52416929624127, 10.032867599999998 47.52434969624131)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_12_LVCableDist_mvgd_33535_lvgd_1172410000_6,BranchTee_mvgd_33535_lvgd_1172410000_6,BranchTee_mvgd_33535_lvgd_1172410000_12,0.037836693785473025,0.009572683527724675,0.003043007468353757,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.033149899999996 47.52416929624127, 10.033466598382274 47.524433546718235)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_12_LVCableDist_mvgd_33535_lvgd_1172410000_building_444552,BranchTee_mvgd_33535_lvgd_1172410000_12,BranchTee_mvgd_33535_lvgd_1172410000_building_444552,0.023264678895980974,0.020193741281711485,0.001980688710739736,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033458349993984 47.524177946290635, 10.033149899999996 47.52416929624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_13_LVCableDist_mvgd_33535_lvgd_1172410000_building_444564,BranchTee_mvgd_33535_lvgd_1172410000_13,BranchTee_mvgd_33535_lvgd_1172410000_building_444564,0.012760892893088816,0.011076455031201093,0.0010864261916233163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03496458808668 47.52436996456396, 10.035133700000001 47.524364096241264)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_13_LVCableDist_mvgd_33535_lvgd_1172410000_building_444575,BranchTee_mvgd_33535_lvgd_1172410000_13,BranchTee_mvgd_33535_lvgd_1172410000_building_444575,0.022631923973797,0.019644510009255794,0.0019268177531117196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035399489569297 47.5242692644978, 10.035133700000001 47.524364096241264)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_13_LVCableDist_mvgd_33535_lvgd_1172410000_building_444576,BranchTee_mvgd_33535_lvgd_1172410000_13,BranchTee_mvgd_33535_lvgd_1172410000_building_444576,0.03183351909751784,0.027631494576645484,0.002710215437809623,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035445700003072 47.52455724630228, 10.035133700000001 47.524364096241264)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_14_LVCableDist_mvgd_33535_lvgd_1172410000_16,BranchTee_mvgd_33535_lvgd_1172410000_14,BranchTee_mvgd_33535_lvgd_1172410000_16,0.029191431579003654,0.007385432189487924,0.0023477142271069945,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.034494499999994 47.52380929624129, 10.0348261 47.52394509624123)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_14_LVCableDist_mvgd_33535_lvgd_1172410000_building_444562,BranchTee_mvgd_33535_lvgd_1172410000_14,BranchTee_mvgd_33535_lvgd_1172410000_building_444562,0.045346475268403574,0.0393607405329743,0.003860670161730955,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03444378497286 47.52426027078301, 10.0348261 47.52394509624123)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_15_LVCableDist_mvgd_33535_lvgd_1172410000_16,BranchTee_mvgd_33535_lvgd_1172410000_15,BranchTee_mvgd_33535_lvgd_1172410000_16,0.03561086133184443,0.00900954791695664,0.0028639954009120586,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0340222 47.52379929624127, 10.0343495 47.52380529624127, 10.034494499999994 47.52380929624129)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_15_LVCableDist_mvgd_33535_lvgd_1172410000_4,BranchTee_mvgd_33535_lvgd_1172410000_4,BranchTee_mvgd_33535_lvgd_1172410000_15,0.02284845533064774,0.005780659198653878,0.0018375818089635195,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0340222 47.52379929624127, 10.034172499999999 47.52362069624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_15_LVCableDist_mvgd_33535_lvgd_1172410000_building_444535,BranchTee_mvgd_33535_lvgd_1172410000_15,BranchTee_mvgd_33535_lvgd_1172410000_building_444535,0.02061286080028663,0.017891963174648792,0.0017549204468165016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033882375434116 47.52395874925365, 10.0340222 47.52379929624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_15_LVCableDist_mvgd_33535_lvgd_1172410000_building_444542,BranchTee_mvgd_33535_lvgd_1172410000_15,BranchTee_mvgd_33535_lvgd_1172410000_building_444542,0.03450022895006488,0.029946198728656316,0.002937251543632292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034116380010143 47.5241031707734, 10.0340222 47.52379929624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_16_LVCableDist_mvgd_33535_lvgd_1172410000_8,BranchTee_mvgd_33535_lvgd_1172410000_8,BranchTee_mvgd_33535_lvgd_1172410000_16,0.012933754721545912,0.003272239944551116,0.001040194273703448,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.034494499999994 47.52380929624129, 10.034601899999997 47.52371849624124)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_17_LVCableDist_mvgd_33535_lvgd_1172410000_19,BranchTee_mvgd_33535_lvgd_1172410000_17,BranchTee_mvgd_33535_lvgd_1172410000_19,0.2945786714182756,0.03682233392728445,0.023506333226810165,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025312400000006 47.52461929624132, 10.025316400000001 47.524741596241306, 10.025278200000006 47.52526799624138, 10.025300200000002 47.525348996241405, 10.025333799999993 47.525412696241425, 10.025385799999997 47.52548609624138, 10.025542900000003 47.525609396241386, 10.025754899999999 47.525766696241405, 10.025839200000002 47.525899696241424, 10.0258874 47.52601229624142, 10.025851900000003 47.52606279624146, 10.025720099999992 47.52614269624148, 10.025268451324985 47.5262944971816, 10.024816800000005 47.52644629624151, 10.024688999999997 47.526470396241486, 10.024588200000006 47.52646179624149, 10.024439400000004 47.526408896241485)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_17_LVCableDist_mvgd_33535_lvgd_1172410000_20,BranchTee_mvgd_33535_lvgd_1172410000_17,BranchTee_mvgd_33535_lvgd_1172410000_20,0.011096257216991251,0.0013870321521239064,0.0008854419719431581,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024299800000003 47.52642169624149, 10.024375399999995 47.52640019624149, 10.024439400000004 47.526408896241485)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_17_LVCableDist_mvgd_33535_lvgd_1172410000_building_444508,BranchTee_mvgd_33535_lvgd_1172410000_17,BranchTee_mvgd_33535_lvgd_1172410000_building_444508,0.015334683964143725,0.013310505680876753,0.0013055514561943163,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02445932031406 47.52627154028251, 10.024439400000004 47.526408896241485)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_18_LVCableDist_mvgd_33535_lvgd_1172410000_19,BranchTee_mvgd_33535_lvgd_1172410000_18,BranchTee_mvgd_33535_lvgd_1172410000_19,0.03969291237783661,0.004961614047229577,0.0031673536329151902,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.025312400000006 47.52461929624132, 10.025254500000004 47.52456199624131, 10.025367999999995 47.52428469624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_18_LVCableDist_mvgd_33535_lvgd_1172410000_22,BranchTee_mvgd_33535_lvgd_1172410000_18,BranchTee_mvgd_33535_lvgd_1172410000_22,0.14070648592061463,0.01758831074007683,0.011227878547008222,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026327499999995 47.523213296241195, 10.026115899999994 47.52343019624118, 10.025555999999996 47.523924996241234, 10.025443499999998 47.52409959624129, 10.025367999999995 47.52428469624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_18_LVCableDist_mvgd_33535_lvgd_1172410000_building_444482,BranchTee_mvgd_33535_lvgd_1172410000_18,BranchTee_mvgd_33535_lvgd_1172410000_building_444482,0.06850064698668226,0.059458561584440205,0.005831950605100689,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02451843962586 47.524065452050756, 10.025367999999995 47.52428469624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_18_LVCableDist_mvgd_33535_lvgd_1172410000_building_444527,BranchTee_mvgd_33535_lvgd_1172410000_18,BranchTee_mvgd_33535_lvgd_1172410000_building_444527,0.015612397893844351,0.013551561371856896,0.001329195231714821,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025172450005174 47.52423829629817, 10.025367999999995 47.52428469624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_19_LVCableDist_mvgd_33535_lvgd_1172410000_building_444512,BranchTee_mvgd_33535_lvgd_1172410000_19,BranchTee_mvgd_33535_lvgd_1172410000_building_444512,0.01612700957617305,0.013998244312118208,0.0013730078093205805,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025466304211081 47.524518440661154, 10.025312400000006 47.52461929624132)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_19_LVCableDist_mvgd_33535_lvgd_1172410000_building_444516,BranchTee_mvgd_33535_lvgd_1172410000_19,BranchTee_mvgd_33535_lvgd_1172410000_building_444516,0.009608637769744133,0.008340297584137906,0.0008180521399505502,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025439900002892 47.524618596262684, 10.025312400000006 47.52461929624132)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_1_LVCableDist_mvgd_33535_lvgd_1172410000_12,BranchTee_mvgd_33535_lvgd_1172410000_1,BranchTee_mvgd_33535_lvgd_1172410000_12,0.046276703759236794,0.011708006051086909,0.0037217933455966586,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.033529499999995 47.523841896241244, 10.033149899999996 47.52416929624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_1_LVCableDist_mvgd_33535_lvgd_1172410000_15,BranchTee_mvgd_33535_lvgd_1172410000_1,BranchTee_mvgd_33535_lvgd_1172410000_15,0.037501626215819685,0.009487911432602381,0.0030160597354826116,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.033529499999995 47.523841896241244, 10.033645799999997 47.52384069624125, 10.0340222 47.52379929624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_1_LVCableDist_mvgd_33535_lvgd_1172410000_5,BranchTee_mvgd_33535_lvgd_1172410000_1,BranchTee_mvgd_33535_lvgd_1172410000_5,0.05106096554190831,0.012918424282102802,0.004106566508330515,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.033529499999995 47.523841896241244, 10.033919100000006 47.5234658962412)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_20_LVCableDist_mvgd_33535_lvgd_1172410000_building_444506,BranchTee_mvgd_33535_lvgd_1172410000_20,BranchTee_mvgd_33535_lvgd_1172410000_building_444506,0.01149712070469498,0.009979500771675243,0.0009788322154635617,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024273249989422 47.5263197962767, 10.024299800000003 47.52642169624149)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_21_LVCableDist_mvgd_33535_lvgd_1172410000_27,BranchTee_mvgd_33535_lvgd_1172410000_21,BranchTee_mvgd_33535_lvgd_1172410000_27,0.09470964055650027,0.011838705069562534,0.007557493419309353,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021498799999996 47.520076796240915, 10.021777299999997 47.520150396240915, 10.022126100000003 47.52017489624093, 10.022484499999994 47.52020599624094, 10.0225846 47.520205696240915, 10.022711699999993 47.520253996240946)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_21_LVCableDist_mvgd_33535_lvgd_1172410000_building_444464,BranchTee_mvgd_33535_lvgd_1172410000_21,BranchTee_mvgd_33535_lvgd_1172410000_building_444464,0.016713426311985004,0.014507254038802982,0.0014229336653190587,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021462950028885 47.520225246281335, 10.021498799999996 47.520076796240915)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_21_LVCableDist_mvgd_33535_lvgd_1172410000_building_444466,BranchTee_mvgd_33535_lvgd_1172410000_21,BranchTee_mvgd_33535_lvgd_1172410000_building_444466,0.04387443951700547,0.038083013500760744,0.0037353452170955405,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021327700002148 47.52045424625069, 10.021498799999996 47.520076796240915)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_22_LVCableDist_mvgd_33535_lvgd_1172410000_31,BranchTee_mvgd_33535_lvgd_1172410000_22,BranchTee_mvgd_33535_lvgd_1172410000_31,0.014350704404587286,0.0017938380505734108,0.0011451353152947688,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026458100000003 47.52311929624116, 10.026327499999995 47.523213296241195)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_22_LVCableDist_mvgd_33535_lvgd_1172410000_building_444510,BranchTee_mvgd_33535_lvgd_1172410000_22,BranchTee_mvgd_33535_lvgd_1172410000_building_444510,0.01633528793513688,0.014179029927698813,0.0013907400374822303,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026111752115085 47.52319911213816, 10.026327499999995 47.523213296241195)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_23_LVCableDist_mvgd_33535_lvgd_1172410000_29,BranchTee_mvgd_33535_lvgd_1172410000_23,BranchTee_mvgd_33535_lvgd_1172410000_29,0.046883743296456504,0.005860467912057063,0.003741156437228612,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026218999999994 47.52286519624119, 10.0257736 47.522570596241145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_23_LVCableDist_mvgd_33535_lvgd_1172410000_31,BranchTee_mvgd_33535_lvgd_1172410000_23,BranchTee_mvgd_33535_lvgd_1172410000_31,0.03454567880945213,0.004318209851181516,0.0027566226493306043,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.026458100000003 47.52311929624116, 10.026418700000002 47.52301599624116, 10.026325700000001 47.522927196241156, 10.026218999999994 47.52286519624119)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_23_LVCableDist_mvgd_33535_lvgd_1172410000_building_444502,BranchTee_mvgd_33535_lvgd_1172410000_23,BranchTee_mvgd_33535_lvgd_1172410000_building_444502,0.030127206928568677,0.026150415613997613,0.002564944864115211,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026327400002206 47.52260419627613, 10.026218999999994 47.52286519624119)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_23_LVCableDist_mvgd_33535_lvgd_1172410000_building_444503,BranchTee_mvgd_33535_lvgd_1172410000_23,BranchTee_mvgd_33535_lvgd_1172410000_building_444503,0.01136092199055062,0.009861280287797938,0.0009672366436214073,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02622680455863 47.52276307997224, 10.026218999999994 47.52286519624119)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_24_LVCableDist_mvgd_33535_lvgd_1172410000_25,BranchTee_mvgd_33535_lvgd_1172410000_24,BranchTee_mvgd_33535_lvgd_1172410000_25,0.020286170414775734,0.0025357713018469667,0.0016187644521910636,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023671000000006 47.519744296240916, 10.023653899999994 47.51983389624091, 10.023584700000008 47.51991329624091)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_24_LVCableDist_mvgd_33535_lvgd_1172410000_26,BranchTee_mvgd_33535_lvgd_1172410000_24,BranchTee_mvgd_33535_lvgd_1172410000_26,0.028724996099754197,0.0035906245124692746,0.002292152812723135,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023601200000003 47.51949849624084, 10.023625900000004 47.519561496240904, 10.023617200000004 47.51964669624091, 10.023626200000006 47.51970319624092, 10.023671000000006 47.519744296240916)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_24_LVCableDist_mvgd_33535_lvgd_1172410000_building_444485,BranchTee_mvgd_33535_lvgd_1172410000_24,BranchTee_mvgd_33535_lvgd_1172410000_building_444485,0.00813625744505933,0.007062271462311499,0.00069269785932378,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023760450001218 47.519703296261106, 10.023671000000006 47.519744296240916)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_25_LVCableDist_mvgd_33535_lvgd_1172410000_30,BranchTee_mvgd_33535_lvgd_1172410000_25,BranchTee_mvgd_33535_lvgd_1172410000_30,0.07198557222088071,0.00899819652761009,0.00574419335928084,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023584700000008 47.51991329624091, 10.023456500000004 47.520052996240864, 10.023328300000003 47.52038109624093, 10.0232785 47.52052099624092)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_25_LVCableDist_mvgd_33535_lvgd_1172410000_building_444479,BranchTee_mvgd_33535_lvgd_1172410000_25,BranchTee_mvgd_33535_lvgd_1172410000_building_444479,0.018254499869284214,0.0158449058865387,0.0015541362927445066,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023411399395997 47.51979851550516, 10.023584700000008 47.51991329624091)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_26_LVCableDist_mvgd_33535_lvgd_1172410000_building_444473,BranchTee_mvgd_33535_lvgd_1172410000_26,BranchTee_mvgd_33535_lvgd_1172410000_building_444473,0.015622941983875677,0.013560713642004087,0.0013300929256044917,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023605084494255 47.519357907261956, 10.023601200000003 47.51949849624084)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_27_LVCableDist_mvgd_33535_lvgd_1172410000_30,BranchTee_mvgd_33535_lvgd_1172410000_27,BranchTee_mvgd_33535_lvgd_1172410000_30,0.05357126044182479,0.0066964075552280984,0.00427479658748859,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022711699999993 47.520253996240946, 10.023102499999993 47.52049859624096, 10.0232785 47.52052099624092)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_27_LVCableDist_mvgd_33535_lvgd_1172410000_building_444469,BranchTee_mvgd_33535_lvgd_1172410000_27,BranchTee_mvgd_33535_lvgd_1172410000_building_444469,0.05178997567044037,0.04495369888194224,0.004409251492297524,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022431927813656 47.52067975061542, 10.022711699999993 47.520253996240946)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_28_LVCableDist_mvgd_33535_lvgd_1172410000_29,BranchTee_mvgd_33535_lvgd_1172410000_28,BranchTee_mvgd_33535_lvgd_1172410000_29,0.16115341886071427,0.020144177357589284,0.01285947127855995,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0257736 47.522570596241145, 10.025455199999994 47.52233489624108, 10.025146999999993 47.52214609624112, 10.024343900000003 47.521800496241056, 10.024096799999995 47.52168429624103)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_28_LVCableDist_mvgd_33535_lvgd_1172410000_30,BranchTee_mvgd_33535_lvgd_1172410000_28,BranchTee_mvgd_33535_lvgd_1172410000_30,0.1536803646234585,0.01921004557793231,0.012263148054352274,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024096799999995 47.52168429624103, 10.023606499999998 47.521381496241, 10.023396700000003 47.52120149624101, 10.023237499999999 47.520934096240964, 10.0232358 47.520689396240954, 10.0232785 47.52052099624092)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_28_LVCableDist_mvgd_33535_lvgd_1172410000_building_444478,BranchTee_mvgd_33535_lvgd_1172410000_28,BranchTee_mvgd_33535_lvgd_1172410000_building_444478,0.04459399474838181,0.038707587441595415,0.0037966061066145034,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023533716644982 47.52180764606426, 10.024096799999995 47.52168429624103)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_28_LVCableDist_mvgd_33535_lvgd_1172410000_building_444480,BranchTee_mvgd_33535_lvgd_1172410000_28,BranchTee_mvgd_33535_lvgd_1172410000_building_444480,0.026482126175595606,0.022986485520416985,0.0022546130375110753,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023745450022174 47.5216879463493, 10.024096799999995 47.52168429624103)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_29_LVCableDist_mvgd_33535_lvgd_1172410000_building_444500,BranchTee_mvgd_33535_lvgd_1172410000_29,BranchTee_mvgd_33535_lvgd_1172410000_building_444500,0.02813268172863257,0.024419167740453072,0.0023951366512246462,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026145824403994 47.522589790464515, 10.0257736 47.522570596241145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_2_LVCableDist_mvgd_33535_lvgd_1172410000_building_444538,BranchTee_mvgd_33535_lvgd_1172410000_2,BranchTee_mvgd_33535_lvgd_1172410000_building_444538,0.02060356060091197,0.01788389060159159,0.0017541286542458248,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033094900001633 47.52445274627274, 10.032867599999998 47.52434969624131)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_2_LVStation_mvgd_33535_lvgd_1172410000,BusBar_mvgd_33535_lvgd_1172410000_LV,BranchTee_mvgd_33535_lvgd_1172410000_2,0.05555253394714067,0.014054791088626591,0.004467799872937849,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.032867599999998 47.52434969624131, 10.032560900000002 47.52450739624131, 10.032254799999993 47.52462569624129)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_31_LVStation_mvgd_33535_lvgd_1172410000,BusBar_mvgd_33535_lvgd_1172410000_LV,BranchTee_mvgd_33535_lvgd_1172410000_31,0.5067661676632287,0.06334577095790359,0.04043814288323378,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.032254799999993 47.52462569624129, 10.031882200000002 47.52475569624136, 10.031685800000005 47.524828396241325, 10.031609300000003 47.524860696241326, 10.031551100000005 47.524760296241325, 10.0314802 47.52466069624135, 10.0313493 47.52452319624132, 10.031166999999998 47.524404696241284, 10.030022699999998 47.52403959624129, 10.029444299999993 47.52388649624129, 10.029199100000001 47.523830596241226, 10.028456800000004 47.523736896241246, 10.028286899999998 47.52370669624122, 10.028090000000004 47.52360959624122, 10.027841799999996 47.52342899624123, 10.027704000000005 47.52334309624123, 10.0275791 47.52328359624117, 10.027358599999998 47.52323149624121, 10.026931500000003 47.52320839624119, 10.026664399999994 47.523165596241135, 10.026458100000003 47.52311929624116)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_32_LVCableDist_mvgd_33535_lvgd_1172410000_39,BranchTee_mvgd_33535_lvgd_1172410000_32,BranchTee_mvgd_33535_lvgd_1172410000_39,0.07103795070965041,0.031896039868633035,0.006025652210038813,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027287300000003 47.52633449624147, 10.028094099999993 47.52600379624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_32_LVCableDist_mvgd_33535_lvgd_1172410000_building_444539,BranchTee_mvgd_33535_lvgd_1172410000_32,BranchTee_mvgd_33535_lvgd_1172410000_building_444539,0.013159155847802336,0.011422147275892428,0.0011203331688841626,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027193500000049 47.52623459627073, 10.027287300000003 47.52633449624147)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_32_LVCableDist_mvgd_33535_lvgd_1172410000_building_444544,BranchTee_mvgd_33535_lvgd_1172410000_32,BranchTee_mvgd_33535_lvgd_1172410000_building_444544,0.01573485883374587,0.013657857467691414,0.001339621208460686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027283750000063 47.52619289627068, 10.027287300000003 47.52633449624147)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_33_LVCableDist_mvgd_33535_lvgd_1172410000_44,BranchTee_mvgd_33535_lvgd_1172410000_33,BranchTee_mvgd_33535_lvgd_1172410000_44,0.12606187834467306,0.056601783376758204,0.01069294691444459,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028951300000003 47.52600219624145, 10.0290118 47.52606059624142, 10.029065000000005 47.52608729624142, 10.029658600000005 47.52616739624146, 10.030097400000004 47.52618489624148, 10.030432900000003 47.52615699624144, 10.030532800000001 47.526200396241435)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_33_LVCableDist_mvgd_33535_lvgd_1172410000_building_444543,BranchTee_mvgd_33535_lvgd_1172410000_33,BranchTee_mvgd_33535_lvgd_1172410000_building_444543,0.01849336901555774,0.01605224430550412,0.0015744729336877757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.030713830594937 47.526312774943825, 10.030532800000001 47.526200396241435)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_34_LVCableDist_mvgd_33535_lvgd_1172410000_35,BranchTee_mvgd_33535_lvgd_1172410000_34,BranchTee_mvgd_33535_lvgd_1172410000_35,0.0649193061069022,0.029148768441999092,0.0055066504088229565,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.026050599999998 47.527639896241574, 10.026457499999998 47.52738559624154, 10.026677200000005 47.52723899624155)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_34_LVCableDist_mvgd_33535_lvgd_1172410000_building_444724,BranchTee_mvgd_33535_lvgd_1172410000_34,BranchTee_mvgd_33535_lvgd_1172410000_building_444724,0.022154237739309267,0.019229878357720442,0.0018861489033005548,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02600866697833 47.52744253767572, 10.026050599999998 47.527639896241574)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_35_LVCableDist_mvgd_33535_lvgd_1172410000_36,BranchTee_mvgd_33535_lvgd_1172410000_35,BranchTee_mvgd_33535_lvgd_1172410000_36,0.06387458297812823,0.028679687757179575,0.005418033857150382,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027246399999996 47.52681299624154, 10.026677200000005 47.52723899624155)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_35_LVCableDist_mvgd_33535_lvgd_1172410000_building_444736,BranchTee_mvgd_33535_lvgd_1172410000_35,BranchTee_mvgd_33535_lvgd_1172410000_building_444736,0.025780522286051388,0.022377493344292603,0.0021948804742702656,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026533583246453 47.52702839655046, 10.026677200000005 47.52723899624155)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_36_LVCableDist_mvgd_33535_lvgd_1172410000_38,BranchTee_mvgd_33535_lvgd_1172410000_36,BranchTee_mvgd_33535_lvgd_1172410000_38,0.06206849921701374,0.02786875614843917,0.005264836411306884,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027246399999996 47.52681299624154, 10.027849200000004 47.5264322962415)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_36_LVCableDist_mvgd_33535_lvgd_1172410000_building_444557,BranchTee_mvgd_33535_lvgd_1172410000_36,BranchTee_mvgd_33535_lvgd_1172410000_building_444557,0.0225088401846834,0.01953767328030519,0.0019163387487522614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02712449998683 47.52662804628386, 10.027246399999996 47.52681299624154)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_36_LVCableDist_mvgd_33535_lvgd_1172410000_building_444737,BranchTee_mvgd_33535_lvgd_1172410000_36,BranchTee_mvgd_33535_lvgd_1172410000_building_444737,0.02674992429556959,0.023218934288554406,0.0022774126091433078,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026902599992246 47.52687294628459, 10.027246399999996 47.52681299624154)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_37_LVCableDist_mvgd_33535_lvgd_1172410000_40,BranchTee_mvgd_33535_lvgd_1172410000_37,BranchTee_mvgd_33535_lvgd_1172410000_40,0.02625849675242779,0.011790065041840077,0.002227324513276942,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028436500000005 47.52590709624144, 10.028110300000003 47.52582399624143)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_37_LVCableDist_mvgd_33535_lvgd_1172410000_41,BranchTee_mvgd_33535_lvgd_1172410000_37,BranchTee_mvgd_33535_lvgd_1172410000_41,0.036214764335023776,0.016260429186425677,0.0030718450148327016,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028110300000003 47.52582399624143, 10.027769699999999 47.52592539624145, 10.027667700000007 47.52590009624144)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_37_LVCableDist_mvgd_33535_lvgd_1172410000_42,BranchTee_mvgd_33535_lvgd_1172410000_37,BranchTee_mvgd_33535_lvgd_1172410000_42,0.018810778512115458,0.00844603955193984,0.0015955866967131002,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028110300000003 47.52582399624143, 10.028019099999993 47.52566639624141)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_38_LVCableDist_mvgd_33535_lvgd_1172410000_44,BranchTee_mvgd_33535_lvgd_1172410000_38,BranchTee_mvgd_33535_lvgd_1172410000_44,0.09594348435719553,0.04307862447638079,0.008138214331642064,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.027849200000004 47.5264322962415, 10.028215100000002 47.52626519624144, 10.028951300000003 47.52600219624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_38_LVCableDist_mvgd_33535_lvgd_1172410000_building_444551,BranchTee_mvgd_33535_lvgd_1172410000_38,BranchTee_mvgd_33535_lvgd_1172410000_building_444551,0.016669223112071696,0.014468885661278233,0.0014191703303752016,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02764664998287 47.5263719963076, 10.027849200000004 47.5264322962415)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_39_LVCableDist_mvgd_33535_lvgd_1172410000_40,BranchTee_mvgd_33535_lvgd_1172410000_39,BranchTee_mvgd_33535_lvgd_1172410000_40,0.02794976320078796,0.012549443677153795,0.002370782810011585,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028436500000005 47.52590709624144, 10.028094099999993 47.52600379624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_39_LVCableDist_mvgd_33535_lvgd_1172410000_building_444517,BranchTee_mvgd_33535_lvgd_1172410000_39,BranchTee_mvgd_33535_lvgd_1172410000_building_444517,0.01474874609286539,0.012801911608607159,0.001255666369362692,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028105983326274 47.526136296283944, 10.028094099999993 47.52600379624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_3_LVCableDist_mvgd_33535_lvgd_1172410000_building_444579,BranchTee_mvgd_33535_lvgd_1172410000_3,BranchTee_mvgd_33535_lvgd_1172410000_building_444579,0.014430718454751496,0.012525863618724297,0.0012285903991620358,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034891650002276 47.5249377462482, 10.034949799999998 47.52481399624134)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_3_LVCableDist_mvgd_33535_lvgd_1172410000_building_444580,BranchTee_mvgd_33535_lvgd_1172410000_3,BranchTee_mvgd_33535_lvgd_1172410000_building_444580,0.032385985965686696,0.028111035818216053,0.0027572508984636205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03469265000355 47.52504754627692, 10.034949799999998 47.52481399624134)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_3_LVCableDist_mvgd_33535_lvgd_1172410000_building_444582,BranchTee_mvgd_33535_lvgd_1172410000_3,BranchTee_mvgd_33535_lvgd_1172410000_building_444582,0.03105963221335141,0.026959760761189024,0.00264432890562444,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.035090415394713 47.52507677248538, 10.034949799999998 47.52481399624134)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_40_LVCableDist_mvgd_33535_lvgd_1172410000_43,BranchTee_mvgd_33535_lvgd_1172410000_40,BranchTee_mvgd_33535_lvgd_1172410000_43,0.046788728603512984,0.02100813914297733,0.0039687604033932814,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028436500000005 47.52590709624144, 10.028860799999995 47.525906496241404, 10.028942799999994 47.525919896241405, 10.028997700000003 47.52598629624144)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_40_LVCableDist_mvgd_33535_lvgd_1172410000_building_444522,BranchTee_mvgd_33535_lvgd_1172410000_40,BranchTee_mvgd_33535_lvgd_1172410000_building_444522,0.014162819127523735,0.012293327002690601,0.0012057822110315534,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.028508124872255 47.52578924411839, 10.028436500000005 47.52590709624144)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_41_LVCableDist_mvgd_33535_lvgd_1172410000_building_444528,BranchTee_mvgd_33535_lvgd_1172410000_41,BranchTee_mvgd_33535_lvgd_1172410000_building_444528,0.02738939946487543,0.023773998735511875,0.002331855709531909,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027481467219946 47.526111794470765, 10.027667700000007 47.52590009624144)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_42_LVCableDist_mvgd_33535_lvgd_1172410000_building_444560,BranchTee_mvgd_33535_lvgd_1172410000_42,BranchTee_mvgd_33535_lvgd_1172410000_building_444560,0.017221928376752984,0.01494863383102159,0.0014662260874314386,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.027859331576414 47.5257772300425, 10.028019099999993 47.52566639624141)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_43_LVCableDist_mvgd_33535_lvgd_1172410000_44,BranchTee_mvgd_33535_lvgd_1172410000_43,BranchTee_mvgd_33535_lvgd_1172410000_44,0.003917494727465027,0.0017589551326317972,0.00033229366171958375,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028997700000003 47.52598629624144, 10.028951300000003 47.52600219624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_43_LVStation_mvgd_33535_lvgd_1172410000,BusBar_mvgd_33535_lvgd_1172410000_LV,BranchTee_mvgd_33535_lvgd_1172410000_43,0.28854603551872715,0.1295571699479085,0.024475340846018507,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.028997700000003 47.52598629624144, 10.029016599999995 47.52598039624144, 10.029169399999995 47.52591649624144, 10.029282999999996 47.52586899624143, 10.029607799999997 47.52575179624143, 10.030365000000002 47.52542929624145, 10.031609300000003 47.524860696241326, 10.031685800000005 47.524828396241325, 10.031882200000002 47.52475569624136, 10.032254799999993 47.52462569624129)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_45_LVCableDist_mvgd_33535_lvgd_1172410000_46,BranchTee_mvgd_33535_lvgd_1172410000_45,BranchTee_mvgd_33535_lvgd_1172410000_46,0.04330488059491309,0.03758863635638456,0.003686854587496335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0326915 47.52484589624131, 10.033040199999999 47.52515569624133)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_45_LVCableDist_mvgd_33535_lvgd_1172410000_building_444537,BranchTee_mvgd_33535_lvgd_1172410000_45,BranchTee_mvgd_33535_lvgd_1172410000_building_444537,0.018132918319462107,0.01573937310129311,0.001543785184773337,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032700100013498 47.52468279628957, 10.0326915 47.52484589624131)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_45_LVStation_mvgd_33535_lvgd_1172410000,BusBar_mvgd_33535_lvgd_1172410000_LV,BranchTee_mvgd_33535_lvgd_1172410000_45,0.04100741156721522,0.03559443324034281,0.003491254597194234,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032254799999993 47.52462569624129, 10.0326915 47.52484589624131)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_46_LVCableDist_mvgd_33535_lvgd_1172410000_47,BranchTee_mvgd_33535_lvgd_1172410000_46,BranchTee_mvgd_33535_lvgd_1172410000_47,0.020272898904962193,0.017596876249507183,0.0017259770562302202,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033040199999999 47.52515569624133, 10.033305800000003 47.52512669624137)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_46_LVCableDist_mvgd_33535_lvgd_1172410000_building_444540,BranchTee_mvgd_33535_lvgd_1172410000_46,BranchTee_mvgd_33535_lvgd_1172410000_building_444540,0.02547594726174736,0.022113122223196707,0.0021689498214162305,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033059195027278 47.52492676373816, 10.033040199999999 47.52515569624133)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_47_LVCableDist_mvgd_33535_lvgd_1172410000_building_444567,BranchTee_mvgd_33535_lvgd_1172410000_47,BranchTee_mvgd_33535_lvgd_1172410000_building_444567,0.01335512396996777,0.011592247605932023,0.0011370173384346392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033390854599727 47.52502124193437, 10.033305800000003 47.52512669624137)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_4_LVCableDist_mvgd_33535_lvgd_1172410000_building_444536,BranchTee_mvgd_33535_lvgd_1172410000_4,BranchTee_mvgd_33535_lvgd_1172410000_building_444536,0.011008563786356817,0.009555433366557717,0.0009372378664921962,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034273932575509 47.523549394451315, 10.034172499999999 47.52362069624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_4_LVCableDist_mvgd_33535_lvgd_1172410000_building_444541,BranchTee_mvgd_33535_lvgd_1172410000_4,BranchTee_mvgd_33535_lvgd_1172410000_building_444541,0.012473030511862375,0.010826590484296541,0.0010619184057522476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034010247547863 47.52364286369428, 10.034172499999999 47.52362069624127)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_5_LVCableDist_mvgd_33535_lvgd_1172410000_building_444533,BranchTee_mvgd_33535_lvgd_1172410000_5,BranchTee_mvgd_33535_lvgd_1172410000_building_444533,0.01421682833742936,0.012340206996888684,0.0012103804018260339,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033829126223912 47.523353430212, 10.033919100000006 47.5234658962412)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_6_LVCableDist_mvgd_33535_lvgd_1172410000_7,BranchTee_mvgd_33535_lvgd_1172410000_6,BranchTee_mvgd_33535_lvgd_1172410000_7,0.03783669378642163,0.009572683527964672,0.003043007468430048,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.033466598382274 47.524433546718235, 10.033783299999996 47.524697796241355)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_6_LVCableDist_mvgd_33535_lvgd_1172410000_building_444553,BranchTee_mvgd_33535_lvgd_1172410000_6,BranchTee_mvgd_33535_lvgd_1172410000_building_444553,0.03590477564161297,0.03116534525692006,0.003056830661319437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033787262085756 47.524194532182854, 10.033466598382274 47.524433546718235)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_6_LVCableDist_mvgd_33535_lvgd_1172410000_building_444554,BranchTee_mvgd_33535_lvgd_1172410000_6,BranchTee_mvgd_33535_lvgd_1172410000_building_444554,0.022798187205747625,0.019788826494588938,0.0019409729326440963,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033768722899676 47.52444409959984, 10.033466598382274 47.524433546718235)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_6_LVCableDist_mvgd_33535_lvgd_1172410000_building_444559,BranchTee_mvgd_33535_lvgd_1172410000_6,BranchTee_mvgd_33535_lvgd_1172410000_building_444559,0.026683144678050996,0.023160969580548266,0.002271727182100966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033300713830638 47.524645721101834, 10.033466598382274 47.524433546718235)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_7_LVCableDist_mvgd_33535_lvgd_1172410000_9,BranchTee_mvgd_33535_lvgd_1172410000_7,BranchTee_mvgd_33535_lvgd_1172410000_9,0.022373980452205573,0.00566061705440801,0.0017994222750773931,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.033783299999996 47.524697796241355, 10.0339359 47.52472919624133, 10.034070800000004 47.52474699624133)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_7_LVCableDist_mvgd_33535_lvgd_1172410000_building_444572,BranchTee_mvgd_33535_lvgd_1172410000_7,BranchTee_mvgd_33535_lvgd_1172410000_building_444572,0.021588707908437636,0.018738998464523867,0.0018380012990889404,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033611285273818 47.52485317875184, 10.033783299999996 47.524697796241355)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_8_LVCableDist_mvgd_33535_lvgd_1172410000_building_444556,BranchTee_mvgd_33535_lvgd_1172410000_8,BranchTee_mvgd_33535_lvgd_1172410000_building_444556,0.013410344526714118,0.011640179049187854,0.001141718659860019,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034744431048573 47.52379075853212, 10.034601899999997 47.52371849624124)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_9_LVCableDist_mvgd_33535_lvgd_1172410000_building_444565,BranchTee_mvgd_33535_lvgd_1172410000_9,BranchTee_mvgd_33535_lvgd_1172410000_building_444565,0.012908463065683622,0.011204545941013383,0.0010989898971533736,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034138750000842 47.524640346260945, 10.034070800000004 47.52474699624133)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_9_LVCableDist_mvgd_33535_lvgd_1172410000_building_444573,BranchTee_mvgd_33535_lvgd_1172410000_9,BranchTee_mvgd_33535_lvgd_1172410000_building_444573,0.017091196326856135,0.014835158411711125,0.0014550959318629778,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.034183283780319 47.52488057054176, 10.034070800000004 47.52474699624133)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_9_LVCableDist_mvgd_33535_lvgd_1172410000_building_444574,BranchTee_mvgd_33535_lvgd_1172410000_9,BranchTee_mvgd_33535_lvgd_1172410000_building_444574,0.026541251800966212,0.023037806563238672,0.002259646825392292,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033994100004797 47.52498014628227, 10.034070800000004 47.52474699624133)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410000_building_444524_LVStation_mvgd_33535_lvgd_1172410000,BusBar_mvgd_33535_lvgd_1172410000_LV,BranchTee_mvgd_33535_lvgd_1172410000_building_444524,0.5677512061632239,0.18168038597223166,0.04655308277891226,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.026318849962545 47.5268243463918, 10.026677200000005 47.52723899624155, 10.027246399999996 47.52681299624154, 10.027849200000004 47.5264322962415, 10.028215100000002 47.52626519624144, 10.028951300000003 47.52600219624145, 10.028997700000003 47.52598629624144, 10.029016599999995 47.52598039624144, 10.029169399999995 47.52591649624144, 10.029282999999996 47.52586899624143, 10.029607799999997 47.52575179624143, 10.030365000000002 47.52542929624145, 10.031609300000003 47.524860696241326, 10.031685800000005 47.524828396241325, 10.031882200000002 47.52475569624136, 10.032254799999993 47.52462569624129)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_10_LVCableDist_mvgd_33535_lvgd_1172410001_11,BranchTee_mvgd_33535_lvgd_1172410001_10,BranchTee_mvgd_33535_lvgd_1172410001_11,0.026599387500460855,0.003324923437557607,0.0021225367851804744,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0247528 47.53346429624213, 10.024579199999994 47.533435896242146, 10.024422800000005 47.53338349624211)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_10_LVCableDist_mvgd_33535_lvgd_1172410001_6,BranchTee_mvgd_33535_lvgd_1172410001_6,BranchTee_mvgd_33535_lvgd_1172410001_10,0.02080266387895153,0.002600332984868941,0.0016599787988371818,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024422800000005 47.53338349624211, 10.024402000000002 47.533196796242116)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_10_LVCableDist_mvgd_33535_lvgd_1172410001_building_444810,BranchTee_mvgd_33535_lvgd_1172410001_10,BranchTee_mvgd_33535_lvgd_1172410001_building_444810,0.014358306572382061,0.01246301010482763,0.001222425457080788,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024570450000095 47.53330179630573, 10.024422800000005 47.53338349624211)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_11_LVCableDist_mvgd_33535_lvgd_1172410001_building_444816,BranchTee_mvgd_33535_lvgd_1172410001_11,BranchTee_mvgd_33535_lvgd_1172410001_building_444816,0.02021352049931334,0.01754533579340398,0.001720921747353779,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024885782661695 47.533306290296686, 10.0247528 47.53346429624213)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_11_LVCableDist_mvgd_33535_lvgd_1172410001_building_444836,BranchTee_mvgd_33535_lvgd_1172410001_11,BranchTee_mvgd_33535_lvgd_1172410001_building_444836,0.04701038615249171,0.0408050151803628,0.004002330810413266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02520106155439 47.53316998948653, 10.0247528 47.53346429624213)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_12_LVCableDist_mvgd_33535_lvgd_1172410001_13,BranchTee_mvgd_33535_lvgd_1172410001_12,BranchTee_mvgd_33535_lvgd_1172410001_13,0.030158677798482636,0.0037698347248103295,0.0024065555275878444,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022354700000003 47.53279569624204, 10.0219546 47.53278799624207)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_12_LVCableDist_mvgd_33535_lvgd_1172410001_19,BranchTee_mvgd_33535_lvgd_1172410001_12,BranchTee_mvgd_33535_lvgd_1172410001_19,0.01768543855813967,0.002210679819767459,0.0014112352737840376,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022577099999998 47.5328417962421, 10.022473199999999 47.532808996242046, 10.022354700000003 47.53279569624204)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_12_LVCableDist_mvgd_33535_lvgd_1172410001_building_444788,BranchTee_mvgd_33535_lvgd_1172410001_12,BranchTee_mvgd_33535_lvgd_1172410001_building_444788,0.04606246921073255,0.03998222327491585,0.003921627853211237,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02215733649573 47.53318807873259, 10.022354700000003 47.53279569624204)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_13_LVCableDist_mvgd_33535_lvgd_1172410001_17,BranchTee_mvgd_33535_lvgd_1172410001_13,BranchTee_mvgd_33535_lvgd_1172410001_17,0.03371275215690746,0.004214094019613432,0.002690158056514222,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0219546 47.53278799624207, 10.021507600000001 47.53277469624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_13_LVCableDist_mvgd_33535_lvgd_1172410001_building_444774,BranchTee_mvgd_33535_lvgd_1172410001_13,BranchTee_mvgd_33535_lvgd_1172410001_building_444774,0.019589123841614094,0.017003359494521034,0.0016677623886341465,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021763569566577 47.53290758982045, 10.0219546 47.53278799624207)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_13_LVCableDist_mvgd_33535_lvgd_1172410001_building_444784,BranchTee_mvgd_33535_lvgd_1172410001_13,BranchTee_mvgd_33535_lvgd_1172410001_building_444784,0.04376213990666723,0.03798553743898716,0.003725784347099787,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021768545601912 47.533161118006184, 10.0219546 47.53278799624207)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_14_LVCableDist_mvgd_33535_lvgd_1172410001_16,BranchTee_mvgd_33535_lvgd_1172410001_14,BranchTee_mvgd_33535_lvgd_1172410001_16,0.04574533083812804,0.005718166354766005,0.0036503151605462815,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023815600000006 47.533037196242084, 10.023732100000002 47.53304719624206, 10.023518399999997 47.53307189624208, 10.023213999999996 47.533089896242096)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_14_LVCableDist_mvgd_33535_lvgd_1172410001_9,BranchTee_mvgd_33535_lvgd_1172410001_9,BranchTee_mvgd_33535_lvgd_1172410001_14,0.011827513050888486,0.0014784391313610607,0.0009437935940170803,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023815600000006 47.533037196242084, 10.023826400000004 47.53314339624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_14_LVCableDist_mvgd_33535_lvgd_1172410001_building_444804,BranchTee_mvgd_33535_lvgd_1172410001_14,BranchTee_mvgd_33535_lvgd_1172410001_building_444804,0.01872001726395831,0.01624897498511581,0.001593769122082342,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024064050001455 47.53303694630505, 10.023815600000006 47.533037196242084)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_14_LVStation_mvgd_33535_lvgd_1172410001,BusBar_mvgd_33535_lvgd_1172410001_LV,BranchTee_mvgd_33535_lvgd_1172410001_14,0.14068074493461588,0.017585093116826985,0.011225824507618472,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023815600000006 47.533037196242084, 10.023838999999994 47.53290729624206, 10.0238945 47.53277949624208, 10.024040699999995 47.532578196242056, 10.024205299999998 47.532322896242036, 10.024242799999993 47.53221619624197, 10.024231499999999 47.53182689624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_15_LVCableDist_mvgd_33535_lvgd_1172410001_5,BranchTee_mvgd_33535_lvgd_1172410001_5,BranchTee_mvgd_33535_lvgd_1172410001_15,0.24621657789443674,0.030777072236804592,0.019647209684551612,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.02333 47.53489319624225, 10.023580200000003 47.53481119624228, 10.024290899999999 47.53462489624224, 10.024421899999993 47.53455509624217, 10.024470900000004 47.53447589624225, 10.024473399999996 47.53440269624219, 10.0244336 47.53431489624215, 10.023956599999993 47.533849896242174, 10.023898699999998 47.53371819624214, 10.023877799999992 47.533620996242135, 10.023837999999998 47.533277196242096)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_15_LVCableDist_mvgd_33535_lvgd_1172410001_9,BranchTee_mvgd_33535_lvgd_1172410001_9,BranchTee_mvgd_33535_lvgd_1172410001_15,0.01489169027393131,0.0018614612842414138,0.0011883040690085765,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023837999999998 47.533277196242096, 10.023826400000004 47.53314339624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_15_LVCableDist_mvgd_33535_lvgd_1172410001_building_444785,BranchTee_mvgd_33535_lvgd_1172410001_15,BranchTee_mvgd_33535_lvgd_1172410001_building_444785,0.023259613046663456,0.02018934412450388,0.0019802574187112332,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023563765051982 47.53337332217882, 10.023837999999998 47.533277196242096)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_16_LVCableDist_mvgd_33535_lvgd_1172410001_18,BranchTee_mvgd_33535_lvgd_1172410001_16,BranchTee_mvgd_33535_lvgd_1172410001_18,0.0179299796961525,0.0022412474620190624,0.00143074878930815,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023213999999996 47.533089896242096, 10.023086000000001 47.533081296242074, 10.022984999999997 47.53305289624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_16_LVCableDist_mvgd_33535_lvgd_1172410001_building_444780,BranchTee_mvgd_33535_lvgd_1172410001_16,BranchTee_mvgd_33535_lvgd_1172410001_building_444780,0.024520538123194307,0.02128382709093266,0.0020876089998501735,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023191150010735 47.53331004628796, 10.023213999999996 47.533089896242096)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_16_LVCableDist_mvgd_33535_lvgd_1172410001_building_444800,BranchTee_mvgd_33535_lvgd_1172410001_16,BranchTee_mvgd_33535_lvgd_1172410001_building_444800,0.024161976944913264,0.02097259598818471,0.0020570821191179625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023260251408209 47.53287470238051, 10.023213999999996 47.533089896242096)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_17_LVCableDist_mvgd_33535_lvgd_1172410001_20,BranchTee_mvgd_33535_lvgd_1172410001_17,BranchTee_mvgd_33535_lvgd_1172410001_20,0.3006149947962143,0.037576874349526786,0.023988010423952308,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021507600000001 47.53277469624206, 10.021207099999996 47.532752896242066, 10.020834300000004 47.532736096242, 10.020482300000001 47.53272089624208, 10.020213600000002 47.53270229624207, 10.019785199999998 47.53264559624204, 10.019025400000002 47.53249219624201, 10.018183000000002 47.53229859624201, 10.017919699999997 47.53218669624201, 10.017812100000006 47.53214729624202, 10.017762300000001 47.53213609624203, 10.0176755 47.532138396242)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_17_LVCableDist_mvgd_33535_lvgd_1172410001_building_444777,BranchTee_mvgd_33535_lvgd_1172410001_17,BranchTee_mvgd_33535_lvgd_1172410001_building_444777,0.023109854187625952,0.020059353434859328,0.001967507374631317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02171985000221 47.53262454627628, 10.021507600000001 47.53277469624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_17_LVCableDist_mvgd_33535_lvgd_1172410001_building_444782,BranchTee_mvgd_33535_lvgd_1172410001_17,BranchTee_mvgd_33535_lvgd_1172410001_building_444782,0.046918657005385785,0.04072539428067486,0.003994521251255763,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02151552483215 47.53319694858947, 10.021507600000001 47.53277469624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_18_LVCableDist_mvgd_33535_lvgd_1172410001_19,BranchTee_mvgd_33535_lvgd_1172410001_18,BranchTee_mvgd_33535_lvgd_1172410001_19,0.03866155126274646,0.004832693907843307,0.003085054673755109,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.022984999999997 47.53305289624206, 10.022577099999998 47.5328417962421)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_18_LVCableDist_mvgd_33535_lvgd_1172410001_building_444792,BranchTee_mvgd_33535_lvgd_1172410001_18,BranchTee_mvgd_33535_lvgd_1172410001_building_444792,0.021998461158821984,0.01909466428585748,0.0018728865275012437,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022910708342154 47.53286141899801, 10.022984999999997 47.53305289624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_18_LVCableDist_mvgd_33535_lvgd_1172410001_building_444797,BranchTee_mvgd_33535_lvgd_1172410001_18,BranchTee_mvgd_33535_lvgd_1172410001_building_444797,0.022207575436522502,0.019276175478901533,0.0018906899234108886,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023008665640344 47.53285366443409, 10.022984999999997 47.53305289624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_18_LVCableDist_mvgd_33535_lvgd_1172410001_building_444812,BranchTee_mvgd_33535_lvgd_1172410001_18,BranchTee_mvgd_33535_lvgd_1172410001_building_444812,0.024098543863513903,0.020917536073530068,0.002051681606659703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022818978555131 47.53323828346944, 10.022984999999997 47.53305289624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_19_LVCableDist_mvgd_33535_lvgd_1172410001_building_444789,BranchTee_mvgd_33535_lvgd_1172410001_19,BranchTee_mvgd_33535_lvgd_1172410001_building_444789,0.019114362566867774,0.016591266708041227,0.001627342561591148,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022449493074342 47.53299048450487, 10.022577099999998 47.5328417962421)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_1_LVCableDist_mvgd_33535_lvgd_1172410001_2,BranchTee_mvgd_33535_lvgd_1172410001_1,BranchTee_mvgd_33535_lvgd_1172410001_2,0.07147027186854482,0.008933783983568103,0.005703074218728057,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021285399999998 47.53544639624225, 10.021432199999998 47.535491296242284, 10.021719799999998 47.53548469624231, 10.022000900000004 47.53557539624229, 10.022188299999998 47.535589096242326)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_1_LVCableDist_mvgd_33535_lvgd_1172410001_3,BranchTee_mvgd_33535_lvgd_1172410001_1,BranchTee_mvgd_33535_lvgd_1172410001_3,0.06860229785729077,0.008575287232161347,0.005474220064183226,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021285599999999 47.53580619624231, 10.021120800000006 47.53571769624229, 10.021092200000005 47.5356475962423, 10.020937299999991 47.5355465962423, 10.021183400000002 47.53547579624229, 10.021285399999998 47.53544639624225)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_1_LVCableDist_mvgd_33535_lvgd_1172410001_5,BranchTee_mvgd_33535_lvgd_1172410001_1,BranchTee_mvgd_33535_lvgd_1172410001_5,0.17278054102293566,0.021597567627866958,0.013787274390367485,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021285399999998 47.53544639624225, 10.021343699999996 47.5354294962423, 10.021570000000004 47.53538669624228, 10.021769 47.53537319624225, 10.022241400000004 47.5353715962423, 10.022338499999996 47.535363196242294, 10.022501900000004 47.535330396242294, 10.022653200000002 47.53526479624224, 10.023191200000003 47.53494229624227, 10.02333 47.53489319624225)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_20_LVCableDist_mvgd_33535_lvgd_1172410001_21,BranchTee_mvgd_33535_lvgd_1172410001_20,BranchTee_mvgd_33535_lvgd_1172410001_21,0.1461356403827485,0.018266955047843564,0.011661105818053701,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.0176755 47.532138396242, 10.017503300000005 47.532164396242, 10.017478799999997 47.53215609624201, 10.017242299999996 47.531958096242, 10.016696599999998 47.531632396241946, 10.016207400000006 47.53135999624193)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_20_LVCableDist_mvgd_33535_lvgd_1172410001_building_431675,BranchTee_mvgd_33535_lvgd_1172410001_20,BranchTee_mvgd_33535_lvgd_1172410001_building_431675,0.021532033771561893,0.018689805313715724,0.0018331762239781853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017716706421114 47.53233016764943, 10.0176755 47.532138396242)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_21_LVCableDist_mvgd_33535_lvgd_1172410001_building_431660,BranchTee_mvgd_33535_lvgd_1172410001_21,BranchTee_mvgd_33535_lvgd_1172410001_building_431660,0.013299647714027422,0.011544094215775801,0.0011322942475058347,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.016183047684585 47.531478553805414, 10.016207400000006 47.53135999624193)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_22_LVCableDist_mvgd_33535_lvgd_1172410001_27,BranchTee_mvgd_33535_lvgd_1172410001_22,BranchTee_mvgd_33535_lvgd_1172410001_27,0.014802307402792708,0.0030492753249752977,0.0011904721969354594,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0238945 47.53277949624208, 10.023838999999994 47.53290729624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_22_LVCableDist_mvgd_33535_lvgd_1172410001_building_444805,BranchTee_mvgd_33535_lvgd_1172410001_22,BranchTee_mvgd_33535_lvgd_1172410001_building_444805,0.020468400360345244,0.01776657151277967,0.0017426214950957528,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023594730660419 47.53282669055229, 10.023838999999994 47.53290729624206)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_23_LVCableDist_mvgd_33535_lvgd_1172410001_25,BranchTee_mvgd_33535_lvgd_1172410001_23,BranchTee_mvgd_33535_lvgd_1172410001_25,0.033255014491525174,0.006850532985254186,0.0026745269560728984,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.026011699999996 47.532519496242045, 10.026436499999999 47.532600696242)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_23_LVCableDist_mvgd_33535_lvgd_1172410001_26,BranchTee_mvgd_33535_lvgd_1172410001_23,BranchTee_mvgd_33535_lvgd_1172410001_26,0.010019077349475278,0.002063929933991907,0.0008057820107996013,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.026436499999999 47.532600696242, 10.026534700000001 47.53266149624205)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_23_LVCableDist_mvgd_33535_lvgd_1172410001_building_444831,BranchTee_mvgd_33535_lvgd_1172410001_23,BranchTee_mvgd_33535_lvgd_1172410001_building_444831,0.026114182702329757,0.02266711058562223,0.0022232873748210162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026228582946596 47.532788744721394, 10.026436499999999 47.532600696242)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_23_LVCableDist_mvgd_33535_lvgd_1172410001_building_444834,BranchTee_mvgd_33535_lvgd_1172410001_23,BranchTee_mvgd_33535_lvgd_1172410001_building_444834,0.019166225488578537,0.01663628372408617,0.0016317580235022185,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02630066737157 47.53245484764815, 10.026436499999999 47.532600696242)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_24_LVCableDist_mvgd_33535_lvgd_1172410001_27,BranchTee_mvgd_33535_lvgd_1172410001_24,BranchTee_mvgd_33535_lvgd_1172410001_27,0.05588938035169597,0.01151321235244937,0.004494890668200289,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0238945 47.53277949624208, 10.024040699999995 47.532578196242056, 10.024205299999998 47.532322896242036)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_24_LVCableDist_mvgd_33535_lvgd_1172410001_29,BranchTee_mvgd_33535_lvgd_1172410001_24,BranchTee_mvgd_33535_lvgd_1172410001_29,0.012187075311220682,0.00251053751411146,0.0009801427524217968,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024205299999998 47.532322896242036, 10.024242799999993 47.53221619624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_24_LVCableDist_mvgd_33535_lvgd_1172410001_building_444779,BranchTee_mvgd_33535_lvgd_1172410001_24,BranchTee_mvgd_33535_lvgd_1172410001_building_444779,0.02150437838945776,0.018665800442049334,0.001830821723261895,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023920531161512 47.53233576442544, 10.024205299999998 47.532322896242036)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_24_LVCableDist_mvgd_33535_lvgd_1172410001_building_444791,BranchTee_mvgd_33535_lvgd_1172410001_24,BranchTee_mvgd_33535_lvgd_1172410001_building_444791,0.02908943345295106,0.02524962823716152,0.0024765917767310543,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024434744391764 47.53253345677438, 10.024205299999998 47.532322896242036)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_25_LVCableDist_mvgd_33535_lvgd_1172410001_30,BranchTee_mvgd_33535_lvgd_1172410001_25,BranchTee_mvgd_33535_lvgd_1172410001_30,0.03815154083157217,0.007859217411303866,0.003068328970229713,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.025568799999995 47.532395296242015, 10.025712999999996 47.53238219624202, 10.026011699999996 47.532519496242045)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_25_LVCableDist_mvgd_33535_lvgd_1172410001_building_444825,BranchTee_mvgd_33535_lvgd_1172410001_25,BranchTee_mvgd_33535_lvgd_1172410001_building_444825,0.03007627962932955,0.02610621071825805,0.0025606090584450614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02580835806804 47.532752439202774, 10.026011699999996 47.532519496242045)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_25_LVCableDist_mvgd_33535_lvgd_1172410001_building_444828,BranchTee_mvgd_33535_lvgd_1172410001_25,BranchTee_mvgd_33535_lvgd_1172410001_building_444828,0.02259123587189787,0.019609192736807352,0.001923353683633118,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02608086790615 47.532717341387986, 10.026011699999996 47.532519496242045)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_25_LVCableDist_mvgd_33535_lvgd_1172410001_building_444829,BranchTee_mvgd_33535_lvgd_1172410001_25,BranchTee_mvgd_33535_lvgd_1172410001_building_444829,0.031963873404260844,0.027744642114898414,0.0027213134333984113,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02566063774941 47.53268100349012, 10.026011699999996 47.532519496242045)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_26_LVCableDist_mvgd_33535_lvgd_1172410001_building_444832,BranchTee_mvgd_33535_lvgd_1172410001_26,BranchTee_mvgd_33535_lvgd_1172410001_building_444832,0.025094933255120626,0.021782402065444705,0.002136511370624217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026376283423089 47.532860176047116, 10.026534700000001 47.53266149624205)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_27_LVCableDist_mvgd_33535_lvgd_1172410001_28,BranchTee_mvgd_33535_lvgd_1172410001_27,BranchTee_mvgd_33535_lvgd_1172410001_28,0.08945248735764665,0.01842721239567521,0.007194195894479783,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.0238945 47.53277949624208, 10.0248298 47.532682496242046, 10.025053999999999 47.532622496242034)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_28_LVCableDist_mvgd_33535_lvgd_1172410001_30,BranchTee_mvgd_33535_lvgd_1172410001_28,BranchTee_mvgd_33535_lvgd_1172410001_30,0.046279586245214006,0.009533594766514084,0.003722025168873973,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.025053999999999 47.532622496242034, 10.025568799999995 47.532395296242015)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_28_LVCableDist_mvgd_33535_lvgd_1172410001_building_444793,BranchTee_mvgd_33535_lvgd_1172410001_28,BranchTee_mvgd_33535_lvgd_1172410001_building_444793,0.03046247606965281,0.02644142922845864,0.002593488726928614,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024876792416991 47.532376063817566, 10.025053999999999 47.532622496242034)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_28_LVCableDist_mvgd_33535_lvgd_1172410001_building_444830,BranchTee_mvgd_33535_lvgd_1172410001_28,BranchTee_mvgd_33535_lvgd_1172410001_building_444830,0.021657096210992228,0.018798359511141255,0.0018438236850080486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025128888734445 47.53281068586293, 10.025053999999999 47.532622496242034)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_29_LVCableDist_mvgd_33535_lvgd_1172410001_building_444786,BranchTee_mvgd_33535_lvgd_1172410001_29,BranchTee_mvgd_33535_lvgd_1172410001_building_444786,0.024911338736844195,0.02162304202358076,0.002120880654579103,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0245324925101 47.532108144954805, 10.024242799999993 47.53221619624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_29_LVStation_mvgd_33535_lvgd_1172410001,BusBar_mvgd_33535_lvgd_1172410001_LV,BranchTee_mvgd_33535_lvgd_1172410001_29,0.04326200913633915,0.008911973882085865,0.003479337218105794,0.1905255888325765,1,cable,NAYY 4x1x150,"LINESTRING (10.024231499999999 47.53182689624196, 10.024242799999993 47.53221619624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_2_LVCableDist_mvgd_33535_lvgd_1172410001_building_444814,BranchTee_mvgd_33535_lvgd_1172410001_2,BranchTee_mvgd_33535_lvgd_1172410001_building_444814,0.017298400514090338,0.015015011646230413,0.0014727367080932352,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022185956188512 47.53574478042795, 10.022188299999998 47.535589096242326)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_30_LVCableDist_mvgd_33535_lvgd_1172410001_building_444824,BranchTee_mvgd_33535_lvgd_1172410001_30,BranchTee_mvgd_33535_lvgd_1172410001_building_444824,0.024180253974555015,0.020988460449913753,0.002058638173531571,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025512962372984 47.53260960894123, 10.025568799999995 47.532395296242015)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_31_LVCableDist_mvgd_33535_lvgd_1172410001_34,BranchTee_mvgd_33535_lvgd_1172410001_31,BranchTee_mvgd_33535_lvgd_1172410001_34,0.015539848898288529,0.002548535219319319,0.0012497888035010222,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022702400000004 47.530412696241854, 10.022908600000001 47.53041019624186)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_31_LVCableDist_mvgd_33535_lvgd_1172410001_36,BranchTee_mvgd_33535_lvgd_1172410001_31,BranchTee_mvgd_33535_lvgd_1172410001_36,0.008125874791880752,0.0013326434658684433,0.0006535216268841744,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022594599999998 47.53041069624181, 10.022702400000004 47.530412696241854)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_31_LVCableDist_mvgd_33535_lvgd_1172410001_building_444695,BranchTee_mvgd_33535_lvgd_1172410001_31,BranchTee_mvgd_33535_lvgd_1172410001_building_444695,0.017988296949537637,0.01561384175219867,0.0015314725319307224,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022746265472223 47.53057184138532, 10.022702400000004 47.530412696241854)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_32_LVCableDist_mvgd_33535_lvgd_1172410001_39,BranchTee_mvgd_33535_lvgd_1172410001_32,BranchTee_mvgd_33535_lvgd_1172410001_39,0.04974629853070117,0.008158392959034992,0.004000834713787789,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021962399999994 47.53094039624191, 10.022406499999997 47.53060909624184)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_32_LVCableDist_mvgd_33535_lvgd_1172410001_building_444672,BranchTee_mvgd_33535_lvgd_1172410001_32,BranchTee_mvgd_33535_lvgd_1172410001_building_444672,0.03449671872867148,0.029943151856486844,0.0029369526933486845,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021744137328747 47.53066746888636, 10.021962399999994 47.53094039624191)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_32_LVCableDist_mvgd_33535_lvgd_1172410001_building_444676,BranchTee_mvgd_33535_lvgd_1172410001_32,BranchTee_mvgd_33535_lvgd_1172410001_building_444676,0.02594234653046049,0.022517956788439705,0.002208657731006032,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02190179124684 47.530710551341215, 10.021962399999994 47.53094039624191)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_32_LVCableDist_mvgd_33535_lvgd_1172410001_building_444680,BranchTee_mvgd_33535_lvgd_1172410001_32,BranchTee_mvgd_33535_lvgd_1172410001_building_444680,0.015273327949570622,0.0132572486602273,0.0013003277793086695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022163302913699 47.53095864914782, 10.021962399999994 47.53094039624191)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_32_LVCableDist_mvgd_33535_lvgd_1172410001_building_444697,BranchTee_mvgd_33535_lvgd_1172410001_32,BranchTee_mvgd_33535_lvgd_1172410001_building_444697,0.03159433067154663,0.027423879022902473,0.0026898516142993562,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022380840490921 47.53095859185789, 10.021962399999994 47.53094039624191)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_33_LVCableDist_mvgd_33535_lvgd_1172410001_34,BranchTee_mvgd_33535_lvgd_1172410001_33,BranchTee_mvgd_33535_lvgd_1172410001_34,0.029982156038887178,0.004917073590377497,0.0024113080614541005,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022908600000001 47.53041019624186, 10.023022700000002 47.53036869624185, 10.023151199999997 47.53034789624187, 10.023287500000004 47.53034639624186)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_33_LVCableDist_mvgd_33535_lvgd_1172410001_38,BranchTee_mvgd_33535_lvgd_1172410001_33,BranchTee_mvgd_33535_lvgd_1172410001_38,0.036682092363606734,0.006015863147631505,0.0029501489123279147,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.023287500000004 47.53034639624186, 10.023773699999994 47.53036299624181)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_33_LVCableDist_mvgd_33535_lvgd_1172410001_building_444689,BranchTee_mvgd_33535_lvgd_1172410001_33,BranchTee_mvgd_33535_lvgd_1172410001_building_444689,0.01413753301439482,0.012271378656494704,0.0012036294231492508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023338359923805 47.530223916606225, 10.023287500000004 47.53034639624186)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_34_LVCableDist_mvgd_33535_lvgd_1172410001_48,BranchTee_mvgd_33535_lvgd_1172410001_34,BranchTee_mvgd_33535_lvgd_1172410001_48,0.025279377229459256,0.004145817865631318,0.0020330881482596938,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022908600000001 47.53041019624186, 10.023078500000006 47.53050519624183, 10.023149500000004 47.53056679624188)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_34_LVCableDist_mvgd_33535_lvgd_1172410001_building_444694,BranchTee_mvgd_33535_lvgd_1172410001_34,BranchTee_mvgd_33535_lvgd_1172410001_building_444694,0.010331092726022749,0.008967388486187746,0.0008795599038151193,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022818742452642 47.53033996650974, 10.022908600000001 47.53041019624186)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_35_LVCableDist_mvgd_33535_lvgd_1172410001_36,BranchTee_mvgd_33535_lvgd_1172410001_35,BranchTee_mvgd_33535_lvgd_1172410001_36,0.016309503747762345,0.0026747586146330248,0.0013116881192362338,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022594599999998 47.53041069624181, 10.022485800000002 47.5305375962419)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_35_LVCableDist_mvgd_33535_lvgd_1172410001_39,BranchTee_mvgd_33535_lvgd_1172410001_35,BranchTee_mvgd_33535_lvgd_1172410001_39,0.009940421321588162,0.0016302290967404587,0.0007994561176957111,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022406499999997 47.53060909624184, 10.022485800000002 47.5305375962419)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_35_LVCableDist_mvgd_33535_lvgd_1172410001_building_444690,BranchTee_mvgd_33535_lvgd_1172410001_35,BranchTee_mvgd_33535_lvgd_1172410001_building_444690,0.01462545959745246,0.012694898930588734,0.0012451701071644098,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022339299999864 47.530451246287384, 10.022485800000002 47.5305375962419)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_36_LVCableDist_mvgd_33535_lvgd_1172410001_37,BranchTee_mvgd_33535_lvgd_1172410001_36,BranchTee_mvgd_33535_lvgd_1172410001_37,0.026927996985050516,0.0044161915055482845,0.002165678016105544,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022594599999998 47.53041069624181, 10.022656499999995 47.53017199624183)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_36_LVCableDist_mvgd_33535_lvgd_1172410001_building_444677,BranchTee_mvgd_33535_lvgd_1172410001_36,BranchTee_mvgd_33535_lvgd_1172410001_building_444677,0.025449377946577506,0.022090060057629275,0.0021666877853552856,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022313884404612 47.53028333195213, 10.022594599999998 47.53041069624181)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_37_LVCableDist_mvgd_33535_lvgd_1172410001_building_444658,BranchTee_mvgd_33535_lvgd_1172410001_37,BranchTee_mvgd_33535_lvgd_1172410001_building_444658,0.04752216663017413,0.04124924063499115,0.00404590234729348,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022028099996175 47.530208296275156, 10.022656499999995 47.53017199624183)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_37_LVCableDist_mvgd_33535_lvgd_1172410001_building_444682,BranchTee_mvgd_33535_lvgd_1172410001_37,BranchTee_mvgd_33535_lvgd_1172410001_building_444682,0.01988052820591189,0.01725629848273152,0.0016925717288879094,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022920018948575 47.53016320000133, 10.022656499999995 47.53017199624183)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_38_LVCableDist_mvgd_33535_lvgd_1172410001_45,BranchTee_mvgd_33535_lvgd_1172410001_38,BranchTee_mvgd_33535_lvgd_1172410001_45,0.03408649719595627,0.005590185540136829,0.002741398762942088,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.023773699999994 47.53036299624181, 10.023925699999994 47.53036119624183, 10.024173499999998 47.530246096241804)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_38_LVCableDist_mvgd_33535_lvgd_1172410001_building_444688,BranchTee_mvgd_33535_lvgd_1172410001_38,BranchTee_mvgd_33535_lvgd_1172410001_building_444688,0.04214533009190794,0.03658214651977609,0.0035881337497360665,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02361737482702 47.529998788886545, 10.023773699999994 47.53036299624181)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_38_LVCableDist_mvgd_33535_lvgd_1172410001_building_444705,BranchTee_mvgd_33535_lvgd_1172410001_38,BranchTee_mvgd_33535_lvgd_1172410001_building_444705,0.017949566959711685,0.015580224121029742,0.0015281751705547794,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023839850000005 47.53020779629402, 10.023773699999994 47.53036299624181)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_39_LVCableDist_mvgd_33535_lvgd_1172410001_building_444700,BranchTee_mvgd_33535_lvgd_1172410001_39,BranchTee_mvgd_33535_lvgd_1172410001_building_444700,0.026064313206588956,0.022623823863319212,0.0022190416275375173,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022564585355173 47.53081775283588, 10.022406499999997 47.53060909624184)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_3_LVCableDist_mvgd_33535_lvgd_1172410001_4,BranchTee_mvgd_33535_lvgd_1172410001_3,BranchTee_mvgd_33535_lvgd_1172410001_4,0.029356205997295104,0.003669525749661888,0.002342521123898622,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.021602099999997 47.53596029624237, 10.021285599999999 47.53580619624231)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_3_LVCableDist_mvgd_33535_lvgd_1172410001_building_444802,BranchTee_mvgd_33535_lvgd_1172410001_3,BranchTee_mvgd_33535_lvgd_1172410001_building_444802,0.016273942760918036,0.014125782316476855,0.0013855172835135685,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021388740363877 47.53567750148069, 10.021285599999999 47.53580619624231)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_40_LVCableDist_mvgd_33535_lvgd_1172410001_42,BranchTee_mvgd_33535_lvgd_1172410001_40,BranchTee_mvgd_33535_lvgd_1172410001_42,0.0879333425234239,0.01442106817384152,0.007072019017655897,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.024199900000001 47.530313296241815, 10.023779701908213 47.53054824706426, 10.023359499999996 47.5307831962419, 10.023284700000001 47.53079769624187)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_40_LVCableDist_mvgd_33535_lvgd_1172410001_building_444715,BranchTee_mvgd_33535_lvgd_1172410001_40,BranchTee_mvgd_33535_lvgd_1172410001_building_444715,0.010303979797411654,0.008943854464153316,0.0008772515860491533,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023177349995459 47.53085514625857, 10.023284700000001 47.53079769624187)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_40_LVCableDist_mvgd_33535_lvgd_1172410001_building_444716,BranchTee_mvgd_33535_lvgd_1172410001_40,BranchTee_mvgd_33535_lvgd_1172410001_building_444716,0.026511060388067654,0.023011600416842724,0.0022570764142141784,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023253432621287 47.53103536268353, 10.023284700000001 47.53079769624187)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_41_LVCableDist_mvgd_33535_lvgd_1172410001_44,BranchTee_mvgd_33535_lvgd_1172410001_41,BranchTee_mvgd_33535_lvgd_1172410001_44,0.09720849583648722,0.015942193317183904,0.007817971107492409,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.024279300000002 47.53165939624193, 10.024456900000004 47.5312387962419, 10.024472000000001 47.531082396241864, 10.024457499999999 47.53094269624185, 10.024401999999995 47.5308071962419)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_41_LVCableDist_mvgd_33535_lvgd_1172410001_building_444763,BranchTee_mvgd_33535_lvgd_1172410001_41,BranchTee_mvgd_33535_lvgd_1172410001_building_444763,0.026248095219866343,0.022783346650843986,0.0022346883063746976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023968693346138 47.53155244230253, 10.024279300000002 47.53165939624193)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_41_LVStation_mvgd_33535_lvgd_1172410001,BusBar_mvgd_33535_lvgd_1172410001_LV,BranchTee_mvgd_33535_lvgd_1172410001_41,0.01895555896017922,0.0031087116694693924,0.0015244965062140728,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.024231499999999 47.53182689624196, 10.024279300000002 47.53165939624193)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_42_LVCableDist_mvgd_33535_lvgd_1172410001_44,BranchTee_mvgd_33535_lvgd_1172410001_42,BranchTee_mvgd_33535_lvgd_1172410001_44,0.0569492471261258,0.00933967652868463,0.004580130211812005,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.024401999999995 47.5308071962419, 10.024199900000001 47.530313296241815)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_42_LVCableDist_mvgd_33535_lvgd_1172410001_45,BranchTee_mvgd_33535_lvgd_1172410001_42,BranchTee_mvgd_33535_lvgd_1172410001_45,0.007726804824156251,0.0012671959911616253,0.0006214265157450611,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.024199900000001 47.530313296241815, 10.024173499999998 47.530246096241804)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_42_LVCableDist_mvgd_33535_lvgd_1172410001_building_444713,BranchTee_mvgd_33535_lvgd_1172410001_42,BranchTee_mvgd_33535_lvgd_1172410001_building_444713,0.024194746979380042,0.021001040378101875,0.0020598720668154615,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024508579159939 47.53025332867372, 10.024199900000001 47.530313296241815)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_42_LVCableDist_mvgd_33535_lvgd_1172410001_building_444727,BranchTee_mvgd_33535_lvgd_1172410001_42,BranchTee_mvgd_33535_lvgd_1172410001_building_444727,0.023682310824759203,0.02055624579589099,0.0020162447074622354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024471849987346 47.53042014626693, 10.024199900000001 47.530313296241815)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_42_LVCableDist_mvgd_33535_lvgd_1172410001_building_444728,BranchTee_mvgd_33535_lvgd_1172410001_42,BranchTee_mvgd_33535_lvgd_1172410001_building_444728,0.03735686707728709,0.03242576062308519,0.003180457603537773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024693000000003 47.53034814624642, 10.024199900000001 47.530313296241815)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_43_LVCableDist_mvgd_33535_lvgd_1172410001_44,BranchTee_mvgd_33535_lvgd_1172410001_43,BranchTee_mvgd_33535_lvgd_1172410001_44,0.038226835258426635,0.006269200982381968,0.003074384507337226,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.024401999999995 47.5308071962419, 10.024146 47.53086109624187, 10.023978400000006 47.530860196241875, 10.023910000000003 47.5308746962419)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_43_LVCableDist_mvgd_33535_lvgd_1172410001_building_444721,BranchTee_mvgd_33535_lvgd_1172410001_43,BranchTee_mvgd_33535_lvgd_1172410001_building_444721,0.014480615274926079,0.012569174058635836,0.0012328384727702507,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023718119901742 47.53088194320358, 10.023910000000003 47.5308746962419)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_44_LVCableDist_mvgd_33535_lvgd_1172410001_building_444729,BranchTee_mvgd_33535_lvgd_1172410001_44,BranchTee_mvgd_33535_lvgd_1172410001_building_444729,0.04792123471273122,0.0415956317306507,0.004079877870853099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024839099996356 47.53049389625418, 10.024401999999995 47.5308071962419)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_45_LVCableDist_mvgd_33535_lvgd_1172410001_46,BranchTee_mvgd_33535_lvgd_1172410001_45,BranchTee_mvgd_33535_lvgd_1172410001_46,0.023268730068859697,0.0038160717312929904,0.0018713823089329547,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.024173499999998 47.530246096241804, 10.024169200000003 47.53014369624181, 10.024182600000003 47.53003709624181)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_45_LVCableDist_mvgd_33535_lvgd_1172410001_building_444706,BranchTee_mvgd_33535_lvgd_1172410001_45,BranchTee_mvgd_33535_lvgd_1172410001_building_444706,0.012752921487287119,0.011069535850965219,0.0010857475287648802,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024334011198608 47.530209696523535, 10.024173499999998 47.530246096241804)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_46_LVCableDist_mvgd_33535_lvgd_1172410001_47,BranchTee_mvgd_33535_lvgd_1172410001_46,BranchTee_mvgd_33535_lvgd_1172410001_47,0.014639018147194097,0.002400798976139832,0.0011773396957950116,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.024182600000003 47.53003709624181, 10.024203400000001 47.52990609624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_46_LVCableDist_mvgd_33535_lvgd_1172410001_building_444703,BranchTee_mvgd_33535_lvgd_1172410001_46,BranchTee_mvgd_33535_lvgd_1172410001_building_444703,0.016224629559294292,0.014082978457467445,0.001381318897531828,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023974247567843 47.53000025216932, 10.024182600000003 47.53003709624181)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_47_LVCableDist_mvgd_33535_lvgd_1172410001_building_444698,BranchTee_mvgd_33535_lvgd_1172410001_47,BranchTee_mvgd_33535_lvgd_1172410001_building_444698,0.03845644190409426,0.03338019157275381,0.0032740722825027515,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023711000017734 47.52981508846211, 10.024203400000001 47.52990609624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_47_LVCableDist_mvgd_33535_lvgd_1172410001_building_444699,BranchTee_mvgd_33535_lvgd_1172410001_47,BranchTee_mvgd_33535_lvgd_1172410001_building_444699,0.016280305429846664,0.014131305113106904,0.0013860589830819766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024095249999997 47.52977924626325, 10.024203400000001 47.52990609624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_48_LVCableDist_mvgd_33535_lvgd_1172410001_building_444709,BranchTee_mvgd_33535_lvgd_1172410001_48,BranchTee_mvgd_33535_lvgd_1172410001_building_444709,0.020226860989789854,0.017556915339137592,0.0017220575188381267,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02340487560998 47.53051070075466, 10.023149500000004 47.53056679624188)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_49_LVCableDist_mvgd_33535_lvgd_1172410001_57,BranchTee_mvgd_33535_lvgd_1172410001_49,BranchTee_mvgd_33535_lvgd_1172410001_57,0.05756017292886484,0.009439868360333835,0.004629263780164605,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022746651437075 47.53161619785081, 10.022154699999998 47.531741796241896, 10.022056 47.53181259624192)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_49_LVCableDist_mvgd_33535_lvgd_1172410001_58,BranchTee_mvgd_33535_lvgd_1172410001_49,BranchTee_mvgd_33535_lvgd_1172410001_58,0.046734924737245796,0.007664527656908311,0.003758645663247444,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.023338599999995 47.53149059624197, 10.022746651437075 47.53161619785081)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_49_LVCableDist_mvgd_33535_lvgd_1172410001_building_444733,BranchTee_mvgd_33535_lvgd_1172410001_49,BranchTee_mvgd_33535_lvgd_1172410001_building_444733,0.023740847960776072,0.020607056029953632,0.002021228393030648,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022514640290195 47.531471628086614, 10.022746651437075 47.53161619785081)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_4_LVCableDist_mvgd_33535_lvgd_1172410001_building_444835,BranchTee_mvgd_33535_lvgd_1172410001_4,BranchTee_mvgd_33535_lvgd_1172410001_building_444835,0.011281057538330799,0.009791957943271134,0.0009604372109015969,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021459292485511 47.535990812025574, 10.021602099999997 47.53596029624237)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_50_LVCableDist_mvgd_33535_lvgd_1172410001_53,BranchTee_mvgd_33535_lvgd_1172410001_50,BranchTee_mvgd_33535_lvgd_1172410001_53,0.022090285514293193,0.0036228068243440836,0.0017766061743975557,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020552900000006 47.531431296241905, 10.020682199999998 47.53137029624191, 10.020810600000003 47.531340596241954)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_50_LVCableDist_mvgd_33535_lvgd_1172410001_54,BranchTee_mvgd_33535_lvgd_1172410001_50,BranchTee_mvgd_33535_lvgd_1172410001_54,0.03904070341675169,0.006402675360347278,0.0031398396683531534,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020810600000003 47.531340596241954, 10.021188699999998 47.53133329624191, 10.021325800000003 47.53131449624192)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_50_LVCableDist_mvgd_33535_lvgd_1172410001_building_444683,BranchTee_mvgd_33535_lvgd_1172410001_50,BranchTee_mvgd_33535_lvgd_1172410001_building_444683,0.016972000520480444,0.014731696451777026,0.0014449479393155013,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020849999999394 47.53119019626213, 10.020810600000003 47.531340596241954)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_51_LVCableDist_mvgd_33535_lvgd_1172410001_52,BranchTee_mvgd_33535_lvgd_1172410001_51,BranchTee_mvgd_33535_lvgd_1172410001_52,0.13841387045360162,0.022699874754390666,0.011131903963442283,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.014662900000001 47.5287874962417, 10.014705799999994 47.52882909624169, 10.014801399999998 47.52886679624174, 10.014978500000003 47.528924696241695, 10.0152013 47.52898359624173, 10.015249599999994 47.5290287962417, 10.015440599999996 47.529215096241764, 10.015546 47.52932439624176, 10.015644100000006 47.529400596241764, 10.015768800000002 47.52947969624173, 10.015835999999995 47.52953719624174, 10.015878899999995 47.52960859624174, 10.015860399999998 47.52965049624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_51_LVCableDist_mvgd_33535_lvgd_1172410001_56,BranchTee_mvgd_33535_lvgd_1172410001_51,BranchTee_mvgd_33535_lvgd_1172410001_56,0.12752419866267856,0.020913968580679284,0.010256104593244065,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.015117599999996 47.52975139624182, 10.014900800000001 47.52960369624173, 10.014839999999998 47.52954579624175, 10.0148293 47.52947969624173, 10.014856199999999 47.52940429624171, 10.015204099999995 47.52948929624178, 10.0155562 47.52957509624177, 10.015746000000005 47.529620696241736, 10.015860399999998 47.52965049624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_51_LVCableDist_mvgd_33535_lvgd_1172410001_60,BranchTee_mvgd_33535_lvgd_1172410001_51,BranchTee_mvgd_33535_lvgd_1172410001_60,0.01912457375318935,0.0031364300955230534,0.0015380894823950294,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.015860399999998 47.52965049624177, 10.016088699999994 47.5297256962418)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_51_LVCableDist_mvgd_33535_lvgd_1172410001_building_431665,BranchTee_mvgd_33535_lvgd_1172410001_51,BranchTee_mvgd_33535_lvgd_1172410001_building_431665,0.0224056189250259,0.01944807722692248,0.0019075507837592323,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01575770002679 47.529839746314465, 10.015860399999998 47.52965049624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_52_LVCableDist_mvgd_33535_lvgd_1172410001_building_431659,BranchTee_mvgd_33535_lvgd_1172410001_52,BranchTee_mvgd_33535_lvgd_1172410001_building_431659,0.01587223220039049,0.013777097549938944,0.001351316786881771,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.014746584009893 47.528656397278574, 10.014662900000001 47.5287874962417)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_53_LVCableDist_mvgd_33535_lvgd_1172410001_59,BranchTee_mvgd_33535_lvgd_1172410001_53,BranchTee_mvgd_33535_lvgd_1172410001_59,0.25242677039979183,0.04139799034556586,0.020301365438909015,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.017622799999994 47.530330696241876, 10.018221300000006 47.53054779624186, 10.018764699999997 47.530769696241876, 10.019360761584101 47.530990232854364, 10.019956828250765 47.53121076618773, 10.020552900000006 47.531431296241905)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_53_LVCableDist_mvgd_33535_lvgd_1172410001_61,BranchTee_mvgd_33535_lvgd_1172410001_53,BranchTee_mvgd_33535_lvgd_1172410001_61,0.09960839410294832,0.016335776632883527,0.008010982378232303,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.020552900000006 47.531431296241905, 10.020743499999993 47.531536696241915, 10.020876299999998 47.53161259624196, 10.021056299999998 47.53167059624192, 10.021742700000006 47.53177379624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_54_LVCableDist_mvgd_33535_lvgd_1172410001_55,BranchTee_mvgd_33535_lvgd_1172410001_54,BranchTee_mvgd_33535_lvgd_1172410001_55,0.01759451270589545,0.0028855000837668537,0.0014150346716245354,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.021325800000003 47.53131449624192, 10.021521199999997 47.53122779624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_54_LVCableDist_mvgd_33535_lvgd_1172410001_building_444692,BranchTee_mvgd_33535_lvgd_1172410001_54,BranchTee_mvgd_33535_lvgd_1172410001_building_444692,0.014839889530891541,0.012881024112813857,0.001263426062912023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021336117077402 47.531181114543585, 10.021325800000003 47.53131449624192)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_55_LVCableDist_mvgd_33535_lvgd_1172410001_building_444661,BranchTee_mvgd_33535_lvgd_1172410001_55,BranchTee_mvgd_33535_lvgd_1172410001_building_444661,0.029145708719347525,0.02529847516839365,0.0024813828931416317,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021503468793822 47.53096574887492, 10.021521199999997 47.53122779624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_55_LVCableDist_mvgd_33535_lvgd_1172410001_building_444696,BranchTee_mvgd_33535_lvgd_1172410001_55,BranchTee_mvgd_33535_lvgd_1172410001_building_444696,0.021680946330716176,0.01881906141506164,0.0018458542164887636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021793588957202 47.531290675889196, 10.021521199999997 47.53122779624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_56_LVCableDist_mvgd_33535_lvgd_1172410001_building_431662,BranchTee_mvgd_33535_lvgd_1172410001_56,BranchTee_mvgd_33535_lvgd_1172410001_building_431662,0.01934475560833606,0.0167912478680357,0.001646957571035704,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.015370842357775 47.52977997859128, 10.015117599999996 47.52975139624182)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_57_LVCableDist_mvgd_33535_lvgd_1172410001_61,BranchTee_mvgd_33535_lvgd_1172410001_57,BranchTee_mvgd_33535_lvgd_1172410001_61,0.02399725078887139,0.003935549129374908,0.0019299734216875577,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022056 47.53181259624192, 10.021742700000006 47.53177379624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_57_LVCableDist_mvgd_33535_lvgd_1172410001_62,BranchTee_mvgd_33535_lvgd_1172410001_57,BranchTee_mvgd_33535_lvgd_1172410001_62,0.032780213619495874,0.005375955033597324,0.0026363412042268754,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022056 47.53181259624192, 10.022481800000001 47.53187309624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_57_LVCableDist_mvgd_33535_lvgd_1172410001_building_444711,BranchTee_mvgd_33535_lvgd_1172410001_57,BranchTee_mvgd_33535_lvgd_1172410001_building_444711,0.02026358131746648,0.017588788583560905,0.0017251837832842835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021945053749237 47.53197873388065, 10.022056 47.53181259624192)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_58_LVCableDist_mvgd_33535_lvgd_1172410001_building_444720,BranchTee_mvgd_33535_lvgd_1172410001_58,BranchTee_mvgd_33535_lvgd_1172410001_building_444720,0.0246056514549491,0.021357705462895817,0.0020948553072715616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023483099995358 47.53129199625759, 10.023338599999995 47.53149059624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_58_LVCableDist_mvgd_33535_lvgd_1172410001_building_444723,BranchTee_mvgd_33535_lvgd_1172410001_58,BranchTee_mvgd_33535_lvgd_1172410001_building_444723,0.028154808435680443,0.024438373722170625,0.00239702045624304,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023003349992196 47.53137869627116, 10.023338599999995 47.53149059624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_58_LVCableDist_mvgd_33535_lvgd_1172410001_building_444753,BranchTee_mvgd_33535_lvgd_1172410001_58,BranchTee_mvgd_33535_lvgd_1172410001_building_444753,0.02322421964360339,0.02015862265064774,0.001977244124859675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023498092499572 47.53166946129472, 10.023338599999995 47.53149059624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_59_LVCableDist_mvgd_33535_lvgd_1172410001_60,BranchTee_mvgd_33535_lvgd_1172410001_59,BranchTee_mvgd_33535_lvgd_1172410001_60,0.13376656914131438,0.021937717339175558,0.010758145815302768,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.016088699999994 47.5297256962418, 10.016498000000002 47.529890896241774, 10.017002499999997 47.530103296241855, 10.017622799999994 47.530330696241876)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_59_LVCableDist_mvgd_33535_lvgd_1172410001_building_431667,BranchTee_mvgd_33535_lvgd_1172410001_59,BranchTee_mvgd_33535_lvgd_1172410001_building_431667,0.02835022233088269,0.024607992983206175,0.00241365744048337,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017291455678388 47.53045157764012, 10.017622799999994 47.530330696241876)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_59_LVCableDist_mvgd_33535_lvgd_1172410001_building_431669,BranchTee_mvgd_33535_lvgd_1172410001_59,BranchTee_mvgd_33535_lvgd_1172410001_building_431669,0.02268335991125221,0.019689156402966916,0.001931196862795518,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.017458737006324 47.53050187247534, 10.017622799999994 47.530330696241876)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_5_LVCableDist_mvgd_33535_lvgd_1172410001_7,BranchTee_mvgd_33535_lvgd_1172410001_5,BranchTee_mvgd_33535_lvgd_1172410001_7,0.11799232475550639,0.014749040594438299,0.009415369044049753,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.02333 47.53489319624225, 10.02359344799995 47.53528579659849, 10.023856899999997 47.53567839624231, 10.024060699999993 47.53582199624235)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_60_LVCableDist_mvgd_33535_lvgd_1172410001_building_431668,BranchTee_mvgd_33535_lvgd_1172410001_60,BranchTee_mvgd_33535_lvgd_1172410001_building_431668,0.03867619619929823,0.03357093830099086,0.003292781539294697,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.01582730655904 47.53002527699182, 10.016088699999994 47.5297256962418)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_61_LVCableDist_mvgd_33535_lvgd_1172410001_building_444704,BranchTee_mvgd_33535_lvgd_1172410001_61,BranchTee_mvgd_33535_lvgd_1172410001_building_444704,0.023177698000978443,0.020118241864849288,0.0019732834042856112,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021501829636671 47.5319035434206, 10.021742700000006 47.53177379624194)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_62_LVCableDist_mvgd_33535_lvgd_1172410001_building_444741,BranchTee_mvgd_33535_lvgd_1172410001_62,BranchTee_mvgd_33535_lvgd_1172410001_building_444741,0.02098734554785543,0.01821701593553851,0.0017868030150294623,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022363149991198 47.53204399629724, 10.022481800000001 47.53187309624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_62_LVStation_mvgd_33535_lvgd_1172410001,BusBar_mvgd_33535_lvgd_1172410001_LV,BranchTee_mvgd_33535_lvgd_1172410001_62,0.13374302918565584,0.021933856786447558,0.010756252619737642,0.21685276110762344,1,cable,NAYY 4x1x185,"LINESTRING (10.022481800000001 47.53187309624199, 10.023000999999999 47.53193709624198, 10.023212400000004 47.531939496241954, 10.023491000000002 47.53191239624197, 10.023905600000003 47.53184559624199, 10.0240961 47.531825296241976, 10.024231499999999 47.53182689624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_63_LVCableDist_mvgd_33535_lvgd_1172410001_64,BranchTee_mvgd_33535_lvgd_1172410001_63,BranchTee_mvgd_33535_lvgd_1172410001_64,0.011560541918570621,0.0036993734139425987,0.0009479132039916462,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023494099999992 47.53229669624199, 10.023615300000007 47.532360496242035)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_63_LVCableDist_mvgd_33535_lvgd_1172410001_building_444787,BranchTee_mvgd_33535_lvgd_1172410001_63,BranchTee_mvgd_33535_lvgd_1172410001_building_444787,0.024341576807485034,0.021128488668897008,0.002072372741517559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02368100187096 47.53257500104364, 10.023615300000007 47.532360496242035)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_64_LVCableDist_mvgd_33535_lvgd_1172410001_65,BranchTee_mvgd_33535_lvgd_1172410001_64,BranchTee_mvgd_33535_lvgd_1172410001_65,0.045006796978912994,0.014402175033252158,0.003690357893789626,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023212400000004 47.531939496241954, 10.023494099999992 47.53229669624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_64_LVCableDist_mvgd_33535_lvgd_1172410001_building_444756,BranchTee_mvgd_33535_lvgd_1172410001_64,BranchTee_mvgd_33535_lvgd_1172410001_building_444756,0.027437155151929748,0.02381545067187502,0.0023359214931451284,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023149985419394 47.532215938451266, 10.023494099999992 47.53229669624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_64_LVCableDist_mvgd_33535_lvgd_1172410001_building_444795,BranchTee_mvgd_33535_lvgd_1172410001_64,BranchTee_mvgd_33535_lvgd_1172410001_building_444795,0.030153758330371535,0.02617346223076249,0.0025672053750829477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023292889402807 47.532531295423325, 10.023494099999992 47.53229669624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_65_LVCableDist_mvgd_33535_lvgd_1172410001_66,BranchTee_mvgd_33535_lvgd_1172410001_65,BranchTee_mvgd_33535_lvgd_1172410001_66,0.01593095791306279,0.0050979065321800935,0.0013062679469869152,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023212400000004 47.531939496241954, 10.023000999999999 47.53193709624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_65_LVCableDist_mvgd_33535_lvgd_1172410001_67,BranchTee_mvgd_33535_lvgd_1172410001_65,BranchTee_mvgd_33535_lvgd_1172410001_67,0.02120697412524563,0.006786231720078602,0.0017388778944469273,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023212400000004 47.531939496241954, 10.023491000000002 47.53191239624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_66_LVCableDist_mvgd_33535_lvgd_1172410001_building_444738,BranchTee_mvgd_33535_lvgd_1172410001_66,BranchTee_mvgd_33535_lvgd_1172410001_building_444738,0.021195394270293034,0.018397602226614355,0.0018045156925892277,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022955269117233 47.53174886725565, 10.023000999999999 47.53193709624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_66_LVCableDist_mvgd_33535_lvgd_1172410001_building_444746,BranchTee_mvgd_33535_lvgd_1172410001_66,BranchTee_mvgd_33535_lvgd_1172410001_building_444746,0.028484604810994095,0.024724636975942873,0.0024250983833164065,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022760072021288 47.53213466016088, 10.023000999999999 47.53193709624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_67_LVCableDist_mvgd_33535_lvgd_1172410001_68,BranchTee_mvgd_33535_lvgd_1172410001_67,BranchTee_mvgd_33535_lvgd_1172410001_68,0.032109097513432217,0.01027491120429831,0.0026328036968876808,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023491000000002 47.53191239624197, 10.023905600000003 47.53184559624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_67_LVCableDist_mvgd_33535_lvgd_1172410001_building_444760,BranchTee_mvgd_33535_lvgd_1172410001_67,BranchTee_mvgd_33535_lvgd_1172410001_building_444760,0.019717614508590317,0.017114889393456394,0.0016787017192242276,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02358013246757 47.53207925049404, 10.023491000000002 47.53191239624197)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_68_LVCableDist_mvgd_33535_lvgd_1172410001_building_444776,BranchTee_mvgd_33535_lvgd_1172410001_68,BranchTee_mvgd_33535_lvgd_1172410001_building_444776,0.01877444523597758,0.016296218464828538,0.0015984029650942756,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023907084979776 47.53201457080159, 10.023905600000003 47.53184559624199)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_68_LVStation_mvgd_33535_lvgd_1172410001,BusBar_mvgd_33535_lvgd_1172410001_LV,BranchTee_mvgd_33535_lvgd_1172410001_68,0.024733854684024018,0.007914833498887686,0.0020280664700445,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.023905600000003 47.53184559624199, 10.0240961 47.531825296241976, 10.024231499999999 47.53182689624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_69_LVCableDist_mvgd_33535_lvgd_1172410001_70,BranchTee_mvgd_33535_lvgd_1172410001_69,BranchTee_mvgd_33535_lvgd_1172410001_70,0.009229383791944027,0.008011105131407415,0.0007857635330159589,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024545800000004 47.531833496241966, 10.024650599999996 47.53187649624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_69_LVCableDist_mvgd_33535_lvgd_1172410001_building_444783,BranchTee_mvgd_33535_lvgd_1172410001_69,BranchTee_mvgd_33535_lvgd_1172410001_building_444783,0.015458737005031547,0.013418183720367382,0.0013161129798980409,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024846706316426 47.53183561394735, 10.024650599999996 47.53187649624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_69_LVCableDist_mvgd_33535_lvgd_1172410001_building_444794,BranchTee_mvgd_33535_lvgd_1172410001_69,BranchTee_mvgd_33535_lvgd_1172410001_building_444794,0.029106778390043754,0.02526468364255798,0.0024780684754313284,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024889778260391 47.5320822125205, 10.024650599999996 47.53187649624198)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_6_LVCableDist_mvgd_33535_lvgd_1172410001_8,BranchTee_mvgd_33535_lvgd_1172410001_6,BranchTee_mvgd_33535_lvgd_1172410001_8,0.007721355355574201,0.0009651694194467752,0.0006161367728250342,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.024402000000002 47.533196796242116, 10.0243162 47.53315879624212)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_6_LVCableDist_mvgd_33535_lvgd_1172410001_building_444809,BranchTee_mvgd_33535_lvgd_1172410001_6,BranchTee_mvgd_33535_lvgd_1172410001_building_444809,0.020260619575991762,0.01758621779196085,0.0017249316290237698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024665514511092 47.53316048899566, 10.024402000000002 47.533196796242116)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_6_LVCableDist_mvgd_33535_lvgd_1172410001_building_444811,BranchTee_mvgd_33535_lvgd_1172410001_6,BranchTee_mvgd_33535_lvgd_1172410001_building_444811,0.0394663454188079,0.03425678782352525,0.003360052600540807,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024878725191941 47.53304962653271, 10.024402000000002 47.533196796242116)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_70_LVCableDist_mvgd_33535_lvgd_1172410001_building_444771,BranchTee_mvgd_33535_lvgd_1172410001_70,BranchTee_mvgd_33535_lvgd_1172410001_building_444771,0.020216719197170774,0.017548112263144233,0.001721194075407977,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024601532891785 47.53165550606462, 10.024545800000004 47.531833496241966)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_70_LVStation_mvgd_33535_lvgd_1172410001,BusBar_mvgd_33535_lvgd_1172410001_LV,BranchTee_mvgd_33535_lvgd_1172410001_70,0.023693515924539606,0.02056597182250038,0.0020171986778452777,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024231499999999 47.53182689624196, 10.024545800000004 47.531833496241966)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_7_LVCableDist_mvgd_33535_lvgd_1172410001_building_444813,BranchTee_mvgd_33535_lvgd_1172410001_7,BranchTee_mvgd_33535_lvgd_1172410001_building_444813,0.018820781102582052,0.016336437997041223,0.001602347869225391,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023825650017939 47.53587934628145, 10.024060699999993 47.53582199624235)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_8_LVCableDist_mvgd_33535_lvgd_1172410001_9,BranchTee_mvgd_33535_lvgd_1172410001_8,BranchTee_mvgd_33535_lvgd_1172410001_9,0.036944607329224284,0.0046180759161530355,0.002948048637171367,0.25218659758202855,1,cable,NAYY 4x1x240,"LINESTRING (10.023826400000004 47.53314339624206, 10.0243162 47.53315879624212)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410001_8_LVCableDist_mvgd_33535_lvgd_1172410001_building_444803,BranchTee_mvgd_33535_lvgd_1172410001_8,BranchTee_mvgd_33535_lvgd_1172410001_building_444803,0.026726265649358802,0.02319839858364344,0.002275398379173893,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024428969563576 47.53293072879283, 10.0243162 47.53315879624212)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_10_LVCableDist_mvgd_33535_lvgd_1172410002_15,BranchTee_mvgd_33535_lvgd_1172410002_10,BranchTee_mvgd_33535_lvgd_1172410002_15,0.012920088493739604,0.00326878238891612,0.0010390951704489562,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024225299999996 47.52951849624174, 10.024218699999997 47.5296346962418)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_10_LVCableDist_mvgd_33535_lvgd_1172410002_8,BranchTee_mvgd_33535_lvgd_1172410002_8,BranchTee_mvgd_33535_lvgd_1172410002_10,0.022248494468338226,0.005628869100489571,0.0017893300934442118,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0245203 47.52951009624173, 10.024225299999996 47.52951849624174)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_10_LVStation_mvgd_33535_lvgd_1172410002,BusBar_mvgd_33535_lvgd_1172410002_LV,BranchTee_mvgd_33535_lvgd_1172410002_10,0.040099320578532036,0.010145128106368605,0.0032249787121525313,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024225299999996 47.52951849624174, 10.024237700000002 47.52932239624177, 10.024302799999996 47.52916379624174)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_11_LVCableDist_mvgd_33535_lvgd_1172410002_23,BranchTee_mvgd_33535_lvgd_1172410002_11,BranchTee_mvgd_33535_lvgd_1172410002_23,0.07266232744981063,0.01838356884480209,0.0058438511131919625,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.026295300000003 47.52927039624172, 10.0253432 47.52937409624175)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_11_LVCableDist_mvgd_33535_lvgd_1172410002_3,BranchTee_mvgd_33535_lvgd_1172410002_3,BranchTee_mvgd_33535_lvgd_1172410002_11,0.032839181785382955,0.008308312991701887,0.002641083705519586,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0253432 47.52937409624175, 10.024922799999993 47.52945199624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_11_LVCableDist_mvgd_33535_lvgd_1172410002_building_444749,BranchTee_mvgd_33535_lvgd_1172410002_11,BranchTee_mvgd_33535_lvgd_1172410002_building_444749,0.015928177321255677,0.013825657914849927,0.0013560797956391278,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025312599899186 47.52923224633825, 10.0253432 47.52937409624175)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_12_LVCableDist_mvgd_33535_lvgd_1172410002_18,BranchTee_mvgd_33535_lvgd_1172410002_12,BranchTee_mvgd_33535_lvgd_1172410002_18,0.37440783108854087,0.09472518126540085,0.03011166442481275,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0260792 47.5299344962418, 10.026217299999997 47.52996889624179, 10.0263942 47.52997909624179, 10.026610399999997 47.52997439624176, 10.026813599999999 47.52992669624181, 10.027162600000002 47.52974859624179, 10.027485699999998 47.529631996241775, 10.027788099999999 47.52955739624174, 10.028031999999994 47.52950699624177, 10.028476099999992 47.529459096241744, 10.028716500000003 47.52943939624176, 10.029114500000002 47.52943549624177, 10.029408899999993 47.52945399624176, 10.029665899999994 47.52952879624177, 10.029828099999994 47.529631996241775, 10.029863500000003 47.52974839624177, 10.029868999999998 47.52987829624179, 10.029846100000004 47.530020296241794, 10.029794500000003 47.530138496241804, 10.029700799999997 47.53024779624184)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_12_LVCableDist_mvgd_33535_lvgd_1172410002_2,BranchTee_mvgd_33535_lvgd_1172410002_2,BranchTee_mvgd_33535_lvgd_1172410002_12,0.02947307712799884,0.007456688513383707,0.002370365506150567,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025788700000001 47.52975949624179, 10.025864599999998 47.52982249624184, 10.0259432 47.52986959624179, 10.0260792 47.5299344962418)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_12_LVCableDist_mvgd_33535_lvgd_1172410002_building_444767,BranchTee_mvgd_33535_lvgd_1172410002_12,BranchTee_mvgd_33535_lvgd_1172410002_building_444767,0.015105001211900372,0.013111141051929523,0.001285996918757798,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026195909175113 47.529823961557156, 10.0260792 47.5299344962418)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_13_LVCableDist_mvgd_33535_lvgd_1172410002_18,BranchTee_mvgd_33535_lvgd_1172410002_13,BranchTee_mvgd_33535_lvgd_1172410002_18,0.042254107084113,0.01069028909228059,0.0033982769254258132,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.029700799999997 47.53024779624184, 10.029571200000001 47.53030659624181, 10.029204200000004 47.53042249624183)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_13_LVCableDist_mvgd_33535_lvgd_1172410002_building_444765,BranchTee_mvgd_33535_lvgd_1172410002_13,BranchTee_mvgd_33535_lvgd_1172410002_building_444765,0.019443047439514475,0.016876565177498564,0.0016553258584831036,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02943061765898 47.530506426426506, 10.029204200000004 47.53042249624183)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_14_LVCableDist_mvgd_33535_lvgd_1172410002_building_444766,BranchTee_mvgd_33535_lvgd_1172410002_14,BranchTee_mvgd_33535_lvgd_1172410002_building_444766,0.010474605549695988,0.009091957617136118,0.0008917781781771641,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025648731815034 47.53000494623114, 10.0257714 47.52996059624182)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_15_LVCableDist_mvgd_33535_lvgd_1172410002_16,BranchTee_mvgd_33535_lvgd_1172410002_15,BranchTee_mvgd_33535_lvgd_1172410002_16,0.04820482387300757,0.012195820439870915,0.0038768619660039796,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024218699999997 47.5296346962418, 10.024425000000003 47.52969069624177, 10.0245778 47.529772196241765, 10.0246961 47.5299004962418)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_15_LVCableDist_mvgd_33535_lvgd_1172410002_building_444717,BranchTee_mvgd_33535_lvgd_1172410002_15,BranchTee_mvgd_33535_lvgd_1172410002_building_444717,0.03284585649540949,0.028510203438015438,0.002796402969751447,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023783443951293 47.52961865689981, 10.024218699999997 47.5296346962418)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_16_LVCableDist_mvgd_33535_lvgd_1172410002_24,BranchTee_mvgd_33535_lvgd_1172410002_16,BranchTee_mvgd_33535_lvgd_1172410002_24,0.013372433872349607,0.0033832257697044505,0.0010754749443581142,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0246961 47.5299004962418, 10.024839400000001 47.52982949624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_16_LVCableDist_mvgd_33535_lvgd_1172410002_building_444714,BranchTee_mvgd_33535_lvgd_1172410002_16,BranchTee_mvgd_33535_lvgd_1172410002_building_444714,0.021245987448588275,0.018441517105374623,0.0018088230521508136,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02479961994012 47.530078363785776, 10.0246961 47.5299004962418)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_17_LVCableDist_mvgd_33535_lvgd_1172410002_19,BranchTee_mvgd_33535_lvgd_1172410002_17,BranchTee_mvgd_33535_lvgd_1172410002_19,0.029793599733094506,0.0075377807324729105,0.0023961434635644038,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025097300000006 47.52975079624178, 10.025028499999994 47.52960199624178, 10.024880899999996 47.52955129624174)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_17_LVCableDist_mvgd_33535_lvgd_1172410002_24,BranchTee_mvgd_33535_lvgd_1172410002_17,BranchTee_mvgd_33535_lvgd_1172410002_24,0.02133147301513608,0.005396862672829428,0.0017155788522137708,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024839400000001 47.52982949624178, 10.025003100000006 47.52977499624174, 10.025097300000006 47.52975079624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_18_LVCableDist_mvgd_33535_lvgd_1172410002_building_444764,BranchTee_mvgd_33535_lvgd_1172410002_18,BranchTee_mvgd_33535_lvgd_1172410002_building_444764,0.01417889529866404,0.012307281119240386,0.001207150890600779,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02988893551011 47.53025026600378, 10.029700799999997 47.53024779624184)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_19_LVCableDist_mvgd_33535_lvgd_1172410002_building_444707,BranchTee_mvgd_33535_lvgd_1172410002_19,BranchTee_mvgd_33535_lvgd_1172410002_building_444707,0.015940123079978132,0.01383602683342102,0.0013570968236217007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024735100007943 47.529655246273414, 10.024880899999996 47.52955129624174)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_1_LVCableDist_mvgd_33535_lvgd_1172410002_14,BranchTee_mvgd_33535_lvgd_1172410002_1,BranchTee_mvgd_33535_lvgd_1172410002_14,0.043080778128024515,0.010899436866390203,0.0034647617555951015,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025328999999996 47.52971699624175, 10.025456299999998 47.529781796241785, 10.025653399999994 47.529877296241786, 10.0257714 47.52996059624182)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_1_LVCableDist_mvgd_33535_lvgd_1172410002_17,BranchTee_mvgd_33535_lvgd_1172410002_1,BranchTee_mvgd_33535_lvgd_1172410002_17,0.017945035692273435,0.004540094030145179,0.001443225402860873,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025097300000006 47.52975079624178, 10.025163699999997 47.52973369624182, 10.025328999999996 47.52971699624175)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_1_LVCableDist_mvgd_33535_lvgd_1172410002_2,BranchTee_mvgd_33535_lvgd_1172410002_1,BranchTee_mvgd_33535_lvgd_1172410002_2,0.03507490771389715,0.00887395165161598,0.0028208914534225728,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025328999999996 47.52971699624175, 10.025558600000004 47.529731396241786, 10.025711299999998 47.52975739624178, 10.025788700000001 47.52975949624179)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_20_LVCableDist_mvgd_33535_lvgd_1172410002_5,BranchTee_mvgd_33535_lvgd_1172410002_5,BranchTee_mvgd_33535_lvgd_1172410002_20,0.11019545418455286,0.027879449908691872,0.008862444270724657,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.031248600000005 47.52747019624157, 10.031693999999998 47.52738569624155, 10.031849600000003 47.527327296241566, 10.031911400000006 47.527303296241534, 10.032321000000001 47.52714449624156, 10.032528100000002 47.527017696241565)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_20_LVCableDist_mvgd_33535_lvgd_1172410002_6,BranchTee_mvgd_33535_lvgd_1172410002_6,BranchTee_mvgd_33535_lvgd_1172410002_20,0.01954471689937321,0.004944813375541423,0.0015718793991056168,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.032528100000002 47.527017696241565, 10.032596300000003 47.52698539624149, 10.0327695 47.526963496241514)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_20_LVCableDist_mvgd_33535_lvgd_1172410002_7,BranchTee_mvgd_33535_lvgd_1172410002_7,BranchTee_mvgd_33535_lvgd_1172410002_20,0.05339862657226212,0.013509852522782315,0.004294572363550807,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.032528100000002 47.527017696241565, 10.032278500000004 47.52686719624154, 10.031991500000002 47.52693789624152, 10.031991499999995 47.52698489624154)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_20_LVCableDist_mvgd_33535_lvgd_1172410002_building_444838,BranchTee_mvgd_33535_lvgd_1172410002_20,BranchTee_mvgd_33535_lvgd_1172410002_building_444838,0.005262091186486505,0.004567495149870287,0.0004479995040790099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032553749997145 47.52706174625524, 10.032528100000002 47.527017696241565)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_21_LVCableDist_mvgd_33535_lvgd_1172410002_22,BranchTee_mvgd_33535_lvgd_1172410002_21,BranchTee_mvgd_33535_lvgd_1172410002_22,0.018422626128931065,0.0046609244106195595,0.0014816355048059187,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.027160799999995 47.52908579624174, 10.026959600000003 47.52917999624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_21_LVCableDist_mvgd_33535_lvgd_1172410002_9,BranchTee_mvgd_33535_lvgd_1172410002_9,BranchTee_mvgd_33535_lvgd_1172410002_21,0.04482454003830875,0.011340608629692113,0.003605003409533243,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.026959600000003 47.52917999624173, 10.026377 47.52926149624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_21_LVCableDist_mvgd_33535_lvgd_1172410002_building_444751,BranchTee_mvgd_33535_lvgd_1172410002_21,BranchTee_mvgd_33535_lvgd_1172410002_building_444751,0.019748610414935776,0.017141793840164253,0.0016813406226903831,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026725010813951 47.52910074681912, 10.026959600000003 47.52917999624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_22_LVCableDist_mvgd_33535_lvgd_1172410002_building_444743,BranchTee_mvgd_33535_lvgd_1172410002_22,BranchTee_mvgd_33535_lvgd_1172410002_building_444743,0.04254810493493479,0.0369317550835234,0.003622424856358263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026763773564355 47.52881350059622, 10.027160799999995 47.52908579624174)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_22_LVCableDist_mvgd_33535_lvgd_1172410002_building_444752,BranchTee_mvgd_33535_lvgd_1172410002_22,BranchTee_mvgd_33535_lvgd_1172410002_building_444752,0.010580265968328598,0.009183670860509223,0.0009007738062403478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02704058316756 47.52903659673736, 10.027160799999995 47.52908579624174)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_23_LVCableDist_mvgd_33535_lvgd_1172410002_9,BranchTee_mvgd_33535_lvgd_1172410002_9,BranchTee_mvgd_33535_lvgd_1172410002_23,0.006235209449967935,0.0015775079908418874,0.0005014652979612907,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.026377 47.52926149624172, 10.026295300000003 47.52927039624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_23_LVCableDist_mvgd_33535_lvgd_1172410002_building_444742,BranchTee_mvgd_33535_lvgd_1172410002_23,BranchTee_mvgd_33535_lvgd_1172410002_building_444742,0.018171457346275323,0.01577282497656698,0.0015470662881005366,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026111975278717 47.529164141209804, 10.026295300000003 47.52927039624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_23_LVCableDist_mvgd_33535_lvgd_1172410002_building_444755,BranchTee_mvgd_33535_lvgd_1172410002_23,BranchTee_mvgd_33535_lvgd_1172410002_building_444755,0.032393853311457346,0.028117864674344975,0.0027579207019464485,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025896400000857 47.52916169628283, 10.026295300000003 47.52927039624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_24_LVCableDist_mvgd_33535_lvgd_1172410002_building_444718,BranchTee_mvgd_33535_lvgd_1172410002_24,BranchTee_mvgd_33535_lvgd_1172410002_building_444718,0.01660537382650922,0.014413464481410001,0.0014137343834761346,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024893708969861 47.52997434148755, 10.024839400000001 47.52982949624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_25_LVCableDist_mvgd_33535_lvgd_1172410002_27,BranchTee_mvgd_33535_lvgd_1172410002_25,BranchTee_mvgd_33535_lvgd_1172410002_27,0.04184296185579927,0.03631969089083376,0.003562390976563719,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024743999999997 47.5286991962417, 10.025064800000003 47.528391796241664)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_25_LVCableDist_mvgd_33535_lvgd_1172410002_29,BranchTee_mvgd_33535_lvgd_1172410002_25,BranchTee_mvgd_33535_lvgd_1172410002_29,0.05192711765107293,0.0450727381211313,0.0044209273711704675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024360699999997 47.52908759624173, 10.024743999999997 47.5286991962417)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_25_LVCableDist_mvgd_33535_lvgd_1172410002_building_444685,BranchTee_mvgd_33535_lvgd_1172410002_25,BranchTee_mvgd_33535_lvgd_1172410002_building_444685,0.01700897301235621,0.014763788574725191,0.0014480956723056564,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024768949995089 47.52854704628559, 10.024743999999997 47.5286991962417)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_25_LVCableDist_mvgd_33535_lvgd_1172410002_building_444686,BranchTee_mvgd_33535_lvgd_1172410002_25,BranchTee_mvgd_33535_lvgd_1172410002_building_444686,0.027467111267629633,0.02384145258030252,0.0023384718717877765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024392114312713 47.528763697889104, 10.024743999999997 47.5286991962417)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_25_LVCableDist_mvgd_33535_lvgd_1172410002_building_444687,BranchTee_mvgd_33535_lvgd_1172410002_25,BranchTee_mvgd_33535_lvgd_1172410002_building_444687,0.020868105291240065,0.018113515392796375,0.001776651238114778,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024955183924748 47.52882069740989, 10.024743999999997 47.5286991962417)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_26_LVCableDist_mvgd_33535_lvgd_1172410002_27,BranchTee_mvgd_33535_lvgd_1172410002_26,BranchTee_mvgd_33535_lvgd_1172410002_27,0.03739675787639658,0.032460385836712236,0.003183853792920478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025064800000003 47.528391796241664, 10.025185999999996 47.52829039624166, 10.025489800000004 47.528292596241656)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_26_LVCableDist_mvgd_33535_lvgd_1172410002_28,BranchTee_mvgd_33535_lvgd_1172410002_26,BranchTee_mvgd_33535_lvgd_1172410002_28,0.00975199291805648,0.008464729852873025,0.0008302569902800228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025489800000004 47.528292596241656, 10.025590300000005 47.52823729624167)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_26_LVCableDist_mvgd_33535_lvgd_1172410002_building_444748,BranchTee_mvgd_33535_lvgd_1172410002_26,BranchTee_mvgd_33535_lvgd_1172410002_building_444748,0.05822062932948789,0.05053550625799549,0.0049567390876390175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025816043168374 47.5287675983847, 10.025489800000004 47.528292596241656)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_27_LVCableDist_mvgd_33535_lvgd_1172410002_30,BranchTee_mvgd_33535_lvgd_1172410002_27,BranchTee_mvgd_33535_lvgd_1172410002_30,0.06533994277586863,0.05671507032945397,0.005562857222108517,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025007199999992 47.5278445962416, 10.025030400000006 47.5279850962416, 10.025159299999993 47.52813369624167, 10.025051300000003 47.528295996241646, 10.025064800000003 47.528391796241664)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_27_LVCableDist_mvgd_33535_lvgd_1172410002_building_444745,BranchTee_mvgd_33535_lvgd_1172410002_27,BranchTee_mvgd_33535_lvgd_1172410002_building_444745,0.021851425150240807,0.01896703703040902,0.0018603682991787682,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025145711456144 47.528580656891734, 10.025064800000003 47.528391796241664)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_28_LVCableDist_mvgd_33535_lvgd_1172410002_building_444732,BranchTee_mvgd_33535_lvgd_1172410002_28,BranchTee_mvgd_33535_lvgd_1172410002_building_444732,0.009849418295552718,0.008549295080539759,0.0008385515103208599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025636031684037 47.52815424998782, 10.025590300000005 47.52823729624167)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_29_LVCableDist_mvgd_33535_lvgd_1172410002_building_444693,BranchTee_mvgd_33535_lvgd_1172410002_29,BranchTee_mvgd_33535_lvgd_1172410002_building_444693,0.016988797823121883,0.014746276510469794,0.0014463780139733777,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02458155000628 47.52911834629005, 10.024360699999997 47.52908759624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_29_LVStation_mvgd_33535_lvgd_1172410002,BusBar_mvgd_33535_lvgd_1172410002_LV,BranchTee_mvgd_33535_lvgd_1172410002_29,0.009524298568519553,0.008267091157474971,0.0008108717398046797,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024302799999996 47.52916379624174, 10.024360699999997 47.52908759624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_2_LVCableDist_mvgd_33535_lvgd_1172410002_5,BranchTee_mvgd_33535_lvgd_1172410002_2,BranchTee_mvgd_33535_lvgd_1172410002_5,0.5040919470441908,0.1275352626021803,0.040541479873735804,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.025788700000001 47.52975949624179, 10.025874199999997 47.52974059624179, 10.0262958 47.529604296241764, 10.026622099999999 47.52949229624174, 10.026899300000004 47.52935559624172, 10.027016299999998 47.52930159624171, 10.027185500000002 47.529256996241706, 10.027549799999996 47.529198196241694, 10.027805500000001 47.52913779624174, 10.028408200000001 47.52898159624169, 10.028564299999996 47.52895849624169, 10.028936299999996 47.52895249624171, 10.0291063 47.52892639624173, 10.029372300000006 47.528842296241734, 10.029514600000006 47.52877969624164, 10.029600400000003 47.52872359624163, 10.029734399999999 47.528616096241706, 10.030011700000001 47.52829699624167, 10.030144900000003 47.528192196241655, 10.030246200000006 47.52810929624166, 10.030334700000001 47.52800139624164, 10.030512600000003 47.527848896241615, 10.030700499999998 47.527723096241616, 10.030891800000001 47.52759709624162, 10.0310107 47.52753499624157, 10.031130799999993 47.527502896241614, 10.031248600000005 47.52747019624157)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_30_LVCableDist_mvgd_33535_lvgd_1172410002_building_444731,BranchTee_mvgd_33535_lvgd_1172410002_30,BranchTee_mvgd_33535_lvgd_1172410002_building_444731,0.019244127102010032,0.016703902324544707,0.0016383903457002622,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02525874609794 47.52787449670661, 10.025007199999992 47.5278445962416)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_31_LVCableDist_mvgd_33535_lvgd_1172410002_52,BranchTee_mvgd_33535_lvgd_1172410002_31,BranchTee_mvgd_33535_lvgd_1172410002_52,0.03963626451362055,0.010027974921946,0.0031877375337403427,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021810500000003 47.52923449624171, 10.022333649624223 47.529271647495754)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_31_LVCableDist_mvgd_33535_lvgd_1172410002_building_444636,BranchTee_mvgd_33535_lvgd_1172410002_31,BranchTee_mvgd_33535_lvgd_1172410002_building_444636,0.034808855778320005,0.030214086815581763,0.0029635271555712964,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02156473497653 47.528969222079304, 10.021810500000003 47.52923449624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_31_LVCableDist_mvgd_33535_lvgd_1172410002_building_444638,BranchTee_mvgd_33535_lvgd_1172410002_31,BranchTee_mvgd_33535_lvgd_1172410002_building_444638,0.01629106247292864,0.014140642226502059,0.0013869748071897873,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021599350007229 47.52926599628307, 10.021810500000003 47.52923449624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_31_LVCableDist_mvgd_33535_lvgd_1172410002_building_444639,BranchTee_mvgd_33535_lvgd_1172410002_31,BranchTee_mvgd_33535_lvgd_1172410002_building_444639,0.016503567789851452,0.01432509684159106,0.0014050669065513604,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021870932719386 47.52937726839517, 10.021810500000003 47.52923449624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_31_LVCableDist_mvgd_33535_lvgd_1172410002_building_444645,BranchTee_mvgd_33535_lvgd_1172410002_31,BranchTee_mvgd_33535_lvgd_1172410002_building_444645,0.02177849877996476,0.01890373694100941,0.0018541595550578276,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022030677915012 47.52936147498267, 10.021810500000003 47.52923449624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_32_LVCableDist_mvgd_33535_lvgd_1172410002_43,BranchTee_mvgd_33535_lvgd_1172410002_32,BranchTee_mvgd_33535_lvgd_1172410002_43,0.01430179959280249,0.00361835529697903,0.001150218970466862,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0228568 47.52930879624177, 10.022885899999995 47.52943599624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_32_LVCableDist_mvgd_33535_lvgd_1172410002_44,BranchTee_mvgd_33535_lvgd_1172410002_32,BranchTee_mvgd_33535_lvgd_1172410002_44,0.026631183322285635,0.006737689380538266,0.0021418068449714067,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0228568 47.52930879624177, 10.022848700000004 47.52921109624171, 10.022853499999995 47.52906929624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_32_LVCableDist_mvgd_33535_lvgd_1172410002_52,BranchTee_mvgd_33535_lvgd_1172410002_32,BranchTee_mvgd_33535_lvgd_1172410002_52,0.03963626451454678,0.010027974922180334,0.0031877375338148343,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022333649624223 47.529271647495754, 10.0228568 47.52930879624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_32_LVCableDist_mvgd_33535_lvgd_1172410002_building_444671,BranchTee_mvgd_33535_lvgd_1172410002_32,BranchTee_mvgd_33535_lvgd_1172410002_building_444671,0.01405416971808349,0.01219901931529647,0.0011965321087770149,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02303755000337 47.5292775962598, 10.0228568 47.52930879624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_33_LVCableDist_mvgd_33535_lvgd_1172410002_34,BranchTee_mvgd_33535_lvgd_1172410002_33,BranchTee_mvgd_33535_lvgd_1172410002_34,0.01551333229616828,0.003924873070930575,0.0012476562118230925,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022259800000002 47.52798889624158, 10.022422099999993 47.528074796241626)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_33_LVCableDist_mvgd_33535_lvgd_1172410002_35,BranchTee_mvgd_33535_lvgd_1172410002_33,BranchTee_mvgd_33535_lvgd_1172410002_35,0.10139878726364603,0.025653893177702444,0.008154974339849847,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021199099999999 47.52750879624162, 10.021310599999994 47.5276083962416, 10.021413500000003 47.52765959624155, 10.0215315 47.5276870962416, 10.021792499999997 47.52769109624156, 10.021897800000005 47.5277260962416, 10.022121100000003 47.527895696241615, 10.022259800000002 47.52798889624158)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_33_LVCableDist_mvgd_33535_lvgd_1172410002_building_444646,BranchTee_mvgd_33535_lvgd_1172410002_33,BranchTee_mvgd_33535_lvgd_1172410002_building_444646,0.01845332660546656,0.016017487493544976,0.0015710638365765272,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02242994999966 47.52786944626754, 10.022259800000002 47.52798889624158)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_34_LVCableDist_mvgd_33535_lvgd_1172410002_37,BranchTee_mvgd_33535_lvgd_1172410002_34,BranchTee_mvgd_33535_lvgd_1172410002_37,0.023221613306391917,0.005875068166517155,0.0018675929540573142,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022422099999993 47.528074796241626, 10.022486200000003 47.52817059624166, 10.022529299999995 47.52827019624167)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_34_LVCableDist_mvgd_33535_lvgd_1172410002_building_444647,BranchTee_mvgd_33535_lvgd_1172410002_34,BranchTee_mvgd_33535_lvgd_1172410002_building_444647,0.02645831198012975,0.022965814798752624,0.0022525855645197023,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022755274836603 47.52799964143594, 10.022422099999993 47.528074796241626)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_35_LVCableDist_mvgd_33535_lvgd_1172410002_39,BranchTee_mvgd_33535_lvgd_1172410002_35,BranchTee_mvgd_33535_lvgd_1172410002_39,0.24202741314580123,0.06123293552588771,0.019464999503518488,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021199099999999 47.52750879624162, 10.021032300000003 47.527223696241585, 10.020995200000002 47.52691009624154, 10.020988500000005 47.52682219624148, 10.020943599999999 47.52659579624151, 10.020816599999995 47.52640459624147, 10.020744899999999 47.526331996241424, 10.0206714 47.52628619624146, 10.020754199999995 47.52626459624149, 10.020909800000004 47.52625909624147, 10.021180699999997 47.526246496241455, 10.021258499999997 47.52623559624143, 10.021354999999994 47.52621199624145, 10.0214328 47.52616859624146, 10.021515 47.526126596241454, 10.021652700000002 47.526081596241475, 10.021878100000006 47.52603269624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_35_LVCableDist_mvgd_33535_lvgd_1172410002_53,BranchTee_mvgd_33535_lvgd_1172410002_35,BranchTee_mvgd_33535_lvgd_1172410002_53,0.022457721429937905,0.00568180352177429,0.00180615712411287,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.021199099999999 47.52750879624162, 10.020913299999995 47.52756609624161)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_36_LVCableDist_mvgd_33535_lvgd_1172410002_37,BranchTee_mvgd_33535_lvgd_1172410002_36,BranchTee_mvgd_33535_lvgd_1172410002_37,0.020090021546324083,0.005082775451219993,0.0016157354009700452,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022529299999995 47.52827019624167, 10.0224777 47.528447596241655)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_36_LVCableDist_mvgd_33535_lvgd_1172410002_38,BranchTee_mvgd_33535_lvgd_1172410002_36,BranchTee_mvgd_33535_lvgd_1172410002_38,0.017441581234090547,0.004412720052224909,0.0014027351928834165,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0224777 47.528447596241655, 10.022427199999992 47.528600796241705)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_36_LVCableDist_mvgd_33535_lvgd_1172410002_building_444632,BranchTee_mvgd_33535_lvgd_1172410002_36,BranchTee_mvgd_33535_lvgd_1172410002_building_444632,0.020536960042643413,0.01782608131701448,0.0017484584717996669,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022210600000536 47.528484346273196, 10.0224777 47.528447596241655)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_37_LVCableDist_mvgd_33535_lvgd_1172410002_building_444630,BranchTee_mvgd_33535_lvgd_1172410002_37,BranchTee_mvgd_33535_lvgd_1172410002_building_444630,0.021021724463264325,0.018246856834113433,0.0017897299382826192,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022250373836036 47.52827365033013, 10.022529299999995 47.52827019624167)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_37_LVCableDist_mvgd_33535_lvgd_1172410002_building_444653,BranchTee_mvgd_33535_lvgd_1172410002_37,BranchTee_mvgd_33535_lvgd_1172410002_building_444653,0.014663609128011701,0.012728012723114157,0.0012484180498863599,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022722999991117 47.52828284627241, 10.022529299999995 47.52827019624167)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_38_LVCableDist_mvgd_33535_lvgd_1172410002_50,BranchTee_mvgd_33535_lvgd_1172410002_38,BranchTee_mvgd_33535_lvgd_1172410002_50,0.026118432155973332,0.006607963335461253,0.0021005689493629244,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022427199999992 47.528600796241705, 10.022444900000009 47.52869419624163, 10.0225008 47.528741296241705, 10.022584500000002 47.52879829624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_38_LVCableDist_mvgd_33535_lvgd_1172410002_building_444654,BranchTee_mvgd_33535_lvgd_1172410002_38,BranchTee_mvgd_33535_lvgd_1172410002_building_444654,0.02225147038109906,0.019314276290793984,0.0018944270143705388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022718955173774 47.528569882146414, 10.022427199999992 47.528600796241705)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_38_LVCableDist_mvgd_33535_lvgd_1172410002_building_444656,BranchTee_mvgd_33535_lvgd_1172410002_38,BranchTee_mvgd_33535_lvgd_1172410002_building_444656,0.007232600762417156,0.006277897461778092,0.0006157630949242131,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022334200000202 47.52858469624793, 10.022427199999992 47.528600796241705)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_39_LVCableDist_mvgd_33535_lvgd_1172410002_building_444487,BranchTee_mvgd_33535_lvgd_1172410002_39,BranchTee_mvgd_33535_lvgd_1172410002_building_444487,0.014171623412913472,0.012300969122408894,0.0012065317828934973,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021877499979716 47.52616024628516, 10.021878100000006 47.52603269624145)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_3_LVCableDist_mvgd_33535_lvgd_1172410002_4,BranchTee_mvgd_33535_lvgd_1172410002_3,BranchTee_mvgd_33535_lvgd_1172410002_4,0.04608802469433117,0.011660270247665786,0.0037066188748332996,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024922799999993 47.52945199624177, 10.0249104 47.529234296241725, 10.025041899999994 47.52905869624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_3_LVCableDist_mvgd_33535_lvgd_1172410002_8,BranchTee_mvgd_33535_lvgd_1172410002_3,BranchTee_mvgd_33535_lvgd_1172410002_8,0.031036136591570136,0.007852142557667245,0.002496074207024284,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.024922799999993 47.52945199624177, 10.024782500000002 47.529477996241745, 10.0245203 47.52951009624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_40_LVCableDist_mvgd_33535_lvgd_1172410002_54,BranchTee_mvgd_33535_lvgd_1172410002_40,BranchTee_mvgd_33535_lvgd_1172410002_54,0.020480027982157152,0.00518144707948576,0.0016471015796238925,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023231000000004 47.52820609624163, 10.023293000000002 47.5283065962417, 10.023311800000007 47.52838089624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_40_LVCableDist_mvgd_33535_lvgd_1172410002_building_444648,BranchTee_mvgd_33535_lvgd_1172410002_40,BranchTee_mvgd_33535_lvgd_1172410002_building_444648,0.01732244807025409,0.015035884924980552,0.0014747840487518958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023323099999994 47.52806324626409, 10.023231000000004 47.52820609624163)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_40_LVCableDist_mvgd_33535_lvgd_1172410002_building_444660,BranchTee_mvgd_33535_lvgd_1172410002_40,BranchTee_mvgd_33535_lvgd_1172410002_building_444660,0.014510281412067632,0.012594924265674705,0.001235364163461717,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02305028012091 47.528251188098615, 10.023231000000004 47.52820609624163)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_41_LVCableDist_mvgd_33535_lvgd_1172410002_42,BranchTee_mvgd_33535_lvgd_1172410002_41,BranchTee_mvgd_33535_lvgd_1172410002_42,0.025894172202987592,0.006551225567355861,0.002082532893790588,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022774399999996 47.52981959624182, 10.022878999999998 47.52959759624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_41_LVCableDist_mvgd_33535_lvgd_1172410002_building_444674,BranchTee_mvgd_33535_lvgd_1172410002_41,BranchTee_mvgd_33535_lvgd_1172410002_building_444674,0.03207185385531397,0.027838369146412526,0.0027305065824351025,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022350050000975 47.52979724636293, 10.022774399999996 47.52981959624182)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_41_LVCableDist_mvgd_33535_lvgd_1172410002_building_444675,BranchTee_mvgd_33535_lvgd_1172410002_41,BranchTee_mvgd_33535_lvgd_1172410002_building_444675,0.016325650407519723,0.01417066455372712,0.0013899195257426919,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022938781326152 47.52991531469116, 10.022774399999996 47.52981959624182)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_42_LVCableDist_mvgd_33535_lvgd_1172410002_43,BranchTee_mvgd_33535_lvgd_1172410002_42,BranchTee_mvgd_33535_lvgd_1172410002_43,0.017962252102555816,0.004544449781946622,0.0014446100287313194,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022878999999998 47.52959759624177, 10.022885899999995 47.52943599624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_42_LVCableDist_mvgd_33535_lvgd_1172410002_building_444659,BranchTee_mvgd_33535_lvgd_1172410002_42,BranchTee_mvgd_33535_lvgd_1172410002_building_444659,0.018678622211431708,0.01621304407952272,0.0015902448648344122,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022631759840523 47.52958548539707, 10.022878999999998 47.52959759624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_42_LVCableDist_mvgd_33535_lvgd_1172410002_building_444678,BranchTee_mvgd_33535_lvgd_1172410002_42,BranchTee_mvgd_33535_lvgd_1172410002_building_444678,0.017072128775570978,0.01481860777719561,0.0014534725746810102,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023097825434373 47.52955777749231, 10.022878999999998 47.52959759624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_42_LVCableDist_mvgd_33535_lvgd_1172410002_building_444684,BranchTee_mvgd_33535_lvgd_1172410002_42,BranchTee_mvgd_33535_lvgd_1172410002_building_444684,0.04575674148757194,0.03971685161121244,0.003895599062849166,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023475850000741 47.52967344625063, 10.022878999999998 47.52959759624177)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_43_LVCableDist_mvgd_33535_lvgd_1172410002_building_444657,BranchTee_mvgd_33535_lvgd_1172410002_43,BranchTee_mvgd_33535_lvgd_1172410002_building_444657,0.020653403276367006,0.017927154043886562,0.001758372118126339,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022620950905434 47.5294836068547, 10.022885899999995 47.52943599624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_44_LVCableDist_mvgd_33535_lvgd_1172410002_45,BranchTee_mvgd_33535_lvgd_1172410002_44,BranchTee_mvgd_33535_lvgd_1172410002_45,0.018417532911832395,0.004659635826693596,0.0014812258839823585,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0228955 47.52890599624167, 10.022853499999995 47.52906929624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_44_LVCableDist_mvgd_33535_lvgd_1172410002_building_444651,BranchTee_mvgd_33535_lvgd_1172410002_44,BranchTee_mvgd_33535_lvgd_1172410002_building_444651,0.015288107651014559,0.013270077441080637,0.0013015860811287376,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022662970140262 47.52902201040693, 10.022853499999995 47.52906929624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_44_LVCableDist_mvgd_33535_lvgd_1172410002_building_444663,BranchTee_mvgd_33535_lvgd_1172410002_44,BranchTee_mvgd_33535_lvgd_1172410002_building_444663,0.011990354827441091,0.010407627990218868,0.0010208247683392263,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023012332244901 47.52907581216953, 10.022853499999995 47.52906929624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_45_LVCableDist_mvgd_33535_lvgd_1172410002_46,BranchTee_mvgd_33535_lvgd_1172410002_45,BranchTee_mvgd_33535_lvgd_1172410002_46,0.014865239235355782,0.003760905526545013,0.001195533475216601,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.0228955 47.52890599624167, 10.023074999999999 47.52896149624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_45_LVCableDist_mvgd_33535_lvgd_1172410002_50,BranchTee_mvgd_33535_lvgd_1172410002_45,BranchTee_mvgd_33535_lvgd_1172410002_50,0.026446080842086224,0.006690858453047815,0.00212692002021734,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022584500000002 47.52879829624168, 10.022667499999995 47.52883919624172, 10.0228955 47.52890599624167)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_46_LVCableDist_mvgd_33535_lvgd_1172410002_49,BranchTee_mvgd_33535_lvgd_1172410002_46,BranchTee_mvgd_33535_lvgd_1172410002_49,0.03132252221036686,0.007924598119222815,0.0025191067051005865,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023074999999999 47.52896149624171, 10.023467199999995 47.52905489624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_46_LVCableDist_mvgd_33535_lvgd_1172410002_building_444669,BranchTee_mvgd_33535_lvgd_1172410002_46,BranchTee_mvgd_33535_lvgd_1172410002_building_444669,0.018745812721426423,0.016271365442198135,0.0015959652740956105,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023292112642055 47.5288791265546, 10.023074999999999 47.52896149624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_47_LVCableDist_mvgd_33535_lvgd_1172410002_50,BranchTee_mvgd_33535_lvgd_1172410002_47,BranchTee_mvgd_33535_lvgd_1172410002_50,0.06553036161609142,0.01657918148887113,0.005270264387589002,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023292699999997 47.528455996241675, 10.022584500000002 47.52879829624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_47_LVCableDist_mvgd_33535_lvgd_1172410002_54,BranchTee_mvgd_33535_lvgd_1172410002_47,BranchTee_mvgd_33535_lvgd_1172410002_54,0.008467261675168024,0.0021422172038175103,0.0006809775891130949,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023311800000007 47.52838089624168, 10.023292699999997 47.528455996241675)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_47_LVCableDist_mvgd_33535_lvgd_1172410002_building_444642,BranchTee_mvgd_33535_lvgd_1172410002_47,BranchTee_mvgd_33535_lvgd_1172410002_building_444642,0.02791565227019873,0.0242307861705325,0.002376659379299259,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023531388808145 47.52864814567167, 10.023292699999997 47.528455996241675)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_47_LVCableDist_mvgd_33535_lvgd_1172410002_building_444666,BranchTee_mvgd_33535_lvgd_1172410002_47,BranchTee_mvgd_33535_lvgd_1172410002_building_444666,0.025543997273596023,0.02217218963348135,0.0021747434062250734,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023251767961936 47.528684220974874, 10.023292699999997 47.528455996241675)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_48_LVCableDist_mvgd_33535_lvgd_1172410002_49,BranchTee_mvgd_33535_lvgd_1172410002_48,BranchTee_mvgd_33535_lvgd_1172410002_49,0.025284992640277223,0.006397103137990137,0.002033539766394033,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023467199999995 47.52905489624168, 10.023795299999993 47.52910259624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_48_LVCableDist_mvgd_33535_lvgd_1172410002_building_444681,BranchTee_mvgd_33535_lvgd_1172410002_48,BranchTee_mvgd_33535_lvgd_1172410002_building_444681,0.028783455241561194,0.024984039149675116,0.0024505416605123025,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024032285387158 47.52889941748253, 10.023795299999993 47.52910259624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_48_LVCableDist_mvgd_33535_lvgd_1172410002_building_444691,BranchTee_mvgd_33535_lvgd_1172410002_48,BranchTee_mvgd_33535_lvgd_1172410002_building_444691,0.01976191552272027,0.017153342673721195,0.001682473381792787,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024006912492728 47.52899752861861, 10.023795299999993 47.52910259624178)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_48_LVStation_mvgd_33535_lvgd_1172410002,BusBar_mvgd_33535_lvgd_1172410002_LV,BranchTee_mvgd_33535_lvgd_1172410002_48,0.038842076850491465,0.00982704544317434,0.003123865172062058,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.023795299999993 47.52910259624178, 10.0241888 47.5291508962417, 10.024302799999996 47.52916379624174)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_49_LVCableDist_mvgd_33535_lvgd_1172410002_building_444664,BranchTee_mvgd_33535_lvgd_1172410002_49,BranchTee_mvgd_33535_lvgd_1172410002_building_444664,0.011263329603251035,0.009776570095621898,0.0009589279048400686,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0233955000003 47.52896594624842, 10.023467199999995 47.52905489624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_49_LVCableDist_mvgd_33535_lvgd_1172410002_building_444665,BranchTee_mvgd_33535_lvgd_1172410002_49,BranchTee_mvgd_33535_lvgd_1172410002_building_444665,0.015800899467845506,0.013715180738089899,0.001345243720552776,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023588200000935 47.52893874627124, 10.023467199999995 47.52905489624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_49_LVCableDist_mvgd_33535_lvgd_1172410002_building_444670,BranchTee_mvgd_33535_lvgd_1172410002_49,BranchTee_mvgd_33535_lvgd_1172410002_building_444670,0.01737782181526671,0.015083949335651504,0.0014794984121913508,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023449067342643 47.529210819762746, 10.023467199999995 47.52905489624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_4_LVCableDist_mvgd_33535_lvgd_1172410002_building_444641,BranchTee_mvgd_33535_lvgd_1172410002_4,BranchTee_mvgd_33535_lvgd_1172410002_building_444641,0.020159415845828456,0.0174983729541791,0.0017163154307639331,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024774424784976 47.529054919073445, 10.025041899999994 47.52905869624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_4_LVCableDist_mvgd_33535_lvgd_1172410002_building_444747,BranchTee_mvgd_33535_lvgd_1172410002_4,BranchTee_mvgd_33535_lvgd_1172410002_building_444747,0.040894021288577276,0.03549601047848507,0.0034816008707959467,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.025452523458352 47.52881803893619, 10.025041899999994 47.52905869624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_50_LVCableDist_mvgd_33535_lvgd_1172410002_51,BranchTee_mvgd_33535_lvgd_1172410002_50,BranchTee_mvgd_33535_lvgd_1172410002_51,0.03427346571845816,0.008671186826769914,0.002756435663722746,0.16974097914174996,1,cable,NAYY 4x1x120,"LINESTRING (10.022584500000002 47.52879829624168, 10.022469199999998 47.528904896241684, 10.022439500000006 47.52900649624172, 10.022431699999995 47.52907899624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_51_LVCableDist_mvgd_33535_lvgd_1172410002_building_444644,BranchTee_mvgd_33535_lvgd_1172410002_51,BranchTee_mvgd_33535_lvgd_1172410002_building_444644,0.010806931866889581,0.009380416860460157,0.0009200714973194616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.02228845000017 47.52907429637833, 10.022431699999995 47.52907899624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_51_LVCableDist_mvgd_33535_lvgd_1172410002_building_444649,BranchTee_mvgd_33535_lvgd_1172410002_51,BranchTee_mvgd_33535_lvgd_1172410002_building_444649,0.01822694369506292,0.015820987127314615,0.0015517902383057013,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022591034185261 47.52920242596224, 10.022431699999995 47.52907899624171)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_52_LVCableDist_mvgd_33535_lvgd_1172410002_building_444652,BranchTee_mvgd_33535_lvgd_1172410002_52,BranchTee_mvgd_33535_lvgd_1172410002_building_444652,0.01669997737673947,0.014495580363009861,0.0014217886611549609,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.022484245100356 47.52938192196093, 10.022333649624223 47.529271647495754)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_53_LVCableDist_mvgd_33535_lvgd_1172410002_building_444629,BranchTee_mvgd_33535_lvgd_1172410002_53,BranchTee_mvgd_33535_lvgd_1172410002_building_444629,0.012528541718116876,0.010874774211325449,0.001066644472251572,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.021004800000389 47.52747194624771, 10.020913299999995 47.52756609624161)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_53_LVCableDist_mvgd_33535_lvgd_1172410002_building_444640,BranchTee_mvgd_33535_lvgd_1172410002_53,BranchTee_mvgd_33535_lvgd_1172410002_building_444640,0.011832764728364094,0.010270839784220033,0.0010074079947159254,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.020775125484871 47.52761669303924, 10.020913299999995 47.52756609624161)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_54_LVCableDist_mvgd_33535_lvgd_1172410002_building_444662,BranchTee_mvgd_33535_lvgd_1172410002_54,BranchTee_mvgd_33535_lvgd_1172410002_building_444662,0.01437289062079404,0.012475669058849228,0.0012236671015571912,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.023499160413548 47.5283566568211, 10.023311800000007 47.52838089624168)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_5_LVCableDist_mvgd_33535_lvgd_1172410002_building_444758,BranchTee_mvgd_33535_lvgd_1172410002_5,BranchTee_mvgd_33535_lvgd_1172410002_building_444758,0.11969043316048907,0.1038912959833045,0.010190103667645459,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029672407422868 47.5273371947566, 10.031248600000005 47.52747019624157)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_5_LVCableDist_mvgd_33535_lvgd_1172410002_building_444759,BranchTee_mvgd_33535_lvgd_1172410002_5,BranchTee_mvgd_33535_lvgd_1172410002_building_444759,0.1086075405189496,0.09427134517044825,0.009246537653449152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029827639886632 47.527306677384416, 10.031248600000005 47.52747019624157)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_6_LVCableDist_mvgd_33535_lvgd_1172410002_building_444842,BranchTee_mvgd_33535_lvgd_1172410002_6,BranchTee_mvgd_33535_lvgd_1172410002_building_444842,0.016786239916154275,0.01457045624722191,0.0014291328088538212,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032968899990385 47.5270308462695, 10.0327695 47.526963496241514)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_7_LVCableDist_mvgd_33535_lvgd_1172410002_building_444845,BranchTee_mvgd_33535_lvgd_1172410002_7,BranchTee_mvgd_33535_lvgd_1172410002_building_444845,0.014037717902880685,0.012184739139700435,0.0011951314479387944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032133129908537 47.527066967881424, 10.031991499999995 47.52698489624154)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_8_LVCableDist_mvgd_33535_lvgd_1172410002_building_444650,BranchTee_mvgd_33535_lvgd_1172410002_8,BranchTee_mvgd_33535_lvgd_1172410002_building_444650,0.016822470007315855,0.014601903966350162,0.0014322173359549114,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.024528338687684 47.52935878517968, 10.0245203 47.52951009624173)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_9_LVCableDist_mvgd_33535_lvgd_1172410002_building_444740,BranchTee_mvgd_33535_lvgd_1172410002_9,BranchTee_mvgd_33535_lvgd_1172410002_building_444740,0.037162443658864334,0.032257001095894244,0.003163904945678399,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026310800005843 47.528930046287414, 10.026377 47.52926149624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1172410002_9_LVCableDist_mvgd_33535_lvgd_1172410002_building_444750,BranchTee_mvgd_33535_lvgd_1172410002_9,BranchTee_mvgd_33535_lvgd_1172410002_building_444750,0.017210386133991055,0.014938615164304236,0.0014652434136521275,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.026517876331 47.52913957022339, 10.026377 47.52926149624172)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_1_LVCableDist_mvgd_33535_lvgd_1172430000_2,BranchTee_mvgd_33535_lvgd_1172430000_1,BranchTee_mvgd_33535_lvgd_1172430000_2,0.0527560295149204,0.045792233618950906,0.0044914985739049505,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040536699999999 47.52226849624113, 10.040700900000001 47.52235549624113, 10.0411737 47.522446996241115)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_1_LVCableDist_mvgd_33535_lvgd_1172430000_building_444578,BranchTee_mvgd_33535_lvgd_1172430000_1,BranchTee_mvgd_33535_lvgd_1172430000_building_444578,0.013222086126423583,0.01147677075773567,0.0011256908741413946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041102630615764 47.52233819319688, 10.0411737 47.522446996241115)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_1_LVCableDist_mvgd_33535_lvgd_1172430000_building_444604,BranchTee_mvgd_33535_lvgd_1172430000_1,BranchTee_mvgd_33535_lvgd_1172430000_building_444604,0.09926358214834202,0.08616078930476087,0.008451019566093057,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041016959043139 47.52333406589539, 10.0411737 47.522446996241115)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_2_LVCableDist_mvgd_33535_lvgd_1172430000_3,BranchTee_mvgd_33535_lvgd_1172430000_2,BranchTee_mvgd_33535_lvgd_1172430000_3,0.047006434383305595,0.04080158504470926,0.00400199436800418,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040536699999999 47.52226849624113, 10.040655800000001 47.5222442962411, 10.0410797 47.52206519624106)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_2_LVCableDist_mvgd_33535_lvgd_1172430000_building_444566,BranchTee_mvgd_33535_lvgd_1172430000_2,BranchTee_mvgd_33535_lvgd_1172430000_building_444566,0.022169806959887368,0.019243392441182235,0.0018874744225381914,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040370300005193 47.522433046265725, 10.040536699999999 47.52226849624113)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_2_LVStation_mvgd_33535_lvgd_1172430000,BusBar_mvgd_33535_lvgd_1172430000_LV,BranchTee_mvgd_33535_lvgd_1172430000_2,0.02019307357100023,0.0175275878596282,0.0017191809539278237,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040536699999999 47.52226849624113, 10.0404391 47.52231549624108, 10.040297599999995 47.522345496241094)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_3_LVCableDist_mvgd_33535_lvgd_1172430000_building_444597,BranchTee_mvgd_33535_lvgd_1172430000_3,BranchTee_mvgd_33535_lvgd_1172430000_building_444597,0.030562818879564496,0.02652852678746198,0.0026020316288824555,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040700902597791 47.52196696232094, 10.0410797 47.52206519624106)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_4_LVCableDist_mvgd_33535_lvgd_1172430000_5,BranchTee_mvgd_33535_lvgd_1172430000_4,BranchTee_mvgd_33535_lvgd_1172430000_5,0.1310459785138834,0.11374790935005077,0.011156882559644124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039417400000005 47.522368396241106, 10.039368299999998 47.52231289624109, 10.039200000000003 47.5221774962411, 10.03895939999999 47.52206639624111, 10.038673999999995 47.52193949624107, 10.038411299999995 47.521815196241114, 10.038031700000007 47.52167859624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_4_LVCableDist_mvgd_33535_lvgd_1172430000_6,BranchTee_mvgd_33535_lvgd_1172430000_4,BranchTee_mvgd_33535_lvgd_1172430000_6,0.04623416584783506,0.04013125595592083,0.0039362456174323315,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039417400000005 47.522368396241106, 10.039450099999996 47.522515796241116, 10.039470000000003 47.522660696241125, 10.039506300000001 47.52273269624114, 10.039540199999996 47.52277189624116)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_4_LVStation_mvgd_33535_lvgd_1172430000,BusBar_mvgd_33535_lvgd_1172430000_LV,BranchTee_mvgd_33535_lvgd_1172430000_4,0.06638337159547605,0.05762076654487321,0.0056516917894239484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039417400000005 47.522368396241106, 10.039869100000004 47.52235589624108, 10.040014799999993 47.52235189624114, 10.040297599999995 47.522345496241094)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_5_LVCableDist_mvgd_33535_lvgd_1172430000_building_444591,BranchTee_mvgd_33535_lvgd_1172430000_5,BranchTee_mvgd_33535_lvgd_1172430000_building_444591,0.010254787579662614,0.00890115561914715,0.0008730635002910213,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.038022831644493 47.521586494878775, 10.038031700000007 47.52167859624104)" +Branch_LVCableDist_mvgd_33535_lvgd_1172430000_6_LVCableDist_mvgd_33535_lvgd_1172430000_building_444600,BranchTee_mvgd_33535_lvgd_1172430000_6,BranchTee_mvgd_33535_lvgd_1172430000_building_444600,0.027149552323012974,0.023565811416375263,0.0023114358048208134,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039899748014024 47.52278719177581, 10.039540199999996 47.52277189624116)" +Branch_LVCableDist_mvgd_33535_lvgd_1172440000_1_LVCableDist_mvgd_33535_lvgd_1172440000_building_444615,BranchTee_mvgd_33535_lvgd_1172440000_1,BranchTee_mvgd_33535_lvgd_1172440000_building_444615,0.010200711792594665,0.00885421783597217,0.0008684596413059589,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04586895827317 47.524112767798755, 10.046000599999996 47.52409139624131)" +Branch_LVCableDist_mvgd_33535_lvgd_1172440000_1_LVCableDist_mvgd_33535_lvgd_1172440000_building_444619,BranchTee_mvgd_33535_lvgd_1172440000_1,BranchTee_mvgd_33535_lvgd_1172440000_building_444619,0.028743707742997768,0.024949538320922064,0.0024471576713312473,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04596457672215 47.523833847140395, 10.046000599999996 47.52409139624131)" +Branch_LVCableDist_mvgd_33535_lvgd_1172440000_1_LVCableDist_mvgd_33535_lvgd_1172440000_building_444620,BranchTee_mvgd_33535_lvgd_1172440000_1,BranchTee_mvgd_33535_lvgd_1172440000_building_444620,0.017334718829445706,0.015046535943958873,0.001475828746351708,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.046066294381768 47.52394187363385, 10.046000599999996 47.52409139624131)" +Branch_LVCableDist_mvgd_33535_lvgd_1172440000_1_LVStation_mvgd_33535_lvgd_1172440000,BusBar_mvgd_33535_lvgd_1172440000_LV,BranchTee_mvgd_33535_lvgd_1172440000_1,0.01089694703805134,0.009458550029028564,0.000927735133431207,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.046000599999996 47.52409139624131, 10.045975599999997 47.52399479624128)" +Branch_LVCableDist_mvgd_33535_lvgd_1172710000_1_LVCableDist_mvgd_33535_lvgd_1172710000_building_444985,BranchTee_mvgd_33535_lvgd_1172710000_1,BranchTee_mvgd_33535_lvgd_1172710000_building_444985,0.05081248086454477,0.04410523339042486,0.004326030359717069,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036075699999557 47.547843446249765, 10.036733600000005 47.547742396243365)" +Branch_LVCableDist_mvgd_33535_lvgd_1172710000_1_LVCableDist_mvgd_33535_lvgd_1172710000_building_444987,BranchTee_mvgd_33535_lvgd_1172710000_1,BranchTee_mvgd_33535_lvgd_1172710000_building_444987,0.0375029852540318,0.0325525912004996,0.003192897690263497,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036358226693853 47.547964142025236, 10.036733600000005 47.547742396243365)" +Branch_LVCableDist_mvgd_33535_lvgd_1172710000_1_LVCableDist_mvgd_33535_lvgd_1172710000_building_444990,BranchTee_mvgd_33535_lvgd_1172710000_1,BranchTee_mvgd_33535_lvgd_1172710000_building_444990,0.01716904428358689,0.014902730438153421,0.0014617236858818568,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036708296535181 47.547895968438084, 10.036733600000005 47.547742396243365)" +Branch_LVCableDist_mvgd_33535_lvgd_1172710000_1_LVStation_mvgd_33535_lvgd_1172710000,BusBar_mvgd_33535_lvgd_1172710000_LV,BranchTee_mvgd_33535_lvgd_1172710000_1,0.05739881367074498,0.049822170266206646,0.004886772035660388,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.036733600000005 47.547742396243365, 10.036562200000008 47.54771059624336, 10.036414800000001 47.547711096243404, 10.036306599999996 47.54777099624341, 10.036098400000006 47.5479147962434)" +Branch_LVCableDist_mvgd_33535_lvgd_1172750000_building_444519_LVStation_mvgd_33535_lvgd_1172750000,BusBar_mvgd_33535_lvgd_1172750000_LV,BranchTee_mvgd_33535_lvgd_1172750000_building_444519,0.02694438223679172,0.023387723781535214,0.0022939682061758073,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.029424200021836 47.52213244629488, 10.029131799999996 47.52199289624106)" +Branch_LVCableDist_mvgd_33535_lvgd_1172800000_building_444525_LVStation_mvgd_33535_lvgd_1172800000,BusBar_mvgd_33535_lvgd_1172800000_LV,BranchTee_mvgd_33535_lvgd_1172800000_building_444525,0.03247891036843171,0.028191694199798722,0.0027651622182928003,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032539424906318 47.51981720167042, 10.032533199999994 47.5201094962409)" +Branch_LVCableDist_mvgd_33535_lvgd_1172800000_building_444530_LVStation_mvgd_33535_lvgd_1172800000,BusBar_mvgd_33535_lvgd_1172800000_LV,BranchTee_mvgd_33535_lvgd_1172800000_building_444530,0.017757925635612872,0.015413879451711974,0.0015118593723075357,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.032385631534533 47.519984896394725, 10.032533199999994 47.5201094962409)" +Branch_LVCableDist_mvgd_33535_lvgd_1173300000_building_444973_LVStation_mvgd_33535_lvgd_1173300000,BusBar_mvgd_33535_lvgd_1173300000_LV,BranchTee_mvgd_33535_lvgd_1173300000_building_444973,0.021869549909770174,0.018982769321680512,0.0018619113897473164,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.033094871681627 47.54788727096989, 10.032806700000002 47.54786329624343)" +Branch_LVCableDist_mvgd_33535_lvgd_1176060000_building_445950_LVStation_mvgd_33535_lvgd_1176060000,BusBar_mvgd_33535_lvgd_1176060000_LV,BranchTee_mvgd_33535_lvgd_1176060000_building_445950,0.016754195914448093,0.014542642053740945,0.0014264046735242885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041225318939833 47.54934303783623, 10.041373199999999 47.5492303962435)" +Branch_LVCableDist_mvgd_33535_lvgd_1176060000_building_446228_LVStation_mvgd_33535_lvgd_1176060000,BusBar_mvgd_33535_lvgd_1176060000_LV,BranchTee_mvgd_33535_lvgd_1176060000_building_446228,0.020398358014770673,0.017705774756820943,0.0017366582886498966,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041548768597277 47.54909061181894, 10.041373199999999 47.5492303962435)" +Branch_LVCableDist_mvgd_33535_lvgd_1176320000_1_LVCableDist_mvgd_33535_lvgd_1176320000_2,BranchTee_mvgd_33535_lvgd_1176320000_1,BranchTee_mvgd_33535_lvgd_1176320000_2,0.17994473923246934,0.1561920336537834,0.015319984219353619,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041816399999998 47.52007819624095, 10.042290351708246 47.51989164727856, 10.042764300000002 47.51970509624092, 10.04303460000001 47.51957639624085, 10.0433253 47.51941649624082, 10.043429700000006 47.5192810962408, 10.043569200000004 47.519142596240854, 10.043629599999994 47.519076496240814)" +Branch_LVCableDist_mvgd_33535_lvgd_1176320000_1_LVCableDist_mvgd_33535_lvgd_1176320000_building_34328622,BranchTee_mvgd_33535_lvgd_1176320000_1,BranchTee_mvgd_33535_lvgd_1176320000_building_34328622,0.18523001120522084,0.16077964972613168,0.015769957269762946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044273288172517 47.52003432301617, 10.041816399999998 47.52007819624095)" +Branch_LVCableDist_mvgd_33535_lvgd_1176320000_1_LVCableDist_mvgd_33535_lvgd_1176320000_building_34328623,BranchTee_mvgd_33535_lvgd_1176320000_1,BranchTee_mvgd_33535_lvgd_1176320000_building_34328623,0.2446814448731281,0.21238349414987517,0.02083148354441351,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045060002523103 47.51998398147169, 10.041816399999998 47.52007819624095)" +Branch_LVCableDist_mvgd_33535_lvgd_1176320000_1_LVCableDist_mvgd_33535_lvgd_1176320000_building_34328624,BranchTee_mvgd_33535_lvgd_1176320000_1,BranchTee_mvgd_33535_lvgd_1176320000_building_34328624,0.24398358414356425,0.21177775103661375,0.020772069663186267,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045048120618564 47.52020725732455, 10.041816399999998 47.52007819624095)" +Branch_LVCableDist_mvgd_33535_lvgd_1176320000_1_LVStation_mvgd_33535_lvgd_1176320000,BusBar_mvgd_33535_lvgd_1176320000_LV,BranchTee_mvgd_33535_lvgd_1176320000_1,0.49925091375828695,0.4333497931421931,0.0425048053802438,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041816399999998 47.52007819624095, 10.041783499999998 47.52009119624086, 10.041684100000005 47.52016999624092, 10.041645799999992 47.520225296240945, 10.041616300000001 47.52031119624094, 10.041604799999995 47.520605996241, 10.041578 47.52071529624095, 10.0414905 47.52088049624099, 10.041451000000002 47.521000396240986, 10.0414296 47.521290896241034, 10.041402300000003 47.521408696241025, 10.0413462 47.52149799624104, 10.041083599999997 47.521766696241116, 10.041392699999998 47.52191799624107, 10.041596200000003 47.521799796241076, 10.041855200000002 47.52171469624106, 10.042064000000003 47.521605996241036, 10.042195899999996 47.52152379624104, 10.042323199999997 47.52137529624103, 10.042446499999999 47.521268896241, 10.0425562 47.52120789624105, 10.042710500000004 47.52115929624102, 10.043308699999995 47.521051196241025, 10.043641199999998 47.52091059624097, 10.043830499999999 47.520877096241, 10.044004199999994 47.520866096241, 10.044431200000002 47.520851296240956)" +Branch_LVCableDist_mvgd_33535_lvgd_1176320000_2_LVCableDist_mvgd_33535_lvgd_1176320000_building_444616,BranchTee_mvgd_33535_lvgd_1176320000_2,BranchTee_mvgd_33535_lvgd_1176320000_building_444616,0.009409483758357071,0.008167431902253938,0.0008010967328367632,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043510500001982 47.51905109625182, 10.043629599999994 47.519076496240814)" +Branch_LVCableDist_mvgd_33535_lvgd_1176330000_building_444613_LVStation_mvgd_33535_lvgd_1176330000,BusBar_mvgd_33535_lvgd_1176330000_LV,BranchTee_mvgd_33535_lvgd_1176330000_building_444613,0.04885760525409628,0.04240840136055557,0.0041595978003068175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045760447689958 47.51740787622341, 10.0458033 47.51696909624063)" +Branch_LVCableDist_mvgd_33535_lvgd_1176460000_1_LVCableDist_mvgd_33535_lvgd_1176460000_building_444849,BranchTee_mvgd_33535_lvgd_1176460000_1,BranchTee_mvgd_33535_lvgd_1176460000_building_444849,0.39310965229659833,0.3412191781934473,0.033468239723747274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.037626799994149 47.53304354633651, 10.042069299999998 47.53118829624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1176460000_1_LVCableDist_mvgd_33535_lvgd_1176460000_building_444857,BranchTee_mvgd_33535_lvgd_1176460000_1,BranchTee_mvgd_33535_lvgd_1176460000_building_444857,0.2852865688940114,0.24762874180000188,0.024288488522042673,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.039897974412513 47.533291827955765, 10.042069299999998 47.53118829624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1176460000_1_LVCableDist_mvgd_33535_lvgd_1176460000_building_445003,BranchTee_mvgd_33535_lvgd_1176460000_1,BranchTee_mvgd_33535_lvgd_1176460000_building_445003,0.02042915765448903,0.017732508844096478,0.0017392804825326386,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04190014998923 47.53133199636196, 10.042069299999998 47.53118829624196)" +Branch_LVCableDist_mvgd_33535_lvgd_1176460000_1_LVStation_mvgd_33535_lvgd_1176460000,BusBar_mvgd_33535_lvgd_1176460000_LV,BranchTee_mvgd_33535_lvgd_1176460000_1,0.32961326800662577,0.28610431662975117,0.028062337837103695,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042069299999998 47.53118829624196, 10.041674000000004 47.531042896241935, 10.0415141 47.5310170962419, 10.041385699999996 47.531024696241886, 10.041275500000001 47.5310436962419, 10.0411722 47.531102896241904, 10.041078699999998 47.53123739624192, 10.04086973061229 47.53170072200155, 10.040660757483135 47.53216404725482, 10.04045178061242 47.53262737200165, 10.040242799999996 47.53309069624208, 10.040137799999998 47.53328529624212)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_10_LVCableDist_mvgd_33535_lvgd_1176560000_11,BranchTee_mvgd_33535_lvgd_1176560000_10,BranchTee_mvgd_33535_lvgd_1176560000_11,0.026465919360128445,0.022972418004591492,0.002253233235254772,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044170600000003 47.536747496242405, 10.044025999999999 47.53668999624234, 10.043892200000004 47.5366046962424)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_10_LVCableDist_mvgd_33535_lvgd_1176560000_9,BranchTee_mvgd_33535_lvgd_1176560000_9,BranchTee_mvgd_33535_lvgd_1176560000_10,0.0948807740966622,0.08235651191590278,0.00807787973174954,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043892200000004 47.5366046962424, 10.043788300000003 47.536513796242374, 10.043692599999993 47.536449096242386, 10.0435838 47.53640929624238, 10.043391 47.5364408962424, 10.043056700000001 47.536584096242414, 10.042870899999995 47.53668409624241)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_10_LVCableDist_mvgd_33535_lvgd_1176560000_building_445010,BranchTee_mvgd_33535_lvgd_1176560000_10,BranchTee_mvgd_33535_lvgd_1176560000_building_445010,0.02843372623372428,0.024680474370872674,0.002420766725696398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043556399990953 47.536721496274566, 10.043892200000004 47.5366046962424)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_10_LVCableDist_mvgd_33535_lvgd_1176560000_building_445013,BranchTee_mvgd_33535_lvgd_1176560000_10,BranchTee_mvgd_33535_lvgd_1176560000_building_445013,0.014016155505177392,0.012166022978493975,0.0011932956866158744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04371820685196 47.53664934542272, 10.043892200000004 47.5366046962424)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_11_LVCableDist_mvgd_33535_lvgd_1176560000_12,BranchTee_mvgd_33535_lvgd_1176560000_11,BranchTee_mvgd_33535_lvgd_1176560000_12,0.02439641538857083,0.02117608855727948,0.002077041542619662,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044170600000003 47.536747496242405, 10.0440461 47.53695019624244)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_11_LVCableDist_mvgd_33535_lvgd_1176560000_5,BranchTee_mvgd_33535_lvgd_1176560000_5,BranchTee_mvgd_33535_lvgd_1176560000_11,0.06024402672302976,0.052291815195589834,0.005129005397122486,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044868999999997 47.53701069624246, 10.044679999999998 47.536949996242434, 10.044170600000003 47.536747496242405)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_12_LVCableDist_mvgd_33535_lvgd_1176560000_building_445017,BranchTee_mvgd_33535_lvgd_1176560000_12,BranchTee_mvgd_33535_lvgd_1176560000_building_445017,0.014448386926475359,0.012541199852180612,0.0012300946426822645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04389519784497 47.537030446760255, 10.0440461 47.53695019624244)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_13_LVCableDist_mvgd_33535_lvgd_1176560000_14,BranchTee_mvgd_33535_lvgd_1176560000_13,BranchTee_mvgd_33535_lvgd_1176560000_14,0.015099571261480173,0.01310642785496479,0.0012855346281951277,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0428453 47.53876969624257, 10.043044899999991 47.53875739624261)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_13_LVCableDist_mvgd_33535_lvgd_1176560000_15,BranchTee_mvgd_33535_lvgd_1176560000_13,BranchTee_mvgd_33535_lvgd_1176560000_15,0.11936367617564093,0.10360767092045634,0.010162284505647231,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041793299999998 47.53854309624258, 10.0419019 47.538660096242616, 10.042209700000003 47.53868199624258, 10.042259900000003 47.53870599624258, 10.0422621 47.53876549624258, 10.042239000000004 47.53886489624261, 10.042260900000004 47.53889839624256, 10.042418700000002 47.538963296242564, 10.042463499999998 47.53897129624261, 10.042505800000006 47.5389587962426, 10.0427756 47.538791596242575, 10.0428453 47.53876969624257)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_13_LVCableDist_mvgd_33535_lvgd_1176560000_building_34328659,BranchTee_mvgd_33535_lvgd_1176560000_13,BranchTee_mvgd_33535_lvgd_1176560000_building_34328659,0.06178594515511148,0.053630200394636764,0.005260279954788244,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04271659751244 47.53822049173024, 10.0428453 47.53876969624257)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_14_LVCableDist_mvgd_33535_lvgd_1176560000_building_34328658,BranchTee_mvgd_33535_lvgd_1176560000_14,BranchTee_mvgd_33535_lvgd_1176560000_building_34328658,0.07530393639091613,0.0653638167873152,0.006411163349841781,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043325792000617 47.53810694274424, 10.043044899999991 47.53875739624261)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_15_LVCableDist_mvgd_33535_lvgd_1176560000_17,BranchTee_mvgd_33535_lvgd_1176560000_15,BranchTee_mvgd_33535_lvgd_1176560000_17,0.05209168357682657,0.045215581344685465,0.004434938046872034,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041793299999998 47.53854309624258, 10.041787300000005 47.53827419624253, 10.041774100000003 47.53821719624254, 10.041673000000005 47.538092596242514)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_15_LVCableDist_mvgd_33535_lvgd_1176560000_building_445019,BranchTee_mvgd_33535_lvgd_1176560000_15,BranchTee_mvgd_33535_lvgd_1176560000_building_445019,0.02100529753783567,0.018232598262841362,0.0017883313964891059,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04206669960398 47.53850602997704, 10.041793299999998 47.53854309624258)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_16_LVCableDist_mvgd_33535_lvgd_1176560000_17,BranchTee_mvgd_33535_lvgd_1176560000_16,BranchTee_mvgd_33535_lvgd_1176560000_17,0.08452109862502839,0.07336431360652465,0.0071958863741220175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041673000000005 47.538092596242514, 10.041990899999998 47.53793449624251, 10.042268699999996 47.53775219624252, 10.042364400000002 47.53764879624254, 10.0424287 47.537548696242524)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_16_LVCableDist_mvgd_33535_lvgd_1176560000_building_34328660,BranchTee_mvgd_33535_lvgd_1176560000_16,BranchTee_mvgd_33535_lvgd_1176560000_building_34328660,0.0805845616636919,0.06994739952408457,0.0068607407934075625,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.043384822583384 47.537873808057206, 10.0424287 47.537548696242524)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_16_LVStation_mvgd_33535_lvgd_1176560000,BusBar_mvgd_33535_lvgd_1176560000_LV,BranchTee_mvgd_33535_lvgd_1176560000_16,0.04629402963112279,0.04018321771981458,0.003941342249982918,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0424287 47.537548696242524, 10.042514499999998 47.53735159624248, 10.042497799999998 47.537197396242405, 10.042503699999997 47.537140996242435)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_17_LVCableDist_mvgd_33535_lvgd_1176560000_18,BranchTee_mvgd_33535_lvgd_1176560000_17,BranchTee_mvgd_33535_lvgd_1176560000_18,0.0179323337006611,0.015565265652173836,0.0015267079798059466,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041452799999995 47.538151896242546, 10.041587799999997 47.53812369624253, 10.041673000000005 47.538092596242514)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_18_LVCableDist_mvgd_33535_lvgd_1176560000_building_444988,BranchTee_mvgd_33535_lvgd_1176560000_18,BranchTee_mvgd_33535_lvgd_1176560000_building_444988,0.014682203914969076,0.012744152998193158,0.0012500011572556795,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041417181820865 47.53828181609229, 10.041452799999995 47.538151896242546)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_1_LVCableDist_mvgd_33535_lvgd_1176560000_3,BranchTee_mvgd_33535_lvgd_1176560000_1,BranchTee_mvgd_33535_lvgd_1176560000_3,0.05875388577391186,0.05099837285175549,0.005002139027355452,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040022499999992 47.536024796242394, 10.040196999999996 47.53600129624234, 10.040258800000004 47.53599289624235, 10.040532200000003 47.536307796242376)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_1_LVCableDist_mvgd_33535_lvgd_1176560000_building_34328652,BranchTee_mvgd_33535_lvgd_1176560000_1,BranchTee_mvgd_33535_lvgd_1176560000_building_34328652,0.0574416604950129,0.049859361309671196,0.004890419892632666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041214680154853 47.53607734556965, 10.040532200000003 47.536307796242376)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_1_LVStation_mvgd_33535_lvgd_1176560000,BusBar_mvgd_33535_lvgd_1176560000_LV,BranchTee_mvgd_33535_lvgd_1176560000_1,0.19776039037121734,0.17165601884221665,0.016836758177110313,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040532200000003 47.536307796242376, 10.040624299999996 47.53646269624237, 10.040684200000003 47.536559796242386, 10.040779199999992 47.536665796242396, 10.040971099999995 47.536809696242365, 10.041176299999998 47.536996796242384, 10.0413462 47.53710219624245, 10.041456999999996 47.53714129624244, 10.041554499999997 47.53716469624244, 10.041822800000002 47.53717679624242, 10.042503699999997 47.537140996242435)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_2_LVCableDist_mvgd_33535_lvgd_1176560000_3,BranchTee_mvgd_33535_lvgd_1176560000_2,BranchTee_mvgd_33535_lvgd_1176560000_3,0.008408252075499834,0.007298362801533856,0.0007158547099428703,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.040022499999992 47.536024796242394, 10.039934800000001 47.53597799624236)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_2_LVCableDist_mvgd_33535_lvgd_1176560000_building_444847,BranchTee_mvgd_33535_lvgd_1176560000_2,BranchTee_mvgd_33535_lvgd_1176560000_building_444847,0.018075117841804426,0.015689202286686244,0.0015388642162061882,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.03969852034931 47.53594982441468, 10.039934800000001 47.53597799624236)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_3_LVCableDist_mvgd_33535_lvgd_1176560000_building_444853,BranchTee_mvgd_33535_lvgd_1176560000_3,BranchTee_mvgd_33535_lvgd_1176560000_building_444853,0.023577225805942233,0.020465031999557858,0.0020072980673057446,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.04006238736667 47.53623526902197, 10.040022499999992 47.536024796242394)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_4_LVCableDist_mvgd_33535_lvgd_1176560000_5,BranchTee_mvgd_33535_lvgd_1176560000_4,BranchTee_mvgd_33535_lvgd_1176560000_5,0.11337996513514514,0.09841380973730599,0.009652848335939934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045623200000001 47.53777139624254, 10.045561800000002 47.53761119624248, 10.045504300000001 47.53757289624247, 10.045459100000004 47.537537496242514, 10.045373399999997 47.53747429624246, 10.045266999999999 47.5371029962424, 10.045135399999998 47.537096196242466, 10.044868999999997 47.53701069624246)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_4_LVCableDist_mvgd_33535_lvgd_1176560000_building_445048,BranchTee_mvgd_33535_lvgd_1176560000_4,BranchTee_mvgd_33535_lvgd_1176560000_building_445048,0.013845868173763182,0.012018213574826441,0.0011787979066799396,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045439803406266 47.53776337565402, 10.045623200000001 47.53777139624254)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_5_LVCableDist_mvgd_33535_lvgd_1176560000_6,BranchTee_mvgd_33535_lvgd_1176560000_5,BranchTee_mvgd_33535_lvgd_1176560000_6,0.02302377723249361,0.019984638637804454,0.0019601790270513757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044868999999997 47.53701069624246, 10.044979500000002 47.53720389624246)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_6_LVCableDist_mvgd_33535_lvgd_1176560000_7,BranchTee_mvgd_33535_lvgd_1176560000_6,BranchTee_mvgd_33535_lvgd_1176560000_7,0.03954092144951923,0.03432151981818269,0.003366401792067677,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044628100000002 47.53740489624244, 10.044775599999994 47.53741029624242, 10.044834600000003 47.5372961962425, 10.044979500000002 47.53720389624246)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_6_LVCableDist_mvgd_33535_lvgd_1176560000_8,BranchTee_mvgd_33535_lvgd_1176560000_6,BranchTee_mvgd_33535_lvgd_1176560000_8,0.030169837247921754,0.026187418731196083,0.002568574288473716,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044979500000002 47.53720389624246, 10.045081400000008 47.53746649624248)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_6_LVCableDist_mvgd_33535_lvgd_1176560000_building_445039,BranchTee_mvgd_33535_lvgd_1176560000_6,BranchTee_mvgd_33535_lvgd_1176560000_building_445039,0.013001433695645593,0.011285244447820374,0.0011069051526365623,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045144799994493 47.53723749627302, 10.044979500000002 47.53720389624246)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_7_LVCableDist_mvgd_33535_lvgd_1176560000_building_445036,BranchTee_mvgd_33535_lvgd_1176560000_7,BranchTee_mvgd_33535_lvgd_1176560000_building_445036,0.011791611093237524,0.01023511842893017,0.001003904291060029,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.044657921553679 47.537300711277254, 10.044628100000002 47.53740489624244)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_8_LVCableDist_mvgd_33535_lvgd_1176560000_building_445042,BranchTee_mvgd_33535_lvgd_1176560000_8,BranchTee_mvgd_33535_lvgd_1176560000_building_445042,0.01524137308082162,0.013229511834153166,0.0012976072325060549,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.045176849994494 47.53734554627292, 10.045081400000008 47.53746649624248)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_9_LVCableDist_mvgd_33535_lvgd_1176560000_building_34328653,BranchTee_mvgd_33535_lvgd_1176560000_9,BranchTee_mvgd_33535_lvgd_1176560000_building_34328653,0.09477491069291656,0.08226462248145157,0.008068866822110126,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.041926615420305 47.536120540616416, 10.042870899999995 47.53668409624241)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_9_LVCableDist_mvgd_33535_lvgd_1176560000_building_34328654,BranchTee_mvgd_33535_lvgd_1176560000_9,BranchTee_mvgd_33535_lvgd_1176560000_building_34328654,0.09112389376980135,0.07909553979218757,0.0077580296068333965,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042038750178303 47.53608893817889, 10.042870899999995 47.53668409624241)" +Branch_LVCableDist_mvgd_33535_lvgd_1176560000_9_LVStation_mvgd_33535_lvgd_1176560000,BusBar_mvgd_33535_lvgd_1176560000_LV,BranchTee_mvgd_33535_lvgd_1176560000_9,0.057915872287861846,0.05027097714586408,0.0049307929383469494,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.042870899999995 47.53668409624241, 10.042715699999995 47.53684699624241, 10.042611200000001 47.53698449624242, 10.042503699999997 47.537140996242435)" +Branch_LVCableDist_mvgd_33535_lvgd_1179290000_building_444339_LVStation_mvgd_33535_lvgd_1179290000,BusBar_mvgd_33535_lvgd_1179290000_LV,BranchTee_mvgd_33535_lvgd_1179290000_building_444339,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.052457218059649 47.50353283407351, 10.052457218059649 47.50353283407351)" +Branch_LVCableDist_mvgd_33535_lvgd_1182190000_1_LVCableDist_mvgd_33535_lvgd_1182190000_building_34328685,BranchTee_mvgd_33535_lvgd_1182190000_1,BranchTee_mvgd_33535_lvgd_1182190000_building_34328685,0.03209587002366149,0.02785921518053817,0.0027325512508242014,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055887305887195 47.55139465912342, 10.055750299999996 47.551668196243746)" +Branch_LVCableDist_mvgd_33535_lvgd_1182190000_1_LVCableDist_mvgd_33535_lvgd_1182190000_building_34328686,BranchTee_mvgd_33535_lvgd_1182190000_1,BranchTee_mvgd_33535_lvgd_1182190000_building_34328686,0.01851516540479239,0.016071163571359796,0.0015763286163853526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055987955138754 47.55171078520471, 10.055750299999996 47.551668196243746)" +Branch_LVCableDist_mvgd_33535_lvgd_1182190000_1_LVCableDist_mvgd_33535_lvgd_1182190000_building_34328687,BranchTee_mvgd_33535_lvgd_1182190000_1,BranchTee_mvgd_33535_lvgd_1182190000_building_34328687,0.08991945792235206,0.0780500894766016,0.007655487358280585,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.056941896860488 47.55171768968559, 10.055750299999996 47.551668196243746)" +Branch_LVCableDist_mvgd_33535_lvgd_1182190000_1_LVStation_mvgd_33535_lvgd_1182190000,BusBar_mvgd_33535_lvgd_1182190000_LV,BranchTee_mvgd_33535_lvgd_1182190000_1,0.029667039777988295,0.02575099052729384,0.002525767539369702,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.055750299999996 47.551668196243746, 10.0559142 47.551425396243694)" +Branch_LVCableDist_mvgd_33535_lvgd_1182340000_1_LVCableDist_mvgd_33535_lvgd_1182340000_2,BranchTee_mvgd_33535_lvgd_1182340000_1,BranchTee_mvgd_33535_lvgd_1182340000_2,0.033234885592362026,0.028847880694170238,0.002829523802578255,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.060847100000002 47.55115819624369, 10.061142999999996 47.5509362962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1182340000_1_LVCableDist_mvgd_33535_lvgd_1182340000_building_446312,BranchTee_mvgd_33535_lvgd_1182340000_1,BranchTee_mvgd_33535_lvgd_1182340000_building_446312,0.04198093949793807,0.036439455484210244,0.0035741380012847875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0605918789901 47.55082229963759, 10.060847100000002 47.55115819624369)" +Branch_LVCableDist_mvgd_33535_lvgd_1182340000_2_LVCableDist_mvgd_33535_lvgd_1182340000_building_446311,BranchTee_mvgd_33535_lvgd_1182340000_2,BranchTee_mvgd_33535_lvgd_1182340000_building_446311,0.026100174282175207,0.02265495127692808,0.0022220947377001917,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.061474533859258 47.55086795747276, 10.061142999999996 47.5509362962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1182340000_2_LVCableDist_mvgd_33535_lvgd_1182340000_building_446313,BranchTee_mvgd_33535_lvgd_1182340000_2,BranchTee_mvgd_33535_lvgd_1182340000_building_446313,0.018293607719293534,0.015878851500346788,0.0015574658240636835,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.06090809999781 47.5509781462554, 10.061142999999996 47.5509362962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1182340000_2_LVCableDist_mvgd_33535_lvgd_1182340000_building_446318,BranchTee_mvgd_33535_lvgd_1182340000_2,BranchTee_mvgd_33535_lvgd_1182340000_building_446318,0.026146759132690177,0.022695386927175074,0.002226060839614559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.061002178327964 47.55072120271452, 10.061142999999996 47.5509362962437)" +Branch_LVCableDist_mvgd_33535_lvgd_1182340000_2_LVStation_mvgd_33535_lvgd_1182340000,BusBar_mvgd_33535_lvgd_1182340000_LV,BranchTee_mvgd_33535_lvgd_1182340000_2,0.019631469654625026,0.017040115660214523,0.0016713675909304196,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.061142999999996 47.5509362962437, 10.061261999999997 47.55077909624365)" +Branch_LVCableDist_mvgd_33535_lvgd_1184650000_building_445056_LVStation_mvgd_33535_lvgd_1184650000,BusBar_mvgd_33535_lvgd_1184650000_LV,BranchTee_mvgd_33535_lvgd_1184650000_building_445056,0.017977218281424453,0.015604225468276426,0.0015305293255808766,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065421500002595 47.50913729628133, 10.065379699999998 47.50929659623996)" +Branch_LVCableDist_mvgd_33535_lvgd_1184650000_building_445057_LVStation_mvgd_33535_lvgd_1184650000,BusBar_mvgd_33535_lvgd_1184650000_LV,BranchTee_mvgd_33535_lvgd_1184650000_building_445057,0.018606310822534916,0.01615027779396031,0.0015840884784821152,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.065171372422327 47.50938641432082, 10.065379699999998 47.50929659623996)" +Branch_LVCableDist_mvgd_33535_lvgd_1185140000_building_444438_LVStation_mvgd_33535_lvgd_1185140000,BusBar_mvgd_33535_lvgd_1185140000_LV,BranchTee_mvgd_33535_lvgd_1185140000_building_444438,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.066793690589224 47.496823412565696, 10.066793690589224 47.496823412565696)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_10_LVCableDist_mvgd_33535_lvgd_1186110000_5,BranchTee_mvgd_33535_lvgd_1186110000_5,BranchTee_mvgd_33535_lvgd_1186110000_10,0.027099405895289124,0.02352228431711096,0.0023071664803345116,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077770300000001 47.46036909623536, 10.077858099999997 47.4603042962354, 10.0780289 47.46020019623542)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_10_LVCableDist_mvgd_33535_lvgd_1186110000_building_422717,BranchTee_mvgd_33535_lvgd_1186110000_10,BranchTee_mvgd_33535_lvgd_1186110000_building_422717,0.020220195241136125,0.017551129469306155,0.0017214900159223934,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078029088294167 47.460018199860365, 10.0780289 47.46020019623542)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_10_LVCableDist_mvgd_33535_lvgd_1186110000_building_422737,BranchTee_mvgd_33535_lvgd_1186110000_10,BranchTee_mvgd_33535_lvgd_1186110000_building_422737,0.05103605557268055,0.04429929623708672,0.004345064875619542,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077558718005715 47.4598699799227, 10.0780289 47.46020019623542)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_10_LVStation_mvgd_33535_lvgd_1186110000,BusBar_mvgd_33535_lvgd_1186110000_LV,BranchTee_mvgd_33535_lvgd_1186110000_10,0.011345530316289404,0.009847920314539203,0.0009659262401731206,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0780289 47.46020019623542, 10.0781729 47.4601707962354)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_11_LVCableDist_mvgd_33535_lvgd_1186110000_building_422699,BranchTee_mvgd_33535_lvgd_1186110000_11,BranchTee_mvgd_33535_lvgd_1186110000_building_422699,0.021690926092688235,0.01882772384845339,0.001846703865089645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07500087533002 47.45990087202393, 10.074820499999996 47.46005289623538)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_11_LVCableDist_mvgd_33535_lvgd_1186110000_building_422700,BranchTee_mvgd_33535_lvgd_1186110000_11,BranchTee_mvgd_33535_lvgd_1186110000_building_422700,0.02012063136735905,0.017464708026867656,0.0017130134303795842,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.074599950011214 47.46015469625085, 10.074820499999996 47.46005289623538)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_12_LVCableDist_mvgd_33535_lvgd_1186110000_13,BranchTee_mvgd_33535_lvgd_1186110000_12,BranchTee_mvgd_33535_lvgd_1186110000_13,0.04753868691517715,0.04126358024237377,0.004047308837456099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078551200000003 47.45992399623537, 10.078772199999998 47.45952329623531)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_12_LVCableDist_mvgd_33535_lvgd_1186110000_19,BranchTee_mvgd_33535_lvgd_1186110000_12,BranchTee_mvgd_33535_lvgd_1186110000_19,0.01869739873227398,0.016229342099613814,0.0015918434445107337,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078551200000003 47.45992399623537, 10.078798999999997 47.45992399623537)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_12_LVStation_mvgd_33535_lvgd_1186110000,BusBar_mvgd_33535_lvgd_1186110000_LV,BranchTee_mvgd_33535_lvgd_1186110000_12,0.03958616901767083,0.03436079470733828,0.003370254041558289,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0781729 47.4601707962354, 10.078357000000002 47.460046296235426, 10.078551200000003 47.45992399623537)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_13_LVCableDist_mvgd_33535_lvgd_1186110000_14,BranchTee_mvgd_33535_lvgd_1186110000_13,BranchTee_mvgd_33535_lvgd_1186110000_14,0.012864461530452231,0.011166352608432536,0.0010952437313679912,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078772199999998 47.45952329623531, 10.0788333 47.45941519623528)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_13_LVCableDist_mvgd_33535_lvgd_1186110000_building_422722,BranchTee_mvgd_33535_lvgd_1186110000_13,BranchTee_mvgd_33535_lvgd_1186110000_building_422722,0.02683690095637273,0.02329443003013153,0.0022848175551097175,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078452413762895 47.45941756872113, 10.078772199999998 47.45952329623531)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_13_LVCableDist_mvgd_33535_lvgd_1186110000_building_422723,BranchTee_mvgd_33535_lvgd_1186110000_13,BranchTee_mvgd_33535_lvgd_1186110000_building_422723,0.019377331543702716,0.016819523779933957,0.001649730993686883,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078567846235504 47.45941767170683, 10.078772199999998 47.45952329623531)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_14_LVCableDist_mvgd_33535_lvgd_1186110000_15,BranchTee_mvgd_33535_lvgd_1186110000_14,BranchTee_mvgd_33535_lvgd_1186110000_15,0.011102246636063658,0.009636750080103255,0.0009452137583424088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0788333 47.45941519623528, 10.078886000000006 47.45932189623534)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_14_LVCableDist_mvgd_33535_lvgd_1186110000_23,BranchTee_mvgd_33535_lvgd_1186110000_14,BranchTee_mvgd_33535_lvgd_1186110000_23,0.01532981522050149,0.013306279611395293,0.0013051369451834067,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0788333 47.45941519623528, 10.079023500000003 47.459463696235325)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_14_LVCableDist_mvgd_33535_lvgd_1186110000_building_422706,BranchTee_mvgd_33535_lvgd_1186110000_14,BranchTee_mvgd_33535_lvgd_1186110000_building_422706,0.01156898127547664,0.010041875747113724,0.0009849502204414484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078680057347183 47.45941859727809, 10.0788333 47.45941519623528)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_15_LVCableDist_mvgd_33535_lvgd_1186110000_16,BranchTee_mvgd_33535_lvgd_1186110000_15,BranchTee_mvgd_33535_lvgd_1186110000_16,0.01001330825374951,0.008691551564254574,0.0008525046360637675,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078886000000006 47.45932189623534, 10.0789731 47.45925389623529)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_15_LVCableDist_mvgd_33535_lvgd_1186110000_building_422734,BranchTee_mvgd_33535_lvgd_1186110000_15,BranchTee_mvgd_33535_lvgd_1186110000_building_422734,0.02231323752189075,0.01936789016900117,0.0018996856933752124,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078692863257478 47.4591698155983, 10.078886000000006 47.45932189623534)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_16_LVCableDist_mvgd_33535_lvgd_1186110000_17,BranchTee_mvgd_33535_lvgd_1186110000_16,BranchTee_mvgd_33535_lvgd_1186110000_17,0.026583977006632894,0.02307489204175735,0.002263284328102147,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0789731 47.45925389623529, 10.079164000000004 47.45922219623532, 10.079314599999998 47.45919509623528)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_16_LVCableDist_mvgd_33535_lvgd_1186110000_building_422741,BranchTee_mvgd_33535_lvgd_1186110000_16,BranchTee_mvgd_33535_lvgd_1186110000_building_422741,0.0156885959893981,0.013617701318797552,0.0013356825212371903,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078792480021814 47.45918395283947, 10.0789731 47.45925389623529)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_17_LVCableDist_mvgd_33535_lvgd_1186110000_18,BranchTee_mvgd_33535_lvgd_1186110000_17,BranchTee_mvgd_33535_lvgd_1186110000_18,0.03250194897367767,0.028211691709152217,0.00276712365973482,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079314599999998 47.45919509623528, 10.079636099999998 47.45900039623526)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_17_LVCableDist_mvgd_33535_lvgd_1186110000_building_422718,BranchTee_mvgd_33535_lvgd_1186110000_17,BranchTee_mvgd_33535_lvgd_1186110000_building_422718,0.02206630570804992,0.01915355335458733,0.0018786626198058836,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07927017917089 47.458998788936896, 10.079314599999998 47.45919509623528)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_18_LVCableDist_mvgd_33535_lvgd_1186110000_building_422719,BranchTee_mvgd_33535_lvgd_1186110000_18,BranchTee_mvgd_33535_lvgd_1186110000_building_422719,0.020059112484510873,0.017411309636555437,0.0017077758873513952,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079370618513785 47.45900980582938, 10.079636099999998 47.45900039623526)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_18_LVCableDist_mvgd_33535_lvgd_1186110000_building_422724,BranchTee_mvgd_33535_lvgd_1186110000_18,BranchTee_mvgd_33535_lvgd_1186110000_building_422724,0.04613840317973024,0.040048133960005845,0.003928092655748502,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079209903541027 47.4587026229123, 10.079636099999998 47.45900039623526)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_18_LVCableDist_mvgd_33535_lvgd_1186110000_building_422725,BranchTee_mvgd_33535_lvgd_1186110000_18,BranchTee_mvgd_33535_lvgd_1186110000_building_422725,0.04142498820726078,0.03595688976390236,0.0035268058867910035,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079325197217791 47.458693097638644, 10.079636099999998 47.45900039623526)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_18_LVCableDist_mvgd_33535_lvgd_1186110000_building_422729,BranchTee_mvgd_33535_lvgd_1186110000_18,BranchTee_mvgd_33535_lvgd_1186110000_building_422729,0.03830678555451062,0.033250289861315216,0.0032613309657867043,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079426491866341 47.45868637160157, 10.079636099999998 47.45900039623526)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_19_LVCableDist_mvgd_33535_lvgd_1186110000_20,BranchTee_mvgd_33535_lvgd_1186110000_19,BranchTee_mvgd_33535_lvgd_1186110000_20,0.04284380647344906,0.03718842401895379,0.0036476000458247624,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078798999999997 47.45992399623537, 10.079086900000002 47.459880996235384, 10.079321299999998 47.459785896235346)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_19_LVCableDist_mvgd_33535_lvgd_1186110000_building_422736,BranchTee_mvgd_33535_lvgd_1186110000_19,BranchTee_mvgd_33535_lvgd_1186110000_building_422736,0.011495200460908352,0.00997783400006845,0.0009786687313593086,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078784279302987 47.459821015538786, 10.078798999999997 47.45992399623537)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_19_LVCableDist_mvgd_33535_lvgd_1186110000_building_422744,BranchTee_mvgd_33535_lvgd_1186110000_19,BranchTee_mvgd_33535_lvgd_1186110000_building_422744,0.014199061712197099,0.012324785566187081,0.0012088678017947666,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078896610529696 47.45981472920969, 10.078798999999997 47.45992399623537)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_1_LVCableDist_mvgd_33535_lvgd_1186110000_11,BranchTee_mvgd_33535_lvgd_1186110000_1,BranchTee_mvgd_33535_lvgd_1186110000_11,0.033540393221221265,0.029113061316020056,0.0028555338547363745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075233700000004 47.46016419623538, 10.074820499999996 47.46005289623538)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_1_LVCableDist_mvgd_33535_lvgd_1186110000_2,BranchTee_mvgd_33535_lvgd_1186110000_1,BranchTee_mvgd_33535_lvgd_1186110000_2,0.028721840904619825,0.024930557905210007,0.0024452959907936217,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075233700000004 47.46016419623538, 10.075614099999996 47.460173696235366)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_1_LVCableDist_mvgd_33535_lvgd_1186110000_building_422707,BranchTee_mvgd_33535_lvgd_1186110000_1,BranchTee_mvgd_33535_lvgd_1186110000_building_422707,0.014693205702995222,0.012753702550199853,0.0012509378182531843,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075296654808081 47.460039047182285, 10.075233700000004 47.46016419623538)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_20_LVCableDist_mvgd_33535_lvgd_1186110000_21,BranchTee_mvgd_33535_lvgd_1186110000_20,BranchTee_mvgd_33535_lvgd_1186110000_21,0.012720228270158652,0.01104115813849771,0.0010829641210774736,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079321299999998 47.459785896235346, 10.079451900000006 47.45971349623531)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_20_LVCableDist_mvgd_33535_lvgd_1186110000_building_422748,BranchTee_mvgd_33535_lvgd_1186110000_20,BranchTee_mvgd_33535_lvgd_1186110000_building_422748,0.010593384289909002,0.009195057563641014,0.0009018906628956378,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07922175181123 47.45971866335773, 10.079321299999998 47.459785896235346)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_21_LVCableDist_mvgd_33535_lvgd_1186110000_building_422757,BranchTee_mvgd_33535_lvgd_1186110000_21,BranchTee_mvgd_33535_lvgd_1186110000_building_422757,0.010635786016171125,0.009231862262036537,0.0009055006254873747,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079391001238083 47.459627163075524, 10.079451900000006 47.45971349623531)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_21_LVCableDist_mvgd_33535_lvgd_1186110000_building_422765,BranchTee_mvgd_33535_lvgd_1186110000_21,BranchTee_mvgd_33535_lvgd_1186110000_building_422765,0.010619387153434127,0.009217628049180823,0.0009041044728717565,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079319409494373 47.45968125588785, 10.079451900000006 47.45971349623531)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_22_LVCableDist_mvgd_33535_lvgd_1186110000_23,BranchTee_mvgd_33535_lvgd_1186110000_22,BranchTee_mvgd_33535_lvgd_1186110000_23,0.0246192273415232,0.021369489332442138,0.0020960111197113477,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079336400000008 47.4595264962353, 10.079023500000003 47.459463696235325)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_22_LVCableDist_mvgd_33535_lvgd_1186110000_building_422716,BranchTee_mvgd_33535_lvgd_1186110000_22,BranchTee_mvgd_33535_lvgd_1186110000_building_422716,0.014068266379720569,0.012211255217597453,0.0011977322585271367,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079249778228498 47.459414368751084, 10.079336400000008 47.4595264962353)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_22_LVCableDist_mvgd_33535_lvgd_1186110000_building_422728,BranchTee_mvgd_33535_lvgd_1186110000_22,BranchTee_mvgd_33535_lvgd_1186110000_building_422728,0.012870787450654413,0.01117184350716803,0.0010957823022541627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079454103315241 47.45944264608317, 10.079336400000008 47.4595264962353)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_23_LVCableDist_mvgd_33535_lvgd_1186110000_building_422709,BranchTee_mvgd_33535_lvgd_1186110000_23,BranchTee_mvgd_33535_lvgd_1186110000_building_422709,0.010597668397891445,0.009198776169369774,0.0009022553996863046,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07903580780688 47.45936867618302, 10.079023500000003 47.459463696235325)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_23_LVCableDist_mvgd_33535_lvgd_1186110000_building_422712,BranchTee_mvgd_33535_lvgd_1186110000_23,BranchTee_mvgd_33535_lvgd_1186110000_building_422712,0.011566779624393207,0.010039964713973303,0.0009847627781188854,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.079133260525836 47.45939101585434, 10.079023500000003 47.459463696235325)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_2_LVCableDist_mvgd_33535_lvgd_1186110000_3,BranchTee_mvgd_33535_lvgd_1186110000_2,BranchTee_mvgd_33535_lvgd_1186110000_3,0.11315770053181987,0.09822088406161965,0.009633925358641526,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075614099999996 47.460173696235366, 10.07635794907672 47.4602379987739, 10.077101800000001 47.46030229623538)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_2_LVCableDist_mvgd_33535_lvgd_1186110000_building_422711,BranchTee_mvgd_33535_lvgd_1186110000_2,BranchTee_mvgd_33535_lvgd_1186110000_building_422711,0.026465531033193664,0.0229720809368121,0.002253200174202039,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075787060071402 47.45996645871115, 10.075614099999996 47.460173696235366)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_3_LVCableDist_mvgd_33535_lvgd_1186110000_4,BranchTee_mvgd_33535_lvgd_1186110000_3,BranchTee_mvgd_33535_lvgd_1186110000_4,0.03427383918611982,0.029749692413552006,0.0029179773618704078,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077101800000001 47.46030229623538, 10.077554000000008 47.46033149623539)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_3_LVCableDist_mvgd_33535_lvgd_1186110000_building_422738,BranchTee_mvgd_33535_lvgd_1186110000_3,BranchTee_mvgd_33535_lvgd_1186110000_building_422738,0.017673601190451835,0.015340685833312193,0.0015046802284510215,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077301850001898 47.46021954624326, 10.077101800000001 47.46030229623538)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_4_LVCableDist_mvgd_33535_lvgd_1186110000_5,BranchTee_mvgd_33535_lvgd_1186110000_4,BranchTee_mvgd_33535_lvgd_1186110000_5,0.016846758323410333,0.014622986224720169,0.0014342851742305354,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077554000000008 47.46033149623539, 10.077770300000001 47.46036909623536)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_4_LVCableDist_mvgd_33535_lvgd_1186110000_building_422739,BranchTee_mvgd_33535_lvgd_1186110000_4,BranchTee_mvgd_33535_lvgd_1186110000_building_422739,0.020650615392225232,0.0179247341604515,0.001758134765585556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077502874360945 47.46014889862081, 10.077554000000008 47.46033149623539)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_4_LVCableDist_mvgd_33535_lvgd_1186110000_building_422740,BranchTee_mvgd_33535_lvgd_1186110000_4,BranchTee_mvgd_33535_lvgd_1186110000_building_422740,0.010714260931242406,0.009299978488318409,0.0009121817569593761,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077616090451436 47.46024476651535, 10.077554000000008 47.46033149623539)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_5_LVCableDist_mvgd_33535_lvgd_1186110000_6,BranchTee_mvgd_33535_lvgd_1186110000_5,BranchTee_mvgd_33535_lvgd_1186110000_6,0.026155582337601055,0.022703045469037716,0.0022268120222308186,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.077770300000001 47.46036909623536, 10.078043499999993 47.460513996235456)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_6_LVCableDist_mvgd_33535_lvgd_1186110000_7,BranchTee_mvgd_33535_lvgd_1186110000_6,BranchTee_mvgd_33535_lvgd_1186110000_7,0.19433896720159818,0.16868622353098722,0.016545467922169432,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078043499999993 47.460513996235456, 10.0781169 47.46061179623542, 10.078728699999992 47.46082559623546, 10.0788359 47.460863096235464, 10.079482800000001 47.46097899623545, 10.079988800000004 47.461054196235494, 10.080089800000007 47.46107309623548, 10.080243200000002 47.46111459623547, 10.080368300000004 47.46116889623547)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_6_LVCableDist_mvgd_33535_lvgd_1186110000_building_422733,BranchTee_mvgd_33535_lvgd_1186110000_6,BranchTee_mvgd_33535_lvgd_1186110000_building_422733,0.019416474246753412,0.016853499646181963,0.001653063492295052,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.078173794099834 47.460363288492225, 10.078043499999993 47.460513996235456)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_7_LVCableDist_mvgd_33535_lvgd_1186110000_8,BranchTee_mvgd_33535_lvgd_1186110000_7,BranchTee_mvgd_33535_lvgd_1186110000_8,0.04741700295284731,0.041157958563071466,0.004036949010374779,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080368300000004 47.46116889623547, 10.0805373 47.46125229623546, 10.080600900000006 47.46128369623553, 10.0807282 47.46134869623554, 10.080873399999998 47.461422796235524)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_7_LVCableDist_mvgd_33535_lvgd_1186110000_building_444330,BranchTee_mvgd_33535_lvgd_1186110000_7,BranchTee_mvgd_33535_lvgd_1186110000_building_444330,0.020047237893470193,0.017401002491532126,0.0017067649183831971,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.08018690521597 47.46130074476384, 10.080368300000004 47.46116889623547)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_8_LVCableDist_mvgd_33535_lvgd_1186110000_9,BranchTee_mvgd_33535_lvgd_1186110000_8,BranchTee_mvgd_33535_lvgd_1186110000_9,0.012316253147715847,0.010690507732217356,0.001048570826073501,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080873399999998 47.461422796235524, 10.081013399999996 47.46147979623551)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_8_LVCableDist_mvgd_33535_lvgd_1186110000_building_444334,BranchTee_mvgd_33535_lvgd_1186110000_8,BranchTee_mvgd_33535_lvgd_1186110000_building_444334,0.03041983420654906,0.026404416091284584,0.0025898583197679504,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080571400001068 47.4616041962422, 10.080873399999998 47.461422796235524)" +Branch_LVCableDist_mvgd_33535_lvgd_1186110000_9_LVCableDist_mvgd_33535_lvgd_1186110000_building_444338,BranchTee_mvgd_33535_lvgd_1186110000_9,BranchTee_mvgd_33535_lvgd_1186110000_building_444338,0.016013608509663813,0.01389981218638819,0.001363353164473559,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.080945793564062 47.4616164236589, 10.081013399999996 47.46147979623551)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_10_LVCableDist_mvgd_33535_lvgd_1186120000_2,BranchTee_mvgd_33535_lvgd_1186120000_2,BranchTee_mvgd_33535_lvgd_1186120000_10,0.05978317956989526,0.019130617462366484,0.004901955781145085,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.085768499999995 47.462260596235595, 10.086533000000006 47.462401996235606)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_10_LVCableDist_mvgd_33535_lvgd_1186120000_building_444353,BranchTee_mvgd_33535_lvgd_1186120000_10,BranchTee_mvgd_33535_lvgd_1186120000_building_444353,0.018629250464039338,0.016170189402786146,0.0015860414944321474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086776284213798 47.46237336617522, 10.086533000000006 47.462401996235606)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_10_LVCableDist_mvgd_33535_lvgd_1186120000_building_444360,BranchTee_mvgd_33535_lvgd_1186120000_10,BranchTee_mvgd_33535_lvgd_1186120000_building_444360,0.020044646667340002,0.017398753307251123,0.001706544308747191,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086322964693032 47.46229152506687, 10.086533000000006 47.462401996235606)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_10_LVCableDist_mvgd_33535_lvgd_1186120000_building_444363,BranchTee_mvgd_33535_lvgd_1186120000_10,BranchTee_mvgd_33535_lvgd_1186120000_building_444363,0.012086123990022906,0.010490755623339882,0.001028978282944389,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.086451815987887 47.46249577626584, 10.086533000000006 47.462401996235606)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_11_LVCableDist_mvgd_33535_lvgd_1186120000_14,BranchTee_mvgd_33535_lvgd_1186120000_11,BranchTee_mvgd_33535_lvgd_1186120000_14,0.056997031322706546,0.04947342318810928,0.004852565427243724,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093333000000003 47.46417889623579, 10.093745699999992 47.464365296235776, 10.093985299999998 47.46443349623581)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_11_LVCableDist_mvgd_33535_lvgd_1186120000_17,BranchTee_mvgd_33535_lvgd_1186120000_11,BranchTee_mvgd_33535_lvgd_1186120000_17,0.018838567849320483,0.016351876893210177,0.0016038621823445667,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093143700000004 47.46419319623573, 10.093273999999994 47.46423719623577, 10.093333000000003 47.46417889623579)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_11_LVStation_mvgd_33535_lvgd_1186120000,BusBar_mvgd_33535_lvgd_1186120000_LV,BranchTee_mvgd_33535_lvgd_1186120000_11,0.011731609271706142,0.010183036847840932,0.0009987959063252818,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093199999999996 47.46412419623574, 10.093226600000003 47.46413499623576, 10.093333000000003 47.46417889623579)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_12_LVCableDist_mvgd_33535_lvgd_1186120000_14,BranchTee_mvgd_33535_lvgd_1186120000_12,BranchTee_mvgd_33535_lvgd_1186120000_14,0.17949847309243117,0.15580467464423026,0.015281990387179485,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093985299999998 47.46443349623581, 10.094269499999992 47.46451709623581, 10.094278899999997 47.46459519623579, 10.094388699999996 47.464796996235776, 10.094322299999998 47.46483849623585, 10.094093200000001 47.46498169623585, 10.093787200000005 47.46506079623585, 10.0934495 47.46504499623582, 10.093352899999996 47.4650134962358, 10.0929535 47.46485509623582)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_12_LVCableDist_mvgd_33535_lvgd_1186120000_building_444364,BranchTee_mvgd_33535_lvgd_1186120000_12,BranchTee_mvgd_33535_lvgd_1186120000_building_444364,0.03480803354827923,0.03021337311990637,0.002963457153240008,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09261355001072 47.46464329626896, 10.0929535 47.46485509623582)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_13_LVCableDist_mvgd_33535_lvgd_1186120000_14,BranchTee_mvgd_33535_lvgd_1186120000_13,BranchTee_mvgd_33535_lvgd_1186120000_14,0.11304303857511404,0.09812135748319899,0.009624163365182944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093683599999997 47.46483239623579, 10.093924300000005 47.464892696235836, 10.093998399999997 47.46489639623586, 10.094263800000004 47.46484479623583, 10.094322299999998 47.46483849623585, 10.094388699999996 47.464796996235776, 10.094278899999997 47.46459519623579, 10.094269499999992 47.46451709623581, 10.093985299999998 47.46443349623581)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_13_LVCableDist_mvgd_33535_lvgd_1186120000_building_444382,BranchTee_mvgd_33535_lvgd_1186120000_13,BranchTee_mvgd_33535_lvgd_1186120000_building_444382,0.014858154113819395,0.012896877770795234,0.0012649810576477476,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093819332946795 47.464735495944225, 10.093683599999997 47.46483239623579)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_15_LVCableDist_mvgd_33535_lvgd_1186120000_16,BranchTee_mvgd_33535_lvgd_1186120000_15,BranchTee_mvgd_33535_lvgd_1186120000_16,0.025634848117020236,0.022251048165573564,0.002182478189100697,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092557500000002 47.46394879623571, 10.092850600000006 47.464065496235754)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_15_LVCableDist_mvgd_33535_lvgd_1186120000_18,BranchTee_mvgd_33535_lvgd_1186120000_15,BranchTee_mvgd_33535_lvgd_1186120000_18,0.30448245964512966,0.26429077497197256,0.025922772161775243,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091823600000003 47.465258696235885, 10.091716999999997 47.465255096235836, 10.091697699999997 47.46519049623585, 10.091883300000001 47.46511789623585, 10.092169799999995 47.465002596235855, 10.092160300000002 47.46497289623585, 10.092110600000005 47.46492289623581, 10.091964900000006 47.46488889623582, 10.0917404 47.46486699623583, 10.091353800000002 47.46479509623582, 10.0912848 47.464706596235786, 10.091335400000006 47.46454889623575, 10.091644800000001 47.46424939623576, 10.091816000000003 47.46410539623573, 10.092077599999998 47.46399069623574, 10.092056399999999 47.463913896235724, 10.091963700000006 47.46384839623577, 10.092218800000005 47.463880496235724, 10.092557500000002 47.46394879623571)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_15_LVCableDist_mvgd_33535_lvgd_1186120000_building_444421,BranchTee_mvgd_33535_lvgd_1186120000_15,BranchTee_mvgd_33535_lvgd_1186120000_building_444421,0.01710381492618038,0.01484611135592457,0.0014561702435841339,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092399500011089 47.46405919631745, 10.092557500000002 47.46394879623571)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_16_LVCableDist_mvgd_33535_lvgd_1186120000_17,BranchTee_mvgd_33535_lvgd_1186120000_16,BranchTee_mvgd_33535_lvgd_1186120000_17,0.026274134954050406,0.02280594914011575,0.0022369052554140393,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092850600000006 47.464065496235754, 10.093143700000004 47.46419319623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_16_LVCableDist_mvgd_33535_lvgd_1186120000_building_444422,BranchTee_mvgd_33535_lvgd_1186120000_16,BranchTee_mvgd_33535_lvgd_1186120000_building_444422,0.011834829784108145,0.010272632252605869,0.0010075838076990993,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.092741217152966 47.46414184961644, 10.092850600000006 47.464065496235754)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_17_LVCableDist_mvgd_33535_lvgd_1186120000_building_444362,BranchTee_mvgd_33535_lvgd_1186120000_17,BranchTee_mvgd_33535_lvgd_1186120000_building_444362,0.011349249635799358,0.009851148683873844,0.0009662428924767238,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093134284260698 47.46429514742613, 10.093143700000004 47.46419319623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_18_LVCableDist_mvgd_33535_lvgd_1186120000_building_444373,BranchTee_mvgd_33535_lvgd_1186120000_18,BranchTee_mvgd_33535_lvgd_1186120000_building_444373,0.014170033133352735,0.012299588759750174,0.0012063963910066392,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09198651952527 47.46532214972314, 10.091823600000003 47.465258696235885)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_18_LVCableDist_mvgd_33535_lvgd_1186120000_building_444380,BranchTee_mvgd_33535_lvgd_1186120000_18,BranchTee_mvgd_33535_lvgd_1186120000_building_444380,0.017163816736482842,0.014898192927267106,0.0014612786273628827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.091869306614386 47.46541003146964, 10.091823600000003 47.465258696235885)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_19_LVCableDist_mvgd_33535_lvgd_1186120000_building_444358,BranchTee_mvgd_33535_lvgd_1186120000_19,BranchTee_mvgd_33535_lvgd_1186120000_building_444358,0.022698321574434254,0.019702143126608933,0.001932470656321363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09351994760257 47.463883064812606, 10.093445399999993 47.46408099623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_19_LVStation_mvgd_33535_lvgd_1186120000,BusBar_mvgd_33535_lvgd_1186120000_LV,BranchTee_mvgd_33535_lvgd_1186120000_19,0.026082239914539052,0.022639384245819898,0.0022205678565568924,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.093199999999996 47.46412419623574, 10.0932289 47.464090696235765, 10.093283499999995 47.464027196235705, 10.093445399999993 47.46408099623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_1_LVCableDist_mvgd_33535_lvgd_1186120000_2,BranchTee_mvgd_33535_lvgd_1186120000_1,BranchTee_mvgd_33535_lvgd_1186120000_2,0.19067093718542213,0.061014699899335084,0.015634171844936363,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.08738439999999 47.46308379623566, 10.085487099999996 47.46248679623564, 10.085768499999995 47.462260596235595)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_1_LVCableDist_mvgd_33535_lvgd_1186120000_3,BranchTee_mvgd_33535_lvgd_1186120000_1,BranchTee_mvgd_33535_lvgd_1186120000_3,0.12375256793144458,0.039600821738062265,0.010147162131011382,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.08738439999999 47.46308379623566, 10.087912899999996 47.4632500962357, 10.088289199999998 47.46336919623568, 10.088595 47.463434396235655, 10.088912700000002 47.463470196235676)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_1_LVCableDist_mvgd_33535_lvgd_1186120000_building_444359,BranchTee_mvgd_33535_lvgd_1186120000_1,BranchTee_mvgd_33535_lvgd_1186120000_building_444359,0.02042567551701885,0.01772948634877236,0.0017389840232345214,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.087221795881588 47.46323078951298, 10.08738439999999 47.46308379623566)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_2_LVCableDist_mvgd_33535_lvgd_1186120000_building_444346,BranchTee_mvgd_33535_lvgd_1186120000_2,BranchTee_mvgd_33535_lvgd_1186120000_building_444346,0.05125850394723122,0.0444923814261967,0.004364003498678338,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.085107021344212 47.46215543343433, 10.085768499999995 47.462260596235595)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_3_LVCableDist_mvgd_33535_lvgd_1186120000_4,BranchTee_mvgd_33535_lvgd_1186120000_3,BranchTee_mvgd_33535_lvgd_1186120000_4,0.10291517614246135,0.03293285636558763,0.008438588350244665,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.088912700000002 47.463470196235676, 10.089252899999998 47.46348289623571, 10.089384499999996 47.46348779623569, 10.090274699999995 47.463520896235686)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_3_LVCableDist_mvgd_33535_lvgd_1186120000_building_444365,BranchTee_mvgd_33535_lvgd_1186120000_3,BranchTee_mvgd_33535_lvgd_1186120000_building_444365,0.021995675474954547,0.019092246312260547,0.001872649362285571,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.088877364169344 47.46366671414624, 10.088912700000002 47.463470196235676)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_4_LVCableDist_mvgd_33535_lvgd_1186120000_5,BranchTee_mvgd_33535_lvgd_1186120000_4,BranchTee_mvgd_33535_lvgd_1186120000_5,0.038910204230898256,0.012451265353887441,0.003190464306974327,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.090274699999995 47.463520896235686, 10.0907845 47.46357379623574)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_4_LVCableDist_mvgd_33535_lvgd_1186120000_building_444379,BranchTee_mvgd_33535_lvgd_1186120000_4,BranchTee_mvgd_33535_lvgd_1186120000_building_444379,0.038762822607380946,0.03364613002320666,0.0033001566657388888,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.09017280415298 47.46386286094757, 10.090274699999995 47.463520896235686)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_5_LVCableDist_mvgd_33535_lvgd_1186120000_6,BranchTee_mvgd_33535_lvgd_1186120000_5,BranchTee_mvgd_33535_lvgd_1186120000_6,0.02857154388756775,0.00914289404402168,0.0023427399770893217,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.0907845 47.46357379623574, 10.091154099999994 47.463629796235686)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_5_LVCableDist_mvgd_33535_lvgd_1186120000_building_444386,BranchTee_mvgd_33535_lvgd_1186120000_5,BranchTee_mvgd_33535_lvgd_1186120000_building_444386,0.03150581469647268,0.027347047156538285,0.002682315615486178,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090659150000794 47.463844296279134, 10.0907845 47.46357379623574)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_6_LVCableDist_mvgd_33535_lvgd_1186120000_9,BranchTee_mvgd_33535_lvgd_1186120000_6,BranchTee_mvgd_33535_lvgd_1186120000_9,0.05984641625229989,0.019150853200735965,0.004907140908853646,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.090521100000005 47.46331209623572, 10.0907671 47.463405496235694, 10.091041499999998 47.463542996235695, 10.091154099999994 47.463629796235686)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_6_LVStation_mvgd_33535_lvgd_1186120000,BusBar_mvgd_33535_lvgd_1186120000_LV,BranchTee_mvgd_33535_lvgd_1186120000_6,0.1662345618520168,0.053195059792645376,0.013630497363291067,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.091154099999994 47.463629796235686, 10.091347300000002 47.46365909623572, 10.092253799999996 47.46377749623571, 10.092436200000005 47.46381489623571, 10.092628499999995 47.4638718962357, 10.092804100000004 47.463943296235755, 10.093199999999996 47.46412419623574)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_7_LVCableDist_mvgd_33535_lvgd_1186120000_8,BranchTee_mvgd_33535_lvgd_1186120000_7,BranchTee_mvgd_33535_lvgd_1186120000_8,0.023011266362279535,0.007363605235929452,0.001886821861727272,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089460099999995 47.46341929623569, 10.089762900000006 47.463394496235665)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_7_LVCableDist_mvgd_33535_lvgd_1186120000_building_444366,BranchTee_mvgd_33535_lvgd_1186120000_7,BranchTee_mvgd_33535_lvgd_1186120000_building_444366,0.007605734069005974,0.006601777171897185,0.0006475306052889976,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089478950000002 47.46335204623836, 10.089460099999995 47.46341929623569)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_8_LVCableDist_mvgd_33535_lvgd_1186120000_9,BranchTee_mvgd_33535_lvgd_1186120000_8,BranchTee_mvgd_33535_lvgd_1186120000_9,0.05793271023211876,0.018538467274278003,0.004750225496248811,0.14895636945092344,1,cable,NAYY 4x1x95,"LINESTRING (10.089762900000006 47.463394496235665, 10.090226599999996 47.46334409623568, 10.090521100000005 47.46331209623572)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_8_LVCableDist_mvgd_33535_lvgd_1186120000_building_444368,BranchTee_mvgd_33535_lvgd_1186120000_8,BranchTee_mvgd_33535_lvgd_1186120000_building_444368,0.016808329315446385,0.014589629845807462,0.0014310134375958093,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089747096230699 47.46324359087242, 10.089762900000006 47.463394496235665)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_8_LVCableDist_mvgd_33535_lvgd_1186120000_building_444377,BranchTee_mvgd_33535_lvgd_1186120000_8,BranchTee_mvgd_33535_lvgd_1186120000_building_444377,0.040980842125338084,0.03557137096479346,0.003488992550345791,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.089758775274063 47.46376334233826, 10.089762900000006 47.463394496235665)" +Branch_LVCableDist_mvgd_33535_lvgd_1186120000_9_LVCableDist_mvgd_33535_lvgd_1186120000_building_444374,BranchTee_mvgd_33535_lvgd_1186120000_9,BranchTee_mvgd_33535_lvgd_1186120000_building_444374,0.018240617482084144,0.01583285597444904,0.0015529543857116075,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.090733600079071 47.46323379633528, 10.090521100000005 47.46331209623572)" +Branch_LVCableDist_mvgd_33535_lvgd_1186620000_1_LVCableDist_mvgd_33535_lvgd_1186620000_building_446616,BranchTee_mvgd_33535_lvgd_1186620000_1,BranchTee_mvgd_33535_lvgd_1186620000_building_446616,0.011601755303070109,0.010070323603064854,0.000987740508102417,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.0760660755606 47.55092495040676, 10.076089100000003 47.55102819624371)" +Branch_LVCableDist_mvgd_33535_lvgd_1186620000_1_LVCableDist_mvgd_33535_lvgd_1186620000_building_446618,BranchTee_mvgd_33535_lvgd_1186620000_1,BranchTee_mvgd_33535_lvgd_1186620000_building_446618,0.022236506147711724,0.019301287336213776,0.0018931530020247123,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.07614243768055 47.551225037325246, 10.076089100000003 47.55102819624371)" +Branch_LVCableDist_mvgd_33535_lvgd_1186620000_1_LVStation_mvgd_33535_lvgd_1186620000,BusBar_mvgd_33535_lvgd_1186620000_LV,BranchTee_mvgd_33535_lvgd_1186620000_1,0.0056530935743162895,0.004906885222506539,0.0004812883372887613,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.076089100000003 47.55102819624371, 10.076023899999992 47.55100299624363)" +Branch_LVCableDist_mvgd_33535_lvgd_1186620000_2_LVCableDist_mvgd_33535_lvgd_1186620000_building_446611,BranchTee_mvgd_33535_lvgd_1186620000_2,BranchTee_mvgd_33535_lvgd_1186620000_building_446611,0.006997980738078823,0.0060742472806524185,0.0005957882121588765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075898699998548 47.551036796255545, 10.075905799999992 47.550973996243656)" +Branch_LVCableDist_mvgd_33535_lvgd_1186620000_2_LVStation_mvgd_33535_lvgd_1186620000,BusBar_mvgd_33535_lvgd_1186620000_LV,BranchTee_mvgd_33535_lvgd_1186620000_2,0.009461078034403311,0.008212215733862074,0.0008054893230186647,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.075905799999992 47.550973996243656, 10.076023899999992 47.55100299624363)" +Branch_LVCableDist_mvgd_33535_lvgd_1192280000_building_444428_LVStation_mvgd_33535_lvgd_1192280000,BusBar_mvgd_33535_lvgd_1192280000_LV,BranchTee_mvgd_33535_lvgd_1192280000_building_444428,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.106713927889984 47.47333964308403, 10.106713927889984 47.47333964308403)" +Branch_LVCableDist_mvgd_33535_lvgd_1193510000_building_422776_LVStation_mvgd_33535_lvgd_1193510000,BusBar_mvgd_33535_lvgd_1193510000_LV,BranchTee_mvgd_33535_lvgd_1193510000_building_422776,0.020344247322350704,0.01765880667580041,0.0017320514579222627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.095888600002286 47.44466084629291, 10.096039900000005 47.44450929623392)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_10_LVCableDist_mvgd_33535_lvgd_1195620000_8,BranchTee_mvgd_33535_lvgd_1195620000_8,BranchTee_mvgd_33535_lvgd_1195620000_10,0.02142025858618979,0.018592784452812736,0.0018236600020351602,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104512000000009 47.4653293962359, 10.104401299999994 47.46533579623585, 10.104228800000003 47.46534289623588)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_10_LVCableDist_mvgd_33535_lvgd_1195620000_9,BranchTee_mvgd_33535_lvgd_1195620000_9,BranchTee_mvgd_33535_lvgd_1195620000_10,0.01442931755248858,0.012524647635560087,0.0012284711303206556,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104703199999998 47.46532629623588, 10.104512000000009 47.4653293962359)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_10_LVCableDist_mvgd_33535_lvgd_1195620000_building_444400,BranchTee_mvgd_33535_lvgd_1195620000_10,BranchTee_mvgd_33535_lvgd_1195620000_building_444400,0.011760916425653852,0.010208475457467543,0.001001291034206809,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104544184648642 47.46543297106308, 10.104512000000009 47.4653293962359)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_11_LVCableDist_mvgd_33535_lvgd_1195620000_6,BranchTee_mvgd_33535_lvgd_1195620000_6,BranchTee_mvgd_33535_lvgd_1195620000_11,0.023132676742991166,0.020079163412916334,0.001969450422199875,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1040912 47.46537619623589, 10.104041999999998 47.46542049623591, 10.104009299999994 47.465491996235876, 10.103995600000003 47.46556929623591)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_11_LVCableDist_mvgd_33535_lvgd_1195620000_building_444436,BranchTee_mvgd_33535_lvgd_1195620000_11,BranchTee_mvgd_33535_lvgd_1195620000_building_444436,0.01711599946334852,0.014856687534186515,0.0014572076004856593,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10377002481007 47.465552891482616, 10.103995600000003 47.46556929623591)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_11_LVStation_mvgd_33535_lvgd_1195620000,BusBar_mvgd_33535_lvgd_1195620000_LV,BranchTee_mvgd_33535_lvgd_1195620000_11,0.01750066295984513,0.015190575449145573,0.0014899567584839729,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103995600000003 47.46556929623591, 10.103989699999998 47.46561339623587, 10.103981500000007 47.465726496235916)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_12_LVCableDist_mvgd_33535_lvgd_1195620000_14,BranchTee_mvgd_33535_lvgd_1195620000_12,BranchTee_mvgd_33535_lvgd_1195620000_14,0.006492096965198372,0.005635140165792187,0.0005527187039842406,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105004100000004 47.46589949623591, 10.105089399999999 47.46590719623588)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_12_LVCableDist_mvgd_33535_lvgd_1195620000_15,BranchTee_mvgd_33535_lvgd_1195620000_12,BranchTee_mvgd_33535_lvgd_1195620000_15,0.06994899396073077,0.06071572675791431,0.005955258754487076,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105004100000004 47.46589949623591, 10.104958199999999 47.4658281962359, 10.104939499999993 47.46579349623591, 10.104913800000004 47.46574579623591, 10.104816899999994 47.46574019623589, 10.1046383 47.46573529623592, 10.1042315 47.46572099623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_12_LVCableDist_mvgd_33535_lvgd_1195620000_building_444423,BranchTee_mvgd_33535_lvgd_1195620000_12,BranchTee_mvgd_33535_lvgd_1195620000_building_444423,0.03758257651576155,0.03262167641568103,0.0031996738643205944,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104758284706216 47.466193719614765, 10.105004100000004 47.46589949623591)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_12_LVCableDist_mvgd_33535_lvgd_1195620000_building_444426,BranchTee_mvgd_33535_lvgd_1195620000_12,BranchTee_mvgd_33535_lvgd_1195620000_building_444426,0.021140813302275165,0.018350225946374844,0.001799868823932342,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10491990644027 47.466080988659726, 10.105004100000004 47.46589949623591)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_13_LVCableDist_mvgd_33535_lvgd_1195620000_15,BranchTee_mvgd_33535_lvgd_1195620000_13,BranchTee_mvgd_33535_lvgd_1195620000_15,0.0245421232652388,0.021302562994227277,0.0020894466975617297,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104228700000004 47.465940496235945, 10.104216300000003 47.46576499623591, 10.1042315 47.46572099623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_13_LVCableDist_mvgd_33535_lvgd_1195620000_16,BranchTee_mvgd_33535_lvgd_1195620000_13,BranchTee_mvgd_33535_lvgd_1195620000_16,0.013085281709232762,0.011358024523614037,0.0011140437344615084,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104228700000004 47.465940496235945, 10.104069599999994 47.46598739623591)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_13_LVCableDist_mvgd_33535_lvgd_1195620000_building_444410,BranchTee_mvgd_33535_lvgd_1195620000_13,BranchTee_mvgd_33535_lvgd_1195620000_building_444410,0.016216018453717635,0.014075504017826907,0.0013805857724507155,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104430930509778 47.465989933640394, 10.104228700000004 47.465940496235945)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_14_LVCableDist_mvgd_33535_lvgd_1195620000_building_444433,BranchTee_mvgd_33535_lvgd_1195620000_14,BranchTee_mvgd_33535_lvgd_1195620000_building_444433,0.031313254239215445,0.027179904679639006,0.002665921564851326,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.105285602933648 47.466155552217415, 10.105089399999999 47.46590719623588)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_15_LVCableDist_mvgd_33535_lvgd_1195620000_building_444399,BranchTee_mvgd_33535_lvgd_1195620000_15,BranchTee_mvgd_33535_lvgd_1195620000_building_444399,0.012808783212256345,0.011118023828238507,0.0010905034374324228,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104264930490427 47.46560796441886, 10.1042315 47.46572099623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_15_LVStation_mvgd_33535_lvgd_1195620000,BusBar_mvgd_33535_lvgd_1195620000_LV,BranchTee_mvgd_33535_lvgd_1195620000_15,0.018871155386286108,0.016380162875296343,0.0016066365927229441,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103981500000007 47.465726496235916, 10.1042315 47.46572099623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_16_LVCableDist_mvgd_33535_lvgd_1195620000_17,BranchTee_mvgd_33535_lvgd_1195620000_16,BranchTee_mvgd_33535_lvgd_1195620000_17,0.027164500214615514,0.023578786186286265,0.002312708425873478,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104069599999994 47.46598739623591, 10.103849300000004 47.46618079623597)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_16_LVCableDist_mvgd_33535_lvgd_1195620000_building_444408,BranchTee_mvgd_33535_lvgd_1195620000_16,BranchTee_mvgd_33535_lvgd_1195620000_building_444408,0.023782868354382987,0.020643529731604434,0.002024805890042757,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103772075179121 47.46591666454188, 10.104069599999994 47.46598739623591)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_17_LVCableDist_mvgd_33535_lvgd_1195620000_building_444409,BranchTee_mvgd_33535_lvgd_1195620000_17,BranchTee_mvgd_33535_lvgd_1195620000_building_444409,0.018611636436930864,0.01615490042725599,0.0015845418861718998,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103604170612314 47.466161971538405, 10.103849300000004 47.46618079623597)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_1_LVCableDist_mvgd_33535_lvgd_1195620000_3,BranchTee_mvgd_33535_lvgd_1195620000_1,BranchTee_mvgd_33535_lvgd_1195620000_3,0.025160864793872754,0.02183963064108155,0.002142124594648151,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102818999999997 47.46577789623593, 10.102485799999998 47.46578749623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_1_LVCableDist_mvgd_33535_lvgd_1195620000_4,BranchTee_mvgd_33535_lvgd_1195620000_1,BranchTee_mvgd_33535_lvgd_1195620000_4,0.03671753498676336,0.0318708203685106,0.003126026684470468,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102639000000002 47.46547129623587, 10.102695100000005 47.46558839623589, 10.102818999999997 47.46577789623593)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_1_LVCableDist_mvgd_33535_lvgd_1195620000_5,BranchTee_mvgd_33535_lvgd_1195620000_1,BranchTee_mvgd_33535_lvgd_1195620000_5,0.033095685482465616,0.028727054998780154,0.002817672700422997,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102818999999997 47.46577789623593, 10.103256000000005 47.46575189623597)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_1_LVCableDist_mvgd_33535_lvgd_1195620000_building_444419,BranchTee_mvgd_33535_lvgd_1195620000_1,BranchTee_mvgd_33535_lvgd_1195620000_building_444419,0.014011807063363928,0.012162248530999889,0.001192925472625484,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10291980130821 47.46588381727913, 10.102818999999997 47.46577789623593)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_2_LVCableDist_mvgd_33535_lvgd_1195620000_3,BranchTee_mvgd_33535_lvgd_1195620000_2,BranchTee_mvgd_33535_lvgd_1195620000_3,0.009084349307611872,0.007885215199007105,0.0007734157087855423,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102365499999994 47.46579099623594, 10.102485799999998 47.46578749623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_2_LVCableDist_mvgd_33535_lvgd_1195620000_building_444412,BranchTee_mvgd_33535_lvgd_1195620000_2,BranchTee_mvgd_33535_lvgd_1195620000_building_444412,0.024468822344034708,0.021238937794622128,0.0020832060652381584,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10227799705324 47.46557892932345, 10.102365499999994 47.46579099623594)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_3_LVCableDist_mvgd_33535_lvgd_1195620000_building_444424,BranchTee_mvgd_33535_lvgd_1195620000_3,BranchTee_mvgd_33535_lvgd_1195620000_building_444424,0.02248392227470152,0.01951604453444092,0.0019142173086405363,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102644349996698 47.46595884631719, 10.102485799999998 47.46578749623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_4_LVCableDist_mvgd_33535_lvgd_1195620000_building_444416,BranchTee_mvgd_33535_lvgd_1195620000_4,BranchTee_mvgd_33535_lvgd_1195620000_building_444416,0.015353337637803933,0.013326697069613813,0.0013071395770103307,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102842470407381 47.4654737387463, 10.102639000000002 47.46547129623587)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_5_LVCableDist_mvgd_33535_lvgd_1195620000_building_444425,BranchTee_mvgd_33535_lvgd_1195620000_5,BranchTee_mvgd_33535_lvgd_1195620000_building_444425,0.017038657722655663,0.014789554903265115,0.0014506229442630555,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.10322317563022 47.465903628532054, 10.103256000000005 47.46575189623597)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_5_LVStation_mvgd_33535_lvgd_1195620000,BusBar_mvgd_33535_lvgd_1195620000_LV,BranchTee_mvgd_33535_lvgd_1195620000_5,0.054808014074242656,0.047573356216442625,0.004666198713521491,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103981500000007 47.465726496235916, 10.103256000000005 47.46575189623597)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_6_LVCableDist_mvgd_33535_lvgd_1195620000_7,BranchTee_mvgd_33535_lvgd_1195620000_6,BranchTee_mvgd_33535_lvgd_1195620000_7,0.043489587687141965,0.03774896211243922,0.0037025800249290645,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1035863 47.465278396235895, 10.103952999999995 47.4652692962359, 10.104014999999999 47.465316296235855, 10.1040912 47.46537619623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_6_LVCableDist_mvgd_33535_lvgd_1195620000_8,BranchTee_mvgd_33535_lvgd_1195620000_6,BranchTee_mvgd_33535_lvgd_1195620000_8,0.011325676928810374,0.009830687574207405,0.0009642359791286646,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104228800000003 47.46534289623588, 10.1041489 47.46534979623584, 10.1040912 47.46537619623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_7_LVCableDist_mvgd_33535_lvgd_1195620000_building_444429,BranchTee_mvgd_33535_lvgd_1195620000_7,BranchTee_mvgd_33535_lvgd_1195620000_building_444429,0.017316446776821107,0.015030675802280721,0.0014742731156672099,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.103753986842701 47.46517196812243, 10.1035863 47.465278396235895)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_8_LVCableDist_mvgd_33535_lvgd_1195620000_building_444439,BranchTee_mvgd_33535_lvgd_1195620000_8,BranchTee_mvgd_33535_lvgd_1195620000_building_444439,0.011777506823435438,0.01022287592274196,0.0010027034935723386,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104249661187405 47.4652378406293, 10.104228800000003 47.46534289623588)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_9_LVCableDist_mvgd_33535_lvgd_1195620000_building_34967319,BranchTee_mvgd_33535_lvgd_1195620000_9,BranchTee_mvgd_33535_lvgd_1195620000_building_34967319,0.006539463321562159,0.005676254163115954,0.0005567513410878129,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104664599999989 47.4652735962359, 10.104703199999998 47.46532629623588)" +Branch_LVCableDist_mvgd_33535_lvgd_1195620000_9_LVCableDist_mvgd_33535_lvgd_1195620000_building_444413,BranchTee_mvgd_33535_lvgd_1195620000_9,BranchTee_mvgd_33535_lvgd_1195620000_building_444413,0.009808986759542327,0.00851420050728274,0.0008351092841336125,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.104682399996461 47.465239146246, 10.104703199999998 47.46532629623588)" +Branch_LVCableDist_mvgd_33535_lvgd_1195900000_building_422764_LVStation_mvgd_33535_lvgd_1195900000,BusBar_mvgd_33535_lvgd_1195900000_LV,BranchTee_mvgd_33535_lvgd_1195900000_building_422764,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.102351329541532 47.46034674424677, 10.102351329541532 47.46034674424677)" +Branch_LVCableDist_mvgd_33535_lvgd_1196330000_1_LVCableDist_mvgd_33535_lvgd_1196330000_building_445123,BranchTee_mvgd_33535_lvgd_1196330000_1,BranchTee_mvgd_33535_lvgd_1196330000_building_445123,0.02408308949162353,0.020904121678729223,0.002050365865313274,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.111593381761631 47.46592273950936, 10.111527199999996 47.466134796235956)" +Branch_LVCableDist_mvgd_33535_lvgd_1196330000_1_LVCableDist_mvgd_33535_lvgd_1196330000_building_445130,BranchTee_mvgd_33535_lvgd_1196330000_1,BranchTee_mvgd_33535_lvgd_1196330000_building_445130,0.04886022457104974,0.04241067492767118,0.004159820801515765,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11217055000584 47.46608429624739, 10.111527199999996 47.466134796235956)" +Branch_LVCableDist_mvgd_33535_lvgd_1196330000_1_LVStation_mvgd_33535_lvgd_1196330000,BusBar_mvgd_33535_lvgd_1196330000_LV,BranchTee_mvgd_33535_lvgd_1196330000_1,0.04329820619605059,0.03758284297817191,0.0036862863481263853,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.111527199999996 47.466134796235956, 10.111808300000002 47.46611189623591, 10.111934099999996 47.466070896235955, 10.112035199999998 47.46599449623593)" +Branch_LVCableDist_mvgd_33535_lvgd_1197550000_building_448106_LVStation_mvgd_33535_lvgd_1197550000,BusBar_mvgd_33535_lvgd_1197550000_LV,BranchTee_mvgd_33535_lvgd_1197550000_building_448106,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.111815571053565 47.56507186743076, 10.111815571053565 47.56507186743076)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_10_LVCableDist_mvgd_33535_lvgd_1197640000_15,BranchTee_mvgd_33535_lvgd_1197640000_10,BranchTee_mvgd_33535_lvgd_1197640000_15,0.026561737798092226,0.011926220271343409,0.0022530463289927517,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.117135999999999 47.46466209623581, 10.1169223 47.46485209623584)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_10_LVCableDist_mvgd_33535_lvgd_1197640000_3,BranchTee_mvgd_33535_lvgd_1197640000_3,BranchTee_mvgd_33535_lvgd_1197640000_10,0.16127547834228512,0.07241268977568602,0.013679870165036174,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.117135999999999 47.46466209623581, 10.116878700000004 47.464459596235805, 10.116308799999999 47.46417779623578, 10.116044999999998 47.46401039623575, 10.115950500000004 47.46393559623574, 10.115768099999997 47.46378149623576, 10.115676999999994 47.463719796235736, 10.115602099999998 47.46366259623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_11_LVCableDist_mvgd_33535_lvgd_1197640000_7,BranchTee_mvgd_33535_lvgd_1197640000_7,BranchTee_mvgd_33535_lvgd_1197640000_11,0.02510296594799579,0.01127123171065011,0.002129308921949535,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.117206000000001 47.46323349623563, 10.117234600000003 47.4632756962357, 10.117242900000004 47.46345509623571)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_11_LVCableDist_mvgd_33535_lvgd_1197640000_8,BranchTee_mvgd_33535_lvgd_1197640000_8,BranchTee_mvgd_33535_lvgd_1197640000_11,0.046529044794209364,0.020891541112600005,0.0039467332432090415,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.116823699999998 47.46365049623573, 10.116786399999999 47.46356549623571, 10.117060999999996 47.46351269623568, 10.117242900000004 47.46345509623571)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_11_LVCableDist_mvgd_33535_lvgd_1197640000_building_445124,BranchTee_mvgd_33535_lvgd_1197640000_11,BranchTee_mvgd_33535_lvgd_1197640000_building_445124,0.04758653165473054,0.04130510947630611,0.004051382202746262,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11787071925248 47.463496080042745, 10.117242900000004 47.46345509623571)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_12_LVCableDist_mvgd_33535_lvgd_1197640000_13,BranchTee_mvgd_33535_lvgd_1197640000_12,BranchTee_mvgd_33535_lvgd_1197640000_13,0.045249082862100075,0.020316838205082934,0.0038381630301337344,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.116009099999996 47.46554279623589, 10.116468299999994 47.46528079623588)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_12_LVCableDist_mvgd_33535_lvgd_1197640000_building_445156,BranchTee_mvgd_33535_lvgd_1197640000_12,BranchTee_mvgd_33535_lvgd_1197640000_building_445156,0.0215300415328752,0.01868807605053567,0.0018330066104325405,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115886954419837 47.465367663011286, 10.116009099999996 47.46554279623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_12_LVCableDist_mvgd_33535_lvgd_1197640000_building_445164,BranchTee_mvgd_33535_lvgd_1197640000_12,BranchTee_mvgd_33535_lvgd_1197640000_building_445164,0.025111905761845466,0.021797134201281865,0.0021379563616603344,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116321550000992 47.46562069629359, 10.116009099999996 47.46554279623589)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_13_LVCableDist_mvgd_33535_lvgd_1197640000_14,BranchTee_mvgd_33535_lvgd_1197640000_13,BranchTee_mvgd_33535_lvgd_1197640000_14,0.03513237152822328,0.01577443481617225,0.0029800332079988443,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.116468299999994 47.46528079623588, 10.116520899999998 47.46525979623586, 10.1167729 47.465044796235865)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_13_LVCableDist_mvgd_33535_lvgd_1197640000_building_445157,BranchTee_mvgd_33535_lvgd_1197640000_13,BranchTee_mvgd_33535_lvgd_1197640000_building_445157,0.016356609561596142,0.014197537099465451,0.0013925553002250041,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116271236727554 47.46521943049519, 10.116468299999994 47.46528079623588)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_14_LVCableDist_mvgd_33535_lvgd_1197640000_15,BranchTee_mvgd_33535_lvgd_1197640000_14,BranchTee_mvgd_33535_lvgd_1197640000_15,0.024194873919376,0.010863498389799825,0.0020522818303103595,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.1167729 47.465044796235865, 10.1169223 47.46485209623584)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_14_LVCableDist_mvgd_33535_lvgd_1197640000_building_445144,BranchTee_mvgd_33535_lvgd_1197640000_14,BranchTee_mvgd_33535_lvgd_1197640000_building_445144,0.015701957455095922,0.01362929907102326,0.0013368200784923295,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116591149989969 47.464975946334924, 10.1167729 47.465044796235865)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_15_LVCableDist_mvgd_33535_lvgd_1197640000_building_445146,BranchTee_mvgd_33535_lvgd_1197640000_15,BranchTee_mvgd_33535_lvgd_1197640000_building_445146,0.013727689944806424,0.011915634872091976,0.0011687365477849193,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116764167338369 47.4647909816416, 10.1169223 47.46485209623584)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_16_LVCableDist_mvgd_33535_lvgd_1197640000_17,BranchTee_mvgd_33535_lvgd_1197640000_16,BranchTee_mvgd_33535_lvgd_1197640000_17,0.09867435257654156,0.04430478430686716,0.008369854771109186,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119006699999996 47.4624933962356, 10.119317399999993 47.46236799623559, 10.119663299999997 47.46224939623561, 10.120170199999999 47.46208949623555)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_16_LVCableDist_mvgd_33535_lvgd_1197640000_18,BranchTee_mvgd_33535_lvgd_1197640000_16,BranchTee_mvgd_33535_lvgd_1197640000_18,0.035221686053085836,0.01581453703783554,0.002987609134088355,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119006699999996 47.4624933962356, 10.119070299999994 47.46255419623562, 10.1191242 47.46260579623561, 10.119298 47.46274059623562)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_16_LVStation_mvgd_33535_lvgd_1197640000,BusBar_mvgd_33535_lvgd_1197640000_LV,BranchTee_mvgd_33535_lvgd_1197640000_16,0.08532101798515501,0.0383091370753346,0.007237184849072072,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.118035699999993 47.462886696235664, 10.118517600000004 47.46268299623564, 10.118922199999995 47.46252849623559, 10.119006699999996 47.4624933962356)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_17_LVCableDist_mvgd_33535_lvgd_1197640000_20,BranchTee_mvgd_33535_lvgd_1197640000_17,BranchTee_mvgd_33535_lvgd_1197640000_20,0.11055603577263108,0.04963966006191135,0.009377694804419322,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.120170199999999 47.46208949623555, 10.120678399999994 47.46193899623558, 10.120626699999994 47.46190519623557, 10.120553 47.46185709623554, 10.120454899999999 47.46179299623554, 10.120437299999999 47.461781496235595, 10.120413900000008 47.46175889623552, 10.120358800000004 47.461705696235526, 10.120297099999993 47.46164609623555, 10.120230900000005 47.461582096235496, 10.120156299999993 47.461585896235526, 10.120027599999993 47.461627596235545)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_17_LVCableDist_mvgd_33535_lvgd_1197640000_building_445179,BranchTee_mvgd_33535_lvgd_1197640000_17,BranchTee_mvgd_33535_lvgd_1197640000_building_445179,0.019262007063800858,0.016719422131379145,0.0016399125948843532,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12011617733429 47.461920052336, 10.120170199999999 47.46208949623555)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_18_LVCableDist_mvgd_33535_lvgd_1197640000_19,BranchTee_mvgd_33535_lvgd_1197640000_18,BranchTee_mvgd_33535_lvgd_1197640000_19,0.023030647268012055,0.010340760623337412,0.001953528631144322,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119298 47.46274059623562, 10.119574299999996 47.46282869623566)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_18_LVCableDist_mvgd_33535_lvgd_1197640000_23,BranchTee_mvgd_33535_lvgd_1197640000_18,BranchTee_mvgd_33535_lvgd_1197640000_23,0.031557256951472365,0.014169208371211092,0.0026767812583671576,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119298 47.46274059623562, 10.119304800000004 47.46302459623565)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_19_LVCableDist_mvgd_33535_lvgd_1197640000_24,BranchTee_mvgd_33535_lvgd_1197640000_19,BranchTee_mvgd_33535_lvgd_1197640000_24,0.015048514897123898,0.006756783188808631,0.0012764602039025072,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119574299999996 47.46282869623566, 10.119747299999998 47.46289609623566)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_19_LVCableDist_mvgd_33535_lvgd_1197640000_building_445189,BranchTee_mvgd_33535_lvgd_1197640000_19,BranchTee_mvgd_33535_lvgd_1197640000_building_445189,0.02517872876089443,0.021855136564456368,0.002143645482083007,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119683068777768 47.462614441502886, 10.119574299999996 47.46282869623566)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_19_LVCableDist_mvgd_33535_lvgd_1197640000_building_445193,BranchTee_mvgd_33535_lvgd_1197640000_19,BranchTee_mvgd_33535_lvgd_1197640000_building_445193,0.01890168307594324,0.016406660909918734,0.0016092356335495636,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119763552924478 47.46271721807158, 10.119574299999996 47.46282869623566)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_1_LVCableDist_mvgd_33535_lvgd_1197640000_10,BranchTee_mvgd_33535_lvgd_1197640000_1,BranchTee_mvgd_33535_lvgd_1197640000_10,0.3892539307475666,0.17477501490565742,0.03301768680887265,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119308200000003 47.46660619623599, 10.1196551 47.46668069623601, 10.120155000000002 47.46660399623599, 10.120138600000004 47.46649279623598, 10.1198726 47.466255796235934, 10.119597400000002 47.46609999623595, 10.119352899999997 47.46596159623597, 10.119141599999995 47.46584039623592, 10.118953999999999 47.465732796235926, 10.1186639 47.465414196235905, 10.118298000000003 47.46515829623586, 10.118102599999993 47.46510529623582, 10.117781600000002 47.46503009623587, 10.1174877 47.46492189623583, 10.117135999999999 47.46466209623581)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_1_LVCableDist_mvgd_33535_lvgd_1197640000_building_445159,BranchTee_mvgd_33535_lvgd_1197640000_1,BranchTee_mvgd_33535_lvgd_1197640000_building_445159,0.027402147205195983,0.023785063774110115,0.0023329410159508472,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118970200007569 47.4666964962862, 10.119308200000003 47.46660619623599)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_20_LVCableDist_mvgd_33535_lvgd_1197640000_22,BranchTee_mvgd_33535_lvgd_1197640000_20,BranchTee_mvgd_33535_lvgd_1197640000_22,0.057614936455856705,0.02586910646867966,0.004887071849882579,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.120027599999993 47.461627596235545, 10.119936400000002 47.46164759623549, 10.119794199999998 47.46164759623549, 10.1196762 47.46163129623553, 10.119583600000002 47.46162309623553, 10.119491100000005 47.46161489623553, 10.119381199999996 47.461600396235525, 10.119322199999997 47.461600396235525, 10.119276599999997 47.461609496235546)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_20_LVCableDist_mvgd_33535_lvgd_1197640000_building_445169,BranchTee_mvgd_33535_lvgd_1197640000_20,BranchTee_mvgd_33535_lvgd_1197640000_building_445169,0.013565316993091927,0.011774695150003792,0.0011549125756669999,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119991679203343 47.46150796157359, 10.120027599999993 47.461627596235545)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_21_LVCableDist_mvgd_33535_lvgd_1197640000_22,BranchTee_mvgd_33535_lvgd_1197640000_21,BranchTee_mvgd_33535_lvgd_1197640000_22,0.0037155283382139664,0.001668272223858071,0.0003151622663515176,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119276599999997 47.461609496235546, 10.119233600000006 47.46162579623556)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_21_LVCableDist_mvgd_33535_lvgd_1197640000_25,BranchTee_mvgd_33535_lvgd_1197640000_21,BranchTee_mvgd_33535_lvgd_1197640000_25,0.017028151774535528,0.007645640146766452,0.0014443789460155062,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119233600000006 47.46162579623556, 10.119201499999997 47.461669296235556, 10.1191451 47.461707396235546, 10.119118299999995 47.46175459623555)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_21_LVCableDist_mvgd_33535_lvgd_1197640000_building_445125,BranchTee_mvgd_33535_lvgd_1197640000_21,BranchTee_mvgd_33535_lvgd_1197640000_building_445125,0.02887238814181179,0.025061232907092633,0.0024581131551513337,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118894244251416 47.46150571966894, 10.119233600000006 47.46162579623556)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_22_LVCableDist_mvgd_33535_lvgd_1197640000_building_422867,BranchTee_mvgd_33535_lvgd_1197640000_22,BranchTee_mvgd_33535_lvgd_1197640000_building_422867,0.1710642977848234,0.14848381047722672,0.014563928646853276,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118209127698204 47.46025117323171, 10.119276599999997 47.461609496235546)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_23_LVCableDist_mvgd_33535_lvgd_1197640000_building_445206,BranchTee_mvgd_33535_lvgd_1197640000_23,BranchTee_mvgd_33535_lvgd_1197640000_building_445206,0.012021616542658133,0.01043476315902726,0.0010234863020180535,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11925133537995 47.46312652772999, 10.119304800000004 47.46302459623565)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_24_LVCableDist_mvgd_33535_lvgd_1197640000_building_445219,BranchTee_mvgd_33535_lvgd_1197640000_24,BranchTee_mvgd_33535_lvgd_1197640000_building_445219,0.015404338019791906,0.013370965401179375,0.0013114816047382287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119935499647374 47.46284233613432, 10.119747299999998 47.46289609623566)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_25_LVCableDist_mvgd_33535_lvgd_1197640000_26,BranchTee_mvgd_33535_lvgd_1197640000_25,BranchTee_mvgd_33535_lvgd_1197640000_26,0.007162569273454408,0.0032159936037810294,0.0006075506252784335,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119118299999995 47.46175459623555, 10.119045900000001 47.46179629623554)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_25_LVCableDist_mvgd_33535_lvgd_1197640000_building_445166,BranchTee_mvgd_33535_lvgd_1197640000_25,BranchTee_mvgd_33535_lvgd_1197640000_building_445166,0.03380522011755322,0.029342931062036195,0.0028780804648232887,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119488477897244 47.46192599894735, 10.119118299999995 47.46175459623555)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_26_LVCableDist_mvgd_33535_lvgd_1197640000_27,BranchTee_mvgd_33535_lvgd_1197640000_26,BranchTee_mvgd_33535_lvgd_1197640000_27,0.011585862076555138,0.005202052072373257,0.0009827475980006756,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.119045900000001 47.46179629623554, 10.118898399999997 47.46182529623556)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_26_LVCableDist_mvgd_33535_lvgd_1197640000_building_445153,BranchTee_mvgd_33535_lvgd_1197640000_26,BranchTee_mvgd_33535_lvgd_1197640000_building_445153,0.015471156799536067,0.013428964101997306,0.0013171703659412698,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.119044949983367 47.46193554626137, 10.119045900000001 47.46179629623554)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_27_LVCableDist_mvgd_33535_lvgd_1197640000_28,BranchTee_mvgd_33535_lvgd_1197640000_27,BranchTee_mvgd_33535_lvgd_1197640000_28,0.021946062169075638,0.009853781913914962,0.0018615308675110087,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.118898399999997 47.46182529623556, 10.1188059 47.46184249623557, 10.118713299999996 47.461859696235535, 10.118616700000004 47.46187429623556)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_27_LVCableDist_mvgd_33535_lvgd_1197640000_building_445137,BranchTee_mvgd_33535_lvgd_1197640000_27,BranchTee_mvgd_33535_lvgd_1197640000_building_445137,0.03024163975690437,0.026249743308992993,0.0025746873502348745,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118798920264743 47.461561620103545, 10.118898399999997 47.46182529623556)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_28_LVCableDist_mvgd_33535_lvgd_1197640000_building_445150,BranchTee_mvgd_33535_lvgd_1197640000_28,BranchTee_mvgd_33535_lvgd_1197640000_building_445150,0.016157703556611627,0.014024886687138893,0.001375621007672218,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118547868251207 47.461736584625335, 10.118616700000004 47.46187429623556)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_28_LVCableDist_mvgd_33535_lvgd_1197640000_building_445162,BranchTee_mvgd_33535_lvgd_1197640000_28,BranchTee_mvgd_33535_lvgd_1197640000_building_445162,0.015583136950196797,0.01352616287277082,0.001326704038047054,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118634017662497 47.46201406113009, 10.118616700000004 47.46187429623556)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_2_LVCableDist_mvgd_33535_lvgd_1197640000_3,BranchTee_mvgd_33535_lvgd_1197640000_2,BranchTee_mvgd_33535_lvgd_1197640000_3,0.1146993653422589,0.05150001503867425,0.009729144455327613,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.114228000000006 47.46410099623573, 10.115015099999997 47.46382049623575, 10.115602099999998 47.46366259623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_2_LVCableDist_mvgd_33535_lvgd_1197640000_building_445127,BranchTee_mvgd_33535_lvgd_1197640000_2,BranchTee_mvgd_33535_lvgd_1197640000_building_445127,0.03930998803024038,0.03412106961024865,0.0033467407763905096,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114618399922895 47.464335296341964, 10.114228000000006 47.46410099623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_2_LVCableDist_mvgd_33535_lvgd_1197640000_building_445128,BranchTee_mvgd_33535_lvgd_1197640000_2,BranchTee_mvgd_33535_lvgd_1197640000_building_445128,0.08184006488491538,0.07103717632010655,0.006967630773178755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114776349960751 47.46473654633261, 10.114228000000006 47.46410099623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_3_LVCableDist_mvgd_33535_lvgd_1197640000_4,BranchTee_mvgd_33535_lvgd_1197640000_3,BranchTee_mvgd_33535_lvgd_1197640000_4,0.03739224955216185,0.016789120048920674,0.003171722845345234,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.116079600000006 47.463572496235734, 10.116012399999995 47.46358549623573, 10.115829999999997 47.46361849623571, 10.115602099999998 47.46366259623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_4_LVCableDist_mvgd_33535_lvgd_1197640000_5,BranchTee_mvgd_33535_lvgd_1197640000_4,BranchTee_mvgd_33535_lvgd_1197640000_5,0.10206526850765378,0.04582730555993655,0.0086574824387185,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.116079600000006 47.463572496235734, 10.116063400000005 47.4635308962357, 10.115918600000004 47.463257296235675, 10.115766899999997 47.462970496235634, 10.115729899999998 47.46287159623568, 10.115724899999996 47.46277729623566, 10.115757299999997 47.46269649623565)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_4_LVCableDist_mvgd_33535_lvgd_1197640000_7,BranchTee_mvgd_33535_lvgd_1197640000_4,BranchTee_mvgd_33535_lvgd_1197640000_7,0.09303653965462357,0.04177340630492598,0.007891638556348285,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.116079600000006 47.463572496235734, 10.116541100000003 47.46345049623571, 10.116617200000002 47.463427596235704, 10.1167903 47.46337539623566, 10.117072400000003 47.463278696235676, 10.117206000000001 47.46323349623563)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_5_LVCableDist_mvgd_33535_lvgd_1197640000_6,BranchTee_mvgd_33535_lvgd_1197640000_5,BranchTee_mvgd_33535_lvgd_1197640000_6,0.04745759590077627,0.021308460559448548,0.0040254957352506195,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.115757299999997 47.46269649623565, 10.115869400000005 47.462627496235626, 10.115986499999998 47.462563496235624, 10.116096099999993 47.462526396235624, 10.116300300000004 47.462514596235636)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_5_LVCableDist_mvgd_33535_lvgd_1197640000_building_445134,BranchTee_mvgd_33535_lvgd_1197640000_5,BranchTee_mvgd_33535_lvgd_1197640000_building_445134,0.019811980924215464,0.017196799442219024,0.0016867358079360212,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115518699994519 47.46262204627483, 10.115757299999997 47.46269649623565)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_6_LVCableDist_mvgd_33535_lvgd_1197640000_building_445143,BranchTee_mvgd_33535_lvgd_1197640000_6,BranchTee_mvgd_33535_lvgd_1197640000_building_445143,0.010357561736392008,0.008990363587188263,0.0008818134002101159,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116275180954979 47.4626062485222, 10.116300300000004 47.462514596235636)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_6_LVCableDist_mvgd_33535_lvgd_1197640000_building_445148,BranchTee_mvgd_33535_lvgd_1197640000_6,BranchTee_mvgd_33535_lvgd_1197640000_building_445148,0.02066147922988625,0.017934163971541264,0.001759059681880627,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116571649987012 47.46248954627517, 10.116300300000004 47.462514596235636)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_7_LVCableDist_mvgd_33535_lvgd_1197640000_building_445151,BranchTee_mvgd_33535_lvgd_1197640000_7,BranchTee_mvgd_33535_lvgd_1197640000_building_445151,0.05977098336596548,0.051881213561658035,0.005088731828713618,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11799390700176 47.463177501508035, 10.117206000000001 47.46323349623563)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_7_LVCableDist_mvgd_33535_lvgd_1197640000_building_445198,BranchTee_mvgd_33535_lvgd_1197640000_7,BranchTee_mvgd_33535_lvgd_1197640000_building_445198,0.09918625229233591,0.08609366698974756,0.008444435921698941,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118507520957008 47.46335916158485, 10.117206000000001 47.46323349623563)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_7_LVCableDist_mvgd_33535_lvgd_1197640000_building_445203,BranchTee_mvgd_33535_lvgd_1197640000_7,BranchTee_mvgd_33535_lvgd_1197640000_building_445203,0.10212001633467536,0.08864017417849822,0.008694208263050266,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.118432994575295 47.46362146851073, 10.117206000000001 47.46323349623563)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_7_LVStation_mvgd_33535_lvgd_1197640000,BusBar_mvgd_33535_lvgd_1197640000_LV,BranchTee_mvgd_33535_lvgd_1197640000_7,0.07350591481498323,0.03300415575192747,0.006234992333410009,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.117206000000001 47.46323349623563, 10.118035699999993 47.462886696235664)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_8_LVCableDist_mvgd_33535_lvgd_1197640000_9,BranchTee_mvgd_33535_lvgd_1197640000_8,BranchTee_mvgd_33535_lvgd_1197640000_9,0.030212028984881636,0.013565201014211855,0.0025626749843415436,0.09976612651596732,1,cable,NAYY 4x1x50,"LINESTRING (10.116823699999998 47.46365049623573, 10.116944299999993 47.46390979623574)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_8_LVCableDist_mvgd_33535_lvgd_1197640000_building_445129,BranchTee_mvgd_33535_lvgd_1197640000_8,BranchTee_mvgd_33535_lvgd_1197640000_building_445129,0.013728869728215118,0.011916658924090722,0.001168836991194827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116671808765307 47.46371854575953, 10.116823699999998 47.46365049623573)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_9_LVCableDist_mvgd_33535_lvgd_1197640000_building_445136,BranchTee_mvgd_33535_lvgd_1197640000_9,BranchTee_mvgd_33535_lvgd_1197640000_building_445136,0.018665212155143083,0.016201404150664196,0.0015891031707143248,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116697642896796 47.46392274818663, 10.116944299999993 47.46390979623574)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_9_LVCableDist_mvgd_33535_lvgd_1197640000_building_445140,BranchTee_mvgd_33535_lvgd_1197640000_9,BranchTee_mvgd_33535_lvgd_1197640000_building_445140,0.024144375467249405,0.020957317905572485,0.0020555835792818006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.116819799987825 47.46410999627713, 10.116944299999993 47.46390979623574)" +Branch_LVCableDist_mvgd_33535_lvgd_1197640000_9_LVCableDist_mvgd_33535_lvgd_1197640000_building_445147,BranchTee_mvgd_33535_lvgd_1197640000_9,BranchTee_mvgd_33535_lvgd_1197640000_building_445147,0.025793397640971303,0.02238866915236309,0.002195976645433885,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.117189765872267 47.463748197870274, 10.116944299999993 47.46390979623574)" +Branch_LVCableDist_mvgd_33535_lvgd_1198790000_building_422884_LVStation_mvgd_33535_lvgd_1198790000,BusBar_mvgd_33535_lvgd_1198790000_LV,BranchTee_mvgd_33535_lvgd_1198790000_building_422884,0.01733220490126703,0.015044353854299782,0.0014756147176438383,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.111907712108756 47.453830925585656, 10.11213156404492 47.45379599917682)" +Branch_LVCableDist_mvgd_33535_lvgd_1198790000_building_422889_LVStation_mvgd_33535_lvgd_1198790000,BusBar_mvgd_33535_lvgd_1198790000_LV,BranchTee_mvgd_33535_lvgd_1198790000_building_422889,0.00982300825195945,0.008526371162700802,0.0008363030341897594,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.112258431752162 47.453776204468355, 10.11213156404492 47.45379599917682)" +Branch_LVCableDist_mvgd_33535_lvgd_1199190000_1_LVCableDist_mvgd_33535_lvgd_1199190000_building_448121,BranchTee_mvgd_33535_lvgd_1199190000_1,BranchTee_mvgd_33535_lvgd_1199190000_building_448121,0.04120398531421251,0.03576505925273646,0.0035079903279234726,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114429565771463 47.5623104679432, 10.114723399999995 47.56262329624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1199190000_1_LVCableDist_mvgd_33535_lvgd_1199190000_building_448127,BranchTee_mvgd_33535_lvgd_1199190000_1,BranchTee_mvgd_33535_lvgd_1199190000_building_448127,0.01560974445465599,0.0135492581866414,0.0013289693254356705,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114865250023545 47.562520846335985, 10.114723399999995 47.56262329624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1199190000_1_LVCableDist_mvgd_33535_lvgd_1199190000_building_448131,BranchTee_mvgd_33535_lvgd_1199190000_1,BranchTee_mvgd_33535_lvgd_1199190000_building_448131,0.026360823135166942,0.022881194481324904,0.002244285641038951,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114769147424523 47.56285851450456, 10.114723399999995 47.56262329624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1199190000_1_LVStation_mvgd_33535_lvgd_1199190000,BusBar_mvgd_33535_lvgd_1199190000_LV,BranchTee_mvgd_33535_lvgd_1199190000_1,0.04804976003736049,0.041707191712428905,0.0040908201520973644,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114194200000002 47.56238169624468, 10.114723399999995 47.56262329624471)" +Branch_LVCableDist_mvgd_33535_lvgd_1199190000_2_LVCableDist_mvgd_33535_lvgd_1199190000_building_448113,BranchTee_mvgd_33535_lvgd_1199190000_2,BranchTee_mvgd_33535_lvgd_1199190000_building_448113,0.0195675171925434,0.016984604923127672,0.0016659228598754395,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.113344745368533 47.56236098842158, 10.113524900000002 47.5624878962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1199190000_2_LVCableDist_mvgd_33535_lvgd_1199190000_building_448118,BranchTee_mvgd_33535_lvgd_1199190000_2,BranchTee_mvgd_33535_lvgd_1199190000_building_448118,0.015705682308844948,0.013632532244077416,0.001337137201965335,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.113470354985399 47.562351462339635, 10.113524900000002 47.5624878962447)" +Branch_LVCableDist_mvgd_33535_lvgd_1199190000_2_LVStation_mvgd_33535_lvgd_1199190000,BusBar_mvgd_33535_lvgd_1199190000_LV,BranchTee_mvgd_33535_lvgd_1199190000_2,0.1008276048114085,0.08751836097630257,0.008584176015229006,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.113524900000002 47.5624878962447, 10.113675400000005 47.562284796244654, 10.113896800000004 47.56205839624468, 10.113896799999994 47.56212489624465, 10.113939999999994 47.56222179624473, 10.1140074 47.56229879624465, 10.114194200000002 47.56238169624468)" +Branch_LVCableDist_mvgd_33535_lvgd_1199590000_1_LVCableDist_mvgd_33535_lvgd_1199590000_building_34328667,BranchTee_mvgd_33535_lvgd_1199590000_1,BranchTee_mvgd_33535_lvgd_1199590000_building_34328667,0.0368674997111833,0.0320009897493071,0.0031387942553445744,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.11531565868121 47.544410366811114, 10.1154002 47.54473719624311)" +Branch_LVCableDist_mvgd_33535_lvgd_1199590000_1_LVCableDist_mvgd_33535_lvgd_1199590000_building_34328668,BranchTee_mvgd_33535_lvgd_1199590000_1,BranchTee_mvgd_33535_lvgd_1199590000_building_34328668,0.06916712963580664,0.06003706852388016,0.005888693045644436,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.114515064480992 47.54490275153684, 10.1154002 47.54473719624311)" +Branch_LVCableDist_mvgd_33535_lvgd_1199590000_1_LVCableDist_mvgd_33535_lvgd_1199590000_building_34328669,BranchTee_mvgd_33535_lvgd_1199590000_1,BranchTee_mvgd_33535_lvgd_1199590000_building_34328669,0.02973982683014525,0.025814169688566077,0.0025319644223415197,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115035290719899 47.54483936567325, 10.1154002 47.54473719624311)" +Branch_LVCableDist_mvgd_33535_lvgd_1199590000_1_LVStation_mvgd_33535_lvgd_1199590000,BusBar_mvgd_33535_lvgd_1199590000_LV,BranchTee_mvgd_33535_lvgd_1199590000_1,0.02438722289486378,0.02116810947274176,0.0020762589198037398,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.115115900000001 47.54484219624309, 10.1154002 47.54473719624311)" +Branch_LVCableDist_mvgd_33535_lvgd_1200790000_building_422874_LVStation_mvgd_33535_lvgd_1200790000,BusBar_mvgd_33535_lvgd_1200790000_LV,BranchTee_mvgd_33535_lvgd_1200790000_building_422874,0.001,0.0008680000000000001,8.513716091228341e-05,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122408699950109 47.458826896343886, 10.122408699950109 47.458826896343886)" +Branch_LVCableDist_mvgd_33535_lvgd_1200800000_1_LVCableDist_mvgd_33535_lvgd_1200800000_building_422898,BranchTee_mvgd_33535_lvgd_1200800000_1,BranchTee_mvgd_33535_lvgd_1200800000_building_422898,0.0410812576146902,0.03565853160955109,0.0034975416400208474,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12487492890233 47.46093080052908, 10.125139699999995 47.46060769623539)" +Branch_LVCableDist_mvgd_33535_lvgd_1200800000_1_LVCableDist_mvgd_33535_lvgd_1200800000_building_445229,BranchTee_mvgd_33535_lvgd_1200800000_1,BranchTee_mvgd_33535_lvgd_1200800000_building_445229,0.04792434642317325,0.041598332695314384,0.004080142793045715,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125125749992383 47.461038946318034, 10.125139699999995 47.46060769623539)" +Branch_LVCableDist_mvgd_33535_lvgd_1200800000_1_LVStation_mvgd_33535_lvgd_1200800000,BusBar_mvgd_33535_lvgd_1200800000_LV,BranchTee_mvgd_33535_lvgd_1200800000_1,0.058355708849952365,0.05065275528175865,0.004968239374508755,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125139699999995 47.46060769623539, 10.125065599999994 47.46064449623545, 10.1245872 47.46084289623548, 10.124696899999998 47.46087769623543)" +Branch_LVCableDist_mvgd_33535_lvgd_1200820000_1_LVCableDist_mvgd_33535_lvgd_1200820000_building_422899,BranchTee_mvgd_33535_lvgd_1200820000_1,BranchTee_mvgd_33535_lvgd_1200820000_building_422899,0.034192843660187794,0.029679388297043006,0.002911081632745958,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.128018214759912 47.45934069940668, 10.1277503 47.459092496235286)" +Branch_LVCableDist_mvgd_33535_lvgd_1200820000_1_LVCableDist_mvgd_33535_lvgd_1200820000_building_422900,BranchTee_mvgd_33535_lvgd_1200820000_1,BranchTee_mvgd_33535_lvgd_1200820000_building_422900,0.041407280159817254,0.035941519178721376,0.0035252982739063616,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.128267755814575 47.459216574551625, 10.1277503 47.459092496235286)" +Branch_LVCableDist_mvgd_33535_lvgd_1200820000_1_LVCableDist_mvgd_33535_lvgd_1200820000_building_422905,BranchTee_mvgd_33535_lvgd_1200820000_1,BranchTee_mvgd_33535_lvgd_1200820000_building_422905,0.14731718343545644,0.1278713152219762,0.012542166751288827,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.129039649951231 47.460088146305914, 10.1277503 47.459092496235286)" +Branch_LVCableDist_mvgd_33535_lvgd_1200820000_1_LVStation_mvgd_33535_lvgd_1200820000,BusBar_mvgd_33535_lvgd_1200820000_LV,BranchTee_mvgd_33535_lvgd_1200820000_1,0.023010621475558036,0.019973219440784375,0.0019590589832562287,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1277503 47.459092496235286, 10.127972999999997 47.45895099623527)" +Branch_LVCableDist_mvgd_33535_lvgd_1200820000_2_LVCableDist_mvgd_33535_lvgd_1200820000_building_422888,BranchTee_mvgd_33535_lvgd_1200820000_2,BranchTee_mvgd_33535_lvgd_1200820000_building_422888,0.02859885885716071,0.024823809488015495,0.002434825648429773,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.129188585115726 47.45755947628894, 10.129566900000006 47.45754389623515)" +Branch_LVCableDist_mvgd_33535_lvgd_1200820000_2_LVStation_mvgd_33535_lvgd_1200820000,BusBar_mvgd_33535_lvgd_1200820000_LV,BranchTee_mvgd_33535_lvgd_1200820000_2,0.20987192450054393,0.18216883046647211,0.0178678998071734,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.127972999999997 47.45895099623527, 10.1281156 47.45885139623525, 10.128459100000004 47.45862979623522, 10.128865700000004 47.45835689623517, 10.1292187 47.45806139623522, 10.1295171 47.457768596235184, 10.1296839 47.45758959623512, 10.129566900000006 47.45754389623515)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_1_LVCableDist_mvgd_33535_lvgd_1201610000_2,BranchTee_mvgd_33535_lvgd_1201610000_1,BranchTee_mvgd_33535_lvgd_1201610000_2,0.017419502949078406,0.015120128559800057,0.0014830470255876836,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122491599999998 47.564615896244874, 10.122310099999998 47.564518696244875)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_1_LVCableDist_mvgd_33535_lvgd_1201610000_building_448136,BranchTee_mvgd_33535_lvgd_1201610000_1,BranchTee_mvgd_33535_lvgd_1201610000_building_448136,0.012387257615570208,0.01075213961031494,0.0010546159448787088,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12250440002198 47.56472704629207, 10.122491599999998 47.564615896244874)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_1_LVCableDist_mvgd_33535_lvgd_1201610000_building_448138,BranchTee_mvgd_33535_lvgd_1201610000_1,BranchTee_mvgd_33535_lvgd_1201610000_building_448138,0.01774731532565909,0.01540466970267209,0.0015109560406416712,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122670973343965 47.56451227891304, 10.122491599999998 47.564615896244874)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_1_LVCableDist_mvgd_33535_lvgd_1201610000_building_448144,BranchTee_mvgd_33535_lvgd_1201610000_1,BranchTee_mvgd_33535_lvgd_1201610000_building_448144,0.1123297645355422,0.09750223561685063,0.009563437238501362,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12370390093763 47.56402673793879, 10.122491599999998 47.564615896244874)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_1_LVCableDist_mvgd_33535_lvgd_1201610000_building_448146,BranchTee_mvgd_33535_lvgd_1201610000_1,BranchTee_mvgd_33535_lvgd_1201610000_building_448146,0.10680257943924565,0.09270463895326522,0.009092868391565988,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.123724449999637 47.56414059624916, 10.122491599999998 47.564615896244874)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_1_LVStation_mvgd_33535_lvgd_1201610000,BusBar_mvgd_33535_lvgd_1201610000_LV,BranchTee_mvgd_33535_lvgd_1201610000_1,0.16532581842193558,0.1435028103902401,0.014075370805943278,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.123861900000003 47.56404329624482, 10.123794299999998 47.56437869624481, 10.1237366 47.56452709624485, 10.123641299999997 47.564628096244874, 10.1235106 47.56471589624491, 10.123373999999998 47.5647763962449, 10.123207299999999 47.56480139624488, 10.123048700000004 47.56479259624487, 10.1227492 47.56470739624488, 10.122491599999998 47.564615896244874)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_2_LVCableDist_mvgd_33535_lvgd_1201610000_building_448135,BranchTee_mvgd_33535_lvgd_1201610000_2,BranchTee_mvgd_33535_lvgd_1201610000_building_448135,0.020824337457036924,0.01807552491270805,0.0017729249689714432,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122328757626581 47.56433169829944, 10.122310099999998 47.564518696244875)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_3_LVCableDist_mvgd_33535_lvgd_1201610000_4,BranchTee_mvgd_33535_lvgd_1201610000_3,BranchTee_mvgd_33535_lvgd_1201610000_4,0.03222653069418478,0.02797262864255239,0.00274367532935545,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.1251533 47.56434429624487, 10.1251475 47.564455196244865, 10.125209099999996 47.56450759624487, 10.125348400000002 47.56456799624485)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_3_LVCableDist_mvgd_33535_lvgd_1201610000_building_448153,BranchTee_mvgd_33535_lvgd_1201610000_3,BranchTee_mvgd_33535_lvgd_1201610000_building_448153,0.01215260625946159,0.010548462233212659,0.0010346383946154038,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125025400002528 47.56427759634103, 10.1251533 47.56434429624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_3_LVCableDist_mvgd_33535_lvgd_1201610000_building_448155,BranchTee_mvgd_33535_lvgd_1201610000_3,BranchTee_mvgd_33535_lvgd_1201610000_building_448155,0.01821773195559292,0.015812991337454656,0.001551005976960162,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125394362553495 47.56435816466374, 10.1251533 47.56434429624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_3_LVStation_mvgd_33535_lvgd_1201610000,BusBar_mvgd_33535_lvgd_1201610000_LV,BranchTee_mvgd_33535_lvgd_1201610000_3,0.13367292788316876,0.11602810140259048,0.011380533570805394,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.123861900000003 47.56404329624482, 10.1239422 47.56400309624487, 10.124143900000002 47.5639936962448, 10.1245251 47.56399889624481, 10.124774900000004 47.56401319624483, 10.124883300000002 47.564020496244844, 10.124966500000001 47.56403869624486, 10.1252587 47.564149896244864, 10.125181199999998 47.56424339624486, 10.1251533 47.56434429624487)" +Branch_LVCableDist_mvgd_33535_lvgd_1201610000_4_LVCableDist_mvgd_33535_lvgd_1201610000_building_448158,BranchTee_mvgd_33535_lvgd_1201610000_4,BranchTee_mvgd_33535_lvgd_1201610000_building_448158,0.009479393593361399,0.008228113639037695,0.0008070486577088778,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.125462121075056 47.56453140199108, 10.125348400000002 47.56456799624485)" +Branch_LVCableDist_mvgd_33535_lvgd_1202720000_1_LVCableDist_mvgd_33535_lvgd_1202720000_building_34328715,BranchTee_mvgd_33535_lvgd_1202720000_1,BranchTee_mvgd_33535_lvgd_1202720000_building_34328715,0.04183305503413763,0.036311091769631466,0.003561547537893783,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.126813273385709 47.558775571636325, 10.126657900000005 47.558414096244356)" +Branch_LVCableDist_mvgd_33535_lvgd_1202720000_1_LVCableDist_mvgd_33535_lvgd_1202720000_building_34328716,BranchTee_mvgd_33535_lvgd_1202720000_1,BranchTee_mvgd_33535_lvgd_1202720000_building_34328716,0.08218131702307158,0.07133338317602612,0.0069966840113766205,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.126910302710456 47.55913368540695, 10.126657900000005 47.558414096244356)" +Branch_LVCableDist_mvgd_33535_lvgd_1202720000_1_LVCableDist_mvgd_33535_lvgd_1202720000_building_448095,BranchTee_mvgd_33535_lvgd_1202720000_1,BranchTee_mvgd_33535_lvgd_1202720000_building_448095,0.41338951530681817,0.35882209928631814,0.03519480968412742,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.121290297394095 47.55763573678401, 10.126657900000005 47.558414096244356)" +Branch_LVCableDist_mvgd_33535_lvgd_1202720000_1_LVCableDist_mvgd_33535_lvgd_1202720000_building_448099,BranchTee_mvgd_33535_lvgd_1202720000_1,BranchTee_mvgd_33535_lvgd_1202720000_building_448099,0.4463851329845677,0.3874622954306048,0.03800396289575817,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.12086877085475 47.55755205513024, 10.126657900000005 47.558414096244356)" +Branch_LVCableDist_mvgd_33535_lvgd_1202720000_1_LVCableDist_mvgd_33535_lvgd_1202720000_building_448100,BranchTee_mvgd_33535_lvgd_1202720000_1,BranchTee_mvgd_33535_lvgd_1202720000_building_448100,0.35870224191818273,0.3113535459849826,0.03053889048978513,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122014716728541 47.55769477441065, 10.126657900000005 47.558414096244356)" +Branch_LVCableDist_mvgd_33535_lvgd_1202720000_1_LVCableDist_mvgd_33535_lvgd_1202720000_building_448101,BranchTee_mvgd_33535_lvgd_1202720000_1,BranchTee_mvgd_33535_lvgd_1202720000_building_448101,0.35340566574904936,0.3067561178701748,0.03008795503218946,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.122029150004703 47.557891146270755, 10.126657900000005 47.558414096244356)" +Branch_LVCableDist_mvgd_33535_lvgd_1202720000_1_LVStation_mvgd_33535_lvgd_1202720000,BusBar_mvgd_33535_lvgd_1202720000_LV,BranchTee_mvgd_33535_lvgd_1202720000_1,0.15582734165035014,0.13525813255250393,0.013266697460619222,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.126657900000005 47.558414096244356, 10.126240100000006 47.558285996244294, 10.125478300000003 47.55809189624432, 10.1247248 47.55791649624429)" +Branch_LVCableDist_mvgd_33535_lvgd_1204030000_building_34328646_LVStation_mvgd_33535_lvgd_1204030000,BusBar_mvgd_33535_lvgd_1204030000_LV,BranchTee_mvgd_33535_lvgd_1204030000_building_34328646,0.019564438169536697,0.016981932331157853,0.001665660720598265,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.13089554839512 47.53083521499085, 10.130638155610297 47.53085837400748)" +Branch_LVCableDist_mvgd_33535_lvgd_1204030000_building_34328647_LVStation_mvgd_33535_lvgd_1204030000,BusBar_mvgd_33535_lvgd_1204030000_LV,BranchTee_mvgd_33535_lvgd_1204030000_building_34328647,0.020266328949947662,0.01759117352855457,0.0017254177089129617,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.130768712916122 47.53069889531684, 10.130638155610297 47.53085837400748)" +Branch_LVCableDist_mvgd_33535_lvgd_1204030000_building_34328648_LVStation_mvgd_33535_lvgd_1204030000,BusBar_mvgd_33535_lvgd_1204030000_LV,BranchTee_mvgd_33535_lvgd_1204030000_building_34328648,0.04027787398714469,0.034961194620841594,0.0034291438388482113,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.13019318268463 47.53105926781657, 10.130638155610297 47.53085837400748)" +Branch_LVCableDist_mvgd_33535_lvgd_1205360000_building_34328494_LVStation_mvgd_33535_lvgd_1205360000,BusBar_mvgd_33535_lvgd_1205360000_LV,BranchTee_mvgd_33535_lvgd_1205360000_building_34328494,0.05164582373905659,0.044828575005501116,0.0043969788061194864,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.133780497141077 47.41346099314214, 10.134432452294615 47.413320640977645)" +Branch_LVCableDist_mvgd_33535_lvgd_1205360000_building_34328495_LVStation_mvgd_33535_lvgd_1205360000,BusBar_mvgd_33535_lvgd_1205360000_LV,BranchTee_mvgd_33535_lvgd_1205360000_building_34328495,0.047646049735329446,0.04135677117026596,0.004056449403151401,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.135005272949286 47.413140894895456, 10.134432452294615 47.413320640977645)" +Branch_LVCableDist_mvgd_33535_lvgd_1205360000_building_34328496_LVStation_mvgd_33535_lvgd_1205360000,BusBar_mvgd_33535_lvgd_1205360000_LV,BranchTee_mvgd_33535_lvgd_1205360000_building_34328496,0.03046600009664954,0.0264444880838918,0.0025937887525820935,0.08521689973238876,1,cable,NAYY 4x1x35,"LINESTRING (10.134828127629966 47.41326718954183, 10.134432452294615 47.413320640977645)" diff --git a/tests/data/ding0_test_network_3/loads.csv b/tests/data/ding0_test_network_3/loads.csv index ff7b9d7e8..b39bb2916 100644 --- a/tests/data/ding0_test_network_3/loads.csv +++ b/tests/data/ding0_test_network_3/loads.csv @@ -1,2464 +1,2473 @@ name,bus,p_set,building_id,annual_consumption,sector,number_households,type -Load_mvgd_33532_1_industrial,Bus_mvgd_33532_mvload_1,0.41663086091833246,541658,,industrial,0.0,conventional_load -Load_mvgd_33532_lvgd_1140900000_1_residential,BranchTee_mvgd_33532_lvgd_1140900000_building_444312,0.005516376853017537,444312,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_1_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430946,0.0024638222040785605,430946,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_2_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430947,0.0026410026606827567,430947,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_3_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430948,0.0030571918748098586,430948,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_4_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430951,0.0026768254629647823,430951,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_5_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430954,0.0029214489413419355,430954,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_6_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430957,0.002631837450784574,430957,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_7_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430963,0.005232021108934799,430963,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_8_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430964,0.002596017231052042,430964,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_9_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430965,0.0028610988917534184,430965,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_10_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430971,0.002476726170878769,430971,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_11_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430972,0.0026179952437533054,430972,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_12_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430980,0.0030436915973315556,430980,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_13_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430984,0.002747874498595789,430984,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_14_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430988,0.0028946056636494958,430988,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_15_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430998,0.0024753279785828817,430998,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_16_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_430999,0.002624645566954526,430999,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_17_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431000,0.003266858996260122,431000,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_18_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431003,0.00273500772050829,431003,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_19_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431004,0.002634217528397966,431004,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_20_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431005,0.002905929884924409,431005,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_21_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431006,0.0022256563907103975,431006,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_22_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431007,0.0024131192681237494,431007,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_23_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431009,0.0014636047881212884,431009,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_24_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431011,0.0024782026144243153,431011,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_25_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431012,0.0024089523245156693,431012,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_26_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431015,0.0015153761248016418,431015,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_27_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431019,0.002730046126420999,431019,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_28_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431021,0.002704174920357986,431021,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_29_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431023,0.003539122985358419,431023,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_30_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431024,0.004724119880677617,431024,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_31_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431025,0.0015041695386561664,431025,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_32_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431030,0.0020336386707550114,431030,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_33_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431031,0.002752105231176364,431031,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_34_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431033,0.003387752011884336,431033,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_35_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431037,0.005323468153486824,431037,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_36_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431040,0.001575580002088816,431040,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_37_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431046,0.0024605392671621725,431046,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_38_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431047,0.0014769053053962538,431047,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_39_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431048,0.003468561535071822,431048,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_40_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431049,0.004038665017414401,431049,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_41_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431050,0.0026704158333763746,431050,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_42_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431051,0.004763246022017031,431051,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_43_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431054,0.0028247626786320453,431054,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_44_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431057,0.002414495250493992,431057,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150350000_45_residential,BranchTee_mvgd_33532_lvgd_1150350000_building_431062,0.0048711583691210735,431062,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_1_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430960,0.0024376010625591525,430960,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_2_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430962,0.0022959580365179283,430962,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_3_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430966,0.002558815605595332,430966,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_4_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430978,0.0034391147892347865,430978,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_5_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430981,0.0030624592427572037,430981,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_6_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430986,0.0026601708595348776,430986,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_7_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430987,0.002468009549827642,430987,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_8_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430989,0.0029176014591062254,430989,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150360000_9_residential,BranchTee_mvgd_33532_lvgd_1150360000_building_430995,0.002714419635944535,430995,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_1_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431123,0.005642206928508852,431123,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_2_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431126,0.0056913337345076585,431126,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_3_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431128,0.004721444875912046,431128,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_4_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431131,0.0027270131802956004,431131,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_5_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431134,0.0026321029368725265,431134,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_6_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431141,0.004155026691696973,431141,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_7_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431142,0.0028720631056289104,431142,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_8_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431145,0.003740733843663094,431145,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_9_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431146,0.002547643496485597,431146,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_10_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431149,0.0025215460590869375,431149,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_11_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431151,0.002616981851331979,431151,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_12_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431152,0.0034442297867620037,431152,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_13_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431153,0.0032662154249262928,431153,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_14_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431154,0.004384026520402106,431154,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_15_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431157,0.0015391559822846579,431157,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_16_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431159,0.00485524521565081,431159,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_17_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431160,0.0071729397964923405,431160,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_18_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431161,0.0075451972611821575,431161,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_19_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431162,0.004419702892127839,431162,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_20_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431163,0.004194958330223471,431163,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_21_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431164,0.004195855507917581,431164,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_22_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431165,0.0024911158784027016,431165,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_23_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431166,0.003536879266358295,431166,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_24_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431167,0.004096988540415214,431167,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_25_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431169,0.0027794601119235053,431169,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_26_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431170,0.0026640405516962337,431170,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_27_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431171,0.002574028629897855,431171,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_28_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431172,0.003168199407482098,431172,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_29_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431174,0.002405531737711267,431174,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_30_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431175,0.004823052703192074,431175,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_31_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431176,0.002473315397762443,431176,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_32_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431177,0.0023520411978329592,431177,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_33_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431178,0.0013940620244824804,431178,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_34_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431179,0.005098699573872166,431179,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_35_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431180,0.003058283518480845,431180,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_36_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431181,0.0026790175309750327,431181,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_37_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431183,0.003202346651652612,431183,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_38_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431184,0.002504927611349944,431184,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_39_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431186,0.0029934852856443824,431186,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_40_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431187,0.004460766462097424,431187,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_41_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431191,0.0030680664742179196,431191,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_42_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431193,0.0027615855121127775,431193,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_43_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431194,0.0032776377830819664,431194,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_44_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431198,0.0034410390468625402,431198,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_45_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431202,0.002782581639496537,431202,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_46_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431203,0.002900342539094795,431203,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_47_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431215,0.003269673458698353,431215,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_48_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431223,0.0014805131270389492,431223,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_49_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431233,0.002605653239722926,431233,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_50_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431234,0.0015634629381193375,431234,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_51_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431240,0.004301133138028154,431240,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1150770000_52_residential,BranchTee_mvgd_33532_lvgd_1150770000_building_431248,0.005755765245316016,431248,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151720000_1_residential,BranchTee_mvgd_33532_lvgd_1151720000_building_440559,0.004797769027138878,440559,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151720000_2_residential,BranchTee_mvgd_33532_lvgd_1151720000_building_440566,0.002680422954409503,440566,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151720000_3_residential,BranchTee_mvgd_33532_lvgd_1151720000_building_440570,0.0016048005165902042,440570,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151720000_4_residential,BranchTee_mvgd_33532_lvgd_1151720000_building_440571,0.003069552473196593,440571,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151720000_5_residential,BranchTee_mvgd_33532_lvgd_1151720000_building_440576,0.0026678131399966265,440576,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151720000_6_residential,BranchTee_mvgd_33532_lvgd_1151720000_building_440578,0.003167722410590612,440578,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151720000_7_residential,BranchTee_mvgd_33532_lvgd_1151720000_building_440586,0.002671941603617251,440586,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151720000_8_residential,BranchTee_mvgd_33532_lvgd_1151720000_building_441464,0.004450247738009594,441464,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151730000_1_residential,BranchTee_mvgd_33532_lvgd_1151730000_building_440617,0.004391295364207066,440617,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151730000_2_residential,BranchTee_mvgd_33532_lvgd_1151730000_building_440633,0.0071347728140348865,440633,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151750000_1_residential,BranchTee_mvgd_33532_lvgd_1151750000_building_440588,0.001418341217910103,440588,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151750000_2_residential,BranchTee_mvgd_33532_lvgd_1151750000_building_440589,0.003988709987792965,440589,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_1_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441541,0.00405172832751837,441541,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_2_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441548,0.002304045290257442,441548,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_3_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441553,0.0027078628010349863,441553,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_4_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441554,0.0027774423660040797,441554,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_5_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441555,0.002508210548266332,441555,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_6_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441563,0.0027270131802956004,441563,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_7_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441565,0.0027709196207478482,441565,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_8_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441571,0.0028446010490777805,441571,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_9_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441574,0.004578030220918145,441574,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_10_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441575,0.0025363249568195697,441575,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_11_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441579,0.002671746621130477,441579,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151760000_12_residential,BranchTee_mvgd_33532_lvgd_1151760000_building_441580,0.0027944577515982543,441580,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_1_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441475,0.002733755184003847,441475,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_2_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441477,0.005215946804376127,441477,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_3_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441479,0.0014590252822315897,441479,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_4_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441480,0.0026036416919222854,441480,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_5_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441482,0.0024564606467467765,441482,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_6_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441487,0.0022941716870331385,441487,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_7_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441488,0.004789377290814058,441488,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_8_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441491,0.003397505268302233,441491,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151770000_9_residential,BranchTee_mvgd_33532_lvgd_1151770000_building_441492,0.0032950415841199927,441492,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151780000_1_residential,BranchTee_mvgd_33532_lvgd_1151780000_building_441533,0.003598628024752599,441533,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151780000_2_residential,BranchTee_mvgd_33532_lvgd_1151780000_building_441534,0.0028502847240035097,441534,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151790000_1_residential,BranchTee_mvgd_33532_lvgd_1151790000_building_441505,0.00239958877481637,441505,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151790000_2_residential,BranchTee_mvgd_33532_lvgd_1151790000_building_441512,0.004204297603957529,441512,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151810000_1_residential,BranchTee_mvgd_33532_lvgd_1151810000_building_441490,0.002590995721816497,441490,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151810000_2_residential,BranchTee_mvgd_33532_lvgd_1151810000_building_441508,0.003684023381076044,441508,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151810000_3_residential,BranchTee_mvgd_33532_lvgd_1151810000_building_441510,0.002720350977366709,441510,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151810000_4_residential,BranchTee_mvgd_33532_lvgd_1151810000_building_441515,0.0023380507524607525,441515,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151810000_5_residential,BranchTee_mvgd_33532_lvgd_1151810000_building_441516,0.0027383384345903115,441516,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151810000_6_residential,BranchTee_mvgd_33532_lvgd_1151810000_building_441518,0.0026623804888816845,441518,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151810000_7_residential,BranchTee_mvgd_33532_lvgd_1151810000_building_441536,0.0046795900127775914,441536,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_1_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441568,0.0025487126719759877,441568,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_2_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441578,0.0024701050304868277,441578,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_3_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441581,0.0025385691923295924,441581,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_4_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441587,0.0024680281441839965,441587,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_5_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441589,0.001610860081594741,441589,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_6_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441601,0.0047656049227245735,441601,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_7_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441805,0.0023766407565252745,441805,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_8_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441807,0.0026828805085077046,441807,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_9_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441813,0.001716971487809354,441813,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_10_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441817,0.004230585116998925,441817,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_11_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441818,0.005754764765642157,441818,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_12_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441824,0.0025737052947012442,441824,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_13_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441826,0.0036997802903019393,441826,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_14_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441827,0.003247962223359789,441827,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_15_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441840,0.002469062971766121,441840,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_16_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441845,0.0028182104923115863,441845,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_17_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441849,0.0025721273569605948,441849,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_18_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_441860,0.002896153127306119,441860,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_19_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_34328721,0.0029603245753804606,34328721,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_20_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_34328722,0.00299374457361355,34328722,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151840000_21_residential,BranchTee_mvgd_33532_lvgd_1151840000_building_34328723,0.002668357283174949,34328723,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151850000_1_residential,BranchTee_mvgd_33532_lvgd_1151850000_building_441576,0.0025010814203889806,441576,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151850000_2_residential,BranchTee_mvgd_33532_lvgd_1151850000_building_441577,0.004536221843674577,441577,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1151860000_1_residential,BranchTee_mvgd_33532_lvgd_1151860000_building_441842,0.002889509518733583,441842,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151860000_2_residential,BranchTee_mvgd_33532_lvgd_1151860000_building_441844,0.002667289140704355,441844,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1151860000_3_residential,BranchTee_mvgd_33532_lvgd_1151860000_building_441851,0.0015311153435635058,441851,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1152100000_1_residential,BranchTee_mvgd_33532_lvgd_1152100000_building_431219,0.003567314870396468,431219,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1152100000_2_residential,BranchTee_mvgd_33532_lvgd_1152100000_building_431494,0.002744194107312321,431494,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1152110000_1_residential,BranchTee_mvgd_33532_lvgd_1152110000_building_431378,0.005967847825307734,431378,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1152110000_2_residential,BranchTee_mvgd_33532_lvgd_1152110000_building_431380,0.005085796640091756,431380,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1152120000_1_residential,BranchTee_mvgd_33532_lvgd_1152120000_building_431473,0.002781690401666262,431473,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1152120000_2_residential,BranchTee_mvgd_33532_lvgd_1152120000_building_431480,0.004555092532825024,431480,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1152120000_3_residential,BranchTee_mvgd_33532_lvgd_1152120000_building_431486,0.004945458318054747,431486,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1152120000_4_residential,BranchTee_mvgd_33532_lvgd_1152120000_building_431487,0.004791364304394509,431487,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1152120000_5_residential,BranchTee_mvgd_33532_lvgd_1152120000_building_431489,0.0023891268668174027,431489,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1152120000_6_residential,BranchTee_mvgd_33532_lvgd_1152120000_building_431508,0.006409570706279021,431508,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1152930000_1_residential,BranchTee_mvgd_33532_lvgd_1152930000_building_431286,0.004423174871667166,431286,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1154980000_1_residential,BranchTee_mvgd_33532_lvgd_1154980000_building_431482,0.003391305083477765,431482,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1154980000_2_residential,BranchTee_mvgd_33532_lvgd_1154980000_building_431483,0.0025226330541688346,431483,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1154980000_3_residential,BranchTee_mvgd_33532_lvgd_1154980000_building_431490,0.00245997885392204,431490,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1154990000_1_residential,BranchTee_mvgd_33532_lvgd_1154990000_building_431502,0.0015955976014694138,431502,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1154990000_2_residential,BranchTee_mvgd_33532_lvgd_1154990000_building_431505,0.002722545369671504,431505,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156160000_1_residential,BranchTee_mvgd_33532_lvgd_1156160000_building_431324,0.0015239327569116347,431324,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156160000_2_residential,BranchTee_mvgd_33532_lvgd_1156160000_building_431326,0.0033056674840118106,431326,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156160000_3_residential,BranchTee_mvgd_33532_lvgd_1156160000_building_431331,0.0015817914210035822,431331,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156160000_4_residential,BranchTee_mvgd_33532_lvgd_1156160000_building_431333,0.002511596528907519,431333,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156160000_5_residential,BranchTee_mvgd_33532_lvgd_1156160000_building_431337,0.004332603569648452,431337,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_1_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431346,0.0033624626542222537,431346,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_2_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431348,0.003255843389649705,431348,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_3_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431349,0.004685239081540104,431349,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_4_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431352,0.002777470515793561,431352,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_5_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431353,0.00236852147917204,431353,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_6_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431354,0.003650920261665831,431354,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_7_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431358,0.001702580876393099,431358,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_8_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431360,0.004371784719292081,431360,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_9_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431363,0.0024915959743535797,431363,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_10_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431366,0.0023293033990706502,431366,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1156170000_11_residential,BranchTee_mvgd_33532_lvgd_1156170000_building_431373,0.004971220282274176,431373,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1156290000_1_residential,BranchTee_mvgd_33532_lvgd_1156290000_building_431538,0.005296351383803002,431538,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1156980000_1_residential,BranchTee_mvgd_33532_lvgd_1156980000_building_431534,0.005629430539653631,431534,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1156980000_2_residential,BranchTee_mvgd_33532_lvgd_1156980000_building_431539,0.0033510400378116306,431539,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1156980000_3_residential,BranchTee_mvgd_33532_lvgd_1156980000_building_431542,0.002438623752158657,431542,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1157450000_1_residential,BranchTee_mvgd_33532_lvgd_1157450000_building_431512,0.005088115253027197,431512,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1157450000_2_residential,BranchTee_mvgd_33532_lvgd_1157450000_building_431521,0.004172950101693131,431521,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1157450000_3_residential,BranchTee_mvgd_33532_lvgd_1157450000_building_431522,0.002423099788897093,431522,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1157460000_1_residential,BranchTee_mvgd_33532_lvgd_1157460000_building_431552,0.0026759858761243815,431552,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1157460000_2_residential,BranchTee_mvgd_33532_lvgd_1157460000_building_431558,0.005570943024759969,431558,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1157460000_3_residential,BranchTee_mvgd_33532_lvgd_1157460000_building_431559,0.0057874350497572275,431559,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1157460000_4_residential,BranchTee_mvgd_33532_lvgd_1157460000_building_431561,0.003460500106827246,431561,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1159020000_1_residential,BranchTee_mvgd_33532_lvgd_1159020000_building_448090,0.002930730107712385,448090,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1159020000_2_residential,BranchTee_mvgd_33532_lvgd_1159020000_building_448092,0.0014516227914903302,448092,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1159590000_1_residential,BranchTee_mvgd_33532_lvgd_1159590000_building_422769,0.006180776965023485,422769,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1159620000_1_residential,BranchTee_mvgd_33532_lvgd_1159620000_building_441506,0.005161438481742354,441506,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1160560000_1_residential,BranchTee_mvgd_33532_lvgd_1160560000_building_431444,0.0019556357332298005,431444,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1160560000_2_residential,BranchTee_mvgd_33532_lvgd_1160560000_building_431445,0.0026504607316935247,431445,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1160560000_3_residential,BranchTee_mvgd_33532_lvgd_1160560000_building_431447,0.0028698878241903685,431447,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161030000_1_residential,BranchTee_mvgd_33532_lvgd_1161030000_building_430899,0.0052450707315264515,430899,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161660000_1_residential,BranchTee_mvgd_33532_lvgd_1161660000_building_431557,0.005156677810005671,431557,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_1_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_441496,0.005188267038902679,441496,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_2_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431566,0.002600386904795378,431566,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_3_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431567,0.002828574521684743,431567,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_4_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431573,0.0024142806406310655,431573,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_5_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431574,0.005094922853492583,431574,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_6_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431576,0.006532707182648411,431576,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_7_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431577,0.004671930170979286,431577,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_8_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431579,0.0025467535499300695,431579,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_9_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431581,0.00573704176148671,431581,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_10_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431583,0.001650974435497918,431583,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_11_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431586,0.0023067386311244192,431586,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_12_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431588,0.0023735664896079776,431588,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_13_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431590,0.0021273672686572443,431590,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_14_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431591,0.0014528478238426655,431591,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_15_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431594,0.0022012680845666668,431594,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_16_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431607,0.00603561908912134,431607,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_17_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431722,0.005102083746728707,431722,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_18_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431723,0.004856664584852545,431723,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_19_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_431724,0.002363394343662202,431724,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_20_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_441499,0.0024942774354928857,441499,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_21_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_441501,0.005005905471504228,441501,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_22_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_441502,0.0026485137476302263,441502,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1161700000_23_residential,BranchTee_mvgd_33532_lvgd_1161700000_building_441503,0.0025877737330681602,441503,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_1_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431642,0.0028714528491835495,431642,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_2_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431649,0.0023762334884701187,431649,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_3_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431651,0.00256559376499649,431651,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_4_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431652,0.0031044925600616727,431652,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_5_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431653,0.0026421890839201617,431653,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_6_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431657,0.00251870112256468,431657,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_7_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431659,0.0042374606385159955,431659,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_8_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431665,0.0024262585051828336,431665,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163050000_9_residential,BranchTee_mvgd_33532_lvgd_1163050000_building_431674,0.007046201180089143,431674,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_1_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431708,0.002804205326407265,431708,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_2_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431713,0.001493340521246669,431713,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_3_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431714,0.0024284508314480337,431714,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_4_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431715,0.0017670867646268741,431715,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_5_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431717,0.002517677658200328,431717,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_6_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431719,0.004508940307333057,431719,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_7_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431721,0.0030198520829552355,431721,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_8_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431729,0.002567284818404963,431729,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_9_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431732,0.0028397453395197308,431732,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_10_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431733,0.0030460956926552383,431733,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_11_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431752,0.002864290922927628,431752,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163060000_12_residential,BranchTee_mvgd_33532_lvgd_1163060000_building_431755,0.0025581839139891737,431755,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163090000_1_residential,BranchTee_mvgd_33532_lvgd_1163090000_building_431691,0.004709612150641823,431691,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163090000_2_residential,BranchTee_mvgd_33532_lvgd_1163090000_building_431697,0.004693692282542875,431697,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163090000_3_residential,BranchTee_mvgd_33532_lvgd_1163090000_building_431698,0.0026977030513267806,431698,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163090000_4_residential,BranchTee_mvgd_33532_lvgd_1163090000_building_431699,0.002844456684561083,431699,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163090000_5_residential,BranchTee_mvgd_33532_lvgd_1163090000_building_431704,0.0028921579232393693,431704,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163090000_6_residential,BranchTee_mvgd_33532_lvgd_1163090000_building_431706,0.0026924793284658793,431706,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163090000_7_residential,BranchTee_mvgd_33532_lvgd_1163090000_building_431711,0.002448200878701084,431711,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163090000_8_residential,BranchTee_mvgd_33532_lvgd_1163090000_building_431712,0.0027137207980515404,431712,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_1_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_441674,0.0034626818446395215,441674,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_2_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_441684,0.002574442870836644,441684,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_3_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_441843,0.005261052580813248,441843,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_4_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_441847,0.0035257502858251047,441847,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_5_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_441862,0.004534134110663872,441862,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_6_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_441863,0.005323765663188498,441863,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_7_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_441868,0.0016219033214847404,441868,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_8_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_441869,0.0026966906919252518,441869,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_9_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_442020,0.002542440175765696,442020,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_10_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_442028,0.0015698242740322125,442028,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_11_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_442086,0.00146396673243283,442086,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_12_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_442096,0.002716071951110602,442096,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_13_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_442099,0.004490661538526566,442099,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850000_14_residential,BranchTee_mvgd_33532_lvgd_1163850000_building_442110,0.003995195027826588,442110,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_1_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_431833,0.0015911318568849122,431833,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_2_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_431834,0.004768385295509488,431834,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_3_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_431839,0.00260571728695037,431839,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_4_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_431844,0.002684130720717604,431844,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_5_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_431857,0.011306691961970134,431857,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_6_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_431860,0.010450292724365153,431860,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_7_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_431867,0.013599985582175416,431867,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_8_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_431868,0.013174177920713986,431868,,residential,11.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_9_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444861,0.0024362201733448725,444861,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_10_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444862,0.003177260024125786,444862,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_11_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444869,0.002677853059408324,444869,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_12_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444871,0.00352338389572403,444871,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_13_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444874,0.004004666528094723,444874,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_14_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444875,0.0036473615084635157,444875,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_15_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444876,0.003333959055460316,444876,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_16_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444878,0.004227769621540896,444878,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_17_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444881,0.004825678123007367,444881,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_18_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444882,0.002561318870819573,444882,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_19_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444885,0.0037538958071577223,444885,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_20_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444887,0.002842923424926675,444887,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_21_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444888,0.00331591994724684,444888,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_22_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444889,0.004389733954783177,444889,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_23_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444890,0.004941136163222094,444890,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_24_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444894,0.0015653174669107615,444894,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_25_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444896,0.0031696143863496947,444896,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_26_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444898,0.0028637674401452554,444898,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_27_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444900,0.0050874029858768354,444900,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_28_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444902,0.0017347067590748966,444902,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_29_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444904,0.0028465059375843314,444904,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_30_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444905,0.0024769596333529993,444905,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_31_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444906,0.0034387356709691115,444906,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_32_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444907,0.0027749969498884973,444907,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_33_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444908,0.005386327408163419,444908,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_34_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444912,0.002441103257927555,444912,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_35_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444913,0.004201390427992474,444913,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_36_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444914,0.005729117466620249,444914,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_37_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444916,0.003363292685629528,444916,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_38_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444918,0.002441821206686804,444918,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_39_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444921,0.0025947688266267895,444921,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_40_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444923,0.024673153088727456,444923,,residential,19.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_41_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444943,0.0024957288283083434,444943,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_42_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444949,0.004916152062910169,444949,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_43_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444956,0.0024686799796762053,444956,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_44_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444957,0.005065980221316717,444957,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_45_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444960,0.001723798328268468,444960,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_46_residential,BranchTee_mvgd_33532_lvgd_1163850001_building_444965,0.001542101638237169,444965,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_47_cts,BranchTee_mvgd_33532_lvgd_1163850001_building_431821,0.04326222693901225,431821,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850001_48_cts,BranchTee_mvgd_33532_lvgd_1163850001_building_431829,0.04326222693901225,431829,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_1_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_431801,0.002503747644486274,431801,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_2_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_431851,0.0038365317093471516,431851,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_3_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444919,0.0016995971278355557,444919,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_4_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444926,0.0029094212335849384,444926,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_5_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444928,0.003622676467382959,444928,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_6_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444929,0.0033630881477096277,444929,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_7_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444931,0.002867521692344243,444931,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_8_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444932,0.002908804262510894,444932,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_9_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444933,0.006567650110317934,444933,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_10_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444934,0.0028644618877041107,444934,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_11_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444936,0.0015814011977750846,444936,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_12_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444939,0.0036865196734166515,444939,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_13_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444941,0.007076117433424133,444941,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_14_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444942,0.002576407674491449,444942,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_15_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444945,0.004749504792670966,444945,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_16_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_444947,0.008482647232097336,444947,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_17_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_445425,0.0026709925166783174,445425,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_18_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_445428,0.0025478451936010553,445428,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_19_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_445431,0.0039026199256557152,445431,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_20_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_445439,0.006502179381593314,445439,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_21_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_445441,0.004095298520026538,445441,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_22_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_445444,0.0021784858659530657,445444,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_23_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_445447,0.0026768068686084273,445447,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_24_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_34328673,0.003114714290957727,34328673,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_25_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_34328674,0.0026457927734836665,34328674,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850002_26_residential,BranchTee_mvgd_33532_lvgd_1163850002_building_34328675,0.003200107839496526,34328675,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_1_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445698,0.004002470069750333,445698,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_2_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445709,0.0026282084522360307,445709,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_3_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445713,0.004159463511727145,445713,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_4_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445715,0.00148519219021163,445715,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_5_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445716,0.004326738599748265,445716,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_6_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445721,0.0018021110426054484,445721,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_7_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445722,0.0035208697837919157,445722,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_8_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445723,0.002639536805590134,445723,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_9_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445724,0.007451597919882084,445724,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_10_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445725,0.0029380017923217885,445725,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_10_cts,BranchTee_mvgd_33532_lvgd_1163850003_building_445725,0.02468239737869436,445725,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_11_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445770,0.005003376639039999,445770,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_11_cts,BranchTee_mvgd_33532_lvgd_1163850003_building_445770,0.02468239737869436,445770,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_12_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445771,0.008179389291760328,445771,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_13_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445773,0.001627443277531145,445773,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_14_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445774,0.004408871163041373,445774,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_15_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445775,0.002479516615606709,445775,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_16_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445776,0.00860097500130946,445776,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_17_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445777,0.007379093875866327,445777,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_18_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445778,0.0029474043385184423,445778,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_19_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445783,0.006030434362757793,445783,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_20_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445785,0.003652577741930886,445785,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_21_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445786,0.002970922067227848,445786,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_22_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445788,0.0031738600977173326,445788,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_23_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445789,0.003103386195858573,445789,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_24_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445790,0.002818752311195364,445790,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_25_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445798,0.0026707755825208465,445798,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_26_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445799,0.0026256871091653337,445799,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_27_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445800,0.0032513218619961396,445800,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_28_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445803,0.004451386125826416,445803,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_29_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445804,0.0057697853900074,445804,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_30_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445805,0.0015621741167945078,445805,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_31_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445806,0.004976812018437929,445806,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_32_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445808,0.0025508184828331487,445808,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_33_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445809,0.0015433743186276632,445809,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_34_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445811,0.002329010021448166,445811,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_35_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445814,0.006326820655401971,445814,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_36_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445816,0.003131724769707863,445816,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_37_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445818,0.002435912333445224,445818,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_38_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445819,0.0028531327595851586,445819,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_39_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445828,0.0034531212464138537,445828,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_40_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445842,0.004909923986551168,445842,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_41_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445852,0.009135027125739822,445852,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_42_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445857,0.007573163173139506,445857,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_43_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445860,0.00948148130541831,445860,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_44_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445861,0.006999837702048591,445861,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_45_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445862,0.006516032693587404,445862,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_46_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445870,0.0025257148104796635,445870,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_47_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445876,0.0027935915644980674,445876,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_48_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445879,0.002780164631425386,445879,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_49_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445880,0.002698810706804628,445880,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_50_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445881,0.009475318309306549,445881,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_51_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445883,0.002712398532710767,445883,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_52_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445884,0.002909649789215131,445884,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_53_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445885,0.002753612665315835,445885,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_54_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445886,0.004454045118785127,445886,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_55_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445887,0.002528332999156374,445887,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_56_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445888,0.0048813981778635844,445888,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_56_cts,BranchTee_mvgd_33532_lvgd_1163850003_building_445888,0.015625707200141455,445888,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_57_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445889,0.007299682544974729,445889,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_58_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445890,0.010072672337396725,445890,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_59_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445894,0.004878271743446514,445894,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_59_cts,BranchTee_mvgd_33532_lvgd_1163850003_building_445894,0.015625707200141455,445894,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_60_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445895,0.011011348502811512,445895,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_61_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445896,0.006433549678328001,445896,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_62_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445899,0.009118665125167551,445899,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_63_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445900,0.00881497899812449,445900,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_64_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445901,0.01140824813826029,445901,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_65_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445905,0.005382831152658851,445905,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_66_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445906,0.009962670191242381,445906,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_67_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445908,0.011522937095235794,445908,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_68_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445910,0.00944631937755172,445910,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_69_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445911,0.013801607287187963,445911,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_70_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445912,0.0044792089645418155,445912,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_71_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445913,0.005571832971315497,445913,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_72_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445915,0.004593651546295621,445915,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_73_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445917,0.0026684691075680254,445917,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_74_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445918,0.010609433556245973,445918,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_75_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445919,0.015074811418719344,445919,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_76_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445920,0.0026735918527437236,445920,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_77_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445921,0.0032491060345305476,445921,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_78_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445923,0.011030027566789525,445923,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_79_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445925,0.013315298755247585,445925,,residential,13.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_80_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445926,0.008569675534465648,445926,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_81_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445927,0.010244574062835802,445927,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_82_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445928,0.008446540607625954,445928,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_83_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445930,0.002762839339891968,445930,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_84_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445931,0.0068173294458388975,445931,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_85_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445932,0.0027811023551465473,445932,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_86_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445933,0.0027398394123560486,445933,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_87_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445934,0.004479368049590628,445934,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_88_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445935,0.005298688591094798,445935,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_89_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445937,0.009470853597741845,445937,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_90_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445938,0.0030550233080000014,445938,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_91_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445940,0.00282056500268499,445940,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_92_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445942,0.0048894423030265526,445942,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_93_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445943,0.003241249144205872,445943,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_94_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445944,0.003340892426086045,445944,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_95_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445948,0.0030703644267574114,445948,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_96_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445949,0.0026104164940091014,445949,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_97_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445951,0.0031685503759582914,445951,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_98_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445957,0.0029357999106234623,445957,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_99_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_445958,0.0023690893818057034,445958,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_100_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_446006,0.005228410704742609,446006,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_101_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_446016,0.0027293560691962824,446016,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_102_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_446019,0.0025672375577492283,446019,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_103_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_446030,0.00239351229411265,446030,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_104_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_446082,0.004576550936568156,446082,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_105_residential,BranchTee_mvgd_33532_lvgd_1163850003_building_446089,0.004396042606686381,446089,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850003_106_cts,BranchTee_mvgd_33532_lvgd_1163850003_building_445960,0.016014407474201096,445960,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_1_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441927,0.0014568040314120606,441927,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_2_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441928,0.003680105911749054,441928,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_3_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441929,0.0027755555553439838,441929,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_4_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441931,0.006717887344564283,441931,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_5_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441934,0.0035959796202468123,441934,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_6_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441936,0.0024247257620583244,441936,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_7_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441941,0.003779212281589488,441941,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_8_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441944,0.0031263083886547316,441944,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_9_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441949,0.00283670955258989,441949,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_9_cts,BranchTee_mvgd_33532_lvgd_1163850004_building_441949,0.04065793524147421,441949,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_10_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441951,0.002458181399474427,441951,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_11_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441966,0.0014376545560437692,441966,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_12_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441989,0.0059295589465141775,441989,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_13_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441990,0.003016013381387803,441990,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_14_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441995,0.004823801126035348,441995,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_15_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_441997,0.00790840857150545,441997,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_16_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442001,0.003486108667606749,442001,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_17_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442003,0.004402895660022856,442003,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_17_cts,BranchTee_mvgd_33532_lvgd_1163850004_building_442003,0.04065793524147421,442003,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_18_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442007,0.0027027620075299845,442007,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_18_cts,BranchTee_mvgd_33532_lvgd_1163850004_building_442007,0.019065696929852147,442007,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_19_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442008,0.0025649362478953946,442008,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_20_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442010,0.002893986884790806,442010,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_21_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442015,0.002504859173788361,442015,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_21_cts,BranchTee_mvgd_33532_lvgd_1163850004_building_442015,0.019065696929852147,442015,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_22_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442016,0.004585472612049082,442016,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_23_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442017,0.0043309282697918915,442017,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_24_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442018,0.0064299041514626985,442018,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_25_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442019,0.0027681209118615283,442019,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_26_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442021,0.0027801754781332593,442021,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_27_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442022,0.0014847454091492204,442022,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_28_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442023,0.0023676630397203345,442023,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_29_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442024,0.0026868163139361,442024,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_30_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442025,0.003467465242811748,442025,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_31_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442026,0.002467843491895197,442026,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_32_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442027,0.0029892331179030103,442027,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_33_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442033,0.0026405137840636,442033,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_34_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442036,0.0026456874054643234,442036,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_35_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442039,0.00270264114421368,442039,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_36_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442041,0.002405593460644166,442041,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_37_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442045,0.005165291129077051,442045,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_38_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442046,0.005488759585241835,442046,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_39_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442047,0.003697823492550565,442047,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_40_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442048,0.003168431320426632,442048,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_41_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442049,0.004830977514568434,442049,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_42_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442050,0.0026484383371850103,442050,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_43_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442054,0.0025325275760440373,442054,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_44_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442058,0.0028428366512636867,442058,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_45_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442081,0.004622825058396224,442081,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_46_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442082,0.0075423321807738496,442082,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_47_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_442084,0.007196417753939544,442084,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_48_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_445977,0.0022177726418709876,445977,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_49_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_445980,0.0027237955818814026,445980,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_50_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_445982,0.0024841757931482883,445982,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_51_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_445984,0.0027619096220742366,445984,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_52_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_445989,0.002958409614930884,445989,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_53_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_445990,0.002828599830669781,445990,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_54_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_445992,0.0026173126759221213,445992,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_55_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446000,0.0029785095976403303,446000,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_56_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446003,0.02855429110943965,446003,,residential,24.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_57_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446009,0.0015494235534342252,446009,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_58_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446011,0.004929513657480659,446011,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_59_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446013,0.0029521422838195794,446013,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_60_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446020,0.0027658973367474552,446020,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_61_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446021,0.003124904256495009,446021,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_62_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446025,0.0029440539970602684,446025,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_63_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446026,0.002853301141812148,446026,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_64_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446027,0.002575748349605708,446027,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_65_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446028,0.002552803946883903,446028,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_66_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446032,0.003693946827505576,446032,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_67_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446036,0.0026428574477291304,446036,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_68_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446037,0.0035248859065095646,446037,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_69_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446038,0.0058576080845999705,446038,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_70_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446046,0.002455481085723817,446046,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_71_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446051,0.003498692656524688,446051,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_72_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446052,0.002814920840766514,446052,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_73_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446055,0.002707820705478239,446055,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_74_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446059,0.0033166706943846577,446059,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_75_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446063,0.0034641528648311315,446063,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_76_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446075,0.001588942113169206,446075,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850004_77_residential,BranchTee_mvgd_33532_lvgd_1163850004_building_446079,0.0024557680069725667,446079,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_1_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441772,0.012392723236396305,441772,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_2_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441774,0.002473838105779967,441774,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_3_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441775,0.0036124263284424744,441775,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_3_cts,BranchTee_mvgd_33532_lvgd_1163850005_building_441775,0.016927851662294775,441775,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_4_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441786,0.0083987846188984,441786,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_5_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441787,0.005267157727816349,441787,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_6_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441791,0.011401161622449583,441791,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_7_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441792,0.00439037597658731,441792,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_8_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441793,0.0029201000757413773,441793,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_9_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441794,0.004254031050832406,441794,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_10_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441795,0.008319819552559313,441795,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_11_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441796,0.008519579755896803,441796,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_12_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441797,0.00269991603798793,441797,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_13_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441798,0.0037094547789602796,441798,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_14_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441799,0.010367138762747289,441799,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_15_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441800,0.0034874066569822813,441800,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_16_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441803,0.005612247288342367,441803,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_17_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441806,0.006958607299381714,441806,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_18_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441808,0.00341594570470703,441808,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_19_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441810,0.004360232975406773,441810,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_20_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441811,0.002312693990256885,441811,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_21_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441812,0.003568031269626019,441812,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_22_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441816,0.008124171801035585,441816,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_23_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441819,0.005984188648974155,441819,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_24_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441821,0.009501276030777602,441821,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_25_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441822,0.002574410072458074,441822,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_26_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441823,0.003056342474281381,441823,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_27_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441830,0.009093956324631653,441830,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_28_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441873,0.006013819788845041,441873,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_29_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441877,0.003015192905413656,441877,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_30_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441878,0.005466397289175909,441878,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_31_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441880,0.0044554045728386095,441880,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_32_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441882,0.0077915058531039475,441882,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_32_cts,BranchTee_mvgd_33532_lvgd_1163850005_building_441882,0.016927851662294775,441882,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_33_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441883,0.0037131974096865457,441883,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_34_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441885,0.002445250315904535,441885,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_35_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441888,0.004030554262474495,441888,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_36_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441889,0.00354657622319723,441889,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_37_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441890,0.0029301348300540876,441890,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_38_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441891,0.002514921303125705,441891,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_39_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441894,0.0024765588216715774,441894,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_40_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441896,0.007085201293013264,441896,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_41_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441897,0.0029190427799786578,441897,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_42_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441900,0.002630549533352067,441900,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_43_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441901,0.0027044866340818754,441901,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_44_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441902,0.006012515601350723,441902,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_45_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441903,0.00451714661660423,441903,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_46_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441905,0.003644776118165376,441905,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_47_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441906,0.002532439769361252,441906,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_48_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441907,0.001602583785232289,441907,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_49_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441908,0.0027495601286503255,441908,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_50_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441910,0.009911479928198108,441910,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_51_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441911,0.005203551599826178,441911,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_52_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441912,0.005007725652387386,441912,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_53_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441914,0.004948177226161711,441914,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_54_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441918,0.0016570106284295367,441918,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_55_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441919,0.0029020392741121543,441919,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_56_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441920,0.0076568847791360865,441920,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_57_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441924,0.003875025900825458,441924,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_58_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441930,0.004069328660572867,441930,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_59_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441935,0.004713659005698447,441935,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_60_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441942,0.0015204677502559409,441942,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_61_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441950,0.0026224227666053,441950,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_62_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441952,0.004427075554422446,441952,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_63_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441953,0.003384471141007543,441953,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_64_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441954,0.006511720868952727,441954,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_65_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441955,0.002569768972762951,441955,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_66_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441956,0.0036734850296120626,441956,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_67_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441957,0.0025361803340479224,441957,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_68_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441962,0.0033634132906908837,441962,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_69_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441963,0.005510625515295072,441963,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_70_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441964,0.004214923762104296,441964,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_71_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441965,0.007451659901069932,441965,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_72_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441968,0.004162875317863269,441968,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_73_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441970,0.005500165673335699,441970,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_74_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441973,0.00574305703576743,441973,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_75_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441978,0.0034605380703048036,441978,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_76_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441988,0.0053683668094545505,441988,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_77_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441993,0.0035627762979162435,441993,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_78_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441996,0.0038747537001088215,441996,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_79_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_441999,0.007232856494275815,441999,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850005_80_residential,BranchTee_mvgd_33532_lvgd_1163850005_building_442002,0.00526464955574807,442002,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_1_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441697,0.00443065083594152,441697,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_2_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441702,0.002425441903032926,441702,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_3_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441703,0.0031415779707911666,441703,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_4_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441704,0.0028860266924863823,441704,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_5_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441705,0.0028965071948417053,441705,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_6_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441706,0.0043232364043798615,441706,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_7_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441710,0.0031227194196233403,441710,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_8_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441711,0.005107063418662454,441711,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_9_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441712,0.00477265476633247,441712,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_10_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441714,0.007390955525690879,441714,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_11_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441722,0.005209303970568439,441722,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_12_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441723,0.002715502498947242,441723,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_13_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441724,0.0033561898997570127,441724,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_14_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441725,0.0027670762705913274,441725,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_15_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441726,0.0026054303657016198,441726,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_16_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441727,0.002697338395338271,441727,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_17_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441729,0.0024443412584827535,441729,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_18_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441730,0.0014723846816350112,441730,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_19_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441731,0.0040047057828470276,441731,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_20_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441734,0.003231468771018291,441734,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_21_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441735,0.002589914150088537,441735,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_22_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441737,0.0023373095607560615,441737,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_23_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441739,0.002563868363679751,441739,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_24_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441740,0.004778584299969998,441740,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_25_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441741,0.004118294831993167,441741,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_26_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441742,0.003959052764172193,441742,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_27_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441743,0.007128711570373178,441743,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_28_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441744,0.004135785406694182,441744,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_29_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441745,0.004628114119759317,441745,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_30_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441746,0.005870128801055314,441746,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_31_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441747,0.007705046744644049,441747,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_32_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441748,0.003570025514345052,441748,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_33_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441749,0.00474240639713259,441749,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_34_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441750,0.004259152762988307,441750,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_35_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441751,0.002445729378835616,441751,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_36_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441752,0.004333650793468146,441752,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_37_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441753,0.005591152507567949,441753,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_38_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441755,0.001521264725029696,441755,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_39_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441757,0.003119223938883621,441757,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_40_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441758,0.00923541392361923,441758,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_40_cts,BranchTee_mvgd_33532_lvgd_1163850006_building_441758,0.01441426265781817,441758,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_41_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441759,0.0026078517641069106,441759,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_42_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441761,0.002505978708993879,441761,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_43_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441762,0.0014628368670293376,441762,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_44_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441765,0.0034093336032383166,441765,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_45_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441766,0.004319204528110302,441766,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_46_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441767,0.002449604752605858,441767,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_47_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441769,0.001571429586797495,441769,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_48_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441770,0.002697548614867058,441770,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_49_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441771,0.005653714252542868,441771,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_50_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441773,0.004435257071218479,441773,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_50_cts,BranchTee_mvgd_33532_lvgd_1163850006_building_441773,0.09507582385532838,441773,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_51_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441776,0.002499582766917788,441776,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_52_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441777,0.0027026282314662115,441777,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_53_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441778,0.0023277574849437225,441778,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_54_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441779,0.003455225249486369,441779,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_55_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441781,0.005165579341600548,441781,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_56_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441783,0.006540803475311152,441783,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_57_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441784,0.0015478299912691392,441784,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_58_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441785,0.0038177945380055292,441785,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_59_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441789,0.002697287519113245,441789,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_60_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441790,0.0027031424170704064,441790,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_61_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_441828,0.0042331152407379,441828,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_62_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445598,0.003970348835657624,445598,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_63_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445610,0.004347028399845498,445610,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_64_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445615,0.004143814811325036,445615,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_65_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445620,0.0063195471630079205,445620,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_66_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445622,0.002727603809364809,445622,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_67_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445623,0.005351318367226857,445623,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_68_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445630,0.0025213890400777204,445630,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_69_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445631,0.006027267124058723,445631,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_70_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445632,0.004799588175002239,445632,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_71_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445633,0.0026843249284395298,445633,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_72_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445635,0.0027255509407722693,445635,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_73_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445641,0.004362720487079102,445641,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_74_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445642,0.0051189095731900445,445642,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_75_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445643,0.004767227796826413,445643,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_76_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445644,0.006807656764965204,445644,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_77_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445645,0.0026486550130875313,445645,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_78_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445646,0.0026383173257192106,445646,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_79_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445647,0.004045578244154079,445647,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_80_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445648,0.00736487435835403,445648,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_81_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445649,0.009062059772344897,445649,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_82_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445650,0.007250070219671106,445650,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_83_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445651,0.008816859094155902,445651,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_84_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445707,0.009867297671459935,445707,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_85_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445718,0.007493179549280105,445718,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_85_cts,BranchTee_mvgd_33532_lvgd_1163850006_building_445718,0.03319491438396543,445718,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_86_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445720,0.006616123531294836,445720,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_86_cts,BranchTee_mvgd_33532_lvgd_1163850006_building_445720,0.023224775857471732,445720,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_87_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445726,0.004057966217565447,445726,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_88_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445727,0.0037895633982151762,445727,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_89_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445728,0.021662495398479684,445728,,residential,13.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_90_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445733,0.004299266212999161,445733,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_91_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445735,0.005939891210528561,445735,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_92_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445736,0.0026692851932080337,445736,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_93_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445746,0.00779564361390275,445746,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_94_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445747,0.0039604512147230295,445747,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_95_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445752,0.002403380990492916,445752,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_96_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445753,0.0040185053778116495,445753,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_97_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445754,0.007633226043224325,445754,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_98_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445757,0.009703826420588082,445757,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_99_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445758,0.003348377429283628,445758,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_100_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445761,0.0023700555135712956,445761,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_101_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445762,0.003625640201181926,445762,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_102_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445765,0.003182511638521219,445765,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_103_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445772,0.002622596313931277,445772,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_104_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445784,0.002480963618088028,445784,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_105_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445787,0.0025444488827618935,445787,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_106_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445793,0.003254338538059728,445793,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_106_cts,BranchTee_mvgd_33532_lvgd_1163850006_building_445793,0.023224775857471732,445793,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850006_107_residential,BranchTee_mvgd_33532_lvgd_1163850006_building_445813,0.0026003259566273274,445813,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_1_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445516,0.00786930928868077,445516,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_2_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445517,0.0026833466586913173,445517,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_3_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445532,0.005789157093759624,445532,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_4_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445536,0.002356656730288095,445536,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_5_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445538,0.0035407722014650944,445538,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_5_cts,BranchTee_mvgd_33532_lvgd_1163850007_building_445538,0.014514028271122529,445538,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_6_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445540,0.004698227239453807,445540,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_7_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445541,0.005890379088145294,445541,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_8_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445544,0.004607914967149312,445544,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_9_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445560,0.0031737505976188003,445560,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_10_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445562,0.0028863221361484616,445562,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_11_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445563,0.0066361222780641285,445563,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_11_cts,BranchTee_mvgd_33532_lvgd_1163850007_building_445563,0.014514028271122529,445563,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_12_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445564,0.004516162665247131,445564,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_13_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445567,0.00665911316667682,445567,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_14_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445570,0.002641376872104394,445570,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_14_cts,BranchTee_mvgd_33532_lvgd_1163850007_building_445570,0.014514028271122529,445570,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_15_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445573,0.00195389044628196,445573,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_16_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445575,0.007011366719498355,445575,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_17_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445577,0.0031780996109661867,445577,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_18_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445579,0.004118761498686678,445579,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_19_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445580,0.005742576681561602,445580,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_20_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445582,0.0022674947255280926,445582,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_21_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445584,0.0050287672326422336,445584,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_22_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445585,0.004456687583427078,445585,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_23_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445586,0.005939460957782911,445586,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_24_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445587,0.005105527318223603,445587,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_25_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445590,0.0024859208218411797,445590,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_26_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445591,0.00651052308249755,445591,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_27_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445592,0.004957740923446772,445592,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_28_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445594,0.0033876037735433976,445594,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_29_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445595,0.003248909244259128,445595,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_30_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445597,0.004060527331898347,445597,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_31_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445599,0.004802841670854399,445599,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_32_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445600,0.0031104569581173664,445600,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_33_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445607,0.008604537886590964,445607,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_34_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445608,0.0034067588013931,445608,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_35_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445609,0.002828972234306772,445609,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_36_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445663,0.002514541926605081,445663,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_37_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445669,0.005002325024886166,445669,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_38_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445679,0.004888295134541452,445679,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_39_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445686,0.00372466057212422,445686,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_40_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445730,0.004398217629869973,445730,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_40_cts,BranchTee_mvgd_33532_lvgd_1163850007_building_445730,0.07610730927372357,445730,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_41_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445822,0.0036991106352182238,445822,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_42_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445823,0.003743457658614096,445823,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_43_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445825,0.003130803057793562,445825,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_43_cts,BranchTee_mvgd_33532_lvgd_1163850007_building_445825,0.0706655193030456,445825,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_44_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445826,0.012068676289144932,445826,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_45_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445832,0.0040595271104794375,445832,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_46_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445833,0.005563769218776376,445833,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_47_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445835,0.003558967553922939,445835,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_48_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445836,0.0026765917422356027,445836,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_49_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445838,0.005004531038663682,445838,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_50_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445839,0.00444475052315731,445839,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_51_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445840,0.006287006522877436,445840,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_52_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445841,0.005172587864416544,445841,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_53_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445843,0.002913811051214325,445843,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_54_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445844,0.0030761082750863436,445844,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_55_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445846,0.006966042975883966,445846,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_56_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445847,0.004480823574485275,445847,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_57_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445848,0.0025286343826822883,445848,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_58_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445849,0.004017850185005099,445849,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_59_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445850,0.002568425530516329,445850,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_60_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445851,0.0021657549299689354,445851,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_61_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445853,0.005510607953958515,445853,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_62_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445854,0.006652107742920217,445854,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_63_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445855,0.0028893310645635682,445855,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_64_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445856,0.0035740987114065118,445856,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_65_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445858,0.0037298326439952475,445858,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_66_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445859,0.0015088328482769356,445859,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_67_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445863,0.004539991849425476,445863,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_68_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445864,0.007505520003780788,445864,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_69_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445865,0.001546462660439701,445865,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_70_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445871,0.01085275310538376,445871,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_71_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445872,0.004951010282956298,445872,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_72_residential,BranchTee_mvgd_33532_lvgd_1163850007_building_445874,0.0071359235980892775,445874,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_73_cts,BranchTee_mvgd_33532_lvgd_1163850007_building_34967285,0.014514028271122529,34967285,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850007_74_cts,BranchTee_mvgd_33532_lvgd_1163850007_building_34967286,0.014514028271122529,34967286,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_1_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431753,0.0027524662715955827,431753,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_2_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431760,0.0024993790037627353,431760,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_3_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431762,0.0024234546311975268,431762,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_4_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431763,0.0025473971212638985,431763,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_5_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431764,0.0029070241111448887,431764,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_6_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431765,0.006047460595059842,431765,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_7_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431766,0.002590029073541006,431766,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_8_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431770,0.005448279154947927,431770,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_9_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431772,0.003355822661219009,431772,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_10_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431775,0.0025538263782284585,431775,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_11_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431781,0.003899361522959517,431781,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_12_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431784,0.002526898909422524,431784,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_13_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431787,0.0025226113607530872,431787,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_14_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431788,0.0016970158696166051,431788,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_15_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431793,0.006154301184124,431793,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_16_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431810,0.002560453458484235,431810,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_17_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431811,0.003281341933820777,431811,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_18_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431814,0.002460953766355911,431814,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_19_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431816,0.002371403862661955,431816,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_20_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431826,0.002465345391769943,431826,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_21_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431827,0.004068402816579377,431827,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_22_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431830,0.002841108409142504,431830,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_23_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431832,0.0028605519077706527,431832,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_24_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431835,0.0026609241892221885,431835,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_25_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431838,0.002934660231531894,431838,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_26_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431861,0.0026922784061152697,431861,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_27_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_431877,0.0026949198377374233,431877,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_28_residential,BranchTee_mvgd_33532_lvgd_1163850008_building_444858,0.005235019448896981,444858,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_29_cts,BranchTee_mvgd_33532_lvgd_1163850008_building_34999648,0.0277919940247087,34999648,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850008_30_cts,BranchTee_mvgd_33532_lvgd_1163850008_building_34999649,0.0277919940247087,34999649,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_1_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446050,0.0035909436487341025,446050,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_2_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446060,0.003447235099607819,446060,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_3_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446062,0.0025856736038198857,446062,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_4_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446064,0.006297243232560554,446064,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_5_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446067,0.0026108387408513216,446067,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_6_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446068,0.0026760062782653815,446068,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_7_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446070,0.0024023428055964494,446070,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_8_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446071,0.005370361054173584,446071,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_9_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446072,0.0025767927326209596,446072,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_10_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446074,0.0025478761841949793,446074,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_11_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446076,0.0040549446346578215,446076,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_12_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446077,0.0025902408425994895,446077,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_13_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446078,0.002991284436965854,446078,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850009_14_residential,BranchTee_mvgd_33532_lvgd_1163850009_building_446083,0.005465767663609347,446083,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_1_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441611,0.005699527131031363,441611,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_2_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441616,0.0025561041868818993,441616,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_3_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441618,0.00267158572829702,441618,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_4_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441619,0.002472106506344443,441619,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_5_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441620,0.0027406947527483616,441620,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_6_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441623,0.0029310658391465652,441623,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_7_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441625,0.007241205876788939,441625,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_8_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441626,0.00260716351466684,441626,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_9_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441629,0.0027371119818357546,441629,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_10_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441630,0.0047107691328149995,441630,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_11_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441631,0.002514880757098654,441631,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_12_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441632,0.0025931464690348485,441632,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_13_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441634,0.0025557356570691486,441634,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_14_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441635,0.008197304954108005,441635,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_15_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441636,0.007566017775200345,441636,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_16_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441638,0.0027791114677418564,441638,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_17_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441640,0.004901493511983942,441640,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_18_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441642,0.008769186263522046,441642,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_19_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441644,0.0024733311513143543,441644,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_20_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441645,0.002991010944974471,441645,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_21_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441646,0.005955124120462185,441646,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_22_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441647,0.001418310356443653,441647,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_22_cts,BranchTee_mvgd_33532_lvgd_1163850010_building_441647,0.024857313403321406,441647,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_23_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441648,0.0022972139303367137,441648,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_24_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441650,0.006440518429881794,441650,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_24_cts,BranchTee_mvgd_33532_lvgd_1163850010_building_441650,0.023710651546700212,441650,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_25_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441651,0.002886986109623291,441651,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_26_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441653,0.002817971606483419,441653,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_27_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441655,0.0025530738233059944,441655,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_28_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441656,0.002443812352346444,441656,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_29_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441657,0.0026549461036541777,441657,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_29_cts,BranchTee_mvgd_33532_lvgd_1163850010_building_441657,0.024857313403321406,441657,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_30_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441658,0.0028704461713909063,441658,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_31_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441660,0.007164391557668202,441660,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_32_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441661,0.004919357523341746,441661,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_32_cts,BranchTee_mvgd_33532_lvgd_1163850010_building_441661,0.023710651546700212,441661,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_33_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441662,0.006507725148376079,441662,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_34_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441663,0.0035357447523657135,441663,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_35_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441664,0.00395574735907521,441664,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_36_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441665,0.002940523651902384,441665,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_37_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441666,0.002991531586952401,441666,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_37_cts,BranchTee_mvgd_33532_lvgd_1163850010_building_441666,0.020387273424484684,441666,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_38_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441667,0.009302582936890905,441667,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_39_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441669,0.0035846032314721258,441669,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_40_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441670,0.005660433013305671,441670,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_41_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441671,0.0019731672413402907,441671,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_42_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441672,0.0036333418802820304,441672,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_43_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441673,0.002554589005093947,441673,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_44_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441675,0.002645758942085299,441675,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_45_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441678,0.0026427110171728376,441678,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_46_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441679,0.00785800030444787,441679,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_46_cts,BranchTee_mvgd_33532_lvgd_1163850010_building_441679,0.020387273424484684,441679,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_47_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441680,0.005440138442433893,441680,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_48_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441681,0.004513977828375463,441681,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_49_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441683,0.001413094252103758,441683,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_50_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441686,0.0024416936287418147,441686,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_51_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441692,0.007936401858487433,441692,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_52_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441699,0.00238634985134683,441699,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_53_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441707,0.0027559599445506565,441707,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_54_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441708,0.0071129580184616245,441708,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_55_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441713,0.003076992281778036,441713,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_56_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441718,0.009548637922452415,441718,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_57_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441732,0.003482407099417433,441732,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_58_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441733,0.011559295260027863,441733,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_59_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441736,0.003746642716904673,441736,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_60_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_441738,0.004657895047500837,441738,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_61_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_445470,0.005639809289558903,445470,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_62_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_445472,0.005771538424603722,445472,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_63_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_445477,0.0033863334174474478,445477,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_64_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_445478,0.002619991812766883,445478,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_65_residential,BranchTee_mvgd_33532_lvgd_1163850010_building_445481,0.0025899681253729553,445481,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850010_66_cts,BranchTee_mvgd_33532_lvgd_1163850010_building_441693,0.02727372976586058,441693,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_1_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445420,0.002819359985091231,445420,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_2_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445429,0.002367428027716408,445429,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_3_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445436,0.002616537652819063,445436,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_4_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445438,0.004216233114697601,445438,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_5_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445443,0.0027070136587614584,445443,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_6_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445449,0.0024011607726931844,445449,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_7_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445451,0.006405474782782018,445451,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_8_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445452,0.002147137459796346,445452,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_9_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445453,0.0024522043469262134,445453,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_10_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445454,0.002201021192835069,445454,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_11_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445455,0.0029622976431936455,445455,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_12_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445458,0.004705245575957881,445458,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_13_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445459,0.002928976040096266,445459,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_14_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445462,0.0025450325389474687,445462,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_15_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445463,0.00291138345469025,445463,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_16_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445464,0.002794645761201395,445464,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_17_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445465,0.004265603455113664,445465,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_18_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445466,0.0026253836595998246,445466,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_19_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445467,0.00276687044139668,445467,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_20_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445468,0.002891190241944081,445468,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_21_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445469,0.002654177278669904,445469,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_22_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445473,0.0046647269239314644,445473,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_23_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445474,0.005534600871774761,445474,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_24_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445475,0.0066423312435568765,445475,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_25_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445476,0.0028952453611590847,445476,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_26_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445479,0.003202129975750091,445479,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_27_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445482,0.00509941907216111,445482,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_28_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445483,0.0028122812169290063,445483,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_29_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445484,0.002483065555120948,445484,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_30_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445485,0.002927678308975683,445485,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_31_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445486,0.005490603009070437,445486,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_32_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445488,0.004497569341912307,445488,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_33_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445489,0.004316184494732372,445489,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_34_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445490,0.006366576422307948,445490,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_35_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445494,0.006809764125352061,445494,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_36_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445498,0.0035057729742166087,445498,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_37_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445499,0.004780374006769131,445499,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_38_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445500,0.0038326676987946815,445500,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_39_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445501,0.005188269104942274,445501,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_39_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445501,0.029842379893336848,445501,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_40_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445508,0.00485984680233868,445508,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_41_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445509,0.0025714016605528664,445509,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_42_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445510,0.004764220676195952,445510,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_42_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445510,0.025935956213186815,445510,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_43_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445511,0.004371369961843394,445511,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_44_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445512,0.0060808813680577785,445512,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_45_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445513,0.005857929353756988,445513,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_45_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445513,0.025935956213186815,445513,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_46_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445514,0.005374428569626157,445514,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_47_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445515,0.0015671736743593564,445515,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_48_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445518,0.0028754981547104773,445518,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_49_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445520,0.0033423290983693892,445520,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_50_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445521,0.004727603739944615,445521,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_50_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445521,0.029842379893336848,445521,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_51_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445522,0.006173572684955869,445522,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_52_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445523,0.0024512265936879,445523,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_52_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445523,0.029842379893336848,445523,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_53_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445524,0.00391334112162385,445524,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_54_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445525,0.004199583159856785,445525,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_55_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445526,0.0038081727333568608,445526,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_56_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445527,0.0046209800850379274,445527,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_57_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445528,0.002627619114441569,445528,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_58_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445529,0.008155185637905397,445529,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_58_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445529,0.025935956213186815,445529,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_59_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445530,0.009825908700254144,445530,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_60_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445534,0.007862128251558596,445534,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_61_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445535,0.006560970604307434,445535,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_61_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445535,0.029278767754497267,445535,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_62_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445537,0.0022339512814292042,445537,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_63_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445539,0.002457581473227041,445539,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_64_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445542,0.004471377124947229,445542,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_65_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445546,0.005688019290487448,445546,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_66_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445547,0.008944340968303386,445547,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_66_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445547,0.029278767754497267,445547,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_67_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445551,0.007536638692160043,445551,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_67_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445551,0.058557535508994535,445551,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_68_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445552,0.0055069562289744274,445552,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_69_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445553,0.0028943804653336455,445553,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_70_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445559,0.002663603067812001,445559,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_71_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445561,0.0034444691891000693,445561,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_72_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445571,0.002630914705850476,445571,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_73_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445578,0.004394427480233022,445578,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_74_residential,BranchTee_mvgd_33532_lvgd_1163850011_building_445666,0.002337476393453354,445666,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_74_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445666,0.015275879310734472,445666,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850011_75_cts,BranchTee_mvgd_33532_lvgd_1163850011_building_445545,0.029842379893336848,445545,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_1_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441801,0.00629878966319738,441801,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_2_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441831,0.004199772718989622,441831,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_3_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441834,0.0016653341854477235,441834,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_4_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441836,0.0036368696428904206,441836,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_5_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441921,0.005014995529212143,441921,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_6_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441922,0.008777775823138084,441922,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_6_cts,BranchTee_mvgd_33532_lvgd_1163850012_building_441922,0.022972121996617884,441922,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_7_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441923,0.003714337863542962,441923,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_8_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441925,0.006229804601121735,441925,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_9_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441926,0.0015577928215784501,441926,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_9_cts,BranchTee_mvgd_33532_lvgd_1163850012_building_441926,0.022972121996617884,441926,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_10_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441932,0.005299494346536832,441932,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_11_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441933,0.0038841598618747667,441933,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_12_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441937,0.002223511583355882,441937,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_13_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441938,0.0049292202798581755,441938,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_14_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441939,0.002834398687302929,441939,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_15_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441945,0.002574689762568242,441945,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_16_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_441948,0.002663183661774225,441948,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_17_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_442009,0.003556202418180037,442009,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_18_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_442014,0.0025454093329185996,442014,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_19_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445714,0.005581588810282888,445714,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_20_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445731,0.005004475772104517,445731,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_21_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445734,0.008648907119912485,445734,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_22_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445737,0.008690958773318358,445737,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_23_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445738,0.01043677979239433,445738,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_24_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445739,0.010661433706811468,445739,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_24_cts,BranchTee_mvgd_33532_lvgd_1163850012_building_445739,0.021378456835420865,445739,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_25_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445740,0.006721631524820246,445740,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_26_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445741,0.005824758571550039,445741,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_26_cts,BranchTee_mvgd_33532_lvgd_1163850012_building_445741,0.021378456835420865,445741,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_27_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445742,0.01309808568243169,445742,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_28_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445743,0.007569611651075774,445743,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_29_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445745,0.006133171797186366,445745,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_30_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445748,0.0025761468369925856,445748,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_31_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445749,0.010636772425186253,445749,,residential,11.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_32_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445750,0.0032539067357843818,445750,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_33_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445751,0.009876258085183269,445751,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_34_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445755,0.014067722484196717,445755,,residential,13.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_35_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445756,0.014268446495005256,445756,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_36_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445759,0.005850706479333014,445759,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_37_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445760,0.008703369473165272,445760,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_38_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445764,0.008641228167247925,445764,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_39_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445766,0.005129410735941317,445766,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_40_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445767,0.005338826575325843,445767,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_41_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445768,0.008683392936321623,445768,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_42_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445779,0.016342413483889,445779,,residential,13.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_43_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445780,0.009152204178932302,445780,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_44_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445781,0.008348189891767376,445781,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_45_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445782,0.012847389338920105,445782,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_46_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445791,0.0034594309313368556,445791,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_47_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445792,0.0046106044341920486,445792,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_48_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445794,0.004239143427766089,445794,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_49_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445795,0.004068801562221203,445795,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_50_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445796,0.011205555191717757,445796,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_51_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445801,0.004096170130480661,445801,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_52_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445810,0.003949153335452951,445810,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_53_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445817,0.0025389542504591026,445817,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_54_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445820,0.011658990967662758,445820,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_55_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445824,0.002487729639506565,445824,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_56_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445829,0.0027473597964816953,445829,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_57_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445830,0.0026479993037710815,445830,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_58_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445837,0.0029597695854942647,445837,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_59_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445965,0.025551054633416965,445965,,residential,19.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_59_cts,BranchTee_mvgd_33532_lvgd_1163850012_building_445965,0.01642253978073996,445965,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_60_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445966,0.03138406909918846,445966,,residential,24.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_61_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445967,0.019847551925695005,445967,,residential,17.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_62_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445972,0.009797451070873195,445972,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_63_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445973,0.016759952854891402,445973,,residential,11.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_64_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445975,0.012103408480775771,445975,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_65_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445976,0.02771414230626881,445976,,residential,22.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_66_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445978,0.0027606780042206923,445978,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_67_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445981,0.028499904683141977,445981,,residential,23.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_67_cts,BranchTee_mvgd_33532_lvgd_1163850012_building_445981,0.01642253978073996,445981,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_68_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445985,0.01823118998065889,445985,,residential,16.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_69_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445986,0.021979814287790077,445986,,residential,19.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_70_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445987,0.0044997552118037736,445987,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_71_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445988,0.006559860624535043,445988,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_72_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445993,0.014795777276123318,445993,,residential,11.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_73_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445995,0.010340581889793699,445995,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_74_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445996,0.009386877352365187,445996,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_75_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445997,0.008396228927919438,445997,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_76_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445998,0.007157586023242411,445998,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_77_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_445999,0.010812130634867698,445999,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_78_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_446001,0.008253092671760956,446001,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_79_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_446002,0.0037502130915797096,446002,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_80_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_446004,0.004598332675507898,446004,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_81_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_446005,0.008170436625685477,446005,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_82_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_446012,0.0064582068278740265,446012,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_83_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_446017,0.018703943226816747,446017,,residential,17.0,conventional_load -Load_mvgd_33532_lvgd_1163850012_84_residential,BranchTee_mvgd_33532_lvgd_1163850012_building_446024,0.007062750157244755,446024,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_1_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_431799,0.002649697588318137,431799,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_2_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441583,0.004324866251365335,441583,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_3_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441588,0.002509255189536533,441588,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_4_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441590,0.002666948502426137,441590,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_5_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441591,0.004131357367332287,441591,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_6_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441593,0.0044561436985037055,441593,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_7_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441594,0.004337056659740434,441594,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_8_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441599,0.00527039004676266,441599,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_9_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441603,0.0034318544678431546,441603,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_10_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441615,0.00435338302112969,441615,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850013_11_residential,BranchTee_mvgd_33532_lvgd_1163850013_building_441617,0.004588801001836559,441617,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_1_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441682,0.003165492895612703,441682,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_2_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441685,0.0029343449022387127,441685,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_3_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441687,0.00404973304977954,441687,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_4_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441688,0.0032672954471245565,441688,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_5_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441689,0.0035136714435881327,441689,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_5_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_441689,0.02727372976586058,441689,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_6_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441691,0.002525848844798387,441691,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_7_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441696,0.009230500881462421,441696,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_7_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_441696,0.01441426265781817,441696,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_8_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441756,0.004447748863119493,441756,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_8_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_441756,0.01441426265781817,441756,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_9_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441763,0.007598384868004854,441763,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_10_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_441764,0.008233323255386704,441764,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_11_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445493,0.005483560913111023,445493,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_11_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445493,0.02882852531563634,445493,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_12_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445495,0.002800325045792985,445495,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_12_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445495,0.016143972845605276,445495,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_13_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445496,0.005340155555295299,445496,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_13_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445496,0.025935956213186815,445496,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_14_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445497,0.0046153377309040965,445497,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_15_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445502,0.002507907615210722,445502,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_16_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445503,0.005472854179420052,445503,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_17_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445505,0.00233802286092622,445505,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_17_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445505,0.016143972845605276,445505,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_18_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445506,0.001482565995631489,445506,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_18_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445506,0.016143972845605276,445506,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_19_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445507,0.004289651639489075,445507,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_19_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445507,0.02727372976586058,445507,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_20_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445519,0.0015095130918135755,445519,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_20_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445519,0.004745120268783095,445519,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_21_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445531,0.0035881232464320357,445531,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_22_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445533,0.002519213758639179,445533,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_22_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445533,0.00949024053756619,445533,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_23_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445557,0.004415844046674356,445557,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_24_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445558,0.005047763950207973,445558,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_25_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445572,0.0043212948436705005,445572,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_26_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445574,0.0035559010346541227,445574,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_26_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445574,0.015275879310734472,445574,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_27_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445576,0.0024899501155612462,445576,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_28_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445581,0.002596526768067149,445581,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_29_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445593,0.005449996550361236,445593,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_29_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445593,0.01441426265781817,445593,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_30_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445602,0.0053178190847243114,445602,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_31_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445603,0.005274404878205562,445603,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_32_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445604,0.002564179302638792,445604,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_32_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445604,0.004745120268783095,445604,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_33_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445605,0.005041593206447733,445605,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_34_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445606,0.002350982869050442,445606,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_34_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445606,0.00949024053756619,445606,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_35_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445611,0.0050777592295574705,445611,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_35_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445611,0.004745120268783095,445611,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_36_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445612,0.0014756979635079503,445612,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_37_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445613,0.002617930938270913,445613,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_37_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445613,0.004745120268783095,445613,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_38_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445614,0.0038507303082085504,445614,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_39_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445616,0.003037062967546083,445616,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_39_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445616,0.00949024053756619,445616,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_40_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445617,0.004580969162241973,445617,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_41_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445618,0.0028361850367877193,445618,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_42_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445619,0.005593884328422381,445619,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_43_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445624,0.004523746063580424,445624,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_43_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445624,0.004745120268783095,445624,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_44_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445625,0.005128958273270021,445625,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_45_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445626,0.005834229297053326,445626,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_46_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445627,0.005536828578968024,445627,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_47_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445628,0.003904146728916389,445628,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_48_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445629,0.005862765952448784,445629,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_49_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445634,0.0024692403929163376,445634,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_50_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445636,0.005826335476270891,445636,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_51_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445637,0.0028742587892084523,445637,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_52_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445638,0.004601149720495623,445638,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_53_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445639,0.002534476367891981,445639,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_53_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445639,0.016143972845605276,445639,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_54_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445640,0.003638700928736402,445640,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_55_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445652,0.0025169896670152072,445652,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_55_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445652,0.04582763793220341,445652,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_56_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445653,0.003960203548226584,445653,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_57_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445654,0.00799004089496163,445654,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_58_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445655,0.002700189529979313,445655,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_59_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445656,0.0022021544155529037,445656,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_60_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445657,0.005909842214149595,445657,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_61_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445658,0.0025805214175799594,445658,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_62_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445660,0.005117823352872994,445660,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_63_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445661,0.007854117699539045,445661,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_64_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445662,0.0031397603724575025,445662,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_65_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445664,0.0025268224659575106,445664,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_66_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445665,0.002626587127663888,445665,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_67_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445667,0.0028448001636437446,445667,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_68_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445668,0.003633180470938674,445668,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_69_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445670,0.00282353545111264,445670,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_70_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445671,0.0046695490603460964,445671,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_71_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445672,0.005943511428408827,445672,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_72_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445673,0.0068808023142751945,445673,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_73_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445674,0.0043575016710622385,445674,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_74_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445675,0.004564982147856189,445675,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_74_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445675,0.015275879310734472,445675,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_75_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445676,0.003256014870936087,445676,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_76_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445677,0.00901121970301197,445677,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_77_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445678,0.0022345605048547674,445678,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_78_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445680,0.004030511392152899,445680,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_79_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445681,0.006960700197491405,445681,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_80_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445682,0.002517642793782163,445682,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_81_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445683,0.008145175159557929,445683,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_82_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445684,0.006505096112991495,445684,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_83_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445685,0.0058762747523404164,445685,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_84_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445687,0.0023952289147611107,445687,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_84_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445687,0.029774358073349654,445687,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_85_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445688,0.007641096621061317,445688,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_86_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445689,0.00661737968336857,445689,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_87_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445690,0.0026365722970263187,445690,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_88_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445691,0.0015083619203767598,445691,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_89_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445692,0.0024991217818331633,445692,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_90_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445693,0.005071320417159784,445693,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_91_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445694,0.004656948284856448,445694,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_92_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445695,0.0033870301893008476,445695,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_93_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445696,0.007242137144136366,445696,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_94_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445697,0.0016538721851573214,445697,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_95_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445699,0.0015501659072861885,445699,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_96_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445700,0.005792856337654396,445700,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_97_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445701,0.004273319338235983,445701,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_98_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445702,0.0048593669646427515,445702,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_99_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445703,0.005668556680993046,445703,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_100_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445704,0.003729674333711284,445704,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_101_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445705,0.0026443426719429558,445705,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_102_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445708,0.004325472117476556,445708,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_103_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445710,0.003286673865505464,445710,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_104_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445712,0.006042613149660172,445712,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_104_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445712,0.029774358073349654,445712,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_105_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445719,0.004858628871997452,445719,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_105_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445719,0.03319491438396543,445719,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_106_residential,BranchTee_mvgd_33532_lvgd_1163850014_building_445729,0.007188706261151363,445729,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_107_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_445583,0.016143972845605276,445583,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_108_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_34967277,0.016143972845605276,34967277,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_109_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_34967278,0.004745120268783095,34967278,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850014_110_cts,BranchTee_mvgd_33532_lvgd_1163850014_building_34967279,0.004745120268783095,34967279,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_1_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441874,0.005639504548718647,441874,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_1_cts,BranchTee_mvgd_33532_lvgd_1163850015_building_441874,0.014867744230964201,441874,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_2_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441876,0.00285841820537896,441876,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_2_cts,BranchTee_mvgd_33532_lvgd_1163850015_building_441876,0.01410978264840265,441876,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_3_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441969,0.004509482126216834,441969,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_4_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441971,0.005221180599180054,441971,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_5_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441972,0.006508357873002035,441972,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_6_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441974,0.008424282646559573,441974,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_7_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441975,0.0034119990525707613,441975,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_8_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441976,0.0047895090008382366,441976,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_9_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441977,0.0030834171484084563,441977,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_10_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441979,0.004355352473373584,441979,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_11_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441980,0.0034773416868404947,441980,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_12_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441981,0.006610396469537612,441981,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_13_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441982,0.006765036434160818,441982,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_14_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441983,0.00534250360929497,441983,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_15_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441984,0.004063265092616615,441984,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_16_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441985,0.0033399084747289466,441985,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_17_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441986,0.0061718387612258,441986,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_18_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441987,0.005199851839421506,441987,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_19_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441991,0.0039630146533504735,441991,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_20_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_441998,0.0025187749834802,441998,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_21_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442000,0.00317088655023029,442000,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_22_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442004,0.002884070669499856,442004,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_23_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442005,0.0035389577021908225,442005,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_24_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442006,0.003854536727907311,442006,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_25_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442012,0.0026023372461730183,442012,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_26_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442013,0.006196612642008941,442013,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_27_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442038,0.004215346783711365,442038,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_28_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442044,0.003099216411446049,442044,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_29_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442051,0.004317248505123776,442051,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_30_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442055,0.0027178978136026466,442055,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_30_cts,BranchTee_mvgd_33532_lvgd_1163850015_building_442055,0.01410978264840265,442055,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_31_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442056,0.0025102830442350244,442056,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_32_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442062,0.0025295780462672854,442062,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_33_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442065,0.0016532849134024542,442065,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_34_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442067,0.003264035494898662,442067,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_35_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442068,0.005282529062402835,442068,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_36_residential,BranchTee_mvgd_33532_lvgd_1163850015_building_442073,0.0029154749878531143,442073,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163850015_37_cts,BranchTee_mvgd_33532_lvgd_1163850015_building_441875,0.014867744230964201,441875,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1163860000_1_residential,BranchTee_mvgd_33532_lvgd_1163860000_building_431786,0.0027317500925769403,431786,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163860000_2_residential,BranchTee_mvgd_33532_lvgd_1163860000_building_431791,0.004427645264840754,431791,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163880000_1_residential,BranchTee_mvgd_33532_lvgd_1163880000_building_431734,0.004861597770895406,431734,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163880000_2_residential,BranchTee_mvgd_33532_lvgd_1163880000_building_431738,0.0027664184952352834,431738,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163880000_3_residential,BranchTee_mvgd_33532_lvgd_1163880000_building_431744,0.002707359720393614,431744,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163880000_4_residential,BranchTee_mvgd_33532_lvgd_1163880000_building_431750,0.002366109377944926,431750,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163890000_1_residential,BranchTee_mvgd_33532_lvgd_1163890000_building_447046,0.005667550519710301,447046,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163900000_1_residential,BranchTee_mvgd_33532_lvgd_1163900000_building_431695,0.003933399783541397,431695,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163900000_2_residential,BranchTee_mvgd_33532_lvgd_1163900000_building_431736,0.004752618830850467,431736,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163910000_1_residential,BranchTee_mvgd_33532_lvgd_1163910000_building_442340,0.005280810633969729,442340,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_1_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444961,0.004975468576191308,444961,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_2_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444963,0.002454716909328632,444963,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_3_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444964,0.0025710209927574954,444964,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_4_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444966,0.002425183648083557,444966,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_5_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444968,0.0027884553900650024,444968,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_6_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444969,0.0024144722658034977,444969,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_7_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444980,0.0028728117867271334,444980,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_8_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444985,0.002742332863892213,444985,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_9_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444986,0.002962875101260436,444986,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163930000_10_residential,BranchTee_mvgd_33532_lvgd_1163930000_building_444993,0.002708804140325439,444993,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_1_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446606,0.003386767285762389,446606,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_2_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446609,0.0033971204684276725,446609,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_3_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446662,0.0027174399275774136,446662,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_4_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446701,0.0038826020680201682,446701,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_5_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446703,0.003474210862089285,446703,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_6_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446704,0.0028113502078365286,446704,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_7_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446713,0.0025554776603747284,446713,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_8_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446716,0.002699445239215229,446716,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_9_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446717,0.00293555921701065,446717,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_10_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446718,0.00255521888891546,446718,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_11_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446719,0.0031219826182527885,446719,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_12_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446720,0.0015215282742055277,446720,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_13_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446722,0.0029944261084249362,446722,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_14_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446723,0.005177152262391705,446723,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_15_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446725,0.0025710408783885964,446725,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_16_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446726,0.0028173386236025138,446726,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_17_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446729,0.0037666453374982072,446729,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_18_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446730,0.00442212790610242,446730,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_19_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446731,0.0038451377972799484,446731,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_20_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446733,0.0044155966384328595,446733,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_21_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446734,0.00497824171783764,446734,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_22_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446735,0.004589321643814489,446735,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_23_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446736,0.0028637891335610024,446736,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_24_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446737,0.004495124184051675,446737,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_25_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446738,0.0032176526477369085,446738,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_26_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446739,0.0026812914658042334,446739,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_27_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446741,0.0016927320656439347,446741,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_28_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446743,0.003946843503185788,446743,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_29_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446745,0.0026641575411882976,446745,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_30_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446746,0.0046754186788353705,446746,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_31_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446748,0.0026900801399862345,446748,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_32_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446749,0.0030700594276622055,446749,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_33_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446750,0.0026952044346916287,446750,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_34_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446751,0.0029154548439670643,446751,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_35_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446752,0.0029564311237637625,446752,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_36_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446754,0.0050977052923170925,446754,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_37_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446755,0.0024791217437891227,446755,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_38_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446756,0.005009283962751882,446756,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_39_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446757,0.005118371369875557,446757,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_40_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446758,0.0028037619026591975,446758,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_41_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446759,0.003067446145829533,446759,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_42_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446761,0.002686200375881853,446761,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_43_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446762,0.004992776306388168,446762,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_44_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446764,0.0016917707115949058,446764,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_45_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446765,0.003639206591927268,446765,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_46_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446766,0.0029302799693356335,446766,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_47_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446767,0.002647025424357008,446767,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_48_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446768,0.0061075957765304835,446768,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_49_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446769,0.004758655282037035,446769,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_50_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446770,0.0032035816268204983,446770,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_51_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446771,0.0029102677933089726,446771,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_52_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446772,0.002528569818944946,446772,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_53_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446773,0.003753853711600975,446773,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_54_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446775,0.0031357581955071194,446775,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_55_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446776,0.002417429026718832,446776,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_56_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446777,0.005560600947057508,446777,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_57_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446778,0.0016445243890099341,446778,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_58_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446780,0.002613102087227597,446780,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_59_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446781,0.0033395691277254753,446781,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_60_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446782,0.005004123512353576,446782,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_61_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446783,0.0033047326010950924,446783,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_62_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446785,0.002575271352714222,446785,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_63_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446786,0.0024712070043557883,446786,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_64_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446787,0.0053927853314273575,446787,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_65_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446788,0.009408541843557916,446788,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_66_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446792,0.0027875370354650437,446792,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_67_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446793,0.004077479703284875,446793,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_68_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446795,0.0015293801285586905,446795,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_69_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446796,0.0025117499323474442,446796,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_70_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446798,0.005029930929444095,446798,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_71_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446799,0.002843142941633639,446799,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_72_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446800,0.00612236021198595,446800,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_73_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446802,0.003403979461627983,446802,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_74_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446803,0.004462554102856961,446803,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_75_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446804,0.0035709306979425934,446804,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_76_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446805,0.00257466987693714,446805,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_77_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446807,0.0024942226854436193,446807,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_78_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446813,0.0016397566152621449,446813,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_79_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446815,0.005013031242067237,446815,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_80_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446816,0.0030701128864367255,446816,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_81_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446817,0.0026188991360761,446817,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_82_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446819,0.003823442315493296,446819,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_83_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446820,0.0024564962859297897,446820,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_84_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446821,0.002840908261556743,446821,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_85_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446822,0.0035987630920911195,446822,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_86_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446823,0.0045242620569692655,446823,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_87_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446824,0.0024980528645977213,446824,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_88_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446825,0.0028082312628129897,446825,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_89_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446826,0.0024632184040069343,446826,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_90_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446827,0.003111845853235077,446827,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_91_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446829,0.005702928348714562,446829,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_92_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446831,0.0029027148690597055,446831,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_93_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446832,0.004981014342974074,446832,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_94_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446835,0.0030977926519101737,446835,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_95_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446836,0.0025766976947995913,446836,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_96_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446838,0.003651376856416317,446838,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_97_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446840,0.0016660167532789075,446840,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_98_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446842,0.0026981777239237226,446842,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_99_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446843,0.0026102705799627077,446843,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_100_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446844,0.00543207623942447,446844,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_101_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446847,0.003045593903288613,446847,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_102_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446848,0.0028080848322566973,446848,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_103_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446849,0.0023668193208007436,446849,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_104_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446850,0.0026371507881129074,446850,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_105_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446851,0.0023233007792824493,446851,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_106_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446852,0.0027029177352644548,446852,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_107_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446853,0.0031194847763824844,446853,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_108_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446854,0.002615200925201125,446854,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_109_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446855,0.003316235018285071,446855,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_110_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446858,0.002982488789900219,446858,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_111_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446859,0.0015023656278348185,446859,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_112_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446860,0.0029755755631605406,446860,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_113_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446861,0.003729584977498802,446861,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_114_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446863,0.0027534817300565047,446863,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_115_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446864,0.003136394793957316,446864,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_116_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446866,0.002483830248026032,446866,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_117_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446867,0.0022993703591639506,446867,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_118_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446868,0.003208664342479044,446868,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_119_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446870,0.0015823566119602778,446870,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_120_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446871,0.00250307282430357,446871,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_121_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446872,0.002533600625358668,446872,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_122_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446873,0.002634569788148906,446873,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_123_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446874,0.0029513362701225963,446874,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_124_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446878,0.0016833488885684843,446878,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_125_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446881,0.003796626412825489,446881,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_126_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446882,0.0032735328206617343,446882,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_127_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446883,0.0038218287385696336,446883,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_128_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446884,0.002418024820887028,446884,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_129_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446886,0.002788537515138902,446886,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_130_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446888,0.002549165392902233,446888,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_131_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446890,0.004476521047028776,446890,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_132_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446891,0.002415497537952496,446891,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_133_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446892,0.0026346147245100964,446892,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_134_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446895,0.003136280645269695,446895,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_135_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446896,0.005148519019645183,446896,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_136_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446897,0.0031583952748391745,446897,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_137_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446899,0.0027374717309802264,446899,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_138_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446900,0.0031095241412402433,446900,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_139_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446901,0.002853824108084622,446901,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_140_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446904,0.0026062534242252615,446904,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_141_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446905,0.0044685869384742385,446905,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_142_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446906,0.004357960331852319,446906,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_143_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446908,0.002745128215464191,446908,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_144_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446909,0.003168591180240291,446909,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_145_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446910,0.003915723007021888,446910,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_146_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446912,0.007038779449354156,446912,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_147_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446913,0.0016022898910999063,446913,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_148_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446914,0.002859001345054637,446914,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_149_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446915,0.002521495441116861,446915,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_150_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446916,0.007328331283018213,446916,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_151_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446919,0.0028627672187263465,446919,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_152_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446920,0.002507044785424877,446920,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_153_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446921,0.005675935541406438,446921,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_154_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446923,0.0030480171094785496,446923,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_155_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446924,0.002963514798770025,446924,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_156_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446926,0.001705065159878561,446926,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_157_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446927,0.003273828006068864,446927,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_158_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446928,0.005926873611550631,446928,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_159_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446931,0.0030984847751744844,446931,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_160_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446932,0.004277994011074525,446932,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_161_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446933,0.010881986532632615,446933,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_162_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446934,0.0025742861100823767,446934,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_163_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446936,0.002855576367916096,446936,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_164_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446938,0.0026542297044246264,446938,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_165_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446939,0.002931938482620486,446939,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_166_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446940,0.0031900792833026003,446940,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_167_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446941,0.0022765189282239187,446941,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_168_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446942,0.003392302205837281,446942,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_169_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446943,0.002813503279349424,446943,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_170_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446945,0.0028638666100458134,446945,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_171_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446946,0.00337525686266898,446946,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_172_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446949,0.0031185354311886013,446949,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_173_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446952,0.002595800555149521,446952,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_174_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446953,0.0029310684216960594,446953,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_175_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446957,0.004441133920846337,446957,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_176_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446958,0.005118808337249892,446958,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_177_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446959,0.0027664342487871947,446959,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_178_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446960,0.002618014354619559,446960,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_179_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446961,0.0026648984746380396,446961,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_180_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446963,0.0015608687671529184,446963,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_181_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446965,0.007244159796899829,446965,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_182_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446966,0.002859753641722151,446966,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_183_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446967,0.0028712643230705097,446967,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_184_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446968,0.0016758492939662616,446968,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_185_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446973,0.002442990843352499,446973,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_186_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446974,0.0015467406718926975,446974,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_187_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446976,0.0023669091935231245,446976,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_188_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446978,0.0056844414264188795,446978,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_189_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446979,0.002561122855313001,446979,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_190_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446981,0.005178728650602657,446981,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_191_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446982,0.004406733845080389,446982,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_192_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446983,0.004809986552283663,446983,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_193_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446984,0.005924354592774478,446984,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_194_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446987,0.0036538798633856083,446987,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_195_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446988,0.004355342659685508,446988,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_196_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446989,0.006218326201642048,446989,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_197_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446990,0.006321855445745388,446990,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_198_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446991,0.006696841632230245,446991,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_199_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446993,0.002907330143259892,446993,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_200_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446994,0.0024187187519359842,446994,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_201_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446995,0.002979226255124831,446995,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_202_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446996,0.004498071389533882,446996,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_203_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_446999,0.004837799060801087,446999,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_204_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447000,0.0020950651269725016,447000,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_205_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447001,0.005229202514417377,447001,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_206_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447002,0.002356463555585966,447002,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_207_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447003,0.002692569975953108,447003,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_208_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447004,0.005156615312307925,447004,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_209_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447005,0.003971243689057191,447005,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_210_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447006,0.002909902879065513,447006,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_211_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447007,0.006343347422631938,447007,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_212_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447008,0.002541784982959145,447008,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_213_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447010,0.0038803384633889423,447010,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_214_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447011,0.0027616265746497276,447011,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_215_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447012,0.0023100649548723007,447012,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_216_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447013,0.0076203318901121924,447013,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_217_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447014,0.006300901155663427,447014,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_218_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447015,0.002772063690173556,447015,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_219_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447016,0.0031533412254800084,447016,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_220_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447017,0.0015277390474829203,447017,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_221_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447019,0.004374328014033475,447019,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_222_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447021,0.005224924779436016,447021,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_223_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447022,0.0024166999729967613,447022,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_224_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447023,0.003046773095387436,447023,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_225_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447024,0.0024277313331590895,447024,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_226_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447026,0.0049990296917322066,447026,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_227_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447027,0.003698229469330974,447027,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_228_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447028,0.006255366159500454,447028,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_229_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447029,0.007055935325640787,447029,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_230_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447031,0.0015868960883328245,447031,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_231_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447032,0.002427839025472977,447032,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_232_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447034,0.006660994812237928,447034,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_233_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447035,0.0029219406587655357,447035,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_234_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447037,0.00268643926171002,447037,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_235_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447040,0.004657518511784656,447040,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_236_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447041,0.004290420722728298,447041,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_237_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447042,0.0014534951398732607,447042,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_238_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447047,0.002295217361323136,447047,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_239_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447049,0.004930227474160718,447049,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_240_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447066,0.005733302746329735,447066,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_241_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447069,0.004258398658536147,447069,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_242_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447088,0.0040366697396755705,447088,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_243_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447090,0.004815735823966532,447090,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_244_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447091,0.0059940787805152175,447091,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_245_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447094,0.004032007721329547,447094,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_246_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447095,0.010049974826406518,447095,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_247_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447096,0.0034911849268915605,447096,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_248_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447099,0.006369045856133821,447099,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_249_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447100,0.0024692925604161103,447100,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_250_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447103,0.005243663758562285,447103,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_251_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447104,0.006156868238320735,447104,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_252_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447106,0.002420195453736481,447106,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_253_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447108,0.004856228650498009,447108,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_254_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447111,0.005814550269911353,447111,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_255_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447112,0.002720066380412504,447112,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_256_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447114,0.005432982714296757,447114,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_257_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447120,0.0029760231189877983,447120,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_258_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447121,0.004464810218094656,447121,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_259_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447122,0.004591400596156915,447122,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_260_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447123,0.0025467272079252334,447123,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_261_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447124,0.005451879745452039,447124,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_262_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447126,0.004497383398348761,447126,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_263_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447127,0.0024686520881416736,447127,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_264_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447128,0.002682999822294314,447128,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_265_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447129,0.0045197596401819525,447129,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_266_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447131,0.002486190698263271,447131,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_267_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447135,0.0024376986829300145,447135,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_268_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447136,0.0015154339739103006,447136,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_269_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447137,0.002952167592804618,447137,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_270_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447138,0.0032009673119680285,447138,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_271_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447139,0.006590240703759101,447139,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_272_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447140,0.003314188347811316,447140,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_273_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447141,0.005705327020684309,447141,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_274_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447150,0.0032789342229278024,447150,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_275_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447151,0.002748579276352619,447151,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_276_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447152,0.0072269212790294,447152,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_277_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447153,0.004277806001471384,447153,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_278_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447161,0.003239038481839267,447161,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_279_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447167,0.002654298658496108,447167,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_280_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447168,0.003170335434168335,447168,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_281_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447172,0.0030360516411643505,447172,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_282_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447182,0.002816321099101997,447182,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_283_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447199,0.0038674094458586456,447199,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_284_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447208,0.002674193586775755,447208,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_285_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_447215,0.0062747564576090325,447215,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_286_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_34328679,0.0013885974788812915,34328679,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_287_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_34328680,0.0024596898666336955,34328680,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940000_288_residential,BranchTee_mvgd_33532_lvgd_1163940000_building_34328681,0.0015428649107400315,34328681,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_1_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446537,0.0030774181441895468,446537,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_2_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446546,0.003533432854058956,446546,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_3_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446547,0.0028716925097765646,446547,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_4_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446549,0.004066319215647861,446549,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_5_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446550,0.0025965874579802505,446550,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_6_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446557,0.004519489505504912,446557,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_7_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446558,0.002721921683968776,446558,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_8_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446560,0.004365746718575817,446560,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_9_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446565,0.0036226754343631614,446565,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_10_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446566,0.003045545093103182,446566,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_11_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446567,0.0026088648982732885,446567,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_12_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446568,0.0026565292064938146,446568,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_13_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446570,0.002404320263743773,446570,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_14_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446571,0.005053081419615496,446571,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_15_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446574,0.002505665703995243,446574,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_16_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446575,0.004281046842831025,446575,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_17_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446576,0.002832254912968211,446576,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_18_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446578,0.0037796376274911,446578,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_19_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446579,0.0031260821573190836,446579,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_20_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446580,0.002490640689295861,446580,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_21_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446583,0.0027936989985570056,446583,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_22_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446584,0.0028534529957223776,446584,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_23_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446585,0.001520736981040659,446585,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_24_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446586,0.003470583413070438,446586,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_25_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446593,0.004587589269614116,446593,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_26_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446595,0.0039604506982131304,446595,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_27_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446596,0.0029712627055060664,446596,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_28_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446598,0.0026346798047573376,446598,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_29_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446599,0.002607997161643406,446599,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_30_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446600,0.0042503989532244706,446600,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_31_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446601,0.005360237460158289,446601,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_32_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446605,0.005263605172732819,446605,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_33_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446608,0.0029117251259882663,446608,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_34_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446615,0.0026432099657350203,446615,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_35_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446616,0.0034312824331303015,446616,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_36_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446619,0.004928986817383946,446619,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_37_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446621,0.005119539715266506,446621,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_38_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446622,0.0023145521346176,446622,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_39_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446624,0.00442235775300736,446624,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_40_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446625,0.0015476563148156882,446625,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_41_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446627,0.0024922744101055737,446627,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_42_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446638,0.006437590851775739,446638,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_43_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446641,0.0028095648913715352,446641,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_44_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446642,0.0025581392358829326,446642,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_45_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446643,0.007886246681280235,446643,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_46_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446644,0.004608766175462435,446644,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_47_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446645,0.003240985724157515,446645,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_48_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446647,0.00280837872638908,446647,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_49_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446648,0.0024525646125805847,446648,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_50_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446649,0.0029895277868002413,446649,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_51_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446651,0.002868462515124797,446651,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_52_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446652,0.001537203445739948,446652,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_53_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446653,0.0025047718836154744,446653,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_54_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446654,0.002866008318340937,446654,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_55_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446656,0.002893419240412091,446656,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_56_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446657,0.002774179314718793,446657,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_57_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446659,0.002796498998718072,446659,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_58_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446660,0.004421415638952058,446660,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_59_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446666,0.0029268462115288134,446666,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_60_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446668,0.002517730600464949,446668,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_61_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446669,0.0030763866739217643,446669,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_62_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446670,0.0023825044351507146,446670,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_63_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446676,0.0026767084734727175,446676,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_64_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446678,0.0026740117752913992,446678,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_65_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446682,0.0024885947935869538,446682,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_66_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446683,0.004561610371237217,446683,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_67_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446684,0.0026173645851669445,446684,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_68_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446689,0.0028127734508625046,446689,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_69_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446690,0.002461099163892406,446690,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_70_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446691,0.0016349968474177858,446691,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_71_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_446707,0.0026761214599728004,446707,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_72_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_34328706,0.001656949163751587,34328706,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_73_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_34328707,0.004512658145584184,34328707,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940001_74_residential,BranchTee_mvgd_33532_lvgd_1163940001_building_34328708,0.002287765673014022,34328708,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_1_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_445968,0.005957412775823501,445968,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_2_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_445971,0.0026120941181602074,445971,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_3_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446134,0.00506922855206989,446134,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_4_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446135,0.0039987876124272705,446135,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_5_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446138,0.0014974431593723569,446138,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_6_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446141,0.00496348657956035,446141,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_7_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446143,0.00277792556101435,446143,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_8_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446148,0.0016344667791342044,446148,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_9_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446233,0.0015273524398237142,446233,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_10_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446242,0.0036134598647498523,446242,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_11_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446244,0.002753350536542225,446244,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_12_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446245,0.0015163843521239812,446245,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_13_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446248,0.0028657957745176054,446248,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_14_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446251,0.0016716246303769967,446251,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_15_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446254,0.002702766914374023,446254,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_16_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446258,0.005338678336984905,446258,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_17_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446259,0.00254162718918508,446259,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_18_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446264,0.0029814722984195,446264,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_19_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446269,0.002582129571149685,446269,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_20_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446270,0.0027038280839609833,446270,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_21_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446271,0.0015705317634660111,446271,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_22_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446272,0.00294903599328856,446272,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_23_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446273,0.0030003029580527945,446273,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_24_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446283,0.004924852672154435,446283,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_25_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446284,0.001564671829537337,446284,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_26_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446286,0.003058323289743047,446286,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_27_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446287,0.0015462047928727553,446287,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_28_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446289,0.0018022604430936585,446289,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_29_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446290,0.00463404623594634,446290,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_30_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446291,0.0023711107432944204,446291,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_31_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446293,0.0027191265906517472,446293,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_32_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446299,0.0025604015492394112,446299,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_33_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446300,0.0029186197583715903,446300,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_34_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446305,0.0016839276379100217,446305,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_35_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446308,0.003914347541161544,446308,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_36_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446310,0.003361037086901733,446310,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_37_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446311,0.004207024776222874,446311,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_38_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446312,0.004950609987784775,446312,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_39_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446333,0.0014697635230263833,446333,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_40_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446342,0.0024961521081703604,446342,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_41_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446347,0.006258033416617544,446347,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_42_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446350,0.0031231628433714084,446350,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940002_43_residential,BranchTee_mvgd_33532_lvgd_1163940002_building_446356,0.005346428051505593,446356,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_1_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447052,0.002392787372469769,447052,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_2_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447053,0.0027022555695742708,447053,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_3_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447054,0.002858758843657179,447054,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_4_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447056,0.002741512129663116,447056,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_5_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447057,0.0025163561676244035,447057,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_6_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447063,0.0026012665211529317,447063,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_7_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447064,0.0021400246019808045,447064,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_8_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447065,0.005921339724495536,447065,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_9_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447067,0.002978989693591209,447067,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_10_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447070,0.0022290049243839254,447070,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_11_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447071,0.0023731956355006827,447071,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_12_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447072,0.005729279134218554,447072,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_13_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447073,0.002559191108291715,447073,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_14_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447075,0.002561124663097647,447075,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_15_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447076,0.002977084805084658,447076,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_16_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447078,0.002616638888759216,447078,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_17_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447079,0.0025679270984640453,447079,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_18_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447081,0.0021864026714259956,447081,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_19_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447083,0.0023278990086559774,447083,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_20_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447084,0.002512536318668275,447084,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_21_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447086,0.002152224953171455,447086,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_22_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447110,0.003957453649525695,447110,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_23_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447157,0.00281362775823502,447157,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_24_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447162,0.004003174847507163,447162,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_25_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447163,0.002801639046975378,447163,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_26_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447170,0.004930764127945507,447170,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_27_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447171,0.002844621192963832,447171,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_28_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447174,0.004391062418242734,447174,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_29_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447175,0.004992051126490339,447175,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_30_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447176,0.0035325769971567443,447176,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_31_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447177,0.0014823355030891766,447177,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_32_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447179,0.002527930896200205,447179,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_33_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447180,0.0027672573073108356,447180,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_34_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447181,0.0028011971727570067,447181,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_35_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447183,0.00552911088806106,447183,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_36_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447184,0.004728296896228724,447184,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_37_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447186,0.002155061754662807,447186,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_38_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447187,0.0028585147927300244,447187,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_39_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447188,0.003677097241588897,447188,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_40_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447189,0.0077027136694314425,447189,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_41_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447193,0.0025892349395716945,447193,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_42_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447194,0.0032399348847685296,447194,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_43_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447200,0.004939736937906411,447200,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_44_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447204,0.0024040209462574537,447204,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_45_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447207,0.001594615328769486,447207,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_46_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447212,0.0024939615896898064,447212,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_47_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447221,0.002632541453776556,447221,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_48_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447225,0.0025661939494988255,447225,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_49_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447229,0.0037354995323492677,447229,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_50_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_447999,0.005371571753376228,447999,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_51_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448003,0.0046509862110952985,448003,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_52_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448011,0.0026857851019232663,448011,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_53_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448015,0.0024272925580001107,448015,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_54_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448017,0.007439237838005248,448017,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_55_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448019,0.003512463326934981,448019,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_56_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448022,0.004455152516008025,448022,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_57_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448023,0.002983670306293586,448023,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_58_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448024,0.002716364037458339,448024,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_59_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448027,0.0032655189113278424,448027,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_60_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448029,0.003900844422878798,448029,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_61_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448030,0.004252693031939721,448030,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_62_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448031,0.0025920426873812423,448031,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_63_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448033,0.0025399038539079357,448033,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_64_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448034,0.002632193326104805,448034,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_65_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448035,0.002148536039474658,448035,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_66_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448037,0.007679477955126749,448037,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_67_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448038,0.005239101426626719,448038,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_68_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448039,0.0025273273543835284,448039,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_69_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448041,0.0024550417940549392,448041,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_70_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448042,0.002467960481387261,448042,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_71_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448044,0.003737903627672951,448044,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_72_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448045,0.004496062682537685,448045,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_73_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448047,0.0029332253670331957,448047,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_74_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448048,0.0025572164909488343,448048,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_75_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448049,0.002613099762933053,448049,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_76_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448051,0.0028132902190161936,448051,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_77_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448052,0.001825164041533463,448052,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_78_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448053,0.0038067657603926947,448053,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_79_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448054,0.0024863523658615765,448054,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_80_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448055,0.00435878364863091,448055,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_81_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448057,0.0027203961719828493,448057,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_82_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448058,0.00151654886052673,448058,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_83_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448060,0.002272197548156115,448060,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_84_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448061,0.0028519657054689573,448061,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_85_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448062,0.0015496656674492593,448062,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_86_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448063,0.0024377901051820913,448063,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_87_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448064,0.0025743571301934534,448064,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_88_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448065,0.0028491295496149787,448065,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_89_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448067,0.002734720282749642,448067,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_90_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448069,0.004361539745450584,448069,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_91_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448070,0.0027907004003398734,448070,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_92_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448071,0.0031980691749262016,448071,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_93_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448072,0.002432569481380582,448072,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_94_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448075,0.0026970690354260786,448075,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_95_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448076,0.0025234925266403373,448076,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_96_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448078,0.004065948361540567,448078,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_97_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448080,0.004450018407614555,448080,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_98_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448082,0.002499439435420888,448082,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_99_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448083,0.0027688618453112703,448083,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_100_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448085,0.002635981409702161,448085,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_101_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448087,0.003467328884198481,448087,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_102_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448088,0.0024954132407602136,448088,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_103_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448089,0.003324546179065688,448089,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_104_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448091,0.004227654181578527,448091,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_105_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448095,0.0030758680979834302,448095,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_106_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448096,0.0028160594868382855,448096,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_107_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448099,0.004296818214334084,448099,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_108_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448105,0.003979189677339398,448105,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_109_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448108,0.004684138915455789,448108,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_110_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448113,0.005220871726260608,448113,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_111_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448122,0.004375286139895637,448122,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_112_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448123,0.0029301214007967204,448123,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_113_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_448131,0.007738189118806566,448131,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_114_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_34328718,0.002943017361693498,34328718,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_115_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_34328719,0.0025971181719012058,34328719,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940003_116_residential,BranchTee_mvgd_33532_lvgd_1163940003_building_34328720,0.002826884243041118,34328720,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_1_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446033,0.005473547852214059,446033,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_2_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446093,0.0027528332518786374,446093,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_3_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446096,0.009420192240833885,446096,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_4_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446097,0.003951372520232886,446097,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_5_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446098,0.008251705842682842,446098,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_6_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446099,0.002715758946111966,446099,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_7_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446103,0.0029622121608054042,446103,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_8_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446104,0.0030239704746328347,446104,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_9_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446106,0.0027558292675462755,446106,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_10_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446107,0.0027954794081779606,446107,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_11_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446108,0.0024364962478857486,446108,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_12_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446110,0.0024914087395152868,446110,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_13_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446111,0.0029994068133784814,446111,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_14_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446112,0.0030168842170770786,446112,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_15_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446113,0.0026942395942007834,446113,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_16_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446114,0.002455073559413712,446114,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_17_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446115,0.00246526894830493,446115,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_18_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446116,0.004354187227042027,446116,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_19_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446117,0.0014878513122978153,446117,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_20_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446118,0.0032127233355182883,446118,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_21_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446119,0.0015862810541709003,446119,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_22_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446120,0.0028184940562459944,446120,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_23_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446121,0.0024755614410571117,446121,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_24_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446122,0.0027055818933221527,446122,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_25_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446123,0.0027200526929001875,446123,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_26_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446124,0.0026893691641106192,446124,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_27_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446125,0.00268026825969483,446125,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_28_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446126,0.0031068269265490255,446126,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_29_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446127,0.0029502167349170784,446127,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_30_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446128,0.00239949864383904,446128,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_31_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446132,0.0029526099835328876,446132,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_32_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446133,0.004321580990154402,446133,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_33_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446137,0.006382333073278894,446137,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_34_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446147,0.00281568062682756,446147,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_35_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446150,0.005167682569908215,446150,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_36_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446151,0.002764612260119391,446151,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_37_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446153,0.0023742446671050224,446153,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_38_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446154,0.002727620854191467,446154,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_39_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446156,0.0016040096108077592,446156,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_40_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446157,0.0028242812914064204,446157,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_41_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446158,0.0027705890544126545,446158,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_42_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446159,0.0026037715941618182,446159,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_43_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446160,0.0031977249210786915,446160,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_44_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446161,0.0025766527584384006,446161,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_45_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446162,0.00228583237646304,446162,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_46_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446163,0.002709736440692664,446163,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_47_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446164,0.0028972470952716494,446164,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_48_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446165,0.002627921530987281,446165,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_49_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446166,0.0028858185389971903,446166,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_50_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446168,0.002996968111891583,446168,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_51_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446169,0.005345845944849712,446169,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_52_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446170,0.0026123655441119948,446170,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_53_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446171,0.005283283166854995,446171,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_54_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446173,0.0032409043738484637,446173,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_55_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446174,0.0025830858892272007,446174,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_56_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446175,0.002560269064450385,446175,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_57_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446176,0.002667556951086852,446176,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_58_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446177,0.0027149614548283127,446177,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_59_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446178,0.0028143281456577103,446178,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_60_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446181,0.005935488996661605,446181,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_61_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446187,0.005916509323922524,446187,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_62_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446189,0.002856120511094418,446189,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_63_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446191,0.0032682406602392495,446191,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_64_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446193,0.002861103023832608,446193,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_65_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446194,0.0023795691093961785,446194,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_66_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446195,0.0025877321540213115,446195,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_67_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446196,0.0029412989332603923,446196,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_68_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446197,0.0028954116773464785,446197,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_69_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446198,0.002522647516445999,446198,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_70_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446201,0.004955542140807838,446201,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_71_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446202,0.004899127380137817,446202,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_72_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446203,0.0017132807663279113,446203,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_73_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446204,0.002938403378768058,446204,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_74_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446205,0.003123412834162398,446205,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_75_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446207,0.0026968650140160766,446207,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_76_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446208,0.00259167493233334,446208,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_77_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446209,0.003450163194223773,446209,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_78_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446210,0.0014909733563807461,446210,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_79_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446211,0.0015490031143766511,446211,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_80_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446212,0.005418510623443976,446212,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_81_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446213,0.002850976330757922,446213,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_82_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446214,0.0027413517533395578,446214,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_83_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446215,0.0026379844350894726,446215,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_84_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446216,0.0024827724357534132,446216,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_85_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446218,0.0027041573590214293,446218,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_86_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446219,0.002884014628175843,446219,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_87_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446221,0.0026994806201432924,446221,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_88_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446223,0.004783523684131644,446223,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_89_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446227,0.0030098855079491583,446227,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_90_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446236,0.004417901822110933,446236,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_91_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446237,0.007702962110692736,446237,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_92_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446360,0.005191385209161369,446360,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_93_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446362,0.004735274428450795,446362,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_94_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446365,0.005598118160062349,446365,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_95_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446367,0.0050918640818722475,446367,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_96_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_446368,0.005947276785570638,446368,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_97_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_34328730,0.0027259530437284377,34328730,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_98_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_34328731,0.0025737892275597895,34328731,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940004_99_residential,BranchTee_mvgd_33532_lvgd_1163940004_building_34328732,0.0025430483661714612,34328732,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_1_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446313,0.00294025894057928,446313,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_2_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446314,0.0026647337079803413,446314,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_3_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446317,0.0015504051804967796,446317,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_4_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446318,0.002749267009282791,446318,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_5_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446328,0.0024389176462910394,446328,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_6_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446329,0.0026975031619959687,446329,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_7_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446331,0.0024068759547227364,446331,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_8_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446332,0.0025777629964657415,446332,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_9_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446335,0.001621387198968425,446335,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_10_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446337,0.0016196602481219895,446337,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_11_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446338,0.0049056917044408965,446338,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_12_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446339,0.003437970461554129,446339,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_13_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446341,0.0035237020658216538,446341,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_14_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446343,0.002564219848665843,446343,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_15_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446344,0.003046230759993759,446344,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_16_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446345,0.0045616052061382304,446345,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_17_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446346,0.0027666374954323485,446346,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_18_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446349,0.0027317500925769403,446349,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_19_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446352,0.005066535469457862,446352,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_20_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446353,0.004269504654378843,446353,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_21_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446355,0.0025734281871405704,446355,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_22_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446357,0.00383557745730923,446357,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_23_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446358,0.006660505677363822,446358,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_24_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446535,0.00266690614861444,446535,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_25_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446539,0.0026092502146577473,446539,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_26_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446541,0.002460694220131794,446541,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163940005_27_residential,BranchTee_mvgd_33532_lvgd_1163940005_building_446542,0.0024182585416162076,446542,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163980000_1_residential,BranchTee_mvgd_33532_lvgd_1163980000_building_446370,0.002660966801288835,446370,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163980000_2_residential,BranchTee_mvgd_33532_lvgd_1163980000_building_446371,0.00450143645152417,446371,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163980000_3_residential,BranchTee_mvgd_33532_lvgd_1163980000_building_446378,0.004930396372897605,446378,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1163980000_4_residential,BranchTee_mvgd_33532_lvgd_1163980000_building_446384,0.002598226343888951,446384,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163980000_5_residential,BranchTee_mvgd_33532_lvgd_1163980000_building_446394,0.002423778999413935,446394,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1163980000_6_residential,BranchTee_mvgd_33532_lvgd_1163980000_building_446375,0.005923834467306447,446375,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1164000000_1_residential,BranchTee_mvgd_33532_lvgd_1164000000_building_446387,0.005520883918393937,446387,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1164650000_1_residential,BranchTee_mvgd_33532_lvgd_1164650000_building_431401,0.005899373591521943,431401,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1165560000_1_residential,BranchTee_mvgd_33532_lvgd_1165560000_building_442271,0.0056682886123556,442271,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1165580000_1_residential,BranchTee_mvgd_33532_lvgd_1165580000_building_430919,0.0016609599922427737,430919,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1165580000_2_residential,BranchTee_mvgd_33532_lvgd_1165580000_building_430922,0.004852590354771288,430922,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1166160000_1_residential,BranchTee_mvgd_33532_lvgd_1166160000_building_431459,0.002574990629584257,431459,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166160000_2_residential,BranchTee_mvgd_33532_lvgd_1166160000_building_431460,0.0028973914597883467,431460,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166370000_1_residential,BranchTee_mvgd_33532_lvgd_1166370000_building_431436,0.00498105669678577,431436,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_1_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431440,0.0028017007699082776,431440,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_2_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431441,0.002775011670420612,431441,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_3_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431450,0.0030852107290318294,431450,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_4_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431451,0.002561915439752617,431451,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_5_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431453,0.002395706169907546,431453,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_6_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431454,0.0025651033388476366,431454,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_7_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431455,0.004206396183676108,431455,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_8_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431462,0.0016166041881786226,431462,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_9_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431592,0.005020626520128201,431592,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_10_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431595,0.003262930421970309,431595,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_11_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431596,0.00279118540313479,431596,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_12_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431608,0.0029651389641466115,431608,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_13_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431609,0.0015467695964470269,431609,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_14_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431611,0.0026256473379031304,431611,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_15_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431614,0.004630692020663926,431614,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_16_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431616,0.003122104514588891,431616,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_17_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431618,0.002609456302107345,431618,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_18_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431620,0.0026193800067918264,431620,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_19_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431621,0.002779286306342579,431621,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_20_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431623,0.002570804058600025,431623,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_21_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431626,0.002852323905083733,431626,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_22_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431628,0.0030744598337445164,431628,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_23_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431631,0.002624898915059858,431631,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166640000_24_residential,BranchTee_mvgd_33532_lvgd_1166640000_building_431636,0.0034369609429570425,431636,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1166650000_1_residential,BranchTee_mvgd_33532_lvgd_1166650000_building_431655,0.0115767770540606,431655,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1167330000_1_residential,BranchTee_mvgd_33532_lvgd_1167330000_building_430932,0.006389223831837977,430932,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1167770000_1_residential,BranchTee_mvgd_33532_lvgd_1167770000_building_431696,0.00513912473760691,431696,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1168630000_1_residential,BranchTee_mvgd_33532_lvgd_1168630000_building_431433,0.006780379360702873,431433,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1169820000_1_residential,BranchTee_mvgd_33532_lvgd_1169820000_building_446412,0.004963590398049996,446412,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_1_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446398,0.0025251931354819367,446398,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_2_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446399,0.002518923221821138,446399,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_3_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446400,0.0027452281601295977,446400,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_4_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446402,0.002574689762568242,446402,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_5_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446403,0.0023289490732801145,446403,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_6_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446404,0.002821763047395116,446404,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_7_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446406,0.0015819387554521977,446406,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_8_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446407,0.004756867124767599,446407,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_9_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446408,0.0020269088050293856,446408,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_10_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446411,0.002884893469768548,446411,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_11_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446413,0.0021998533639540196,446413,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_12_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446417,0.004255316902225318,446417,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_13_residential,BranchTee_mvgd_33532_lvgd_1170260000_building_446421,0.004184471629749364,446421,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1170260000_14_industrial,BranchTee_mvgd_33532_lvgd_1170260000_building_544076,0.17929869919198063,544076,,industrial,0.0,conventional_load -Load_mvgd_33532_lvgd_1170760000_1_residential,BranchTee_mvgd_33532_lvgd_1170760000_building_446459,0.002764028087423916,446459,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170760000_2_residential,BranchTee_mvgd_33532_lvgd_1170760000_building_446463,0.002609604540448283,446463,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170760000_3_residential,BranchTee_mvgd_33532_lvgd_1170760000_building_446483,0.0023868317550823537,446483,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1170760000_4_residential,BranchTee_mvgd_33532_lvgd_1170760000_building_446484,0.002487025378259634,446484,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172090000_1_residential,BranchTee_mvgd_33532_lvgd_1172090000_building_431650,0.005573649020119465,431650,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_1_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444465,0.0033760633928758615,444465,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_2_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444466,0.00519810087086478,444466,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_3_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444471,0.002435385751603459,444471,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_4_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444473,0.0028257484377737898,444473,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_5_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444475,0.0031334364835122856,444475,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_6_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444476,0.00237035715535216,444476,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_7_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444477,0.0034354702953892807,444477,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_8_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444483,0.0017146743100347102,444483,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_9_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444479,0.0015997677732643616,444479,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_10_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444493,0.0024835131109482056,444493,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_11_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444494,0.002249510625618832,444494,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_12_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444500,0.0028132034453532055,444500,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_13_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444503,0.002774085051662273,444503,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_14_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444507,0.005266577687200064,444507,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_15_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444510,0.0026210534988637423,444510,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_16_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444517,0.0024569916189226804,444517,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_17_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444518,0.004513739717312144,444518,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_18_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444520,0.0045542924589918755,444520,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_19_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444525,0.0043848777287152285,444525,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_20_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444526,0.00238609960230089,444526,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_21_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444527,0.0024684591716944942,444527,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_22_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444529,0.005217488586423865,444529,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_23_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444530,0.005208884564530663,444530,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_24_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444533,0.002797959946966657,444533,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_25_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444534,0.0029275445329119093,444534,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_26_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444536,0.0028738569445072326,444536,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_27_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444537,0.0027583792769163523,444537,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_28_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444541,0.004060104568546228,444541,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_29_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444542,0.006570873132086068,444542,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_30_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444543,0.005584874329748771,444543,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_31_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444544,0.004739691621104814,444544,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_32_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444546,0.006236014083124382,444546,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_33_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444547,0.005377717188151432,444547,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_34_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444548,0.0025634866628645825,444548,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_35_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444549,0.0051735542544370855,444549,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_36_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444550,0.0057051818814027625,444550,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_37_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444551,0.00558698065711583,444551,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_38_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444554,0.007407970911285054,444554,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_39_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444555,0.006273984275310417,444555,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_40_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444557,0.006961864410803164,444557,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_41_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444558,0.002490348602948124,444558,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_42_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444559,0.006987896509699634,444559,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_43_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444560,0.003035921738924818,444560,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_44_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444562,0.005473955378524165,444562,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_45_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444563,0.0030761310015218887,444563,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_46_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444564,0.002488068986510037,444564,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_47_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444565,0.005088752626242241,444565,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_48_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444568,0.0028485810161025175,444568,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_49_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444569,0.0047309837807219665,444569,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_50_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444570,0.0036688651068227875,444570,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_51_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444571,0.005336891729245164,444571,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_52_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444576,0.002956080413542518,444576,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_53_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444577,0.004006718363667465,444577,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_54_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444578,0.006025735155699062,444578,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_55_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444579,0.005916540831026346,444579,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_56_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444582,0.009036713598593954,444582,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_57_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444585,0.00277479912659728,444585,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_58_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444731,0.0027964362427653757,444731,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_59_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444732,0.0027883143828626466,444732,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_60_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444743,0.0028257667738751952,444743,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_61_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444744,0.0028596699671185554,444744,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110000_62_residential,BranchTee_mvgd_33532_lvgd_1172110000_building_444524,0.12690467226960309,444524,,residential,129.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_1_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_431662,0.00481948155375219,431662,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_2_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_431663,0.004689258045062196,431663,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_3_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_431664,0.002958774270919394,431664,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_4_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_431669,0.0027876008244375377,431669,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_5_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_431670,0.001496482580088176,431670,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_6_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_431671,0.002520751925117625,431671,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_7_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_431677,0.004077713424014054,431677,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_8_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_431689,0.0049127245032221335,431689,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_9_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444676,0.0024767385671163383,444676,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_10_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444677,0.0016097268588769066,444677,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_11_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444679,0.00252089758090907,444679,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_12_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444680,0.003068936535142346,444680,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_13_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444681,0.002630533005035308,444681,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_14_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444684,0.009723390782532537,444684,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_15_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444686,0.00585687877262295,444686,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_16_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444687,0.001471496542864129,444687,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_17_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444689,0.002530416600087889,444689,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_18_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444690,0.006989460501673016,444690,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_19_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444692,0.0024847832087892055,444692,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_20_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444693,0.0026082332066671293,444693,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_21_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444695,0.007426189248433392,444695,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_22_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444698,0.0026895403871420517,444698,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_23_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444699,0.0023992972049785323,444699,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_24_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444700,0.004867310370375464,444700,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_25_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444701,0.010671346564788077,444701,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_26_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444703,0.0014778253386533834,444703,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_27_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444704,0.003230491276034926,444704,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_28_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444705,0.012737753914793867,444705,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_29_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444707,0.0025690657445358173,444707,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_30_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444713,0.002904761539533461,444713,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_31_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444714,0.0028295675119650696,444714,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_32_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444715,0.005745050763976564,444715,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_33_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444717,0.0025367572756048147,444717,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_34_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444718,0.0023771978124510654,444718,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_35_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444719,0.0033107468423560146,444719,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_36_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444720,0.009861592303118458,444720,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_37_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444721,0.0046060178262912425,444721,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_38_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444722,0.0024921845373831932,444722,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_39_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444724,0.002911402565556503,444724,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_40_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444725,0.019253100683235744,444725,,residential,12.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_41_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444726,0.01389922455899033,444726,,residential,12.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_42_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444727,0.005395955669185821,444727,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_43_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444728,0.008310650985346788,444728,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_44_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444734,0.018994761026242618,444734,,residential,14.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_45_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444735,0.03234782698528603,444735,,residential,22.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_46_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444736,0.01977812886322523,444736,,residential,17.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_47_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444737,0.006071251040995781,444737,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_48_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444738,0.020097245206983232,444738,,residential,13.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_49_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444739,0.015645634399350863,444739,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_50_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444742,0.004893485026003987,444742,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_51_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444745,0.01487023011198702,444745,,residential,12.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_52_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444746,0.012395543380443422,444746,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_53_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444748,0.009540708462486967,444748,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_54_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444749,0.016949112209067165,444749,,residential,15.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_55_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444750,0.017086463554359763,444750,,residential,12.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_56_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444751,0.015790212751146625,444751,,residential,11.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_57_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444765,0.008194966197286513,444765,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_58_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444775,0.005315395620279426,444775,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_59_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444776,0.005374806138362135,444776,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_60_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444777,0.004558814503155341,444777,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_61_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444779,0.005038094368393672,444779,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_62_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444780,0.004159923722046922,444780,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_63_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444783,0.010269727061884618,444783,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_64_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444785,0.007243031739280983,444785,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_65_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444786,0.010150743841610993,444786,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_66_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444788,0.003953290321486906,444788,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_67_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444789,0.009432991356124647,444789,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_68_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444790,0.008274488577806341,444790,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_69_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444791,0.009050215167347003,444791,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_70_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444793,0.008396215498662072,444793,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_71_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444794,0.005953154151708393,444794,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_72_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444796,0.025960756483215896,444796,,residential,18.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_73_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444800,0.005476573050690976,444800,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_74_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444802,0.010544950394447744,444802,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_75_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444806,0.008600911987101813,444806,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_76_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444808,0.008824041680807772,444808,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_77_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444809,0.009370273625160309,444809,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_78_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444810,0.0027992519964783534,444810,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_79_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444814,0.010277775319126776,444814,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_80_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444815,0.014199740348274929,444815,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_81_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444817,0.0025548276326671643,444817,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_82_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444818,0.005189029407513218,444818,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_83_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444820,0.00261973097526802,444820,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_84_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444822,0.013912063962053196,444822,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_85_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444827,0.0071518940841583025,444827,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_86_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444829,0.010973642247183732,444829,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_87_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444830,0.008619997544370137,444830,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_88_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444836,0.011419373761479138,444836,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_89_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444848,0.005465331729254811,444848,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_90_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444851,0.013868628578628599,444851,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_91_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444855,0.011075267635800318,444855,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1172110001_92_residential,BranchTee_mvgd_33532_lvgd_1172110001_building_444867,0.007266455979698718,444867,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_1_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444487,0.00507413694563761,444487,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_2_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444625,0.004661998202136423,444625,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_3_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444635,0.002839139989918408,444635,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_4_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444787,0.003254737541956504,444787,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_5_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444797,0.002528569818944946,444797,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_6_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444831,0.002915807361972954,444831,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_7_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444833,0.00248328610484771,444833,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_8_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444844,0.0026499119399261135,444844,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_9_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444627,0.0025979673141747336,444627,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_10_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444632,0.002573372145816557,444632,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_11_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444633,0.002326643631347091,444633,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_12_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444636,0.0024769314835635177,444636,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_13_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444638,0.0024877676029841224,444638,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_14_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444640,0.0028048558706247275,444640,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_15_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444641,0.010964692163658375,444641,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_16_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444644,0.0027167010601672668,444644,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_17_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444645,0.004625382815414782,444645,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_18_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444646,0.005965141829948238,444646,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_19_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444647,0.011247411087872007,444647,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_20_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444648,0.006130222525664563,444648,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_21_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444649,0.0034000242870783856,444649,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_22_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444650,0.002691556325276832,444650,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_23_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444651,0.0068960842926491985,444651,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_24_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444652,0.0025345827689311215,444652,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_25_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444653,0.0026051715942423514,444653,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_26_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444654,0.004527662758142566,444654,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_27_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444655,0.004362145611561805,444655,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_28_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444656,0.00326847412271348,444656,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_29_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444657,0.0030505694431431705,444657,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_30_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444658,0.010564905237875644,444658,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_31_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444659,0.003215311566620872,444659,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_32_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444660,0.0074864210172550984,444660,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_33_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444661,0.009782148948613137,444661,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_34_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444663,0.0025107223359039023,444663,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_35_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444664,0.0026469851365849067,444664,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_36_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444665,0.0025721061800547465,444665,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_37_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444667,0.0027169412372701806,444667,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_38_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444669,0.0026044513211885595,444669,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_39_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444670,0.005790130714918748,444670,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_40_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444671,0.00303102832414416,444671,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_41_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444672,0.0035792310120153366,444672,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_42_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444674,0.003860897289055338,444674,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_43_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444675,0.0041617012908634335,444675,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_44_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444678,0.004585973110140962,444678,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_45_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444682,0.004002236349021154,444682,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_46_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444683,0.004558904375877721,444683,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_47_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444685,0.004241410131456707,444685,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_48_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444691,0.004511271316506069,444691,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_49_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444702,0.006765604078539532,444702,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_50_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444708,0.002375712071727341,444708,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_51_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444710,0.0024988459655472368,444710,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_52_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444711,0.0025155049593112806,444711,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_53_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444741,0.0034599595792182154,444741,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_54_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444747,0.014865564994581604,444747,,residential,9.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_55_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444755,0.0027229758806721037,444755,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_56_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444756,0.011867565928932138,444756,,residential,8.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_57_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444757,0.0025509592317805555,444757,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_58_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444758,0.00830201648936956,444758,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_59_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444759,0.006728294502513985,444759,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_60_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444760,0.010154326354268649,444760,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_61_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444763,0.005771954731582105,444763,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_62_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444764,0.0035238528867120858,444764,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_63_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444766,0.011200150432137346,444766,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_64_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444768,0.002922598175866631,444768,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_65_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444770,0.016614618332603887,444770,,residential,13.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_66_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444778,0.009281691144506691,444778,,residential,7.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_67_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444804,0.0026298597343823006,444804,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172110002_68_residential,BranchTee_mvgd_33532_lvgd_1172110002_building_444807,0.004384064225624714,444807,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172130000_1_residential,BranchTee_mvgd_33532_lvgd_1172130000_building_444574,0.004728281400931762,444574,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172130000_2_residential,BranchTee_mvgd_33532_lvgd_1172130000_building_444575,0.0031019939434265204,444575,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172130000_3_residential,BranchTee_mvgd_33532_lvgd_1172130000_building_444580,0.0026132133951107758,444580,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172130000_4_residential,BranchTee_mvgd_33532_lvgd_1172130000_building_444583,0.002780832736979406,444583,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172130000_5_residential,BranchTee_mvgd_33532_lvgd_1172130000_building_444596,0.002930480633431294,444596,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172130000_6_residential,BranchTee_mvgd_33532_lvgd_1172130000_building_444598,0.0014990298777812845,444598,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172140000_1_residential,BranchTee_mvgd_33532_lvgd_1172140000_building_444617,0.0025927965335784523,444617,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172140000_2_residential,BranchTee_mvgd_33532_lvgd_1172140000_building_444618,0.0017644940140626767,444618,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172140000_3_residential,BranchTee_mvgd_33532_lvgd_1172140000_building_444619,0.002391571766423086,444619,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172410000_1_residential,BranchTee_mvgd_33532_lvgd_1172410000_building_444988,0.0026203835855250768,444988,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172410000_2_residential,BranchTee_mvgd_33532_lvgd_1172410000_building_444990,0.0026474920910505195,444990,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172410000_3_residential,BranchTee_mvgd_33532_lvgd_1172410000_building_444991,0.002723065753394484,444991,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1172450000_1_residential,BranchTee_mvgd_33532_lvgd_1172450000_building_444513,0.005730150486417727,444513,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1172500000_1_residential,BranchTee_mvgd_33532_lvgd_1172500000_building_444532,0.004426836410339329,444532,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1172500000_2_residential,BranchTee_mvgd_33532_lvgd_1172500000_building_444538,0.00265356443967505,444538,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1173000000_1_residential,BranchTee_mvgd_33532_lvgd_1173000000_building_444976,0.00689915339446751,444976,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1175770000_1_residential,BranchTee_mvgd_33532_lvgd_1175770000_building_445955,0.003281633503658615,445955,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1175770000_2_residential,BranchTee_mvgd_33532_lvgd_1175770000_building_446232,0.0028000298603858553,446232,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176030000_1_residential,BranchTee_mvgd_33532_lvgd_1176030000_building_444612,0.00549901385626151,444612,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1176030000_2_residential,BranchTee_mvgd_33532_lvgd_1176030000_building_34328622,0.0025845078409784308,34328622,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176030000_3_residential,BranchTee_mvgd_33532_lvgd_1176030000_building_34328623,0.0016299938034111208,34328623,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176030000_4_residential,BranchTee_mvgd_33532_lvgd_1176030000_building_34328624,0.0032590374868635102,34328624,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176040000_1_residential,BranchTee_mvgd_33532_lvgd_1176040000_building_444610,0.004598011406350882,444610,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1176170000_1_residential,BranchTee_mvgd_33532_lvgd_1176170000_building_444839,0.004397950594252324,444839,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1176170000_2_residential,BranchTee_mvgd_33532_lvgd_1176170000_building_444847,0.005283063650148031,444847,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1176170000_3_residential,BranchTee_mvgd_33532_lvgd_1176170000_building_445006,0.0050662761814886945,445006,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_1_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_444849,0.003490416101907287,444849,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_2_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_444853,0.004453700090172769,444853,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_3_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_444983,0.0037753325174851066,444983,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_4_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_445017,0.0039454169028454705,445017,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_5_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_445027,0.003146945541658867,445027,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_6_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_445031,0.002621783327350661,445031,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_7_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_445051,0.0032592234304270563,445051,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_8_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_445056,0.002551594797210954,445056,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_9_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_445061,0.0018343900704722224,445061,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_10_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_445065,0.002434916502360454,445065,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_11_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_445019,0.002949967260635987,445019,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_12_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_34328652,0.0028272088695124754,34328652,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_13_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_34328653,0.0016819898218974256,34328653,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_14_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_34328654,0.0026012665211529317,34328654,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_15_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_34328658,0.0014793991443148426,34328658,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_16_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_34328659,0.0025481124874736525,34328659,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1176270000_17_residential,BranchTee_mvgd_33532_lvgd_1176270000_building_34328660,0.002937936453819598,34328660,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1181890000_1_residential,BranchTee_mvgd_33532_lvgd_1181890000_building_34328685,0.0029999933103685003,34328685,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1181890000_2_residential,BranchTee_mvgd_33532_lvgd_1181890000_building_34328686,0.0025656193322364774,34328686,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1181890000_3_residential,BranchTee_mvgd_33532_lvgd_1181890000_building_34328687,0.002671158574610762,34328687,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1182040000_1_residential,BranchTee_mvgd_33532_lvgd_1182040000_building_446320,0.0025352087789283937,446320,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1182040000_2_residential,BranchTee_mvgd_33532_lvgd_1182040000_building_446321,0.0024336779116232773,446321,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1182040000_3_residential,BranchTee_mvgd_33532_lvgd_1182040000_building_446324,0.004817439790122472,446324,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1182040000_4_residential,BranchTee_mvgd_33532_lvgd_1182040000_building_446325,0.0015105768439500292,446325,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1184350000_1_residential,BranchTee_mvgd_33532_lvgd_1184350000_building_445053,0.004081617464083677,445053,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1184350000_2_residential,BranchTee_mvgd_33532_lvgd_1184350000_building_445054,0.00151654886052673,445054,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1184830000_1_residential,BranchTee_mvgd_33532_lvgd_1184830000_building_444439,0.0054985448652734555,444439,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_1_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422706,0.0022294987078471207,422706,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_2_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422707,0.00266332466897658,422707,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_3_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422708,0.006462092015332345,422708,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_4_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422709,0.0024534070402254284,422709,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_5_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422710,0.0026429468039416123,422710,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_6_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422713,0.002517667069747404,422713,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_7_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422714,0.005159565100339625,422714,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_8_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422715,0.0030826354106767147,422715,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_9_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422716,0.002527947424516965,422716,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_10_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422717,0.006475213432799922,422717,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_11_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422719,0.0027351288420795444,422719,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_12_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422720,0.0033112948593585776,422720,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_13_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422721,0.0030417231781074594,422721,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_14_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422723,0.0015094056577546378,422723,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_15_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422725,0.003003598032951803,422725,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_16_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422726,0.0029298871635576426,422726,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_17_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422727,0.0026386595135271247,422727,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_18_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422728,0.0030449944935511263,422728,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_19_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422729,0.0025711261025218885,422729,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_20_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422730,0.003036535094429571,422730,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_21_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422734,0.0026293398671692193,422734,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_22_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422740,0.0023718098394423645,422740,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_23_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422743,0.003151642682678004,422743,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_24_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422747,0.0015333386604226298,422747,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_25_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422756,0.005599861897480493,422756,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_26_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422765,0.0056404921156450365,422765,,residential,5.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_27_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422768,0.0028580148111480444,422768,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_28_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422771,0.006793707382129948,422771,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_29_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_422774,0.0035354808158074577,422774,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_30_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_444323,0.004913732730544473,444323,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_31_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_444345,0.0029846777588510773,444345,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185800000_32_residential,BranchTee_mvgd_33532_lvgd_1185800000_building_444348,0.005264448633397461,444348,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_1_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444349,0.002759271547766425,444349,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_2_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444350,0.005001809031497325,444350,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_3_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444352,0.002699636347877763,444352,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_4_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444353,0.002869505090355403,444353,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_5_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444356,0.0041348358032453495,444356,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_6_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444358,0.0026446001521274773,444358,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_7_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444359,0.002395874035624636,444359,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_8_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444360,0.0029346690122001723,444360,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_9_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444361,0.06122452977163764,444361,,residential,56.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_10_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444362,0.017843094772944025,444362,,residential,16.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_11_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444363,0.0029229793601719006,444363,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_12_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444367,0.006170396665588519,444367,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_13_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444368,0.0026681775377301875,444368,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_14_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444371,0.0025625455818290787,444371,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_15_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444374,0.0025867254762286687,444374,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_16_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444375,0.004401746425498161,444375,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_17_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444378,0.0025523933215144054,444378,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_18_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444380,0.0087902257777373,444380,,residential,6.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_19_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444410,0.002438492816899326,444410,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1185810000_20_residential,BranchTee_mvgd_33532_lvgd_1185810000_building_444411,0.002628743039981226,444411,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1186310000_1_residential,BranchTee_mvgd_33532_lvgd_1186310000_building_446604,0.00265116344341076,446604,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1186310000_2_residential,BranchTee_mvgd_33532_lvgd_1186310000_building_446610,0.0014963841849524662,446610,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1186310000_3_residential,BranchTee_mvgd_33532_lvgd_1186310000_building_446612,0.0025776395505999424,446612,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1191970000_1_residential,BranchTee_mvgd_33532_lvgd_1191970000_building_444419,0.005236379935970261,444419,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1193200000_1_residential,BranchTee_mvgd_33532_lvgd_1193200000_building_422741,0.005461833924220547,422741,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_1_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444390,0.0045553967571553815,444390,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_2_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444398,0.002376399804657513,444398,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_3_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444403,0.002458025929994906,444403,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_4_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444416,0.016289937111196865,444416,,residential,12.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_5_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444417,0.002686986503947735,444417,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_6_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444418,0.01595758468477376,444418,,residential,10.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_7_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444420,0.002971753906419768,444420,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_8_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444423,0.0030018194311154933,444423,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_9_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444424,0.0027980250272138982,444424,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_10_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444425,0.002329010021448166,444425,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_11_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444426,0.002434748636643364,444426,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_12_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444428,0.002411417626262352,444428,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_13_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444429,0.0024007372345762174,444429,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_14_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444437,0.0015604373522599962,444437,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_15_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444442,0.0030414907486530267,444442,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_16_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444446,0.0025459594159607567,444446,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_17_residential,BranchTee_mvgd_33532_lvgd_1195310000_building_444450,0.0016386441820677347,444450,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1195310000_18_cts,BranchTee_mvgd_33532_lvgd_1195310000_building_34967312,0.012282895658831006,34967312,,cts,0.0,conventional_load -Load_mvgd_33532_lvgd_1195590000_1_residential,BranchTee_mvgd_33532_lvgd_1195590000_building_422770,0.005714601472426075,422770,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1196020000_1_residential,BranchTee_mvgd_33532_lvgd_1196020000_building_445119,0.002390464627455138,445119,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1196020000_2_residential,BranchTee_mvgd_33532_lvgd_1196020000_building_445122,0.0031865264699641213,445122,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1197240000_1_residential,BranchTee_mvgd_33532_lvgd_1197240000_building_448110,0.005194457410039072,448110,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_1_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445202,0.002574136063956793,445202,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_2_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_422862,0.004484683969468453,422862,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_3_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445118,0.002981074069287572,445118,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_4_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445120,0.003607525424268285,445120,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_5_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445123,0.0015023652404523946,445123,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_6_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445129,0.002776407796676905,445129,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_7_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445132,0.0042416632213070895,445132,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_8_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445133,0.002700763114221863,445133,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_9_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445134,0.002477474593722043,445134,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_10_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445136,0.002388471932265801,445136,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_11_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445137,0.0015608198278400127,445137,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_12_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445139,0.002818356664612929,445139,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_13_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445141,0.002856703909025044,445141,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_14_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445142,0.002766416170940739,445142,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_15_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445146,0.002594474157729559,445146,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_16_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445147,0.0016590574280307667,445147,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_17_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445148,0.002909586258497586,445148,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_18_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445150,0.003941581300337431,445150,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_19_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445153,0.0024427486002099904,445153,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_20_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445154,0.0043674987201523414,445154,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_21_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445158,0.002457689165540928,445158,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_22_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445164,0.004801924349274238,445164,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_23_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445165,0.0025531799660901858,445165,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_24_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445167,0.002412771140451999,445167,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_25_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445174,0.0025485083923110366,445174,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_26_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445175,0.002479638511942811,445175,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_27_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445177,0.0030378075165651158,445177,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_28_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445184,0.002754510876029743,445184,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_29_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445185,0.0029306193163391053,445185,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_30_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445186,0.0026813537052470314,445186,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_31_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445193,0.002892236690998927,445193,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1197330000_32_residential,BranchTee_mvgd_33532_lvgd_1197330000_building_445194,0.00247621766688346,445194,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1198480000_1_residential,BranchTee_mvgd_33532_lvgd_1198480000_building_422867,0.0024682507599503526,422867,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1198480000_2_residential,BranchTee_mvgd_33532_lvgd_1198480000_building_422873,0.004355104548622189,422873,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1198880000_1_residential,BranchTee_mvgd_33532_lvgd_1198880000_building_448117,0.002575539421351668,448117,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1198880000_2_residential,BranchTee_mvgd_33532_lvgd_1198880000_building_448118,0.004505552518907225,448118,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1198880000_3_residential,BranchTee_mvgd_33532_lvgd_1198880000_building_448126,0.003221779820082786,448126,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1198880000_4_residential,BranchTee_mvgd_33532_lvgd_1198880000_building_448128,0.0028024236255115636,448128,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1198880000_5_residential,BranchTee_mvgd_33532_lvgd_1198880000_building_448135,0.002611387532618732,448135,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1199280000_1_residential,BranchTee_mvgd_33532_lvgd_1199280000_building_34328667,0.0015486975987715468,34328667,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1199280000_2_residential,BranchTee_mvgd_33532_lvgd_1199280000_building_34328668,0.002796152420576018,34328668,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1199280000_3_residential,BranchTee_mvgd_33532_lvgd_1199280000_building_34328669,0.0028571597290106814,34328669,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1200480000_1_residential,BranchTee_mvgd_33532_lvgd_1200480000_building_422872,0.0059231222001560856,422872,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1200490000_1_residential,BranchTee_mvgd_33532_lvgd_1200490000_building_422893,0.00398754422495151,422893,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1200490000_2_residential,BranchTee_mvgd_33532_lvgd_1200490000_building_445205,0.002497103777658788,445205,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1200510000_1_residential,BranchTee_mvgd_33532_lvgd_1200510000_building_422885,0.006278340519796386,422885,,residential,4.0,conventional_load -Load_mvgd_33532_lvgd_1200510000_2_residential,BranchTee_mvgd_33532_lvgd_1200510000_building_422894,0.0015108743536517033,422894,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1200510000_3_residential,BranchTee_mvgd_33532_lvgd_1200510000_building_422898,0.004468657700330366,422898,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1200510000_4_residential,BranchTee_mvgd_33532_lvgd_1200510000_building_422905,0.003608177001505545,422905,,residential,3.0,conventional_load -Load_mvgd_33532_lvgd_1201300000_1_residential,BranchTee_mvgd_33532_lvgd_1201300000_building_448132,0.0031174763276412363,448132,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1201300000_2_residential,BranchTee_mvgd_33532_lvgd_1201300000_building_448137,0.003283015942402591,448137,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1201300000_3_residential,BranchTee_mvgd_33532_lvgd_1201300000_building_448139,0.003263494450779733,448139,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1201300000_4_residential,BranchTee_mvgd_33532_lvgd_1201300000_building_448141,0.002615415793319001,448141,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1201300000_5_residential,BranchTee_mvgd_33532_lvgd_1201300000_building_448142,0.004556324408933519,448142,,residential,2.0,conventional_load -Load_mvgd_33532_lvgd_1201300000_6_residential,BranchTee_mvgd_33532_lvgd_1201300000_building_448153,0.002508210548266332,448153,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1201300000_7_residential,BranchTee_mvgd_33532_lvgd_1201300000_building_448154,0.002459477064555415,448154,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1201300000_8_residential,BranchTee_mvgd_33532_lvgd_1201300000_building_448156,0.00302516051343953,448156,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1202400000_1_residential,BranchTee_mvgd_33532_lvgd_1202400000_building_448097,0.002522986863449471,448097,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1202400000_2_residential,BranchTee_mvgd_33532_lvgd_1202400000_building_448102,0.0028259581407926782,448102,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1202400000_3_residential,BranchTee_mvgd_33532_lvgd_1202400000_building_448103,0.0029648918141600643,448103,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1202400000_4_residential,BranchTee_mvgd_33532_lvgd_1202400000_building_448107,0.0025043736544835458,448107,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1202400000_5_residential,BranchTee_mvgd_33532_lvgd_1202400000_building_34328715,0.0025957553605333813,34328715,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1202400000_6_residential,BranchTee_mvgd_33532_lvgd_1202400000_building_34328716,0.0014428295978467145,34328716,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1203710000_1_residential,BranchTee_mvgd_33532_lvgd_1203710000_building_34328646,0.0029302159221081896,34328646,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1203710000_2_residential,BranchTee_mvgd_33532_lvgd_1203710000_building_34328647,0.0027120225135044847,34328647,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1203710000_3_residential,BranchTee_mvgd_33532_lvgd_1203710000_building_34328648,0.002490705511288153,34328648,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1205070000_1_residential,BranchTee_mvgd_33532_lvgd_1205070000_building_34328494,0.0028894384986225055,34328494,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1205070000_2_residential,BranchTee_mvgd_33532_lvgd_1205070000_building_34328495,0.0014758197307165781,34328495,,residential,1.0,conventional_load -Load_mvgd_33532_lvgd_1205070000_3_residential,BranchTee_mvgd_33532_lvgd_1205070000_building_34328496,0.0026243617447651688,34328496,,residential,1.0,conventional_load +Load_mvgd_33535_1_industrial,Bus_mvgd_33535_mvload_1,0.41663086091833246,541658,,industrial,0.0,conventional_load +Load_mvgd_33535_lvgd_1141170000_1_residential,BranchTee_mvgd_33535_lvgd_1141170000_building_444312,0.005516376853017537,444312,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_1_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430853,0.0030571918748098586,430853,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_2_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430859,0.0030436915973315556,430859,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_3_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430861,0.0028946056636494958,430861,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_4_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430881,0.002634217528397966,430881,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_5_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430882,0.0015041695386561664,430882,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_6_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430885,0.0014636047881212884,430885,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_7_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430890,0.003387752011884336,430890,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_8_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430891,0.005323468153486824,430891,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_9_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430893,0.0048711583691210735,430893,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_10_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430894,0.002596017231052042,430894,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_11_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430895,0.002905929884924409,430895,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_12_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430896,0.004724119880677617,430896,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_13_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430898,0.0024089523245156693,430898,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_14_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430899,0.003539122985358419,430899,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_15_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430900,0.004038665017414401,430900,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_16_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430901,0.004763246022017031,430901,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_17_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430903,0.001575580002088816,430903,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_18_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430904,0.0024605392671621725,430904,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_19_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430905,0.0014769053053962538,430905,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_20_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430906,0.003468561535071822,430906,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_21_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430907,0.0026704158333763746,430907,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_22_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430908,0.0028247626786320453,430908,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_23_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_430909,0.002730046126420999,430909,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_24_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431068,0.0024638222040785605,431068,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_25_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431069,0.0026410026606827567,431069,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_26_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431071,0.0026768254629647823,431071,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_27_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431072,0.0029214489413419355,431072,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_28_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431074,0.002631837450784574,431074,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_29_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431075,0.005232021108934799,431075,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_30_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431076,0.0028610988917534184,431076,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_31_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431077,0.002476726170878769,431077,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_32_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431078,0.0026179952437533054,431078,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_33_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431079,0.0015153761248016418,431079,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_34_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431085,0.002747874498595789,431085,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_35_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431090,0.0024753279785828817,431090,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_36_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431091,0.002624645566954526,431091,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_37_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431092,0.003266858996260122,431092,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_38_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431094,0.00273500772050829,431094,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_39_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431095,0.0024131192681237494,431095,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_40_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431100,0.0022256563907103975,431100,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_41_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431101,0.0020336386707550114,431101,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_42_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431102,0.002752105231176364,431102,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_43_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431104,0.0024782026144243153,431104,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_44_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431105,0.002704174920357986,431105,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150630000_45_residential,BranchTee_mvgd_33535_lvgd_1150630000_building_431106,0.002414495250493992,431106,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_1_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430863,0.0024376010625591525,430863,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_2_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430864,0.002558815605595332,430864,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_3_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430865,0.0022959580365179283,430865,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_4_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430870,0.0026601708595348776,430870,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_5_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430871,0.0034391147892347865,430871,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_6_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430873,0.0030624592427572037,430873,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_7_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430874,0.0029176014591062254,430874,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_8_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430876,0.002714419635944535,430876,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1150640000_9_residential,BranchTee_mvgd_33535_lvgd_1150640000_building_430877,0.002468009549827642,430877,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_1_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430941,0.0028720631056289104,430941,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_2_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430956,0.004155026691696973,430956,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_3_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430957,0.003740733843663094,430957,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_4_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430958,0.0056913337345076585,430958,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_5_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430959,0.005642206928508852,430959,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_6_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430960,0.004721444875912046,430960,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_7_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430961,0.0025215460590869375,430961,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_8_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430962,0.0026640405516962337,430962,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_9_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430963,0.003168199407482098,430963,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_10_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430964,0.002405531737711267,430964,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_11_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430970,0.004823052703192074,430970,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_12_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431158,0.0034442297867620037,431158,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_13_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431159,0.0024911158784027016,431159,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_14_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431160,0.003536879266358295,431160,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_15_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431161,0.0015391559822846579,431161,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_16_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431162,0.002616981851331979,431162,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_17_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431163,0.004194958330223471,431163,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_18_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431164,0.004195855507917581,431164,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_19_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431165,0.0026321029368725265,431165,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_20_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431166,0.0027615855121127775,431166,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_21_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431168,0.0034410390468625402,431168,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_22_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431169,0.0032662154249262928,431169,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_23_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431170,0.0030680664742179196,431170,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_24_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431171,0.002900342539094795,431171,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_25_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431172,0.004384026520402106,431172,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_26_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431173,0.0027794601119235053,431173,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_27_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431181,0.0023520411978329592,431181,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_28_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431182,0.0032776377830819664,431182,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_29_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431183,0.0013940620244824804,431183,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_30_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431184,0.003058283518480845,431184,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_31_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431186,0.0029934852856443824,431186,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_32_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431187,0.00485524521565081,431187,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_33_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431189,0.0071729397964923405,431189,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_34_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431190,0.004460766462097424,431190,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_35_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431195,0.004419702892127839,431195,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_36_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431199,0.004096988540415214,431199,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_37_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431201,0.002574028629897855,431201,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_38_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431208,0.0075451972611821575,431208,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_39_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431210,0.0015634629381193375,431210,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_40_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431215,0.003269673458698353,431215,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_41_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431219,0.005098699573872166,431219,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_42_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431221,0.002504927611349944,431221,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_43_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431228,0.002605653239722926,431228,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_44_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431253,0.004301133138028154,431253,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_45_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431258,0.0014805131270389492,431258,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_46_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430968,0.002547643496485597,430968,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_47_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430969,0.0027270131802956004,430969,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_48_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_430972,0.002473315397762443,430972,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_49_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431185,0.0026790175309750327,431185,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_50_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431194,0.002782581639496537,431194,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_51_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431203,0.003202346651652612,431203,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1151050000_52_residential,BranchTee_mvgd_33535_lvgd_1151050000_building_431239,0.005755765245316016,431239,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152000000_1_residential,BranchTee_mvgd_33535_lvgd_1152000000_building_440560,0.003069552473196593,440560,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152000000_2_residential,BranchTee_mvgd_33535_lvgd_1152000000_building_440574,0.002671941603617251,440574,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152000000_3_residential,BranchTee_mvgd_33535_lvgd_1152000000_building_440577,0.0026678131399966265,440577,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152000000_4_residential,BranchTee_mvgd_33535_lvgd_1152000000_building_440579,0.003167722410590612,440579,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152000000_5_residential,BranchTee_mvgd_33535_lvgd_1152000000_building_440580,0.002680422954409503,440580,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152000000_6_residential,BranchTee_mvgd_33535_lvgd_1152000000_building_440581,0.0016048005165902042,440581,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152000000_7_residential,BranchTee_mvgd_33535_lvgd_1152000000_building_440564,0.004797769027138878,440564,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152000000_8_residential,BranchTee_mvgd_33535_lvgd_1152000000_building_441458,0.004450247738009594,441458,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152010000_1_residential,BranchTee_mvgd_33535_lvgd_1152010000_building_440624,0.004391295364207066,440624,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152010000_2_residential,BranchTee_mvgd_33535_lvgd_1152010000_building_440630,0.0071347728140348865,440630,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152030000_1_residential,BranchTee_mvgd_33535_lvgd_1152030000_building_440586,0.001418341217910103,440586,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152030000_2_residential,BranchTee_mvgd_33535_lvgd_1152030000_building_440587,0.003988709987792965,440587,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_1_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441544,0.00405172832751837,441544,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_2_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441547,0.0027078628010349863,441547,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_3_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441549,0.002508210548266332,441549,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_4_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441550,0.0027944577515982543,441550,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_5_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441556,0.0028446010490777805,441556,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_6_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441560,0.0027270131802956004,441560,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_7_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441565,0.0027709196207478482,441565,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_8_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441566,0.0027774423660040797,441566,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_9_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441569,0.004578030220918145,441569,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_10_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441570,0.0025363249568195697,441570,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_11_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441571,0.002304045290257442,441571,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152040000_12_residential,BranchTee_mvgd_33535_lvgd_1152040000_building_441578,0.002671746621130477,441578,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_1_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441469,0.005215946804376127,441469,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_2_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441471,0.0014590252822315897,441471,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_3_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441472,0.0026036416919222854,441472,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_4_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441475,0.0024564606467467765,441475,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_5_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441483,0.003397505268302233,441483,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_6_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441488,0.0032950415841199927,441488,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_7_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441466,0.002733755184003847,441466,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_8_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441477,0.0022941716870331385,441477,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152050000_9_residential,BranchTee_mvgd_33535_lvgd_1152050000_building_441484,0.004789377290814058,441484,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152060000_1_residential,BranchTee_mvgd_33535_lvgd_1152060000_building_441548,0.003598628024752599,441548,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152060000_2_residential,BranchTee_mvgd_33535_lvgd_1152060000_building_441552,0.0028502847240035097,441552,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152070000_1_residential,BranchTee_mvgd_33535_lvgd_1152070000_building_441492,0.00239958877481637,441492,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152070000_2_residential,BranchTee_mvgd_33535_lvgd_1152070000_building_441495,0.004204297603957529,441495,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152090000_1_residential,BranchTee_mvgd_33535_lvgd_1152090000_building_441498,0.002590995721816497,441498,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152090000_2_residential,BranchTee_mvgd_33535_lvgd_1152090000_building_441505,0.0046795900127775914,441505,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152090000_3_residential,BranchTee_mvgd_33535_lvgd_1152090000_building_441512,0.003684023381076044,441512,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152090000_4_residential,BranchTee_mvgd_33535_lvgd_1152090000_building_441516,0.002720350977366709,441516,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152090000_5_residential,BranchTee_mvgd_33535_lvgd_1152090000_building_441518,0.0023380507524607525,441518,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152090000_6_residential,BranchTee_mvgd_33535_lvgd_1152090000_building_441519,0.0027383384345903115,441519,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152090000_7_residential,BranchTee_mvgd_33535_lvgd_1152090000_building_441520,0.0026623804888816845,441520,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_1_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441584,0.0024701050304868277,441584,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_2_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441585,0.0025385691923295924,441585,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_3_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441807,0.0026828805085077046,441807,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_4_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441809,0.001716971487809354,441809,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_5_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441813,0.0023766407565252745,441813,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_6_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441822,0.004230585116998925,441822,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_7_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441823,0.005754764765642157,441823,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_8_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441824,0.0025737052947012442,441824,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_9_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441846,0.002469062971766121,441846,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_10_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441847,0.0028182104923115863,441847,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_11_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441855,0.0025721273569605948,441855,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_12_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441864,0.002896153127306119,441864,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_13_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441553,0.0024680281441839965,441553,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_14_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441557,0.001610860081594741,441557,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_15_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441573,0.0025487126719759877,441573,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_16_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441575,0.0047656049227245735,441575,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_17_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441828,0.0036997802903019393,441828,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_18_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_441831,0.003247962223359789,441831,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_19_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_34328721,0.0029603245753804606,34328721,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_20_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_34328722,0.00299374457361355,34328722,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152120000_21_residential,BranchTee_mvgd_33535_lvgd_1152120000_building_34328723,0.002668357283174949,34328723,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152130000_1_residential,BranchTee_mvgd_33535_lvgd_1152130000_building_441580,0.0025010814203889806,441580,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152130000_2_residential,BranchTee_mvgd_33535_lvgd_1152130000_building_441597,0.004536221843674577,441597,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152140000_1_residential,BranchTee_mvgd_33535_lvgd_1152140000_building_441836,0.002667289140704355,441836,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152140000_2_residential,BranchTee_mvgd_33535_lvgd_1152140000_building_441838,0.0015311153435635058,441838,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152140000_3_residential,BranchTee_mvgd_33535_lvgd_1152140000_building_441842,0.002889509518733583,441842,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152380000_1_residential,BranchTee_mvgd_33535_lvgd_1152380000_building_431235,0.003567314870396468,431235,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152380000_2_residential,BranchTee_mvgd_33535_lvgd_1152380000_building_431479,0.002744194107312321,431479,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152390000_1_residential,BranchTee_mvgd_33535_lvgd_1152390000_building_431374,0.005967847825307734,431374,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152390000_2_residential,BranchTee_mvgd_33535_lvgd_1152390000_building_431380,0.005085796640091756,431380,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152400000_1_residential,BranchTee_mvgd_33535_lvgd_1152400000_building_431468,0.004555092532825024,431468,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152400000_2_residential,BranchTee_mvgd_33535_lvgd_1152400000_building_431474,0.002781690401666262,431474,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1152400000_3_residential,BranchTee_mvgd_33535_lvgd_1152400000_building_431485,0.006409570706279021,431485,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152400000_4_residential,BranchTee_mvgd_33535_lvgd_1152400000_building_431497,0.004945458318054747,431497,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1152400000_5_residential,BranchTee_mvgd_33535_lvgd_1152400000_building_431498,0.004791364304394509,431498,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1152400000_6_residential,BranchTee_mvgd_33535_lvgd_1152400000_building_431502,0.0023891268668174027,431502,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1153210000_1_residential,BranchTee_mvgd_33535_lvgd_1153210000_building_431287,0.004423174871667166,431287,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1155260000_1_residential,BranchTee_mvgd_33535_lvgd_1155260000_building_431482,0.00245997885392204,431482,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1155260000_2_residential,BranchTee_mvgd_33535_lvgd_1155260000_building_431492,0.003391305083477765,431492,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1155260000_3_residential,BranchTee_mvgd_33535_lvgd_1155260000_building_431494,0.0025226330541688346,431494,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1155270000_1_residential,BranchTee_mvgd_33535_lvgd_1155270000_building_431490,0.0015955976014694138,431490,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1155270000_2_residential,BranchTee_mvgd_33535_lvgd_1155270000_building_431509,0.003271181925857622,431509,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1155780000_1_residential,BranchTee_mvgd_33535_lvgd_1155780000_building_431366,0.00439499822367113,431366,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1155780000_2_residential,BranchTee_mvgd_33535_lvgd_1155780000_building_431370,0.0016104685670914965,431370,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1155780000_3_residential,BranchTee_mvgd_33535_lvgd_1155780000_building_431375,0.005624310893537326,431375,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1156440000_1_residential,BranchTee_mvgd_33535_lvgd_1156440000_building_431323,0.0015239327569116347,431323,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156440000_2_residential,BranchTee_mvgd_33535_lvgd_1156440000_building_431327,0.0033056674840118106,431327,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156440000_3_residential,BranchTee_mvgd_33535_lvgd_1156440000_building_431335,0.002511596528907519,431335,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156440000_4_residential,BranchTee_mvgd_33535_lvgd_1156440000_building_431338,0.0015817914210035822,431338,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156440000_5_residential,BranchTee_mvgd_33535_lvgd_1156440000_building_431340,0.004332603569648452,431340,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_1_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431336,0.0033624626542222537,431336,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_2_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431339,0.003255843389649705,431339,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_3_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431342,0.00236852147917204,431342,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_4_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431347,0.003650920261665831,431347,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_5_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431348,0.001702580876393099,431348,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_6_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431351,0.0024915959743535797,431351,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_7_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431352,0.0023293033990706502,431352,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_8_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431357,0.004685239081540104,431357,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_9_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431361,0.002777470515793561,431361,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_10_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431364,0.004371784719292081,431364,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1156450000_11_residential,BranchTee_mvgd_33535_lvgd_1156450000_building_431381,0.004971220282274176,431381,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1156570000_1_residential,BranchTee_mvgd_33535_lvgd_1156570000_building_431540,0.005296351383803002,431540,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1157260000_1_residential,BranchTee_mvgd_33535_lvgd_1157260000_building_431530,0.005629430539653631,431530,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1157260000_2_residential,BranchTee_mvgd_33535_lvgd_1157260000_building_431535,0.0033510400378116306,431535,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1157260000_3_residential,BranchTee_mvgd_33535_lvgd_1157260000_building_431538,0.002438623752158657,431538,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1157730000_1_residential,BranchTee_mvgd_33535_lvgd_1157730000_building_431515,0.005088115253027197,431515,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1157730000_2_residential,BranchTee_mvgd_33535_lvgd_1157730000_building_431523,0.004172950101693131,431523,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1157730000_3_residential,BranchTee_mvgd_33535_lvgd_1157730000_building_431525,0.002423099788897093,431525,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1157740000_1_residential,BranchTee_mvgd_33535_lvgd_1157740000_building_431550,0.0057874350497572275,431550,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1157740000_2_residential,BranchTee_mvgd_33535_lvgd_1157740000_building_431558,0.0026759858761243815,431558,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1157740000_3_residential,BranchTee_mvgd_33535_lvgd_1157740000_building_431560,0.005570943024759969,431560,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1157740000_4_residential,BranchTee_mvgd_33535_lvgd_1157740000_building_431562,0.003460500106827246,431562,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1159300000_1_residential,BranchTee_mvgd_33535_lvgd_1159300000_building_448089,0.002930730107712385,448089,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1159300000_2_residential,BranchTee_mvgd_33535_lvgd_1159300000_building_448093,0.0014516227914903302,448093,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1159870000_1_residential,BranchTee_mvgd_33535_lvgd_1159870000_building_422766,0.006180776965023485,422766,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1159900000_1_residential,BranchTee_mvgd_33535_lvgd_1159900000_building_441521,0.005161438481742354,441521,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1160850000_1_residential,BranchTee_mvgd_33535_lvgd_1160850000_building_431431,0.0026504607316935247,431431,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1160850000_2_residential,BranchTee_mvgd_33535_lvgd_1160850000_building_431457,0.0019556357332298005,431457,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1160850000_3_residential,BranchTee_mvgd_33535_lvgd_1160850000_building_431462,0.0028698878241903685,431462,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1160950000_1_residential,BranchTee_mvgd_33535_lvgd_1160950000_building_431392,0.003224371666754661,431392,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1160950000_2_residential,BranchTee_mvgd_33535_lvgd_1160950000_building_431395,0.0030953379386164143,431395,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1160950000_3_residential,BranchTee_mvgd_33535_lvgd_1160950000_building_431403,0.003887916438368298,431403,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1161320000_1_residential,BranchTee_mvgd_33535_lvgd_1161320000_building_431035,0.0052450707315264515,431035,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161950000_1_residential,BranchTee_mvgd_33535_lvgd_1161950000_building_431567,0.005156677810005671,431567,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_1_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431566,0.002600386904795378,431566,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_2_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431569,0.002828574521684743,431569,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_3_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431573,0.0024142806406310655,431573,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_4_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431576,0.005094922853492583,431576,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_5_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431577,0.006532707182648411,431577,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_6_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431578,0.004671930170979286,431578,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_7_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431580,0.0025467535499300695,431580,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_8_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431584,0.0021273672686572443,431584,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_9_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431586,0.0022012680845666668,431586,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_10_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431587,0.00573704176148671,431587,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_11_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431590,0.001650974435497918,431590,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_12_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431591,0.0023735664896079776,431591,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_13_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431592,0.0023067386311244192,431592,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_14_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431600,0.00603561908912134,431600,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_15_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431602,0.0014528478238426655,431602,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_16_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431723,0.005102083746728707,431723,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_17_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431726,0.004856664584852545,431726,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_18_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_431729,0.002363394343662202,431729,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_19_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_441499,0.005188267038902679,441499,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_20_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_441502,0.0024942774354928857,441502,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_21_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_441509,0.005005905471504228,441509,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_22_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_441513,0.0025877737330681602,441513,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1161990000_23_residential,BranchTee_mvgd_33535_lvgd_1161990000_building_441514,0.0026485137476302263,441514,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163060000_1_residential,BranchTee_mvgd_33535_lvgd_1163060000_building_430839,0.004726473099776275,430839,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1163060000_2_residential,BranchTee_mvgd_33535_lvgd_1163060000_building_430840,0.0023863937546882226,430840,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_1_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431646,0.0028714528491835495,431646,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_2_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431651,0.00256559376499649,431651,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_3_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431654,0.0024262585051828336,431654,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_4_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431656,0.0023762334884701187,431656,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_5_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431658,0.0031044925600616727,431658,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_6_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431661,0.00251870112256468,431661,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_7_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431664,0.0026421890839201617,431664,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_8_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431670,0.0042374606385159955,431670,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1163320000_9_residential,BranchTee_mvgd_33535_lvgd_1163320000_building_431689,0.007046201180089143,431689,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_1_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431712,0.001493340521246669,431712,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_2_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431714,0.002804205326407265,431714,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_3_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431717,0.0024284508314480337,431717,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_4_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431718,0.0017670867646268741,431718,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_5_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431719,0.0028397453395197308,431719,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_6_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431720,0.002567284818404963,431720,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_7_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431721,0.0030460956926552383,431721,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_8_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431725,0.0030198520829552355,431725,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_9_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431731,0.0025581839139891737,431731,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_10_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431733,0.004508940307333057,431733,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_11_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431739,0.002517677658200328,431739,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163330000_12_residential,BranchTee_mvgd_33535_lvgd_1163330000_building_431758,0.002864290922927628,431758,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163360000_1_residential,BranchTee_mvgd_33535_lvgd_1163360000_building_431694,0.0026977030513267806,431694,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163360000_2_residential,BranchTee_mvgd_33535_lvgd_1163360000_building_431695,0.004709612150641823,431695,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1163360000_3_residential,BranchTee_mvgd_33535_lvgd_1163360000_building_431696,0.004693692282542875,431696,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1163360000_4_residential,BranchTee_mvgd_33535_lvgd_1163360000_building_431698,0.002844456684561083,431698,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163360000_5_residential,BranchTee_mvgd_33535_lvgd_1163360000_building_431701,0.0028921579232393693,431701,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163360000_6_residential,BranchTee_mvgd_33535_lvgd_1163360000_building_431703,0.0026924793284658793,431703,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163360000_7_residential,BranchTee_mvgd_33535_lvgd_1163360000_building_431704,0.002448200878701084,431704,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1163360000_8_residential,BranchTee_mvgd_33535_lvgd_1163360000_building_431706,0.0027137207980515404,431706,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_1_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431855,0.013599985582175416,431855,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_2_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431860,0.013174177920713986,431860,,residential,11.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_3_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431865,0.011306691961970134,431865,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_4_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431868,0.010450292724365153,431868,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_5_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444927,0.024673153088727456,444927,,residential,19.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_6_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431776,0.002526898909422524,431776,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_7_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431790,0.0025226113607530872,431790,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_8_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431801,0.002460953766355911,431801,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_9_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431803,0.0024234546311975268,431803,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_10_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431804,0.002371403862661955,431804,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_11_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431810,0.002560453458484235,431810,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_12_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431818,0.002841108409142504,431818,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_13_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431820,0.002465345391769943,431820,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_14_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431821,0.004068402816579377,431821,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_15_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431822,0.004768385295509488,431822,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_16_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431827,0.003281341933820777,431827,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_17_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431829,0.0026609241892221885,431829,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_18_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431830,0.002684130720717604,431830,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_19_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431834,0.002934660231531894,431834,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_20_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431841,0.0026949198377374233,431841,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_21_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431849,0.0015911318568849122,431849,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_22_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431851,0.00260571728695037,431851,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_23_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_431866,0.0026922784061152697,431866,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_24_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444859,0.002677853059408324,444859,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_25_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444862,0.0024362201733448725,444862,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_26_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444864,0.003177260024125786,444864,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_27_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444870,0.00352338389572403,444870,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_28_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444872,0.004227769621540896,444872,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_29_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444876,0.0050874029858768354,444876,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_30_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444878,0.0017347067590748966,444878,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_31_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444879,0.0025947688266267895,444879,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_32_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444880,0.00331591994724684,444880,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_33_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444881,0.0028465059375843314,444881,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_34_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444885,0.004389733954783177,444885,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_35_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444887,0.004941136163222094,444887,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_36_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444888,0.0036473615084635157,444888,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_37_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444889,0.003333959055460316,444889,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_38_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444891,0.002842923424926675,444891,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_39_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444892,0.004004666528094723,444892,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_40_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444894,0.0015653174669107615,444894,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_41_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444896,0.004825678123007367,444896,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_42_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444897,0.0028637674401452554,444897,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_43_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444898,0.002561318870819573,444898,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_44_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444899,0.0031696143863496947,444899,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_45_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444901,0.0027749969498884973,444901,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_46_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444907,0.0037538958071577223,444907,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_47_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444910,0.0024957288283083434,444910,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_48_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444912,0.002441821206686804,444912,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_49_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444913,0.0024686799796762053,444913,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_50_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444916,0.005729117466620249,444916,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_51_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444918,0.004201390427992474,444918,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_52_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444919,0.001723798328268468,444919,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_53_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444923,0.0024769596333529993,444923,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_54_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444930,0.0034387356709691115,444930,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_55_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444932,0.005386327408163419,444932,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_56_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444935,0.002441103257927555,444935,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_57_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444941,0.001542101638237169,444941,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_58_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444944,0.003363292685629528,444944,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_59_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444956,0.004916152062910169,444956,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_60_residential,BranchTee_mvgd_33535_lvgd_1164120000_building_444960,0.005065980221316717,444960,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_61_cts,BranchTee_mvgd_33535_lvgd_1164120000_building_431838,0.04326222693901225,431838,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_62_cts,BranchTee_mvgd_33535_lvgd_1164120000_building_431842,0.04326222693901225,431842,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_63_cts,BranchTee_mvgd_33535_lvgd_1164120000_building_34999666,0.0277919940247087,34999666,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120000_64_cts,BranchTee_mvgd_33535_lvgd_1164120000_building_34999667,0.0277919940247087,34999667,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_1_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_431815,0.0038365317093471516,431815,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_2_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_431861,0.002503747644486274,431861,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_3_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444946,0.008482647232097336,444946,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_4_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444950,0.004749504792670966,444950,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_5_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_445420,0.006502179381593314,445420,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_6_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_445448,0.0026768068686084273,445448,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_7_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444922,0.002908804262510894,444922,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_8_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444924,0.002867521692344243,444924,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_9_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444929,0.0029094212335849384,444929,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_10_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444933,0.0036865196734166515,444933,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_11_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444934,0.003622676467382959,444934,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_12_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444936,0.006567650110317934,444936,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_13_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444937,0.0028644618877041107,444937,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_14_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444938,0.0016995971278355557,444938,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_15_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444940,0.0015814011977750846,444940,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_16_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444943,0.0033630881477096277,444943,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_17_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444945,0.007076117433424133,444945,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_18_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_444947,0.002576407674491449,444947,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_19_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_445438,0.0026709925166783174,445438,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_20_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_445447,0.0025478451936010553,445447,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_21_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_445450,0.0039026199256557152,445450,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_22_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_445469,0.004095298520026538,445469,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_23_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_445475,0.0021784858659530657,445475,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_24_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_34328673,0.003114714290957727,34328673,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_25_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_34328674,0.0026457927734836665,34328674,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120001_26_residential,BranchTee_mvgd_33535_lvgd_1164120001_building_34328675,0.003200107839496526,34328675,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_1_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_441675,0.0034626818446395215,441675,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_2_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_441679,0.002574442870836644,441679,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_3_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_441853,0.005261052580813248,441853,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_4_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_441854,0.005323765663188498,441854,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_5_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_441856,0.0035257502858251047,441856,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_6_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_441866,0.0016219033214847404,441866,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_7_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_441867,0.0026966906919252518,441867,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_8_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_441869,0.004534134110663872,441869,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_9_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_442028,0.0015698242740322125,442028,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_10_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_442029,0.002542440175765696,442029,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_11_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_442051,0.00146396673243283,442051,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_12_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_442055,0.002716071951110602,442055,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_13_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_442059,0.004490661538526566,442059,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120002_14_residential,BranchTee_mvgd_33535_lvgd_1164120002_building_442064,0.003995195027826588,442064,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_1_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445791,0.0046106044341920486,445791,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_2_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445792,0.004239143427766089,445792,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_3_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445809,0.0034531212464138537,445809,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_4_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445812,0.0027473597964816953,445812,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_5_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445814,0.006326820655401971,445814,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_6_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445816,0.0057697853900074,445816,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_7_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445820,0.002329010021448166,445820,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_8_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445880,0.002712398532710767,445880,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_9_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445886,0.002909649789215131,445886,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_10_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445888,0.002753612665315835,445888,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_11_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445890,0.002698810706804628,445890,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_12_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445912,0.0026684691075680254,445912,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_13_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445920,0.0026735918527437236,445920,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_14_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445926,0.003340892426086045,445926,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_15_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445933,0.002762839339891968,445933,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_16_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445934,0.0027811023551465473,445934,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_17_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445941,0.004479368049590628,445941,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_18_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445944,0.003241249144205872,445944,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_19_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445948,0.0030703644267574114,445948,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_20_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445951,0.0027398394123560486,445951,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_21_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445953,0.00282056500268499,445953,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_22_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445955,0.0029357999106234623,445955,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_23_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445957,0.0031685503759582914,445957,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_24_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445961,0.0023690893818057034,445961,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_25_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_446016,0.005228410704742609,446016,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_26_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_446024,0.0027293560691962824,446024,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_27_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_446030,0.0025672375577492283,446030,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_28_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_446037,0.00239351229411265,446037,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_29_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_446079,0.004576550936568156,446079,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_30_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_446083,0.004396042606686381,446083,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_31_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445712,0.0029380017923217885,445712,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_32_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445719,0.004159463511727145,445719,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_33_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445723,0.007451597919882084,445723,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_34_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445731,0.004326738599748265,445731,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_34_cts,BranchTee_mvgd_33535_lvgd_1164120003_building_445731,0.02468239737869436,445731,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_35_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445766,0.005003376639039999,445766,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_36_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445767,0.006030434362757793,445767,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_37_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445768,0.0031738600977173326,445768,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_38_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445775,0.001627443277531145,445775,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_39_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445778,0.0032513218619961396,445778,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_40_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445779,0.0029474043385184423,445779,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_41_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445785,0.0025508184828331487,445785,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_42_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445786,0.0015433743186276632,445786,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_43_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445787,0.003131724769707863,445787,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_44_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445793,0.002970922067227848,445793,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_45_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445794,0.0026256871091653337,445794,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_46_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445799,0.0015621741167945078,445799,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_47_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445801,0.004976812018437929,445801,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_48_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445804,0.0026707755825208465,445804,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_49_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445817,0.004408871163041373,445817,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_49_cts,BranchTee_mvgd_33535_lvgd_1164120003_building_445817,0.02468239737869436,445817,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_50_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445821,0.007633226043224325,445821,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_51_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445824,0.002435912333445224,445824,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_52_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445829,0.003652577741930886,445829,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_53_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445833,0.007379093875866327,445833,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_54_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445836,0.002479516615606709,445836,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_55_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445839,0.00860097500130946,445839,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_56_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445843,0.0028531327595851586,445843,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_57_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445853,0.0048813981778635844,445853,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_58_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445857,0.009475318309306549,445857,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_59_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445858,0.004909923986551168,445858,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_60_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445859,0.006516032693587404,445859,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_61_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445861,0.006652107742920217,445861,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_62_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445867,0.002528332999156374,445867,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_63_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445868,0.006999837702048591,445868,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_64_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445869,0.0025257148104796635,445869,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_65_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445876,0.0027935915644980674,445876,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_66_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445882,0.007573163173139506,445882,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_67_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445883,0.009135027125739822,445883,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_68_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445884,0.002780164631425386,445884,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_69_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445885,0.004454045118785127,445885,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_69_cts,BranchTee_mvgd_33535_lvgd_1164120003_building_445885,0.015625707200141455,445885,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_70_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445891,0.0071359235980892775,445891,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_71_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445892,0.015074811418719344,445892,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_72_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445893,0.0044792089645418155,445893,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_73_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445895,0.00881497899812449,445895,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_74_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445898,0.004878271743446514,445898,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_74_cts,BranchTee_mvgd_33535_lvgd_1164120003_building_445898,0.015625707200141455,445898,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_75_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445899,0.011011348502811512,445899,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_76_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445900,0.009118665125167551,445900,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_77_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445901,0.01140824813826029,445901,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_78_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445903,0.011030027566789525,445903,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_79_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445907,0.005382831152658851,445907,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_80_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445908,0.006433549678328001,445908,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_81_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445909,0.009962670191242381,445909,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_82_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445911,0.0068173294458388975,445911,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_83_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445913,0.010609433556245973,445913,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_84_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445914,0.0030550233080000014,445914,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_85_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445915,0.010072672337396725,445915,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_86_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445916,0.008569675534465648,445916,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_87_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445919,0.004593651546295621,445919,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_88_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445921,0.011522937095235794,445921,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_89_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445922,0.00944631937755172,445922,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_90_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445924,0.0026104164940091014,445924,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_91_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445925,0.013801607287187963,445925,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_92_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445927,0.013315298755247585,445927,,residential,13.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_93_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445928,0.008446540607625954,445928,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_94_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445929,0.005298688591094798,445929,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_95_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445930,0.0048894423030265526,445930,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_96_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445931,0.009470853597741845,445931,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_97_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445935,0.0032491060345305476,445935,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_98_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445937,0.005571832971315497,445937,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_99_residential,BranchTee_mvgd_33535_lvgd_1164120003_building_445940,0.010244574062835802,445940,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120003_100_cts,BranchTee_mvgd_33535_lvgd_1164120003_building_445960,0.016014407474201096,445960,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_1_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445422,0.004216233114697601,445422,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_2_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445427,0.00291138345469025,445427,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_3_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445428,0.002483065555120948,445428,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_4_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445432,0.0027070136587614584,445432,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_5_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445434,0.0024011607726931844,445434,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_6_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445436,0.0024522043469262134,445436,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_7_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445440,0.002616537652819063,445440,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_8_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445442,0.006809764125352061,445442,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_9_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445443,0.005534600871774761,445443,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_10_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445444,0.002928976040096266,445444,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_11_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445449,0.003202129975750091,445449,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_12_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445451,0.004705245575957881,445451,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_13_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445458,0.006405474782782018,445458,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_14_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445461,0.0025450325389474687,445461,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_15_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445474,0.0066423312435568765,445474,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_16_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445476,0.0028952453611590847,445476,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_17_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445500,0.0029622976431936455,445500,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_18_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445508,0.00485984680233868,445508,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_19_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445513,0.0015671736743593564,445513,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_20_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445516,0.0025714016605528664,445516,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_21_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445525,0.00786930928868077,445525,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_22_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445527,0.002663603067812001,445527,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_23_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445530,0.0022339512814292042,445530,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_24_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445531,0.002457581473227041,445531,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_25_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445532,0.004471377124947229,445532,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_26_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445534,0.004199583159856785,445534,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_27_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445535,0.0055069562289744274,445535,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_28_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445537,0.0046209800850379274,445537,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_29_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445538,0.0034444691891000693,445538,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_30_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445539,0.006560970604307434,445539,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_31_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445543,0.004394427480233022,445543,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_32_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445544,0.005789157093759624,445544,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_33_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445549,0.007862128251558596,445549,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_34_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445550,0.009825908700254144,445550,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_34_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445550,0.029278767754497267,445550,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_35_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445551,0.0066361222780641285,445551,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_35_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445551,0.029278767754497267,445551,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_36_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445556,0.008944340968303386,445556,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_36_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445556,0.058557535508994535,445556,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_37_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445558,0.005047763950207973,445558,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_38_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445574,0.004415844046674356,445574,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_39_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445667,0.0025805214175799594,445667,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_39_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445667,0.015275879310734472,445667,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_40_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445433,0.002891190241944081,445433,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_41_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445437,0.002367428027716408,445437,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_42_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445481,0.0035057729742166087,445481,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_43_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445486,0.002507907615210722,445486,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_44_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445488,0.006366576422307948,445488,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_45_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445495,0.00233802286092622,445495,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_45_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445495,0.016143972845605276,445495,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_46_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445497,0.005374428569626157,445497,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_46_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445497,0.025935956213186815,445497,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_47_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445501,0.004289651639489075,445501,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_48_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445502,0.005490603009070437,445502,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_49_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445504,0.001482565995631489,445504,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_49_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445504,0.016143972845605276,445504,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_50_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445505,0.002800325045792985,445505,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_50_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445505,0.016143972845605276,445505,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_51_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445507,0.005472854179420052,445507,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_51_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445507,0.02727372976586058,445507,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_52_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445618,0.005834229297053326,445618,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_53_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445439,0.002819359985091231,445439,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_54_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445464,0.002794645761201395,445464,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_55_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445465,0.004265603455113664,445465,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_56_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445466,0.0026253836595998246,445466,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_57_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445467,0.00276687044139668,445467,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_58_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445468,0.002654177278669904,445468,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_59_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445473,0.0046647269239314644,445473,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_60_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445482,0.0028122812169290063,445482,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_61_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445484,0.002927678308975683,445484,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_62_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445485,0.004497569341912307,445485,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_63_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445490,0.004316184494732372,445490,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_64_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445491,0.002147137459796346,445491,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_65_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445493,0.0046153377309040965,445493,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_66_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445494,0.004780374006769131,445494,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_67_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445496,0.002201021192835069,445496,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_68_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445498,0.00509941907216111,445498,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_69_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445499,0.004764220676195952,445499,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_70_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445506,0.005340155555295299,445506,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_70_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445506,0.025935956213186815,445506,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_71_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445509,0.005188269104942274,445509,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_71_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445509,0.029842379893336848,445509,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_72_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445510,0.0060808813680577785,445510,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_73_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445511,0.004371369961843394,445511,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_74_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445512,0.0038326676987946815,445512,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_74_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445512,0.025935956213186815,445512,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_75_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445514,0.005857929353756988,445514,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_76_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445517,0.004727603739944615,445517,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_76_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445517,0.029842379893336848,445517,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_77_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445518,0.0024512265936879,445518,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_78_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445520,0.00391334112162385,445520,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_79_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445521,0.0038081727333568608,445521,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_80_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445524,0.002627619114441569,445524,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_80_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445524,0.029842379893336848,445524,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_81_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445526,0.0028754981547104773,445526,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_82_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445528,0.0033423290983693892,445528,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_83_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445533,0.008155185637905397,445533,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_83_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445533,0.025935956213186815,445533,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_84_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445608,0.005274404878205562,445608,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_85_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445609,0.005449996550361236,445609,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_86_residential,BranchTee_mvgd_33535_lvgd_1164120004_building_445622,0.0024692403929163376,445622,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_87_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445548,0.029842379893336848,445548,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_88_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_445592,0.016143972845605276,445592,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120004_89_cts,BranchTee_mvgd_33535_lvgd_1164120004_building_34967288,0.016143972845605276,34967288,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_1_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441605,0.00267158572829702,441605,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_2_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441613,0.0025557356570691486,441613,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_3_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441619,0.005699527131031363,441619,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_4_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441621,0.0025931464690348485,441621,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_5_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441622,0.0027371119818357546,441622,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_6_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441627,0.0025561041868818993,441627,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_7_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441628,0.002514880757098654,441628,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_8_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441631,0.002472106506344443,441631,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_9_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441634,0.007241205876788939,441634,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_10_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441635,0.0029310658391465652,441635,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_11_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441636,0.007566017775200345,441636,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_12_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441637,0.004901493511983942,441637,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_13_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441640,0.0027791114677418564,441640,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_14_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441641,0.0047107691328149995,441641,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_15_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441643,0.008197304954108005,441643,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_16_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441644,0.00260716351466684,441644,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_17_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441645,0.008769186263522046,441645,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_18_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441646,0.005955124120462185,441646,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_19_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441647,0.0026549461036541777,441647,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_19_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441647,0.024857313403321406,441647,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_20_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441650,0.0024733311513143543,441650,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_21_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441651,0.001418310356443653,441651,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_22_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441652,0.0027406947527483616,441652,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_23_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441653,0.006440518429881794,441653,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_23_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441653,0.023710651546700212,441653,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_24_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441654,0.002991010944974471,441654,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_25_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441662,0.0022972139303367137,441662,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_25_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441662,0.024857313403321406,441662,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_26_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441665,0.007164391557668202,441665,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_27_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441670,0.004919357523341746,441670,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_27_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441670,0.023710651546700212,441670,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_28_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441672,0.006507725148376079,441672,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_29_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441676,0.0019731672413402907,441676,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_30_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441691,0.0071129580184616245,441691,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_31_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441695,0.005209303970568439,441695,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_32_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441709,0.00238634985134683,441709,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_33_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441720,0.003076992281778036,441720,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_34_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441729,0.0027559599445506565,441729,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_35_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441739,0.004657895047500837,441739,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_36_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441745,0.011559295260027863,441745,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_37_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441746,0.003482407099417433,441746,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_38_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441748,0.00474240639713259,441748,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_39_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441639,0.009302582936890905,441639,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_40_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441655,0.002645758942085299,441655,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_41_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441656,0.002817971606483419,441656,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_42_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441657,0.0025530738233059944,441657,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_43_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441658,0.002443812352346444,441658,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_44_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441659,0.0035357447523657135,441659,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_45_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441660,0.002940523651902384,441660,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_46_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441661,0.002886986109623291,441661,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_47_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441663,0.005660433013305671,441663,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_48_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441664,0.0028704461713909063,441664,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_49_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441666,0.0035846032314721258,441666,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_50_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441667,0.002554589005093947,441667,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_51_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441669,0.00395574735907521,441669,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_51_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441669,0.020387273424484684,441669,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_52_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441671,0.004513977828375463,441671,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_53_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441674,0.00785800030444787,441674,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_54_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441677,0.005440138442433893,441677,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_55_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441678,0.003165492895612703,441678,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_56_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441680,0.001413094252103758,441680,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_57_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441684,0.002525848844798387,441684,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_58_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441686,0.0026427110171728376,441686,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_59_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441687,0.002991531586952401,441687,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_59_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441687,0.020387273424484684,441687,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_60_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441688,0.0024416936287418147,441688,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_60_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441688,0.02727372976586058,441688,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_61_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441689,0.0036333418802820304,441689,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_62_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441692,0.0032672954471245565,441692,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_63_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441696,0.0029343449022387127,441696,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_64_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441697,0.00404973304977954,441697,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_65_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441698,0.0035136714435881327,441698,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_66_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441699,0.007936401858487433,441699,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_67_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441700,0.009230500881462421,441700,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_67_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441700,0.01441426265781817,441700,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_68_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441754,0.007598384868004854,441754,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_68_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441754,0.01441426265781817,441754,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_69_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441758,0.008233323255386704,441758,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_70_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_441759,0.004447748863119493,441759,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_71_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_445470,0.005639809289558903,445470,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_72_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_445472,0.0033863334174474478,445472,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_73_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_445477,0.002619991812766883,445477,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_74_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_445492,0.005483560913111023,445492,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_74_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_445492,0.02882852531563634,445492,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_75_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_445596,0.0053178190847243114,445596,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_75_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_445596,0.01441426265781817,445596,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_76_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_445471,0.005771538424603722,445471,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_77_residential,BranchTee_mvgd_33535_lvgd_1164120005_building_445478,0.0025899681253729553,445478,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120005_78_cts,BranchTee_mvgd_33535_lvgd_1164120005_building_441701,0.02727372976586058,441701,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_1_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445519,0.006173572684955869,445519,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_2_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445522,0.0026833466586913173,445522,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_3_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445540,0.00665911316667682,445540,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_4_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445541,0.005688019290487448,445541,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_5_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445542,0.007011366719498355,445542,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_6_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445545,0.002356656730288095,445545,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_7_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445546,0.0035407722014650944,445546,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_7_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445546,0.014514028271122529,445546,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_8_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445547,0.004698227239453807,445547,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_9_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445552,0.005890379088145294,445552,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_10_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445555,0.004607914967149312,445555,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_11_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445559,0.0043212948436705005,445559,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_12_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445563,0.002596526768067149,445563,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_13_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445564,0.0028943804653336455,445564,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_14_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445565,0.007536638692160043,445565,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_14_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445565,0.014514028271122529,445565,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_15_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445567,0.002641376872104394,445567,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_16_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445568,0.0031780996109661867,445568,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_17_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445570,0.004118761498686678,445570,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_18_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445571,0.005742576681561602,445571,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_19_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445572,0.004516162665247131,445572,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_19_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445572,0.014514028271122529,445572,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_20_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445575,0.005105527318223603,445575,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_21_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445576,0.002630914705850476,445576,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_22_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445577,0.0031737505976188003,445577,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_23_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445578,0.0035559010346541227,445578,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_23_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445578,0.015275879310734472,445578,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_24_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445581,0.0028863221361484616,445581,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_25_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445582,0.00651052308249755,445582,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_26_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445583,0.0022674947255280926,445583,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_27_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445584,0.00195389044628196,445584,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_28_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445585,0.0024899501155612462,445585,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_29_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445586,0.004060527331898347,445586,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_30_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445589,0.004802841670854399,445589,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_31_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445590,0.0031104569581173664,445590,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_32_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445591,0.0034067588013931,445591,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_33_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445593,0.004456687583427078,445593,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_34_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445594,0.0024859208218411797,445594,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_35_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445595,0.0050287672326422336,445595,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_36_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445597,0.005939460957782911,445597,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_37_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445598,0.004957740923446772,445598,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_38_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445599,0.0033876037735433976,445599,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_39_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445600,0.003248909244259128,445600,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_40_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445601,0.008604537886590964,445601,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_41_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445606,0.002828972234306772,445606,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_42_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445615,0.002350982869050442,445615,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_42_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445615,0.00949024053756619,445615,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_43_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445654,0.002700189529979313,445654,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_44_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445655,0.0025169896670152072,445655,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_44_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445655,0.04582763793220341,445655,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_45_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445657,0.0031397603724575025,445657,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_46_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445659,0.002626587127663888,445659,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_47_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445660,0.0022021544155529037,445660,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_48_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445665,0.003960203548226584,445665,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_49_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445669,0.003256014870936087,445669,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_50_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445670,0.005002325024886166,445670,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_51_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445672,0.0022345605048547674,445672,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_52_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445676,0.002337476393453354,445676,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_52_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445676,0.015275879310734472,445676,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_53_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445678,0.0028448001636437446,445678,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_54_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445825,0.003130803057793562,445825,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_55_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445827,0.012068676289144932,445827,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_56_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445847,0.006966042975883966,445847,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_57_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445852,0.0035740987114065118,445852,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_58_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445855,0.0015088328482769356,445855,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_59_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445860,0.001546462660439701,445860,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_60_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445515,0.0015095130918135755,445515,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_60_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445515,0.004745120268783095,445515,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_61_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445523,0.002519213758639179,445523,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_62_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445529,0.0035881232464320357,445529,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_62_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445529,0.00949024053756619,445529,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_63_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445612,0.0028361850367877193,445612,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_63_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445612,0.004745120268783095,445612,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_64_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445619,0.003037062967546083,445619,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_64_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445619,0.004745120268783095,445619,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_65_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445626,0.003904146728916389,445626,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_66_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445635,0.005128958273270021,445635,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_67_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445642,0.0028742587892084523,445642,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_68_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445653,0.006807656764965204,445653,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_69_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445677,0.0026365722970263187,445677,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_70_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445640,0.004767227796826413,445640,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_71_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445662,0.0025268224659575106,445662,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_72_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445663,0.004888295134541452,445663,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_73_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445664,0.002514541926605081,445664,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_74_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445666,0.003633180470938674,445666,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_75_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445671,0.0046695490603460964,445671,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_76_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445673,0.005117823352872994,445673,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_77_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445675,0.006960700197491405,445675,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_78_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445679,0.004030511392152899,445679,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_79_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445680,0.004564982147856189,445680,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_80_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445682,0.00282353545111264,445682,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_81_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445684,0.00372466057212422,445684,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_82_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445685,0.0043575016710622385,445685,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_83_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445686,0.0023952289147611107,445686,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_83_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445686,0.029774358073349654,445686,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_84_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445687,0.005668556680993046,445687,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_85_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445688,0.008145175159557929,445688,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_86_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445689,0.0024991217818331633,445689,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_87_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445690,0.005071320417159784,445690,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_88_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445691,0.007641096621061317,445691,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_89_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445693,0.0048593669646427515,445693,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_90_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445694,0.006505096112991495,445694,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_91_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445695,0.0026282084522360307,445695,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_92_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445696,0.004273319338235983,445696,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_93_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445697,0.0058762747523404164,445697,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_94_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445698,0.005943511428408827,445698,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_95_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445699,0.0015083619203767598,445699,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_96_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445700,0.00661737968336857,445700,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_97_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445701,0.003286673865505464,445701,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_98_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445702,0.0035208697837919157,445702,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_99_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445703,0.005792856337654396,445703,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_100_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445704,0.0033870301893008476,445704,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_101_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445705,0.0016538721851573214,445705,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_102_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445706,0.007242137144136366,445706,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_103_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445707,0.003729674333711284,445707,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_104_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445708,0.0018021110426054484,445708,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_105_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445714,0.004325472117476556,445714,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_106_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445716,0.006042613149660172,445716,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_106_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445716,0.029774358073349654,445716,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_107_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445724,0.007493179549280105,445724,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_107_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445724,0.03319491438396543,445724,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_108_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445728,0.00148519219021163,445728,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_109_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445729,0.004002470069750333,445729,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_110_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445734,0.007188706261151363,445734,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_111_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445736,0.004398217629869973,445736,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_111_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445736,0.07610730927372357,445736,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_112_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445739,0.002639536805590134,445739,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_113_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445819,0.003743457658614096,445819,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_114_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445823,0.0036991106352182238,445823,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_114_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_445823,0.0706655193030456,445823,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_115_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445828,0.0040595271104794375,445828,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_116_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445830,0.005563769218776376,445830,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_117_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445832,0.005004531038663682,445832,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_118_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445834,0.00444475052315731,445834,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_119_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445835,0.006287006522877436,445835,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_120_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445837,0.005172587864416544,445837,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_121_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445838,0.0026765917422356027,445838,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_122_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445840,0.004480823574485275,445840,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_123_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445841,0.0025286343826822883,445841,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_124_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445842,0.002913811051214325,445842,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_125_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445844,0.003558967553922939,445844,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_126_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445845,0.0030761082750863436,445845,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_127_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445848,0.002568425530516329,445848,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_128_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445849,0.004539991849425476,445849,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_129_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445850,0.007505520003780788,445850,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_130_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445851,0.005510607953958515,445851,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_131_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445854,0.0037298326439952475,445854,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_132_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445856,0.00948148130541831,445856,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_133_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445862,0.0028893310645635682,445862,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_134_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445864,0.004017850185005099,445864,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_135_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445865,0.0021657549299689354,445865,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_136_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445870,0.01085275310538376,445870,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_137_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445873,0.007299682544974729,445873,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_138_residential,BranchTee_mvgd_33535_lvgd_1164120006_building_445875,0.004951010282956298,445875,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_139_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_34967289,0.004745120268783095,34967289,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_140_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_34967290,0.004745120268783095,34967290,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_141_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_34967293,0.014514028271122529,34967293,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120006_142_cts,BranchTee_mvgd_33535_lvgd_1164120006_building_34967294,0.014514028271122529,34967294,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_1_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441685,0.00443065083594152,441685,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_2_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441690,0.0028965071948417053,441690,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_3_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441693,0.005107063418662454,441693,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_4_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441694,0.009548637922452415,441694,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_5_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441703,0.007390955525690879,441703,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_6_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441704,0.0031415779707911666,441704,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_7_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441706,0.002425441903032926,441706,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_8_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441707,0.0023373095607560615,441707,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_9_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441708,0.005870128801055314,441708,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_10_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441710,0.002445729378835616,441710,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_11_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441711,0.002715502498947242,441711,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_12_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441713,0.0028860266924863823,441713,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_13_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441715,0.003119223938883621,441715,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_14_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441716,0.0027670762705913274,441716,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_15_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441717,0.0043232364043798615,441717,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_16_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441719,0.0026054303657016198,441719,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_17_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441721,0.0031227194196233403,441721,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_18_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441722,0.00477265476633247,441722,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_19_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441723,0.0040047057828470276,441723,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_20_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441728,0.003231468771018291,441728,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_21_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441730,0.0033561898997570127,441730,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_22_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441731,0.002697338395338271,441731,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_23_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441737,0.0024443412584827535,441737,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_24_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441738,0.0014723846816350112,441738,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_25_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441741,0.003959052764172193,441741,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_26_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441743,0.007128711570373178,441743,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_27_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441773,0.0026078517641069106,441773,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_28_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441776,0.0023277574849437225,441776,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_29_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441732,0.002563868363679751,441732,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_30_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441734,0.004778584299969998,441734,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_31_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441740,0.004118294831993167,441740,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_32_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441744,0.002589914150088537,441744,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_33_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441747,0.003570025514345052,441747,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_34_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441749,0.003746642716904673,441749,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_35_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441750,0.00923541392361923,441750,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_36_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441752,0.004135785406694182,441752,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_37_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441755,0.004628114119759317,441755,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_38_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441756,0.004333650793468146,441756,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_38_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_441756,0.01441426265781817,441756,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_39_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441757,0.007705046744644049,441757,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_40_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441760,0.0034093336032383166,441760,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_41_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441763,0.004259152762988307,441763,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_42_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441764,0.003455225249486369,441764,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_43_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441765,0.004319204528110302,441765,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_44_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441768,0.005591152507567949,441768,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_45_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441781,0.002697287519113245,441781,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_46_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441782,0.0015478299912691392,441782,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_47_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441783,0.0027031424170704064,441783,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_48_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441785,0.001571429586797495,441785,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_49_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441791,0.002505978708993879,441791,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_50_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441796,0.002449604752605858,441796,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_51_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441803,0.002697548614867058,441803,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_52_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441808,0.0027026282314662115,441808,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_53_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441811,0.0014628368670293376,441811,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_54_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441814,0.001521264725029696,441814,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_55_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441819,0.005653714252542868,441819,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_56_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441820,0.0042331152407379,441820,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_57_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441827,0.006540803475311152,441827,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_58_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441832,0.004435257071218479,441832,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_59_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441837,0.002499582766917788,441837,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_60_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441840,0.0038177945380055292,441840,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_61_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445602,0.003970348835657624,445602,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_62_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445610,0.004347028399845498,445610,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_63_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445611,0.0038507303082085504,445611,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_64_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445616,0.002727603809364809,445616,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_65_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445620,0.005862765952448784,445620,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_66_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445621,0.005351318367226857,445621,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_67_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445623,0.004362720487079102,445623,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_68_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445624,0.004143814811325036,445624,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_69_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445625,0.006027267124058723,445625,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_70_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445630,0.004799588175002239,445630,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_71_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445632,0.0026843249284395298,445632,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_72_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445637,0.0025213890400777204,445637,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_73_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445638,0.0026486550130875313,445638,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_74_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445641,0.00736487435835403,445641,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_75_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445645,0.009062059772344897,445645,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_76_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445648,0.008816859094155902,445648,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_77_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445652,0.004580969162241973,445652,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_78_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445668,0.00901121970301197,445668,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_79_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445713,0.006616123531294836,445713,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_79_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_445713,0.023224775857471732,445713,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_80_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445750,0.0040185053778116495,445750,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_81_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445754,0.0026692851932080337,445754,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_82_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445603,0.004523746063580424,445603,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_82_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_445603,0.004745120268783095,445603,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_83_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445604,0.005041593206447733,445604,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_84_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445605,0.002617930938270913,445605,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_84_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_445605,0.00949024053756619,445605,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_85_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445613,0.002564179302638792,445613,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_85_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_445613,0.004745120268783095,445613,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_86_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445617,0.0050777592295574705,445617,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_87_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445627,0.005593884328422381,445627,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_88_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445628,0.007854117699539045,445628,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_89_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445629,0.004601149720495623,445629,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_90_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445631,0.002534476367891981,445631,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_91_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445633,0.005536828578968024,445633,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_92_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445634,0.0014756979635079503,445634,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_92_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_445634,0.016143972845605276,445634,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_93_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445636,0.003638700928736402,445636,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_94_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445639,0.0051189095731900445,445639,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_95_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445643,0.004045578244154079,445643,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_96_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445644,0.0063195471630079205,445644,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_97_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445646,0.005826335476270891,445646,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_98_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445647,0.00799004089496163,445647,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_99_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445649,0.0027255509407722693,445649,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_100_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445650,0.0026383173257192106,445650,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_101_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445651,0.007250070219671106,445651,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_102_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445656,0.005909842214149595,445656,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_103_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445661,0.0068808023142751945,445661,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_104_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445674,0.002517642793782163,445674,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_105_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445681,0.004656948284856448,445681,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_106_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445683,0.0026443426719429558,445683,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_107_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445692,0.0015501659072861885,445692,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_108_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445726,0.004299266212999161,445726,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_109_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445727,0.003348377429283628,445727,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_110_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445730,0.0039604512147230295,445730,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_111_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445732,0.002622596313931277,445732,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_112_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445735,0.004057966217565447,445735,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_113_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445737,0.003625640201181926,445737,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_114_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445738,0.003182511638521219,445738,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_115_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445740,0.0037895633982151762,445740,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_116_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445741,0.021662495398479684,445741,,residential,13.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_117_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445743,0.003254338538059728,445743,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_117_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_445743,0.023224775857471732,445743,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_118_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445744,0.005939891210528561,445744,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_119_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445746,0.0025389542504591026,445746,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_120_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445711,0.004858628871997452,445711,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_121_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445722,0.009867297671459935,445722,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_121_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_445722,0.03319491438396543,445722,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_122_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445770,0.002403380990492916,445770,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_123_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445773,0.00779564361390275,445773,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_124_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445777,0.002480963618088028,445777,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_125_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445782,0.0023700555135712956,445782,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_126_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445790,0.009703826420588082,445790,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_127_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445796,0.008179389291760328,445796,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_128_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_445805,0.0025444488827618935,445805,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_129_residential,BranchTee_mvgd_33535_lvgd_1164120007_building_441761,0.005165579341600548,441761,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120007_129_cts,BranchTee_mvgd_33535_lvgd_1164120007_building_441761,0.09507582385532838,441761,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_1_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441767,0.011401161622449583,441767,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_2_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441769,0.0083987846188984,441769,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_3_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441770,0.005267157727816349,441770,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_4_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441771,0.0037094547789602796,441771,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_5_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441772,0.010367138762747289,441772,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_6_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441774,0.0034874066569822813,441774,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_6_cts,BranchTee_mvgd_33535_lvgd_1164120008_building_441774,0.016927851662294775,441774,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_7_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441775,0.002473838105779967,441775,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_8_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441777,0.006958607299381714,441777,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_9_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441778,0.009501276030777602,441778,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_10_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441779,0.008319819552559313,441779,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_11_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441786,0.008124171801035585,441786,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_12_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441787,0.009093956324631653,441787,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_13_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441788,0.008519579755896803,441788,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_14_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441789,0.012392723236396305,441789,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_15_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441790,0.00269991603798793,441790,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_16_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441793,0.0036124263284424744,441793,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_17_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441794,0.004360232975406773,441794,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_18_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441800,0.003056342474281381,441800,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_19_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441876,0.005466397289175909,441876,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_20_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441877,0.006012515601350723,441877,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_21_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441878,0.003015192905413656,441878,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_22_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441879,0.0077915058531039475,441879,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_22_cts,BranchTee_mvgd_33535_lvgd_1164120008_building_441879,0.016927851662294775,441879,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_23_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441881,0.0037131974096865457,441881,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_24_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441882,0.004948177226161711,441882,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_25_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441886,0.002445250315904535,441886,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_26_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441888,0.005007725652387386,441888,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_27_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441889,0.0029301348300540876,441889,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_28_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441890,0.0024765588216715774,441890,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_29_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441892,0.0044554045728386095,441892,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_30_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441897,0.00354657622319723,441897,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_31_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441899,0.006013819788845041,441899,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_32_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441902,0.003644776118165376,441902,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_33_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441905,0.009911479928198108,441905,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_34_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441906,0.005203551599826178,441906,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_35_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441907,0.007085201293013264,441907,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_36_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441911,0.004713659005698447,441911,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_37_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441912,0.0076568847791360865,441912,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_38_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441914,0.0026224227666053,441914,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_39_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441915,0.00451714661660423,441915,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_40_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441919,0.004030554262474495,441919,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_41_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441921,0.001602583785232289,441921,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_42_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441924,0.0016570106284295367,441924,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_43_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441925,0.004069328660572867,441925,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_44_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441928,0.0029020392741121543,441928,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_45_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441940,0.0015204677502559409,441940,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_46_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441943,0.003875025900825458,441943,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_47_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441946,0.003384471141007543,441946,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_48_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441950,0.0036734850296120626,441950,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_49_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441952,0.006511720868952727,441952,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_50_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441956,0.0033634132906908837,441956,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_51_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441958,0.007451659901069932,441958,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_52_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441959,0.005510625515295072,441959,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_53_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441962,0.005500165673335699,441962,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_54_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441964,0.004427075554422446,441964,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_55_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441965,0.005221180599180054,441965,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_56_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441966,0.00574305703576743,441966,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_57_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441970,0.0034605380703048036,441970,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_58_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441971,0.004214923762104296,441971,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_59_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441973,0.0053683668094545505,441973,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_60_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441987,0.007232856494275815,441987,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_61_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441992,0.00526464955574807,441992,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_62_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441893,0.002514921303125705,441893,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_63_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441894,0.002532439769361252,441894,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_64_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441896,0.0029190427799786578,441896,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_65_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441901,0.0027495601286503255,441901,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_66_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441908,0.002630549533352067,441908,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_67_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441909,0.0027044866340818754,441909,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_68_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441955,0.002569768972762951,441955,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_69_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441961,0.0025361803340479224,441961,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_70_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441792,0.005612247288342367,441792,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_71_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441795,0.00439037597658731,441795,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_72_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441797,0.002574410072458074,441797,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_73_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441799,0.004254031050832406,441799,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_74_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441805,0.002312693990256885,441805,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_75_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441806,0.003568031269626019,441806,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_76_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441810,0.005984188648974155,441810,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_77_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441817,0.0029201000757413773,441817,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_78_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441818,0.00341594570470703,441818,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_79_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441980,0.0035627762979162435,441980,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120008_80_residential,BranchTee_mvgd_33535_lvgd_1164120008_building_441984,0.0038747537001088215,441984,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_1_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446050,0.0025902408425994895,446050,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_2_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446056,0.002853301141812148,446056,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_3_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446063,0.0025856736038198857,446063,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_4_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446068,0.0025478761841949793,446068,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_5_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446069,0.0040549446346578215,446069,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_6_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446071,0.0035909436487341025,446071,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_7_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446072,0.0025767927326209596,446072,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_8_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446074,0.005465767663609347,446074,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_9_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446075,0.003447235099607819,446075,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_10_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446076,0.0026108387408513216,446076,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_11_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446078,0.002991284436965854,446078,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_12_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446081,0.0026760062782653815,446081,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_13_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446084,0.005370361054173584,446084,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_14_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446090,0.0024023428055964494,446090,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120009_15_residential,BranchTee_mvgd_33535_lvgd_1164120009_building_446057,0.006297243232560554,446057,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_1_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441926,0.0014568040314120606,441926,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_2_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441931,0.003680105911749054,441931,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_3_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441932,0.0027755555553439838,441932,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_4_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441933,0.00283670955258989,441933,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_5_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441934,0.002458181399474427,441934,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_6_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441939,0.006717887344564283,441939,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_7_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441945,0.0035959796202468123,441945,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_8_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441948,0.0024247257620583244,441948,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_9_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441953,0.003779212281589488,441953,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_9_cts,BranchTee_mvgd_33535_lvgd_1164120010_building_441953,0.04065793524147421,441953,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_10_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441954,0.0031263083886547316,441954,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_11_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441967,0.0014376545560437692,441967,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_12_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441995,0.0059295589465141775,441995,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_13_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_441996,0.003486108667606749,441996,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_14_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442000,0.0043309282697918915,442000,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_15_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442001,0.004402895660022856,442001,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_16_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442003,0.003016013381387803,442003,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_17_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442005,0.0023676630397203345,442005,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_17_cts,BranchTee_mvgd_33535_lvgd_1164120010_building_442005,0.019065696929852147,442005,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_18_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442008,0.00790840857150545,442008,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_18_cts,BranchTee_mvgd_33535_lvgd_1164120010_building_442008,0.04065793524147421,442008,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_19_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442009,0.0027681209118615283,442009,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_19_cts,BranchTee_mvgd_33535_lvgd_1164120010_building_442009,0.019065696929852147,442009,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_20_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442010,0.0027801754781332593,442010,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_21_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442011,0.0027027620075299845,442011,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_22_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442012,0.0014847454091492204,442012,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_23_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442017,0.0025649362478953946,442017,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_24_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442018,0.004823801126035348,442018,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_25_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442019,0.0064299041514626985,442019,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_26_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442020,0.002467843491895197,442020,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_27_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442021,0.004585472612049082,442021,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_28_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442022,0.002893986884790806,442022,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_29_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442023,0.002504859173788361,442023,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_30_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442025,0.003467465242811748,442025,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_31_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442026,0.002405593460644166,442026,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_32_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442027,0.0025325275760440373,442027,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_33_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442030,0.0026868163139361,442030,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_34_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442032,0.00270264114421368,442032,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_35_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442036,0.0029892331179030103,442036,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_36_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442038,0.0026405137840636,442038,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_37_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442039,0.0028428366512636867,442039,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_38_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442050,0.003168431320426632,442050,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_39_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442054,0.005165291129077051,442054,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_40_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442057,0.005488759585241835,442057,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_41_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442065,0.004830977514568434,442065,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_42_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442068,0.0026484383371850103,442068,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_43_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442073,0.003697823492550565,442073,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_44_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442078,0.0026456874054643234,442078,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_45_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442084,0.004622825058396224,442084,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_46_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442091,0.0075423321807738496,442091,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_47_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_442092,0.007196417753939544,442092,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_48_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445985,0.0027237955818814026,445985,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_49_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445987,0.0027619096220742366,445987,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_50_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445988,0.002828599830669781,445988,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_51_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445993,0.0026173126759221213,445993,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_52_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445994,0.0024841757931482883,445994,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_53_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445996,0.001588942113169206,445996,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_54_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445999,0.002707820705478239,445999,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_55_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446000,0.0033166706943846577,446000,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_56_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446001,0.002455481085723817,446001,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_57_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446006,0.002958409614930884,446006,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_58_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446009,0.0034641528648311315,446009,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_59_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446010,0.0015494235534342252,446010,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_60_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446021,0.004929513657480659,446021,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_61_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446026,0.0024557680069725667,446026,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_62_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446027,0.0029521422838195794,446027,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_63_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446032,0.0029785095976403303,446032,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_64_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446033,0.0027658973367474552,446033,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_65_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446035,0.003124904256495009,446035,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_66_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446040,0.0058576080845999705,446040,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_67_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446042,0.002552803946883903,446042,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_68_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446044,0.002575748349605708,446044,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_69_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446053,0.0026428574477291304,446053,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_70_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446054,0.0029440539970602684,446054,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_71_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446062,0.003498692656524688,446062,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_72_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_446064,0.002814920840766514,446064,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_73_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445981,0.0027606780042206923,445981,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_74_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445978,0.02771414230626881,445978,,residential,22.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_75_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445990,0.003693946827505576,445990,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120010_76_residential,BranchTee_mvgd_33535_lvgd_1164120010_building_445992,0.0035248859065095646,445992,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_1_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441802,0.00629878966319738,441802,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_2_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441825,0.004199772718989622,441825,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_3_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441829,0.0016653341854477235,441829,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_4_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441830,0.0036368696428904206,441830,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_5_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441920,0.005014995529212143,441920,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_6_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441922,0.008777775823138084,441922,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_6_cts,BranchTee_mvgd_33535_lvgd_1164120011_building_441922,0.022972121996617884,441922,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_7_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441923,0.003714337863542962,441923,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_8_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441927,0.006229804601121735,441927,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_9_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441929,0.0015577928215784501,441929,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_9_cts,BranchTee_mvgd_33535_lvgd_1164120011_building_441929,0.022972121996617884,441929,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_10_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441930,0.0038841598618747667,441930,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_11_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441935,0.0049292202798581755,441935,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_12_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441936,0.002574689762568242,441936,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_13_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441938,0.005299494346536832,441938,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_14_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441942,0.002223511583355882,441942,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_15_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441944,0.002834398687302929,441944,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_16_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441951,0.002663183661774225,441951,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_17_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_441997,0.003556202418180037,441997,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_18_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_442002,0.0025454093329185996,442002,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_19_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445710,0.01043677979239433,445710,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_20_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445717,0.005581588810282888,445717,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_21_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445718,0.005004475772104517,445718,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_22_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445720,0.008648907119912485,445720,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_23_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445742,0.010661433706811468,445742,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_24_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445747,0.006721631524820246,445747,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_24_cts,BranchTee_mvgd_33535_lvgd_1164120011_building_445747,0.021378456835420865,445747,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_25_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445748,0.005824758571550039,445748,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_26_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445749,0.008683392936321623,445749,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_26_cts,BranchTee_mvgd_33535_lvgd_1164120011_building_445749,0.021378456835420865,445749,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_27_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445751,0.0029597695854942647,445751,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_28_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445752,0.014067722484196717,445752,,residential,13.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_29_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445755,0.0025761468369925856,445755,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_30_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445756,0.005850706479333014,445756,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_31_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445757,0.002487729639506565,445757,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_32_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445761,0.010636772425186253,445761,,residential,11.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_33_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445763,0.016342413483889,445763,,residential,13.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_34_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445969,0.01823118998065889,445969,,residential,16.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_34_cts,BranchTee_mvgd_33535_lvgd_1164120011_building_445969,0.01642253978073996,445969,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_35_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445980,0.012103408480775771,445980,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_36_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445983,0.025551054633416965,445983,,residential,19.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_37_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445991,0.009797451070873195,445991,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_38_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446007,0.016759952854891402,446007,,residential,11.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_39_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445795,0.004451386125826416,445795,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_40_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445797,0.003103386195858573,445797,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_41_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445802,0.002818752311195364,445802,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_42_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445803,0.0034594309313368556,445803,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_43_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445806,0.012847389338920105,445806,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_44_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445813,0.004068801562221203,445813,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_45_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445815,0.003949153335452951,445815,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_46_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445745,0.0026003259566273274,445745,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_47_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445758,0.01309808568243169,445758,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_48_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445759,0.0026479993037710815,445759,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_49_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445760,0.008690958773318358,445760,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_50_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445762,0.007569611651075774,445762,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_51_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445764,0.0032539067357843818,445764,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_52_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445765,0.005129410735941317,445765,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_53_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445769,0.006133171797186366,445769,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_54_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445771,0.005338826575325843,445771,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_55_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445772,0.008703369473165272,445772,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_56_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445774,0.008641228167247925,445774,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_57_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445780,0.009876258085183269,445780,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_58_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445781,0.014268446495005256,445781,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_59_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445783,0.009152204178932302,445783,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_60_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445784,0.008348189891767376,445784,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_61_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445789,0.011658990967662758,445789,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_62_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445807,0.011205555191717757,445807,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_63_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445808,0.004096170130480661,445808,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_64_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445971,0.03138406909918846,445971,,residential,24.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_65_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445974,0.010340581889793699,445974,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_66_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445975,0.019847551925695005,445975,,residential,17.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_67_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445976,0.007062750157244755,445976,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_68_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445979,0.02855429110943965,445979,,residential,24.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_69_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445982,0.0064582068278740265,445982,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_70_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445984,0.010812130634867698,445984,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_71_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445989,0.018703943226816747,445989,,residential,17.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_72_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445995,0.0022177726418709876,445995,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_73_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_445998,0.021979814287790077,445998,,residential,19.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_73_cts,BranchTee_mvgd_33535_lvgd_1164120011_building_445998,0.01642253978073996,445998,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_74_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446002,0.028499904683141977,446002,,residential,23.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_75_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446003,0.0044997552118037736,446003,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_76_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446004,0.004598332675507898,446004,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_77_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446011,0.008170436625685477,446011,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_78_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446012,0.008253092671760956,446012,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_79_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446013,0.0037502130915797096,446013,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_80_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446014,0.006559860624535043,446014,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_81_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446017,0.014795777276123318,446017,,residential,11.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_82_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446020,0.009386877352365187,446020,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_83_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446023,0.008396228927919438,446023,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120011_84_residential,BranchTee_mvgd_33535_lvgd_1164120011_building_446029,0.007157586023242411,446029,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_1_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431757,0.0027524662715955827,431757,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_2_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431759,0.0025473971212638985,431759,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_3_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431760,0.0029070241111448887,431760,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_4_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431761,0.002590029073541006,431761,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_5_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431767,0.0025538263782284585,431767,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_6_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431770,0.0024993790037627353,431770,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_7_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431771,0.003355822661219009,431771,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_8_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431773,0.005448279154947927,431773,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_9_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431775,0.006047460595059842,431775,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_10_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431786,0.003899361522959517,431786,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_11_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431793,0.0028605519077706527,431793,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_12_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431794,0.006154301184124,431794,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_13_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_431797,0.0016970158696166051,431797,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120012_14_residential,BranchTee_mvgd_33535_lvgd_1164120012_building_444869,0.005235019448896981,444869,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_1_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441592,0.002509255189536533,441592,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_2_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441594,0.002666948502426137,441594,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_3_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441595,0.004131357367332287,441595,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_4_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441596,0.0044561436985037055,441596,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_5_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441598,0.004337056659740434,441598,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_6_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441603,0.00527039004676266,441603,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_7_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441608,0.004588801001836559,441608,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_8_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441618,0.0034318544678431546,441618,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_9_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441620,0.00435338302112969,441620,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_10_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_431791,0.002649697588318137,431791,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120013_11_residential,BranchTee_mvgd_33535_lvgd_1164120013_building_441589,0.004324866251365335,441589,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_1_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441972,0.0034773416868404947,441972,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_2_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441974,0.004162875317863269,441974,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_3_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441975,0.006610396469537612,441975,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_4_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441873,0.00285841820537896,441873,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_4_cts,BranchTee_mvgd_33535_lvgd_1164120014_building_441873,0.01410978264840265,441873,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_5_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441874,0.005639504548718647,441874,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_5_cts,BranchTee_mvgd_33535_lvgd_1164120014_building_441874,0.014867744230964201,441874,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_6_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441976,0.0047895090008382366,441976,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_7_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441977,0.008424282646559573,441977,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_8_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441978,0.0033399084747289466,441978,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_9_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441979,0.0030834171484084563,441979,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_10_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441981,0.004355352473373584,441981,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_11_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441982,0.004063265092616615,441982,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_12_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441983,0.0039630146533504735,441983,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_13_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441985,0.0034119990525707613,441985,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_14_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441986,0.006508357873002035,441986,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_15_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441988,0.0061718387612258,441988,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_16_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441989,0.005199851839421506,441989,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_17_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441990,0.006765036434160818,441990,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_18_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441991,0.00534250360929497,441991,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_19_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441993,0.004509482126216834,441993,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_20_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_441999,0.0025187749834802,441999,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_21_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442004,0.00317088655023029,442004,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_22_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442006,0.002884070669499856,442006,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_23_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442007,0.006196612642008941,442007,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_24_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442013,0.0035389577021908225,442013,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_25_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442014,0.003854536727907311,442014,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_26_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442015,0.0026023372461730183,442015,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_27_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442043,0.004215346783711365,442043,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_28_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442049,0.004317248505123776,442049,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_29_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442052,0.003099216411446049,442052,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_30_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442062,0.0027178978136026466,442062,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_30_cts,BranchTee_mvgd_33535_lvgd_1164120014_building_442062,0.01410978264840265,442062,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_31_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442063,0.0025295780462672854,442063,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_32_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442067,0.0016532849134024542,442067,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_33_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442072,0.0025102830442350244,442072,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_34_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442075,0.003264035494898662,442075,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_35_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442080,0.005282529062402835,442080,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_36_residential,BranchTee_mvgd_33535_lvgd_1164120014_building_442081,0.0029154749878531143,442081,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164120014_37_cts,BranchTee_mvgd_33535_lvgd_1164120014_building_441871,0.014867744230964201,441871,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1164130000_1_residential,BranchTee_mvgd_33535_lvgd_1164130000_building_431778,0.0027317500925769403,431778,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164130000_2_residential,BranchTee_mvgd_33535_lvgd_1164130000_building_431783,0.004427645264840754,431783,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164150000_1_residential,BranchTee_mvgd_33535_lvgd_1164150000_building_431735,0.004861597770895406,431735,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164150000_2_residential,BranchTee_mvgd_33535_lvgd_1164150000_building_431736,0.0027664184952352834,431736,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164150000_3_residential,BranchTee_mvgd_33535_lvgd_1164150000_building_431742,0.002707359720393614,431742,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164150000_4_residential,BranchTee_mvgd_33535_lvgd_1164150000_building_431748,0.002366109377944926,431748,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164160000_1_residential,BranchTee_mvgd_33535_lvgd_1164160000_building_447059,0.005667550519710301,447059,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164170000_1_residential,BranchTee_mvgd_33535_lvgd_1164170000_building_431693,0.003933399783541397,431693,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164170000_2_residential,BranchTee_mvgd_33535_lvgd_1164170000_building_431737,0.004752618830850467,431737,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164190000_1_residential,BranchTee_mvgd_33535_lvgd_1164190000_building_442332,0.005280810633969729,442332,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_1_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444959,0.004975468576191308,444959,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_2_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444963,0.002454716909328632,444963,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_3_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444966,0.002742332863892213,444966,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_4_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444968,0.0025710209927574954,444968,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_5_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444969,0.002425183648083557,444969,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_6_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444974,0.0027884553900650024,444974,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_7_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444975,0.0024144722658034977,444975,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_8_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444980,0.0028728117867271334,444980,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_9_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444989,0.002962875101260436,444989,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164200000_10_residential,BranchTee_mvgd_33535_lvgd_1164200000_building_444995,0.002708804140325439,444995,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_1_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446605,0.003386767285762389,446605,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_2_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446612,0.0033971204684276725,446612,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_3_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446704,0.0038826020680201682,446704,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_4_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446708,0.003474210862089285,446708,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_5_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446710,0.0028113502078365286,446710,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_6_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446711,0.004589321643814489,446711,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_7_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446712,0.00293555921701065,446712,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_8_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446715,0.0037666453374982072,446715,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_9_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446716,0.00442212790610242,446716,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_10_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446718,0.0038451377972799484,446718,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_11_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446721,0.00255521888891546,446721,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_12_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446722,0.004495124184051675,446722,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_13_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446723,0.00497824171783764,446723,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_14_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446724,0.003946843503185788,446724,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_15_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446726,0.0026641575411882976,446726,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_16_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446727,0.0015215282742055277,446727,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_17_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446728,0.0026812914658042334,446728,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_18_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446731,0.0026900801399862345,446731,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_19_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446733,0.0050977052923170925,446733,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_20_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446735,0.0031219826182527885,446735,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_21_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446737,0.0025710408783885964,446737,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_22_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446739,0.0028173386236025138,446739,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_23_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446740,0.005177152262391705,446740,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_24_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446742,0.002647025424357008,446742,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_25_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446744,0.0044155966384328595,446744,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_26_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446746,0.0032176526477369085,446746,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_27_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446748,0.0028637891335610024,446748,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_28_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446749,0.002699445239215229,446749,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_29_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446750,0.0016927320656439347,446750,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_30_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446751,0.0030700594276622055,446751,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_31_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446752,0.0061075957765304835,446752,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_32_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446754,0.0029564311237637625,446754,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_33_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446755,0.0046754186788353705,446755,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_34_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446756,0.0024791217437891227,446756,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_35_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446757,0.003067446145829533,446757,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_36_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446758,0.0026952044346916287,446758,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_37_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446759,0.005118371369875557,446759,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_38_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446761,0.0031357581955071194,446761,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_39_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446762,0.0029302799693356335,446762,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_40_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446763,0.0029102677933089726,446763,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_41_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446764,0.0028037619026591975,446764,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_42_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446765,0.005029930929444095,446765,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_43_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446766,0.005009283962751882,446766,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_44_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446767,0.0032035816268204983,446767,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_45_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446768,0.0029154548439670643,446768,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_46_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446769,0.002528569818944946,446769,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_47_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446770,0.004758655282037035,446770,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_48_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446771,0.002417429026718832,446771,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_49_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446772,0.003753853711600975,446772,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_50_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446773,0.0016445243890099341,446773,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_51_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446774,0.0016917707115949058,446774,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_52_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446776,0.002686200375881853,446776,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_53_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446778,0.004992776306388168,446778,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_54_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446779,0.002613102087227597,446779,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_55_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446780,0.003639206591927268,446780,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_56_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446781,0.005560600947057508,446781,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_57_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446782,0.0033395691277254753,446782,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_58_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446783,0.0033047326010950924,446783,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_59_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446784,0.002575271352714222,446784,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_60_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446785,0.009408541843557916,446785,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_61_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446786,0.002843142941633639,446786,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_62_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446788,0.0027875370354650437,446788,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_63_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446790,0.004077479703284875,446790,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_64_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446791,0.004462554102856961,446791,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_65_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446795,0.0035709306979425934,446795,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_66_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446796,0.0016397566152621449,446796,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_67_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446797,0.00257466987693714,446797,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_68_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446800,0.0024980528645977213,446800,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_69_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446801,0.0030701128864367255,446801,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_70_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446802,0.0024712070043557883,446802,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_71_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446803,0.003403979461627983,446803,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_72_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446804,0.0024942226854436193,446804,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_73_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446807,0.005004123512353576,446807,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_74_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446808,0.00612236021198595,446808,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_75_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446812,0.0025117499323474442,446812,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_76_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446814,0.005013031242067237,446814,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_77_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446815,0.0026188991360761,446815,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_78_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446816,0.002840908261556743,446816,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_79_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446818,0.0053927853314273575,446818,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_80_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446819,0.0045242620569692655,446819,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_81_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446823,0.005702928348714562,446823,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_82_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446824,0.0030977926519101737,446824,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_83_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446825,0.003823442315493296,446825,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_84_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446827,0.0015293801285586905,446827,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_85_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446828,0.0024564962859297897,446828,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_86_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446829,0.0025766976947995913,446829,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_87_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446830,0.0029027148690597055,446830,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_88_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446831,0.0026981777239237226,446831,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_89_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446832,0.003651376856416317,446832,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_90_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446833,0.004981014342974074,446833,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_91_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446842,0.0028082312628129897,446842,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_92_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446844,0.003111845853235077,446844,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_93_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446849,0.0026102705799627077,446849,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_94_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446850,0.0026371507881129074,446850,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_95_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446855,0.0023233007792824493,446855,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_96_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446999,0.006218326201642048,446999,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_97_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447001,0.006321855445745388,447001,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_98_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447004,0.006696841632230245,447004,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_99_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447011,0.004837799060801087,447011,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_100_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447012,0.005229202514417377,447012,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_101_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447014,0.005156615312307925,447014,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_102_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447017,0.0076203318901121924,447017,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_103_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447018,0.006300901155663427,447018,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_104_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447019,0.0024277313331590895,447019,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_105_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447021,0.0038803384633889423,447021,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_106_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447022,0.002909902879065513,447022,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_107_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447023,0.006343347422631938,447023,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_108_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447026,0.0027616265746497276,447026,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_109_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447028,0.002772063690173556,447028,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_110_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447035,0.004374328014033475,447035,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_111_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447036,0.0024166999729967613,447036,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_112_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447037,0.003698229469330974,447037,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_113_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447038,0.007055935325640787,447038,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_114_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447039,0.0049990296917322066,447039,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_115_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447040,0.00268643926171002,447040,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_116_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447043,0.004290420722728298,447043,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_117_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447045,0.0014534951398732607,447045,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_118_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447050,0.004657518511784656,447050,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_119_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447051,0.002427839025472977,447051,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_120_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447052,0.006660994812237928,447052,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_121_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447056,0.002295217361323136,447056,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_122_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447065,0.0059940787805152175,447065,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_123_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447066,0.002720066380412504,447066,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_124_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447068,0.0072269212790294,447068,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_125_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447074,0.0040366697396755705,447074,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_126_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447083,0.006369045856133821,447083,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_127_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447084,0.0024376986829300145,447084,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_128_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447089,0.006590240703759101,447089,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_129_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447099,0.004856228650498009,447099,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_130_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447102,0.005705327020684309,447102,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_131_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447104,0.010049974826406518,447104,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_132_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447107,0.004815735823966532,447107,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_133_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447109,0.0024692925604161103,447109,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_134_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447110,0.0034911849268915605,447110,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_135_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447112,0.005814550269911353,447112,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_136_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447114,0.0015154339739103006,447114,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_137_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447117,0.004032007721329547,447117,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_138_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447120,0.005243663758562285,447120,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_139_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447121,0.006156868238320735,447121,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_140_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447127,0.002420195453736481,447127,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_141_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447128,0.0029760231189877983,447128,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_142_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447129,0.004464810218094656,447129,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_143_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447131,0.003957453649525695,447131,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_144_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447132,0.004591400596156915,447132,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_145_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447134,0.002952167592804618,447134,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_146_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447135,0.005451879745452039,447135,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_147_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447137,0.004497383398348761,447137,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_148_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447138,0.0024686520881416736,447138,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_149_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447139,0.002682999822294314,447139,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_150_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447140,0.0032009673119680285,447140,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_151_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447141,0.0030360516411643505,447141,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_152_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447142,0.0025467272079252334,447142,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_153_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447145,0.003314188347811316,447145,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_154_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447147,0.002748579276352619,447147,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_155_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447148,0.0045197596401819525,447148,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_156_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447149,0.002486190698263271,447149,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_157_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447153,0.004277806001471384,447153,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_158_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447162,0.003170335434168335,447162,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_159_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447167,0.0032789342229278024,447167,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_160_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447178,0.003239038481839267,447178,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_161_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447181,0.002816321099101997,447181,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_162_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447184,0.002654298658496108,447184,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_163_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447210,0.0038674094458586456,447210,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_164_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446663,0.0027174399275774136,446663,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_165_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446685,0.0025554776603747284,446685,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_166_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446687,0.0029944261084249362,446687,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_167_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446817,0.0035987630920911195,446817,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_168_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446822,0.0024632184040069343,446822,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_169_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446839,0.0016660167532789075,446839,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_170_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446841,0.0028080848322566973,446841,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_171_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446845,0.00543207623942447,446845,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_172_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446847,0.003316235018285071,446847,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_173_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446848,0.003045593903288613,446848,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_174_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446852,0.003136394793957316,446852,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_175_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446853,0.002982488789900219,446853,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_176_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446854,0.0023668193208007436,446854,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_177_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446856,0.002859001345054637,446856,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_178_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446857,0.0027029177352644548,446857,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_179_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446859,0.003729584977498802,446859,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_180_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446860,0.0015823566119602778,446860,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_181_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446861,0.0029513362701225963,446861,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_182_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446862,0.002549165392902233,446862,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_183_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446863,0.003208664342479044,446863,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_184_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446866,0.005675935541406438,446866,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_185_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446870,0.0015023656278348185,446870,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_186_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446872,0.0022993703591639506,446872,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_187_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446873,0.0016833488885684843,446873,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_188_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446875,0.0027534817300565047,446875,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_189_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446876,0.0031194847763824844,446876,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_190_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446879,0.002483830248026032,446879,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_191_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446880,0.00250307282430357,446880,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_192_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446881,0.0029755755631605406,446881,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_193_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446882,0.0032735328206617343,446882,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_194_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446883,0.002615200925201125,446883,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_195_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446884,0.004476521047028776,446884,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_196_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446885,0.002634569788148906,446885,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_197_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446887,0.002931938482620486,446887,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_198_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446888,0.0031583952748391745,446888,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_199_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446890,0.002813503279349424,446890,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_200_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446891,0.001705065159878561,446891,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_201_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446893,0.002788537515138902,446893,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_202_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446894,0.0038218287385696336,446894,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_203_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446895,0.002533600625358668,446895,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_204_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446896,0.002418024820887028,446896,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_205_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446897,0.002415497537952496,446897,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_206_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446898,0.0027374717309802264,446898,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_207_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446899,0.004357960331852319,446899,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_208_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446902,0.0025742861100823767,446902,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_209_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446903,0.003168591180240291,446903,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_210_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446905,0.0016022898910999063,446905,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_211_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446907,0.0026062534242252615,446907,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_212_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446908,0.007038779449354156,446908,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_213_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446909,0.0028627672187263465,446909,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_214_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446910,0.005148519019645183,446910,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_215_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446912,0.0030480171094785496,446912,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_216_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446914,0.003273828006068864,446914,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_217_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446915,0.003796626412825489,446915,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_218_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446916,0.005924354592774478,446916,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_219_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446918,0.0030984847751744844,446918,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_220_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446920,0.002745128215464191,446920,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_221_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446922,0.004277994011074525,446922,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_222_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446923,0.002521495441116861,446923,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_223_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446924,0.0031900792833026003,446924,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_224_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446925,0.0026346147245100964,446925,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_225_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446927,0.003136280645269695,446927,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_226_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446928,0.002507044785424877,446928,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_227_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446929,0.0031095241412402433,446929,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_228_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446931,0.002963514798770025,446931,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_229_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446932,0.002853824108084622,446932,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_230_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446933,0.005926873611550631,446933,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_231_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446934,0.007244159796899829,446934,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_232_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446937,0.0044685869384742385,446937,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_233_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446938,0.003392302205837281,446938,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_234_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446939,0.002442990843352499,446939,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_235_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446941,0.0028638666100458134,446941,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_236_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446942,0.0026542297044246264,446942,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_237_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446943,0.00337525686266898,446943,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_238_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446944,0.002618014354619559,446944,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_239_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446946,0.0029310684216960594,446946,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_240_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446947,0.003915723007021888,446947,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_241_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446948,0.002855576367916096,446948,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_242_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446949,0.0022765189282239187,446949,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_243_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446952,0.0031185354311886013,446952,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_244_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446953,0.010881986532632615,446953,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_245_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446956,0.007328331283018213,446956,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_246_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446958,0.005118808337249892,446958,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_247_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446959,0.004441133920846337,446959,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_248_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446961,0.0036538798633856083,446961,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_249_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446962,0.003971243689057191,446962,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_250_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446963,0.0031533412254800084,446963,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_251_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446964,0.0027664342487871947,446964,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_252_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446966,0.002859753641722151,446966,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_253_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446967,0.003046773095387436,446967,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_254_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446970,0.0020950651269725016,446970,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_255_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446972,0.002595800555149521,446972,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_256_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446973,0.0026648984746380396,446973,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_257_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446976,0.006255366159500454,446976,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_258_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446977,0.0029219406587655357,446977,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_259_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446982,0.002541784982959145,446982,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_260_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446984,0.0056844414264188795,446984,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_261_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446985,0.004406733845080389,446985,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_262_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446986,0.004930227474160718,446986,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_263_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446988,0.0016758492939662616,446988,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_264_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446989,0.005733302746329735,446989,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_265_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446990,0.002907330143259892,446990,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_266_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446991,0.004258398658536147,446991,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_267_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446993,0.005178728650602657,446993,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_268_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446994,0.002692569975953108,446994,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_269_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446995,0.005224924779436016,446995,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_270_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446996,0.0015868960883328245,446996,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_271_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_446998,0.004355342659685508,446998,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_272_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447000,0.0015608687671529184,447000,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_273_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447002,0.004809986552283663,447002,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_274_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447009,0.0024187187519359842,447009,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_275_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447010,0.002979226255124831,447010,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_276_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447013,0.0015467406718926975,447013,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_277_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447015,0.0015277390474829203,447015,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_278_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447020,0.002561122855313001,447020,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_279_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447024,0.0023669091935231245,447024,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_280_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447025,0.0028712643230705097,447025,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_281_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447027,0.0023100649548723007,447027,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_282_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447031,0.004498071389533882,447031,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_283_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447034,0.002356463555585966,447034,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_284_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447216,0.002674193586775755,447216,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_285_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_447221,0.0062747564576090325,447221,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_286_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_34328679,0.0013885974788812915,34328679,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_287_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_34328680,0.0024596898666336955,34328680,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210000_288_residential,BranchTee_mvgd_33535_lvgd_1164210000_building_34328681,0.0015428649107400315,34328681,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_1_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446538,0.0030774181441895468,446538,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_2_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446544,0.003533432854058956,446544,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_3_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446546,0.0028716925097765646,446546,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_4_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446549,0.004066319215647861,446549,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_5_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446551,0.0025965874579802505,446551,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_6_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446556,0.004519489505504912,446556,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_7_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446557,0.002721921683968776,446557,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_8_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446562,0.0029712627055060664,446562,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_9_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446563,0.002404320263743773,446563,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_10_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446564,0.002607997161643406,446564,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_11_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446571,0.004281046842831025,446571,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_12_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446572,0.004365746718575817,446572,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_13_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446574,0.0037796376274911,446574,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_14_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446575,0.0028534529957223776,446575,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_15_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446576,0.001520736981040659,446576,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_16_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446579,0.0039604506982131304,446579,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_17_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446582,0.0031260821573190836,446582,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_18_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446583,0.004587589269614116,446583,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_19_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446585,0.003045545093103182,446585,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_20_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446586,0.003470583413070438,446586,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_21_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446587,0.0026088648982732885,446587,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_22_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446589,0.002505665703995243,446589,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_23_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446592,0.0026565292064938146,446592,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_24_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446593,0.002490640689295861,446593,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_25_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446594,0.0036226754343631614,446594,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_26_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446595,0.005053081419615496,446595,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_27_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446596,0.0029117251259882663,446596,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_28_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446597,0.0026346798047573376,446597,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_29_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446599,0.0027936989985570056,446599,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_30_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446602,0.0042503989532244706,446602,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_31_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446603,0.005263605172732819,446603,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_32_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446604,0.0023145521346176,446604,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_33_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446607,0.005360237460158289,446607,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_34_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446613,0.002774179314718793,446613,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_35_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446617,0.002832254912968211,446617,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_36_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446619,0.006437590851775739,446619,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_37_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446620,0.007886246681280235,446620,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_38_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446621,0.0034312824331303015,446621,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_39_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446624,0.001537203445739948,446624,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_40_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446628,0.004928986817383946,446628,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_41_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446629,0.005119539715266506,446629,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_42_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446631,0.0026432099657350203,446631,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_43_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446632,0.00442235775300736,446632,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_44_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446633,0.0015476563148156882,446633,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_45_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446640,0.0024922744101055737,446640,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_46_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446644,0.002868462515124797,446644,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_47_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446645,0.003240985724157515,446645,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_48_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446647,0.00280837872638908,446647,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_49_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446649,0.0028095648913715352,446649,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_50_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446652,0.0024525646125805847,446652,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_51_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446653,0.0029895277868002413,446653,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_52_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446655,0.002893419240412091,446655,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_53_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446658,0.0025581392358829326,446658,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_54_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446662,0.002866008318340937,446662,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_55_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446666,0.004608766175462435,446666,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_56_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446669,0.0025047718836154744,446669,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_57_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446676,0.002796498998718072,446676,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_58_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446683,0.0029268462115288134,446683,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_59_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446689,0.004421415638952058,446689,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_60_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446657,0.0030763866739217643,446657,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_61_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446659,0.0023825044351507146,446659,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_62_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446660,0.0026740117752913992,446660,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_63_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446665,0.0026767084734727175,446665,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_64_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446668,0.002517730600464949,446668,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_65_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446670,0.004561610371237217,446670,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_66_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446672,0.0024885947935869538,446672,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_67_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446673,0.0026173645851669445,446673,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_68_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446675,0.0016349968474177858,446675,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_69_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446679,0.0028127734508625046,446679,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_70_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446680,0.002461099163892406,446680,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_71_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_446681,0.0026761214599728004,446681,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_72_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_34328706,0.001656949163751587,34328706,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_73_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_34328707,0.004512658145584184,34328707,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210001_74_residential,BranchTee_mvgd_33535_lvgd_1164210001_building_34328708,0.002287765673014022,34328708,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_1_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446230,0.0016716246303769967,446230,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_2_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446235,0.0015273524398237142,446235,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_3_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446239,0.0015163843521239812,446239,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_4_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446240,0.0036134598647498523,446240,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_5_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446243,0.0028657957745176054,446243,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_6_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446250,0.002753350536542225,446250,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_7_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446255,0.005338678336984905,446255,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_8_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446258,0.002582129571149685,446258,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_9_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446261,0.002702766914374023,446261,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_10_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446262,0.0027038280839609833,446262,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_11_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446264,0.00254162718918508,446264,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_12_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446267,0.00294903599328856,446267,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_13_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446268,0.0029814722984195,446268,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_14_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446271,0.004924852672154435,446271,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_15_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446272,0.001564671829537337,446272,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_16_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446273,0.0030003029580527945,446273,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_17_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446275,0.0015462047928727553,446275,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_18_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446276,0.003058323289743047,446276,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_19_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446279,0.0025604015492394112,446279,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_20_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446287,0.0015705317634660111,446287,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_21_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446288,0.0024961521081703604,446288,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_22_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446291,0.0029186197583715903,446291,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_23_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446297,0.0014697635230263833,446297,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_24_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446300,0.006258033416617544,446300,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_25_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446303,0.0023711107432944204,446303,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_26_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446305,0.0031231628433714084,446305,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_27_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446306,0.0027191265906517472,446306,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_28_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446307,0.005346428051505593,446307,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_29_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446321,0.0016839276379100217,446321,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_30_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446327,0.003361037086901733,446327,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_31_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446334,0.003914347541161544,446334,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_32_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446338,0.004207024776222874,446338,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_33_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446346,0.004950609987784775,446346,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_34_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_445963,0.005957412775823501,445963,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_35_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_445977,0.0026120941181602074,445977,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_36_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446129,0.0016344667791342044,446129,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_37_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446136,0.00277792556101435,446136,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_38_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446139,0.0014974431593723569,446139,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_39_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446180,0.00506922855206989,446180,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_40_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446188,0.00496348657956035,446188,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_41_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446201,0.0039987876124272705,446201,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_42_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446292,0.0018022604430936585,446292,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210002_43_residential,BranchTee_mvgd_33535_lvgd_1164210002_building_446293,0.00463404623594634,446293,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_1_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447049,0.0025163561676244035,447049,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_2_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447058,0.002152224953171455,447058,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_3_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447061,0.0022290049243839254,447061,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_4_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447063,0.002392787372469769,447063,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_5_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447064,0.002559191108291715,447064,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_6_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447070,0.002977084805084658,447070,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_7_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447071,0.0025679270984640453,447071,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_8_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447072,0.005921339724495536,447072,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_9_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447073,0.0023278990086559774,447073,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_10_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447075,0.0026012665211529317,447075,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_11_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447078,0.005729279134218554,447078,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_12_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447079,0.002978989693591209,447079,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_13_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447080,0.0023731956355006827,447080,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_14_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447085,0.0027022555695742708,447085,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_15_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447088,0.002858758843657179,447088,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_16_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447090,0.002561124663097647,447090,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_17_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447091,0.0021400246019808045,447091,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_18_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447093,0.0021864026714259956,447093,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_19_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447094,0.002616638888759216,447094,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_20_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447095,0.002512536318668275,447095,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_21_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447103,0.002741512129663116,447103,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_22_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447151,0.002527930896200205,447151,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_23_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447155,0.0025661939494988255,447155,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_24_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447165,0.00281362775823502,447165,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_25_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447168,0.002844621192963832,447168,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_26_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447175,0.004003174847507163,447175,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_27_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447176,0.0027672573073108356,447176,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_28_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447177,0.002801639046975378,447177,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_29_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447182,0.0037354995323492677,447182,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_30_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447183,0.004391062418242734,447183,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_31_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447185,0.004930764127945507,447185,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_32_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447187,0.0035325769971567443,447187,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_33_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447189,0.003677097241588897,447189,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_34_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447190,0.0077027136694314425,447190,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_35_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447192,0.0028011971727570067,447192,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_36_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447193,0.0025892349395716945,447193,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_37_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447194,0.0032399348847685296,447194,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_38_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447196,0.00552911088806106,447196,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_39_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447197,0.004728296896228724,447197,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_40_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447198,0.0014823355030891766,447198,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_41_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447199,0.002155061754662807,447199,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_42_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447200,0.0028585147927300244,447200,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_43_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447996,0.005371571753376228,447996,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_44_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448005,0.0046509862110952985,448005,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_45_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448012,0.0024272925580001107,448012,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_46_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448019,0.007439237838005248,448019,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_47_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448020,0.004455152516008025,448020,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_48_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448022,0.003737903627672951,448022,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_49_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448024,0.002716364037458339,448024,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_50_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448027,0.004496062682537685,448027,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_51_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448028,0.0026857851019232663,448028,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_52_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448029,0.0024550417940549392,448029,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_53_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448031,0.0032655189113278424,448031,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_54_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448033,0.003900844422878798,448033,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_55_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448034,0.004252693031939721,448034,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_56_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448036,0.003512463326934981,448036,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_57_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448037,0.002467960481387261,448037,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_58_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448038,0.0025399038539079357,448038,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_59_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448039,0.0028491295496149787,448039,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_60_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448040,0.0025920426873812423,448040,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_61_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448041,0.002632193326104805,448041,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_62_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448042,0.002983670306293586,448042,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_63_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448043,0.002148536039474658,448043,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_64_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448044,0.0025273273543835284,448044,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_65_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448045,0.005239101426626719,448045,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_66_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448046,0.002613099762933053,448046,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_67_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448048,0.004684138915455789,448048,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_68_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448049,0.0038067657603926947,448049,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_69_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448051,0.0015496656674492593,448051,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_70_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448052,0.0024377901051820913,448052,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_71_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448053,0.0025743571301934534,448053,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_72_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448054,0.002432569481380582,448054,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_73_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448055,0.002734720282749642,448055,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_74_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448056,0.004361539745450584,448056,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_75_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448060,0.0027907004003398734,448060,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_76_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448061,0.0025572164909488343,448061,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_77_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448062,0.0028519657054689573,448062,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_78_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448063,0.004450018407614555,448063,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_79_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448064,0.0028132902190161936,448064,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_80_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448065,0.001825164041533463,448065,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_81_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448066,0.0024863523658615765,448066,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_82_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448068,0.002635981409702161,448068,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_83_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448069,0.004227654181578527,448069,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_84_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448070,0.0024954132407602136,448070,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_85_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448071,0.004296818214334084,448071,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_86_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448072,0.005220871726260608,448072,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_87_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448073,0.0029332253670331957,448073,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_88_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448074,0.007679477955126749,448074,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_89_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448075,0.003979189677339398,448075,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_90_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448076,0.0031980691749262016,448076,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_91_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448080,0.004375286139895637,448080,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_92_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448083,0.00435878364863091,448083,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_93_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448085,0.007738189118806566,448085,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_94_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448091,0.0027203961719828493,448091,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_95_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448094,0.002499439435420888,448094,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_96_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448097,0.002272197548156115,448097,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_97_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448109,0.0025234925266403373,448109,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_98_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448112,0.004065948361540567,448112,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_99_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448120,0.0027688618453112703,448120,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_100_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448123,0.003467328884198481,448123,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_101_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448130,0.003324546179065688,448130,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_102_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448132,0.0030758680979834302,448132,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_103_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448137,0.0028160594868382855,448137,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_104_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447119,0.005432982714296757,447119,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_105_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447157,0.004992051126490339,447157,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_106_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447174,0.002632541453776556,447174,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_107_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447180,0.0024040209462574537,447180,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_108_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447207,0.004939736937906411,447207,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_109_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447211,0.0024939615896898064,447211,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_110_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_447217,0.001594615328769486,447217,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_111_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448105,0.0026970690354260786,448105,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_112_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448116,0.00151654886052673,448116,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_113_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_448124,0.0029301214007967204,448124,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_114_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_34328718,0.002943017361693498,34328718,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_115_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_34328719,0.0025971181719012058,34328719,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210003_116_residential,BranchTee_mvgd_33535_lvgd_1164210003_building_34328720,0.002826884243041118,34328720,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_1_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446034,0.005473547852214059,446034,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_2_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446086,0.009420192240833885,446086,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_3_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446088,0.003951372520232886,446088,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_4_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446089,0.008251705842682842,446089,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_5_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446092,0.0029622121608054042,446092,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_6_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446097,0.0027558292675462755,446097,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_7_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446098,0.0027954794081779606,446098,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_8_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446099,0.002715758946111966,446099,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_9_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446100,0.0030239704746328347,446100,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_10_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446107,0.00239949864383904,446107,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_11_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446108,0.0014878513122978153,446108,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_12_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446109,0.0027528332518786374,446109,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_13_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446110,0.002764612260119391,446110,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_14_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446112,0.002455073559413712,446112,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_15_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446113,0.00246526894830493,446113,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_16_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446114,0.004354187227042027,446114,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_17_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446115,0.0032127233355182883,446115,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_18_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446116,0.002627921530987281,446116,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_19_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446119,0.0024364962478857486,446119,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_20_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446120,0.0027200526929001875,446120,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_21_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446121,0.0029994068133784814,446121,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_22_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446122,0.0026893691641106192,446122,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_23_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446123,0.0024914087395152868,446123,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_24_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446125,0.0031068269265490255,446125,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_25_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446126,0.00281568062682756,446126,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_26_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446127,0.0030168842170770786,446127,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_27_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446128,0.0024755614410571117,446128,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_28_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446130,0.0026942395942007834,446130,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_29_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446132,0.006382333073278894,446132,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_30_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446133,0.0031977249210786915,446133,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_31_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446134,0.0015490031143766511,446134,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_32_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446135,0.005916509323922524,446135,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_33_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446138,0.0028184940562459944,446138,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_34_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446140,0.005935488996661605,446140,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_35_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446142,0.0027055818933221527,446142,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_36_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446143,0.005345845944849712,446143,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_37_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446146,0.0025877321540213115,446146,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_38_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446147,0.0015862810541709003,446147,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_39_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446148,0.004899127380137817,446148,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_40_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446149,0.0026968650140160766,446149,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_41_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446150,0.005167682569908215,446150,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_42_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446152,0.00268026825969483,446152,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_43_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446153,0.0023742446671050224,446153,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_44_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446155,0.002727620854191467,446155,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_45_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446157,0.0016040096108077592,446157,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_46_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446158,0.00228583237646304,446158,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_47_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446159,0.002709736440692664,446159,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_48_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446160,0.0029526099835328876,446160,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_49_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446161,0.0027705890544126545,446161,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_50_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446162,0.002996968111891583,446162,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_51_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446164,0.0028242812914064204,446164,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_52_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446165,0.0026037715941618182,446165,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_53_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446166,0.0029502167349170784,446166,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_54_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446167,0.0032409043738484637,446167,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_55_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446168,0.0025766527584384006,446168,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_56_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446169,0.0026123655441119948,446169,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_57_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446170,0.005283283166854995,446170,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_58_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446171,0.0029412989332603923,446171,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_59_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446173,0.002667556951086852,446173,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_60_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446175,0.0028143281456577103,446175,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_61_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446177,0.0028972470952716494,446177,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_62_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446178,0.0025830858892272007,446178,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_63_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446182,0.0027149614548283127,446182,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_64_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446183,0.0028858185389971903,446183,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_65_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446185,0.002522647516445999,446185,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_66_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446187,0.0026379844350894726,446187,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_67_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446190,0.004321580990154402,446190,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_68_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446195,0.0032682406602392495,446195,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_69_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446196,0.002938403378768058,446196,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_70_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446198,0.0028954116773464785,446198,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_71_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446199,0.002856120511094418,446199,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_72_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446200,0.002861103023832608,446200,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_73_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446203,0.002560269064450385,446203,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_74_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446205,0.005418510623443976,446205,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_75_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446206,0.0027413517533395578,446206,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_76_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446207,0.002850976330757922,446207,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_77_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446208,0.0023795691093961785,446208,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_78_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446209,0.003123412834162398,446209,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_79_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446211,0.004955542140807838,446211,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_80_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446212,0.00259167493233334,446212,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_81_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446213,0.004783523684131644,446213,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_82_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446214,0.003450163194223773,446214,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_83_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446215,0.0017132807663279113,446215,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_84_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446217,0.0027041573590214293,446217,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_85_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446218,0.0024827724357534132,446218,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_86_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446220,0.0026994806201432924,446220,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_87_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446222,0.002884014628175843,446222,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_88_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446223,0.0014909733563807461,446223,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_89_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446231,0.007702962110692736,446231,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_90_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446238,0.0030098855079491583,446238,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_91_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446242,0.004417901822110933,446242,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_92_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446354,0.0050918640818722475,446354,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_93_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446357,0.005191385209161369,446357,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_94_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446359,0.005947276785570638,446359,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_95_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446360,0.004735274428450795,446360,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_96_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_446362,0.005598118160062349,446362,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_97_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_34328730,0.0027259530437284377,34328730,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_98_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_34328731,0.0025737892275597895,34328731,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210004_99_residential,BranchTee_mvgd_33535_lvgd_1164210004_building_34328732,0.0025430483661714612,34328732,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_1_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446320,0.0026975031619959687,446320,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_2_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446322,0.0024068759547227364,446322,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_3_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446323,0.0026647337079803413,446323,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_4_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446326,0.002749267009282791,446326,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_5_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446329,0.0024389176462910394,446329,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_6_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446330,0.0049056917044408965,446330,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_7_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446332,0.003437970461554129,446332,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_8_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446335,0.001621387198968425,446335,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_9_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446336,0.00294025894057928,446336,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_10_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446339,0.0035237020658216538,446339,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_11_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446341,0.0015504051804967796,446341,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_12_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446342,0.0016196602481219895,446342,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_13_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446343,0.002564219848665843,446343,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_14_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446344,0.0027666374954323485,446344,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_15_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446347,0.003046230759993759,446347,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_16_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446349,0.004269504654378843,446349,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_17_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446352,0.0027317500925769403,446352,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_18_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446353,0.0045616052061382304,446353,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_19_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446355,0.0025777629964657415,446355,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_20_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446363,0.005066535469457862,446363,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_21_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446364,0.0025734281871405704,446364,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_22_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446365,0.00383557745730923,446365,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_23_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446366,0.006660505677363822,446366,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_24_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446533,0.00266690614861444,446533,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_25_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446537,0.0026092502146577473,446537,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_26_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446541,0.002460694220131794,446541,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164210005_27_residential,BranchTee_mvgd_33535_lvgd_1164210005_building_446543,0.0024182585416162076,446543,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164250000_1_residential,BranchTee_mvgd_33535_lvgd_1164250000_building_446376,0.005923834467306447,446376,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164250000_2_residential,BranchTee_mvgd_33535_lvgd_1164250000_building_446369,0.00450143645152417,446369,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164250000_3_residential,BranchTee_mvgd_33535_lvgd_1164250000_building_446370,0.002423778999413935,446370,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164250000_4_residential,BranchTee_mvgd_33535_lvgd_1164250000_building_446377,0.002598226343888951,446377,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164250000_5_residential,BranchTee_mvgd_33535_lvgd_1164250000_building_446380,0.004930396372897605,446380,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164250000_6_residential,BranchTee_mvgd_33535_lvgd_1164250000_building_446385,0.002660966801288835,446385,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1164270000_1_residential,BranchTee_mvgd_33535_lvgd_1164270000_building_446395,0.005520883918393937,446395,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1164920000_1_residential,BranchTee_mvgd_33535_lvgd_1164920000_building_431409,0.005899373591521943,431409,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1165830000_1_residential,BranchTee_mvgd_33535_lvgd_1165830000_building_442272,0.0056682886123556,442272,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1165850000_1_residential,BranchTee_mvgd_33535_lvgd_1165850000_building_431049,0.0016609599922427737,431049,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1165850000_2_residential,BranchTee_mvgd_33535_lvgd_1165850000_building_431050,0.004852590354771288,431050,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1166430000_1_residential,BranchTee_mvgd_33535_lvgd_1166430000_building_431450,0.002574990629584257,431450,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166430000_2_residential,BranchTee_mvgd_33535_lvgd_1166430000_building_431451,0.0028973914597883467,431451,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166640000_1_residential,BranchTee_mvgd_33535_lvgd_1166640000_building_431424,0.00498105669678577,431424,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_1_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431434,0.0028017007699082776,431434,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_2_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431435,0.002775011670420612,431435,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_3_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431442,0.002561915439752617,431442,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_4_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431446,0.0016166041881786226,431446,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_5_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431452,0.0030852107290318294,431452,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_6_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431459,0.0025651033388476366,431459,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_7_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431460,0.004206396183676108,431460,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_8_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431463,0.002395706169907546,431463,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_9_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431581,0.0029651389641466115,431581,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_10_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431588,0.0015467695964470269,431588,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_11_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431594,0.003262930421970309,431594,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_12_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431601,0.0034369609429570425,431601,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_13_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431603,0.005020626520128201,431603,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_14_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431605,0.00279118540313479,431605,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_15_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431608,0.004630692020663926,431608,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_16_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431610,0.003122104514588891,431610,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_17_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431611,0.002609456302107345,431611,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_18_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431614,0.0026193800067918264,431614,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_19_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431616,0.0026256473379031304,431616,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_20_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431617,0.002570804058600025,431617,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_21_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431621,0.002852323905083733,431621,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_22_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431624,0.0030744598337445164,431624,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_23_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431632,0.002779286306342579,431632,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166910000_24_residential,BranchTee_mvgd_33535_lvgd_1166910000_building_431636,0.002624898915059858,431636,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1166920000_1_residential,BranchTee_mvgd_33535_lvgd_1166920000_building_431653,0.0115767770540606,431653,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1167600000_1_residential,BranchTee_mvgd_33535_lvgd_1167600000_building_430847,0.006389223831837977,430847,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1168040000_1_residential,BranchTee_mvgd_33535_lvgd_1168040000_building_431679,0.00513912473760691,431679,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1168900000_1_residential,BranchTee_mvgd_33535_lvgd_1168900000_building_431444,0.006780379360702873,431444,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1170090000_1_residential,BranchTee_mvgd_33535_lvgd_1170090000_building_446407,0.004963590398049996,446407,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_1_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446402,0.002518923221821138,446402,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_2_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446403,0.002574689762568242,446403,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_3_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446404,0.002821763047395116,446404,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_4_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446405,0.0015819387554521977,446405,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_5_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446406,0.0020269088050293856,446406,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_6_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446408,0.004184471629749364,446408,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_7_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446411,0.004756867124767599,446411,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_8_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446412,0.0021998533639540196,446412,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_9_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446413,0.0025251931354819367,446413,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_10_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446415,0.002884893469768548,446415,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_11_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446416,0.0027452281601295977,446416,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_12_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446424,0.0023289490732801145,446424,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_13_residential,BranchTee_mvgd_33535_lvgd_1170540000_building_446426,0.004255316902225318,446426,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1170540000_14_industrial,BranchTee_mvgd_33535_lvgd_1170540000_building_544076,0.17929869919198063,544076,,industrial,0.0,conventional_load +Load_mvgd_33535_lvgd_1171050000_1_residential,BranchTee_mvgd_33535_lvgd_1171050000_building_446434,0.002764028087423916,446434,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1171050000_2_residential,BranchTee_mvgd_33535_lvgd_1171050000_building_446469,0.002609604540448283,446469,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1171050000_3_residential,BranchTee_mvgd_33535_lvgd_1171050000_building_446481,0.0023868317550823537,446481,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1171050000_4_residential,BranchTee_mvgd_33535_lvgd_1171050000_building_446487,0.002487025378259634,446487,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172390000_1_residential,BranchTee_mvgd_33535_lvgd_1172390000_building_431648,0.005573649020119465,431648,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_1_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444482,0.0015997677732643616,444482,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_2_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444500,0.0024835131109482056,444500,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_3_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444502,0.002249510625618832,444502,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_4_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444503,0.0028132034453532055,444503,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_5_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444506,0.005266577687200064,444506,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_6_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444508,0.0026210534988637423,444508,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_7_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444510,0.002774085051662273,444510,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_8_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444512,0.0024569916189226804,444512,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_9_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444516,0.004513739717312144,444516,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_10_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444517,0.005217488586423865,444517,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_11_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444522,0.005208884564530663,444522,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_12_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444527,0.0045542924589918755,444527,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_13_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444528,0.00238609960230089,444528,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_14_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444539,0.0024684591716944942,444539,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_15_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444543,0.00558698065711583,444543,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_16_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444544,0.002797959946966657,444544,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_17_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444551,0.0028738569445072326,444551,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_18_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444557,0.0027583792769163523,444557,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_19_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444560,0.005584874329748771,444560,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_20_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444724,0.0028257667738751952,444724,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_21_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444736,0.0027883143828626466,444736,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_22_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444737,0.0028596699671185554,444737,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_23_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444464,0.0033760633928758615,444464,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_24_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444466,0.00519810087086478,444466,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_25_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444469,0.0031334364835122856,444469,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_26_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444473,0.00237035715535216,444473,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_27_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444478,0.0028257484377737898,444478,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_28_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444479,0.0017146743100347102,444479,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_29_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444480,0.0034354702953892807,444480,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_30_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444485,0.002435385751603459,444485,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_31_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444533,0.0043848777287152285,444533,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_32_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444535,0.004060104568546228,444535,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_33_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444536,0.006961864410803164,444536,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_34_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444537,0.006236014083124382,444537,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_35_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444538,0.005377717188151432,444538,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_36_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444540,0.006570873132086068,444540,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_37_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444541,0.0051735542544370855,444541,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_38_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444542,0.0029275445329119093,444542,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_39_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444552,0.002490348602948124,444552,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_40_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444553,0.0028485810161025175,444553,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_41_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444554,0.004006718363667465,444554,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_42_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444556,0.009036713598593954,444556,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_43_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444559,0.005916540831026346,444559,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_44_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444562,0.004739691621104814,444562,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_45_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444564,0.0025634866628645825,444564,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_46_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444565,0.002488068986510037,444565,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_47_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444567,0.005088752626242241,444567,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_48_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444568,0.0057051818814027625,444568,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_49_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444569,0.007407970911285054,444569,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_50_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444571,0.006273984275310417,444571,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_51_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444572,0.0047309837807219665,444572,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_52_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444573,0.002956080413542518,444573,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_53_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444574,0.006025735155699062,444574,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_54_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444575,0.006987896509699634,444575,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_55_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444576,0.003035921738924818,444576,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_56_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444577,0.00277479912659728,444577,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_57_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444579,0.005473955378524165,444579,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_58_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444580,0.0030761310015218887,444580,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_59_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444582,0.0036688651068227875,444582,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_60_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444583,0.005336891729245164,444583,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410000_61_residential,BranchTee_mvgd_33535_lvgd_1172410000_building_444524,0.12690467226960309,444524,,residential,129.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_1_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_431659,0.00481948155375219,431659,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_2_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_431660,0.004689258045062196,431660,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_3_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_431662,0.002958774270919394,431662,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_4_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_431665,0.0027876008244375377,431665,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_5_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_431667,0.002520751925117625,431667,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_6_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_431668,0.001496482580088176,431668,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_7_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_431669,0.004077713424014054,431669,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_8_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_431675,0.0049127245032221335,431675,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_9_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444706,0.0026895403871420517,444706,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_10_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444713,0.0026082332066671293,444713,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_11_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444727,0.0024921845373831932,444727,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_12_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444728,0.0025155049593112806,444728,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_13_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444729,0.004867310370375464,444729,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_14_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444771,0.009540708462486967,444771,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_15_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444783,0.016949112209067165,444783,,residential,15.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_16_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444786,0.017086463554359763,444786,,residential,12.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_17_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444791,0.008824041680807772,444791,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_18_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444793,0.015790212751146625,444793,,residential,11.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_19_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444794,0.025960756483215896,444794,,residential,18.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_20_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444803,0.009432991356124647,444803,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_21_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444809,0.010277775319126776,444809,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_22_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444810,0.010544950394447744,444810,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_23_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444811,0.008600911987101813,444811,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_24_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444816,0.011075267635800318,444816,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_25_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444824,0.013868628578628599,444824,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_26_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444825,0.007266455979698718,444825,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_27_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444828,0.005465331729254811,444828,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_28_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444829,0.013912063962053196,444829,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_29_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444830,0.014199740348274929,444830,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_30_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444831,0.0071518940841583025,444831,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_31_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444832,0.010973642247183732,444832,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_32_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444834,0.008619997544370137,444834,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_33_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444836,0.011419373761479138,444836,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_34_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444802,0.0027992519964783534,444802,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_35_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444835,0.00261973097526802,444835,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_36_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444658,0.00252089758090907,444658,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_37_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444661,0.006989460501673016,444661,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_38_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444672,0.009723390782532537,444672,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_39_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444676,0.007426189248433392,444676,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_40_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444677,0.00585687877262295,444677,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_41_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444680,0.010671346564788077,444680,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_42_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444682,0.0023992972049785323,444682,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_43_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444683,0.005745050763976564,444683,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_44_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444688,0.003068936535142346,444688,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_45_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444689,0.002630533005035308,444689,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_46_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444690,0.005790130714918748,444690,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_47_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444692,0.012737753914793867,444692,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_48_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444694,0.001471496542864129,444694,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_49_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444695,0.002530416600087889,444695,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_50_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444696,0.009861592303118458,444696,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_51_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444697,0.019253100683235744,444697,,residential,12.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_52_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444698,0.0014778253386533834,444698,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_53_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444699,0.0025690657445358173,444699,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_54_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444700,0.0025367572756048147,444700,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_55_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444703,0.0033107468423560146,444703,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_56_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444704,0.004893485026003987,444704,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_57_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444705,0.00303102832414416,444705,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_58_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444709,0.0024847832087892055,444709,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_59_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444711,0.005395955669185821,444711,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_60_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444715,0.003230491276034926,444715,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_61_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444716,0.0023771978124510654,444716,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_62_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444720,0.002911402565556503,444720,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_63_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444721,0.002904761539533461,444721,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_64_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444723,0.0028295675119650696,444723,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_65_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444733,0.008310650985346788,444733,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_66_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444738,0.01389922455899033,444738,,residential,12.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_67_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444741,0.006071251040995781,444741,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_68_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444746,0.01977812886322523,444746,,residential,17.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_69_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444753,0.018994761026242618,444753,,residential,14.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_70_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444756,0.03234782698528603,444756,,residential,22.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_71_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444760,0.020097245206983232,444760,,residential,13.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_72_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444763,0.015645634399350863,444763,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_73_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444774,0.008194966197286513,444774,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_74_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444776,0.01487023011198702,444776,,residential,12.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_75_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444777,0.005315395620279426,444777,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_76_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444779,0.012395543380443422,444779,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_77_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444780,0.008274488577806341,444780,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_78_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444782,0.005374806138362135,444782,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_79_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444784,0.004558814503155341,444784,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_80_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444785,0.010150743841610993,444785,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_81_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444787,0.008396215498662072,444787,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_82_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444788,0.005038094368393672,444788,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_83_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444789,0.004159923722046922,444789,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_84_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444792,0.005476573050690976,444792,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_85_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444795,0.010269727061884618,444795,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_86_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444797,0.007243031739280983,444797,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_87_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444800,0.003953290321486906,444800,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_88_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444804,0.009370273625160309,444804,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_89_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444805,0.009050215167347003,444805,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_90_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444812,0.005953154151708393,444812,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_91_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444813,0.005189029407513218,444813,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410001_92_residential,BranchTee_mvgd_33535_lvgd_1172410001_building_444814,0.0025548276326671643,444814,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_1_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444641,0.0068960842926491985,444641,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_2_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444650,0.003215311566620872,444650,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_3_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444685,0.004002236349021154,444685,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_4_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444686,0.0041617012908634335,444686,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_5_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444687,0.003860897289055338,444687,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_6_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444693,0.006765604078539532,444693,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_7_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444707,0.004511271316506069,444707,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_8_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444714,0.002375712071727341,444714,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_9_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444718,0.0046060178262912425,444718,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_10_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444731,0.0027964362427653757,444731,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_11_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444732,0.0034599595792182154,444732,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_12_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444740,0.006728294502513985,444740,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_13_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444742,0.014865564994581604,444742,,residential,9.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_14_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444743,0.009281691144506691,444743,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_15_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444745,0.0027229758806721037,444745,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_16_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444747,0.011867565928932138,444747,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_17_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444748,0.0025509592317805555,444748,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_18_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444749,0.011200150432137346,444749,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_19_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444750,0.00830201648936956,444750,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_20_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444751,0.005771954731582105,444751,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_21_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444752,0.016614618332603887,444752,,residential,13.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_22_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444755,0.010154326354268649,444755,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_23_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444758,0.003254737541956504,444758,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_24_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444759,0.002528569818944946,444759,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_25_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444764,0.0035238528867120858,444764,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_26_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444765,0.002922598175866631,444765,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_27_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444766,0.0026298597343823006,444766,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_28_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444767,0.004384064225624714,444767,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_29_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444838,0.0026499119399261135,444838,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_30_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444842,0.002915807361972954,444842,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_31_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444845,0.00248328610484771,444845,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_32_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444487,0.00507413694563761,444487,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_33_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444629,0.002839139989918408,444629,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_34_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444630,0.0025979673141747336,444630,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_35_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444632,0.002573372145816557,444632,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_36_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444636,0.0024877676029841224,444636,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_37_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444638,0.0028048558706247275,444638,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_38_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444639,0.0027167010601672668,444639,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_39_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444640,0.004661998202136423,444640,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_40_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444642,0.00326847412271348,444642,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_41_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444644,0.0025345827689311215,444644,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_42_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444645,0.002326643631347091,444645,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_43_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444646,0.004625382815414782,444646,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_44_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444647,0.0074864210172550984,444647,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_45_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444648,0.009782148948613137,444648,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_46_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444649,0.002691556325276832,444649,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_47_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444651,0.004527662758142566,444651,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_48_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444652,0.0024769314835635177,444652,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_49_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444653,0.005965141829948238,444653,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_50_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444654,0.011247411087872007,444654,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_51_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444656,0.0030505694431431705,444656,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_52_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444657,0.0026469851365849067,444657,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_53_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444659,0.0025721061800547465,444659,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_54_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444660,0.006130222525664563,444660,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_55_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444662,0.010564905237875644,444662,,residential,7.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_56_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444663,0.0035792310120153366,444663,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_57_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444664,0.0034000242870783856,444664,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_58_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444665,0.0026051715942423514,444665,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_59_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444666,0.010964692163658375,444666,,residential,8.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_60_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444669,0.004362145611561805,444669,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_61_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444670,0.004585973110140962,444670,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_62_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444671,0.0025107223359039023,444671,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_63_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444674,0.0024767385671163383,444674,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_64_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444675,0.0016097268588769066,444675,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_65_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444678,0.0027169412372701806,444678,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_66_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444681,0.004558904375877721,444681,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_67_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444684,0.0026044513211885595,444684,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_68_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444691,0.004241410131456707,444691,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172410002_69_residential,BranchTee_mvgd_33535_lvgd_1172410002_building_444717,0.0024988459655472368,444717,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172430000_1_residential,BranchTee_mvgd_33535_lvgd_1172430000_building_444566,0.0031019939434265204,444566,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172430000_2_residential,BranchTee_mvgd_33535_lvgd_1172430000_building_444578,0.0026132133951107758,444578,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172430000_3_residential,BranchTee_mvgd_33535_lvgd_1172430000_building_444591,0.004728281400931762,444591,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172430000_4_residential,BranchTee_mvgd_33535_lvgd_1172430000_building_444597,0.002780832736979406,444597,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172430000_5_residential,BranchTee_mvgd_33535_lvgd_1172430000_building_444600,0.002930480633431294,444600,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172430000_6_residential,BranchTee_mvgd_33535_lvgd_1172430000_building_444604,0.0014990298777812845,444604,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172440000_1_residential,BranchTee_mvgd_33535_lvgd_1172440000_building_444615,0.0025927965335784523,444615,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172440000_2_residential,BranchTee_mvgd_33535_lvgd_1172440000_building_444619,0.0017644940140626767,444619,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172440000_3_residential,BranchTee_mvgd_33535_lvgd_1172440000_building_444620,0.002391571766423086,444620,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172710000_1_residential,BranchTee_mvgd_33535_lvgd_1172710000_building_444985,0.0026203835855250768,444985,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172710000_2_residential,BranchTee_mvgd_33535_lvgd_1172710000_building_444987,0.0026474920910505195,444987,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172710000_3_residential,BranchTee_mvgd_33535_lvgd_1172710000_building_444990,0.002723065753394484,444990,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1172750000_1_residential,BranchTee_mvgd_33535_lvgd_1172750000_building_444519,0.005730150486417727,444519,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1172800000_1_residential,BranchTee_mvgd_33535_lvgd_1172800000_building_444525,0.004426836410339329,444525,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1172800000_2_residential,BranchTee_mvgd_33535_lvgd_1172800000_building_444530,0.00265356443967505,444530,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1173300000_1_residential,BranchTee_mvgd_33535_lvgd_1173300000_building_444973,0.00689915339446751,444973,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1176060000_1_residential,BranchTee_mvgd_33535_lvgd_1176060000_building_445950,0.003281633503658615,445950,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1176060000_2_residential,BranchTee_mvgd_33535_lvgd_1176060000_building_446228,0.0028000298603858553,446228,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176320000_1_residential,BranchTee_mvgd_33535_lvgd_1176320000_building_444616,0.00549901385626151,444616,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1176320000_2_residential,BranchTee_mvgd_33535_lvgd_1176320000_building_34328622,0.0025845078409784308,34328622,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176320000_3_residential,BranchTee_mvgd_33535_lvgd_1176320000_building_34328623,0.0016299938034111208,34328623,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176320000_4_residential,BranchTee_mvgd_33535_lvgd_1176320000_building_34328624,0.0032590374868635102,34328624,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176330000_1_residential,BranchTee_mvgd_33535_lvgd_1176330000_building_444613,0.004598011406350882,444613,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1176460000_1_residential,BranchTee_mvgd_33535_lvgd_1176460000_building_444849,0.004397950594252324,444849,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1176460000_2_residential,BranchTee_mvgd_33535_lvgd_1176460000_building_444857,0.005283063650148031,444857,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1176460000_3_residential,BranchTee_mvgd_33535_lvgd_1176460000_building_445003,0.0050662761814886945,445003,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_1_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_444847,0.003490416101907287,444847,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_2_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_444853,0.004453700090172769,444853,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_3_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_444988,0.0037753325174851066,444988,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_4_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_445010,0.0039454169028454705,445010,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_5_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_445013,0.003146945541658867,445013,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_6_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_445017,0.0032592234304270563,445017,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_7_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_445019,0.002949967260635987,445019,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_8_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_445036,0.002621783327350661,445036,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_9_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_445039,0.002551594797210954,445039,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_10_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_445042,0.0018343900704722224,445042,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_11_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_445048,0.002434916502360454,445048,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_12_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_34328652,0.0028272088695124754,34328652,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_13_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_34328653,0.0016819898218974256,34328653,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_14_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_34328654,0.0026012665211529317,34328654,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_15_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_34328658,0.0014793991443148426,34328658,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_16_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_34328659,0.0025481124874736525,34328659,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1176560000_17_residential,BranchTee_mvgd_33535_lvgd_1176560000_building_34328660,0.002937936453819598,34328660,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1179290000_1_residential,BranchTee_mvgd_33535_lvgd_1179290000_building_444339,0.006222905061894374,444339,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1182190000_1_residential,BranchTee_mvgd_33535_lvgd_1182190000_building_34328685,0.0029999933103685003,34328685,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1182190000_2_residential,BranchTee_mvgd_33535_lvgd_1182190000_building_34328686,0.0025656193322364774,34328686,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1182190000_3_residential,BranchTee_mvgd_33535_lvgd_1182190000_building_34328687,0.002671158574610762,34328687,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1182340000_1_residential,BranchTee_mvgd_33535_lvgd_1182340000_building_446311,0.004817439790122472,446311,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1182340000_2_residential,BranchTee_mvgd_33535_lvgd_1182340000_building_446312,0.0025352087789283937,446312,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1182340000_3_residential,BranchTee_mvgd_33535_lvgd_1182340000_building_446313,0.0024336779116232773,446313,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1182340000_4_residential,BranchTee_mvgd_33535_lvgd_1182340000_building_446318,0.0015105768439500292,446318,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1184650000_1_residential,BranchTee_mvgd_33535_lvgd_1184650000_building_445056,0.004081617464083677,445056,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1184650000_2_residential,BranchTee_mvgd_33535_lvgd_1184650000_building_445057,0.00151654886052673,445057,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1185140000_1_residential,BranchTee_mvgd_33535_lvgd_1185140000_building_444438,0.0054985448652734555,444438,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_1_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422699,0.0022294987078471207,422699,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_2_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422700,0.00266332466897658,422700,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_3_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422706,0.0026386595135271247,422706,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_4_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422707,0.002517667069747404,422707,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_5_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422709,0.0030826354106767147,422709,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_6_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422711,0.006475213432799922,422711,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_7_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422712,0.0024534070402254284,422712,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_8_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422716,0.0015094056577546378,422716,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_9_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422717,0.006462092015332345,422717,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_10_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422718,0.0030449944935511263,422718,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_11_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422719,0.0023718098394423645,422719,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_12_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422722,0.003036535094429571,422722,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_13_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422723,0.0027351288420795444,422723,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_14_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422724,0.003151642682678004,422724,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_15_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422725,0.0026293398671692193,422725,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_16_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422728,0.0030417231781074594,422728,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_17_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422729,0.003003598032951803,422729,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_18_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422733,0.005159565100339625,422733,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_19_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422734,0.0025711261025218885,422734,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_20_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422736,0.0026429468039416123,422736,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_21_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422737,0.0056404921156450365,422737,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_22_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422738,0.0028580148111480444,422738,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_23_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422739,0.005599861897480493,422739,,residential,5.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_24_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422740,0.006793707382129948,422740,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_25_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422741,0.0015333386604226298,422741,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_26_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422744,0.002527947424516965,422744,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_27_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422748,0.0033112948593585776,422748,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_28_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422757,0.0029298871635576426,422757,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_29_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_422765,0.0035354808158074577,422765,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_30_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_444330,0.004913732730544473,444330,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_31_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_444334,0.0029846777588510773,444334,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186110000_32_residential,BranchTee_mvgd_33535_lvgd_1186110000_building_444338,0.005264448633397461,444338,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_1_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444346,0.006170396665588519,444346,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_2_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444353,0.002759271547766425,444353,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_3_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444358,0.06122452977163764,444358,,residential,56.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_4_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444359,0.005001809031497325,444359,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_5_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444360,0.002699636347877763,444360,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_6_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444362,0.017843094772944025,444362,,residential,16.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_7_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444363,0.002869505090355403,444363,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_8_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444364,0.0029229793601719006,444364,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_9_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444365,0.002395874035624636,444365,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_10_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444366,0.0026681775377301875,444366,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_11_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444368,0.0041348358032453495,444368,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_12_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444373,0.004401746425498161,444373,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_13_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444374,0.0029346690122001723,444374,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_14_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444377,0.0026446001521274773,444377,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_15_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444379,0.0025867254762286687,444379,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_16_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444380,0.0025625455818290787,444380,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_17_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444382,0.0087902257777373,444382,,residential,6.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_18_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444386,0.0025523933215144054,444386,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_19_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444421,0.002438492816899326,444421,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186120000_20_residential,BranchTee_mvgd_33535_lvgd_1186120000_building_444422,0.002628743039981226,444422,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186620000_1_residential,BranchTee_mvgd_33535_lvgd_1186620000_building_446611,0.0025776395505999424,446611,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186620000_2_residential,BranchTee_mvgd_33535_lvgd_1186620000_building_446616,0.00265116344341076,446616,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1186620000_3_residential,BranchTee_mvgd_33535_lvgd_1186620000_building_446618,0.0014963841849524662,446618,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1192280000_1_residential,BranchTee_mvgd_33535_lvgd_1192280000_building_444428,0.005236379935970261,444428,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1193510000_1_residential,BranchTee_mvgd_33535_lvgd_1193510000_building_422776,0.005461833924220547,422776,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_1_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444399,0.0045553967571553815,444399,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_2_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444400,0.002376399804657513,444400,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_3_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444408,0.002686986503947735,444408,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_4_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444409,0.002971753906419768,444409,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_5_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444410,0.002458025929994906,444410,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_6_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444412,0.016289937111196865,444412,,residential,12.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_7_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444413,0.002329010021448166,444413,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_8_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444416,0.01595758468477376,444416,,residential,10.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_9_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444419,0.0030018194311154933,444419,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_10_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444423,0.0025459594159607567,444423,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_11_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444424,0.0027980250272138982,444424,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_12_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444425,0.002434748636643364,444425,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_13_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444426,0.0016386441820677347,444426,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_14_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444429,0.002411417626262352,444429,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_15_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444433,0.0030414907486530267,444433,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_16_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444436,0.0024007372345762174,444436,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_17_residential,BranchTee_mvgd_33535_lvgd_1195620000_building_444439,0.0015604373522599962,444439,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1195620000_18_cts,BranchTee_mvgd_33535_lvgd_1195620000_building_34967319,0.012282895658831006,34967319,,cts,0.0,conventional_load +Load_mvgd_33535_lvgd_1195900000_1_residential,BranchTee_mvgd_33535_lvgd_1195900000_building_422764,0.005714601472426075,422764,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1196330000_1_residential,BranchTee_mvgd_33535_lvgd_1196330000_building_445123,0.002390464627455138,445123,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1196330000_2_residential,BranchTee_mvgd_33535_lvgd_1196330000_building_445130,0.0031865264699641213,445130,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1197550000_1_residential,BranchTee_mvgd_33535_lvgd_1197550000_building_448106,0.005194457410039072,448106,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_1_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_422867,0.004484683969468453,422867,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_2_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445124,0.0015023652404523946,445124,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_3_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445125,0.0024427486002099904,445125,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_4_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445127,0.002981074069287572,445127,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_5_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445128,0.003607525424268285,445128,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_6_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445129,0.0015608198278400127,445129,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_7_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445134,0.002776407796676905,445134,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_8_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445136,0.002388471932265801,445136,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_9_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445137,0.0043674987201523414,445137,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_10_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445140,0.0042416632213070895,445140,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_11_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445143,0.002818356664612929,445143,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_12_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445144,0.002594474157729559,445144,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_13_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445146,0.002477474593722043,445146,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_14_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445147,0.002766416170940739,445147,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_15_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445148,0.002856703909025044,445148,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_16_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445150,0.002457689165540928,445150,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_17_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445151,0.00247621766688346,445151,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_18_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445153,0.0025531799660901858,445153,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_19_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445156,0.0016590574280307667,445156,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_20_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445157,0.003941581300337431,445157,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_21_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445159,0.004801924349274238,445159,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_22_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445162,0.002412771140451999,445162,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_23_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445164,0.002700763114221863,445164,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_24_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445166,0.002479638511942811,445166,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_25_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445169,0.0030378075165651158,445169,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_26_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445179,0.0025485083923110366,445179,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_27_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445203,0.002909586258497586,445203,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_28_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445206,0.002892236690998927,445206,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_29_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445219,0.0029306193163391053,445219,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_30_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445189,0.002574136063956793,445189,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_31_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445193,0.002754510876029743,445193,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1197640000_32_residential,BranchTee_mvgd_33535_lvgd_1197640000_building_445198,0.0026813537052470314,445198,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1198790000_1_residential,BranchTee_mvgd_33535_lvgd_1198790000_building_422884,0.0024682507599503526,422884,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1198790000_2_residential,BranchTee_mvgd_33535_lvgd_1198790000_building_422889,0.004355104548622189,422889,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1199190000_1_residential,BranchTee_mvgd_33535_lvgd_1199190000_building_448113,0.004505552518907225,448113,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1199190000_2_residential,BranchTee_mvgd_33535_lvgd_1199190000_building_448118,0.002575539421351668,448118,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1199190000_3_residential,BranchTee_mvgd_33535_lvgd_1199190000_building_448121,0.003221779820082786,448121,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1199190000_4_residential,BranchTee_mvgd_33535_lvgd_1199190000_building_448127,0.0028024236255115636,448127,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1199190000_5_residential,BranchTee_mvgd_33535_lvgd_1199190000_building_448131,0.002611387532618732,448131,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1199590000_1_residential,BranchTee_mvgd_33535_lvgd_1199590000_building_34328667,0.0015486975987715468,34328667,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1199590000_2_residential,BranchTee_mvgd_33535_lvgd_1199590000_building_34328668,0.002796152420576018,34328668,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1199590000_3_residential,BranchTee_mvgd_33535_lvgd_1199590000_building_34328669,0.0028571597290106814,34328669,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1200790000_1_residential,BranchTee_mvgd_33535_lvgd_1200790000_building_422874,0.0059231222001560856,422874,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1200800000_1_residential,BranchTee_mvgd_33535_lvgd_1200800000_building_422898,0.00398754422495151,422898,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1200800000_2_residential,BranchTee_mvgd_33535_lvgd_1200800000_building_445229,0.002497103777658788,445229,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1200820000_1_residential,BranchTee_mvgd_33535_lvgd_1200820000_building_422888,0.006278340519796386,422888,,residential,4.0,conventional_load +Load_mvgd_33535_lvgd_1200820000_2_residential,BranchTee_mvgd_33535_lvgd_1200820000_building_422899,0.0015108743536517033,422899,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1200820000_3_residential,BranchTee_mvgd_33535_lvgd_1200820000_building_422900,0.004468657700330366,422900,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1200820000_4_residential,BranchTee_mvgd_33535_lvgd_1200820000_building_422905,0.003608177001505545,422905,,residential,3.0,conventional_load +Load_mvgd_33535_lvgd_1201610000_1_residential,BranchTee_mvgd_33535_lvgd_1201610000_building_448135,0.0031174763276412363,448135,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1201610000_2_residential,BranchTee_mvgd_33535_lvgd_1201610000_building_448136,0.003283015942402591,448136,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1201610000_3_residential,BranchTee_mvgd_33535_lvgd_1201610000_building_448138,0.003263494450779733,448138,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1201610000_4_residential,BranchTee_mvgd_33535_lvgd_1201610000_building_448144,0.002615415793319001,448144,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1201610000_5_residential,BranchTee_mvgd_33535_lvgd_1201610000_building_448146,0.004556324408933519,448146,,residential,2.0,conventional_load +Load_mvgd_33535_lvgd_1201610000_6_residential,BranchTee_mvgd_33535_lvgd_1201610000_building_448153,0.002508210548266332,448153,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1201610000_7_residential,BranchTee_mvgd_33535_lvgd_1201610000_building_448155,0.002459477064555415,448155,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1201610000_8_residential,BranchTee_mvgd_33535_lvgd_1201610000_building_448158,0.00302516051343953,448158,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1202720000_1_residential,BranchTee_mvgd_33535_lvgd_1202720000_building_448095,0.002522986863449471,448095,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1202720000_2_residential,BranchTee_mvgd_33535_lvgd_1202720000_building_448099,0.0028259581407926782,448099,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1202720000_3_residential,BranchTee_mvgd_33535_lvgd_1202720000_building_448100,0.0029648918141600643,448100,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1202720000_4_residential,BranchTee_mvgd_33535_lvgd_1202720000_building_448101,0.0025043736544835458,448101,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1202720000_5_residential,BranchTee_mvgd_33535_lvgd_1202720000_building_34328715,0.0025957553605333813,34328715,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1202720000_6_residential,BranchTee_mvgd_33535_lvgd_1202720000_building_34328716,0.0014428295978467145,34328716,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1204030000_1_residential,BranchTee_mvgd_33535_lvgd_1204030000_building_34328646,0.0029302159221081896,34328646,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1204030000_2_residential,BranchTee_mvgd_33535_lvgd_1204030000_building_34328647,0.0027120225135044847,34328647,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1204030000_3_residential,BranchTee_mvgd_33535_lvgd_1204030000_building_34328648,0.002490705511288153,34328648,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1205360000_1_residential,BranchTee_mvgd_33535_lvgd_1205360000_building_34328494,0.0028894384986225055,34328494,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1205360000_2_residential,BranchTee_mvgd_33535_lvgd_1205360000_building_34328495,0.0014758197307165781,34328495,,residential,1.0,conventional_load +Load_mvgd_33535_lvgd_1205360000_3_residential,BranchTee_mvgd_33535_lvgd_1205360000_building_34328496,0.0026243617447651688,34328496,,residential,1.0,conventional_load diff --git a/tests/data/ding0_test_network_3/network.csv b/tests/data/ding0_test_network_3/network.csv index d72d25376..a9ade2243 100644 --- a/tests/data/ding0_test_network_3/network.csv +++ b/tests/data/ding0_test_network_3/network.csv @@ -1,2 +1,2 @@ name,srid,mv_grid_district_geom,mv_grid_district_population -33532,4326,"MULTIPOLYGON (((9.958324301952292 47.56337372620775, 9.95832435056617 47.563373713017214, 9.95969687089032 47.56289535126027, 9.959696885600382 47.562895345974155, 9.962281102617194 47.56193832245724, 9.962281355835103 47.5619382505936, 9.962281625445037 47.561938215555074, 9.962281899924701 47.561938218839146, 9.962282167543671 47.56193826030544, 9.96228241686473 47.56193833818181, 9.962282637232663 47.56193844914008, 9.962282819229609 47.56193858843822, 9.962282955077578 47.56193875012306, 9.962283038970847 47.56193892728467, 9.96234680710033 47.56214471142974, 9.962346815438655 47.56214474074743, 9.963302667445936 47.56583348041827, 9.963302684374378 47.565833521042045, 9.963302746467477 47.56583352436823, 9.964192284299155 47.565819946517664, 9.964192335247462 47.56581994304255, 9.964192384786038 47.565819934259565, 9.96520383001564 47.56558233326437, 9.965203883303262 47.56558231698668, 9.965203924748137 47.56558228905387, 9.965458325339037 47.56537691709497, 9.965458356910654 47.565376892524945, 9.965672447359085 47.565216246063486, 9.965672480633518 47.56521621646416, 9.965672506183582 47.56521618352758, 9.96606412043932 47.564589314509135, 9.966064239611967 47.56458916492276, 9.966064398162265 47.564589033192405, 9.966973606157284 47.56396467966941, 9.966973748188868 47.563964595116985, 9.968495473766742 47.56318136439777, 9.968495478897214 47.5631813617703, 9.970137254777377 47.56234475570865, 9.970137299560106 47.56234473073949, 9.971981187563676 47.56122154918547, 9.971981194982504 47.561221544597, 9.973344201454198 47.5603656191038, 9.973344421994184 47.56036550704092, 9.974810266698354 47.55977084708351, 9.97481047907255 47.55977077747813, 9.974810706267533 47.559770734442594, 9.97481094111293 47.55977071933514, 9.97481117619689 47.55977073263257, 9.97481140410005 47.55977077391519, 9.977180376056982 47.56035702405687, 9.977180640950689 47.56035711339002, 9.977180870085379 47.56035724026057, 9.977181052085573 47.56035739836998, 9.979070523979498 47.56244182208794, 9.979070566322175 47.56244185929153, 9.979070619276444 47.5624418896162, 9.982214883456106 47.56388550656317, 9.982215060324304 47.56388560374139, 9.982215210099573 47.56388571996773, 9.983464233524238 47.56504165533922, 9.983464273366634 47.56504168589161, 9.983464320762284 47.565041711007005, 9.98552596644517 47.565941010539454, 9.985526037548413 47.56594103383976, 9.985526114834848 47.56594104486218, 9.9868650933768 47.56601920179752, 9.986865341378907 47.56601923255072, 9.986865576336365 47.56601929451333, 9.986865789781168 47.56601938545217, 9.986865974020652 47.56601950208981, 9.986866122414744 47.56601964022249, 9.986866229615218 47.56601979487186, 9.986866291758517 47.566019960464295, 9.987323495386784 47.568016166737, 9.987323511870066 47.56801620907784, 9.987323574087954 47.56801622089789, 9.989020860590815 47.5682128993555, 9.989020920344078 47.56821290252058, 9.989020979951443 47.56821289827677, 9.99121456866336 47.567917700363466, 9.991214622132318 47.567917689916264, 9.991214672238812 47.567917673512355, 9.993426748660573 47.56702982690553, 9.99342697064202 47.56702975569299, 9.993427208176918 47.56702971339893, 9.993427453141935 47.567029701469735, 9.993427697159602 47.56702972031334, 9.993427931884888 47.56702976928535, 9.993428149290546 47.567029846710994, 9.993428341941605 47.56702994994241, 9.994786137680826 47.56790737186928, 9.994786187850904 47.56790739824388, 9.9947862473053 47.567907383138184, 9.996025093285017 47.56749085538184, 9.996025142924477 47.567490834717105, 9.996025169729572 47.56749079966416, 9.996619083753616 47.56650552697086, 9.996619205065649 47.56650537126237, 9.996619368790398 47.56650523454086, 9.996619568661345 47.5665051220393, 9.99661979702848 47.56650503806369, 10.000638914928954 47.56535601797068, 10.000639153407493 47.565355967097034, 10.000639401729128 47.565355947416805, 10.000639651092841 47.56535595962746, 10.000639892660692 47.565356003296266, 10.000640117871017 47.56535607687547, 10.000640318741922 47.565356177757295, 10.00064048815411 47.5653563023663, 10.00064062010329 47.56535644628607, 10.000640709912918 47.56535660441581, 10.001392074074626 47.567174094849584, 10.001392140600114 47.56717420087107, 10.002455198597433 47.56840101739408, 10.00245528110591 47.568401093115384, 10.00610579497802 47.57110416478845, 10.00610596956389 47.57110432730201, 10.006106086567232 47.57110451202027, 10.006106140151585 47.57110470972893, 10.006275667159974 47.572749484347824, 10.006275676476388 47.57274952270342, 10.00627573355413 47.57274952658809, 10.00817429929036 47.57275813714234, 10.008174400550136 47.57275813233608, 10.009462165201597 47.5726293249071, 10.009462439164999 47.57262931689196, 10.00946270971839 47.57262934717044, 10.009462965329469 47.57262941445188, 10.009463195102889 47.572629515868464, 10.009463389244612 47.572629647097315, 10.00946353947937 47.572629802544824, 10.009463639403464 47.57262997558511, 10.009463684757637 47.57263015884233, 10.009523535016397 47.5732756650804, 10.009523525388625 47.57327584342788, 10.00952346401702 47.57327601698196, 10.009523353314698 47.57327617891859, 10.009523197634419 47.573276322870456, 10.009523003097465 47.57327644317746, 10.009522777352931 47.57327653510919, 10.009522529277 47.57327659505092, 10.008326616196824 47.5734776659346, 10.008326539518185 47.57347768222358, 10.007301589538907 47.57374258068769, 10.007301534618932 47.573742599311984, 10.007301540072719 47.573742640761964, 10.007506754779229 47.5744713134734, 10.007506772808508 47.57447135399759, 10.007506834249332 47.574471346367055, 10.008610969228078 47.57425173653603, 10.0086111304047 47.574251687845866, 10.009864346987241 47.57372725202441, 10.009864393610393 47.57372722840988, 10.009864433357354 47.57372719959432, 10.011203642049066 47.57256514236068, 10.011203649073465 47.572565136154864, 10.011511685524306 47.572288040154355, 10.01151185374551 47.57228791523471, 10.012019015424503 47.57197598553852, 10.012019205372225 47.5719758882421, 10.012019417904487 47.571975815491285, 10.012019646190689 47.57197576962421, 10.012019882893984 47.571975752114994, 10.01305497756311 47.571962437196156, 10.013055185393128 47.57196244558122, 10.013055388735907 47.571962475871274, 10.013903259836457 47.57213695662538, 10.013903270583663 47.57213695887068, 10.015201632184104 47.5724122874698, 10.015201976180498 47.57241239932773, 10.016457274894556 47.572983834672186, 10.016457505056312 47.57298396753739, 10.016457684908511 47.57298413223303, 10.016457805130951 47.572984320224315, 10.018342290943876 47.57718864528994, 10.018342297082604 47.57718865939797, 10.018809420878275 47.578295438823766, 10.018809469328252 47.578295628444174, 10.018809457173422 47.578295820709116, 10.018809384969508 47.57829600682854, 10.01880925601756 47.57829617829332, 10.018809076213063 47.57829632726435, 10.018114655292617 47.57876009128962, 10.018114615637634 47.57876012394212, 10.018114659032827 47.57876015433227, 10.0190390403516 47.579285349306744, 10.019039161239515 47.57928542725842, 10.019631721089384 47.5797187464915, 10.019631884060153 47.57971889323221, 10.019631999676175 47.579719059330834, 10.01963206312391 47.579719237872034, 10.01963207176174 47.57971942142238, 10.019632025230054 47.57971960233996, 10.01963192546615 47.57971977309244, 10.019631776623614 47.5797199265707, 10.018815883030417 47.580398596110236, 10.018815841720862 47.58039863443651, 10.017997575642804 47.58124858566905, 10.01799754756374 47.5812486222645, 10.017997586943654 47.581248653717374, 10.018894898395564 47.58183665466345, 10.018894933163892 47.58183667589168, 10.019436396632962 47.58214454844247, 10.019436443110255 47.582144570535824, 10.019436494502372 47.5821445868866, 10.019913345016764 47.58226348283877, 10.019913394000465 47.58226349221482, 10.019913444530767 47.58226349636978, 10.02063027174555 47.58228462898038, 10.02063034032007 47.58228462611489, 10.020630406503415 47.582284613620196, 10.021322714008326 47.58209898586741, 10.021322723663594 47.582098983219, 10.02192071688673 47.5819312436721, 10.021920968014019 47.58193119222542, 10.021921229167026 47.581931175218436, 10.02192149016009 47.58193119331452, 10.021921740813719 47.581931245807816, 10.02192197135175 47.58193133065098, 10.02192217278255 47.58193144453487, 10.021922337249764 47.58193158301773, 10.021922458338707 47.5819317406983, 10.02206570589163 47.58217413714612, 10.022065709014555 47.58217414247976, 10.022117927682368 47.58226416273668, 10.02211798663702 47.582264292281316, 10.022259974965959 47.582687132844754, 10.022259994210698 47.58268717206788, 10.02226005288421 47.5826871833965, 10.023692609082506 47.582864191036926, 10.024912996272729 47.58301330118408, 10.024913034265914 47.58301330506082, 10.026531945149456 47.58314616301461, 10.026532004502307 47.58314616411772, 10.026532049241288 47.583146137671, 10.02713367669829 47.58271750679224, 10.027133712335807 47.58271747628303, 10.027133698773042 47.582717438477204, 10.026330923390745 47.581125473879084, 10.026330910757457 47.58112545089351, 10.02586850559187 47.58034948123245, 10.025868429651691 47.5803493024154, 10.025868409607844 47.58034911683939, 10.025868446317038 47.580348932436465, 10.025868538210236 47.580348757088466, 10.025868681359688 47.58034859829021, 10.025868869646809 47.58034846282914, 10.025869095023735 47.58034835649523, 10.026840919322044 47.579984592615425, 10.026840969733405 47.579984569317105, 10.026841004017657 47.57998453511469, 10.027821824671548 47.57877585500261, 10.027821963518361 47.5787757162873, 10.029789237453269 47.577157956905324, 10.029789276571531 47.5771579164313, 10.029789301795862 47.577157871170336, 10.030265913620582 47.57590199819093, 10.030360918285936 47.57565165307222, 10.030361004814395 47.57565149118903, 10.030361135253616 47.575651343431936, 10.03036130483018 47.575651215208175, 10.030361507338391 47.575651111210085, 10.030361735367446 47.57565103524349, 10.030361980572595 47.57565099008839, 10.030362233980517 47.575650977397245, 10.030362486317719 47.5756509976345, 10.030613177856283 47.57568784391271, 10.030613191910872 47.57568784587094, 10.032164802409094 47.57589220866952, 10.032164970260572 47.57589221601376, 10.033692500961507 47.5758269045837, 10.033692566115889 47.575826897229, 10.033692621608498 47.57582687295383, 10.034546707234673 47.57536333855531, 10.03454674858715 47.575363311797155, 10.034546782475854 47.575363280590715, 10.035714088051886 47.57406542910228, 10.035714132379505 47.574065370560085, 10.036212339221493 47.573268629722676, 10.036212462103578 47.57326847650519, 10.036212626282596 47.57326834222024, 10.036212825595339 47.57326823190887, 10.03621305255968 47.573268149712106, 10.036213298655472 47.57326809871558, 10.036213554644377 47.573268080833685, 10.036213810916673 47.57326809673769, 10.036214057852003 47.573268145830575, 10.039696022649412 47.57421707170177, 10.039696215770276 47.57421713714659, 10.039696390689654 47.57421722292954, 10.041241531275235 47.57511322904694, 10.041241545316906 47.57511323696518, 10.04137361096443 47.575185650053854, 10.04137365962972 47.575185672183686, 10.04137371332111 47.57518568810649, 10.045083781541882 47.576027898442376, 10.045083977699957 47.576027955205525, 10.045084157919275 47.57602803251126, 10.047555645357464 47.57728723767058, 10.047555690296203 47.577287256927, 10.047555739222686 47.577287271032944, 10.049543242796501 47.577735750793025, 10.049543496800695 47.57773582903411, 10.049543721078095 47.57773594150009, 10.051682743622052 47.57906551411414, 10.05168278696493 47.57906553682974, 10.051682838934594 47.57906554860057, 10.053751331931117 47.57940651636249, 10.053751388173737 47.57940652390651, 10.055820567533562 47.5796216153512, 10.055820809558043 47.57962165657536, 10.055821035930563 47.57962172774172, 10.055821238661727 47.57962182633862, 10.055821410596538 47.579621948886235, 10.056585403782037 47.580280705050434, 10.056585446634568 47.58028073544152, 10.056585507052402 47.58028074497951, 10.059610817301238 47.58055361937039, 10.059610872358848 47.58055362118114, 10.059610927090766 47.58055361674196, 10.061551936819576 47.58028295062508, 10.061552152107481 47.58028293284839, 10.061552368794688 47.58028293904299, 10.064683842085222 47.58054710101814, 10.064684004808193 47.58054710108156, 10.068377866043438 47.58023841371827, 10.068378148651542 47.58023841062333, 10.068378425827445 47.58023844810691, 10.068378685023061 47.58023852447207, 10.068378914504272 47.58023863626168, 10.070109037007644 47.581287526926204, 10.070109080846356 47.581287549310545, 10.07010913313391 47.5812875606367, 10.071355688821564 47.58148116372553, 10.071355754884111 47.58148116917543, 10.071355813165868 47.581481147407246, 10.073755856921926 47.580349470607686, 10.073755904220942 47.58034944320206, 10.073755896062147 47.58034940140032, 10.07297839096315 47.578109130389876, 10.072978358516002 47.5781089829823, 10.072978362417027 47.57810883396708, 10.073217863941686 47.57650161167956, 10.073217928019783 47.57650141218141, 10.073906550017693 47.575130038269435, 10.073906665547215 47.575129868478506, 10.07390683035619 47.57512971852394, 10.073907037332479 47.575129594876834, 10.073907277544293 47.57512950287302, 10.073907540625584 47.575129446482784, 10.07390781522341 47.575129428139604, 10.075247954852529 47.575134675071496, 10.0759914664114 47.57513757894835, 10.075991525694205 47.575137575127066, 10.075991517757785 47.57513753513661, 10.075848925407655 47.574732688581854, 10.075848915433603 47.574732657901386, 10.075642384152475 47.57404002316227, 10.075642366074641 47.57403998297547, 10.075642318489328 47.57403995604325, 10.073686843538573 47.57313464549079, 10.073686649452553 47.57313453591624, 10.073686489495204 47.57313440342225, 10.073686369453096 47.57313425280191, 10.073686293668853 47.57313408950403, 10.073686264884028 47.573133919436025, 10.07368628413991 47.573133748750195, 10.07368635073993 47.57313358362127, 10.073686462274763 47.5731334300229, 10.073686614709564 47.57313329351161, 10.073686802529894 47.573133179025795, 10.073687018941198 47.57313309070708, 10.075216110038918 47.57263659146216, 10.075216158218266 47.57263657177539, 10.075216122161804 47.57263654251134, 10.073420929168226 47.571434637857216, 10.073420776337828 47.57143451545346, 10.073420657985459 47.57143437661485, 10.07342057786737 47.57143422574784, 10.072446522434507 47.56891475797622, 10.07244644671551 47.56891463759767, 10.071460827869846 47.56782434497774, 10.071460713241569 47.56782418429637, 10.071460647653844 47.56782401144485, 10.071460633685836 47.56782383322026, 10.071460671886804 47.56782365663103, 10.07146076075455 47.56782348862123, 10.071460896794479 47.567823335797634, 10.071461074657048 47.56782320416975, 10.071461287348091 47.56782309891363, 10.07221854703662 47.5675214263052, 10.07221878445947 47.56752135196451, 10.072219038774826 47.56752131059668, 10.072219300120043 47.56752130380602, 10.072219558359878 47.56752133185586, 10.072219803479504 47.56752139365838, 10.072220025972898 47.56752148681685, 10.072220217211523 47.56752160771846, 10.073907757979855 47.56882159139932, 10.074778357828542 47.569480910082575, 10.074778464250802 47.56948097495198, 10.076893912176766 47.57051352693886, 10.076893967674495 47.57051354878286, 10.076894028386809 47.570513562885914, 10.07758344183025 47.570624060091994, 10.07758346085952 47.570624063242484, 10.0784982530174 47.570780365248325, 10.07849828580832 47.57078037115372, 10.081016908450126 47.57125734450127, 10.0810169702033 47.57125735189143, 10.081017027681519 47.571257334899265, 10.082522051543611 47.57068810165779, 10.0825221085713 47.570688074213045, 10.082522143295508 47.57068803306784, 10.082966052629837 47.56999790162101, 10.082966055520929 47.569997897057696, 10.083396031448032 47.56930874768918, 10.083396161219692 47.56930858738335, 10.083396336120643 47.5693084481575, 10.083396548932663 47.569308335757555, 10.08339679087289 47.569308254822275, 10.083397051956357 47.569308208691936, 10.083397321408032 47.569308199270324, 10.083397588107529 47.56930822694628, 10.083397841048036 47.569308290577624, 10.083398069790602 47.56930838753824, 10.083740391081465 47.56948869407189, 10.084070840235041 47.56966066275149, 10.084070886247437 47.56966068278547, 10.084070939424258 47.56966069144827, 10.086405539540102 47.56990321019493, 10.086405752783111 47.56990324475197, 10.098439683398249 47.57258110115786, 10.098439750399088 47.572581110946935, 10.098439818939871 47.572581111070996, 10.102982919968252 47.572265377055096, 10.102983178744298 47.57226537623755, 10.102983432840617 47.572265409437925, 10.102983672611588 47.57226547539593, 10.10441322740559 47.57277373356972, 10.104413283602625 47.57277374920992, 10.104413344348114 47.57277374986092, 10.10632568802851 47.572672896617604, 10.106325959386194 47.57267290115603, 10.106326223713276 47.572672942981356, 10.106326469970032 47.57267302034673, 10.107900921838144 47.57330745044559, 10.107901158102747 47.57330757172009, 10.107901348792096 47.57330772547972, 10.108981310622225 47.57440764872603, 10.108981344166905 47.574407677427295, 10.108981389655387 47.57440769718485, 10.111205816085283 47.57520636779975, 10.11120593085186 47.575206400070726, 10.117105296120775 47.5764403690487, 10.11710541852126 47.576440386284816, 10.119865727985195 47.576647750414665, 10.1198657846861 47.57664775104547, 10.1198657894167 47.576647712755296, 10.119830255172968 47.57434758961944, 10.119830274406914 47.574347427301696, 10.119830336489338 47.57434726998768, 10.119830439387963 47.574347122827064, 10.125469172037052 47.56787045311533, 10.125469195011195 47.56787042115037, 10.125469210204853 47.5678703871192, 10.12654304258862 47.564522974160674, 10.126543113708117 47.56452282037106, 10.126543224156903 47.56452267764193, 10.126543370393494 47.56452255054985, 10.12654354772888 47.56452244316996, 10.126543750476884 47.564522358945325, 10.12752219627125 47.56419361216553, 10.127522249149376 47.56419358988821, 10.127522285879415 47.56419355581586, 10.128666204641801 47.56288553444169, 10.128666229390129 47.56288549882931, 10.128666184332815 47.56288547399211, 10.127303561432578 47.56226985525401, 10.127303410042567 47.5622698044359, 10.126562433648042 47.56209679739077, 10.126562193819732 47.562096722579085, 10.126561980570425 47.562096617088386, 10.126561802329425 47.56209648508847, 10.126561666142212 47.562096331797036, 10.126561577391968 47.56209616327335, 10.126561539586797 47.562095986178825, 10.126561554221068 47.562095807513586, 10.127151362591324 47.55953782331633, 10.127151422192165 47.559537663073456, 10.127572893111513 47.55872719757488, 10.12757292939052 47.55872713530182, 10.129797597354772 47.55528843526098, 10.129797729152376 47.55528827714656, 10.129797905091257 47.555288140183876, 10.129798118008308 47.555288029949175, 10.12979835923488 47.55528795093054, 10.129798618949739 47.55528790634511, 10.129798886578932 47.55528789800811, 10.129799151226274 47.55528792625897, 10.130208913676473 47.5553610011023, 10.130208977588 47.555361007790374, 10.1302090184112 47.55536097379095, 10.131038261239842 47.554501278598785, 10.131038289940546 47.5545012409787, 10.13103824761219 47.55450120982864, 10.130391422420391 47.5541130408272, 10.130391253997404 47.554112919083074, 10.130391121634084 47.55411277835031, 10.130391029882373 47.5541126234687, 10.130390981897609 47.55411245976459, 10.13039097932998 47.5541122928677, 10.130391022267771 47.55411212851765, 10.13153992067518 47.55127739209779, 10.131540019779226 47.551277219494395, 10.131540168901296 47.55127706429596, 10.133089075648758 47.54997963500632, 10.133089171456769 47.54997952627996, 10.134163644166135 47.54824010087337, 10.134163680642935 47.54824002223077, 10.134598360245077 47.546875782658276, 10.134598374003504 47.54687574369875, 10.13495005733945 47.545969438144695, 10.13495006129288 47.545969428188414, 10.135598710568928 47.5443723274122, 10.13559881369109 47.54437214976337, 10.137648213556805 47.54171083067347, 10.137648366854807 47.5417106740146, 10.137648564804262 47.54171054236426, 10.137648798768426 47.54171044146653, 10.137649058539116 47.54171037572372, 10.138857440812592 47.54149887892698, 10.138857683414164 47.54149885239211, 10.140875006894944 47.541406720942824, 10.140875202343054 47.54140672179366, 10.140875395486557 47.541406742095354, 10.141869293118964 47.54156274308927, 10.141869304685281 47.54156274494167, 10.142823227930455 47.54171857646706, 10.142823458265317 47.54171862964757, 10.142823670410964 47.541718710443, 10.142823857238836 47.54171881613848, 10.14609237656157 47.5439425870286, 10.146092431259392 47.54394261698052, 10.14609249413648 47.5439426383128, 10.147992804869075 47.54442207570345, 10.14799301033319 47.54442214161752, 10.149964659588614 47.545201184646906, 10.149964715964279 47.545201201930084, 10.149964748503393 47.54520116624931, 10.150902979759286 47.54388691885367, 10.150903029841507 47.54388682149519, 10.15240762483859 47.539332837434614, 10.152407754793071 47.53933260321211, 10.153117737236956 47.5384498903295, 10.15311776074898 47.538449852555644, 10.153117709890168 47.53844983038442, 10.15176707083932 47.537982931369086, 10.151766801374754 47.53798280788696, 10.151278051948731 47.537693810606804, 10.151277970473902 47.537693758152095, 10.150749983585095 47.53732377994209, 10.150749777880238 47.53732359204459, 10.150039464693489 47.536458855352315, 10.15003942498515 47.53645880306059, 10.14957970405689 47.535801460730504, 10.149579651714955 47.53580139904253, 10.149223953709468 47.535449890766394, 10.149223916544095 47.535449860252115, 10.149223872002308 47.53544983467937, 10.148526441941765 47.5351167453317, 10.148526247430814 47.53511663186037, 10.148526088754616 47.535116495127546, 10.148525971843638 47.53511634024352, 10.148525901067318 47.535116172997, 10.148525879070919 47.535115999638755, 10.148525906676525 47.5351158266479, 10.148525982852384 47.535115660489915, 10.14852610475149 47.53511550737484, 10.148526267817907 47.53511537302527, 10.148526465957131 47.53511526246247, 10.148526691763823 47.5351151798186, 10.14852693679859 47.53511512818249, 10.148527191903383 47.53511510948397, 10.149892760309955 47.53510504634555, 10.149892853224053 47.53510504121443, 10.150426769448464 47.53504971252883, 10.150426804978807 47.53504970817289, 10.151213857635666 47.534938138225776, 10.151213911154995 47.534938127350465, 10.151213961187027 47.53493811048771, 10.151580023346291 47.53478717009966, 10.151580086910792 47.534787140317384, 10.152115461380081 47.53450368013224, 10.152115632284168 47.53450360327331, 10.152115818605942 47.53450354518415, 10.152790649381219 47.534334626413994, 10.152790968843835 47.5343345757574, 10.15354936052681 47.53427996042061, 10.15354950693617 47.534279955397515, 10.154644595396096 47.53428344421118, 10.154644653900297 47.53428344069005, 10.15464468461118 47.53428340673774, 10.156321952793288 47.53197016567138, 10.156322087147421 47.531970018196006, 10.15632226069631 47.53196989092118, 10.156322467002243 47.53196978856813, 10.157202061443835 47.531616133879744, 10.157202117433378 47.53161610528131, 10.157202135661521 47.531616059381896, 10.157455511814675 47.53049960591928, 10.157455515496522 47.53049956765323, 10.157455490386416 47.53049953329557, 10.157130382072504 47.530138062040464, 10.157130269929958 47.5301379048061, 10.157130204680849 47.530137735840825, 10.15713018878253 47.530137561508084, 10.15713022283376 47.53013738837347, 10.157130305552124 47.53013722295746, 10.157130433822353 47.530137071489804, 10.158472504049474 47.528858073296945, 10.158472537684307 47.52885803286882, 10.15847255818304 47.528857988580235, 10.158706052567082 47.528074307599475, 10.158706092620196 47.52807420484746, 10.159079876320872 47.527302842823815, 10.159079889321314 47.52730280389664, 10.159079842693023 47.527302779549004, 10.157873530937994 47.52678831594199, 10.157873311927679 47.526788199096046, 10.157873133724953 47.52678805380553, 10.157873004187524 47.52678788647687, 10.15787292902725 47.52678770448829, 10.15787291155823 47.526787515864456, 10.15787295255075 47.52678732892255, 10.157873050197296 47.52678715190561, 10.158492487807923 47.52594592404819, 10.158492509130294 47.52594588712407, 10.158492509934913 47.52594584747342, 10.158421799588055 47.525317045716776, 10.158421788957407 47.52531700565026, 10.158421730628474 47.525317015254686, 10.157239902704852 47.5256006345574, 10.157239649599418 47.52560067687615, 10.157239389183207 47.5256006848188, 10.157239131505559 47.525600658078865, 10.157238886510108 47.52560059768818, 10.157238663651116 47.52560050597724, 10.152177560864638 47.52302443152355, 10.152177357048025 47.523024303026716, 10.152177197224647 47.52302414852201, 10.152177088423207 47.52302397480425, 10.152177035428581 47.52302378951319, 10.152177040571372 47.523023600797565, 10.152177103625396 47.52302341695671, 10.15217722181768 47.523023246075596, 10.155050808037718 47.51979853092518, 10.15505083505401 47.51979849244101, 10.155050813534112 47.519798452395776, 10.154328683782769 47.51878129094861, 10.154328597973736 47.51878113433383, 10.154328556319568 47.51878096965675, 10.154328560255783 47.5187808025926, 10.154328609646713 47.518780638898804, 10.154328702790243 47.51878048421668, 10.15664311863796 47.51577008033765, 10.156643263234733 47.515769930701836, 10.156643448603102 47.51576980342349, 10.156643667418058 47.515769703532115, 10.156643911032978 47.51576963497498, 10.15664416982122 47.515769600461205, 10.15664443355654 47.51576960135462, 10.156644691817242 47.51576963761991, 10.15664493439795 47.51576970782404, 10.160943161379178 47.517373109117266, 10.160943215654049 47.517373125153576, 10.160943274268424 47.51737311951108, 10.164448421530581 47.516808991500405, 10.164448480933727 47.51680897752795, 10.164448495212325 47.51680893599153, 10.164984699196363 47.51398938778446, 10.164984701186171 47.51398934732021, 10.164984653844135 47.5139893226718, 10.161322114848195 47.51243275610736, 10.161321908902092 47.512432648133135, 10.161321737996555 47.51243251495553, 10.161321608710132 47.512432361700846, 10.16132152601936 47.51243219426821, 10.160541704739755 47.51012102558922, 10.160541686161888 47.51012098796439, 10.160541630716011 47.51012100059423, 10.1525149133481 47.51256642953008, 10.152514859986569 47.5125664502714, 10.152514855815367 47.51256649189708, 10.152583615197324 47.51410101988747, 10.152583598126917 47.51410119369628, 10.152583532024549 47.514101362021144, 10.152583419366184 47.51410151855716, 10.152583264371684 47.51410165744097, 10.152583072846664 47.514101773470394, 10.15258285196505 47.514101862299334, 10.152582610000406 47.514101920600545, 10.152582356015989 47.5141019461902, 10.152582099525292 47.514101938109825, 10.152581850135645 47.51410189666206, 10.15258161718845 47.51410182339944, 10.152581409409187 47.51410172106615, 10.1479087668702 47.51129373485585, 10.147908712104595 47.51129370829281, 10.147908646172178 47.511293699058214, 10.130598191448078 47.51012204802216, 10.13059795222421 47.510122016550895, 10.13059772552312 47.5101219559228, 10.130597518994067 47.51012186818358, 10.123465483686072 47.506432077569066, 10.123465295828376 47.50643195923148, 10.123465145026127 47.5064318185857, 10.12346503691091 47.506431660884076, 10.123464975520202 47.506431492015835, 10.12346496314658 47.50643131828723, 10.12346500025214 47.50643114618599, 10.123465085451194 47.50643098213914, 10.12472475119501 47.50459436726005, 10.124724901268161 47.50459419925551, 10.12472510148463 47.504594057344406, 10.12472534230602 47.504593948287436, 10.129444478188882 47.502930147788916, 10.129444525161299 47.502930126828055, 10.12944447609716 47.50293010820744, 10.127831415775365 47.50245767467947, 10.127831190536986 47.502457590262225, 10.127830993559463 47.50245747792243, 10.127830832255889 47.50245734188788, 10.127830712696802 47.5024571872781, 10.127830639381703 47.50245701991174, 10.127830615069762 47.50245684608749, 10.127830640675915 47.502456672347094, 10.128347353750462 47.50069828337744, 10.128347425608101 47.50069812073424, 10.128347541199632 47.50069797014133, 10.129081791596429 47.49992853107122, 10.12908195013002 47.49992839553754, 10.129082143951912 47.49992828309387, 10.129082365898393 47.499928197896224, 10.129082607766225 47.49992814309351, 10.129082860615908 47.49992812071124, 10.129083115102027 47.499928131576674, 10.129083361818703 47.49992817528823, 10.130326307291991 47.50023764385684, 10.13032636600405 47.500237653955, 10.130326375920792 47.50023761340721, 10.130427505734204 47.49911493499072, 10.130427503688765 47.49911489481543, 10.130427448881326 47.49911487956362, 10.124192578704891 47.49783560859853, 10.124192395552104 47.497835589462184, 10.120281630113357 47.49780400382071, 10.120281618561231 47.497804003693034, 10.118572154364129 47.49778004433676, 10.11857186502362 47.497780018484775, 10.118571591022377 47.49777995031435, 10.118571345627167 47.497779843126196, 10.118571140719686 47.497779702110236, 10.11795285594663 47.49724806817619, 10.117952706287396 47.497247906921224, 10.117952610014763 47.49724772789519, 10.117952571445022 47.497247539124494, 10.11795259230742 47.49724734907248, 10.118389165337543 47.49562306902068, 10.118389170160265 47.495623025742916, 10.118389110939004 47.495623009363534, 10.115133224593706 47.494982661491136, 10.115132963824584 47.49498258904892, 10.115132731494432 47.49498248085276, 10.115132538090982 47.49498234178683, 10.113263272419347 47.493313770198206, 10.113263223110803 47.493313735074736, 10.113263156334776 47.49331371776287, 10.110814332121464 47.492882726759326, 10.110814097858764 47.49288266911106, 10.110813883623525 47.49288258273696, 10.108674875945821 47.49182378771557, 10.108674818574073 47.49182376503842, 10.10867475262902 47.49182375981327, 10.105414543773534 47.491793984463605, 10.105414280342597 47.491793964062516, 10.105414028158823 47.49179390850098, 10.105413797303102 47.491793820000055, 10.105413597003711 47.491793702097496, 10.10451596644513 47.4911478225638, 10.104515806674188 47.491147682106664, 10.104515690611024 47.49114752310304, 10.104515622766971 47.4911473517333, 10.10451560577911 47.491147174658586, 10.104515640307746 47.49114699876173, 10.104515725010776 47.491146830879785, 10.104515856595809 47.49114667753829, 10.104516029948176 47.49114654469758, 10.104516238329698 47.49114643752114, 10.104516473640668 47.49114636017489, 10.104516726734595 47.49114631566523, 10.108312066649841 47.490744276422596, 10.108312123723179 47.490744266721386, 10.108312172030807 47.490744243924865, 10.109284102008736 47.4901907495798, 10.109284154476304 47.490190711726825, 10.109284192476311 47.49019066660717, 10.109726676032484 47.48948327343471, 10.109726793223677 47.48948312597962, 10.109726948646955 47.48948299581967, 10.10972713691715 47.489482887464725, 10.109727351511008 47.48948280466911, 10.10972758499316 47.48948275030157, 10.109727829273812 47.48948272624585, 10.109728075889024 47.48948273333544, 10.109728316293957 47.489482771324695, 10.111420847714543 47.48986593869738, 10.111420958369632 47.48986596753774, 10.113325332063994 47.490429803420454, 10.113325420123457 47.49042982461086, 10.115469734704773 47.490832769778805, 10.115469748238173 47.49083277221762, 10.118872043803627 47.49141980151797, 10.11887211006604 47.491419810536165, 10.120077411084896 47.491540831728216, 10.120077466265581 47.49154083355777, 10.120077447769722 47.49154079822564, 10.117245544884062 47.48745181355199, 10.117245511626887 47.48745177577209, 10.117245468053138 47.48745174318186, 10.115609661970057 47.486448710133395, 10.11560955435222 47.48644863603737, 10.112539691352179 47.48407478194392, 10.112539650102756 47.4840747551522, 10.11253960263968 47.484074733616055, 10.110544853303942 47.48333114888766, 10.110544635746416 47.48333104743867, 10.110544452104376 47.48333091874582, 10.11054430965527 47.48333076790903, 10.110544214044134 47.48333060090572, 10.110544169059883 47.483330424353944, 10.11054417648519 47.48333024525022, 10.111069265452471 47.48055698264413, 10.111069317178922 47.48055682420163, 10.11106940997501 47.48055667463891, 10.111069540823946 47.48055653881825, 10.111069705471861 47.48055642115514, 10.111069898566107 47.480556325474765, 10.111070113829228 47.48055625488767, 10.117801740635922 47.47883740998739, 10.117802024857923 47.47883736092825, 10.117802318010337 47.47883735548741, 10.123365801770799 47.47915329501423, 10.123365857905014 47.47915329454556, 10.123365848721784 47.479153256948145, 10.122533787923937 47.477030105822244, 10.122533744448065 47.47702991092413, 10.122322080883452 47.473490121018855, 10.122322093614736 47.4734899548733, 10.122322151167046 47.47348979315547, 10.122322251574037 47.47348964139069, 10.12232239140514 47.473489504764224, 10.122322565882836 47.473489387944106, 10.122322769045821 47.47348929492169, 10.122322993952752 47.47348922887518, 10.122323232919353 47.4734891920612, 10.127267605033301 47.47304824058722, 10.12726786161291 47.47304823472167, 10.127268115043787 47.4730482625443, 10.127268355821329 47.47304832301171, 10.127268574915476 47.473048413856105, 10.130436427379646 47.474667272084744, 10.130436474883268 47.474667292292814, 10.130436526757675 47.47466730672061, 10.139288261888478 47.476547932177056, 10.139288326331382 47.47654794105376, 10.139288386425648 47.47654792292801, 10.140145758049027 47.47621377474213, 10.140145810038014 47.47621374948713, 10.140145831966448 47.47621370871989, 10.14028879449578 47.47583391195128, 10.140288803639148 47.47583387414275, 10.140288783648886 47.47583383831326, 10.139775840041656 47.47511208986318, 10.139775754191662 47.47511193344158, 10.139203208357344 47.47367278400252, 10.139203168614326 47.47367263568424, 10.139203165889649 47.47367248494132, 10.139203200259773 47.47367233600269, 10.13981939115739 47.4719571873348, 10.139819400034824 47.471957146377214, 10.139819397587235 47.4719571050123, 10.13965033780613 47.47110101450459, 10.139650333958505 47.471100796712506, 10.139650407274358 47.47110058466682, 10.140196241762718 47.47009114442338, 10.14019635302868 47.47009098752421, 10.140196506707477 47.470090848107894, 10.140782403256736 47.4696546261247, 10.140782645086114 47.469654484769116, 10.140782929653778 47.46965438674594, 10.142800088087421 47.46915621277288, 10.14280014060807 47.469156196029715, 10.142800172952796 47.46915616332214, 10.144658208449533 47.466853434990234, 10.14465838062391 47.46685326918169, 10.144658603110075 47.46685313376768, 10.146692369976831 47.46587166451691, 10.146692690874191 47.46587155081803, 10.1491345464452 47.46527756654458, 10.149134597399389 47.465277550670095, 10.149134637462474 47.465277524040566, 10.149814044445577 47.46474070609088, 10.149814077260965 47.46474067457092, 10.149814032823883 47.46474065050196, 10.147978273877184 47.46392614667239, 10.147978137947067 47.46392607753273, 10.14682302160489 47.46325593271413, 10.146822913700865 47.46325588177911, 10.145245391855338 47.46265963083152, 10.145245191816787 47.46265953800979, 10.145245020004007 47.462659422009, 10.145244882158357 47.4626592867055, 10.145244782886135 47.462659136620644, 10.145244725504657 47.4626589767697, 10.145244711931419 47.46265881249433, 10.1453366783275 47.46089906100555, 10.145336713262468 47.46089888523099, 10.145336798274428 47.460898717519754, 10.145336930062143 47.46089856438443, 10.14533710350805 47.46089843177162, 10.147558850763303 47.45950442973681, 10.147559166296439 47.459504282805675, 10.150095189442371 47.4586590425529, 10.150095240315677 47.458659021128874, 10.150095218803093 47.458658983192905, 10.149715021538709 47.45814614157944, 10.149714923148274 47.45814596469109, 10.14971488134498 47.458145777743184, 10.149714897973858 47.45814558898688, 10.149714972300988 47.458145406753246, 10.149715101045832 47.458145239085326, 10.150528391947711 47.45731295624565, 10.150528548500786 47.45731282475718, 10.150528738499835 47.45731271547452, 10.15052895523902 47.45731263225464, 10.151669029074611 47.45696639717835, 10.151669281440551 47.456966340373775, 10.151669545419164 47.45696631892323, 10.151669810386627 47.45696633368994, 10.151670065679301 47.45696638407968, 10.151670301022891 47.45696646806446, 10.151670506945985 47.456966582264315, 10.151670675161185 47.45696672208327, 10.151670798898664 47.4569668818943, 10.152167811468212 47.45780313657575, 10.152167837389547 47.45780317061493, 10.15216788925435 47.457803155516665, 10.157466942393787 47.45584346196656, 10.15746700547041 47.45584344010041, 10.160294726468871 47.4549269610134, 10.160294777669801 47.45492694021017, 10.160294794209179 47.45492690127558, 10.160579912519275 47.45390364602185, 10.160579918137069 47.453903602224976, 10.160579898167226 47.45390356040815, 10.15891528488912 47.45132885287607, 10.158915254050692 47.45132881594127, 10.158915192444107 47.45132882315101, 10.155798600290485 47.451920892672845, 10.155798309116502 47.451920924824776, 10.151904208569583 47.45205220284551, 10.151903941365926 47.45205219347841, 10.151903682382722 47.45205214784273, 10.151903442178547 47.45205206779897, 10.151903230546404 47.45205195661049, 10.151903056114392 47.452051818810396, 10.151902925993987 47.45205166001669, 10.150436006211534 47.44973854261377, 10.150435973175686 47.44973850273835, 10.15043591175468 47.449738483951734, 10.149536716979293 47.44953793689103, 10.149536714645587 47.44953793636892, 10.148968136894396 47.44941032814724, 10.148968075064966 47.449410318807274, 10.14896802220184 47.44941034251161, 10.147305935388568 47.45033031817212, 10.147305928294344 47.45033032207118, 10.146454981489034 47.450794717734844, 10.146454892437223 47.45079476231032, 10.14419672120844 47.451829141943456, 10.144196494231394 47.45182922532578, 10.144196247769374 47.451829277248486, 10.14419599116825 47.45182929574268, 10.144195734158352 47.45182928010704, 10.144195486485527 47.451829230934486, 10.144195257541543 47.45182915008965, 10.144195056007982 47.45182904063816, 10.14381351107139 47.451576732175575, 10.143813503321063 47.451576727008195, 10.142389888501512 47.45061972055708, 10.142389832888048 47.45061969055649, 10.14238976903576 47.450619669439305, 10.14040746557989 47.450137180743326, 10.140407240920393 47.4501371093043, 10.140407039802426 47.450137010673075, 10.140406869274509 47.4501368883064, 10.140406735313125 47.45013674649282, 10.140406642613202 47.45013659020246, 10.140406594423569 47.450136424912806, 10.140406592433107 47.45013625641673, 10.140560999760106 47.448915614082274, 10.140560998960467 47.44891557220852, 10.140560947090014 47.44891554957836, 10.13313729076725 47.446339455034874, 10.133137066507944 47.44633935669035, 10.133136875819611 47.446339229804906, 10.133136726441887 47.446339079528485, 10.133136624437679 47.44633891196049, 10.133136573947118 47.44633873390216, 10.1331365770195 47.44633855258048, 10.133136633530127 47.446338375354905, 10.13383568480382 47.44487707914353, 10.133835774289338 47.444876935700584, 10.134290281964699 47.444294552237295, 10.134878582961047 47.443532857239006, 10.136202227296215 47.4418123168404, 10.136202258606225 47.441812278450485, 10.137377481782124 47.440450663364174, 10.137377594783327 47.440450552424444, 10.137963780645634 47.439958425238906, 10.137963786990912 47.43995841995281, 10.138136952043785 47.43981527035163, 10.138137001605324 47.439815231680804, 10.13896239039544 47.4392070829533, 10.138962437906455 47.439207043711974, 10.139868919384718 47.438365597403525, 10.139869005002513 47.438365489546726, 10.140352008885632 47.437486714799256, 10.140352037396335 47.43748664719781, 10.140636959630376 47.43653528718367, 10.14063696228899 47.43653527852434, 10.140704664411903 47.4363200612316, 10.140704745387703 47.43631988988649, 10.140704874911464 47.436319732909354, 10.141184664693414 47.43585438566737, 10.141184906037736 47.435854208131744, 10.142235058299807 47.43526479857276, 10.142235088563693 47.43526478208693, 10.14304580172623 47.434836246054516, 10.143045854622256 47.43483621085072, 10.143045894453957 47.434836168440896, 10.143393590030573 47.43435220796405, 10.143393595438248 47.4343522002522, 10.143540714288557 47.43413716283658, 10.143540882497033 47.43413697880969, 10.144206853174294 47.43357324013259, 10.144206856403482 47.43357323740992, 10.144366457347832 47.43343920401007, 10.144366633890655 47.43343908167248, 10.144366841349033 47.433438984280855, 10.144367072205895 47.43343891536405, 10.14622319486185 47.43302285135781, 10.146223559993798 47.4330228066809, 10.147468166543812 47.43299093262556, 10.147468226394885 47.43299092731168, 10.147468283796318 47.43299091462732, 10.149047103589416 47.432528876707806, 10.149047146402555 47.432528864776174, 10.151660307078508 47.43183653805796, 10.151660405166133 47.4318365054966, 10.153598850051571 47.43105214076286, 10.153598953576529 47.43105208898257, 10.15504820232568 47.43016729654133, 10.155048209528069 47.43016729207849, 10.155872470996389 47.42964894485205, 10.155872673426089 47.42964884016454, 10.155872901569584 47.42964876370225, 10.156907134260692 47.429382593717555, 10.156907191619318 47.429382574138245, 10.156907196151868 47.42938253062897, 10.156883908047302 47.42890012240539, 10.156883898938553 47.42890007713273, 10.156883876384054 47.4289000340867, 10.154878247481452 47.42604312196547, 10.1548781593674 47.426042956487024, 10.154878120318592 47.426042782517584, 10.15481729000905 47.42527016747954, 10.154817278836838 47.42527012062951, 10.154817253251842 47.425270076468564, 10.153492164604428 47.42354994551532, 10.153492068275115 47.42354985186811, 10.153202433611629 47.423333378317096, 10.153202386500903 47.42333334945323, 10.153202323677323 47.42333334350847, 10.152435550555486 47.42331293893096, 10.152435305222408 47.423312916670625, 10.152435070271066 47.42331286377422, 10.152434853907685 47.42331278208925, 10.152434663689242 47.42331267446877, 10.152434506259562 47.423312544671646, 10.152434387117209 47.42331239723133, 10.151740751957254 47.42222367810441, 10.151740670482265 47.422223503126716, 10.150790778042833 47.419108295651306, 10.150790750942523 47.41910813651056, 10.150790765780059 47.41910797662335, 10.15079082208538 47.419107821054816, 10.150790918074781 47.41910767473323, 10.150791050707396 47.41910754229398, 10.151425408161051 47.418581649037215, 10.151425500971202 47.41858157978298, 10.151869255194562 47.418283232202384, 10.151869362209567 47.41828313802907, 10.152123820240082 47.417984191799306, 10.152123868113362 47.4179841225427, 10.15229430801869 47.41767061645896, 10.152294322885716 47.41767057869773, 10.152294279743815 47.41767055285207, 10.150086439625207 47.416576459226306, 10.150086241347896 47.41657633844891, 10.150086082626734 47.41657619315046, 10.150085969878427 47.41657602920499, 10.150085907661104 47.4165758532404, 10.150085898490039 47.41657567237051, 10.15029973700521 47.41438485991059, 10.150299767977389 47.41438471719874, 10.150299832091 47.414384579681595, 10.151665672409699 47.4121071777742, 10.151665689630216 47.412107137861966, 10.151665634034801 47.41210712049541, 10.148917546065773 47.411469435935864, 10.148917281868371 47.4114693515069, 10.148917051313552 47.411469229771555, 10.144227788036012 47.40837258306174, 10.144227584508954 47.40837241084722, 10.143006529790155 47.40702989297069, 10.143006487151968 47.40702985575064, 10.143006425520383 47.40702983407104, 10.14165919035758 47.40667502247905, 10.141659183152568 47.40667502061419, 10.140549841631087 47.40639290257943, 10.140549598392122 47.40639282050398, 10.140549384903984 47.406392706414216, 10.138271148443748 47.40489397286649, 10.1382709266129 47.40489378083949, 10.137378698097821 47.40385774995793, 10.137378666364132 47.40385771092153, 10.137247627161354 47.40368663575836, 10.137247590213029 47.40368659785292, 10.137247527492175 47.403686582059116, 10.13708900022989 47.40365911030868, 10.137088998122996 47.4036591099423, 10.135199753996298 47.403329447976354, 10.135199518054472 47.40332939012532, 10.135199302397842 47.40332930305631, 10.135199114767381 47.403329189894606, 10.135198961898043 47.40332905470217, 10.135198849277028 47.403328902331666, 10.134519888585872 47.40214149750172, 10.134519817758003 47.40214132383792, 10.134519799234521 47.402141144059584, 10.13451983375802 47.40214096537382, 10.134519919944486 47.40214079494395, 10.135175059639762 47.401173211557925, 10.135175171397892 47.40117307789721, 10.135175314980179 47.40117295911717, 10.138140883541693 47.399107731737395, 10.138140923042538 47.39910769814476, 10.138140928142292 47.39910765527577, 10.137984672640382 47.39328556683304, 10.137984665053208 47.39328552486579, 10.137984602876715 47.39328552523396, 10.121887979951625 47.39452415699871, 10.121887742547813 47.39452416067182, 10.121887508001413 47.3945241354403, 10.1218872838613 47.3945240821162, 10.121887077341425 47.394524002415785, 10.12188689508862 47.39452389890418, 10.120295216978363 47.39344090731738, 10.120295046023987 47.39344076429937, 10.12029492149397 47.393440600598296, 10.12029484860983 47.39344042307808, 10.120294830427554 47.39344023918215, 10.12029486770953 47.39344005662116, 10.121294744415852 47.39066803135409, 10.121294752662282 47.390667993495946, 10.12129469777125 47.39066798506166, 10.110242524560794 47.38969443845755, 10.110242465490241 47.38969443690992, 10.110242406972478 47.389694442609326, 10.104679124848452 47.39059062353056, 10.104679071272425 47.39059063555231, 10.104679021520408 47.39059065364326, 10.098279912707525 47.39342387944035, 10.098279627407328 47.39342397477078, 10.098279316914411 47.39342402109682, 10.09658532568469 47.3935344896899, 10.096585216301081 47.39353449372547, 10.092973201496962 47.39356589529146, 10.09297314032029 47.393565899794986, 10.092973085971838 47.39356591941915, 10.090769335935663 47.39455457609127, 10.090769125081255 47.39455465305873, 10.090768897294904 47.39455470295186, 10.090768660022182 47.394554724139795, 10.090768421018737 47.39455471593001, 10.090768188096813 47.394554678590815, 10.088313198595243 47.39399763655386, 10.088312955056663 47.393997561971474, 10.088312738497166 47.39399745565844, 10.088312557735039 47.39399732194384, 10.088312420130915 47.39399716627252, 10.088312331288037 47.39399699498342, 10.087420284659684 47.39149656192399, 10.087420265896283 47.39149652539391, 10.087420216807283 47.39149654496191, 10.0828902747077 47.3937341310551, 10.08289022655381 47.393734160415526, 10.082890225411267 47.39373420438898, 10.082952239451041 47.39422849796635, 10.082952248291459 47.39422854227848, 10.083144830772923 47.39492997361354, 10.083144849113769 47.394930015965784, 10.083144899860365 47.39493004350516, 10.083724594425963 47.39518367983151, 10.083724768777824 47.39518377087671, 10.08372491856495 47.39518388028916, 10.083725039655924 47.39518400505106, 10.084065295598931 47.395607296581275, 10.084065385737922 47.39560743538128, 10.08433869806716 47.39614745094648, 10.084338704363256 47.396147463695016, 10.084897962909752 47.39730850990817, 10.08489798624088 47.397308546676975, 10.084898027261833 47.397308575409845, 10.085315078995011 47.39755203471938, 10.085315183562692 47.397552102862996, 10.085719270381475 47.39784591567686, 10.085719432008966 47.39784605994739, 10.08614253054092 47.39831521896448, 10.086142640836002 47.39831537219295, 10.086142706630422 47.398315536820704, 10.086308067169647 47.39896885577857, 10.086308079640169 47.398969098951945, 10.086257447716674 47.39930974531947, 10.086257413685402 47.399309876399904, 10.086257351596357 47.39931000263525, 10.086087903036987 47.39958500478841, 10.086087777129944 47.39958516273067, 10.086087607601455 47.3995853005267, 10.086087401204782 47.39958541268729, 10.086087166161835 47.39958549474449, 10.085728289835641 47.39968137311188, 10.085728048422292 47.39968142020351, 10.085727798274867 47.39968143544598, 10.085393208357107 47.39968015497819, 10.085393149127695 47.3996801584196, 10.085393091788331 47.3996801690837, 10.08488977161913 47.399808152085306, 10.08488971352081 47.39980817151289, 10.084889662193474 47.399808198345475, 10.084384687788852 47.40013105968675, 10.084384651672305 47.400131086913106, 10.084384622601085 47.40013111779338, 10.084094653075534 47.400503319361945, 10.084094514770669 47.40050346218689, 10.084094339236518 47.40050358465072, 10.08409413280851 47.400503682333415, 10.083758730757234 47.40063210665366, 10.083758468491629 47.40063218307845, 10.083758188234382 47.40063221951655, 10.083208069205481 47.400662567050276, 10.083207998271167 47.40066257642974, 10.083207932121523 47.40066259620942, 10.08280000797995 47.40082340867954, 10.08279996354264 47.40082342970787, 10.082799924795413 47.40082345541813, 10.0823665396577 47.40116282775789, 10.08236647013116 47.401162878156455, 10.082174272705021 47.40129189539621, 10.082174018368972 47.40129202887529, 10.082173724233014 47.401292116765745, 10.081862558784872 47.40135580955509, 10.08186250382886 47.40135582460874, 10.081862453759847 47.401355846147055, 10.081646305299971 47.40146865361548, 10.081646253096805 47.40146868788385, 10.081646228196107 47.401468734224785, 10.081548257007356 47.40174438556137, 10.081548215842432 47.40174447891892, 10.081402457368528 47.40201986556921, 10.081402374988235 47.402019990473214, 10.081402265704144 47.40202010543994, 10.081113165747809 47.40227873148893, 10.08111310902966 47.40227879160926, 10.08087135020721 47.40258638823328, 10.080871321821867 47.40258643806404, 10.080871311868997 47.40258649107094, 10.08086899407372 47.402862553836016, 10.080865314116908 47.40330085176103, 10.080865292547845 47.40330100851958, 10.080865231134206 47.403301160325654, 10.080865131755 47.4033013025346, 10.080599588767761 47.40360864508411, 10.080599529200656 47.403608707901085, 10.080213743873603 47.40398066593264, 10.080213502919175 47.403980842374224, 10.07978099361715 47.40422271143341, 10.079780928680396 47.40422274551014, 10.079420853367568 47.40439987520643, 10.07942058402923 47.40439997753043, 10.079420287171745 47.40440003469201, 10.078990054457266 47.40444699961061, 10.078989813408008 47.40444701074311, 10.078989573398411 47.40444699190697, 10.078989342421783 47.40444694372954, 10.078989128170587 47.404446867815324, 10.078727545093619 47.40433242055992, 10.07872736302087 47.40433232470709, 10.078727208133378 47.40433220885355, 10.07848993026122 47.40412028890024, 10.07848988961213 47.40412025883517, 10.078489835702962 47.404120240825705, 10.078108006768943 47.40402132992731, 10.078107857352984 47.404021304315826, 10.07772548369635 47.40398734055892, 10.077725428028543 47.40398733888505, 10.077725374772392 47.403987350032146, 10.077317786585603 47.4040994368258, 10.077317734428096 47.40409945298994, 10.076621918313284 47.404340362020484, 10.076621882893702 47.40434037383498, 10.076022201155958 47.40453291702541, 10.076022149083029 47.40453293794479, 10.076022103557676 47.40453296501907, 10.07566114220679 47.40479135793502, 10.075661032576805 47.404791463491854, 10.075491686113905 47.40501812353331, 10.075491663247044 47.40501815757637, 10.075346178511815 47.40526100303614, 10.075346021447418 47.4052611944588, 10.075345800987213 47.40526135439688, 10.075033844766484 47.40543846907022, 10.075033616276123 47.40543857344788, 10.075033360977672 47.405438643445585, 10.075033089908148 47.405438676037214, 10.074722363312436 47.40545367634791, 10.0744351898557 47.40546878836213, 10.074435129066092 47.40546879556617, 10.07443507658538 47.405468817633086, 10.07412278544247 47.40562995828069, 10.074122671833507 47.40563003308515, 10.073833718882831 47.40587235201292, 10.073833529670095 47.405872481339216, 10.073833305992878 47.40587258207593, 10.07347370965635 47.40600096986209, 10.073473407316152 47.40600104751482, 10.073090275446743 47.40606447143818, 10.073090216963731 47.40606448530518, 10.073090179241714 47.40606451870421, 10.072897039327282 47.406274843961285, 10.072896987882741 47.40627491239685, 10.07265434954788 47.40667987894668, 10.072654177385523 47.40668008412552, 10.072365042100392 47.40693865576129, 10.072364848666766 47.4069387950628, 10.07200441665506 47.40714837654668, 10.072004259052566 47.40714845526692, 10.072004086113262 47.40714851734553, 10.071572532462506 47.407276688555136, 10.071572459508152 47.407276708490315, 10.071188892595039 47.40737262785755, 10.071188815228396 47.407372651124184, 10.070780939690605 47.40751718090412, 10.070780800425297 47.40751724703043, 10.07046820863244 47.40771084830685, 10.070468161893666 47.407710884402874, 10.070468142253974 47.407710930600985, 10.070418636650407 47.40790556126994, 10.070418631889405 47.407905598629675, 10.070418645686496 47.40790563493696, 10.070536288482701 47.40813344665862, 10.070536309842172 47.40813348290439, 10.070796050782983 47.408524204315725, 10.070796156000876 47.40852445273483, 10.070887879371563 47.40897926086165, 10.070887891088804 47.40897940916123, 10.07088786677582 47.4089795567527, 10.07088780709452 47.408979699617966, 10.070717801976452 47.4092873989396, 10.070717768954824 47.40928745325047, 10.070523961646416 47.40957887618604, 10.07052384172627 47.40957901975241, 10.07052368525158 47.40957914601449, 10.070355723827982 47.40969184153382, 10.07035549285602 47.40969196530793, 10.070355227391243 47.40969205136763, 10.070354940531521 47.4096920954668, 10.069948537231886 47.409722917629395, 10.069948195800695 47.40972291340062, 10.069613750424537 47.40968912384098, 10.069613675289665 47.409689122216925, 10.06961360161058 47.40968913235567, 10.069326055533644 47.409752930222496, 10.069325997682363 47.409752947414795, 10.069325945766336 47.40975297184176, 10.06915772167736 47.40984970055981, 10.069157676525295 47.409849732658465, 10.069157695447423 47.409849775166585, 10.069370041173102 47.41019163856798, 10.069370068788547 47.41019167370376, 10.06937011925708 47.41019169394874, 10.06972792367575 47.41030677840711, 10.06972798663277 47.41030679346927, 10.069728053184372 47.410306790037055, 10.07011114522143 47.41025960262261, 10.070111326124918 47.41025958898245, 10.070613449515227 47.41024535363616, 10.070613701085342 47.41024536281125, 10.07061394554371 47.41024540421311, 10.070614174039912 47.41024547634278, 10.071066679418262 47.410425716447854, 10.071066894229403 47.41042582305743, 10.071067073362595 47.41042595670199, 10.071423023259044 47.41075207349047, 10.071423028751854 47.410752078559824, 10.071826429452507 47.41112711684977, 10.07182655870892 47.41112726491791, 10.071826644125192 47.41112742700897, 10.071990276277676 47.41156636776266, 10.071990316203953 47.41156656075485, 10.072010475739615 47.412005046360306, 10.072010471134694 47.412005154560404, 10.071959287813389 47.412394664842935, 10.071959297286206 47.412394790070856, 10.072052195706432 47.41271991558907, 10.072052210738956 47.412719951667015, 10.07205223445071 47.41271998552275, 10.072360202862017 47.413078507380256, 10.072360212468656 47.41307851875322, 10.072739143270985 47.413534782938264, 10.072739192914895 47.41353483419251, 10.073214080070503 47.413958960114705, 10.073214157693076 47.413959037483565, 10.073593343238088 47.414382774722704, 10.07359337509161 47.41438280447822, 10.07359341370797 47.41438283026948, 10.07399814772961 47.41461176020589, 10.073998306394829 47.414611826641085, 10.074499393978668 47.41475993150248, 10.074499575986389 47.41475996526853, 10.074905941236898 47.41479403387778, 10.074905996914893 47.414794035304794, 10.074906052145364 47.41479403030618, 10.075433077648395 47.414714899210566, 10.07543317211746 47.41471487990328, 10.075984635172645 47.41457089120874, 10.075984836544755 47.41457085075248, 10.076535313612961 47.41449187510177, 10.076535543389715 47.41449185618864, 10.076535774499845 47.414491864760926, 10.076535999882307 47.414491900556676, 10.076536212651032 47.414491962482295, 10.076941209283603 47.41463953061149, 10.0769414505026 47.414639643478615, 10.077274649510128 47.41483576838317, 10.077274695379785 47.414835790951294, 10.077274749830998 47.414835801513185, 10.077657094039925 47.414886007979554, 10.077657195019912 47.414886015830206, 10.078422496847082 47.41490523422803, 10.07842273225199 47.41490525460268, 10.078422958525227 47.41490530321139, 10.078828268791714 47.41502043299832, 10.078828547366818 47.41502054070006, 10.078828779714168 47.41502069074157, 10.079066178957166 47.415216325370444, 10.079066221905917 47.41521635461583, 10.079066281267158 47.4152163635313, 10.079472666988993 47.41525041616673, 10.079472740628779 47.41525041663521, 10.079472812541598 47.41525040584661, 10.079952160349869 47.4151386114469, 10.07995241057596 47.415138571036834, 10.080790429497855 47.415060620414366, 10.080790543217432 47.41506061321518, 10.08165217059818 47.41503146163146, 10.08165224395655 47.41503146053282, 10.082370064781449 47.415034230330996, 10.082370094801338 47.415034229983924, 10.08289658611253 47.41502001852419, 10.082896653669032 47.415020011784016, 10.08289671115837 47.41501998674151, 10.083281093058089 47.41481044367321, 10.083281296292375 47.4148103524014, 10.083281520681977 47.4148102879778, 10.084168118146966 47.414618868184824, 10.084168455110078 47.4146188269978, 10.085053860755844 47.41458974479123, 10.085053987174916 47.41458974474515, 10.085627786195888 47.41460817362104, 10.085628073554297 47.414608204601656, 10.085628344020025 47.41460827749398, 10.08612905076345 47.41478874970889, 10.086129110473388 47.41478876633192, 10.086129173823368 47.41478877466108, 10.08667908349732 47.41482334921986, 10.086679325256824 47.41482338001438, 10.087276360209504 47.41493930948668, 10.087276613294762 47.41493937847688, 10.087872852506052 47.415152719263595, 10.087873082488022 47.41515282374836, 10.088277831142907 47.41538166730359, 10.088277953042233 47.415381745617175, 10.088658457274851 47.41565925689327, 10.088658525400557 47.415659300042094, 10.089134884346793 47.4159209447782, 10.089134941371686 47.41592096991724, 10.089135004818067 47.41592098648689, 10.089588849834906 47.41600389502073, 10.089589017288782 47.41600391037193, 10.090234823682861 47.41600635514541, 10.090235029081837 47.416006366826416, 10.090235229324609 47.416006400031804, 10.090975381724041 47.416171553575474, 10.09097564157317 47.41617163353412, 10.091547966003601 47.41640114330473, 10.09154797379824 47.41640114638202, 10.092096570558395 47.41661434692682, 10.092096693028843 47.416614383877956, 10.092765435201459 47.41676306465293, 10.092765512504219 47.416763078388286, 10.093386825720161 47.416846599556976, 10.093387141628511 47.416846671024736, 10.09384028297174 47.416994448596775, 10.09384046181486 47.416994519086956, 10.093840622336101 47.41699460763903, 10.09424511135272 47.417255875257325, 10.094245220517037 47.41725595484131, 10.094601698158412 47.41754957969573, 10.09460175418859 47.41754961600412, 10.094601821259364 47.41754964227961, 10.09505530982778 47.417681243647564, 10.095055436243275 47.41768127051645, 10.095413798706742 47.417731311309105, 10.09541405638503 47.41773136640863, 10.095699466524392 47.41781498321613, 10.095699694011056 47.41781506875144, 10.095699892525753 47.417815182848436, 10.095700054417213 47.41781532110954, 10.095700173445772 47.417815478205824, 10.09570024502378 47.41781564808244, 10.095700266392448 47.41781582419192, 10.095700236728163 47.41781599974656, 10.095700157174281 47.417816167980114, 10.095392617801298 47.41829802897977, 10.095392601541427 47.418298060856806, 10.095392592528972 47.41829809403438, 10.095281848950556 47.41899886552204, 10.095281845176034 47.41899891107662, 10.095276929852512 47.419605006370055, 10.095276932326264 47.41960504778361, 10.095375732132958 47.42037793141207, 10.095375739853502 47.42037797116229, 10.095596540168994 47.42122262330729, 10.095596554059052 47.42122266488806, 10.095854102643118 47.42185348867804, 10.095854155131054 47.42185357839217, 10.096252746489236 47.42236607554066, 10.096252783582623 47.422366117527226, 10.09693020640608 47.42304603001485, 10.096930315000499 47.42304616154385, 10.097137899025284 47.42335585162319, 10.097137927539787 47.42335588580547, 10.097137964446125 47.42335591605191, 10.097747483848332 47.42377412707694, 10.097747539986132 47.42377416142968, 10.098340227548292 47.42409718059105, 10.09834046228763 47.42409734617125, 10.098653278412634 47.4243836483371, 10.09865331743027 47.424383680774284, 10.0993321853814 47.42489724453572, 10.09933221235181 47.42489726376499, 10.100185639858042 47.42547082466129, 10.100185859904508 47.42547101975433, 10.10058472539333 47.42594774947562, 10.100584837994926 47.42594784862289, 10.101107382388733 47.4262943856272, 10.10110742203686 47.42629440807237, 10.10110746636761 47.42629442602165, 10.10182341953632 47.42653470097327, 10.101823715292653 47.426534836665475, 10.104542709482862 47.42818491062445, 10.104542728464704 47.428184922370036, 10.105421903120561 47.4287396137927, 10.105422080689145 47.42873975116617, 10.105422213738366 47.428739910092624, 10.105422296777544 47.42874008401344, 10.105422326379806 47.428740265751244, 10.105422301323516 47.42874044780608, 10.105422222642702 47.42874062266483, 10.10542209358438 47.428740783111486, 10.104915859717837 47.42924148654014, 10.103594546750744 47.4305483047195, 10.10231329203673 47.43182837251151, 10.102313288314102 47.431828376210746, 10.101299005105375 47.4328308944883, 10.0998174366604 47.434307855731724, 10.099817434736204 47.43430785764456, 10.098282454308626 47.43582952304469, 10.09459805884948 47.439490411602755, 10.094598028205548 47.43949044511316, 10.093891822999286 47.44034405803395, 10.093891796907343 47.44034409855361, 10.093891783143153 47.44034414178103, 10.093823981690692 47.44074871559825, 10.0937560958506 47.441164186407114, 10.093756038486292 47.441164366514286, 10.093493571395484 47.441710405432794, 10.09349355759636 47.44171043832925, 10.0932460155668 47.44239885637069, 10.093246004860266 47.44239889250989, 10.092995330484948 47.443470277449606, 10.092995322794097 47.44347033029182, 10.092957798166363 47.444115758642205, 10.092957797994274 47.44411579089473, 10.092985324003953 47.444695823093376, 10.092985324664031 47.44469584625239, 10.092989441659174 47.44512661818246, 10.092989441055034 47.44512665182512, 10.092957163037983 47.44583628193201, 10.092957162732137 47.44583629333626, 10.092948071678645 47.446950301505034, 10.092948076448993 47.4469503579374, 10.09305546785452 47.4475540167382, 10.093133470684256 47.44795876071873, 10.093133486291379 47.447958805286696, 10.093133515033088 47.447958846729406, 10.09342888118275 47.448290820102464, 10.093428926442778 47.44829085991976, 10.093428983769465 47.448290891766376, 10.094022934963391 47.44855042124257, 10.094023094311146 47.44855050302696, 10.094023233752036 47.44855060015188, 10.09431921317883 47.44879055043389, 10.094319367279937 47.44879070569132, 10.094506913231081 47.44903012280297, 10.094507006056856 47.44903027250774, 10.094507057757541 47.44903043110907, 10.094507066649129 47.449030593440924, 10.0944768471502 47.44941628725903, 10.094476851297369 47.449416336144964, 10.094476871151821 47.449416383217674, 10.094610550599613 47.44963743534969, 10.094610575398004 47.449637468283825, 10.09461060786805 47.44963749798117, 10.094825773384304 47.44980352798185, 10.094825935457834 47.44980368359251, 10.09482604565209 47.449803858899266, 10.094826099024681 47.44980404603923, 10.094851494675067 47.45000586536995, 10.09485149523755 47.45000601406957, 10.094851459750094 47.45000616080376, 10.094851389181272 47.45000630156758, 10.09468681335182 47.45026286692569, 10.094686794095132 47.45026289556702, 10.094467456983809 47.45057457853832, 10.094467433359755 47.450574624514225, 10.094467425089599 47.45057467288455, 10.094464734862264 47.45090553332451, 10.094464739963286 47.450905591570276, 10.094542585309918 47.45132859181927, 10.094542594804935 47.45132873350437, 10.094542571415069 47.4513288744444, 10.09445895758757 47.45162241131641, 10.094458877217036 47.45162259067719, 10.094458743887499 47.45162275483903, 10.09415835307033 47.4519156478657, 10.094158347711083 47.45191565317158, 10.093775760534358 47.45230029265491, 10.09377570364214 47.4523003625295, 10.093501243247108 47.45272214428336, 10.093501208935406 47.45272221061821, 10.093307443584019 47.45321784595311, 10.093307426590558 47.45321790522094, 10.093222371736545 47.45367717114841, 10.09322236709227 47.453677245163234, 10.093246171119572 47.45408177203898, 10.093246172156416 47.45408181297061, 10.09324332531651 47.45443085978679, 10.093243300998346 47.454431026513184, 10.093243231607532 47.45443118729109, 10.093243119548362 47.45443133654976, 10.092969919657257 47.454724197963316, 10.092969765694255 47.454724332789866, 10.092615401602739 47.45498031231024, 10.092615362432877 47.45498034684462, 10.092615333938765 47.45498038590681, 10.092321425070256 47.455507855515705, 10.091679731157996 47.45668670049346, 10.091679716087867 47.456686737914545, 10.09167971080014 47.45668677654322, 10.091676249013895 47.45710957098259, 10.091676252636121 47.4571096053058, 10.091676263978664 47.45710963884357, 10.091862536334235 47.45751445477613, 10.091862588694026 47.45751462468741, 10.091862592054097 47.457514798266374, 10.091862546289457 47.4575149690563, 10.091862453102424 47.45751513070424, 10.091698326335768 47.45773470226556, 10.09169810576425 47.45773491452451, 10.09128924597581 47.458027421623534, 10.091289204080805 47.45802745887897, 10.091289188778815 47.45802750459021, 10.091232272422324 47.458358153901806, 10.091232270849922 47.45835819280846, 10.09123229863572 47.4583582268483, 10.09158150934031 47.45870853452801, 10.091581634862733 47.45870869231602, 10.091581711828859 47.45870886387488, 10.091581737182823 47.45870904239299, 10.091581709917957 47.45870922078249, 10.091470460943201 47.459075867456036, 10.091470376946166 47.45907604680172, 10.091470239872748 47.459076210365765, 10.091470055715693 47.45907635099727, 10.091116399144056 47.459295292990745, 10.091116219096225 47.45929538662577, 10.091116018180859 47.45929545804462, 10.091115802280274 47.459295505156334, 10.09065468284956 47.459367254866834, 10.090654665979068 47.45936725765027, 10.09013890142354 47.45945722715005, 10.090138840107233 47.45945724253149, 10.090138803063486 47.4594572791073, 10.089947120587036 47.459695512045315, 10.089947088356952 47.459695558139835, 10.089727291489835 47.460062270439636, 10.08972717822052 47.46006241843087, 10.089727026690426 47.460062549689006, 10.089265298109487 47.46039399003228, 10.08926511367017 47.46039409997524, 10.089264902546741 47.46039418494033, 10.089264671977812 47.46039424201447, 10.08926442986865 47.460394269240794, 10.0892641845202 47.46039426568584, 10.08896993363251 47.46037137525931, 10.088969682598623 47.460371338732585, 10.088235247594605 47.460212623747864, 10.088234982388755 47.46021254379631, 10.088234749161035 47.46021242656427, 10.087686116272776 47.4598675000921, 10.087685942744582 47.45986736708675, 10.087685811077872 47.459867213518606, 10.08768572640522 47.45986704537401, 10.087685692027293 47.459866869207424, 10.087666060652511 47.45946154906235, 10.087666059936113 47.459461519459815, 10.087666067957892 47.459053659595234, 10.087666061871545 47.45905361735516, 10.087666022435085 47.45905358443217, 10.087211977087943 47.45874217491016, 10.087211926158178 47.458742146535116, 10.087211860432042 47.45874214352618, 10.08665978137299 47.45875563825991, 10.086659723815156 47.45875564318184, 10.086659672421641 47.45875566145838, 10.086128848412569 47.45898757206175, 10.086128542895839 47.45898767067752, 10.085437662641294 47.45914092857624, 10.085437427023829 47.459140965099216, 10.085437185559591 47.459140971956415, 10.085436946278103 47.45914094891981, 10.084840252509741 47.459045153564105, 10.084840008899942 47.459045097001656, 10.084839785990976 47.45904500951782, 10.084290278217738 47.458777854999816, 10.084290013914572 47.45877768466587, 10.083719146849397 47.458292001837385, 10.083719034488775 47.45829188989854, 10.083240781020134 47.45772853921516, 10.083240673260482 47.45772837708841, 10.08296925606557 47.457181385017876, 10.082969239475778 47.457181355133635, 10.08265154202069 47.45666533604701, 10.082651517278883 47.45666530361155, 10.082651485075852 47.45666527435288, 10.08208014765537 47.45622628006557, 10.082080102273542 47.456226248466386, 10.081508117000071 47.45586524550016, 10.08150805006942 47.45586520847608, 10.080889587991836 47.4555664410195, 10.0808894536923 47.45556639095323, 10.080315852167232 47.4554081937377, 10.080315792630984 47.45540818163918, 10.080315730801606 47.45540817739576, 10.079694829440562 47.455405771933165, 10.079694669438997 47.45540578466396, 10.079234104657742 47.45548198326699, 10.07923400716358 47.45548199678534, 10.078428269331432 47.455572461898534, 10.07842814564042 47.45557248431929, 10.07794419273391 47.455695375045714, 10.077944041696266 47.45569542946003, 10.077366789102705 47.45597392113235, 10.077366572180525 47.455974006077454, 10.07672108011499 47.456174216748586, 10.076720728478069 47.456174287890676, 10.075846187380535 47.456264441837064, 10.075845886622364 47.456264449363466, 10.075202477399138 47.45623074612523, 10.075202251157615 47.4562307207595, 10.075202034742066 47.456230669285105, 10.07458290244949 47.45604112392282, 10.074582684690307 47.45604103959287, 10.074055939428092 47.455789428996866, 10.074055870382 47.455789403851064, 10.074055794485085 47.45578939064966, 10.07350429277487 47.45574043109887, 10.073504231007183 47.455740429647584, 10.073504172885386 47.455740443922856, 10.072881498351014 47.45594077305264, 10.07288139473527 47.45594081461702, 10.07228114141123 47.456234707591, 10.072280942129618 47.45623478817017, 10.072280725217611 47.456234843919816, 10.072280497318527 47.4562348731325, 10.071843894203434 47.45626430197729, 10.071843665365776 47.45626430391434, 10.071843439450852 47.45626427908238, 10.071843223195968 47.45626422822204, 10.071270052705728 47.456090468734025, 10.071269878419777 47.456090434464016, 10.070354530377658 47.456000415090735, 10.07035447291957 47.45600041322834, 10.070354468284528 47.45600045217083, 10.070364075331035 47.45642269607468, 10.070364081041546 47.45642274846277, 10.070490963583568 47.4570700806043, 10.070490973229603 47.457070150652584, 10.07052681672651 47.45751917046439, 10.070526799175813 47.45751937300402, 10.070526715277044 47.45751956772945, 10.07052656929327 47.457519744746335, 10.070165978209937 47.45786025157865, 10.069418307212594 47.45856625881343, 10.069418279978946 47.45856628943978, 10.069418260300093 47.4585663226278, 10.069272815996577 47.45888272403397, 10.068967517541708 47.45954686321617, 10.06857327909728 47.46040445170674, 10.068338182927802 47.46091584477519, 10.06833803135865 47.46091606462858, 10.067915561077266 47.4613605972438, 10.067915412403346 47.46136072620214, 10.067915231781644 47.46136083473006, 10.06715882071701 47.46173791488737, 10.067158609699762 47.46173800083868, 10.06715837892449 47.461738058818916, 10.06715813634543 47.46173808682968, 10.066299388853778 47.46178217472037, 10.06629933164715 47.46178218140843, 10.066299327593782 47.46178222073325, 10.066322008818888 47.46239459134496, 10.066321990609365 47.462394764354414, 10.06632192387205 47.462394931780345, 10.06632181108532 47.46239508740518, 10.066321656437637 47.462395225449626, 10.06597675244198 47.46264823210342, 10.065976571203915 47.46264834266847, 10.065976363228236 47.46264842883829, 10.065976135541947 47.46264848770147, 10.065975895838042 47.46264851726913, 10.065975652215517 47.462648516542245, 10.065590989795128 47.46262324743894, 10.065590933766263 47.462623247045904, 10.06559088083191 47.46262325952362, 10.065011076451514 47.46279918778931, 10.065011016080543 47.46279921184089, 10.065010990241863 47.46279925601531, 10.06467082201079 47.463641296252234, 10.064670732180108 47.46364145672765, 10.06467059911603 47.46364160270224, 10.064670427659532 47.46364172886528, 10.06467022404837 47.46364183062685, 10.064669995690116 47.463641904284785, 10.062611381539359 47.46414889137348, 10.060435462219926 47.46468471473237, 10.060435459552174 47.464684715387094, 10.059041438854901 47.46502567586187, 10.059041431290966 47.4650256776943, 10.056890311338984 47.465541794791164, 10.056890285928318 47.46554180069169, 10.055453537473289 47.46586440996765, 10.054925520095363 47.465982966082706, 10.054925368627327 47.46598301537647, 10.053568696839676 47.466579355900116, 10.05356864827101 47.46657938216476, 10.053568641214616 47.46657942405214, 10.053551736263543 47.46730360119451, 10.053551711793729 47.46730375965633, 10.053551646559747 47.46730391270615, 10.05310981324593 47.468076619587976, 10.053109773996338 47.468076724008306, 10.05288976040621 47.46922442201696, 10.052889707720167 47.469224581659454, 10.052889613346727 47.46922473218979, 10.05288948040383 47.4692248686346, 10.052889313283751 47.469224986485976, 10.051964978181262 47.469768060022034, 10.051964934464436 47.46976809122058, 10.0519649004237 47.469768127555625, 10.051560914784252 47.47030869435667, 10.051560893467398 47.470308730336214, 10.051560881658602 47.47030876827981, 10.051519044100976 47.4705421170959, 10.051519042417379 47.47054215819045, 10.051519062923402 47.47054219687098, 10.051649834580255 47.470731366615006, 10.051649852404232 47.47073139052073, 10.052064249409778 47.47124837479059, 10.052482985837328 47.47177076000103, 10.05248308332917 47.47177091442823, 10.053222845365205 47.47333092718604, 10.053222864344903 47.47333095872929, 10.05322289017023 47.47333098794553, 10.05379642610169 47.473880049803036, 10.053796462077774 47.47388007862273, 10.053796514334026 47.47388009160048, 10.054390906001478 47.47398938804065, 10.054391132028352 47.47398944502451, 10.054391339114494 47.47398952886117, 10.05439152040979 47.473989636777425, 10.054391669917212 47.473989765203555, 10.054391782691255 47.47398990989137, 10.05463325238538 47.47438241133136, 10.05463332609934 47.47438257193981, 10.054633354505386 47.474382739056814, 10.054633336611202 47.4743829068444, 10.05463327304188 47.47438306944119, 10.05439034408707 47.47483066900853, 10.054170027535175 47.47523659756163, 10.054170013051863 47.475236633025354, 10.05417000735281 47.47523666962294, 10.0541461122653 47.47594933651764, 10.054146082054052 47.47594950815912, 10.054146004070088 47.47594967271475, 10.05414588118986 47.47594982411486, 10.054145717945826 47.47594995677503, 10.053546850059245 47.47635107849666, 10.053546631921758 47.476351196603574, 10.053546382207724 47.4763512811007, 10.053546111977312 47.476351328245514, 10.053545833199424 47.47635133594995, 10.052652726129631 47.47631202337456, 10.052652662920424 47.47631202495665, 10.052652631603848 47.476312062267255, 10.051888266078818 47.47748555671051, 10.051888217946743 47.47748562308571, 10.050808318069421 47.47883212782721, 10.050808296575614 47.478832153607186, 10.050219048276738 47.47951252854857, 10.050219023410806 47.479512556114386, 10.049496413090985 47.48028223013816, 10.049496403167007 47.48028224104818, 10.048786694957329 47.48108790634685, 10.048786675157118 47.4810879281153, 10.048135991191392 47.48178104941756, 10.047445894270608 47.48251975622364, 10.04684586981395 47.4831620248744, 10.046545178603871 47.48348420946544, 10.045790953715253 47.48429232448158, 10.045306821434137 47.484811031484284, 10.045306792267583 47.48481107121129, 10.04530680217311 47.48481111508554, 10.0455672852126 47.48549087714937, 10.045567305472384 47.48549091496743, 10.045567362462672 47.48549092605045, 10.047020095817711 47.48567517363428, 10.047020358950801 47.485675226621055, 10.047020600374434 47.48567531524597, 10.047020809744458 47.48567543571182, 10.047020978090126 47.485675582857034, 10.047021098198424 47.48567575037698, 10.047021164923121 47.485675931094015, 10.047138648795555 47.48623420972548, 10.047138661742238 47.48623435848544, 10.047138638351083 47.48623450665692, 10.047138579263283 47.486234650178275, 10.046996339292907 47.486494794936675, 10.046996229363343 47.48649494913678, 10.046996078384806 47.48649508640736, 10.046995891826302 47.486495201775995, 10.046995676445652 47.48649529106361, 10.04699544004471 47.48649535103591, 10.046995191186788 47.486495379520456, 10.046431166685595 47.486522894579004, 10.046431105003725 47.486522901693036, 10.046431051814258 47.486522924055826, 10.045941419349862 47.48677616830072, 10.045941368875448 47.48677620070948, 10.045941329635612 47.48677623962871, 10.045622205808645 47.487178798859695, 10.045622023053058 47.48717897498795, 10.045621783873381 47.48717911659468, 10.044685060539289 47.48761158759206, 10.044684843101033 47.487611668902424, 10.044684607145786 47.48761172127862, 10.0446843609436 47.48761174288488, 10.042688823161852 47.48765892608972, 10.042688753561432 47.48765893287438, 10.042688687712204 47.48765894961153, 10.042017941379234 47.48788800203041, 10.042017816674628 47.487888039296124, 10.03982558876204 47.4884537564268, 10.039825432498661 47.48845378941698, 10.037896761141605 47.48877386369605, 10.037608564593794 47.48882168868345, 10.037608266086892 47.48882171436552, 10.036190144821255 47.48883362569833, 10.036189761618429 47.48883359064748, 10.03488754566524 47.488579159230426, 10.03488733286252 47.488579103815006, 10.034887137185136 47.48857902448285, 10.033735217089866 47.48801551683639, 10.032251448384493 47.48729596822139, 10.032251382962855 47.487295934365584, 10.031187310501753 47.48670895871564, 10.031187207968978 47.48670891220769, 10.028828335335708 47.48584296468503, 10.028828170603557 47.48584289307307, 10.028828023186184 47.485842805788806, 10.028166177113295 47.48538837910399, 10.02816612635624 47.48538835070666, 10.028166063181768 47.48538833827441, 10.025977025680897 47.485117327237596, 10.025976659037239 47.485117242843195, 10.025001043000595 47.48477796176069, 10.025001032350234 47.484777958138466, 10.022725892495565 47.48402142000254, 10.022725833402577 47.48402140494774, 10.022725771153269 47.48402139786461, 10.021341348123176 47.48395587372892, 10.021341129568201 47.48395585083477, 10.019923241450678 47.48372377323417, 10.019923179707014 47.48372376740614, 10.019923130059455 47.483723792996265, 10.019023787678982 47.48429010646395, 10.01902355411727 47.484290224017556, 10.01902328842554 47.48429030418844, 10.019023003379768 47.48429034312148, 10.017005866298383 47.48441209444474, 10.01700579700193 47.484412103908255, 10.017005740220883 47.484412132485055, 10.016406640715475 47.48478935251483, 10.016406423219852 47.48478946359413, 10.016406176893588 47.48478954218787, 10.016405912115916 47.4847895849844, 10.016405640043578 47.484789590180426, 10.016405372140667 47.48478955755704, 10.016405119695584 47.484789488488836, 10.015130677434321 47.484332528593995, 10.015130480786947 47.484332442198856, 10.015130309604917 47.484332333662195, 10.015130169230654 47.484332206371384, 10.014488482672196 47.48362830618841, 10.014488372075611 47.48362821460719, 10.013315761728029 47.48288430426768, 10.013315623906477 47.482884237089074, 10.01073554565605 47.48194125416781, 10.010735494126145 47.48194123908957, 10.010735438381 47.4819412434459, 10.007903806911893 47.482333953510455, 10.006798914034384 47.48248640538222, 10.006798606204509 47.482486422926605, 10.006798300749125 47.482486391640656, 10.005766848655302 47.482295232480176, 10.00314117795825 47.48180856487237, 10.003141115013225 47.48180855758503, 10.003141051181506 47.481808558727565, 10.001804269791005 47.48192165743868, 10.001804213549745 47.481921665674385, 10.001804164998278 47.48192168663091, 10.001354540600081 47.48215605274741, 10.001354472176502 47.48215609380237, 10.000914087380218 47.48245952978523, 9.99985967436514 47.483191431883185, 9.999859673015296 47.483191432818764, 9.999464231005568 47.48346511612329, 9.998671789506409 47.48401255566782, 9.996763067851031 47.4853334781921, 9.995348162973599 47.486315211348966, 9.99534812357644 47.48631524451994, 9.99534809422074 47.48631528218167, 9.994364051295054 47.48793691899936, 9.994364042968641 47.48793693241131, 9.993596197789271 47.48914630373009, 9.992437349458463 47.49100524765112, 9.991022068106481 47.493285293952106, 9.991022063222792 47.49328530203799, 9.990630289313223 47.493952332302406, 9.990198577554349 47.49468733882454, 9.989073316668307 47.49660302921538, 9.98879581893752 47.49707542894631, 9.988795763176938 47.4970755114982, 9.988277837247393 47.49775017566235, 9.98789546096022 47.4982482577347, 9.987895459580068 47.49824825952755, 9.987653619109654 47.49856155411993, 9.987653597327506 47.498561590205625, 9.987653643181012 47.49856161370931, 9.987957193733637 47.49868880200548, 9.98795725390728 47.498688828774725, 9.990728120504846 47.49999569517081, 9.992298333286932 47.50073080124146, 9.992298491570136 47.50073088823401, 9.995301901992944 47.502658650279756, 9.995301934223203 47.50265867168175, 9.995695849104271 47.50292928932764, 9.99569601059135 47.502929424123465, 9.995696130908836 47.50292957745924, 9.995696205574726 47.50292974362295, 9.99569623180759 47.502929916424776, 9.995696208630214 47.50293008942754, 9.995696136906007 47.502930256186666, 9.995696019306788 47.502930410490094, 9.995695860213305 47.50293054658981, 9.995695665552047 47.50293065941585, 9.994684361042843 47.50341052843598, 9.994684359838814 47.50341052900661, 9.99363178855357 47.50390878322907, 9.993631786857907 47.50390878403039, 9.992406000530112 47.50448708360256, 9.990260787498599 47.50550131928845, 9.990260772374162 47.50550132633394, 9.989834498267747 47.50569696874829, 9.989834454753549 47.50569699265773, 9.989834425666931 47.50569702512175, 9.989108210284225 47.506690910433, 9.989108203804447 47.50669091918104, 9.988422581859025 47.50760411175088, 9.988422499161397 47.507604206950376, 9.98712284344924 47.50890981578842, 9.987122777899879 47.50890987606646, 9.986868647095855 47.50912428405943, 9.986868639470403 47.50912429043318, 9.984588872639502 47.51101208465242, 9.984588701306997 47.511012202502435, 9.984588501060578 47.51101229707156, 9.984588278673424 47.511012365161065, 9.98458804166762 47.51101240446788, 9.984587798059717 47.51101241366245, 9.984587556089558 47.5110123924338, 9.984587323941627 47.51101234149999, 9.984587109468146 47.511012262583776, 9.98338869455847 47.51046899658193, 9.98338860100695 47.51046896123618, 9.982724175583899 47.51026375836879, 9.982724110529501 47.51026374363717, 9.982724042377358 47.51026373843365, 9.982285631708068 47.51026164785868, 9.98228545042331 47.510261664181144, 9.981793384040687 47.51035438412039, 9.981793311099922 47.51035440102038, 9.98137113059319 47.51047122522015, 9.981371081196723 47.51047124231625, 9.981371036739327 47.51047126480295, 9.981018035640316 47.51068348134237, 9.98101795123039 47.510683542538196, 9.980734756458066 47.51093172069403, 9.980734663380185 47.510931832236544, 9.980591886909105 47.51118046634251, 9.980591777012705 47.51118061526947, 9.980591628552652 47.511180747908995, 9.980591446612417 47.51118085971932, 9.980221409537563 47.51136909126214, 9.980221362019472 47.51136912087985, 9.980221335182188 47.51136916069211, 9.980149780886123 47.511511242041095, 9.980149671538372 47.51151140441148, 9.980149517106952 47.511511548946274, 9.979902198508356 47.51170033905424, 9.979901985602785 47.51170046982606, 9.979567090205661 47.511865192685796, 9.979567043589649 47.511865220667595, 9.979567027332736 47.511865261429804, 9.979475472068838 47.512233256389024, 9.979475469029287 47.51223326984277, 9.979420030923007 47.51250614763378, 9.979419979112409 47.51250630141328, 9.97941988852341 47.51250644669391, 9.979419761938637 47.512506579013056, 9.979065928586959 47.5128136938902, 9.97906581412017 47.512813780963086, 9.978624205262296 47.513108760496195, 9.978624141094196 47.51310881016927, 9.97821697193425 47.513475155147376, 9.978216779503908 47.51347529460969, 9.97821654802262 47.51347540337876, 9.977741311540472 47.513651295635185, 9.977741165287362 47.51365134216513, 9.97709028079121 47.513826474302775, 9.977090194412408 47.513826502613384, 9.976579367355734 47.51402608116169, 9.976579296965589 47.51402611288064, 9.976191291073246 47.51422626481271, 9.976191169100268 47.514226320768095, 9.975785971506875 47.51439074727288, 9.975785952803749 47.51439075515124, 9.975274933407693 47.51461406640288, 9.975274639468063 47.51461416247522, 9.974817564419192 47.51471888160149, 9.97481746165873 47.5147189119348, 9.974465297700394 47.514847921516626, 9.974465245326295 47.51484794538422, 9.974465200662486 47.51484797561647, 9.97423529475548 47.51503689920316, 9.974235143876209 47.51503700438982, 9.974234969802865 47.51503709154236, 9.973759337007051 47.515236770464256, 9.973759292931819 47.515236788178555, 9.973301391798193 47.515412809595446, 9.973301132526586 47.51541288579948, 9.972861822929827 47.515505777208, 9.972861454437053 47.51550581780272, 9.97221236568487 47.515514547095485, 9.972212354805709 47.51551454730234, 9.971808769302715 47.51552446835042, 9.971808707457706 47.515524473985316, 9.971808660432398 47.515524501810795, 9.971578896570149 47.51568973450672, 9.971578861484302 47.5156897646382, 9.971578853444672 47.515689802647394, 9.971558667946397 47.515939237019445, 9.971558675209607 47.51593933230248, 9.971625779878373 47.516224727281376, 9.971625796079932 47.51622489005799, 9.971625768700001 47.516225052144144, 9.971553178217972 47.516462065650565, 9.971553084133392 47.5164622593043, 9.971552928208197 47.516462433621996, 9.97126978256315 47.516710475243826, 9.971269749811164 47.516710510240614, 9.971269727194768 47.51671054875082, 9.97112587217647 47.51704258207762, 9.971125846199339 47.517042685801776, 9.971105414875613 47.517315741621054, 9.97110537415048 47.5173159217927, 9.971105280748176 47.51731609270294, 9.970873996901272 47.51763560666372, 9.970873888156998 47.51763573065526, 9.970873751604243 47.51763584126661, 9.970326053164145 47.51801336369412, 9.970325817501687 47.518013492708704, 9.969532769672774 47.518354255597785, 9.969532676997073 47.5183543036726, 9.968836686625837 47.51878631636985, 9.968836396577686 47.518786453163926, 9.968016089537485 47.51907192324411, 9.968015996093259 47.51907196273998, 9.96743385943323 47.519366244064244, 9.967433828116157 47.51936626091444, 9.96693954472997 47.51964907907602, 9.966939503412753 47.519649107375066, 9.96693947018573 47.51964914021314, 9.966655160811772 47.519992310678084, 9.966654934863616 47.51999251118013, 9.966284037184833 47.520240139962, 9.966283780142506 47.520240273894764, 9.965843405800339 47.52041632747871, 9.965843352212385 47.52041635422451, 9.965843307701652 47.520416387766694, 9.965435739535293 47.52079467650328, 9.965435665604177 47.52079476450217, 9.965203663702063 47.52116201385126, 9.965203620084054 47.52116211345341, 9.96511208135986 47.52151816793679, 9.965112076637704 47.52151821120104, 9.965112096823768 47.52151825236641, 9.965284479159056 47.52178018574638, 9.965284567582184 47.52178037257383, 9.96528459421523 47.52178056795878, 9.965284557792401 47.52178076261496, 9.965284460044785 47.52178094729074, 9.965088803477963 47.52205296390706, 9.965088783728632 47.52205299842306, 9.965088781796107 47.522053035424356, 9.965104025250318 47.52226699225022, 9.965104033816372 47.52226703313168, 9.965104053368076 47.52226707223634, 9.965276575121656 47.52252921377229, 9.965276662237542 47.52252939630655, 9.965276690336418 47.522529587217434, 9.965274653097687 47.52271934245884, 9.965274633597144 47.52271948977876, 9.96527457878736 47.52271963294258, 9.965274490148628 47.52271976808386, 9.965071769034578 47.52297095302254, 9.965071745358264 47.52297099097814, 9.965071796748648 47.52297101296708, 9.965801968688872 47.52321773790232, 9.965802209971919 47.52321784289533, 9.965802412380459 47.52321798058715, 9.966187680544621 47.5235439802752, 9.966187801671058 47.523544101900804, 9.966483130605242 47.52390015354506, 9.966483244596027 47.52390025425762, 9.966899125222756 47.52417586321644, 9.966899224545962 47.524175917401216, 9.967405308054808 47.52440126847415, 9.967405469977983 47.52440135338178, 9.967405610725075 47.52440145416843, 9.967746342026977 47.52468660554978, 9.967746472131022 47.52468673640914, 9.967746566532453 47.524686880671325, 9.96774662232832 47.52468703390003, 9.967846610096872 47.52512293939968, 9.967846625845393 47.525123083375, 9.967846607451774 47.525123227205675, 9.967705921566843 47.5256899410954, 9.967564886161465 47.52628714100881, 9.96756483854143 47.52628727547506, 9.967304674899964 47.52683318049058, 9.967304662637797 47.52683321595827, 9.967304667941777 47.526833252209975, 9.967362217983045 47.5270462796842, 9.9673622399234 47.5270463283839, 9.96736227769871 47.52704637239165, 9.967710335768643 47.52736174965976, 9.967710352745803 47.527361764394314, 9.968167779241773 47.52774219772121, 9.968167907011829 47.52774232477423, 9.968168001024509 47.527742464725186, 9.968305445786804 47.52800435205494, 9.968305504085123 47.528004503944416, 9.968305522592667 47.52800466039282, 9.968301974304612 47.5283370067768, 9.968301940586707 47.52833720195949, 9.96830184521149 47.528337387525845, 9.968301692725882 47.528337554629225, 9.96794770312384 47.528644616124794, 9.967947665971582 47.52864465179386, 9.96759266190296 47.52902323374224, 9.96759263431358 47.52902327028327, 9.967592628243311 47.52902331112976, 9.967587546186804 47.529498668180665, 9.967587537867232 47.52949876248727, 9.967512599788844 47.52994955471207, 9.967512543747475 47.52994973084011, 9.967512437099554 47.529949895867766, 9.967512284119278 47.52995004318111, 9.967512090937724 47.52995016687619, 9.967511865297118 47.529950261995594, 9.966949316803902 47.530137324065386, 9.96694910236257 47.53013738032708, 9.966948876820332 47.530137410642006, 9.96694864694736 47.5301374141002, 9.966948419643824 47.530137390597844, 9.966353341044105 47.53003946898514, 9.966353084666228 47.53003940734264, 9.96582855494766 47.52987047032383, 9.965828495785106 47.52987045589023, 9.965828434759114 47.52987046615126, 9.965441442725275 47.52996362539092, 9.965441384968845 47.529963643936036, 9.965441364882027 47.52996368507777, 9.965332525239933 47.53029587920811, 9.965332509825071 47.53029599043009, 9.96536097017303 47.5309141701714, 9.96536097078428 47.53091420481295, 9.965355103456242 47.531460701830426, 9.96535508020212 47.53146086315036, 9.965355014660194 47.53146101902531, 9.96535490895618 47.53146116439979, 9.965035393357011 47.53181594767052, 9.965035368210213 47.531815981879994, 9.965035352050569 47.531816018499946, 9.964926588124854 47.53217087113335, 9.964926581554892 47.532170924619095, 9.964926594206794 47.53217097760002, 9.965028954970386 47.53241023377693, 9.965029023460733 47.53241034002441, 9.96541040044883 47.53283998043984, 9.965410549197191 47.53284022163135, 9.965581119765321 47.53329252053875, 9.96558116111442 47.53329275009434, 9.965575295588712 47.53383927940312, 9.965575247324084 47.533839513449976, 9.965322971979731 47.53445619317397, 9.965322888053196 47.53445634419731, 9.965002188239955 47.53490635343433, 9.965002167177381 47.53490639153392, 9.96500215669122 47.53490643159673, 9.964963742179163 47.53521521854603, 9.964963742532023 47.5352152583231, 9.964963763564805 47.53521529545596, 9.965136667616873 47.53545380232994, 9.965136706973913 47.53545384393858, 9.965136769241196 47.53545386964156, 9.96552130917239 47.535574531875696, 9.965521546635898 47.535574627903955, 9.96552174960977 47.535574755209865, 9.965799806269553 47.535789719718494, 9.96579996982562 47.535789877496924, 9.965800080057768 47.53579005528157, 9.965800131904647 47.53579024490937, 9.96583211935822 47.53607518024278, 9.965832108021095 47.53607538423554, 9.965832029185831 47.53607558124827, 9.965581831172782 47.53650206611363, 9.965581813642428 47.5365020998409, 9.965258236384063 47.53721367416968, 9.965258209095218 47.537213728058774, 9.964900301801364 47.53785378511596, 9.96490028475028 47.537853828623156, 9.96490029473508 47.53785387312876, 9.965036850374169 47.53821106463788, 9.965036871998686 47.53821110449766, 9.96503692899705 47.53821112210484, 9.965457030370336 47.538308252811, 9.965457200085742 47.538308275812554, 9.96605358228707 47.538334978169885, 9.966053722254808 47.53833498952319, 9.966684402654892 47.538409358481914, 9.96668464816498 47.538409404239026, 9.96668487627404 47.5384094809411, 9.966685078588412 47.53840958576579, 9.967103050910948 47.538672837895206, 9.967103235383677 47.53867298160206, 9.967103371113987 47.538673148418596, 9.96731031305692 47.539006784415925, 9.967310351600283 47.53900685459098, 9.967481870266838 47.53936388999702, 9.967481927883634 47.5393640722395, 9.967481928907242 47.53936425862078, 9.967481873293758 47.53936444114818, 9.96748176342807 47.539364611994294, 9.967304273343686 47.53957730766364, 9.967304208620224 47.53957741636193, 9.967195873099103 47.53986207348162, 9.967195863684358 47.53986211207404, 9.967195874610317 47.53986215048314, 9.967367025810505 47.54026700515786, 9.967367075830795 47.54026721231692, 9.967397338305918 47.54071885855007, 9.967397319946098 47.54071905399387, 9.9672874529029 47.5411463095979, 9.967287443073133 47.5411463835044, 9.967285154683106 47.54136025988509, 9.967285159286451 47.54136029818299, 9.967285199539027 47.541360325230684, 9.96766898667027 47.54157610892036, 9.96766911194415 47.54157618921433, 9.968226423998503 47.54198300406113, 9.968226498681823 47.54198306355884, 9.968748243242787 47.542437268330744, 9.968748294446922 47.54243730789235, 9.969236188791385 47.5427724756497, 9.969236296638467 47.54277253556253, 9.969830295518372 47.54303692007922, 9.96983031064468 47.543036926912684, 9.970354160185115 47.543277106145, 9.970354383335431 47.54327723492982, 9.970354559374181 47.54327739377234, 9.970666470698905 47.54363520145638, 9.970666576721321 47.54363535418888, 9.970666638816695 47.54363551765742, 9.970733772945994 47.54392090949533, 9.970733794294553 47.54392096024124, 9.970733832781164 47.543921006108, 9.971046476771443 47.54420753276159, 9.971046620488897 47.54420769922327, 9.971046708593503 47.54420788262397, 9.971046737038861 47.54420807454062, 9.971043964003481 47.54446907303702, 9.97104393034853 47.54446926803403, 9.971043835131908 47.544469453443654, 9.97079442843858 47.54482462650808, 9.970794407069642 47.544824666327564, 9.97079439722549 47.544824708171966, 9.970754748532592 47.54525233737198, 9.970754763725562 47.54525246489716, 9.970898274228173 47.54567958735434, 9.970898306693565 47.54567975816189, 9.970898290578715 47.5456799300345, 9.970898226473626 47.545680096679284, 9.970898116725468 47.54568025199465, 9.970897965352547 47.5456803902939, 9.970897777897228 47.54568050651337, 9.97089756122304 47.545680596397744, 9.970897323263257 47.54568065665603, 9.967813784081445 47.54624041314133, 9.967813731013837 47.54624042649619, 9.9678137469794 47.546240463315584, 9.969781822037518 47.54958325979721, 9.969781898169932 47.5495834438603, 9.969781915244884 47.549583634671485, 9.969781872492112 47.549583823623024, 9.969781771840232 47.54958400219103, 9.969701369799544 47.54969093544149, 9.96970125429085 47.54969106197761, 9.969701109606344 47.54969117388142, 9.966025690175142 47.552099099558305, 9.966025652164001 47.552099129340405, 9.966025631901681 47.55209916624956, 9.964498406908735 47.55588346489527, 9.964498400716783 47.555883481467745, 9.963566625877249 47.55859242105766, 9.963566559566056 47.558592560985595, 9.962904584432207 47.55967626451466, 9.962904429472632 47.559676451430946, 9.9629042136827 47.559676608200405, 9.961221505122992 47.56063853139788, 9.961221371446994 47.56063859856676, 9.959300743326702 47.561482623710454, 9.959300691025692 47.561482652252366, 9.959300648409975 47.56148268742248, 9.95875031345086 47.56204596138568, 9.958750284719653 47.562045997700444, 9.958750266357567 47.562046036982686, 9.958324308218693 47.56337369097247, 9.958324301952292 47.56337372620775)))",7457 +33535,4326,"MULTIPOLYGON (((9.958324301952292 47.56337372620775, 9.95832435056617 47.563373713017214, 9.95969687089032 47.56289535126027, 9.959696885600382 47.562895345974155, 9.962281102617194 47.56193832245724, 9.962281355835103 47.5619382505936, 9.962281625445037 47.561938215555074, 9.962281899924701 47.561938218839146, 9.962282167543671 47.56193826030544, 9.96228241686473 47.56193833818181, 9.962282637232663 47.56193844914008, 9.962282819229609 47.56193858843822, 9.962282955077578 47.56193875012306, 9.962283038970847 47.56193892728467, 9.96234680710033 47.56214471142974, 9.962346815438655 47.56214474074743, 9.963302667445936 47.56583348041827, 9.963302684374378 47.565833521042045, 9.963302746467477 47.56583352436823, 9.964192284299155 47.565819946517664, 9.964192335247462 47.56581994304255, 9.964192384786038 47.565819934259565, 9.96520383001564 47.56558233326437, 9.965203883303262 47.56558231698668, 9.965203924748137 47.56558228905387, 9.965458325339037 47.56537691709497, 9.965458356910654 47.565376892524945, 9.965672447359085 47.565216246063486, 9.965672480633518 47.56521621646416, 9.965672506183582 47.56521618352758, 9.96606412043932 47.564589314509135, 9.966064239611967 47.56458916492276, 9.966064398162265 47.564589033192405, 9.966973606157284 47.56396467966941, 9.966973748188868 47.563964595116985, 9.968495473766742 47.56318136439777, 9.968495478897214 47.5631813617703, 9.970137254777377 47.56234475570865, 9.970137299560106 47.56234473073949, 9.971981187563676 47.56122154918547, 9.971981194982504 47.561221544597, 9.973344201454198 47.5603656191038, 9.973344421994184 47.56036550704092, 9.974810266698354 47.55977084708351, 9.97481047907255 47.55977077747813, 9.974810706267533 47.559770734442594, 9.97481094111293 47.55977071933514, 9.97481117619689 47.55977073263257, 9.97481140410005 47.55977077391519, 9.977180376056982 47.56035702405687, 9.977180640950689 47.56035711339002, 9.977180870085379 47.56035724026057, 9.977181052085573 47.56035739836998, 9.979070523979498 47.56244182208794, 9.979070566322175 47.56244185929153, 9.979070619276444 47.5624418896162, 9.982214883456106 47.56388550656317, 9.982215060324304 47.56388560374139, 9.982215210099573 47.56388571996773, 9.983464233524238 47.56504165533922, 9.983464273366634 47.56504168589161, 9.983464320762284 47.565041711007005, 9.98552596644517 47.565941010539454, 9.985526037548413 47.56594103383976, 9.985526114834848 47.56594104486218, 9.9868650933768 47.56601920179752, 9.986865341378907 47.56601923255072, 9.986865576336365 47.56601929451333, 9.986865789781168 47.56601938545217, 9.986865974020652 47.56601950208981, 9.986866122414744 47.56601964022249, 9.986866229615218 47.56601979487186, 9.986866291758517 47.566019960464295, 9.987323495386784 47.568016166737, 9.987323511870066 47.56801620907784, 9.987323574087954 47.56801622089789, 9.989020860590815 47.5682128993555, 9.989020920344078 47.56821290252058, 9.989020979951443 47.56821289827677, 9.99121456866336 47.567917700363466, 9.991214622132318 47.567917689916264, 9.991214672238812 47.567917673512355, 9.993426748660573 47.56702982690553, 9.99342697064202 47.56702975569299, 9.993427208176918 47.56702971339893, 9.993427453141935 47.567029701469735, 9.993427697159602 47.56702972031334, 9.993427931884888 47.56702976928535, 9.993428149290546 47.567029846710994, 9.993428341941605 47.56702994994241, 9.994786137680826 47.56790737186928, 9.994786187850904 47.56790739824388, 9.9947862473053 47.567907383138184, 9.996025093285017 47.56749085538184, 9.996025142924477 47.567490834717105, 9.996025169729572 47.56749079966416, 9.996619083753616 47.56650552697086, 9.996619205065649 47.56650537126237, 9.996619368790398 47.56650523454086, 9.996619568661345 47.5665051220393, 9.99661979702848 47.56650503806369, 10.000638914928954 47.56535601797068, 10.000639153407493 47.565355967097034, 10.000639401729128 47.565355947416805, 10.000639651092841 47.56535595962746, 10.000639892660692 47.565356003296266, 10.000640117871017 47.56535607687547, 10.000640318741922 47.565356177757295, 10.00064048815411 47.5653563023663, 10.00064062010329 47.56535644628607, 10.000640709912918 47.56535660441581, 10.001392074074626 47.567174094849584, 10.001392140600114 47.56717420087107, 10.002455198597433 47.56840101739408, 10.00245528110591 47.568401093115384, 10.00610579497802 47.57110416478845, 10.00610596956389 47.57110432730201, 10.006106086567232 47.57110451202027, 10.006106140151585 47.57110470972893, 10.006275667159974 47.572749484347824, 10.006275676476388 47.57274952270342, 10.00627573355413 47.57274952658809, 10.00817429929036 47.57275813714234, 10.008174400550136 47.57275813233608, 10.009462165201597 47.5726293249071, 10.009462439164999 47.57262931689196, 10.00946270971839 47.57262934717044, 10.009462965329469 47.57262941445188, 10.009463195102889 47.572629515868464, 10.009463389244612 47.572629647097315, 10.00946353947937 47.572629802544824, 10.009463639403464 47.57262997558511, 10.009463684757637 47.57263015884233, 10.009523535016397 47.5732756650804, 10.009523525388625 47.57327584342788, 10.00952346401702 47.57327601698196, 10.009523353314698 47.57327617891859, 10.009523197634419 47.573276322870456, 10.009523003097465 47.57327644317746, 10.009522777352931 47.57327653510919, 10.009522529277 47.57327659505092, 10.008326616196824 47.5734776659346, 10.008326539518185 47.57347768222358, 10.007301589538907 47.57374258068769, 10.007301534618932 47.573742599311984, 10.007301540072719 47.573742640761964, 10.007506754779229 47.5744713134734, 10.007506772808508 47.57447135399759, 10.007506834249332 47.574471346367055, 10.008610969228078 47.57425173653603, 10.0086111304047 47.574251687845866, 10.009864346987241 47.57372725202441, 10.009864393610393 47.57372722840988, 10.009864433357354 47.57372719959432, 10.011203642049066 47.57256514236068, 10.011203649073465 47.572565136154864, 10.011511685524306 47.572288040154355, 10.01151185374551 47.57228791523471, 10.012019015424503 47.57197598553852, 10.012019205372225 47.5719758882421, 10.012019417904487 47.571975815491285, 10.012019646190689 47.57197576962421, 10.012019882893984 47.571975752114994, 10.01305497756311 47.571962437196156, 10.013055185393128 47.57196244558122, 10.013055388735907 47.571962475871274, 10.013903259836457 47.57213695662538, 10.013903270583663 47.57213695887068, 10.015201632184104 47.5724122874698, 10.015201976180498 47.57241239932773, 10.016457274894556 47.572983834672186, 10.016457505056312 47.57298396753739, 10.016457684908511 47.57298413223303, 10.016457805130951 47.572984320224315, 10.018342290943876 47.57718864528994, 10.018342297082604 47.57718865939797, 10.018809420878275 47.578295438823766, 10.018809469328252 47.578295628444174, 10.018809457173422 47.578295820709116, 10.018809384969508 47.57829600682854, 10.01880925601756 47.57829617829332, 10.018809076213063 47.57829632726435, 10.018114655292617 47.57876009128962, 10.018114615637634 47.57876012394212, 10.018114659032827 47.57876015433227, 10.0190390403516 47.579285349306744, 10.019039161239515 47.57928542725842, 10.019631721089384 47.5797187464915, 10.019631884060153 47.57971889323221, 10.019631999676175 47.579719059330834, 10.01963206312391 47.579719237872034, 10.01963207176174 47.57971942142238, 10.019632025230054 47.57971960233996, 10.01963192546615 47.57971977309244, 10.019631776623614 47.5797199265707, 10.018815883030417 47.580398596110236, 10.018815841720862 47.58039863443651, 10.017997575642804 47.58124858566905, 10.01799754756374 47.5812486222645, 10.017997586943654 47.581248653717374, 10.018894898395564 47.58183665466345, 10.018894933163892 47.58183667589168, 10.019436396632962 47.58214454844247, 10.019436443110255 47.582144570535824, 10.019436494502372 47.5821445868866, 10.019913345016764 47.58226348283877, 10.019913394000465 47.58226349221482, 10.019913444530767 47.58226349636978, 10.02063027174555 47.58228462898038, 10.02063034032007 47.58228462611489, 10.020630406503415 47.582284613620196, 10.021322714008326 47.58209898586741, 10.021322723663594 47.582098983219, 10.02192071688673 47.5819312436721, 10.021920968014019 47.58193119222542, 10.021921229167026 47.581931175218436, 10.02192149016009 47.58193119331452, 10.021921740813719 47.581931245807816, 10.02192197135175 47.58193133065098, 10.02192217278255 47.58193144453487, 10.021922337249764 47.58193158301773, 10.021922458338707 47.5819317406983, 10.02206570589163 47.58217413714612, 10.022065709014555 47.58217414247976, 10.022117927682368 47.58226416273668, 10.02211798663702 47.582264292281316, 10.022259974965959 47.582687132844754, 10.022259994210698 47.58268717206788, 10.02226005288421 47.5826871833965, 10.023692609082506 47.582864191036926, 10.024912996272729 47.58301330118408, 10.024913034265914 47.58301330506082, 10.026531945149456 47.58314616301461, 10.026532004502307 47.58314616411772, 10.026532049241288 47.583146137671, 10.02713367669829 47.58271750679224, 10.027133712335807 47.58271747628303, 10.027133698773042 47.582717438477204, 10.026330923390745 47.581125473879084, 10.026330910757457 47.58112545089351, 10.02586850559187 47.58034948123245, 10.025868429651691 47.5803493024154, 10.025868409607844 47.58034911683939, 10.025868446317038 47.580348932436465, 10.025868538210236 47.580348757088466, 10.025868681359688 47.58034859829021, 10.025868869646809 47.58034846282914, 10.025869095023735 47.58034835649523, 10.026840919322044 47.579984592615425, 10.026840969733405 47.579984569317105, 10.026841004017657 47.57998453511469, 10.027821824671548 47.57877585500261, 10.027821963518361 47.5787757162873, 10.029789237453269 47.577157956905324, 10.029789276571531 47.5771579164313, 10.029789301795862 47.577157871170336, 10.030265913620582 47.57590199819093, 10.030360918285936 47.57565165307222, 10.030361004814395 47.57565149118903, 10.030361135253616 47.575651343431936, 10.03036130483018 47.575651215208175, 10.030361507338391 47.575651111210085, 10.030361735367446 47.57565103524349, 10.030361980572595 47.57565099008839, 10.030362233980517 47.575650977397245, 10.030362486317719 47.5756509976345, 10.030613177856283 47.57568784391271, 10.030613191910872 47.57568784587094, 10.032164802409094 47.57589220866952, 10.032164970260572 47.57589221601376, 10.033692500961507 47.5758269045837, 10.033692566115889 47.575826897229, 10.033692621608498 47.57582687295383, 10.034546707234673 47.57536333855531, 10.03454674858715 47.575363311797155, 10.034546782475854 47.575363280590715, 10.035714088051886 47.57406542910228, 10.035714132379505 47.574065370560085, 10.036212339221493 47.573268629722676, 10.036212462103578 47.57326847650519, 10.036212626282596 47.57326834222024, 10.036212825595339 47.57326823190887, 10.03621305255968 47.573268149712106, 10.036213298655472 47.57326809871558, 10.036213554644377 47.573268080833685, 10.036213810916673 47.57326809673769, 10.036214057852003 47.573268145830575, 10.039696022649412 47.57421707170177, 10.039696215770276 47.57421713714659, 10.039696390689654 47.57421722292954, 10.041241531275235 47.57511322904694, 10.041241545316906 47.57511323696518, 10.04137361096443 47.575185650053854, 10.04137365962972 47.575185672183686, 10.04137371332111 47.57518568810649, 10.045083781541882 47.576027898442376, 10.045083977699957 47.576027955205525, 10.045084157919275 47.57602803251126, 10.047555645357464 47.57728723767058, 10.047555690296203 47.577287256927, 10.047555739222686 47.577287271032944, 10.049543242796501 47.577735750793025, 10.049543496800695 47.57773582903411, 10.049543721078095 47.57773594150009, 10.051682743622052 47.57906551411414, 10.05168278696493 47.57906553682974, 10.051682838934594 47.57906554860057, 10.053751331931117 47.57940651636249, 10.053751388173737 47.57940652390651, 10.055820567533562 47.5796216153512, 10.055820809558043 47.57962165657536, 10.055821035930563 47.57962172774172, 10.055821238661727 47.57962182633862, 10.055821410596538 47.579621948886235, 10.056585403782037 47.580280705050434, 10.056585446634568 47.58028073544152, 10.056585507052402 47.58028074497951, 10.059610817301238 47.58055361937039, 10.059610872358848 47.58055362118114, 10.059610927090766 47.58055361674196, 10.061551936819576 47.58028295062508, 10.061552152107481 47.58028293284839, 10.061552368794688 47.58028293904299, 10.064683842085222 47.58054710101814, 10.064684004808193 47.58054710108156, 10.068377866043438 47.58023841371827, 10.068378148651542 47.58023841062333, 10.068378425827445 47.58023844810691, 10.068378685023061 47.58023852447207, 10.068378914504272 47.58023863626168, 10.070109037007644 47.581287526926204, 10.070109080846356 47.581287549310545, 10.07010913313391 47.5812875606367, 10.071355688821564 47.58148116372553, 10.071355754884111 47.58148116917543, 10.071355813165868 47.581481147407246, 10.073755856921926 47.580349470607686, 10.073755904220942 47.58034944320206, 10.073755896062147 47.58034940140032, 10.07297839096315 47.578109130389876, 10.072978358516002 47.5781089829823, 10.072978362417027 47.57810883396708, 10.073217863941686 47.57650161167956, 10.073217928019783 47.57650141218141, 10.073906550017693 47.575130038269435, 10.073906665547215 47.575129868478506, 10.07390683035619 47.57512971852394, 10.073907037332479 47.575129594876834, 10.073907277544293 47.57512950287302, 10.073907540625584 47.575129446482784, 10.07390781522341 47.575129428139604, 10.075247954852529 47.575134675071496, 10.0759914664114 47.57513757894835, 10.075991525694205 47.575137575127066, 10.075991517757785 47.57513753513661, 10.075848925407655 47.574732688581854, 10.075848915433603 47.574732657901386, 10.075642384152475 47.57404002316227, 10.075642366074641 47.57403998297547, 10.075642318489328 47.57403995604325, 10.073686843538573 47.57313464549079, 10.073686649452553 47.57313453591624, 10.073686489495204 47.57313440342225, 10.073686369453096 47.57313425280191, 10.073686293668853 47.57313408950403, 10.073686264884028 47.573133919436025, 10.07368628413991 47.573133748750195, 10.07368635073993 47.57313358362127, 10.073686462274763 47.5731334300229, 10.073686614709564 47.57313329351161, 10.073686802529894 47.573133179025795, 10.073687018941198 47.57313309070708, 10.075216110038918 47.57263659146216, 10.075216158218266 47.57263657177539, 10.075216122161804 47.57263654251134, 10.073420929168226 47.571434637857216, 10.073420776337828 47.57143451545346, 10.073420657985459 47.57143437661485, 10.07342057786737 47.57143422574784, 10.072446522434507 47.56891475797622, 10.07244644671551 47.56891463759767, 10.071460827869846 47.56782434497774, 10.071460713241569 47.56782418429637, 10.071460647653844 47.56782401144485, 10.071460633685836 47.56782383322026, 10.071460671886804 47.56782365663103, 10.07146076075455 47.56782348862123, 10.071460896794479 47.567823335797634, 10.071461074657048 47.56782320416975, 10.071461287348091 47.56782309891363, 10.07221854703662 47.5675214263052, 10.07221878445947 47.56752135196451, 10.072219038774826 47.56752131059668, 10.072219300120043 47.56752130380602, 10.072219558359878 47.56752133185586, 10.072219803479504 47.56752139365838, 10.072220025972898 47.56752148681685, 10.072220217211523 47.56752160771846, 10.073907757979855 47.56882159139932, 10.074778357828542 47.569480910082575, 10.074778464250802 47.56948097495198, 10.076893912176766 47.57051352693886, 10.076893967674495 47.57051354878286, 10.076894028386809 47.570513562885914, 10.07758344183025 47.570624060091994, 10.07758346085952 47.570624063242484, 10.0784982530174 47.570780365248325, 10.07849828580832 47.57078037115372, 10.081016908450126 47.57125734450127, 10.0810169702033 47.57125735189143, 10.081017027681519 47.571257334899265, 10.082522051543611 47.57068810165779, 10.0825221085713 47.570688074213045, 10.082522143295508 47.57068803306784, 10.082966052629837 47.56999790162101, 10.082966055520929 47.569997897057696, 10.083396031448032 47.56930874768918, 10.083396161219692 47.56930858738335, 10.083396336120643 47.5693084481575, 10.083396548932663 47.569308335757555, 10.08339679087289 47.569308254822275, 10.083397051956357 47.569308208691936, 10.083397321408032 47.569308199270324, 10.083397588107529 47.56930822694628, 10.083397841048036 47.569308290577624, 10.083398069790602 47.56930838753824, 10.083740391081465 47.56948869407189, 10.084070840235041 47.56966066275149, 10.084070886247437 47.56966068278547, 10.084070939424258 47.56966069144827, 10.086405539540102 47.56990321019493, 10.086405752783111 47.56990324475197, 10.098439683398249 47.57258110115786, 10.098439750399088 47.572581110946935, 10.098439818939871 47.572581111070996, 10.102982919968252 47.572265377055096, 10.102983178744298 47.57226537623755, 10.102983432840617 47.572265409437925, 10.102983672611588 47.57226547539593, 10.10441322740559 47.57277373356972, 10.104413283602625 47.57277374920992, 10.104413344348114 47.57277374986092, 10.10632568802851 47.572672896617604, 10.106325959386194 47.57267290115603, 10.106326223713276 47.572672942981356, 10.106326469970032 47.57267302034673, 10.107900921838144 47.57330745044559, 10.107901158102747 47.57330757172009, 10.107901348792096 47.57330772547972, 10.108981310622225 47.57440764872603, 10.108981344166905 47.574407677427295, 10.108981389655387 47.57440769718485, 10.111205816085283 47.57520636779975, 10.11120593085186 47.575206400070726, 10.117105296120775 47.5764403690487, 10.11710541852126 47.576440386284816, 10.119865727985195 47.576647750414665, 10.1198657846861 47.57664775104547, 10.1198657894167 47.576647712755296, 10.119830255172968 47.57434758961944, 10.119830274406914 47.574347427301696, 10.119830336489338 47.57434726998768, 10.119830439387963 47.574347122827064, 10.125469172037052 47.56787045311533, 10.125469195011195 47.56787042115037, 10.125469210204853 47.5678703871192, 10.12654304258862 47.564522974160674, 10.126543113708117 47.56452282037106, 10.126543224156903 47.56452267764193, 10.126543370393494 47.56452255054985, 10.12654354772888 47.56452244316996, 10.126543750476884 47.564522358945325, 10.12752219627125 47.56419361216553, 10.127522249149376 47.56419358988821, 10.127522285879415 47.56419355581586, 10.128666204641801 47.56288553444169, 10.128666229390129 47.56288549882931, 10.128666184332815 47.56288547399211, 10.127303561432578 47.56226985525401, 10.127303410042567 47.5622698044359, 10.126562433648042 47.56209679739077, 10.126562193819732 47.562096722579085, 10.126561980570425 47.562096617088386, 10.126561802329425 47.56209648508847, 10.126561666142212 47.562096331797036, 10.126561577391968 47.56209616327335, 10.126561539586797 47.562095986178825, 10.126561554221068 47.562095807513586, 10.127151362591324 47.55953782331633, 10.127151422192165 47.559537663073456, 10.127572893111513 47.55872719757488, 10.12757292939052 47.55872713530182, 10.129797597354772 47.55528843526098, 10.129797729152376 47.55528827714656, 10.129797905091257 47.555288140183876, 10.129798118008308 47.555288029949175, 10.12979835923488 47.55528795093054, 10.129798618949739 47.55528790634511, 10.129798886578932 47.55528789800811, 10.129799151226274 47.55528792625897, 10.130208913676473 47.5553610011023, 10.130208977588 47.555361007790374, 10.1302090184112 47.55536097379095, 10.131038261239842 47.554501278598785, 10.131038289940546 47.5545012409787, 10.13103824761219 47.55450120982864, 10.130391422420391 47.5541130408272, 10.130391253997404 47.554112919083074, 10.130391121634084 47.55411277835031, 10.130391029882373 47.5541126234687, 10.130390981897609 47.55411245976459, 10.13039097932998 47.5541122928677, 10.130391022267771 47.55411212851765, 10.13153992067518 47.55127739209779, 10.131540019779226 47.551277219494395, 10.131540168901296 47.55127706429596, 10.133089075648758 47.54997963500632, 10.133089171456769 47.54997952627996, 10.134163644166135 47.54824010087337, 10.134163680642935 47.54824002223077, 10.134598360245077 47.546875782658276, 10.134598374003504 47.54687574369875, 10.13495005733945 47.545969438144695, 10.13495006129288 47.545969428188414, 10.135598710568928 47.5443723274122, 10.13559881369109 47.54437214976337, 10.137648213556805 47.54171083067347, 10.137648366854807 47.5417106740146, 10.137648564804262 47.54171054236426, 10.137648798768426 47.54171044146653, 10.137649058539116 47.54171037572372, 10.138857440812592 47.54149887892698, 10.138857683414164 47.54149885239211, 10.140875006894944 47.541406720942824, 10.140875202343054 47.54140672179366, 10.140875395486557 47.541406742095354, 10.141869293118964 47.54156274308927, 10.141869304685281 47.54156274494167, 10.142823227930455 47.54171857646706, 10.142823458265317 47.54171862964757, 10.142823670410964 47.541718710443, 10.142823857238836 47.54171881613848, 10.14609237656157 47.5439425870286, 10.146092431259392 47.54394261698052, 10.14609249413648 47.5439426383128, 10.147992804869075 47.54442207570345, 10.14799301033319 47.54442214161752, 10.149964659588614 47.545201184646906, 10.149964715964279 47.545201201930084, 10.149964748503393 47.54520116624931, 10.150902979759286 47.54388691885367, 10.150903029841507 47.54388682149519, 10.15240762483859 47.539332837434614, 10.152407754793071 47.53933260321211, 10.153117737236956 47.5384498903295, 10.15311776074898 47.538449852555644, 10.153117709890168 47.53844983038442, 10.15176707083932 47.537982931369086, 10.151766801374754 47.53798280788696, 10.151278051948731 47.537693810606804, 10.151277970473902 47.537693758152095, 10.150749983585095 47.53732377994209, 10.150749777880238 47.53732359204459, 10.150039464693489 47.536458855352315, 10.15003942498515 47.53645880306059, 10.14957970405689 47.535801460730504, 10.149579651714955 47.53580139904253, 10.149223953709468 47.535449890766394, 10.149223916544095 47.535449860252115, 10.149223872002308 47.53544983467937, 10.148526441941765 47.5351167453317, 10.148526247430814 47.53511663186037, 10.148526088754616 47.535116495127546, 10.148525971843638 47.53511634024352, 10.148525901067318 47.535116172997, 10.148525879070919 47.535115999638755, 10.148525906676525 47.5351158266479, 10.148525982852384 47.535115660489915, 10.14852610475149 47.53511550737484, 10.148526267817907 47.53511537302527, 10.148526465957131 47.53511526246247, 10.148526691763823 47.5351151798186, 10.14852693679859 47.53511512818249, 10.148527191903383 47.53511510948397, 10.149892760309955 47.53510504634555, 10.149892853224053 47.53510504121443, 10.150426769448464 47.53504971252883, 10.150426804978807 47.53504970817289, 10.151213857635666 47.534938138225776, 10.151213911154995 47.534938127350465, 10.151213961187027 47.53493811048771, 10.151580023346291 47.53478717009966, 10.151580086910792 47.534787140317384, 10.152115461380081 47.53450368013224, 10.152115632284168 47.53450360327331, 10.152115818605942 47.53450354518415, 10.152790649381219 47.534334626413994, 10.152790968843835 47.5343345757574, 10.15354936052681 47.53427996042061, 10.15354950693617 47.534279955397515, 10.154644595396096 47.53428344421118, 10.154644653900297 47.53428344069005, 10.15464468461118 47.53428340673774, 10.156321952793288 47.53197016567138, 10.156322087147421 47.531970018196006, 10.15632226069631 47.53196989092118, 10.156322467002243 47.53196978856813, 10.157202061443835 47.531616133879744, 10.157202117433378 47.53161610528131, 10.157202135661521 47.531616059381896, 10.157455511814675 47.53049960591928, 10.157455515496522 47.53049956765323, 10.157455490386416 47.53049953329557, 10.157130382072504 47.530138062040464, 10.157130269929958 47.5301379048061, 10.157130204680849 47.530137735840825, 10.15713018878253 47.530137561508084, 10.15713022283376 47.53013738837347, 10.157130305552124 47.53013722295746, 10.157130433822353 47.530137071489804, 10.158472504049474 47.528858073296945, 10.158472537684307 47.52885803286882, 10.15847255818304 47.528857988580235, 10.158706052567082 47.528074307599475, 10.158706092620196 47.52807420484746, 10.159079876320872 47.527302842823815, 10.159079889321314 47.52730280389664, 10.159079842693023 47.527302779549004, 10.157873530937994 47.52678831594199, 10.157873311927679 47.526788199096046, 10.157873133724953 47.52678805380553, 10.157873004187524 47.52678788647687, 10.15787292902725 47.52678770448829, 10.15787291155823 47.526787515864456, 10.15787295255075 47.52678732892255, 10.157873050197296 47.52678715190561, 10.158492487807923 47.52594592404819, 10.158492509130294 47.52594588712407, 10.158492509934913 47.52594584747342, 10.158421799588055 47.525317045716776, 10.158421788957407 47.52531700565026, 10.158421730628474 47.525317015254686, 10.157239902704852 47.5256006345574, 10.157239649599418 47.52560067687615, 10.157239389183207 47.5256006848188, 10.157239131505559 47.525600658078865, 10.157238886510108 47.52560059768818, 10.157238663651116 47.52560050597724, 10.152177560864638 47.52302443152355, 10.152177357048025 47.523024303026716, 10.152177197224647 47.52302414852201, 10.152177088423207 47.52302397480425, 10.152177035428581 47.52302378951319, 10.152177040571372 47.523023600797565, 10.152177103625396 47.52302341695671, 10.15217722181768 47.523023246075596, 10.155050808037718 47.51979853092518, 10.15505083505401 47.51979849244101, 10.155050813534112 47.519798452395776, 10.154328683782769 47.51878129094861, 10.154328597973736 47.51878113433383, 10.154328556319568 47.51878096965675, 10.154328560255783 47.5187808025926, 10.154328609646713 47.518780638898804, 10.154328702790243 47.51878048421668, 10.15664311863796 47.51577008033765, 10.156643263234733 47.515769930701836, 10.156643448603102 47.51576980342349, 10.156643667418058 47.515769703532115, 10.156643911032978 47.51576963497498, 10.15664416982122 47.515769600461205, 10.15664443355654 47.51576960135462, 10.156644691817242 47.51576963761991, 10.15664493439795 47.51576970782404, 10.160943161379178 47.517373109117266, 10.160943215654049 47.517373125153576, 10.160943274268424 47.51737311951108, 10.164448421530581 47.516808991500405, 10.164448480933727 47.51680897752795, 10.164448495212325 47.51680893599153, 10.164984699196363 47.51398938778446, 10.164984701186171 47.51398934732021, 10.164984653844135 47.5139893226718, 10.161322114848195 47.51243275610736, 10.161321908902092 47.512432648133135, 10.161321737996555 47.51243251495553, 10.161321608710132 47.512432361700846, 10.16132152601936 47.51243219426821, 10.160541704739755 47.51012102558922, 10.160541686161888 47.51012098796439, 10.160541630716011 47.51012100059423, 10.1525149133481 47.51256642953008, 10.152514859986569 47.5125664502714, 10.152514855815367 47.51256649189708, 10.152583615197324 47.51410101988747, 10.152583598126917 47.51410119369628, 10.152583532024549 47.514101362021144, 10.152583419366184 47.51410151855716, 10.152583264371684 47.51410165744097, 10.152583072846664 47.514101773470394, 10.15258285196505 47.514101862299334, 10.152582610000406 47.514101920600545, 10.152582356015989 47.5141019461902, 10.152582099525292 47.514101938109825, 10.152581850135645 47.51410189666206, 10.15258161718845 47.51410182339944, 10.152581409409187 47.51410172106615, 10.1479087668702 47.51129373485585, 10.147908712104595 47.51129370829281, 10.147908646172178 47.511293699058214, 10.130598191448078 47.51012204802216, 10.13059795222421 47.510122016550895, 10.13059772552312 47.5101219559228, 10.130597518994067 47.51012186818358, 10.123465483686072 47.506432077569066, 10.123465295828376 47.50643195923148, 10.123465145026127 47.5064318185857, 10.12346503691091 47.506431660884076, 10.123464975520202 47.506431492015835, 10.12346496314658 47.50643131828723, 10.12346500025214 47.50643114618599, 10.123465085451194 47.50643098213914, 10.12472475119501 47.50459436726005, 10.124724901268161 47.50459419925551, 10.12472510148463 47.504594057344406, 10.12472534230602 47.504593948287436, 10.129444478188882 47.502930147788916, 10.129444525161299 47.502930126828055, 10.12944447609716 47.50293010820744, 10.127831415775365 47.50245767467947, 10.127831190536986 47.502457590262225, 10.127830993559463 47.50245747792243, 10.127830832255889 47.50245734188788, 10.127830712696802 47.5024571872781, 10.127830639381703 47.50245701991174, 10.127830615069762 47.50245684608749, 10.127830640675915 47.502456672347094, 10.128347353750462 47.50069828337744, 10.128347425608101 47.50069812073424, 10.128347541199632 47.50069797014133, 10.129081791596429 47.49992853107122, 10.12908195013002 47.49992839553754, 10.129082143951912 47.49992828309387, 10.129082365898393 47.499928197896224, 10.129082607766225 47.49992814309351, 10.129082860615908 47.49992812071124, 10.129083115102027 47.499928131576674, 10.129083361818703 47.49992817528823, 10.130326307291991 47.50023764385684, 10.13032636600405 47.500237653955, 10.130326375920792 47.50023761340721, 10.130427505734204 47.49911493499072, 10.130427503688765 47.49911489481543, 10.130427448881326 47.49911487956362, 10.124192578704891 47.49783560859853, 10.124192395552104 47.497835589462184, 10.120281630113357 47.49780400382071, 10.120281618561231 47.497804003693034, 10.118572154364129 47.49778004433676, 10.11857186502362 47.497780018484775, 10.118571591022377 47.49777995031435, 10.118571345627167 47.497779843126196, 10.118571140719686 47.497779702110236, 10.11795285594663 47.49724806817619, 10.117952706287396 47.497247906921224, 10.117952610014763 47.49724772789519, 10.117952571445022 47.497247539124494, 10.11795259230742 47.49724734907248, 10.118389165337543 47.49562306902068, 10.118389170160265 47.495623025742916, 10.118389110939004 47.495623009363534, 10.115133224593706 47.494982661491136, 10.115132963824584 47.49498258904892, 10.115132731494432 47.49498248085276, 10.115132538090982 47.49498234178683, 10.113263272419347 47.493313770198206, 10.113263223110803 47.493313735074736, 10.113263156334776 47.49331371776287, 10.110814332121464 47.492882726759326, 10.110814097858764 47.49288266911106, 10.110813883623525 47.49288258273696, 10.108674875945821 47.49182378771557, 10.108674818574073 47.49182376503842, 10.10867475262902 47.49182375981327, 10.105414543773534 47.491793984463605, 10.105414280342597 47.491793964062516, 10.105414028158823 47.49179390850098, 10.105413797303102 47.491793820000055, 10.105413597003711 47.491793702097496, 10.10451596644513 47.4911478225638, 10.104515806674188 47.491147682106664, 10.104515690611024 47.49114752310304, 10.104515622766971 47.4911473517333, 10.10451560577911 47.491147174658586, 10.104515640307746 47.49114699876173, 10.104515725010776 47.491146830879785, 10.104515856595809 47.49114667753829, 10.104516029948176 47.49114654469758, 10.104516238329698 47.49114643752114, 10.104516473640668 47.49114636017489, 10.104516726734595 47.49114631566523, 10.108312066649841 47.490744276422596, 10.108312123723179 47.490744266721386, 10.108312172030807 47.490744243924865, 10.109284102008736 47.4901907495798, 10.109284154476304 47.490190711726825, 10.109284192476311 47.49019066660717, 10.109726676032484 47.48948327343471, 10.109726793223677 47.48948312597962, 10.109726948646955 47.48948299581967, 10.10972713691715 47.489482887464725, 10.109727351511008 47.48948280466911, 10.10972758499316 47.48948275030157, 10.109727829273812 47.48948272624585, 10.109728075889024 47.48948273333544, 10.109728316293957 47.489482771324695, 10.111420847714543 47.48986593869738, 10.111420958369632 47.48986596753774, 10.113325332063994 47.490429803420454, 10.113325420123457 47.49042982461086, 10.115469734704773 47.490832769778805, 10.115469748238173 47.49083277221762, 10.118872043803627 47.49141980151797, 10.11887211006604 47.491419810536165, 10.120077411084896 47.491540831728216, 10.120077466265581 47.49154083355777, 10.120077447769722 47.49154079822564, 10.117245544884062 47.48745181355199, 10.117245511626887 47.48745177577209, 10.117245468053138 47.48745174318186, 10.115609661970057 47.486448710133395, 10.11560955435222 47.48644863603737, 10.112539691352179 47.48407478194392, 10.112539650102756 47.4840747551522, 10.11253960263968 47.484074733616055, 10.110544853303942 47.48333114888766, 10.110544635746416 47.48333104743867, 10.110544452104376 47.48333091874582, 10.11054430965527 47.48333076790903, 10.110544214044134 47.48333060090572, 10.110544169059883 47.483330424353944, 10.11054417648519 47.48333024525022, 10.111069265452471 47.48055698264413, 10.111069317178922 47.48055682420163, 10.11106940997501 47.48055667463891, 10.111069540823946 47.48055653881825, 10.111069705471861 47.48055642115514, 10.111069898566107 47.480556325474765, 10.111070113829228 47.48055625488767, 10.117801740635922 47.47883740998739, 10.117802024857923 47.47883736092825, 10.117802318010337 47.47883735548741, 10.123365801770799 47.47915329501423, 10.123365857905014 47.47915329454556, 10.123365848721784 47.479153256948145, 10.122533787923937 47.477030105822244, 10.122533744448065 47.47702991092413, 10.122322080883452 47.473490121018855, 10.122322093614736 47.4734899548733, 10.122322151167046 47.47348979315547, 10.122322251574037 47.47348964139069, 10.12232239140514 47.473489504764224, 10.122322565882836 47.473489387944106, 10.122322769045821 47.47348929492169, 10.122322993952752 47.47348922887518, 10.122323232919353 47.4734891920612, 10.127267605033301 47.47304824058722, 10.12726786161291 47.47304823472167, 10.127268115043787 47.4730482625443, 10.127268355821329 47.47304832301171, 10.127268574915476 47.473048413856105, 10.130436427379646 47.474667272084744, 10.130436474883268 47.474667292292814, 10.130436526757675 47.47466730672061, 10.139288261888478 47.476547932177056, 10.139288326331382 47.47654794105376, 10.139288386425648 47.47654792292801, 10.140145758049027 47.47621377474213, 10.140145810038014 47.47621374948713, 10.140145831966448 47.47621370871989, 10.14028879449578 47.47583391195128, 10.140288803639148 47.47583387414275, 10.140288783648886 47.47583383831326, 10.139775840041656 47.47511208986318, 10.139775754191662 47.47511193344158, 10.139203208357344 47.47367278400252, 10.139203168614326 47.47367263568424, 10.139203165889649 47.47367248494132, 10.139203200259773 47.47367233600269, 10.13981939115739 47.4719571873348, 10.139819400034824 47.471957146377214, 10.139819397587235 47.4719571050123, 10.13965033780613 47.47110101450459, 10.139650333958505 47.471100796712506, 10.139650407274358 47.47110058466682, 10.140196241762718 47.47009114442338, 10.14019635302868 47.47009098752421, 10.140196506707477 47.470090848107894, 10.140782403256736 47.4696546261247, 10.140782645086114 47.469654484769116, 10.140782929653778 47.46965438674594, 10.142800088087421 47.46915621277288, 10.14280014060807 47.469156196029715, 10.142800172952796 47.46915616332214, 10.144658208449533 47.466853434990234, 10.14465838062391 47.46685326918169, 10.144658603110075 47.46685313376768, 10.146692369976831 47.46587166451691, 10.146692690874191 47.46587155081803, 10.1491345464452 47.46527756654458, 10.149134597399389 47.465277550670095, 10.149134637462474 47.465277524040566, 10.149814044445577 47.46474070609088, 10.149814077260965 47.46474067457092, 10.149814032823883 47.46474065050196, 10.147978273877184 47.46392614667239, 10.147978137947067 47.46392607753273, 10.14682302160489 47.46325593271413, 10.146822913700865 47.46325588177911, 10.145245391855338 47.46265963083152, 10.145245191816787 47.46265953800979, 10.145245020004007 47.462659422009, 10.145244882158357 47.4626592867055, 10.145244782886135 47.462659136620644, 10.145244725504657 47.4626589767697, 10.145244711931419 47.46265881249433, 10.1453366783275 47.46089906100555, 10.145336713262468 47.46089888523099, 10.145336798274428 47.460898717519754, 10.145336930062143 47.46089856438443, 10.14533710350805 47.46089843177162, 10.147558850763303 47.45950442973681, 10.147559166296439 47.459504282805675, 10.150095189442371 47.4586590425529, 10.150095240315677 47.458659021128874, 10.150095218803093 47.458658983192905, 10.149715021538709 47.45814614157944, 10.149714923148274 47.45814596469109, 10.14971488134498 47.458145777743184, 10.149714897973858 47.45814558898688, 10.149714972300988 47.458145406753246, 10.149715101045832 47.458145239085326, 10.150528391947711 47.45731295624565, 10.150528548500786 47.45731282475718, 10.150528738499835 47.45731271547452, 10.15052895523902 47.45731263225464, 10.151669029074611 47.45696639717835, 10.151669281440551 47.456966340373775, 10.151669545419164 47.45696631892323, 10.151669810386627 47.45696633368994, 10.151670065679301 47.45696638407968, 10.151670301022891 47.45696646806446, 10.151670506945985 47.456966582264315, 10.151670675161185 47.45696672208327, 10.151670798898664 47.4569668818943, 10.152167811468212 47.45780313657575, 10.152167837389547 47.45780317061493, 10.15216788925435 47.457803155516665, 10.157466942393787 47.45584346196656, 10.15746700547041 47.45584344010041, 10.160294726468871 47.4549269610134, 10.160294777669801 47.45492694021017, 10.160294794209179 47.45492690127558, 10.160579912519275 47.45390364602185, 10.160579918137069 47.453903602224976, 10.160579898167226 47.45390356040815, 10.15891528488912 47.45132885287607, 10.158915254050692 47.45132881594127, 10.158915192444107 47.45132882315101, 10.155798600290485 47.451920892672845, 10.155798309116502 47.451920924824776, 10.151904208569583 47.45205220284551, 10.151903941365926 47.45205219347841, 10.151903682382722 47.45205214784273, 10.151903442178547 47.45205206779897, 10.151903230546404 47.45205195661049, 10.151903056114392 47.452051818810396, 10.151902925993987 47.45205166001669, 10.150436006211534 47.44973854261377, 10.150435973175686 47.44973850273835, 10.15043591175468 47.449738483951734, 10.149536716979293 47.44953793689103, 10.149536714645587 47.44953793636892, 10.148968136894396 47.44941032814724, 10.148968075064966 47.449410318807274, 10.14896802220184 47.44941034251161, 10.147305935388568 47.45033031817212, 10.147305928294344 47.45033032207118, 10.146454981489034 47.450794717734844, 10.146454892437223 47.45079476231032, 10.14419672120844 47.451829141943456, 10.144196494231394 47.45182922532578, 10.144196247769374 47.451829277248486, 10.14419599116825 47.45182929574268, 10.144195734158352 47.45182928010704, 10.144195486485527 47.451829230934486, 10.144195257541543 47.45182915008965, 10.144195056007982 47.45182904063816, 10.14381351107139 47.451576732175575, 10.143813503321063 47.451576727008195, 10.142389888501512 47.45061972055708, 10.142389832888048 47.45061969055649, 10.14238976903576 47.450619669439305, 10.14040746557989 47.450137180743326, 10.140407240920393 47.4501371093043, 10.140407039802426 47.450137010673075, 10.140406869274509 47.4501368883064, 10.140406735313125 47.45013674649282, 10.140406642613202 47.45013659020246, 10.140406594423569 47.450136424912806, 10.140406592433107 47.45013625641673, 10.140560999760106 47.448915614082274, 10.140560998960467 47.44891557220852, 10.140560947090014 47.44891554957836, 10.13313729076725 47.446339455034874, 10.133137066507944 47.44633935669035, 10.133136875819611 47.446339229804906, 10.133136726441887 47.446339079528485, 10.133136624437679 47.44633891196049, 10.133136573947118 47.44633873390216, 10.1331365770195 47.44633855258048, 10.133136633530127 47.446338375354905, 10.13383568480382 47.44487707914353, 10.133835774289338 47.444876935700584, 10.134290281964699 47.444294552237295, 10.134878582961047 47.443532857239006, 10.136202227296215 47.4418123168404, 10.136202258606225 47.441812278450485, 10.137377481782124 47.440450663364174, 10.137377594783327 47.440450552424444, 10.137963780645634 47.439958425238906, 10.137963786990912 47.43995841995281, 10.138136952043785 47.43981527035163, 10.138137001605324 47.439815231680804, 10.13896239039544 47.4392070829533, 10.138962437906455 47.439207043711974, 10.139868919384718 47.438365597403525, 10.139869005002513 47.438365489546726, 10.140352008885632 47.437486714799256, 10.140352037396335 47.43748664719781, 10.140636959630376 47.43653528718367, 10.14063696228899 47.43653527852434, 10.140704664411903 47.4363200612316, 10.140704745387703 47.43631988988649, 10.140704874911464 47.436319732909354, 10.141184664693414 47.43585438566737, 10.141184906037736 47.435854208131744, 10.142235058299807 47.43526479857276, 10.142235088563693 47.43526478208693, 10.14304580172623 47.434836246054516, 10.143045854622256 47.43483621085072, 10.143045894453957 47.434836168440896, 10.143393590030573 47.43435220796405, 10.143393595438248 47.4343522002522, 10.143540714288557 47.43413716283658, 10.143540882497033 47.43413697880969, 10.144206853174294 47.43357324013259, 10.144206856403482 47.43357323740992, 10.144366457347832 47.43343920401007, 10.144366633890655 47.43343908167248, 10.144366841349033 47.433438984280855, 10.144367072205895 47.43343891536405, 10.14622319486185 47.43302285135781, 10.146223559993798 47.4330228066809, 10.147468166543812 47.43299093262556, 10.147468226394885 47.43299092731168, 10.147468283796318 47.43299091462732, 10.149047103589416 47.432528876707806, 10.149047146402555 47.432528864776174, 10.151660307078508 47.43183653805796, 10.151660405166133 47.4318365054966, 10.153598850051571 47.43105214076286, 10.153598953576529 47.43105208898257, 10.15504820232568 47.43016729654133, 10.155048209528069 47.43016729207849, 10.155872470996389 47.42964894485205, 10.155872673426089 47.42964884016454, 10.155872901569584 47.42964876370225, 10.156907134260692 47.429382593717555, 10.156907191619318 47.429382574138245, 10.156907196151868 47.42938253062897, 10.156883908047302 47.42890012240539, 10.156883898938553 47.42890007713273, 10.156883876384054 47.4289000340867, 10.154878247481452 47.42604312196547, 10.1548781593674 47.426042956487024, 10.154878120318592 47.426042782517584, 10.15481729000905 47.42527016747954, 10.154817278836838 47.42527012062951, 10.154817253251842 47.425270076468564, 10.153492164604428 47.42354994551532, 10.153492068275115 47.42354985186811, 10.153202433611629 47.423333378317096, 10.153202386500903 47.42333334945323, 10.153202323677323 47.42333334350847, 10.152435550555486 47.42331293893096, 10.152435305222408 47.423312916670625, 10.152435070271066 47.42331286377422, 10.152434853907685 47.42331278208925, 10.152434663689242 47.42331267446877, 10.152434506259562 47.423312544671646, 10.152434387117209 47.42331239723133, 10.151740751957254 47.42222367810441, 10.151740670482265 47.422223503126716, 10.150790778042833 47.419108295651306, 10.150790750942523 47.41910813651056, 10.150790765780059 47.41910797662335, 10.15079082208538 47.419107821054816, 10.150790918074781 47.41910767473323, 10.150791050707396 47.41910754229398, 10.151425408161051 47.418581649037215, 10.151425500971202 47.41858157978298, 10.151869255194562 47.418283232202384, 10.151869362209567 47.41828313802907, 10.152123820240082 47.417984191799306, 10.152123868113362 47.4179841225427, 10.15229430801869 47.41767061645896, 10.152294322885716 47.41767057869773, 10.152294279743815 47.41767055285207, 10.150086439625207 47.416576459226306, 10.150086241347896 47.41657633844891, 10.150086082626734 47.41657619315046, 10.150085969878427 47.41657602920499, 10.150085907661104 47.4165758532404, 10.150085898490039 47.41657567237051, 10.15029973700521 47.41438485991059, 10.150299767977389 47.41438471719874, 10.150299832091 47.414384579681595, 10.151665672409699 47.4121071777742, 10.151665689630216 47.412107137861966, 10.151665634034801 47.41210712049541, 10.148917546065773 47.411469435935864, 10.148917281868371 47.4114693515069, 10.148917051313552 47.411469229771555, 10.144227788036012 47.40837258306174, 10.144227584508954 47.40837241084722, 10.143006529790155 47.40702989297069, 10.143006487151968 47.40702985575064, 10.143006425520383 47.40702983407104, 10.14165919035758 47.40667502247905, 10.141659183152568 47.40667502061419, 10.140549841631087 47.40639290257943, 10.140549598392122 47.40639282050398, 10.140549384903984 47.406392706414216, 10.138271148443748 47.40489397286649, 10.1382709266129 47.40489378083949, 10.137378698097821 47.40385774995793, 10.137378666364132 47.40385771092153, 10.137247627161354 47.40368663575836, 10.137247590213029 47.40368659785292, 10.137247527492175 47.403686582059116, 10.13708900022989 47.40365911030868, 10.137088998122996 47.4036591099423, 10.135199753996298 47.403329447976354, 10.135199518054472 47.40332939012532, 10.135199302397842 47.40332930305631, 10.135199114767381 47.403329189894606, 10.135198961898043 47.40332905470217, 10.135198849277028 47.403328902331666, 10.134519888585872 47.40214149750172, 10.134519817758003 47.40214132383792, 10.134519799234521 47.402141144059584, 10.13451983375802 47.40214096537382, 10.134519919944486 47.40214079494395, 10.135175059639762 47.401173211557925, 10.135175171397892 47.40117307789721, 10.135175314980179 47.40117295911717, 10.138140883541693 47.399107731737395, 10.138140923042538 47.39910769814476, 10.138140928142292 47.39910765527577, 10.137984672640382 47.39328556683304, 10.137984665053208 47.39328552486579, 10.137984602876715 47.39328552523396, 10.121887979951625 47.39452415699871, 10.121887742547813 47.39452416067182, 10.121887508001413 47.3945241354403, 10.1218872838613 47.3945240821162, 10.121887077341425 47.394524002415785, 10.12188689508862 47.39452389890418, 10.120295216978363 47.39344090731738, 10.120295046023987 47.39344076429937, 10.12029492149397 47.393440600598296, 10.12029484860983 47.39344042307808, 10.120294830427554 47.39344023918215, 10.12029486770953 47.39344005662116, 10.121294744415852 47.39066803135409, 10.121294752662282 47.390667993495946, 10.12129469777125 47.39066798506166, 10.110242524560794 47.38969443845755, 10.110242465490241 47.38969443690992, 10.110242406972478 47.389694442609326, 10.104679124848452 47.39059062353056, 10.104679071272425 47.39059063555231, 10.104679021520408 47.39059065364326, 10.098279912707525 47.39342387944035, 10.098279627407328 47.39342397477078, 10.098279316914411 47.39342402109682, 10.09658532568469 47.3935344896899, 10.096585216301081 47.39353449372547, 10.092973201496962 47.39356589529146, 10.09297314032029 47.393565899794986, 10.092973085971838 47.39356591941915, 10.090769335935663 47.39455457609127, 10.090769125081255 47.39455465305873, 10.090768897294904 47.39455470295186, 10.090768660022182 47.394554724139795, 10.090768421018737 47.39455471593001, 10.090768188096813 47.394554678590815, 10.088313198595243 47.39399763655386, 10.088312955056663 47.393997561971474, 10.088312738497166 47.39399745565844, 10.088312557735039 47.39399732194384, 10.088312420130915 47.39399716627252, 10.088312331288037 47.39399699498342, 10.087420284659684 47.39149656192399, 10.087420265896283 47.39149652539391, 10.087420216807283 47.39149654496191, 10.0828902747077 47.3937341310551, 10.08289022655381 47.393734160415526, 10.082890225411267 47.39373420438898, 10.082952239451041 47.39422849796635, 10.082952248291459 47.39422854227848, 10.083144830772923 47.39492997361354, 10.083144849113769 47.394930015965784, 10.083144899860365 47.39493004350516, 10.083724594425963 47.39518367983151, 10.083724768777824 47.39518377087671, 10.08372491856495 47.39518388028916, 10.083725039655924 47.39518400505106, 10.084065295598931 47.395607296581275, 10.084065385737922 47.39560743538128, 10.08433869806716 47.39614745094648, 10.084338704363256 47.396147463695016, 10.084897962909752 47.39730850990817, 10.08489798624088 47.397308546676975, 10.084898027261833 47.397308575409845, 10.085315078995011 47.39755203471938, 10.085315183562692 47.397552102862996, 10.085719270381475 47.39784591567686, 10.085719432008966 47.39784605994739, 10.08614253054092 47.39831521896448, 10.086142640836002 47.39831537219295, 10.086142706630422 47.398315536820704, 10.086308067169647 47.39896885577857, 10.086308079640169 47.398969098951945, 10.086257447716674 47.39930974531947, 10.086257413685402 47.399309876399904, 10.086257351596357 47.39931000263525, 10.086087903036987 47.39958500478841, 10.086087777129944 47.39958516273067, 10.086087607601455 47.3995853005267, 10.086087401204782 47.39958541268729, 10.086087166161835 47.39958549474449, 10.085728289835641 47.39968137311188, 10.085728048422292 47.39968142020351, 10.085727798274867 47.39968143544598, 10.085393208357107 47.39968015497819, 10.085393149127695 47.3996801584196, 10.085393091788331 47.3996801690837, 10.08488977161913 47.399808152085306, 10.08488971352081 47.39980817151289, 10.084889662193474 47.399808198345475, 10.084384687788852 47.40013105968675, 10.084384651672305 47.400131086913106, 10.084384622601085 47.40013111779338, 10.084094653075534 47.400503319361945, 10.084094514770669 47.40050346218689, 10.084094339236518 47.40050358465072, 10.08409413280851 47.400503682333415, 10.083758730757234 47.40063210665366, 10.083758468491629 47.40063218307845, 10.083758188234382 47.40063221951655, 10.083208069205481 47.400662567050276, 10.083207998271167 47.40066257642974, 10.083207932121523 47.40066259620942, 10.08280000797995 47.40082340867954, 10.08279996354264 47.40082342970787, 10.082799924795413 47.40082345541813, 10.0823665396577 47.40116282775789, 10.08236647013116 47.401162878156455, 10.082174272705021 47.40129189539621, 10.082174018368972 47.40129202887529, 10.082173724233014 47.401292116765745, 10.081862558784872 47.40135580955509, 10.08186250382886 47.40135582460874, 10.081862453759847 47.401355846147055, 10.081646305299971 47.40146865361548, 10.081646253096805 47.40146868788385, 10.081646228196107 47.401468734224785, 10.081548257007356 47.40174438556137, 10.081548215842432 47.40174447891892, 10.081402457368528 47.40201986556921, 10.081402374988235 47.402019990473214, 10.081402265704144 47.40202010543994, 10.081113165747809 47.40227873148893, 10.08111310902966 47.40227879160926, 10.08087135020721 47.40258638823328, 10.080871321821867 47.40258643806404, 10.080871311868997 47.40258649107094, 10.08086899407372 47.402862553836016, 10.080865314116908 47.40330085176103, 10.080865292547845 47.40330100851958, 10.080865231134206 47.403301160325654, 10.080865131755 47.4033013025346, 10.080599588767761 47.40360864508411, 10.080599529200656 47.403608707901085, 10.080213743873603 47.40398066593264, 10.080213502919175 47.403980842374224, 10.07978099361715 47.40422271143341, 10.079780928680396 47.40422274551014, 10.079420853367568 47.40439987520643, 10.07942058402923 47.40439997753043, 10.079420287171745 47.40440003469201, 10.078990054457266 47.40444699961061, 10.078989813408008 47.40444701074311, 10.078989573398411 47.40444699190697, 10.078989342421783 47.40444694372954, 10.078989128170587 47.404446867815324, 10.078727545093619 47.40433242055992, 10.07872736302087 47.40433232470709, 10.078727208133378 47.40433220885355, 10.07848993026122 47.40412028890024, 10.07848988961213 47.40412025883517, 10.078489835702962 47.404120240825705, 10.078108006768943 47.40402132992731, 10.078107857352984 47.404021304315826, 10.07772548369635 47.40398734055892, 10.077725428028543 47.40398733888505, 10.077725374772392 47.403987350032146, 10.077317786585603 47.4040994368258, 10.077317734428096 47.40409945298994, 10.076621918313284 47.404340362020484, 10.076621882893702 47.40434037383498, 10.076022201155958 47.40453291702541, 10.076022149083029 47.40453293794479, 10.076022103557676 47.40453296501907, 10.07566114220679 47.40479135793502, 10.075661032576805 47.404791463491854, 10.075491686113905 47.40501812353331, 10.075491663247044 47.40501815757637, 10.075346178511815 47.40526100303614, 10.075346021447418 47.4052611944588, 10.075345800987213 47.40526135439688, 10.075033844766484 47.40543846907022, 10.075033616276123 47.40543857344788, 10.075033360977672 47.405438643445585, 10.075033089908148 47.405438676037214, 10.074722363312436 47.40545367634791, 10.0744351898557 47.40546878836213, 10.074435129066092 47.40546879556617, 10.07443507658538 47.405468817633086, 10.07412278544247 47.40562995828069, 10.074122671833507 47.40563003308515, 10.073833718882831 47.40587235201292, 10.073833529670095 47.405872481339216, 10.073833305992878 47.40587258207593, 10.07347370965635 47.40600096986209, 10.073473407316152 47.40600104751482, 10.073090275446743 47.40606447143818, 10.073090216963731 47.40606448530518, 10.073090179241714 47.40606451870421, 10.072897039327282 47.406274843961285, 10.072896987882741 47.40627491239685, 10.07265434954788 47.40667987894668, 10.072654177385523 47.40668008412552, 10.072365042100392 47.40693865576129, 10.072364848666766 47.4069387950628, 10.07200441665506 47.40714837654668, 10.072004259052566 47.40714845526692, 10.072004086113262 47.40714851734553, 10.071572532462506 47.407276688555136, 10.071572459508152 47.407276708490315, 10.071188892595039 47.40737262785755, 10.071188815228396 47.407372651124184, 10.070780939690605 47.40751718090412, 10.070780800425297 47.40751724703043, 10.07046820863244 47.40771084830685, 10.070468161893666 47.407710884402874, 10.070468142253974 47.407710930600985, 10.070418636650407 47.40790556126994, 10.070418631889405 47.407905598629675, 10.070418645686496 47.40790563493696, 10.070536288482701 47.40813344665862, 10.070536309842172 47.40813348290439, 10.070796050782983 47.408524204315725, 10.070796156000876 47.40852445273483, 10.070887879371563 47.40897926086165, 10.070887891088804 47.40897940916123, 10.07088786677582 47.4089795567527, 10.07088780709452 47.408979699617966, 10.070717801976452 47.4092873989396, 10.070717768954824 47.40928745325047, 10.070523961646416 47.40957887618604, 10.07052384172627 47.40957901975241, 10.07052368525158 47.40957914601449, 10.070355723827982 47.40969184153382, 10.07035549285602 47.40969196530793, 10.070355227391243 47.40969205136763, 10.070354940531521 47.4096920954668, 10.069948537231886 47.409722917629395, 10.069948195800695 47.40972291340062, 10.069613750424537 47.40968912384098, 10.069613675289665 47.409689122216925, 10.06961360161058 47.40968913235567, 10.069326055533644 47.409752930222496, 10.069325997682363 47.409752947414795, 10.069325945766336 47.40975297184176, 10.06915772167736 47.40984970055981, 10.069157676525295 47.409849732658465, 10.069157695447423 47.409849775166585, 10.069370041173102 47.41019163856798, 10.069370068788547 47.41019167370376, 10.06937011925708 47.41019169394874, 10.06972792367575 47.41030677840711, 10.06972798663277 47.41030679346927, 10.069728053184372 47.410306790037055, 10.07011114522143 47.41025960262261, 10.070111326124918 47.41025958898245, 10.070613449515227 47.41024535363616, 10.070613701085342 47.41024536281125, 10.07061394554371 47.41024540421311, 10.070614174039912 47.41024547634278, 10.071066679418262 47.410425716447854, 10.071066894229403 47.41042582305743, 10.071067073362595 47.41042595670199, 10.071423023259044 47.41075207349047, 10.071423028751854 47.410752078559824, 10.071826429452507 47.41112711684977, 10.07182655870892 47.41112726491791, 10.071826644125192 47.41112742700897, 10.071990276277676 47.41156636776266, 10.071990316203953 47.41156656075485, 10.072010475739615 47.412005046360306, 10.072010471134694 47.412005154560404, 10.071959287813389 47.412394664842935, 10.071959297286206 47.412394790070856, 10.072052195706432 47.41271991558907, 10.072052210738956 47.412719951667015, 10.07205223445071 47.41271998552275, 10.072360202862017 47.413078507380256, 10.072360212468656 47.41307851875322, 10.072739143270985 47.413534782938264, 10.072739192914895 47.41353483419251, 10.073214080070503 47.413958960114705, 10.073214157693076 47.413959037483565, 10.073593343238088 47.414382774722704, 10.07359337509161 47.41438280447822, 10.07359341370797 47.41438283026948, 10.07399814772961 47.41461176020589, 10.073998306394829 47.414611826641085, 10.074499393978668 47.41475993150248, 10.074499575986389 47.41475996526853, 10.074905941236898 47.41479403387778, 10.074905996914893 47.414794035304794, 10.074906052145364 47.41479403030618, 10.075433077648395 47.414714899210566, 10.07543317211746 47.41471487990328, 10.075984635172645 47.41457089120874, 10.075984836544755 47.41457085075248, 10.076535313612961 47.41449187510177, 10.076535543389715 47.41449185618864, 10.076535774499845 47.414491864760926, 10.076535999882307 47.414491900556676, 10.076536212651032 47.414491962482295, 10.076941209283603 47.41463953061149, 10.0769414505026 47.414639643478615, 10.077274649510128 47.41483576838317, 10.077274695379785 47.414835790951294, 10.077274749830998 47.414835801513185, 10.077657094039925 47.414886007979554, 10.077657195019912 47.414886015830206, 10.078422496847082 47.41490523422803, 10.07842273225199 47.41490525460268, 10.078422958525227 47.41490530321139, 10.078828268791714 47.41502043299832, 10.078828547366818 47.41502054070006, 10.078828779714168 47.41502069074157, 10.079066178957166 47.415216325370444, 10.079066221905917 47.41521635461583, 10.079066281267158 47.4152163635313, 10.079472666988993 47.41525041616673, 10.079472740628779 47.41525041663521, 10.079472812541598 47.41525040584661, 10.079952160349869 47.4151386114469, 10.07995241057596 47.415138571036834, 10.080790429497855 47.415060620414366, 10.080790543217432 47.41506061321518, 10.08165217059818 47.41503146163146, 10.08165224395655 47.41503146053282, 10.082370064781449 47.415034230330996, 10.082370094801338 47.415034229983924, 10.08289658611253 47.41502001852419, 10.082896653669032 47.415020011784016, 10.08289671115837 47.41501998674151, 10.083281093058089 47.41481044367321, 10.083281296292375 47.4148103524014, 10.083281520681977 47.4148102879778, 10.084168118146966 47.414618868184824, 10.084168455110078 47.4146188269978, 10.085053860755844 47.41458974479123, 10.085053987174916 47.41458974474515, 10.085627786195888 47.41460817362104, 10.085628073554297 47.414608204601656, 10.085628344020025 47.41460827749398, 10.08612905076345 47.41478874970889, 10.086129110473388 47.41478876633192, 10.086129173823368 47.41478877466108, 10.08667908349732 47.41482334921986, 10.086679325256824 47.41482338001438, 10.087276360209504 47.41493930948668, 10.087276613294762 47.41493937847688, 10.087872852506052 47.415152719263595, 10.087873082488022 47.41515282374836, 10.088277831142907 47.41538166730359, 10.088277953042233 47.415381745617175, 10.088658457274851 47.41565925689327, 10.088658525400557 47.415659300042094, 10.089134884346793 47.4159209447782, 10.089134941371686 47.41592096991724, 10.089135004818067 47.41592098648689, 10.089588849834906 47.41600389502073, 10.089589017288782 47.41600391037193, 10.090234823682861 47.41600635514541, 10.090235029081837 47.416006366826416, 10.090235229324609 47.416006400031804, 10.090975381724041 47.416171553575474, 10.09097564157317 47.41617163353412, 10.091547966003601 47.41640114330473, 10.09154797379824 47.41640114638202, 10.092096570558395 47.41661434692682, 10.092096693028843 47.416614383877956, 10.092765435201459 47.41676306465293, 10.092765512504219 47.416763078388286, 10.093386825720161 47.416846599556976, 10.093387141628511 47.416846671024736, 10.09384028297174 47.416994448596775, 10.09384046181486 47.416994519086956, 10.093840622336101 47.41699460763903, 10.09424511135272 47.417255875257325, 10.094245220517037 47.41725595484131, 10.094601698158412 47.41754957969573, 10.09460175418859 47.41754961600412, 10.094601821259364 47.41754964227961, 10.09505530982778 47.417681243647564, 10.095055436243275 47.41768127051645, 10.095413798706742 47.417731311309105, 10.09541405638503 47.41773136640863, 10.095699466524392 47.41781498321613, 10.095699694011056 47.41781506875144, 10.095699892525753 47.417815182848436, 10.095700054417213 47.41781532110954, 10.095700173445772 47.417815478205824, 10.09570024502378 47.41781564808244, 10.095700266392448 47.41781582419192, 10.095700236728163 47.41781599974656, 10.095700157174281 47.417816167980114, 10.095392617801298 47.41829802897977, 10.095392601541427 47.418298060856806, 10.095392592528972 47.41829809403438, 10.095281848950556 47.41899886552204, 10.095281845176034 47.41899891107662, 10.095276929852512 47.419605006370055, 10.095276932326264 47.41960504778361, 10.095375732132958 47.42037793141207, 10.095375739853502 47.42037797116229, 10.095596540168994 47.42122262330729, 10.095596554059052 47.42122266488806, 10.095854102643118 47.42185348867804, 10.095854155131054 47.42185357839217, 10.096252746489236 47.42236607554066, 10.096252783582623 47.422366117527226, 10.09693020640608 47.42304603001485, 10.096930315000499 47.42304616154385, 10.097137899025284 47.42335585162319, 10.097137927539787 47.42335588580547, 10.097137964446125 47.42335591605191, 10.097747483848332 47.42377412707694, 10.097747539986132 47.42377416142968, 10.098340227548292 47.42409718059105, 10.09834046228763 47.42409734617125, 10.098653278412634 47.4243836483371, 10.09865331743027 47.424383680774284, 10.0993321853814 47.42489724453572, 10.09933221235181 47.42489726376499, 10.100185639858042 47.42547082466129, 10.100185859904508 47.42547101975433, 10.10058472539333 47.42594774947562, 10.100584837994926 47.42594784862289, 10.101107382388733 47.4262943856272, 10.10110742203686 47.42629440807237, 10.10110746636761 47.42629442602165, 10.10182341953632 47.42653470097327, 10.101823715292653 47.426534836665475, 10.104542709482862 47.42818491062445, 10.104542728464704 47.428184922370036, 10.105421903120561 47.4287396137927, 10.105422080689145 47.42873975116617, 10.105422213738366 47.428739910092624, 10.105422296777544 47.42874008401344, 10.105422326379806 47.428740265751244, 10.105422301323516 47.42874044780608, 10.105422222642702 47.42874062266483, 10.10542209358438 47.428740783111486, 10.104915859717837 47.42924148654014, 10.103594546750744 47.4305483047195, 10.10231329203673 47.43182837251151, 10.102313288314102 47.431828376210746, 10.101299005105375 47.4328308944883, 10.0998174366604 47.434307855731724, 10.099817434736204 47.43430785764456, 10.098282454308626 47.43582952304469, 10.09459805884948 47.439490411602755, 10.094598028205548 47.43949044511316, 10.093891822999286 47.44034405803395, 10.093891796907343 47.44034409855361, 10.093891783143153 47.44034414178103, 10.093823981690692 47.44074871559825, 10.0937560958506 47.441164186407114, 10.093756038486292 47.441164366514286, 10.093493571395484 47.441710405432794, 10.09349355759636 47.44171043832925, 10.0932460155668 47.44239885637069, 10.093246004860266 47.44239889250989, 10.092995330484948 47.443470277449606, 10.092995322794097 47.44347033029182, 10.092957798166363 47.444115758642205, 10.092957797994274 47.44411579089473, 10.092985324003953 47.444695823093376, 10.092985324664031 47.44469584625239, 10.092989441659174 47.44512661818246, 10.092989441055034 47.44512665182512, 10.092957163037983 47.44583628193201, 10.092957162732137 47.44583629333626, 10.092948071678645 47.446950301505034, 10.092948076448993 47.4469503579374, 10.09305546785452 47.4475540167382, 10.093133470684256 47.44795876071873, 10.093133486291379 47.447958805286696, 10.093133515033088 47.447958846729406, 10.09342888118275 47.448290820102464, 10.093428926442778 47.44829085991976, 10.093428983769465 47.448290891766376, 10.094022934963391 47.44855042124257, 10.094023094311146 47.44855050302696, 10.094023233752036 47.44855060015188, 10.09431921317883 47.44879055043389, 10.094319367279937 47.44879070569132, 10.094506913231081 47.44903012280297, 10.094507006056856 47.44903027250774, 10.094507057757541 47.44903043110907, 10.094507066649129 47.449030593440924, 10.0944768471502 47.44941628725903, 10.094476851297369 47.449416336144964, 10.094476871151821 47.449416383217674, 10.094610550599613 47.44963743534969, 10.094610575398004 47.449637468283825, 10.09461060786805 47.44963749798117, 10.094825773384304 47.44980352798185, 10.094825935457834 47.44980368359251, 10.09482604565209 47.449803858899266, 10.094826099024681 47.44980404603923, 10.094851494675067 47.45000586536995, 10.09485149523755 47.45000601406957, 10.094851459750094 47.45000616080376, 10.094851389181272 47.45000630156758, 10.09468681335182 47.45026286692569, 10.094686794095132 47.45026289556702, 10.094467456983809 47.45057457853832, 10.094467433359755 47.450574624514225, 10.094467425089599 47.45057467288455, 10.094464734862264 47.45090553332451, 10.094464739963286 47.450905591570276, 10.094542585309918 47.45132859181927, 10.094542594804935 47.45132873350437, 10.094542571415069 47.4513288744444, 10.09445895758757 47.45162241131641, 10.094458877217036 47.45162259067719, 10.094458743887499 47.45162275483903, 10.09415835307033 47.4519156478657, 10.094158347711083 47.45191565317158, 10.093775760534358 47.45230029265491, 10.09377570364214 47.4523003625295, 10.093501243247108 47.45272214428336, 10.093501208935406 47.45272221061821, 10.093307443584019 47.45321784595311, 10.093307426590558 47.45321790522094, 10.093222371736545 47.45367717114841, 10.09322236709227 47.453677245163234, 10.093246171119572 47.45408177203898, 10.093246172156416 47.45408181297061, 10.09324332531651 47.45443085978679, 10.093243300998346 47.454431026513184, 10.093243231607532 47.45443118729109, 10.093243119548362 47.45443133654976, 10.092969919657257 47.454724197963316, 10.092969765694255 47.454724332789866, 10.092615401602739 47.45498031231024, 10.092615362432877 47.45498034684462, 10.092615333938765 47.45498038590681, 10.092321425070256 47.455507855515705, 10.091679731157996 47.45668670049346, 10.091679716087867 47.456686737914545, 10.09167971080014 47.45668677654322, 10.091676249013895 47.45710957098259, 10.091676252636121 47.4571096053058, 10.091676263978664 47.45710963884357, 10.091862536334235 47.45751445477613, 10.091862588694026 47.45751462468741, 10.091862592054097 47.457514798266374, 10.091862546289457 47.4575149690563, 10.091862453102424 47.45751513070424, 10.091698326335768 47.45773470226556, 10.09169810576425 47.45773491452451, 10.09128924597581 47.458027421623534, 10.091289204080805 47.45802745887897, 10.091289188778815 47.45802750459021, 10.091232272422324 47.458358153901806, 10.091232270849922 47.45835819280846, 10.09123229863572 47.4583582268483, 10.09158150934031 47.45870853452801, 10.091581634862733 47.45870869231602, 10.091581711828859 47.45870886387488, 10.091581737182823 47.45870904239299, 10.091581709917957 47.45870922078249, 10.091470460943201 47.459075867456036, 10.091470376946166 47.45907604680172, 10.091470239872748 47.459076210365765, 10.091470055715693 47.45907635099727, 10.091116399144056 47.459295292990745, 10.091116219096225 47.45929538662577, 10.091116018180859 47.45929545804462, 10.091115802280274 47.459295505156334, 10.09065468284956 47.459367254866834, 10.090654665979068 47.45936725765027, 10.09013890142354 47.45945722715005, 10.090138840107233 47.45945724253149, 10.090138803063486 47.4594572791073, 10.089947120587036 47.459695512045315, 10.089947088356952 47.459695558139835, 10.089727291489835 47.460062270439636, 10.08972717822052 47.46006241843087, 10.089727026690426 47.460062549689006, 10.089265298109487 47.46039399003228, 10.08926511367017 47.46039409997524, 10.089264902546741 47.46039418494033, 10.089264671977812 47.46039424201447, 10.08926442986865 47.460394269240794, 10.0892641845202 47.46039426568584, 10.08896993363251 47.46037137525931, 10.088969682598623 47.460371338732585, 10.088235247594605 47.460212623747864, 10.088234982388755 47.46021254379631, 10.088234749161035 47.46021242656427, 10.087686116272776 47.4598675000921, 10.087685942744582 47.45986736708675, 10.087685811077872 47.459867213518606, 10.08768572640522 47.45986704537401, 10.087685692027293 47.459866869207424, 10.087666060652511 47.45946154906235, 10.087666059936113 47.459461519459815, 10.087666067957892 47.459053659595234, 10.087666061871545 47.45905361735516, 10.087666022435085 47.45905358443217, 10.087211977087943 47.45874217491016, 10.087211926158178 47.458742146535116, 10.087211860432042 47.45874214352618, 10.08665978137299 47.45875563825991, 10.086659723815156 47.45875564318184, 10.086659672421641 47.45875566145838, 10.086128848412569 47.45898757206175, 10.086128542895839 47.45898767067752, 10.085437662641294 47.45914092857624, 10.085437427023829 47.459140965099216, 10.085437185559591 47.459140971956415, 10.085436946278103 47.45914094891981, 10.084840252509741 47.459045153564105, 10.084840008899942 47.459045097001656, 10.084839785990976 47.45904500951782, 10.084290278217738 47.458777854999816, 10.084290013914572 47.45877768466587, 10.083719146849397 47.458292001837385, 10.083719034488775 47.45829188989854, 10.083240781020134 47.45772853921516, 10.083240673260482 47.45772837708841, 10.08296925606557 47.457181385017876, 10.082969239475778 47.457181355133635, 10.08265154202069 47.45666533604701, 10.082651517278883 47.45666530361155, 10.082651485075852 47.45666527435288, 10.08208014765537 47.45622628006557, 10.082080102273542 47.456226248466386, 10.081508117000071 47.45586524550016, 10.08150805006942 47.45586520847608, 10.080889587991836 47.4555664410195, 10.0808894536923 47.45556639095323, 10.080315852167232 47.4554081937377, 10.080315792630984 47.45540818163918, 10.080315730801606 47.45540817739576, 10.079694829440562 47.455405771933165, 10.079694669438997 47.45540578466396, 10.079234104657742 47.45548198326699, 10.07923400716358 47.45548199678534, 10.078428269331432 47.455572461898534, 10.07842814564042 47.45557248431929, 10.07794419273391 47.455695375045714, 10.077944041696266 47.45569542946003, 10.077366789102705 47.45597392113235, 10.077366572180525 47.455974006077454, 10.07672108011499 47.456174216748586, 10.076720728478069 47.456174287890676, 10.075846187380535 47.456264441837064, 10.075845886622364 47.456264449363466, 10.075202477399138 47.45623074612523, 10.075202251157615 47.4562307207595, 10.075202034742066 47.456230669285105, 10.07458290244949 47.45604112392282, 10.074582684690307 47.45604103959287, 10.074055939428092 47.455789428996866, 10.074055870382 47.455789403851064, 10.074055794485085 47.45578939064966, 10.07350429277487 47.45574043109887, 10.073504231007183 47.455740429647584, 10.073504172885386 47.455740443922856, 10.072881498351014 47.45594077305264, 10.07288139473527 47.45594081461702, 10.07228114141123 47.456234707591, 10.072280942129618 47.45623478817017, 10.072280725217611 47.456234843919816, 10.072280497318527 47.4562348731325, 10.071843894203434 47.45626430197729, 10.071843665365776 47.45626430391434, 10.071843439450852 47.45626427908238, 10.071843223195968 47.45626422822204, 10.071270052705728 47.456090468734025, 10.071269878419777 47.456090434464016, 10.070354530377658 47.456000415090735, 10.07035447291957 47.45600041322834, 10.070354468284528 47.45600045217083, 10.070364075331035 47.45642269607468, 10.070364081041546 47.45642274846277, 10.070490963583568 47.4570700806043, 10.070490973229603 47.457070150652584, 10.07052681672651 47.45751917046439, 10.070526799175813 47.45751937300402, 10.070526715277044 47.45751956772945, 10.07052656929327 47.457519744746335, 10.070165978209937 47.45786025157865, 10.069418307212594 47.45856625881343, 10.069418279978946 47.45856628943978, 10.069418260300093 47.4585663226278, 10.069272815996577 47.45888272403397, 10.068967517541708 47.45954686321617, 10.06857327909728 47.46040445170674, 10.068338182927802 47.46091584477519, 10.06833803135865 47.46091606462858, 10.067915561077266 47.4613605972438, 10.067915412403346 47.46136072620214, 10.067915231781644 47.46136083473006, 10.06715882071701 47.46173791488737, 10.067158609699762 47.46173800083868, 10.06715837892449 47.461738058818916, 10.06715813634543 47.46173808682968, 10.066299388853778 47.46178217472037, 10.06629933164715 47.46178218140843, 10.066299327593782 47.46178222073325, 10.066322008818888 47.46239459134496, 10.066321990609365 47.462394764354414, 10.06632192387205 47.462394931780345, 10.06632181108532 47.46239508740518, 10.066321656437637 47.462395225449626, 10.06597675244198 47.46264823210342, 10.065976571203915 47.46264834266847, 10.065976363228236 47.46264842883829, 10.065976135541947 47.46264848770147, 10.065975895838042 47.46264851726913, 10.065975652215517 47.462648516542245, 10.065590989795128 47.46262324743894, 10.065590933766263 47.462623247045904, 10.06559088083191 47.46262325952362, 10.065011076451514 47.46279918778931, 10.065011016080543 47.46279921184089, 10.065010990241863 47.46279925601531, 10.06467082201079 47.463641296252234, 10.064670732180108 47.46364145672765, 10.06467059911603 47.46364160270224, 10.064670427659532 47.46364172886528, 10.06467022404837 47.46364183062685, 10.064669995690116 47.463641904284785, 10.062611381539359 47.46414889137348, 10.060435462219926 47.46468471473237, 10.060435459552174 47.464684715387094, 10.059041438854901 47.46502567586187, 10.059041431290966 47.4650256776943, 10.056890311338984 47.465541794791164, 10.056890285928318 47.46554180069169, 10.055453537473289 47.46586440996765, 10.054925520095363 47.465982966082706, 10.054925368627327 47.46598301537647, 10.053568696839676 47.466579355900116, 10.05356864827101 47.46657938216476, 10.053568641214616 47.46657942405214, 10.053551736263543 47.46730360119451, 10.053551711793729 47.46730375965633, 10.053551646559747 47.46730391270615, 10.05310981324593 47.468076619587976, 10.053109773996338 47.468076724008306, 10.05288976040621 47.46922442201696, 10.052889707720167 47.469224581659454, 10.052889613346727 47.46922473218979, 10.05288948040383 47.4692248686346, 10.052889313283751 47.469224986485976, 10.051964978181262 47.469768060022034, 10.051964934464436 47.46976809122058, 10.0519649004237 47.469768127555625, 10.051560914784252 47.47030869435667, 10.051560893467398 47.470308730336214, 10.051560881658602 47.47030876827981, 10.051519044100976 47.4705421170959, 10.051519042417379 47.47054215819045, 10.051519062923402 47.47054219687098, 10.051649834580255 47.470731366615006, 10.051649852404232 47.47073139052073, 10.052064249409778 47.47124837479059, 10.052482985837328 47.47177076000103, 10.05248308332917 47.47177091442823, 10.053222845365205 47.47333092718604, 10.053222864344903 47.47333095872929, 10.05322289017023 47.47333098794553, 10.05379642610169 47.473880049803036, 10.053796462077774 47.47388007862273, 10.053796514334026 47.47388009160048, 10.054390906001478 47.47398938804065, 10.054391132028352 47.47398944502451, 10.054391339114494 47.47398952886117, 10.05439152040979 47.473989636777425, 10.054391669917212 47.473989765203555, 10.054391782691255 47.47398990989137, 10.05463325238538 47.47438241133136, 10.05463332609934 47.47438257193981, 10.054633354505386 47.474382739056814, 10.054633336611202 47.4743829068444, 10.05463327304188 47.47438306944119, 10.05439034408707 47.47483066900853, 10.054170027535175 47.47523659756163, 10.054170013051863 47.475236633025354, 10.05417000735281 47.47523666962294, 10.0541461122653 47.47594933651764, 10.054146082054052 47.47594950815912, 10.054146004070088 47.47594967271475, 10.05414588118986 47.47594982411486, 10.054145717945826 47.47594995677503, 10.053546850059245 47.47635107849666, 10.053546631921758 47.476351196603574, 10.053546382207724 47.4763512811007, 10.053546111977312 47.476351328245514, 10.053545833199424 47.47635133594995, 10.052652726129631 47.47631202337456, 10.052652662920424 47.47631202495665, 10.052652631603848 47.476312062267255, 10.051888266078818 47.47748555671051, 10.051888217946743 47.47748562308571, 10.050808318069421 47.47883212782721, 10.050808296575614 47.478832153607186, 10.050219048276738 47.47951252854857, 10.050219023410806 47.479512556114386, 10.049496413090985 47.48028223013816, 10.049496403167007 47.48028224104818, 10.048786694957329 47.48108790634685, 10.048786675157118 47.4810879281153, 10.048135991191392 47.48178104941756, 10.047445894270608 47.48251975622364, 10.04684586981395 47.4831620248744, 10.046545178603871 47.48348420946544, 10.045790953715253 47.48429232448158, 10.045306821434137 47.484811031484284, 10.045306792267583 47.48481107121129, 10.04530680217311 47.48481111508554, 10.0455672852126 47.48549087714937, 10.045567305472384 47.48549091496743, 10.045567362462672 47.48549092605045, 10.047020095817711 47.48567517363428, 10.047020358950801 47.485675226621055, 10.047020600374434 47.48567531524597, 10.047020809744458 47.48567543571182, 10.047020978090126 47.485675582857034, 10.047021098198424 47.48567575037698, 10.047021164923121 47.485675931094015, 10.047138648795555 47.48623420972548, 10.047138661742238 47.48623435848544, 10.047138638351083 47.48623450665692, 10.047138579263283 47.486234650178275, 10.046996339292907 47.486494794936675, 10.046996229363343 47.48649494913678, 10.046996078384806 47.48649508640736, 10.046995891826302 47.486495201775995, 10.046995676445652 47.48649529106361, 10.04699544004471 47.48649535103591, 10.046995191186788 47.486495379520456, 10.046431166685595 47.486522894579004, 10.046431105003725 47.486522901693036, 10.046431051814258 47.486522924055826, 10.045941419349862 47.48677616830072, 10.045941368875448 47.48677620070948, 10.045941329635612 47.48677623962871, 10.045622205808645 47.487178798859695, 10.045622023053058 47.48717897498795, 10.045621783873381 47.48717911659468, 10.044685060539289 47.48761158759206, 10.044684843101033 47.487611668902424, 10.044684607145786 47.48761172127862, 10.0446843609436 47.48761174288488, 10.042688823161852 47.48765892608972, 10.042688753561432 47.48765893287438, 10.042688687712204 47.48765894961153, 10.042017941379234 47.48788800203041, 10.042017816674628 47.487888039296124, 10.03982558876204 47.4884537564268, 10.039825432498661 47.48845378941698, 10.037896761141605 47.48877386369605, 10.037608564593794 47.48882168868345, 10.037608266086892 47.48882171436552, 10.036190144821255 47.48883362569833, 10.036189761618429 47.48883359064748, 10.03488754566524 47.488579159230426, 10.03488733286252 47.488579103815006, 10.034887137185136 47.48857902448285, 10.033735217089866 47.48801551683639, 10.032251448384493 47.48729596822139, 10.032251382962855 47.487295934365584, 10.031187310501753 47.48670895871564, 10.031187207968978 47.48670891220769, 10.028828335335708 47.48584296468503, 10.028828170603557 47.48584289307307, 10.028828023186184 47.485842805788806, 10.028166177113295 47.48538837910399, 10.02816612635624 47.48538835070666, 10.028166063181768 47.48538833827441, 10.025977025680897 47.485117327237596, 10.025976659037239 47.485117242843195, 10.025001043000595 47.48477796176069, 10.025001032350234 47.484777958138466, 10.022725892495565 47.48402142000254, 10.022725833402577 47.48402140494774, 10.022725771153269 47.48402139786461, 10.021341348123176 47.48395587372892, 10.021341129568201 47.48395585083477, 10.019923241450678 47.48372377323417, 10.019923179707014 47.48372376740614, 10.019923130059455 47.483723792996265, 10.019023787678982 47.48429010646395, 10.01902355411727 47.484290224017556, 10.01902328842554 47.48429030418844, 10.019023003379768 47.48429034312148, 10.017005866298383 47.48441209444474, 10.01700579700193 47.484412103908255, 10.017005740220883 47.484412132485055, 10.016406640715475 47.48478935251483, 10.016406423219852 47.48478946359413, 10.016406176893588 47.48478954218787, 10.016405912115916 47.4847895849844, 10.016405640043578 47.484789590180426, 10.016405372140667 47.48478955755704, 10.016405119695584 47.484789488488836, 10.015130677434321 47.484332528593995, 10.015130480786947 47.484332442198856, 10.015130309604917 47.484332333662195, 10.015130169230654 47.484332206371384, 10.014488482672196 47.48362830618841, 10.014488372075611 47.48362821460719, 10.013315761728029 47.48288430426768, 10.013315623906477 47.482884237089074, 10.01073554565605 47.48194125416781, 10.010735494126145 47.48194123908957, 10.010735438381 47.4819412434459, 10.007903806911893 47.482333953510455, 10.006798914034384 47.48248640538222, 10.006798606204509 47.482486422926605, 10.006798300749125 47.482486391640656, 10.005766848655302 47.482295232480176, 10.00314117795825 47.48180856487237, 10.003141115013225 47.48180855758503, 10.003141051181506 47.481808558727565, 10.001804269791005 47.48192165743868, 10.001804213549745 47.481921665674385, 10.001804164998278 47.48192168663091, 10.001354540600081 47.48215605274741, 10.001354472176502 47.48215609380237, 10.000914087380218 47.48245952978523, 9.99985967436514 47.483191431883185, 9.999859673015296 47.483191432818764, 9.999464231005568 47.48346511612329, 9.998671789506409 47.48401255566782, 9.996763067851031 47.4853334781921, 9.995348162973599 47.486315211348966, 9.99534812357644 47.48631524451994, 9.99534809422074 47.48631528218167, 9.994364051295054 47.48793691899936, 9.994364042968641 47.48793693241131, 9.993596197789271 47.48914630373009, 9.992437349458463 47.49100524765112, 9.991022068106481 47.493285293952106, 9.991022063222792 47.49328530203799, 9.990630289313223 47.493952332302406, 9.990198577554349 47.49468733882454, 9.989073316668307 47.49660302921538, 9.98879581893752 47.49707542894631, 9.988795763176938 47.4970755114982, 9.988277837247393 47.49775017566235, 9.98789546096022 47.4982482577347, 9.987895459580068 47.49824825952755, 9.987653619109654 47.49856155411993, 9.987653597327506 47.498561590205625, 9.987653643181012 47.49856161370931, 9.987957193733637 47.49868880200548, 9.98795725390728 47.498688828774725, 9.990728120504846 47.49999569517081, 9.992298333286932 47.50073080124146, 9.992298491570136 47.50073088823401, 9.995301901992944 47.502658650279756, 9.995301934223203 47.50265867168175, 9.995695849104271 47.50292928932764, 9.99569601059135 47.502929424123465, 9.995696130908836 47.50292957745924, 9.995696205574726 47.50292974362295, 9.99569623180759 47.502929916424776, 9.995696208630214 47.50293008942754, 9.995696136906007 47.502930256186666, 9.995696019306788 47.502930410490094, 9.995695860213305 47.50293054658981, 9.995695665552047 47.50293065941585, 9.994684361042843 47.50341052843598, 9.994684359838814 47.50341052900661, 9.99363178855357 47.50390878322907, 9.993631786857907 47.50390878403039, 9.992406000530112 47.50448708360256, 9.990260787498599 47.50550131928845, 9.990260772374162 47.50550132633394, 9.989834498267747 47.50569696874829, 9.989834454753549 47.50569699265773, 9.989834425666931 47.50569702512175, 9.989108210284225 47.506690910433, 9.989108203804447 47.50669091918104, 9.988422581859025 47.50760411175088, 9.988422499161397 47.507604206950376, 9.98712284344924 47.50890981578842, 9.987122777899879 47.50890987606646, 9.986868647095855 47.50912428405943, 9.986868639470403 47.50912429043318, 9.984588872639502 47.51101208465242, 9.984588701306997 47.511012202502435, 9.984588501060578 47.51101229707156, 9.984588278673424 47.511012365161065, 9.98458804166762 47.51101240446788, 9.984587798059717 47.51101241366245, 9.984587556089558 47.5110123924338, 9.984587323941627 47.51101234149999, 9.984587109468146 47.511012262583776, 9.98338869455847 47.51046899658193, 9.98338860100695 47.51046896123618, 9.982724175583899 47.51026375836879, 9.982724110529501 47.51026374363717, 9.982724042377358 47.51026373843365, 9.982285631708068 47.51026164785868, 9.98228545042331 47.510261664181144, 9.981793384040687 47.51035438412039, 9.981793311099922 47.51035440102038, 9.98137113059319 47.51047122522015, 9.981371081196723 47.51047124231625, 9.981371036739327 47.51047126480295, 9.981018035640316 47.51068348134237, 9.98101795123039 47.510683542538196, 9.980734756458066 47.51093172069403, 9.980734663380185 47.510931832236544, 9.980591886909105 47.51118046634251, 9.980591777012705 47.51118061526947, 9.980591628552652 47.511180747908995, 9.980591446612417 47.51118085971932, 9.980221409537563 47.51136909126214, 9.980221362019472 47.51136912087985, 9.980221335182188 47.51136916069211, 9.980149780886123 47.511511242041095, 9.980149671538372 47.51151140441148, 9.980149517106952 47.511511548946274, 9.979902198508356 47.51170033905424, 9.979901985602785 47.51170046982606, 9.979567090205661 47.511865192685796, 9.979567043589649 47.511865220667595, 9.979567027332736 47.511865261429804, 9.979475472068838 47.512233256389024, 9.979475469029287 47.51223326984277, 9.979420030923007 47.51250614763378, 9.979419979112409 47.51250630141328, 9.97941988852341 47.51250644669391, 9.979419761938637 47.512506579013056, 9.979065928586959 47.5128136938902, 9.97906581412017 47.512813780963086, 9.978624205262296 47.513108760496195, 9.978624141094196 47.51310881016927, 9.97821697193425 47.513475155147376, 9.978216779503908 47.51347529460969, 9.97821654802262 47.51347540337876, 9.977741311540472 47.513651295635185, 9.977741165287362 47.51365134216513, 9.97709028079121 47.513826474302775, 9.977090194412408 47.513826502613384, 9.976579367355734 47.51402608116169, 9.976579296965589 47.51402611288064, 9.976191291073246 47.51422626481271, 9.976191169100268 47.514226320768095, 9.975785971506875 47.51439074727288, 9.975785952803749 47.51439075515124, 9.975274933407693 47.51461406640288, 9.975274639468063 47.51461416247522, 9.974817564419192 47.51471888160149, 9.97481746165873 47.5147189119348, 9.974465297700394 47.514847921516626, 9.974465245326295 47.51484794538422, 9.974465200662486 47.51484797561647, 9.97423529475548 47.51503689920316, 9.974235143876209 47.51503700438982, 9.974234969802865 47.51503709154236, 9.973759337007051 47.515236770464256, 9.973759292931819 47.515236788178555, 9.973301391798193 47.515412809595446, 9.973301132526586 47.51541288579948, 9.972861822929827 47.515505777208, 9.972861454437053 47.51550581780272, 9.97221236568487 47.515514547095485, 9.972212354805709 47.51551454730234, 9.971808769302715 47.51552446835042, 9.971808707457706 47.515524473985316, 9.971808660432398 47.515524501810795, 9.971578896570149 47.51568973450672, 9.971578861484302 47.5156897646382, 9.971578853444672 47.515689802647394, 9.971558667946397 47.515939237019445, 9.971558675209607 47.51593933230248, 9.971625779878373 47.516224727281376, 9.971625796079932 47.51622489005799, 9.971625768700001 47.516225052144144, 9.971553178217972 47.516462065650565, 9.971553084133392 47.5164622593043, 9.971552928208197 47.516462433621996, 9.97126978256315 47.516710475243826, 9.971269749811164 47.516710510240614, 9.971269727194768 47.51671054875082, 9.97112587217647 47.51704258207762, 9.971125846199339 47.517042685801776, 9.971105414875613 47.517315741621054, 9.97110537415048 47.5173159217927, 9.971105280748176 47.51731609270294, 9.970873996901272 47.51763560666372, 9.970873888156998 47.51763573065526, 9.970873751604243 47.51763584126661, 9.970326053164145 47.51801336369412, 9.970325817501687 47.518013492708704, 9.969532769672774 47.518354255597785, 9.969532676997073 47.5183543036726, 9.968836686625837 47.51878631636985, 9.968836396577686 47.518786453163926, 9.968016089537485 47.51907192324411, 9.968015996093259 47.51907196273998, 9.96743385943323 47.519366244064244, 9.967433828116157 47.51936626091444, 9.96693954472997 47.51964907907602, 9.966939503412753 47.519649107375066, 9.96693947018573 47.51964914021314, 9.966655160811772 47.519992310678084, 9.966654934863616 47.51999251118013, 9.966284037184833 47.520240139962, 9.966283780142506 47.520240273894764, 9.965843405800339 47.52041632747871, 9.965843352212385 47.52041635422451, 9.965843307701652 47.520416387766694, 9.965435739535293 47.52079467650328, 9.965435665604177 47.52079476450217, 9.965203663702063 47.52116201385126, 9.965203620084054 47.52116211345341, 9.96511208135986 47.52151816793679, 9.965112076637704 47.52151821120104, 9.965112096823768 47.52151825236641, 9.965284479159056 47.52178018574638, 9.965284567582184 47.52178037257383, 9.96528459421523 47.52178056795878, 9.965284557792401 47.52178076261496, 9.965284460044785 47.52178094729074, 9.965088803477963 47.52205296390706, 9.965088783728632 47.52205299842306, 9.965088781796107 47.522053035424356, 9.965104025250318 47.52226699225022, 9.965104033816372 47.52226703313168, 9.965104053368076 47.52226707223634, 9.965276575121656 47.52252921377229, 9.965276662237542 47.52252939630655, 9.965276690336418 47.522529587217434, 9.965274653097687 47.52271934245884, 9.965274633597144 47.52271948977876, 9.96527457878736 47.52271963294258, 9.965274490148628 47.52271976808386, 9.965071769034578 47.52297095302254, 9.965071745358264 47.52297099097814, 9.965071796748648 47.52297101296708, 9.965801968688872 47.52321773790232, 9.965802209971919 47.52321784289533, 9.965802412380459 47.52321798058715, 9.966187680544621 47.5235439802752, 9.966187801671058 47.523544101900804, 9.966483130605242 47.52390015354506, 9.966483244596027 47.52390025425762, 9.966899125222756 47.52417586321644, 9.966899224545962 47.524175917401216, 9.967405308054808 47.52440126847415, 9.967405469977983 47.52440135338178, 9.967405610725075 47.52440145416843, 9.967746342026977 47.52468660554978, 9.967746472131022 47.52468673640914, 9.967746566532453 47.524686880671325, 9.96774662232832 47.52468703390003, 9.967846610096872 47.52512293939968, 9.967846625845393 47.525123083375, 9.967846607451774 47.525123227205675, 9.967705921566843 47.5256899410954, 9.967564886161465 47.52628714100881, 9.96756483854143 47.52628727547506, 9.967304674899964 47.52683318049058, 9.967304662637797 47.52683321595827, 9.967304667941777 47.526833252209975, 9.967362217983045 47.5270462796842, 9.9673622399234 47.5270463283839, 9.96736227769871 47.52704637239165, 9.967710335768643 47.52736174965976, 9.967710352745803 47.527361764394314, 9.968167779241773 47.52774219772121, 9.968167907011829 47.52774232477423, 9.968168001024509 47.527742464725186, 9.968305445786804 47.52800435205494, 9.968305504085123 47.528004503944416, 9.968305522592667 47.52800466039282, 9.968301974304612 47.5283370067768, 9.968301940586707 47.52833720195949, 9.96830184521149 47.528337387525845, 9.968301692725882 47.528337554629225, 9.96794770312384 47.528644616124794, 9.967947665971582 47.52864465179386, 9.96759266190296 47.52902323374224, 9.96759263431358 47.52902327028327, 9.967592628243311 47.52902331112976, 9.967587546186804 47.529498668180665, 9.967587537867232 47.52949876248727, 9.967512599788844 47.52994955471207, 9.967512543747475 47.52994973084011, 9.967512437099554 47.529949895867766, 9.967512284119278 47.52995004318111, 9.967512090937724 47.52995016687619, 9.967511865297118 47.529950261995594, 9.966949316803902 47.530137324065386, 9.96694910236257 47.53013738032708, 9.966948876820332 47.530137410642006, 9.96694864694736 47.5301374141002, 9.966948419643824 47.530137390597844, 9.966353341044105 47.53003946898514, 9.966353084666228 47.53003940734264, 9.96582855494766 47.52987047032383, 9.965828495785106 47.52987045589023, 9.965828434759114 47.52987046615126, 9.965441442725275 47.52996362539092, 9.965441384968845 47.529963643936036, 9.965441364882027 47.52996368507777, 9.965332525239933 47.53029587920811, 9.965332509825071 47.53029599043009, 9.96536097017303 47.5309141701714, 9.96536097078428 47.53091420481295, 9.965355103456242 47.531460701830426, 9.96535508020212 47.53146086315036, 9.965355014660194 47.53146101902531, 9.96535490895618 47.53146116439979, 9.965035393357011 47.53181594767052, 9.965035368210213 47.531815981879994, 9.965035352050569 47.531816018499946, 9.964926588124854 47.53217087113335, 9.964926581554892 47.532170924619095, 9.964926594206794 47.53217097760002, 9.965028954970386 47.53241023377693, 9.965029023460733 47.53241034002441, 9.96541040044883 47.53283998043984, 9.965410549197191 47.53284022163135, 9.965581119765321 47.53329252053875, 9.96558116111442 47.53329275009434, 9.965575295588712 47.53383927940312, 9.965575247324084 47.533839513449976, 9.965322971979731 47.53445619317397, 9.965322888053196 47.53445634419731, 9.965002188239955 47.53490635343433, 9.965002167177381 47.53490639153392, 9.96500215669122 47.53490643159673, 9.964963742179163 47.53521521854603, 9.964963742532023 47.5352152583231, 9.964963763564805 47.53521529545596, 9.965136667616873 47.53545380232994, 9.965136706973913 47.53545384393858, 9.965136769241196 47.53545386964156, 9.96552130917239 47.535574531875696, 9.965521546635898 47.535574627903955, 9.96552174960977 47.535574755209865, 9.965799806269553 47.535789719718494, 9.96579996982562 47.535789877496924, 9.965800080057768 47.53579005528157, 9.965800131904647 47.53579024490937, 9.96583211935822 47.53607518024278, 9.965832108021095 47.53607538423554, 9.965832029185831 47.53607558124827, 9.965581831172782 47.53650206611363, 9.965581813642428 47.5365020998409, 9.965258236384063 47.53721367416968, 9.965258209095218 47.537213728058774, 9.964900301801364 47.53785378511596, 9.96490028475028 47.537853828623156, 9.96490029473508 47.53785387312876, 9.965036850374169 47.53821106463788, 9.965036871998686 47.53821110449766, 9.96503692899705 47.53821112210484, 9.965457030370336 47.538308252811, 9.965457200085742 47.538308275812554, 9.96605358228707 47.538334978169885, 9.966053722254808 47.53833498952319, 9.966684402654892 47.538409358481914, 9.96668464816498 47.538409404239026, 9.96668487627404 47.5384094809411, 9.966685078588412 47.53840958576579, 9.967103050910948 47.538672837895206, 9.967103235383677 47.53867298160206, 9.967103371113987 47.538673148418596, 9.96731031305692 47.539006784415925, 9.967310351600283 47.53900685459098, 9.967481870266838 47.53936388999702, 9.967481927883634 47.5393640722395, 9.967481928907242 47.53936425862078, 9.967481873293758 47.53936444114818, 9.96748176342807 47.539364611994294, 9.967304273343686 47.53957730766364, 9.967304208620224 47.53957741636193, 9.967195873099103 47.53986207348162, 9.967195863684358 47.53986211207404, 9.967195874610317 47.53986215048314, 9.967367025810505 47.54026700515786, 9.967367075830795 47.54026721231692, 9.967397338305918 47.54071885855007, 9.967397319946098 47.54071905399387, 9.9672874529029 47.5411463095979, 9.967287443073133 47.5411463835044, 9.967285154683106 47.54136025988509, 9.967285159286451 47.54136029818299, 9.967285199539027 47.541360325230684, 9.96766898667027 47.54157610892036, 9.96766911194415 47.54157618921433, 9.968226423998503 47.54198300406113, 9.968226498681823 47.54198306355884, 9.968748243242787 47.542437268330744, 9.968748294446922 47.54243730789235, 9.969236188791385 47.5427724756497, 9.969236296638467 47.54277253556253, 9.969830295518372 47.54303692007922, 9.96983031064468 47.543036926912684, 9.970354160185115 47.543277106145, 9.970354383335431 47.54327723492982, 9.970354559374181 47.54327739377234, 9.970666470698905 47.54363520145638, 9.970666576721321 47.54363535418888, 9.970666638816695 47.54363551765742, 9.970733772945994 47.54392090949533, 9.970733794294553 47.54392096024124, 9.970733832781164 47.543921006108, 9.971046476771443 47.54420753276159, 9.971046620488897 47.54420769922327, 9.971046708593503 47.54420788262397, 9.971046737038861 47.54420807454062, 9.971043964003481 47.54446907303702, 9.97104393034853 47.54446926803403, 9.971043835131908 47.544469453443654, 9.97079442843858 47.54482462650808, 9.970794407069642 47.544824666327564, 9.97079439722549 47.544824708171966, 9.970754748532592 47.54525233737198, 9.970754763725562 47.54525246489716, 9.970898274228173 47.54567958735434, 9.970898306693565 47.54567975816189, 9.970898290578715 47.5456799300345, 9.970898226473626 47.545680096679284, 9.970898116725468 47.54568025199465, 9.970897965352547 47.5456803902939, 9.970897777897228 47.54568050651337, 9.97089756122304 47.545680596397744, 9.970897323263257 47.54568065665603, 9.967813784081445 47.54624041314133, 9.967813731013837 47.54624042649619, 9.9678137469794 47.546240463315584, 9.969781822037518 47.54958325979721, 9.969781898169932 47.5495834438603, 9.969781915244884 47.549583634671485, 9.969781872492112 47.549583823623024, 9.969781771840232 47.54958400219103, 9.969701369799544 47.54969093544149, 9.96970125429085 47.54969106197761, 9.969701109606344 47.54969117388142, 9.966025690175142 47.552099099558305, 9.966025652164001 47.552099129340405, 9.966025631901681 47.55209916624956, 9.964498406908735 47.55588346489527, 9.964498400716783 47.555883481467745, 9.963566625877249 47.55859242105766, 9.963566559566056 47.558592560985595, 9.962904584432207 47.55967626451466, 9.962904429472632 47.559676451430946, 9.9629042136827 47.559676608200405, 9.961221505122992 47.56063853139788, 9.961221371446994 47.56063859856676, 9.959300743326702 47.561482623710454, 9.959300691025692 47.561482652252366, 9.959300648409975 47.56148268742248, 9.95875031345086 47.56204596138568, 9.958750284719653 47.562045997700444, 9.958750266357567 47.562046036982686, 9.958324308218693 47.56337369097247, 9.958324301952292 47.56337372620775)))",7480 diff --git a/tests/data/ding0_test_network_3/switches.csv b/tests/data/ding0_test_network_3/switches.csv index d7c220a58..4d48d413c 100644 --- a/tests/data/ding0_test_network_3/switches.csv +++ b/tests/data/ding0_test_network_3/switches.csv @@ -1,4 +1,4 @@ name,bus_closed,bus_open,branch,type_info -circuit_breaker_1,BusBar_mvgd_33532_lvgd_1166640000_MV,virtual_BusBar_mvgd_33532_lvgd_1166640000_MV,Branch_LVStation_mvgd_33532_lvgd_1166640000_MVCableDist_mvgd_33532_18,Switch Disconnector -circuit_breaker_2,BusBar_mvgd_33532_lvgd_1163850014_MV,virtual_BusBar_mvgd_33532_lvgd_1163850014_MV,Branch_LVStation_mvgd_33532_lvgd_1163850014_MVCableDist_mvgd_33532_1,Switch Disconnector -circuit_breaker_3,BusBar_mvgd_33532_lvgd_1172500000_MV,virtual_BusBar_mvgd_33532_lvgd_1172500000_MV,Branch_LVStation_mvgd_33532_lvgd_1172500000_MVCableDist_mvgd_33532_31,Switch Disconnector +circuit_breaker_1,BusBar_mvgd_33535_lvgd_1166910000_MV,virtual_BusBar_mvgd_33535_lvgd_1166910000_MV,Branch_LVStation_mvgd_33535_lvgd_1166910000_MVCableDist_mvgd_33535_18,Switch Disconnector +circuit_breaker_2,BusBar_mvgd_33535_lvgd_1164120007_MV,virtual_BusBar_mvgd_33535_lvgd_1164120007_MV,Branch_LVStation_mvgd_33535_lvgd_1164120007_MVCableDist_mvgd_33535_1,Switch Disconnector +circuit_breaker_3,BusBar_mvgd_33535_lvgd_1172800000_MV,virtual_BusBar_mvgd_33535_lvgd_1172800000_MV,Branch_LVStation_mvgd_33535_lvgd_1172800000_MVCableDist_mvgd_33535_32,Switch Disconnector diff --git a/tests/data/ding0_test_network_3/transformers.csv b/tests/data/ding0_test_network_3/transformers.csv index 74520161b..2d00e219f 100644 --- a/tests/data/ding0_test_network_3/transformers.csv +++ b/tests/data/ding0_test_network_3/transformers.csv @@ -1,123 +1,127 @@ name,bus0,bus1,s_nom,r,x,type,type_info -Transformer_lv_grid_1140900000_1,BusBar_mvgd_33532_lvgd_1140900000_MV,BusBar_mvgd_33532_lvgd_1140900000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1150350000_1,BusBar_mvgd_33532_lvgd_1150350000_MV,BusBar_mvgd_33532_lvgd_1150350000_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV -Transformer_lv_grid_1150360000_1,BusBar_mvgd_33532_lvgd_1150360000_MV,BusBar_mvgd_33532_lvgd_1150360000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1150770000_1,BusBar_mvgd_33532_lvgd_1150770000_MV,BusBar_mvgd_33532_lvgd_1150770000_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV -Transformer_lv_grid_1151720000_1,BusBar_mvgd_33532_lvgd_1151720000_MV,BusBar_mvgd_33532_lvgd_1151720000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151730000_1,BusBar_mvgd_33532_lvgd_1151730000_MV,BusBar_mvgd_33532_lvgd_1151730000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151750000_1,BusBar_mvgd_33532_lvgd_1151750000_MV,BusBar_mvgd_33532_lvgd_1151750000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151760000_1,BusBar_mvgd_33532_lvgd_1151760000_MV,BusBar_mvgd_33532_lvgd_1151760000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151770000_1,BusBar_mvgd_33532_lvgd_1151770000_MV,BusBar_mvgd_33532_lvgd_1151770000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151780000_1,BusBar_mvgd_33532_lvgd_1151780000_MV,BusBar_mvgd_33532_lvgd_1151780000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151790000_1,BusBar_mvgd_33532_lvgd_1151790000_MV,BusBar_mvgd_33532_lvgd_1151790000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151810000_1,BusBar_mvgd_33532_lvgd_1151810000_MV,BusBar_mvgd_33532_lvgd_1151810000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151840000_1,BusBar_mvgd_33532_lvgd_1151840000_MV,BusBar_mvgd_33532_lvgd_1151840000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1151850000_1,BusBar_mvgd_33532_lvgd_1151850000_MV,BusBar_mvgd_33532_lvgd_1151850000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1151860000_1,BusBar_mvgd_33532_lvgd_1151860000_MV,BusBar_mvgd_33532_lvgd_1151860000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1152100000_1,BusBar_mvgd_33532_lvgd_1152100000_MV,BusBar_mvgd_33532_lvgd_1152100000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1152110000_1,BusBar_mvgd_33532_lvgd_1152110000_MV,BusBar_mvgd_33532_lvgd_1152110000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1152120000_1,BusBar_mvgd_33532_lvgd_1152120000_MV,BusBar_mvgd_33532_lvgd_1152120000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1152930000_1,BusBar_mvgd_33532_lvgd_1152930000_MV,BusBar_mvgd_33532_lvgd_1152930000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1154980000_1,BusBar_mvgd_33532_lvgd_1154980000_MV,BusBar_mvgd_33532_lvgd_1154980000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1154990000_1,BusBar_mvgd_33532_lvgd_1154990000_MV,BusBar_mvgd_33532_lvgd_1154990000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1156160000_1,BusBar_mvgd_33532_lvgd_1156160000_MV,BusBar_mvgd_33532_lvgd_1156160000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1156170000_1,BusBar_mvgd_33532_lvgd_1156170000_MV,BusBar_mvgd_33532_lvgd_1156170000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1156290000_1,BusBar_mvgd_33532_lvgd_1156290000_MV,BusBar_mvgd_33532_lvgd_1156290000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1156980000_1,BusBar_mvgd_33532_lvgd_1156980000_MV,BusBar_mvgd_33532_lvgd_1156980000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1157450000_1,BusBar_mvgd_33532_lvgd_1157450000_MV,BusBar_mvgd_33532_lvgd_1157450000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1157460000_1,BusBar_mvgd_33532_lvgd_1157460000_MV,BusBar_mvgd_33532_lvgd_1157460000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1159020000_1,BusBar_mvgd_33532_lvgd_1159020000_MV,BusBar_mvgd_33532_lvgd_1159020000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1159590000_1,BusBar_mvgd_33532_lvgd_1159590000_MV,BusBar_mvgd_33532_lvgd_1159590000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1159620000_1,BusBar_mvgd_33532_lvgd_1159620000_MV,BusBar_mvgd_33532_lvgd_1159620000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1160560000_1,BusBar_mvgd_33532_lvgd_1160560000_MV,BusBar_mvgd_33532_lvgd_1160560000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1161030000_1,BusBar_mvgd_33532_lvgd_1161030000_MV,BusBar_mvgd_33532_lvgd_1161030000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1161660000_1,BusBar_mvgd_33532_lvgd_1161660000_MV,BusBar_mvgd_33532_lvgd_1161660000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1161700000_1,BusBar_mvgd_33532_lvgd_1161700000_MV,BusBar_mvgd_33532_lvgd_1161700000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1163050000_1,BusBar_mvgd_33532_lvgd_1163050000_MV,BusBar_mvgd_33532_lvgd_1163050000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163060000_1,BusBar_mvgd_33532_lvgd_1163060000_MV,BusBar_mvgd_33532_lvgd_1163060000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163090000_1,BusBar_mvgd_33532_lvgd_1163090000_MV,BusBar_mvgd_33532_lvgd_1163090000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163850000_1,BusBar_mvgd_33532_lvgd_1163850000_MV,BusBar_mvgd_33532_lvgd_1163850000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1163850001_1,BusBar_mvgd_33532_lvgd_1163850001_MV,BusBar_mvgd_33532_lvgd_1163850001_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV -Transformer_lv_grid_1163850002_1,BusBar_mvgd_33532_lvgd_1163850002_MV,BusBar_mvgd_33532_lvgd_1163850002_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV -Transformer_lv_grid_1163850003_1,BusBar_mvgd_33532_lvgd_1163850003_MV,BusBar_mvgd_33532_lvgd_1163850003_LV,0.8,0.0105,0.059074106002545645,,0.8 MVA 20/0.4 kV -Transformer_lv_grid_1163850004_1,BusBar_mvgd_33532_lvgd_1163850004_MV,BusBar_mvgd_33532_lvgd_1163850004_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163850005_1,BusBar_mvgd_33532_lvgd_1163850005_MV,BusBar_mvgd_33532_lvgd_1163850005_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163850006_1,BusBar_mvgd_33532_lvgd_1163850006_MV,BusBar_mvgd_33532_lvgd_1163850006_LV,0.8,0.0105,0.059074106002545645,,0.8 MVA 20/0.4 kV -Transformer_lv_grid_1163850007_1,BusBar_mvgd_33532_lvgd_1163850007_MV,BusBar_mvgd_33532_lvgd_1163850007_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163850008_1,BusBar_mvgd_33532_lvgd_1163850008_MV,BusBar_mvgd_33532_lvgd_1163850008_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV -Transformer_lv_grid_1163850009_1,BusBar_mvgd_33532_lvgd_1163850009_MV,BusBar_mvgd_33532_lvgd_1163850009_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1163850010_1,BusBar_mvgd_33532_lvgd_1163850010_MV,BusBar_mvgd_33532_lvgd_1163850010_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163850011_1,BusBar_mvgd_33532_lvgd_1163850011_MV,BusBar_mvgd_33532_lvgd_1163850011_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163850012_1,BusBar_mvgd_33532_lvgd_1163850012_MV,BusBar_mvgd_33532_lvgd_1163850012_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163850012_2,BusBar_mvgd_33532_lvgd_1163850012_MV,BusBar_mvgd_33532_lvgd_1163850012_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163850013_1,BusBar_mvgd_33532_lvgd_1163850013_MV,BusBar_mvgd_33532_lvgd_1163850013_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163850014_1,BusBar_mvgd_33532_lvgd_1163850014_MV,BusBar_mvgd_33532_lvgd_1163850014_LV,1.0,0.0105,0.059074106002545645,,1.0 MVA 20/0.4 kV -Transformer_lv_grid_1163850015_1,BusBar_mvgd_33532_lvgd_1163850015_MV,BusBar_mvgd_33532_lvgd_1163850015_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV -Transformer_lv_grid_1163860000_1,BusBar_mvgd_33532_lvgd_1163860000_MV,BusBar_mvgd_33532_lvgd_1163860000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163880000_1,BusBar_mvgd_33532_lvgd_1163880000_MV,BusBar_mvgd_33532_lvgd_1163880000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163890000_1,BusBar_mvgd_33532_lvgd_1163890000_MV,BusBar_mvgd_33532_lvgd_1163890000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163900000_1,BusBar_mvgd_33532_lvgd_1163900000_MV,BusBar_mvgd_33532_lvgd_1163900000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163910000_1,BusBar_mvgd_33532_lvgd_1163910000_MV,BusBar_mvgd_33532_lvgd_1163910000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163930000_1,BusBar_mvgd_33532_lvgd_1163930000_MV,BusBar_mvgd_33532_lvgd_1163930000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1163940000_1,BusBar_mvgd_33532_lvgd_1163940000_MV,BusBar_mvgd_33532_lvgd_1163940000_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163940000_2,BusBar_mvgd_33532_lvgd_1163940000_MV,BusBar_mvgd_33532_lvgd_1163940000_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163940001_1,BusBar_mvgd_33532_lvgd_1163940001_MV,BusBar_mvgd_33532_lvgd_1163940001_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV -Transformer_lv_grid_1163940002_1,BusBar_mvgd_33532_lvgd_1163940002_MV,BusBar_mvgd_33532_lvgd_1163940002_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV -Transformer_lv_grid_1163940003_1,BusBar_mvgd_33532_lvgd_1163940003_MV,BusBar_mvgd_33532_lvgd_1163940003_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1163940004_1,BusBar_mvgd_33532_lvgd_1163940004_MV,BusBar_mvgd_33532_lvgd_1163940004_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV -Transformer_lv_grid_1163940005_1,BusBar_mvgd_33532_lvgd_1163940005_MV,BusBar_mvgd_33532_lvgd_1163940005_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1163980000_1,BusBar_mvgd_33532_lvgd_1163980000_MV,BusBar_mvgd_33532_lvgd_1163980000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1164000000_1,BusBar_mvgd_33532_lvgd_1164000000_MV,BusBar_mvgd_33532_lvgd_1164000000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1164650000_1,BusBar_mvgd_33532_lvgd_1164650000_MV,BusBar_mvgd_33532_lvgd_1164650000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1165560000_1,BusBar_mvgd_33532_lvgd_1165560000_MV,BusBar_mvgd_33532_lvgd_1165560000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1165580000_1,BusBar_mvgd_33532_lvgd_1165580000_MV,BusBar_mvgd_33532_lvgd_1165580000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1166160000_1,BusBar_mvgd_33532_lvgd_1166160000_MV,BusBar_mvgd_33532_lvgd_1166160000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1166370000_1,BusBar_mvgd_33532_lvgd_1166370000_MV,BusBar_mvgd_33532_lvgd_1166370000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1166640000_1,BusBar_mvgd_33532_lvgd_1166640000_MV,BusBar_mvgd_33532_lvgd_1166640000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1166650000_1,BusBar_mvgd_33532_lvgd_1166650000_MV,BusBar_mvgd_33532_lvgd_1166650000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1167330000_1,BusBar_mvgd_33532_lvgd_1167330000_MV,BusBar_mvgd_33532_lvgd_1167330000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1167770000_1,BusBar_mvgd_33532_lvgd_1167770000_MV,BusBar_mvgd_33532_lvgd_1167770000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1168630000_1,BusBar_mvgd_33532_lvgd_1168630000_MV,BusBar_mvgd_33532_lvgd_1168630000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1169820000_1,BusBar_mvgd_33532_lvgd_1169820000_MV,BusBar_mvgd_33532_lvgd_1169820000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1170260000_1,BusBar_mvgd_33532_lvgd_1170260000_MV,BusBar_mvgd_33532_lvgd_1170260000_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV -Transformer_lv_grid_1170760000_1,BusBar_mvgd_33532_lvgd_1170760000_MV,BusBar_mvgd_33532_lvgd_1170760000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1172090000_1,BusBar_mvgd_33532_lvgd_1172090000_MV,BusBar_mvgd_33532_lvgd_1172090000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1172110000_1,BusBar_mvgd_33532_lvgd_1172110000_MV,BusBar_mvgd_33532_lvgd_1172110000_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1172110001_1,BusBar_mvgd_33532_lvgd_1172110001_MV,BusBar_mvgd_33532_lvgd_1172110001_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1172110001_2,BusBar_mvgd_33532_lvgd_1172110001_MV,BusBar_mvgd_33532_lvgd_1172110001_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1172110002_1,BusBar_mvgd_33532_lvgd_1172110002_MV,BusBar_mvgd_33532_lvgd_1172110002_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV -Transformer_lv_grid_1172130000_1,BusBar_mvgd_33532_lvgd_1172130000_MV,BusBar_mvgd_33532_lvgd_1172130000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1172140000_1,BusBar_mvgd_33532_lvgd_1172140000_MV,BusBar_mvgd_33532_lvgd_1172140000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1172410000_1,BusBar_mvgd_33532_lvgd_1172410000_MV,BusBar_mvgd_33532_lvgd_1172410000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1172450000_1,BusBar_mvgd_33532_lvgd_1172450000_MV,BusBar_mvgd_33532_lvgd_1172450000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1172500000_1,BusBar_mvgd_33532_lvgd_1172500000_MV,BusBar_mvgd_33532_lvgd_1172500000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1173000000_1,BusBar_mvgd_33532_lvgd_1173000000_MV,BusBar_mvgd_33532_lvgd_1173000000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1175770000_1,BusBar_mvgd_33532_lvgd_1175770000_MV,BusBar_mvgd_33532_lvgd_1175770000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1176030000_1,BusBar_mvgd_33532_lvgd_1176030000_MV,BusBar_mvgd_33532_lvgd_1176030000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1176040000_1,BusBar_mvgd_33532_lvgd_1176040000_MV,BusBar_mvgd_33532_lvgd_1176040000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1176170000_1,BusBar_mvgd_33532_lvgd_1176170000_MV,BusBar_mvgd_33532_lvgd_1176170000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1176270000_1,BusBar_mvgd_33532_lvgd_1176270000_MV,BusBar_mvgd_33532_lvgd_1176270000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1181890000_1,BusBar_mvgd_33532_lvgd_1181890000_MV,BusBar_mvgd_33532_lvgd_1181890000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1182040000_1,BusBar_mvgd_33532_lvgd_1182040000_MV,BusBar_mvgd_33532_lvgd_1182040000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1184350000_1,BusBar_mvgd_33532_lvgd_1184350000_MV,BusBar_mvgd_33532_lvgd_1184350000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1184830000_1,BusBar_mvgd_33532_lvgd_1184830000_MV,BusBar_mvgd_33532_lvgd_1184830000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1185800000_1,BusBar_mvgd_33532_lvgd_1185800000_MV,BusBar_mvgd_33532_lvgd_1185800000_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV -Transformer_lv_grid_1185810000_1,BusBar_mvgd_33532_lvgd_1185810000_MV,BusBar_mvgd_33532_lvgd_1185810000_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV -Transformer_lv_grid_1186310000_1,BusBar_mvgd_33532_lvgd_1186310000_MV,BusBar_mvgd_33532_lvgd_1186310000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1191970000_1,BusBar_mvgd_33532_lvgd_1191970000_MV,BusBar_mvgd_33532_lvgd_1191970000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1193200000_1,BusBar_mvgd_33532_lvgd_1193200000_MV,BusBar_mvgd_33532_lvgd_1193200000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1195310000_1,BusBar_mvgd_33532_lvgd_1195310000_MV,BusBar_mvgd_33532_lvgd_1195310000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1195590000_1,BusBar_mvgd_33532_lvgd_1195590000_MV,BusBar_mvgd_33532_lvgd_1195590000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1196020000_1,BusBar_mvgd_33532_lvgd_1196020000_MV,BusBar_mvgd_33532_lvgd_1196020000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1197240000_1,BusBar_mvgd_33532_lvgd_1197240000_MV,BusBar_mvgd_33532_lvgd_1197240000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1197330000_1,BusBar_mvgd_33532_lvgd_1197330000_MV,BusBar_mvgd_33532_lvgd_1197330000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV -Transformer_lv_grid_1198480000_1,BusBar_mvgd_33532_lvgd_1198480000_MV,BusBar_mvgd_33532_lvgd_1198480000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1198880000_1,BusBar_mvgd_33532_lvgd_1198880000_MV,BusBar_mvgd_33532_lvgd_1198880000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1199280000_1,BusBar_mvgd_33532_lvgd_1199280000_MV,BusBar_mvgd_33532_lvgd_1199280000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1200480000_1,BusBar_mvgd_33532_lvgd_1200480000_MV,BusBar_mvgd_33532_lvgd_1200480000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1200490000_1,BusBar_mvgd_33532_lvgd_1200490000_MV,BusBar_mvgd_33532_lvgd_1200490000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1200510000_1,BusBar_mvgd_33532_lvgd_1200510000_MV,BusBar_mvgd_33532_lvgd_1200510000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1201300000_1,BusBar_mvgd_33532_lvgd_1201300000_MV,BusBar_mvgd_33532_lvgd_1201300000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1202400000_1,BusBar_mvgd_33532_lvgd_1202400000_MV,BusBar_mvgd_33532_lvgd_1202400000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1203710000_1,BusBar_mvgd_33532_lvgd_1203710000_MV,BusBar_mvgd_33532_lvgd_1203710000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV -Transformer_lv_grid_1205070000_1,BusBar_mvgd_33532_lvgd_1205070000_MV,BusBar_mvgd_33532_lvgd_1205070000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1141170000_1,BusBar_mvgd_33535_lvgd_1141170000_MV,BusBar_mvgd_33535_lvgd_1141170000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1150630000_1,BusBar_mvgd_33535_lvgd_1150630000_MV,BusBar_mvgd_33535_lvgd_1150630000_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV +Transformer_lv_grid_1150640000_1,BusBar_mvgd_33535_lvgd_1150640000_MV,BusBar_mvgd_33535_lvgd_1150640000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1151050000_1,BusBar_mvgd_33535_lvgd_1151050000_MV,BusBar_mvgd_33535_lvgd_1151050000_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV +Transformer_lv_grid_1152000000_1,BusBar_mvgd_33535_lvgd_1152000000_MV,BusBar_mvgd_33535_lvgd_1152000000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152010000_1,BusBar_mvgd_33535_lvgd_1152010000_MV,BusBar_mvgd_33535_lvgd_1152010000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152030000_1,BusBar_mvgd_33535_lvgd_1152030000_MV,BusBar_mvgd_33535_lvgd_1152030000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152040000_1,BusBar_mvgd_33535_lvgd_1152040000_MV,BusBar_mvgd_33535_lvgd_1152040000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152050000_1,BusBar_mvgd_33535_lvgd_1152050000_MV,BusBar_mvgd_33535_lvgd_1152050000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152060000_1,BusBar_mvgd_33535_lvgd_1152060000_MV,BusBar_mvgd_33535_lvgd_1152060000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152070000_1,BusBar_mvgd_33535_lvgd_1152070000_MV,BusBar_mvgd_33535_lvgd_1152070000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152090000_1,BusBar_mvgd_33535_lvgd_1152090000_MV,BusBar_mvgd_33535_lvgd_1152090000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152120000_1,BusBar_mvgd_33535_lvgd_1152120000_MV,BusBar_mvgd_33535_lvgd_1152120000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1152130000_1,BusBar_mvgd_33535_lvgd_1152130000_MV,BusBar_mvgd_33535_lvgd_1152130000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152140000_1,BusBar_mvgd_33535_lvgd_1152140000_MV,BusBar_mvgd_33535_lvgd_1152140000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152380000_1,BusBar_mvgd_33535_lvgd_1152380000_MV,BusBar_mvgd_33535_lvgd_1152380000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152390000_1,BusBar_mvgd_33535_lvgd_1152390000_MV,BusBar_mvgd_33535_lvgd_1152390000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1152400000_1,BusBar_mvgd_33535_lvgd_1152400000_MV,BusBar_mvgd_33535_lvgd_1152400000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1153210000_1,BusBar_mvgd_33535_lvgd_1153210000_MV,BusBar_mvgd_33535_lvgd_1153210000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1155260000_1,BusBar_mvgd_33535_lvgd_1155260000_MV,BusBar_mvgd_33535_lvgd_1155260000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1155270000_1,BusBar_mvgd_33535_lvgd_1155270000_MV,BusBar_mvgd_33535_lvgd_1155270000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1155780000_1,BusBar_mvgd_33535_lvgd_1155780000_MV,BusBar_mvgd_33535_lvgd_1155780000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1156440000_1,BusBar_mvgd_33535_lvgd_1156440000_MV,BusBar_mvgd_33535_lvgd_1156440000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1156450000_1,BusBar_mvgd_33535_lvgd_1156450000_MV,BusBar_mvgd_33535_lvgd_1156450000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1156570000_1,BusBar_mvgd_33535_lvgd_1156570000_MV,BusBar_mvgd_33535_lvgd_1156570000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1157260000_1,BusBar_mvgd_33535_lvgd_1157260000_MV,BusBar_mvgd_33535_lvgd_1157260000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1157730000_1,BusBar_mvgd_33535_lvgd_1157730000_MV,BusBar_mvgd_33535_lvgd_1157730000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1157740000_1,BusBar_mvgd_33535_lvgd_1157740000_MV,BusBar_mvgd_33535_lvgd_1157740000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1159300000_1,BusBar_mvgd_33535_lvgd_1159300000_MV,BusBar_mvgd_33535_lvgd_1159300000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1159870000_1,BusBar_mvgd_33535_lvgd_1159870000_MV,BusBar_mvgd_33535_lvgd_1159870000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1159900000_1,BusBar_mvgd_33535_lvgd_1159900000_MV,BusBar_mvgd_33535_lvgd_1159900000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1160850000_1,BusBar_mvgd_33535_lvgd_1160850000_MV,BusBar_mvgd_33535_lvgd_1160850000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1160950000_1,BusBar_mvgd_33535_lvgd_1160950000_MV,BusBar_mvgd_33535_lvgd_1160950000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1161320000_1,BusBar_mvgd_33535_lvgd_1161320000_MV,BusBar_mvgd_33535_lvgd_1161320000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1161950000_1,BusBar_mvgd_33535_lvgd_1161950000_MV,BusBar_mvgd_33535_lvgd_1161950000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1161990000_1,BusBar_mvgd_33535_lvgd_1161990000_MV,BusBar_mvgd_33535_lvgd_1161990000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1163060000_1,BusBar_mvgd_33535_lvgd_1163060000_MV,BusBar_mvgd_33535_lvgd_1163060000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1163320000_1,BusBar_mvgd_33535_lvgd_1163320000_MV,BusBar_mvgd_33535_lvgd_1163320000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1163330000_1,BusBar_mvgd_33535_lvgd_1163330000_MV,BusBar_mvgd_33535_lvgd_1163330000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1163360000_1,BusBar_mvgd_33535_lvgd_1163360000_MV,BusBar_mvgd_33535_lvgd_1163360000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164120000_1,BusBar_mvgd_33535_lvgd_1164120000_MV,BusBar_mvgd_33535_lvgd_1164120000_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164120001_1,BusBar_mvgd_33535_lvgd_1164120001_MV,BusBar_mvgd_33535_lvgd_1164120001_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV +Transformer_lv_grid_1164120002_1,BusBar_mvgd_33535_lvgd_1164120002_MV,BusBar_mvgd_33535_lvgd_1164120002_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1164120003_1,BusBar_mvgd_33535_lvgd_1164120003_MV,BusBar_mvgd_33535_lvgd_1164120003_LV,0.8,0.0105,0.059074106002545645,,0.8 MVA 20/0.4 kV +Transformer_lv_grid_1164120004_1,BusBar_mvgd_33535_lvgd_1164120004_MV,BusBar_mvgd_33535_lvgd_1164120004_LV,0.8,0.0105,0.059074106002545645,,0.8 MVA 20/0.4 kV +Transformer_lv_grid_1164120005_1,BusBar_mvgd_33535_lvgd_1164120005_MV,BusBar_mvgd_33535_lvgd_1164120005_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164120006_1,BusBar_mvgd_33535_lvgd_1164120006_MV,BusBar_mvgd_33535_lvgd_1164120006_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164120006_2,BusBar_mvgd_33535_lvgd_1164120006_MV,BusBar_mvgd_33535_lvgd_1164120006_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164120007_1,BusBar_mvgd_33535_lvgd_1164120007_MV,BusBar_mvgd_33535_lvgd_1164120007_LV,1.0,0.0105,0.059074106002545645,,1.0 MVA 20/0.4 kV +Transformer_lv_grid_1164120008_1,BusBar_mvgd_33535_lvgd_1164120008_MV,BusBar_mvgd_33535_lvgd_1164120008_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164120009_1,BusBar_mvgd_33535_lvgd_1164120009_MV,BusBar_mvgd_33535_lvgd_1164120009_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1164120010_1,BusBar_mvgd_33535_lvgd_1164120010_MV,BusBar_mvgd_33535_lvgd_1164120010_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164120011_1,BusBar_mvgd_33535_lvgd_1164120011_MV,BusBar_mvgd_33535_lvgd_1164120011_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164120011_2,BusBar_mvgd_33535_lvgd_1164120011_MV,BusBar_mvgd_33535_lvgd_1164120011_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164120012_1,BusBar_mvgd_33535_lvgd_1164120012_MV,BusBar_mvgd_33535_lvgd_1164120012_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1164120013_1,BusBar_mvgd_33535_lvgd_1164120013_MV,BusBar_mvgd_33535_lvgd_1164120013_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164120014_1,BusBar_mvgd_33535_lvgd_1164120014_MV,BusBar_mvgd_33535_lvgd_1164120014_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV +Transformer_lv_grid_1164130000_1,BusBar_mvgd_33535_lvgd_1164130000_MV,BusBar_mvgd_33535_lvgd_1164130000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164150000_1,BusBar_mvgd_33535_lvgd_1164150000_MV,BusBar_mvgd_33535_lvgd_1164150000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164160000_1,BusBar_mvgd_33535_lvgd_1164160000_MV,BusBar_mvgd_33535_lvgd_1164160000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164170000_1,BusBar_mvgd_33535_lvgd_1164170000_MV,BusBar_mvgd_33535_lvgd_1164170000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164190000_1,BusBar_mvgd_33535_lvgd_1164190000_MV,BusBar_mvgd_33535_lvgd_1164190000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164200000_1,BusBar_mvgd_33535_lvgd_1164200000_MV,BusBar_mvgd_33535_lvgd_1164200000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164210000_1,BusBar_mvgd_33535_lvgd_1164210000_MV,BusBar_mvgd_33535_lvgd_1164210000_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164210000_2,BusBar_mvgd_33535_lvgd_1164210000_MV,BusBar_mvgd_33535_lvgd_1164210000_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164210001_1,BusBar_mvgd_33535_lvgd_1164210001_MV,BusBar_mvgd_33535_lvgd_1164210001_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV +Transformer_lv_grid_1164210002_1,BusBar_mvgd_33535_lvgd_1164210002_MV,BusBar_mvgd_33535_lvgd_1164210002_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV +Transformer_lv_grid_1164210003_1,BusBar_mvgd_33535_lvgd_1164210003_MV,BusBar_mvgd_33535_lvgd_1164210003_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1164210004_1,BusBar_mvgd_33535_lvgd_1164210004_MV,BusBar_mvgd_33535_lvgd_1164210004_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV +Transformer_lv_grid_1164210005_1,BusBar_mvgd_33535_lvgd_1164210005_MV,BusBar_mvgd_33535_lvgd_1164210005_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1164250000_1,BusBar_mvgd_33535_lvgd_1164250000_MV,BusBar_mvgd_33535_lvgd_1164250000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164270000_1,BusBar_mvgd_33535_lvgd_1164270000_MV,BusBar_mvgd_33535_lvgd_1164270000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1164920000_1,BusBar_mvgd_33535_lvgd_1164920000_MV,BusBar_mvgd_33535_lvgd_1164920000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1165830000_1,BusBar_mvgd_33535_lvgd_1165830000_MV,BusBar_mvgd_33535_lvgd_1165830000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1165850000_1,BusBar_mvgd_33535_lvgd_1165850000_MV,BusBar_mvgd_33535_lvgd_1165850000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1166430000_1,BusBar_mvgd_33535_lvgd_1166430000_MV,BusBar_mvgd_33535_lvgd_1166430000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1166640000_1,BusBar_mvgd_33535_lvgd_1166640000_MV,BusBar_mvgd_33535_lvgd_1166640000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1166910000_1,BusBar_mvgd_33535_lvgd_1166910000_MV,BusBar_mvgd_33535_lvgd_1166910000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1166920000_1,BusBar_mvgd_33535_lvgd_1166920000_MV,BusBar_mvgd_33535_lvgd_1166920000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1167600000_1,BusBar_mvgd_33535_lvgd_1167600000_MV,BusBar_mvgd_33535_lvgd_1167600000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1168040000_1,BusBar_mvgd_33535_lvgd_1168040000_MV,BusBar_mvgd_33535_lvgd_1168040000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1168900000_1,BusBar_mvgd_33535_lvgd_1168900000_MV,BusBar_mvgd_33535_lvgd_1168900000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1170090000_1,BusBar_mvgd_33535_lvgd_1170090000_MV,BusBar_mvgd_33535_lvgd_1170090000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1170540000_1,BusBar_mvgd_33535_lvgd_1170540000_MV,BusBar_mvgd_33535_lvgd_1170540000_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV +Transformer_lv_grid_1171050000_1,BusBar_mvgd_33535_lvgd_1171050000_MV,BusBar_mvgd_33535_lvgd_1171050000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1172390000_1,BusBar_mvgd_33535_lvgd_1172390000_MV,BusBar_mvgd_33535_lvgd_1172390000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1172410000_1,BusBar_mvgd_33535_lvgd_1172410000_MV,BusBar_mvgd_33535_lvgd_1172410000_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1172410001_1,BusBar_mvgd_33535_lvgd_1172410001_MV,BusBar_mvgd_33535_lvgd_1172410001_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1172410001_2,BusBar_mvgd_33535_lvgd_1172410001_MV,BusBar_mvgd_33535_lvgd_1172410001_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1172410002_1,BusBar_mvgd_33535_lvgd_1172410002_MV,BusBar_mvgd_33535_lvgd_1172410002_LV,0.63,0.010317460317460317,0.03864647477581405,,0.63 MVA 20/0.4 kV +Transformer_lv_grid_1172430000_1,BusBar_mvgd_33535_lvgd_1172430000_MV,BusBar_mvgd_33535_lvgd_1172430000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1172440000_1,BusBar_mvgd_33535_lvgd_1172440000_MV,BusBar_mvgd_33535_lvgd_1172440000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1172710000_1,BusBar_mvgd_33535_lvgd_1172710000_MV,BusBar_mvgd_33535_lvgd_1172710000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1172750000_1,BusBar_mvgd_33535_lvgd_1172750000_MV,BusBar_mvgd_33535_lvgd_1172750000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1172800000_1,BusBar_mvgd_33535_lvgd_1172800000_MV,BusBar_mvgd_33535_lvgd_1172800000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1173300000_1,BusBar_mvgd_33535_lvgd_1173300000_MV,BusBar_mvgd_33535_lvgd_1173300000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1176060000_1,BusBar_mvgd_33535_lvgd_1176060000_MV,BusBar_mvgd_33535_lvgd_1176060000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1176320000_1,BusBar_mvgd_33535_lvgd_1176320000_MV,BusBar_mvgd_33535_lvgd_1176320000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1176330000_1,BusBar_mvgd_33535_lvgd_1176330000_MV,BusBar_mvgd_33535_lvgd_1176330000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1176460000_1,BusBar_mvgd_33535_lvgd_1176460000_MV,BusBar_mvgd_33535_lvgd_1176460000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1176560000_1,BusBar_mvgd_33535_lvgd_1176560000_MV,BusBar_mvgd_33535_lvgd_1176560000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1179290000_1,BusBar_mvgd_33535_lvgd_1179290000_MV,BusBar_mvgd_33535_lvgd_1179290000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1182190000_1,BusBar_mvgd_33535_lvgd_1182190000_MV,BusBar_mvgd_33535_lvgd_1182190000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1182340000_1,BusBar_mvgd_33535_lvgd_1182340000_MV,BusBar_mvgd_33535_lvgd_1182340000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1184650000_1,BusBar_mvgd_33535_lvgd_1184650000_MV,BusBar_mvgd_33535_lvgd_1184650000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1185140000_1,BusBar_mvgd_33535_lvgd_1185140000_MV,BusBar_mvgd_33535_lvgd_1185140000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1186110000_1,BusBar_mvgd_33535_lvgd_1186110000_MV,BusBar_mvgd_33535_lvgd_1186110000_LV,0.25,0.013,0.037828560638755476,,0.25 MVA 20/0.4 kV +Transformer_lv_grid_1186120000_1,BusBar_mvgd_33535_lvgd_1186120000_MV,BusBar_mvgd_33535_lvgd_1186120000_LV,0.4,0.0115,0.03831122550898105,,0.4 MVA 20/0.4 kV +Transformer_lv_grid_1186620000_1,BusBar_mvgd_33535_lvgd_1186620000_MV,BusBar_mvgd_33535_lvgd_1186620000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1192280000_1,BusBar_mvgd_33535_lvgd_1192280000_MV,BusBar_mvgd_33535_lvgd_1192280000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1193510000_1,BusBar_mvgd_33535_lvgd_1193510000_MV,BusBar_mvgd_33535_lvgd_1193510000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1195620000_1,BusBar_mvgd_33535_lvgd_1195620000_MV,BusBar_mvgd_33535_lvgd_1195620000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1195900000_1,BusBar_mvgd_33535_lvgd_1195900000_MV,BusBar_mvgd_33535_lvgd_1195900000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1196330000_1,BusBar_mvgd_33535_lvgd_1196330000_MV,BusBar_mvgd_33535_lvgd_1196330000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1197550000_1,BusBar_mvgd_33535_lvgd_1197550000_MV,BusBar_mvgd_33535_lvgd_1197550000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1197640000_1,BusBar_mvgd_33535_lvgd_1197640000_MV,BusBar_mvgd_33535_lvgd_1197640000_LV,0.16,0.0146875,0.037205877811845804,,0.16 MVA 20/0.4 kV +Transformer_lv_grid_1198790000_1,BusBar_mvgd_33535_lvgd_1198790000_MV,BusBar_mvgd_33535_lvgd_1198790000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1199190000_1,BusBar_mvgd_33535_lvgd_1199190000_MV,BusBar_mvgd_33535_lvgd_1199190000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1199590000_1,BusBar_mvgd_33535_lvgd_1199590000_MV,BusBar_mvgd_33535_lvgd_1199590000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1200790000_1,BusBar_mvgd_33535_lvgd_1200790000_MV,BusBar_mvgd_33535_lvgd_1200790000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1200800000_1,BusBar_mvgd_33535_lvgd_1200800000_MV,BusBar_mvgd_33535_lvgd_1200800000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1200820000_1,BusBar_mvgd_33535_lvgd_1200820000_MV,BusBar_mvgd_33535_lvgd_1200820000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1201610000_1,BusBar_mvgd_33535_lvgd_1201610000_MV,BusBar_mvgd_33535_lvgd_1201610000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1202720000_1,BusBar_mvgd_33535_lvgd_1202720000_MV,BusBar_mvgd_33535_lvgd_1202720000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1204030000_1,BusBar_mvgd_33535_lvgd_1204030000_MV,BusBar_mvgd_33535_lvgd_1204030000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV +Transformer_lv_grid_1205360000_1,BusBar_mvgd_33535_lvgd_1205360000_MV,BusBar_mvgd_33535_lvgd_1205360000_LV,0.1,0.0175,0.035968736424845396,,0.1 MVA 20/0.4 kV diff --git a/tests/data/ding0_test_network_3/transformers_hvmv.csv b/tests/data/ding0_test_network_3/transformers_hvmv.csv index 506468f20..85a4cbe6e 100644 --- a/tests/data/ding0_test_network_3/transformers_hvmv.csv +++ b/tests/data/ding0_test_network_3/transformers_hvmv.csv @@ -1,3 +1,3 @@ name,bus0,bus1,s_nom,r,x,type,type_info -Transformer_mv_grid_33532_1,Busbar_mvgd_33532_HV,Busbar_mvgd_33532_MV,40.0,,,40 MVA 110/20 kV,40 MVA 110/20 kV -Transformer_mv_grid_33532_2,Busbar_mvgd_33532_HV,Busbar_mvgd_33532_MV,40.0,,,40 MVA 110/20 kV,40 MVA 110/20 kV +Transformer_mv_grid_33535_1,Busbar_mvgd_33535_HV,Busbar_mvgd_33535_MV,40.0,,,40 MVA 110/20 kV,40 MVA 110/20 kV +Transformer_mv_grid_33535_2,Busbar_mvgd_33535_HV,Busbar_mvgd_33535_MV,40.0,,,40 MVA 110/20 kV,40 MVA 110/20 kV From 4b2a8932cf1f5432156f4bc3f5ac14ea14528208 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 30 Mar 2023 22:41:32 +0200 Subject: [PATCH 168/355] Remove dash restrictions --- rtd_requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 333821f41..08227066a 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -1,5 +1,5 @@ beautifulsoup4 -dash < 2.9.0 +dash demandlib docutils == 0.16.0 egoio >= 0.4.7 diff --git a/setup.py b/setup.py index c45330455..92afef3c7 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def read(fname): requirements = [ "beautifulsoup4", "contextily", - "dash < 2.9.0", + "dash", "demandlib", "descartes", "egoio >= 0.4.7", From a38a058e9a4cd8c314dea590344f5116c9579053 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 31 Mar 2023 09:26:41 +0200 Subject: [PATCH 169/355] Add check for internal links to dev notes --- doc/dev_notes.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/dev_notes.rst b/doc/dev_notes.rst index a47df0032..e012ce874 100644 --- a/doc/dev_notes.rst +++ b/doc/dev_notes.rst @@ -82,3 +82,9 @@ To manually check if external links in the documentation work, you can run the f sphinx-build ./doc/ -b linkcheck -d _build/doctrees _build/html +Internal links can be checked adding -n option when building the documentation. This will +also raise warnings for type hinting, so it is a bit confusing, but can still be helpful. + +.. code-block:: bash + + sphinx-build -n -E -a -b html ./doc/ From 383032e872f67cc37cb2112f646b5a9d7d45042d Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 31 Mar 2023 09:26:49 +0200 Subject: [PATCH 170/355] Add changes to whatsnew --- doc/whatsnew/v0-3-0.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/whatsnew/v0-3-0.rst b/doc/whatsnew/v0-3-0.rst index c7de1d4ac..a9edaffb6 100644 --- a/doc/whatsnew/v0-3-0.rst +++ b/doc/whatsnew/v0-3-0.rst @@ -6,6 +6,7 @@ Release date: , Changes ------- +* Added functionalities to obtain electromobility, DSM, storage and electricity timeseries data from oedb `#328 `_ * Added functionalities to obtain heat pump data from oedb `#324 `_ * Added functionality to resample and check integrity of flexibility bands `#341 `_ * Added function to sort buses in lines dataframe such that bus0 is always the upstream bus `#335 `_ From d0bb863e9e4c35546e456c35e85f2af9907ed882 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 31 Mar 2023 09:27:32 +0200 Subject: [PATCH 171/355] Fix internal links --- edisgo/edisgo.py | 42 ++++++++++++++--------------- edisgo/flex_opt/costs.py | 4 +-- edisgo/flex_opt/reinforce_grid.py | 6 ++--- edisgo/io/ding0_import.py | 1 - edisgo/io/electromobility_import.py | 2 +- edisgo/io/timeseries_import.py | 12 ++++----- edisgo/network/components.py | 8 +++--- 7 files changed, 37 insertions(+), 38 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 5f9207afa..8aade3acf 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -332,7 +332,7 @@ def set_time_series_worst_case_analysis( Sets demand and feed-in of all loads, generators and storage units for the specified worst cases. - See :func:`~.network.timeseries.TimeSeries.set_worst_case` for more information. + See :attr:`~.network.timeseries.TimeSeries.set_worst_case` for more information. Parameters ----------- @@ -445,19 +445,19 @@ def set_time_series_active_power_predefined( fluctuating_generators_names : list(str) or None Defines for which fluctuating generators to apply technology-specific time series. See parameter `generator_names` in - :func:`~.network.timeseries.TimeSeries.predefined_dispatchable_generators_by_technology` + :attr:`~.network.timeseries.TimeSeries.predefined_fluctuating_generators_by_technology` for more information. Default: None. dispatchable_generators_ts : :pandas:`pandas.DataFrame` or None Defines which technology-specific time series to use to set active power time series of dispatchable generators. See parameter `ts_generators` in - :func:`~.network.timeseries.TimeSeries.predefined_dispatchable_generators_by_technology` + :attr:`~.network.timeseries.TimeSeries.predefined_dispatchable_generators_by_technology` for more information. If None, no time series of dispatchable generators are set. Default: None. dispatchable_generators_names : list(str) or None Defines for which dispatchable generators to apply technology-specific time series. See parameter `generator_names` in - :func:`~.network.timeseries.TimeSeries.predefined_dispatchable_generators_by_technology` + :attr:`~.network.timeseries.TimeSeries.predefined_dispatchable_generators_by_technology` for more information. Default: None. conventional_loads_ts : str or :pandas:`pandas.DataFrame` or None Defines option to set active power time series of conventional loads. @@ -507,19 +507,19 @@ def set_time_series_active_power_predefined( `conventional_loads_ts` is 'oedb' see parameter `load_names` in :func:`edisgo.io.timeseries_import.electricity_demand_oedb` for more information. For other cases see parameter `load_names` in - :func:`~.network.timeseries.TimeSeries.predefined_conventional_loads_by_sector` + :attr:`~.network.timeseries.TimeSeries.predefined_conventional_loads_by_sector` for more information. Default: None. charging_points_ts : :pandas:`pandas.DataFrame` or None Defines which use-case-specific time series to use to set active power time series of charging points. See parameter `ts_loads` in - :func:`~.network.timeseries.TimeSeries.predefined_charging_points_by_use_case` + :attr:`~.network.timeseries.TimeSeries.predefined_charging_points_by_use_case` for more information. If None, no time series of charging points are set. Default: None. charging_points_names : list(str) or None Defines for which charging points to apply use-case-specific time series. See parameter `load_names` in - :func:`~.network.timeseries.TimeSeries.predefined_charging_points_by_use_case` + :attr:`~.network.timeseries.TimeSeries.predefined_charging_points_by_use_case` for more information. Default: None. Other Parameters @@ -603,20 +603,20 @@ def set_time_series_reactive_power_control( Parameters ----------- control : str - Type of reactive power control to apply. Currently the only option is - 'fixed_coshpi'. See :func:`~.network.timeseries.TimeSeries.fixed_cosphi` + Type of reactive power control to apply. Currently, the only option is + 'fixed_coshpi'. See :attr:`~.network.timeseries.TimeSeries.fixed_cosphi` for further information. generators_parametrisation : str or :pandas:`pandas.DataFrame` See parameter `generators_parametrisation` in - :func:`~.network.timeseries.TimeSeries.fixed_cosphi` for further + :attr:`~.network.timeseries.TimeSeries.fixed_cosphi` for further information. Here, per default, the option 'default' is used. loads_parametrisation : str or :pandas:`pandas.DataFrame` See parameter `loads_parametrisation` in - :func:`~.network.timeseries.TimeSeries.fixed_cosphi` for further + :attr:`~.network.timeseries.TimeSeries.fixed_cosphi` for further information. Here, per default, the option 'default' is used. storage_units_parametrisation : str or :pandas:`pandas.DataFrame` See parameter `storage_units_parametrisation` in - :func:`~.network.timeseries.TimeSeries.fixed_cosphi` for further + :attr:`~.network.timeseries.TimeSeries.fixed_cosphi` for further information. Here, per default, the option 'default' is used. Notes @@ -664,7 +664,7 @@ def set_time_series_reactive_power_control( In the example above, `generators_parametrisation` and `storage_units_parametrisation` do not need to be set as default configurations - are per default used for all generators and storage units anyways. + are per default used for all generators and storage units anyway. """ if control == "fixed_cosphi": @@ -2273,7 +2273,7 @@ def histogram_relative_line_load( Plots histogram of relative line loads. For more information on how the relative line load is calculated see - :func:`edisgo.tools.tools.get_line_loading_from_network`. + :func:`edisgo.tools.tools.calculate_relative_line_load`. For more information on the histogram plot and possible configurations see :func:`edisgo.tools.plots.histogram`. @@ -2369,11 +2369,11 @@ def save( :attr:`~.network.topology.Topology.to_csv` for more information. Default: True. save_timeseries : bool, optional - Indicates whether to save :class:`~.network.timeseries.Timeseries` object. + Indicates whether to save :class:`~.network.timeseries.TimeSeries` object. Per default it is saved to subdirectory 'timeseries'. Through the keyword arguments `reduce_memory` and `to_type` it can be chosen if memory should be reduced. See - :attr:`~.network.timeseries.Timeseries.to_csv` for more + :attr:`~.network.timeseries.TimeSeries.to_csv` for more information. Default: True. save_results : bool, optional @@ -2427,7 +2427,7 @@ def save( Specifies which results to store. By default, this is set to None, in which case all available results are stored. To only store certain results provide a dictionary. See function docstring - `parameters` parameter in :func:`~.network.results.Results.to_csv` + `parameters` parameter in :attr:`~.network.results.Results.to_csv` for more information. electromobility_attributes : None or list(str) Specifies which electromobility attributes to store. By default, this is set @@ -2793,9 +2793,9 @@ def import_edisgo_from_files( """ Sets up EDisGo object from csv files. - This is the reverse function of :func:`~.edisgo.EDisGo.save` and if not specified + This is the reverse function of :attr:`~.edisgo.EDisGo.save` and if not specified differently assumes all data in the default sub-directories created in the - :func:`~.edisgo.EDisGo.save` function. + :attr:`~.edisgo.EDisGo.save` function. Parameters ----------- @@ -2813,7 +2813,7 @@ def import_edisgo_from_files( `topology_directory`. Default: True. import_timeseries : bool - Indicates whether to import :class:`~.network.timeseries.Timeseries` object. + Indicates whether to import :class:`~.network.timeseries.TimeSeries` object. Per default, it is set to False, in which case timeseries data is not imported. The default directory time series data is imported from is the sub-directory 'timeseries'. A different directory can be specified through keyword argument @@ -2869,7 +2869,7 @@ def import_edisgo_from_files( from. Per default, topology data is imported from `edisgo_path` sub-directory 'topology'. timeseries_directory : str - Indicates directory :class:`~.network.timeseries.Timeseries` object is imported + Indicates directory :class:`~.network.timeseries.TimeSeries` object is imported from. Per default, time series data is imported from `edisgo_path` sub-directory 'timeseries'. results_directory : str diff --git a/edisgo/flex_opt/costs.py b/edisgo/flex_opt/costs.py index 01db8eeb1..c431bd0bc 100644 --- a/edisgo/flex_opt/costs.py +++ b/edisgo/flex_opt/costs.py @@ -15,7 +15,7 @@ def grid_expansion_costs(edisgo_obj, without_generator_import=False): Attributes ---------- - edisgo_obj : :class:`~.self.edisgo.EDisGo` + edisgo_obj : :class:`~.EDisGo` without_generator_import : bool If True excludes lines that were added in the generator import to connect new generators to the topology from calculation of topology expansion @@ -213,7 +213,7 @@ def line_expansion_costs(edisgo_obj, lines_names=None): Parameters ----------- - edisgo_obj : :class:`~.edisgo.EDisGo` + edisgo_obj : :class:`~.EDisGo` eDisGo object lines_names: None or list(str) List of names of lines to return cost information for. If None, it is returned diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 7292dda6c..be2afb527 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -45,13 +45,13 @@ def reinforce_grid( conducted and therefore which time steps to consider when checking for over-loading and over-voltage issues. It defaults to None in which case all timesteps in - timeseries.timeindex (see :class:`~.network.network.TimeSeries`) are + timeseries.timeindex (see :class:`~.network.timeseries.TimeSeries`) are used. Possible options are: * None Time steps in timeseries.timeindex (see - :class:`~.network.network.TimeSeries`) are used. + :class:`~.network.timeseries.TimeSeries`) are used. * 'snapshot_analysis' Reinforcement is conducted for two worst-case snapshots. See :meth:`edisgo.tools.tools.select_worstcase_snapshots()` for further @@ -96,7 +96,7 @@ def reinforce_grid( Returns ------- - :class:`~.network.network.Results` + :class:`~.network.results.Results` Returns the Results object holding network expansion costs, equipment changes, etc. diff --git a/edisgo/io/ding0_import.py b/edisgo/io/ding0_import.py index 25451de2f..4cb3399f4 100644 --- a/edisgo/io/ding0_import.py +++ b/edisgo/io/ding0_import.py @@ -104,7 +104,6 @@ def sort_hvmv_transformer_buses(transformers_df): edisgo_obj.topology.generators_df = grid.generators[ edisgo_obj.topology.generators_df.columns ] - edisgo_obj.topology.storage_units_df = grid.storage_units[ edisgo_obj.topology.storage_units_df.columns ] diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index 11d290205..f3cb2ed24 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -768,7 +768,7 @@ def weighted_random_choice( ): """ Weighted random choice of a potential charging park. Setting the chosen - values into :obj:`~.network.electromobility.charging_processes_df` + values into :obj:`~.network.electromobility.Electromobility.charging_processes_df` Parameters ---------- diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 4507ce763..634426c7c 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -381,10 +381,10 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): Heat demand data is returned for all heat pumps in the grid. For more information on how individual heat demand profiles are obtained see - functions :attr:`~.io.timeseries_import.get_residential_heat_profiles_per_building` - and :attr:`~.io.timeseries_import.get_cts_profiles_per_building`. + functions :func:`~.io.timeseries_import.get_residential_heat_profiles_per_building` + and :func:`~.io.timeseries_import.get_cts_profiles_per_building`. For more information on how district heating heat demand profiles are obtained see - function :attr:`~.io.timeseries_import.get_district_heating_heat_demand_profiles`. + function :func:`~.io.timeseries_import.get_district_heating_heat_demand_profiles`. Parameters ---------- @@ -494,9 +494,9 @@ def electricity_demand_oedb( Conventional loads comprise conventional electricity applications in the residential, CTS and industrial sector. For more information on how the demand profiles are obtained see functions - :attr:`~.io.timeseries_import.get_residential_electricity_profiles_per_building`, - :attr:`~.io.timeseries_import.get_cts_profiles_per_building` and - :attr:`~.io.timeseries_import.get_industrial_electricity_profiles_per_site`. + :func:`~.io.timeseries_import.get_residential_electricity_profiles_per_building`, + :func:`~.io.timeseries_import.get_cts_profiles_per_building` and + :func:`~.io.timeseries_import.get_industrial_electricity_profiles_per_site`. Parameters ---------- diff --git a/edisgo/network/components.py b/edisgo/network/components.py index 2a5d8c1ea..383a0aa56 100644 --- a/edisgo/network/components.py +++ b/edisgo/network/components.py @@ -89,7 +89,7 @@ def grid(self): Returns -------- - :class:`~.network.components.Grid` + :class:`~.network.grids.Grid` Grid component is in. """ @@ -147,7 +147,7 @@ def grid(self): Returns -------- - :class:`~.network.components.Grid` + :class:`~.network.grids.Grid` Grid object the component is in. """ @@ -690,7 +690,7 @@ def grid(self): Returns -------- - :class:`~.topology.components.Grid` + :class:`~.topology.grids.Grid` Grid switch is in. """ @@ -778,7 +778,7 @@ def grid(self): Returns -------- - :class:`~.network.components.Grid` + :class:`~.network.grids.Grid` Grid component is in. """ From d4a32014206c596c1f2d9463695604c04e1d6893 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 31 Mar 2023 09:27:51 +0200 Subject: [PATCH 172/355] Move pyyaml to keep alphabetical order --- rtd_requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 08227066a..8e26abbe2 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -14,6 +14,7 @@ pyomo >= 6.0 pypower pyproj >= 3.0.0 pypsa >=0.17.0, <=0.20.1 +pyyaml saio scikit-learn sphinx >= 4.3.0, < 5.1.0 @@ -22,4 +23,3 @@ sphinx-autodoc-typehints sphinx-autoapi sshtunnel workalendar -pyyaml From c599b53cf4626887f05d5ba76dcce9092ccab4aa Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 31 Mar 2023 09:28:04 +0200 Subject: [PATCH 173/355] Adapt docstring --- edisgo/io/generators_import.py | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 1519421bd..70e9093a2 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -780,15 +780,14 @@ def oedb( other power plants. For PV rooftop the following steps are conducted: - * Removes decommissioned PV rooftop plants (plants whose building ID is not - in pv_rooftop_df.building_id). - * Updates existing PV rooftop plants (plants whose building ID is in - pv_rooftop_df.building_id). The following two cases are distinguished: - - * p_nom increases: It is checked, if plant needs to be connected to a higher - voltage level and if that is the case, the existing plant is removed from the - grid and the new one integrated based on the geolocation. - * p_nom decreases: p_nom of existing plant is overwritten. + * Removes decommissioned PV rooftop plants (plants whose source ID cannot + be matched to a source ID of an existing plant). + * Updates existing PV rooftop plants. The following two cases are distinguished: + + * Nominal power increases: It is checked, if plant needs to be connected to a + higher voltage level and if that is the case, the existing plant is removed from + the grid and the new one integrated based on the geolocation. + * Nominal power decreases: Nominal power of existing plant is overwritten. * Integrates new PV rooftop plants at corresponding building ID. If the plant needs to be connected to a higher voltage level than the building, it is integrated based on the geolocation. @@ -799,14 +798,14 @@ def oedb( ID or whose source ID can not be matched to a new plant and are not of subtype pv_rooftop, as these are handled in a separate function) * Updates existing power plants (plants whose source ID is in - power_plants_gdf.source_id; solar, wind and CHP plants never have a source ID in + can be matched; solar, wind and CHP plants never have a source ID in the future scenarios and are therefore never updated). The following two cases are distinguished: - * p_nom increases: It is checked, if plant needs to be connected to a higher - voltage level and if that is the case, the existing plant is removed from the - grid and the new one integrated based on the geolocation. - * p_nom decreases: p_nom of existing plant is overwritten. + * Nominal power increases: It is checked, if plant needs to be connected to a + higher voltage level and if that is the case, the existing plant is removed from + the grid and the new one integrated based on the geolocation. + * Nominal power decreases: Nominal power of existing plant is overwritten. * Integrates new power and CHP plants based on the geolocation. Parameters From b2547c878f06d01c1ca31996ce387091da30711a Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 31 Mar 2023 09:29:30 +0200 Subject: [PATCH 174/355] Remove old option for DSM import to import pu timeseries --- edisgo/io/dsm_import.py | 250 +++++++++++----------------------------- 1 file changed, 69 insertions(+), 181 deletions(-) diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index 203f9a380..71bc64ad4 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -135,125 +135,57 @@ def get_profiles_per_industrial_load( dsm_dict = {} - if hasattr(egon_sites_ind_load_curves_individual_dsm_timeseries, "p_min_pu"): - with session_scope_egon_data(engine) as session: - query = session.query( - egon_sites_ind_load_curves_individual_dsm_timeseries.site_id, - egon_sites_ind_load_curves_individual_dsm_timeseries.p_nom, - egon_sites_ind_load_curves_individual_dsm_timeseries.p_min_pu, - egon_sites_ind_load_curves_individual_dsm_timeseries.p_max_pu, - egon_sites_ind_load_curves_individual_dsm_timeseries.e_nom, - egon_sites_ind_load_curves_individual_dsm_timeseries.e_min_pu, - egon_sites_ind_load_curves_individual_dsm_timeseries.e_max_pu, - ).filter( - egon_sites_ind_load_curves_individual_dsm_timeseries.scn_name - == scenario, - egon_sites_ind_load_curves_individual_dsm_timeseries.site_id.in_( - load_ids - ), - ) - - df_sites_1 = pd.read_sql(sql=query.statement, con=engine) - - query = session.query( - sites_ind_dsm_ts.industrial_sites_id.label("site_id"), - sites_ind_dsm_ts.p_nom, - sites_ind_dsm_ts.p_min_pu, - sites_ind_dsm_ts.p_max_pu, - sites_ind_dsm_ts.e_nom, - sites_ind_dsm_ts.e_min_pu, - sites_ind_dsm_ts.e_max_pu, - ).filter( - sites_ind_dsm_ts.scn_name == scenario, - sites_ind_dsm_ts.industrial_sites_id.in_(load_ids), - ) - - df_sites_2 = pd.read_sql(sql=query.statement, con=engine) - - query = session.query( - egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.label( - "site_id" - ), - egon_osm_ind_load_curves_individual_dsm_timeseries.p_nom, - egon_osm_ind_load_curves_individual_dsm_timeseries.p_min_pu, - egon_osm_ind_load_curves_individual_dsm_timeseries.p_max_pu, - egon_osm_ind_load_curves_individual_dsm_timeseries.e_nom, - egon_osm_ind_load_curves_individual_dsm_timeseries.e_min_pu, - egon_osm_ind_load_curves_individual_dsm_timeseries.e_max_pu, - ).filter( - egon_osm_ind_load_curves_individual_dsm_timeseries.scn_name == scenario, - egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.in_(load_ids), - ) - - df_areas = pd.read_sql(sql=query.statement, con=engine) - - df = pd.concat([df_sites_1, df_sites_2, df_areas]) - # add time step column - df["time_step"] = len(df) * [np.arange(0, 8760)] - # un-nest time series data and pivot so that time_step becomes index and - # site_id column names - dsm_dict["p_min"] = _pivot_pu_helper(df, "p_min", "p_nom") - dsm_dict["p_max"] = _pivot_pu_helper(df, "p_max", "p_nom") - dsm_dict["e_min"] = _pivot_pu_helper(df, "e_min", "e_nom") - dsm_dict["e_max"] = _pivot_pu_helper(df, "e_max", "e_nom") - - else: - with session_scope_egon_data(engine) as session: - query = session.query( - egon_sites_ind_load_curves_individual_dsm_timeseries.site_id, - egon_sites_ind_load_curves_individual_dsm_timeseries.p_min, - egon_sites_ind_load_curves_individual_dsm_timeseries.p_max, - egon_sites_ind_load_curves_individual_dsm_timeseries.e_min, - egon_sites_ind_load_curves_individual_dsm_timeseries.e_max, - ).filter( - egon_sites_ind_load_curves_individual_dsm_timeseries.scn_name - == scenario, - egon_sites_ind_load_curves_individual_dsm_timeseries.site_id.in_( - load_ids - ), - ) - - df_sites_1 = pd.read_sql(sql=query.statement, con=engine) - - with session_scope_egon_data(engine) as session: - query = session.query( - sites_ind_dsm_ts.industrial_sites_id.label("site_id"), - sites_ind_dsm_ts.p_min, - sites_ind_dsm_ts.p_max, - sites_ind_dsm_ts.e_min, - sites_ind_dsm_ts.e_max, - ).filter( - sites_ind_dsm_ts.scn_name == scenario, - sites_ind_dsm_ts.industrial_sites_id.in_(load_ids), - ) + with session_scope_egon_data(engine) as session: + query = session.query( + egon_sites_ind_load_curves_individual_dsm_timeseries.site_id, + egon_sites_ind_load_curves_individual_dsm_timeseries.p_min, + egon_sites_ind_load_curves_individual_dsm_timeseries.p_max, + egon_sites_ind_load_curves_individual_dsm_timeseries.e_min, + egon_sites_ind_load_curves_individual_dsm_timeseries.e_max, + ).filter( + egon_sites_ind_load_curves_individual_dsm_timeseries.scn_name == scenario, + egon_sites_ind_load_curves_individual_dsm_timeseries.site_id.in_(load_ids), + ) - df_sites_2 = pd.read_sql(sql=query.statement, con=engine) + df_sites_1 = pd.read_sql(sql=query.statement, con=engine) + + with session_scope_egon_data(engine) as session: + query = session.query( + sites_ind_dsm_ts.industrial_sites_id.label("site_id"), + sites_ind_dsm_ts.p_min, + sites_ind_dsm_ts.p_max, + sites_ind_dsm_ts.e_min, + sites_ind_dsm_ts.e_max, + ).filter( + sites_ind_dsm_ts.scn_name == scenario, + sites_ind_dsm_ts.industrial_sites_id.in_(load_ids), + ) - with session_scope_egon_data(engine) as session: - query = session.query( - egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.label( - "site_id" - ), - egon_osm_ind_load_curves_individual_dsm_timeseries.p_min, - egon_osm_ind_load_curves_individual_dsm_timeseries.p_max, - egon_osm_ind_load_curves_individual_dsm_timeseries.e_min, - egon_osm_ind_load_curves_individual_dsm_timeseries.e_max, - ).filter( - egon_osm_ind_load_curves_individual_dsm_timeseries.scn_name == scenario, - egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.in_(load_ids), - ) + df_sites_2 = pd.read_sql(sql=query.statement, con=engine) + + with session_scope_egon_data(engine) as session: + query = session.query( + egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.label("site_id"), + egon_osm_ind_load_curves_individual_dsm_timeseries.p_min, + egon_osm_ind_load_curves_individual_dsm_timeseries.p_max, + egon_osm_ind_load_curves_individual_dsm_timeseries.e_min, + egon_osm_ind_load_curves_individual_dsm_timeseries.e_max, + ).filter( + egon_osm_ind_load_curves_individual_dsm_timeseries.scn_name == scenario, + egon_osm_ind_load_curves_individual_dsm_timeseries.osm_id.in_(load_ids), + ) - df_areas = pd.read_sql(sql=query.statement, con=engine) + df_areas = pd.read_sql(sql=query.statement, con=engine) - df = pd.concat([df_sites_1, df_sites_2, df_areas]) - # add time step column - df["time_step"] = len(df) * [np.arange(0, 8760)] - # un-nest time series data and pivot so that time_step becomes index and - # site_id column names - dsm_dict["p_min"] = _pivot_abs_helper(df, "p_min") - dsm_dict["p_max"] = _pivot_abs_helper(df, "p_max") - dsm_dict["e_min"] = _pivot_abs_helper(df, "e_min") - dsm_dict["e_max"] = _pivot_abs_helper(df, "e_max") + df = pd.concat([df_sites_1, df_sites_2, df_areas]) + # add time step column + df["time_step"] = len(df) * [np.arange(0, 8760)] + # un-nest time series data and pivot so that time_step becomes index and + # site_id column names + dsm_dict["p_min"] = _pivot_helper(df, "p_min") + dsm_dict["p_max"] = _pivot_helper(df, "p_max") + dsm_dict["e_min"] = _pivot_helper(df, "e_min") + dsm_dict["e_max"] = _pivot_helper(df, "e_max") return dsm_dict @@ -289,60 +221,27 @@ def get_profile_cts( # get data dsm_dict = {} - if hasattr(egon_etrago_electricity_cts_dsm_timeseries, "p_min_pu"): - with session_scope_egon_data(engine) as session: - query = session.query( - egon_etrago_electricity_cts_dsm_timeseries.bus.label("site_id"), - egon_etrago_electricity_cts_dsm_timeseries.p_nom, - egon_etrago_electricity_cts_dsm_timeseries.p_min_pu, - egon_etrago_electricity_cts_dsm_timeseries.p_max_pu, - egon_etrago_electricity_cts_dsm_timeseries.e_nom, - egon_etrago_electricity_cts_dsm_timeseries.e_min_pu, - egon_etrago_electricity_cts_dsm_timeseries.e_max_pu, - ).filter( - egon_etrago_electricity_cts_dsm_timeseries.scn_name == scenario, - egon_etrago_electricity_cts_dsm_timeseries.bus - == edisgo_obj.topology.id, - ) - df = pd.read_sql(sql=query.statement, con=engine) - # add time step column - df["time_step"] = len(df) * [np.arange(0, 8760)] - # un-nest time series data and pivot so that time_step becomes index and - # site_id column names - dsm_dict["p_min"] = _pivot_pu_helper(df, "p_min", "p_nom") - dsm_dict["p_max"] = _pivot_pu_helper(df, "p_max", "p_nom") - dsm_dict["e_min"] = _pivot_pu_helper(df, "e_min", "e_nom") - dsm_dict["e_max"] = _pivot_pu_helper(df, "e_max", "e_nom") - - # temporary! set negative p_max and e_max values and positive p_min and e_min - # values to zero - dsm_dict["p_min"][dsm_dict["p_min"] > 0.0] = 0.0 - dsm_dict["e_min"][dsm_dict["e_min"] > 0.0] = 0.0 - dsm_dict["p_max"][dsm_dict["p_max"] < 0.0] = 0.0 - dsm_dict["e_max"][dsm_dict["e_max"] < 0.0] = 0.0 - - else: - with session_scope_egon_data(engine) as session: - query = session.query( - egon_etrago_electricity_cts_dsm_timeseries.bus.label("site_id"), - egon_etrago_electricity_cts_dsm_timeseries.p_min, - egon_etrago_electricity_cts_dsm_timeseries.p_max, - egon_etrago_electricity_cts_dsm_timeseries.e_min, - egon_etrago_electricity_cts_dsm_timeseries.e_max, - ).filter( - egon_etrago_electricity_cts_dsm_timeseries.scn_name == scenario, - egon_etrago_electricity_cts_dsm_timeseries.bus - == edisgo_obj.topology.id, - ) - df = pd.read_sql(sql=query.statement, con=engine) - # add time step column - df["time_step"] = len(df) * [np.arange(0, 8760)] - # un-nest time series data and pivot so that time_step becomes index and - # site_id column names - dsm_dict["p_min"] = _pivot_abs_helper(df, "p_min") - dsm_dict["p_max"] = _pivot_abs_helper(df, "p_max") - dsm_dict["e_min"] = _pivot_abs_helper(df, "e_min") - dsm_dict["e_max"] = _pivot_abs_helper(df, "e_max") + + with session_scope_egon_data(engine) as session: + query = session.query( + egon_etrago_electricity_cts_dsm_timeseries.bus.label("site_id"), + egon_etrago_electricity_cts_dsm_timeseries.p_min, + egon_etrago_electricity_cts_dsm_timeseries.p_max, + egon_etrago_electricity_cts_dsm_timeseries.e_min, + egon_etrago_electricity_cts_dsm_timeseries.e_max, + ).filter( + egon_etrago_electricity_cts_dsm_timeseries.scn_name == scenario, + egon_etrago_electricity_cts_dsm_timeseries.bus == edisgo_obj.topology.id, + ) + df = pd.read_sql(sql=query.statement, con=engine) + # add time step column + df["time_step"] = len(df) * [np.arange(0, 8760)] + # un-nest time series data and pivot so that time_step becomes index and + # site_id column names + dsm_dict["p_min"] = _pivot_helper(df, "p_min") + dsm_dict["p_max"] = _pivot_helper(df, "p_max") + dsm_dict["e_min"] = _pivot_helper(df, "e_min") + dsm_dict["e_max"] = _pivot_helper(df, "e_max") # distribute over all CTS loads cts_loads = edisgo_obj.topology.loads_df[ @@ -367,18 +266,7 @@ def get_profile_cts( return dsm_dict -def _pivot_pu_helper(df_db, pu_col, scale_col): - df = ( - df_db.loc[:, ["site_id", scale_col, f"{pu_col}_pu", "time_step"]] - .explode([f"{pu_col}_pu", "time_step"]) - .astype({f"{pu_col}_pu": "float"}) - ) - df[pu_col] = df[f"{pu_col}_pu"] * df[scale_col] - df = df.pivot(index="time_step", columns="site_id", values=pu_col) - return df - - -def _pivot_abs_helper(df_db, col): +def _pivot_helper(df_db, col): df = ( df_db.loc[:, ["site_id", col, "time_step"]] .explode([col, "time_step"]) From 1f6b36e97bd8a8ff873e6a78689064bb2d957d5c Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 2 Apr 2023 15:39:10 +0200 Subject: [PATCH 175/355] Update version number and add whats new --- doc/conf.py | 2 +- doc/whatsnew.rst | 1 + doc/whatsnew/v0-2-1.rst | 2 +- setup.py | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 1b6abf3ff..67e7741a2 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -153,7 +153,7 @@ def setup(sphinx): # built documents. # # The short X.Y version. -version = "0.2.0" +version = "0.2.1" # The full version, including alpha/beta/rc tags. release = version diff --git a/doc/whatsnew.rst b/doc/whatsnew.rst index cc3471a19..48f93776e 100644 --- a/doc/whatsnew.rst +++ b/doc/whatsnew.rst @@ -8,6 +8,7 @@ Changelog for each release. :local: :backlinks: top +.. include:: whatsnew/v0-2-1.rst .. include:: whatsnew/v0-2-0.rst .. include:: whatsnew/v0-1-1.rst .. include:: whatsnew/v0-1-0.rst diff --git a/doc/whatsnew/v0-2-1.rst b/doc/whatsnew/v0-2-1.rst index 76386724b..4a4d5b787 100644 --- a/doc/whatsnew/v0-2-1.rst +++ b/doc/whatsnew/v0-2-1.rst @@ -1,7 +1,7 @@ Release v0.2.1 ================ -Release date: , +Release date: April 2, 2023 Changes ------- diff --git a/setup.py b/setup.py index cedd26fc8..581e7b5f6 100644 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ def read(fname): setup( name="eDisGo", - version="0.2.1dev", + version="0.2.1", packages=find_packages(), url="https://github.com/openego/eDisGo", license="GNU Affero General Public License v3.0", From 2b74c345ac73e7924685b26f98f1aa058b721ae0 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 2 Apr 2023 16:37:22 +0200 Subject: [PATCH 176/355] Update version number --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 581e7b5f6..2c4322c31 100644 --- a/setup.py +++ b/setup.py @@ -78,7 +78,7 @@ def read(fname): setup( name="eDisGo", - version="0.2.1", + version="0.3.0dev", packages=find_packages(), url="https://github.com/openego/eDisGo", license="GNU Affero General Public License v3.0", From cc23576ddd7f6625f490ef03cec367bf85f7ff5e Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 2 Apr 2023 16:42:02 +0200 Subject: [PATCH 177/355] Bugfix timeindex parameter was missing --- edisgo/edisgo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 8aade3acf..a68598ee2 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1976,7 +1976,7 @@ def apply_heat_pump_operating_strategy( """ hp_operating_strategy(self, strategy=strategy, heat_pump_names=heat_pump_names) - def import_dsm(self, engine: Engine, scenario: str): + def import_dsm(self, scenario: str, engine: Engine, timeindex=None): """ Gets industrial and CTS DSM profiles from the `OpenEnergy DataBase `_. @@ -2009,7 +2009,7 @@ def import_dsm(self, engine: Engine, scenario: str): """ dsm_profiles = dsm_import.oedb( - edisgo_obj=self, engine=engine, scenario=scenario + edisgo_obj=self, scenario=scenario, engine=engine, timeindex=timeindex ) self.dsm.p_min = dsm_profiles["p_min"] self.dsm.p_max = dsm_profiles["p_max"] From 000a3e1cdacd4bf4a79a1c9c5b158ecc676e6af8 Mon Sep 17 00:00:00 2001 From: mltja Date: Mon, 3 Apr 2023 12:05:37 +0200 Subject: [PATCH 178/355] Use catch_convergence in every reinforcement of the enhanced reinforcement_wrapper --- edisgo/flex_opt/reinforce_grid.py | 6 ++---- tests/test_edisgo.py | 11 ++++++----- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 44a5cbb4e..bd05c3a57 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -765,7 +765,7 @@ def enhanced_reinforce_wrapper( """ try: logger.info("Try initial reinforcement.") - edisgo_obj.reinforce(mode=None, **kwargs) + edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) logger.info("Initial succeeded.") except: # noqa: E722 logger.info("Initial failed.") @@ -829,9 +829,7 @@ def enhanced_reinforce_wrapper( f"Aggregate to station for {lv_grid} successful." ) except: # noqa: E722 - logger.info( - f"Aggregate to station for {lv_grid} failed." - ) + logger.info(f"Aggregate to station for {lv_grid} failed.") try: edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 7f3d67ea1..ffd60070c 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -491,16 +491,17 @@ def test_enhanced_reinforce(self): self.setup_edisgo_object() self.setup_worst_case_time_series() self.edisgo.timeseries.scale_timeseries( - p_scaling_factor=10, q_scaling_factor=10 + p_scaling_factor=100, q_scaling_factor=100 ) edisgo_obj = copy.deepcopy(self.edisgo) - edisgo_obj = enhanced_reinforce_wrapper(edisgo_obj) + edisgo_obj = enhanced_reinforce_wrapper( + edisgo_obj, activate_cost_results_disturbing_mode=True + ) results = edisgo_obj.results - assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 108 - assert len(results.equipment_changes) == 162 + assert len(results.grid_expansion_costs) == 840 + assert len(results.equipment_changes) == 1388 assert results.v_res.shape == (4, 142) def test_add_component(self, caplog): From 654b9332319c9223ba5dfa1de7c5d07e1fd06ddd Mon Sep 17 00:00:00 2001 From: mltja Date: Mon, 3 Apr 2023 13:08:00 +0200 Subject: [PATCH 179/355] Fix tests --- .../test_spatial_complexity_reduction.py | 39 ++++++++++--------- 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index 55cb11d19..c843c78ae 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -36,8 +36,11 @@ def test_busmap_df(self, test_edisgo_obj): return busmap_df @pytest.mark.parametrize( - "mode,cluster_area,reduction_factor,reduction_factor_not_focused," - "test_exception,expected_hash", + "mode,cluster_area," + "reduction_factor," + "reduction_factor_not_focused," + "test_exception," + "n_new_buses", [ # Cluster area: 'grid' ( @@ -46,7 +49,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.1, False, does_not_raise(), - "a840aec08914448c907a482834094d34", + 19, ), ( "kmeansdijkstra", @@ -54,7 +57,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.1, False, does_not_raise(), - "cd0a4ce9ca72e55bfe7353ed32d5af52", + 19, ), ( "kmeans", @@ -62,7 +65,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.5, 0, does_not_raise(), - "3f4b25a25f5ca1c12620e92d855dae0d", + 76, ), ( "kmeans", @@ -70,7 +73,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.5, 0.1, does_not_raise(), - "3f4b25a25f5ca1c12620e92d855dae0d", + 76, ), # Cluster area: 'feeder' ( @@ -79,7 +82,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.1, False, does_not_raise(), - "f0126014e807b2ad6776eee6d458cdc1", + 40, ), ( "kmeansdijkstra", @@ -87,7 +90,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.1, False, does_not_raise(), - "9bcb23df6884cd2b6828676e7d67c525", + 39, ), ( "kmeans", @@ -95,7 +98,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.5, 0, does_not_raise(), - "02b909b963330d31a8aeb14a23af4291", + 23, ), ( "kmeans", @@ -103,7 +106,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.5, 0.1, does_not_raise(), - "193713ca9137f68e8eb93f0e369a21dc", + 46, ), # Cluster area: 'main_feeder' ( @@ -112,7 +115,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.1, False, does_not_raise(), - "fadcdd5531d6f846c3ece76669fecedf", + 36, ), ( "kmeansdijkstra", @@ -120,7 +123,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.1, False, does_not_raise(), - "2f45064275a601a5f4489104521b3d58", + 36, ), ( "aggregate_to_main_feeder", @@ -128,7 +131,7 @@ def test_busmap_df(self, test_edisgo_obj): None, False, does_not_raise(), - "16a375d48227b6af7c716ae5791ec419", + 105, ), ( "equidistant_nodes", @@ -136,7 +139,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.1, False, does_not_raise(), - "3b2c4de8fabe724d551b11b86bffee90", + 36, ), ( "kmeans", @@ -144,7 +147,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.5, 0, does_not_raise(), - "c1e684b0cb671cf2d69de2e765fe5117", + 20, ), ( "kmeans", @@ -152,7 +155,7 @@ def test_busmap_df(self, test_edisgo_obj): 0.5, 0.1, does_not_raise(), - "3d0e7afcb3b9c8e5c9d0838d68113bf3", + 41, ), # Test raising exceptions ("kmeans", "grid", 0, False, pytest.raises(ValueError), None), @@ -170,7 +173,7 @@ def test_make_busmap( reduction_factor, reduction_factor_not_focused, test_exception, - expected_hash, + n_new_buses, ): edisgo_root = copy.deepcopy(test_edisgo_obj) @@ -183,7 +186,7 @@ def test_make_busmap( reduction_factor_not_focused=reduction_factor_not_focused, ) # Check for deterministic behaviour. - assert hash_df(busmap_df) == expected_hash + assert len(set(busmap_df["new_bus"].to_list())) == n_new_buses @pytest.mark.parametrize( "cluster_area,grid,expected_hash", From 567b2cee5a653b757b23063607ab5cb57654424a Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 3 Apr 2023 16:52:38 +0200 Subject: [PATCH 180/355] Add notes to DSM and generator import to make aware of data difference in egon_data and ding0 --- edisgo/io/dsm_import.py | 10 ++++++++++ edisgo/io/generators_import.py | 9 +++++++++ 2 files changed, 19 insertions(+) diff --git a/edisgo/io/dsm_import.py b/edisgo/io/dsm_import.py index 71bc64ad4..fac856d9f 100644 --- a/edisgo/io/dsm_import.py +++ b/edisgo/io/dsm_import.py @@ -215,6 +215,16 @@ def get_profile_cts( hourly resolution in MW. Index contains hour of the year (from 0 to 8759) and column names are site ID as integer. + Notes + ------ + Be aware, that in this function the DSM time series are disaggregated to all CTS + loads in the grid. In some cases, this can lead to an over- or underestimation of + the DSM potential, as in egon_data buildings are mapped to a grid based on the + zensus cell they are in whereas in ding0 buildings are mapped to a grid based on + the geolocation. As it can happen that buildings lie outside an MV grid but within + a zensus cell that is assigned to that MV grid, they are mapped differently in + egon_data and ding0. + """ saio.register_schema("demand", engine) from saio.demand import egon_etrago_electricity_cts_dsm_timeseries diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 70e9093a2..0c2dc2d57 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -817,6 +817,15 @@ def oedb( engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. + Notes + ------ + Note, that PV rooftop plants are queried using the building IDs not the MV grid ID + as in egon_data buildings are mapped to a grid based on the + zensus cell they are in whereas in ding0 buildings are mapped to a grid based on + the geolocation. As it can happen that buildings lie outside an MV grid but within + a zensus cell that is assigned to that MV grid, they are mapped differently in + egon_data and ding0, and it is therefore better to query using the building IDs. + """ def _get_egon_power_plants(): From f3a14f502c9053415eaab63f815ddc3bcc860706 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 3 Apr 2023 16:54:03 +0200 Subject: [PATCH 181/355] Add function to iterate over grid IDs of CTS buildings due to data difference in egon_data and ding0 --- edisgo/io/timeseries_import.py | 74 ++++++++++++++++++++++++++++-- tests/io/test_timeseries_import.py | 24 +++++++++- 2 files changed, 92 insertions(+), 6 deletions(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 634426c7c..ea951fc68 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -437,7 +437,7 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): building_ids, scenario, engine ) cts_profiles_df = get_cts_profiles_per_building( - edisgo_obj.topology.id, scenario, "heat", engine + edisgo_obj, scenario, "heat", engine ) # drop CTS profiles for buildings without a heat pump buildings_no_hp = [_ for _ in cts_profiles_df.columns if _ not in building_ids] @@ -575,7 +575,7 @@ def electricity_demand_oedb( cts_building_ids = cts_loads.building_id.dropna().unique() if len(cts_building_ids) > 0: cts_profiles_df = get_cts_profiles_per_building( - edisgo_obj.topology.id, scenario, "electricity", engine + edisgo_obj, scenario, "electricity", engine ) drop_buildings = [ _ for _ in cts_profiles_df.columns if _ not in cts_building_ids @@ -932,14 +932,78 @@ def get_district_heating_heat_demand_profiles(district_heating_ids, scenario, en return df.astype("float") -def get_cts_profiles_per_building( +def get_cts_profiles_per_building(edisgo_obj, scenario, sector, engine): + """ + Gets CTS heat demand profiles per CTS building for all CTS buildings in MV grid. + + This function is a helper function that should not be but is necessary, as in + egon_data buildings are mapped to a grid based on the zensus cell they are in + whereas in ding0 buildings are mapped to a grid based on the geolocation. As it can + happen that buildings lie outside an MV grid but within a zensus cell that is + assigned to that MV grid, they are mapped differently in egon_data and ding0. + This function therefore checks, if there are CTS loads with other grid IDs and if + so, gets profiles for other grid IDs (by calling + :func:`~.io.timeseries_import.get_cts_profiles_per_grid` with different grid IDs) + in order to obtain a demand profile for all CTS loads. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + scenario : str + Scenario for which to retrieve demand data. Possible options + are 'eGon2035' and 'eGon100RE'. + sector : str + Demand sector for which profile is calculated: "electricity" or "heat" + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + Returns + ------- + :pandas:`pandas.DataFrame` + Dataframe with CTS demand profiles per building for one year in an + hourly resolution in MW. Index contains hour of the year (from 0 to 8759) and + column names are building ID as integer. + + """ + saio.register_schema("boundaries", engine) + from saio.boundaries import egon_map_zensus_mvgd_buildings + + # get MV grid IDs of CTS loads + cts_loads = edisgo_obj.topology.loads_df[ + (edisgo_obj.topology.loads_df.type == "conventional_load") + & (edisgo_obj.topology.loads_df.sector == "cts") + ] + cts_building_ids = cts_loads.building_id.dropna().unique() + with session_scope_egon_data(engine) as session: + query = session.query( + egon_map_zensus_mvgd_buildings.building_id, + egon_map_zensus_mvgd_buildings.bus_id, + ).filter( + egon_map_zensus_mvgd_buildings.building_id.in_(cts_building_ids), + ) + df = pd.read_sql(query.statement, engine, index_col="building_id") + + # iterate over grid IDs + profiles_df = pd.DataFrame() + for bus_id in df.bus_id.unique(): + profiles_grid_df = get_cts_profiles_per_grid( + bus_id=bus_id, scenario=scenario, sector=sector, engine=engine + ) + profiles_df = pd.concat([profiles_df, profiles_grid_df], axis=1) + + # filter CTS loads in grid + return profiles_df.loc[:, cts_building_ids] + + +def get_cts_profiles_per_grid( bus_id, scenario, sector, engine, ): """ - Gets CTS heat demand profiles per building for all buildings in MV grid. + Gets CTS heat or electricity demand profiles per building for all buildings in the + given MV grid. Parameters ---------- @@ -951,7 +1015,7 @@ def get_cts_profiles_per_building( sector : str Demand sector for which profile is calculated: "electricity" or "heat" engine : :sqlalchemy:`sqlalchemy.Engine` - Database engine. + Database engine. Returns ------- diff --git a/tests/io/test_timeseries_import.py b/tests/io/test_timeseries_import.py index 133b0db6c..4c25ce3fe 100644 --- a/tests/io/test_timeseries_import.py +++ b/tests/io/test_timeseries_import.py @@ -228,11 +228,33 @@ def test_get_district_heating_heat_demand_profiles(self): @pytest.mark.local def test_get_cts_profiles_per_building(self): + edisgo_object = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False + ) + cts_loads = edisgo_object.topology.loads_df[ + edisgo_object.topology.loads_df.sector == "cts" + ] + df = timeseries_import.get_cts_profiles_per_building( + edisgo_object, "eGon2035", "electricity", pytest.engine + ) + assert df.shape == (8760, len(cts_loads)) + + # manipulate CTS load to lie within another grid + edisgo_object.topology.loads_df.at[cts_loads.index[0], "building_id"] = 5 df = timeseries_import.get_cts_profiles_per_building( + edisgo_object, "eGon2035", "electricity", pytest.engine + ) + assert df.shape == (8760, len(cts_loads)) + # ToDo add further tests + + @pytest.mark.local + def test_get_cts_profiles_per_grid(self): + + df = timeseries_import.get_cts_profiles_per_grid( 33535, "eGon2035", "heat", pytest.engine ) assert df.shape == (8760, 85) - df = timeseries_import.get_cts_profiles_per_building( + df = timeseries_import.get_cts_profiles_per_grid( 33535, "eGon2035", "electricity", pytest.engine ) assert df.shape == (8760, 85) From 3094180d303f9ed0a9be1c8b953c565cbcbdd571 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 3 Apr 2023 20:39:13 +0200 Subject: [PATCH 182/355] Bug fix source ID can only be unwrapped if dataframe not empty --- edisgo/io/generators_import.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 0c2dc2d57..51c22fe5c 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -862,14 +862,15 @@ def _get_egon_power_plants(): subtype=power_plants_gdf["type"].map(mapping) ) # unwrap source ID - power_plants_gdf["source_id"] = power_plants_gdf.apply( - lambda _: ( - list(_["source_id"].values())[0] - if isinstance(_["source_id"], dict) - else None - ), - axis=1, - ) + if not power_plants_gdf.empty: + power_plants_gdf["source_id"] = power_plants_gdf.apply( + lambda _: ( + list(_["source_id"].values())[0] + if isinstance(_["source_id"], dict) + else None + ), + axis=1, + ) return power_plants_gdf def _get_egon_pv_rooftop(): From 69e0f83632e177d3f5d49425f7c2e94b596bb66d Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 3 Apr 2023 20:39:56 +0200 Subject: [PATCH 183/355] Add removal of power plants from egon data whose capacity is unrealistic for MV integration --- edisgo/io/generators_import.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 51c22fe5c..86f6911e7 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -945,6 +945,33 @@ def _get_egon_chp_plants(): power_plants_gdf = _get_egon_power_plants() chp_gdf = _get_egon_chp_plants() + # sanity check - kick out generators that are too large + p_nom_upper = edisgo_object.config["grid_connection"]["upper_limit_voltage_level_4"] + drop_ind = pv_rooftop_df[pv_rooftop_df.p_nom > p_nom_upper].index + if len(drop_ind) > 0: + logger.warning( + f"There are {len(drop_ind)} PV rooftop plants with a nominal capacity " + f"larger {p_nom_upper} MW. Connecting them to the MV is not valid, " + f"wherefore they are dropped." + ) + pv_rooftop_df.drop(index=drop_ind, inplace=True) + drop_ind = power_plants_gdf[power_plants_gdf.p_nom > p_nom_upper].index + if len(drop_ind) > 0: + logger.warning( + f"There are {len(drop_ind)} power plants with a nominal capacity " + f"larger {p_nom_upper} MW. Connecting them to the MV is not valid, " + f"wherefore they are dropped." + ) + power_plants_gdf.drop(index=drop_ind, inplace=True) + drop_ind = chp_gdf[chp_gdf.p_nom > p_nom_upper].index + if len(drop_ind) > 0: + logger.warning( + f"There are {len(drop_ind)} CHP plants with a nominal capacity " + f"larger {p_nom_upper} MW. Connecting them to the MV is not valid, " + f"wherefore they are dropped." + ) + chp_gdf.drop(index=drop_ind, inplace=True) + # determine number of generators and installed capacity in future scenario # for validation of grid integration total_p_nom_scenario = ( From 2f7e21ced3b19b7db24e718db731a703b01a5025 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 3 Apr 2023 20:40:17 +0200 Subject: [PATCH 184/355] Bug fix set CRS of geodataframe --- edisgo/io/heat_pump_import.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index 50e236bcf..65dc3586a 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -126,8 +126,13 @@ def _get_central_heat_pumps(): ), ) ) - - df = gpd.read_postgis(query.statement, engine, index_col=None) + srid = db.get_srid_of_db_table(session, egon_district_heating.geometry) + df = gpd.read_postgis( + query.statement, + engine, + index_col=None, + crs=f"EPSG:{srid}", + ) # transform to same SRID as MV grid district geometry return df.to_crs(mv_grid_geom_srid) From 93e64c9d1d7486ddadc8a269fa71e09eee32c7b4 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 3 Apr 2023 20:40:42 +0200 Subject: [PATCH 185/355] Bug fix check if district_heating_id column exists --- edisgo/io/timeseries_import.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index ea951fc68..917b8b5bd 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -462,7 +462,10 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): individual_heating_df = pd.DataFrame(index=timeindex_full) # get district heating profiles from oedb - dh_ids = hp_df.district_heating_id.dropna().unique() + if "district_heating_id" in hp_df.columns: + dh_ids = hp_df.district_heating_id.dropna().unique() + else: + dh_ids = [] if len(dh_ids) > 0: dh_profile_df = get_district_heating_heat_demand_profiles( dh_ids, scenario, engine From b2f01b12f3c807c31bbb69be5161084bf57d81be Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 3 Apr 2023 20:42:36 +0200 Subject: [PATCH 186/355] Bug fix don't groupy list to avoid multiindex columns --- edisgo/io/timeseries_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 917b8b5bd..6c9bcd6ba 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -1319,7 +1319,7 @@ def _get_profiles(profile_ids): # calculate demand profile per building ts_df = pd.DataFrame() - for building_id, df in profile_ids_buildings.groupby(by=["building_id"]): + for building_id, df in profile_ids_buildings.groupby(by="building_id"): load_ts_building = ( profiles_df.loc[:, df["profile_id"]].sum(axis=1) * df["factor"].iloc[0] From 442c4bf54140ecf2273fbbd1658b977f2a66bede Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 4 Apr 2023 10:24:07 +0200 Subject: [PATCH 187/355] Only resample data in TimeSeries object --- edisgo/flex_opt/charging_strategies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edisgo/flex_opt/charging_strategies.py b/edisgo/flex_opt/charging_strategies.py index b792242c8..80a397241 100644 --- a/edisgo/flex_opt/charging_strategies.py +++ b/edisgo/flex_opt/charging_strategies.py @@ -128,7 +128,7 @@ def charging_strategy( f"to the original frequency of the edisgo time series data." ) - edisgo_obj.resample_timeseries(freq=simbev_timedelta) + edisgo_obj.timeseries.resample_timeseries(freq=simbev_timedelta) if strategy == "dumb": # "dumb" charging @@ -309,7 +309,7 @@ def charging_strategy( raise ValueError(f"Strategy {strategy} has not yet been implemented.") if resample: - edisgo_obj.resample_timeseries(freq=edisgo_timedelta) + edisgo_obj.timeseries.resample_timeseries(freq=edisgo_timedelta) # set reactive power time series to 0 Mvar # fmt: off From 6aca88e089e3e4327fb8f3fda5fa23f2f33fecbe Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 4 Apr 2023 10:24:53 +0200 Subject: [PATCH 188/355] Adapt to new pandas version --- edisgo/network/timeseries.py | 2 +- tests/io/test_pypsa_io.py | 2 +- tests/network/test_electromobility.py | 2 +- tests/network/test_timeseries.py | 6 +----- tests/test_edisgo.py | 2 +- 5 files changed, 5 insertions(+), 9 deletions(-) diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index ce3debad9..90633f2fa 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -2190,7 +2190,7 @@ def resample_timeseries( self.timeindex[0], self.timeindex[-1] + freq_orig, freq=freq, - closed="left", + inclusive="left", ) else: # down-sampling index = pd.date_range( diff --git a/tests/io/test_pypsa_io.py b/tests/io/test_pypsa_io.py index 297010b3f..14246f3e9 100644 --- a/tests/io/test_pypsa_io.py +++ b/tests/io/test_pypsa_io.py @@ -2,7 +2,7 @@ import pandas as pd import pytest -from pandas.util.testing import assert_frame_equal +from pandas.testing import assert_frame_equal from edisgo import EDisGo from edisgo.io import pypsa_io diff --git a/tests/network/test_electromobility.py b/tests/network/test_electromobility.py index d81f7e22b..9462eec27 100644 --- a/tests/network/test_electromobility.py +++ b/tests/network/test_electromobility.py @@ -8,7 +8,7 @@ import pandas as pd import pytest -from pandas.util.testing import assert_frame_equal +from pandas.testing import assert_frame_equal from edisgo.edisgo import EDisGo from edisgo.io import electromobility_import diff --git a/tests/network/test_timeseries.py b/tests/network/test_timeseries.py index e785c388f..276c2ac73 100644 --- a/tests/network/test_timeseries.py +++ b/tests/network/test_timeseries.py @@ -8,11 +8,7 @@ import pandas as pd import pytest -from pandas.util.testing import ( - assert_frame_equal, - assert_index_equal, - assert_series_equal, -) +from pandas.testing import assert_frame_equal, assert_index_equal, assert_series_equal from edisgo import EDisGo from edisgo.network import timeseries diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 4c5ee592f..aa6cafa3c 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -11,7 +11,7 @@ import pytest from matplotlib import pyplot as plt -from pandas.util.testing import assert_frame_equal, assert_series_equal +from pandas.testing import assert_frame_equal, assert_series_equal from shapely.geometry import Point from edisgo import EDisGo From 35c863391b2ff220ea0b3f300d62f178666f870e Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 4 Apr 2023 10:25:08 +0200 Subject: [PATCH 189/355] Limit pandas version for now --- rtd_requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 8e26abbe2..68dfad731 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -8,7 +8,7 @@ jupyter_dash matplotlib >= 3.3.0 multiprocess networkx >= 2.5.0 -pandas >= 1.2.0 +pandas >= 1.2.0, < 2.0.0 plotly pyomo >= 6.0 pypower diff --git a/setup.py b/setup.py index 213f6cd03..8d153d2f3 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def read(fname): "matplotlib >= 3.3.0", "multiprocess", "networkx >= 2.5.0", - "pandas >= 1.2.0", + "pandas >= 1.2.0, < 2.0.0", "plotly", "pydot", "pygeos", From ce6989e419ab84697741254f7555c49b78d3bed9 Mon Sep 17 00:00:00 2001 From: mltja Date: Tue, 4 Apr 2023 11:07:03 +0200 Subject: [PATCH 190/355] Add the automatic applying of pseudo coordinates and change some tests --- edisgo/tools/spatial_complexity_reduction.py | 13 +++++++-- .../test_spatial_complexity_reduction.py | 28 +++++++++---------- 2 files changed, 24 insertions(+), 17 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 1e38f0af5..ce607a801 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -19,6 +19,7 @@ from edisgo.flex_opt import check_tech_constraints as checks from edisgo.network import timeseries from edisgo.network.grids import Grid +from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates logger = logging.getLogger(__name__) @@ -1879,17 +1880,25 @@ def spatial_complexity_reduction( cluster_area: str = "feeder", reduction_factor: float = 0.5, reduction_factor_not_focused: Union[float, bool] = 0.2, + apply_pseudo_coordinates: bool = True, ) -> Tuple[EDisGo, DataFrame, DataFrame]: """ Wrapper around the functions :func:`make_busmap` and :func:`reduce_edisgo ` look there for more information. + + Parameters + ---------- + apply_pseudo_coordinates : bool + If True Pseudo Coordinates are applied. The spatial complexity reduction method + is only tested for pseudo coordinates. """ edisgo_obj = copy.deepcopy(edisgo_root) - # edisgo_obj.results.equipment_changes = pd.DataFrame() + if apply_pseudo_coordinates: + edisgo_obj = make_pseudo_coordinates(edisgo_obj) busmap_df = make_busmap( - edisgo_root, + edisgo_obj, mode=mode, cluster_area=cluster_area, reduction_factor=reduction_factor, diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index c843c78ae..f9ed936fa 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -7,7 +7,6 @@ from edisgo import EDisGo from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates from edisgo.tools.spatial_complexity_reduction import ( - hash_df, make_busmap, make_grid_list, reduce_edisgo, @@ -189,17 +188,17 @@ def test_make_busmap( assert len(set(busmap_df["new_bus"].to_list())) == n_new_buses @pytest.mark.parametrize( - "cluster_area,grid,expected_hash", + "cluster_area,grid,n_buses", [ # Cluster area: 'grid' - ("grid", "MVGrid", "f7c55d5a0933816ce2ab5f439c8193fe"), - ("grid", "LVGrid", "fe5dd55a9bb4ed151c06841347cbc869"), + ("grid", "MVGrid", 7), + ("grid", "LVGrid", 6), # Cluster area: 'feeder' - ("feeder", "MVGrid", "d23665844d28241cca314f5d4045157d"), - ("feeder", "LVGrid", "f84068fe78e5ffeb2ffdce42e9f8762b"), + ("feeder", "MVGrid", 9), + ("feeder", "LVGrid", 8), # Cluster area: 'main_feeder' - ("main_feeder", "MVGrid", "56913cc22a534f5f8b150b42f389957e"), - ("main_feeder", "LVGrid", "9ce503e790b71ded6dbd30691580b646"), + ("main_feeder", "MVGrid", 7), + ("main_feeder", "LVGrid", 6), ], ) def test_make_busmap_for_only_one_grid( @@ -207,7 +206,7 @@ def test_make_busmap_for_only_one_grid( test_edisgo_obj, cluster_area, grid, - expected_hash, + n_buses, ): edisgo_root = copy.deepcopy(test_edisgo_obj) @@ -224,7 +223,7 @@ def test_make_busmap_for_only_one_grid( reduction_factor=0.2, ) # Check for deterministic behaviour. - assert hash_df(busmap_df) == expected_hash + assert len(set(busmap_df["new_bus"].to_list())) == n_buses @pytest.mark.parametrize( "line_naming_convention," @@ -232,7 +231,7 @@ def test_make_busmap_for_only_one_grid( "load_aggregation_mode, " "generator_aggregation_mode, " "n_loads, " - "n_generators,", + "n_generators", [ ("standard_lines", True, "bus", "bus", 27, 17), ("standard_lines", True, "sector", "type", 28, 18), @@ -302,9 +301,7 @@ def test_reduce_edisgo( assert timeseries.loads_reactive_power.shape[1] == n_loads assert timeseries.generators_active_power.shape[1] == n_generators assert timeseries.generators_reactive_power.shape[1] == n_generators - - # Check for deterministic behaviour. - assert hash_df(linemap_df) == "e6e50f9042722398e27488b22c9848df" + assert len(set(linemap_df["new_line_name"].to_list())) == 34 def test_spatial_complexity_reduction(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) @@ -317,7 +314,8 @@ def test_spatial_complexity_reduction(self, test_edisgo_obj): reduction_factor_not_focused=False, ) # Check for deterministic behaviour. - assert hash_df(busmap_df) == "ce1cf807409fe5e0e9abe3123a18791a" + assert len(set(busmap_df["new_bus"].to_list())) == 32 + assert len(set(linemap_df["new_line_name"].to_list())) == 23 # Check that edisgo_object can run power flow and reinforce edisgo_reduced.analyze() From f72c8d2b767fc77539dee647c7e3560dcd44a810 Mon Sep 17 00:00:00 2001 From: Maike Held Date: Tue, 4 Apr 2023 11:45:56 +0200 Subject: [PATCH 191/355] Minor bug fix in reinforce_grid.py boolean query of DataFrame throws error. Added ".empty" to DataFrame in boolean query --- edisgo/flex_opt/reinforce_grid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index c4ce33e59..2a0117404 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -356,7 +356,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_nodes: + if while_counter == max_while_iterations and crit_nodes.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, @@ -411,7 +411,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_stations: + if while_counter == max_while_iterations and crit_stations.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, @@ -465,7 +465,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_nodes: + if while_counter == max_while_iterations and crit_nodes.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, From ed72cd3c0bc6ccd6a103c1d0b84aec4d56bb5576 Mon Sep 17 00:00:00 2001 From: Maike Held Date: Tue, 4 Apr 2023 11:49:27 +0200 Subject: [PATCH 192/355] Revert "Minor bug fix in reinforce_grid.py" This reverts commit f72c8d2b767fc77539dee647c7e3560dcd44a810. --- edisgo/flex_opt/reinforce_grid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 2a0117404..c4ce33e59 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -356,7 +356,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_nodes.empty: + if while_counter == max_while_iterations and crit_nodes: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, @@ -411,7 +411,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_stations.empty: + if while_counter == max_while_iterations and crit_stations: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, @@ -465,7 +465,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_nodes.empty: + if while_counter == max_while_iterations and crit_nodes: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, From 9a33a8e08e583dcbdd21c189f693c5cf654952f6 Mon Sep 17 00:00:00 2001 From: Maike Held Date: Tue, 4 Apr 2023 11:52:56 +0200 Subject: [PATCH 193/355] Minor bug fix in reinforce_grid.py boolean query of DataFrame throws error. Added ".empty" to DataFrame in boolean query --- edisgo/flex_opt/reinforce_grid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index c4ce33e59..2a0117404 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -356,7 +356,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_nodes: + if while_counter == max_while_iterations and crit_nodes.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, @@ -411,7 +411,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_stations: + if while_counter == max_while_iterations and crit_stations.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, @@ -465,7 +465,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_nodes: + if while_counter == max_while_iterations and crit_nodes.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, From 0ae9dec9a47963c6268a424f5afac8924f61994c Mon Sep 17 00:00:00 2001 From: mltja Date: Tue, 4 Apr 2023 13:01:10 +0200 Subject: [PATCH 194/355] Add documentation of spatial complexity reduction to features_in_detail.rst --- doc/features_in_detail.rst | 87 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) diff --git a/doc/features_in_detail.rst b/doc/features_in_detail.rst index afff615be..a8a6510c8 100644 --- a/doc/features_in_detail.rst +++ b/doc/features_in_detail.rst @@ -343,8 +343,95 @@ over from the given storage operation. A more thorough documentation will follow soon. +Spatial complexity reduction +---------------------------- +A spatial complexity method is implemented. The method is based on the reduction of the number of nodes in the grid +through a spatial clustering. It is a two-step procedure. At first a Busmap is calculated and then according to +the Busmap the eDisGo object is reduced. Some parts of the methods are based on the spatial clustering of [PyPSA]_. + +There are different methods implemented to the creation of the Busmap for more details look into the documentation +of the function and into the thesis where the methods were implemented and tested [SCR]_. + +The easiest way is to run the complexity reduction with the following code. + +.. code-block:: python + + from edisgo.tools.spatial_complexity_reduction import spatial_complexity_reduction + + edisgo_reduced, busmap_df, linemap_df = spatial_complexity_reduction(edisgo_obj) + + +If you want more flexibility in using the complexity reduction, you can also run the functions manually. + +Important is that all grid buses have coordinates and the line length can be calculated through the Euclidean distance +and a detour factor. If the grids don't match these conditions, the complexity reduction might not work as expected. +But this is not a problem, you can calculate new coordinates with the function 'make_pseudo_coordinates'. +Then coordinates for the grids are calculated based on the tree/radial topology of the grid graph. + +The methods are selected by the 'mode' parameter. There are four methods implemented: 'kmeans', 'kmeansdijkstra', +'aggregate_to_main_feeder' and 'equidistant_nodes'. Every node of the grid is assigned to a new node with new +coordinates. + + * 'kmeans' - Assignment to cluster centers of the K-Means clustering. + * 'kmeansdijkstra' - Assignment to the nearest nodes of the cluster center through the distance in the graph, + for distance calculation, the Dijkstra algorithm is used. + * 'aggregate_to_main_feeder' - Assignment to the nearest node of the main feeder. + * 'equidistant_nodes' - Distribute nodes equidistant on the main feeder and then assign main feeder nodes, + to the new nodes. + +Different cluster areas can be selected. The cluster area is the area on which the clustering method is applied. +You can choose between: 'grid', 'feeder' and 'main_feeder'. The main feeder is defined as the longest path in +the feeder and is calculated with the method 'aggregate_to_main_feeder'. + +The reduction factor describes how great the reduction of nodes is. A small reduction factor leads to a big reduction +of the number of nodes and vice versa. + +.. math:: + n_buses = k_reduction \cdot n_buses_cluster_area + +Also, there is the possibility to reduce the number of nodes more in areas with no predicted reinforcement. +Therefore, you can choose a second reduction factor which is used on these areas. The areas which are not focused, are +the areas which don't have components with voltage and overloading problems for the worst case power flow. + +For the reduction of the grid graph, the function 'reduce_edisgo' is used. With this method, every line and all their +parameters are recalculated and sometimes lines are combined to a new line. This is the part where the magic of +reducing the grid object happens. For more information, read: [HoerschBrown]_ and [SCR]_. + +.. code-block:: python + + from edisgo.tools.spatial_complexity_reduction import make_busmap, reduce_edisgo + from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates + + # Applying of pseudo coordinates + edisgo_obj = make_pseudo_coordinates(edisgo_obj) + + # Calculation of the busmap + busmap_df = make_busmap( + edisgo_obj, + mode=mode, # 'kmeans' or 'kmeansdijkstra' or 'aggregate_to_main_feeder' or 'equidistant_nodes', + cluster_area=cluster_area, # 'grid' or 'feeder' or 'main_feeder' + reduction_factor=k_rf, # 0 < k_rf < 1 + reduction_factor_not_focused=k_rf_not_focused', # 0 <= k_rf_not_focused < 1 + ) + # Reduction of the EDisGo object + edisgo_reduced, linemap_df = reduce_edisgo(edisgo_obj, busmap_df) + +For more details read look into the documentation of the functions or read [SCR]_. + + References ---------- .. [DENA] A.C. Agricola et al.: *dena-Verteilnetzstudie: Ausbau- und Innovationsbedarf der Stromverteilnetze in Deutschland bis 2030*. 2012. + +.. [PyPSA] `PyPSA - Spatial Clustering Documentation + `_ + +.. [SCR] `Master Thesis - Malte Jahn - Analysis of the effects of spatial complexity reduction on Distribution + network expansion planning with flexibilities (written in German) + `_ + +.. [HoerschBrown] `Jonas Hörsch, Tom Brown: The role of spatial scale in joint optimisations of + generation and transmission for European highly renewable scenarios + `_ From e931dc711d3d13c78c93bbccf165fa7fa83c154f Mon Sep 17 00:00:00 2001 From: mltja Date: Tue, 4 Apr 2023 13:04:56 +0200 Subject: [PATCH 195/355] Small fix in docs --- doc/features_in_detail.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/features_in_detail.rst b/doc/features_in_detail.rst index a8a6510c8..5c0bd9a77 100644 --- a/doc/features_in_detail.rst +++ b/doc/features_in_detail.rst @@ -387,7 +387,7 @@ The reduction factor describes how great the reduction of nodes is. A small redu of the number of nodes and vice versa. .. math:: - n_buses = k_reduction \cdot n_buses_cluster_area + n\_buses = k\_reduction \cdot n\_buses\_cluster\_area Also, there is the possibility to reduce the number of nodes more in areas with no predicted reinforcement. Therefore, you can choose a second reduction factor which is used on these areas. The areas which are not focused, are From 49addacfc2c86a31ef693a319f422d5a1e9ee93b Mon Sep 17 00:00:00 2001 From: mltja Date: Tue, 4 Apr 2023 13:08:14 +0200 Subject: [PATCH 196/355] Small fix in docs --- doc/features_in_detail.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/features_in_detail.rst b/doc/features_in_detail.rst index 5c0bd9a77..358687d48 100644 --- a/doc/features_in_detail.rst +++ b/doc/features_in_detail.rst @@ -387,7 +387,7 @@ The reduction factor describes how great the reduction of nodes is. A small redu of the number of nodes and vice versa. .. math:: - n\_buses = k\_reduction \cdot n\_buses\_cluster\_area + n_\mathrm{buses} = k_\mathrm{reduction} \cdot n_\mathrm{buses cluster area} Also, there is the possibility to reduce the number of nodes more in areas with no predicted reinforcement. Therefore, you can choose a second reduction factor which is used on these areas. The areas which are not focused, are From 8d413413db5904e451a285d248ca703f5ebb2424 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 4 Apr 2023 14:28:09 +0200 Subject: [PATCH 197/355] Adapt documentation --- doc/features_in_detail.rst | 59 ++++++++++++++++++++------------------ 1 file changed, 31 insertions(+), 28 deletions(-) diff --git a/doc/features_in_detail.rst b/doc/features_in_detail.rst index 358687d48..9b391bbeb 100644 --- a/doc/features_in_detail.rst +++ b/doc/features_in_detail.rst @@ -345,79 +345,82 @@ A more thorough documentation will follow soon. Spatial complexity reduction ---------------------------- -A spatial complexity method is implemented. The method is based on the reduction of the number of nodes in the grid -through a spatial clustering. It is a two-step procedure. At first a Busmap is calculated and then according to -the Busmap the eDisGo object is reduced. Some parts of the methods are based on the spatial clustering of [PyPSA]_. +eDisGo offers several methods for spatial complexity reduction. The methods reduce the number of nodes in the grid +through a spatial clustering. For all methods it is a two-step procedure. At first, a busmap is determined, +mapping each bus in the original grid to a new bus in the clustered grid. Then, according to +the busmap, the eDisGo object is reduced. Some parts of the methods are based on the spatial clustering of [PyPSA]_. -There are different methods implemented to the creation of the Busmap for more details look into the documentation -of the function and into the thesis where the methods were implemented and tested [SCR]_. - -The easiest way is to run the complexity reduction with the following code. +You can apply the complexity reduction by calling the function +:py:func:`~edisgo.tools.spatial_complexity_reduction.spatial_complexity_reduction`: .. code-block:: python from edisgo.tools.spatial_complexity_reduction import spatial_complexity_reduction + # call spatial complexity reduction with default values edisgo_reduced, busmap_df, linemap_df = spatial_complexity_reduction(edisgo_obj) - -If you want more flexibility in using the complexity reduction, you can also run the functions manually. - Important is that all grid buses have coordinates and the line length can be calculated through the Euclidean distance -and a detour factor. If the grids don't match these conditions, the complexity reduction might not work as expected. -But this is not a problem, you can calculate new coordinates with the function 'make_pseudo_coordinates'. +and a detour factor. If the grids do not match these conditions, the complexity reduction might not work as expected. +If your grid does not have coordinates, you can calculate new coordinates by setting the parameter +'apply_pseudo_coordinates' to True (which is the default). Then coordinates for the grids are calculated based on the tree/radial topology of the grid graph. -The methods are selected by the 'mode' parameter. There are four methods implemented: 'kmeans', 'kmeansdijkstra', +The methods are selected through the 'mode' parameter. There are four methods implemented: 'kmeans', 'kmeansdijkstra', 'aggregate_to_main_feeder' and 'equidistant_nodes'. Every node of the grid is assigned to a new node with new coordinates. * 'kmeans' - Assignment to cluster centers of the K-Means clustering. - * 'kmeansdijkstra' - Assignment to the nearest nodes of the cluster center through the distance in the graph, - for distance calculation, the Dijkstra algorithm is used. + * 'kmeansdijkstra' - Assignment to the nearest nodes of the cluster center through the distance in the graph. + For distance calculation, the Dijkstra algorithm is used. * 'aggregate_to_main_feeder' - Assignment to the nearest node of the main feeder. - * 'equidistant_nodes' - Distribute nodes equidistant on the main feeder and then assign main feeder nodes, + * 'equidistant_nodes' - Distribute nodes equidistant on the main feeder and then assign main feeder nodes to the new nodes. -Different cluster areas can be selected. The cluster area is the area on which the clustering method is applied. +Different cluster areas can be selected through the parameter 'cluster_area'. +The cluster area is the area on which the clustering method is applied. You can choose between: 'grid', 'feeder' and 'main_feeder'. The main feeder is defined as the longest path in the feeder and is calculated with the method 'aggregate_to_main_feeder'. -The reduction factor describes how great the reduction of nodes is. A small reduction factor leads to a big reduction +The reduction factor describes how great the reduction of nodes is and can be set through the +parameter 'reduction_factor'. A small reduction factor leads to a big reduction of the number of nodes and vice versa. .. math:: n_\mathrm{buses} = k_\mathrm{reduction} \cdot n_\mathrm{buses cluster area} -Also, there is the possibility to reduce the number of nodes more in areas with no predicted reinforcement. -Therefore, you can choose a second reduction factor which is used on these areas. The areas which are not focused, are -the areas which don't have components with voltage and overloading problems for the worst case power flow. +Also, there is the possibility to reduce the number of nodes to a larger degree in areas with no predicted reinforcement +through the parameter 'reduction_factor_not_focused'. +The areas which are not focused, are +the areas that do not have components with voltage and overloading problems for the worst case power flow. -For the reduction of the grid graph, the function 'reduce_edisgo' is used. With this method, every line and all their +For the reduction of the grid graph, the function :py:func:`~edisgo.tools.spatial_complexity_reduction.reduce_edisgo` is used. +With this method, every line and all their parameters are recalculated and sometimes lines are combined to a new line. This is the part where the magic of reducing the grid object happens. For more information, read: [HoerschBrown]_ and [SCR]_. +If you want more flexibility in using the complexity reduction, you can also run the functions manually: + .. code-block:: python from edisgo.tools.spatial_complexity_reduction import make_busmap, reduce_edisgo from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates - # Applying of pseudo coordinates + # create pseudo coordinates edisgo_obj = make_pseudo_coordinates(edisgo_obj) - # Calculation of the busmap + # determine busmap busmap_df = make_busmap( edisgo_obj, - mode=mode, # 'kmeans' or 'kmeansdijkstra' or 'aggregate_to_main_feeder' or 'equidistant_nodes', + mode=mode, # 'kmeans', 'kmeansdijkstra', 'aggregate_to_main_feeder' or 'equidistant_nodes' cluster_area=cluster_area, # 'grid' or 'feeder' or 'main_feeder' reduction_factor=k_rf, # 0 < k_rf < 1 reduction_factor_not_focused=k_rf_not_focused', # 0 <= k_rf_not_focused < 1 ) - # Reduction of the EDisGo object + # reduce EDisGo object edisgo_reduced, linemap_df = reduce_edisgo(edisgo_obj, busmap_df) -For more details read look into the documentation of the functions or read [SCR]_. - +For more details see the API documentation or the thesis where the methods were implemented and tested [SCR]_. References ---------- From 566cf9748d52c647489e698f4a82c345cfc1233b Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 4 Apr 2023 14:29:27 +0200 Subject: [PATCH 198/355] Move to whatsnew 030 --- doc/whatsnew/v0-2-1.rst | 1 - doc/whatsnew/v0-3-0.rst | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/whatsnew/v0-2-1.rst b/doc/whatsnew/v0-2-1.rst index 34ffb2943..4a4d5b787 100644 --- a/doc/whatsnew/v0-2-1.rst +++ b/doc/whatsnew/v0-2-1.rst @@ -10,4 +10,3 @@ Changes * Added MV grid ID to logging output `#309 `_ * Added automatic link checking `#297 `_ * Bug fix `#346 `_ -* Add spatial complexity reduction methods `#343 `_ diff --git a/doc/whatsnew/v0-3-0.rst b/doc/whatsnew/v0-3-0.rst index a9edaffb6..1c1edd6b1 100644 --- a/doc/whatsnew/v0-3-0.rst +++ b/doc/whatsnew/v0-3-0.rst @@ -9,6 +9,7 @@ Changes * Added functionalities to obtain electromobility, DSM, storage and electricity timeseries data from oedb `#328 `_ * Added functionalities to obtain heat pump data from oedb `#324 `_ * Added functionality to resample and check integrity of flexibility bands `#341 `_ +* Added spatial complexity reduction methods `#343 `_ * Added function to sort buses in lines dataframe such that bus0 is always the upstream bus `#335 `_ * Changed to_pypsa function such that pypsa network can be build even though not all components have time series `#335 `_ * Added class holding data from overlying grid, such as curtailment requirements and From 4716754a3528456dcde7fe96141d0c43aec06d14 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 5 Apr 2023 08:23:55 +0200 Subject: [PATCH 199/355] Move to current whatsnew --- doc/whatsnew/v0-2-1.rst | 1 - doc/whatsnew/v0-3-0.rst | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/whatsnew/v0-2-1.rst b/doc/whatsnew/v0-2-1.rst index 615a06f62..4a4d5b787 100644 --- a/doc/whatsnew/v0-2-1.rst +++ b/doc/whatsnew/v0-2-1.rst @@ -10,4 +10,3 @@ Changes * Added MV grid ID to logging output `#309 `_ * Added automatic link checking `#297 `_ * Bug fix `#346 `_ -* Add background map to plots `#346 `_ diff --git a/doc/whatsnew/v0-3-0.rst b/doc/whatsnew/v0-3-0.rst index a9edaffb6..dd7bf86da 100644 --- a/doc/whatsnew/v0-3-0.rst +++ b/doc/whatsnew/v0-3-0.rst @@ -14,3 +14,4 @@ Changes * Added class holding data from overlying grid, such as curtailment requirements and conventional generator dispatch `#335 `_ * Added integrity check for very short lines `#335 `_ +* Add background map to plots `#346 `_ From e054c285d6c416dc6224176919690d3ea81f0d30 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 5 Apr 2023 08:37:08 +0200 Subject: [PATCH 200/355] Minor doc change --- edisgo/tools/plots.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/edisgo/tools/plots.py b/edisgo/tools/plots.py index 17875fe34..36834bc01 100644 --- a/edisgo/tools/plots.py +++ b/edisgo/tools/plots.py @@ -881,8 +881,7 @@ def color_map_color( Maximum value on color map cmap_name : str or list Name of color map to use, or the colormap - height : int - Height of the plot + Returns ------- str @@ -983,7 +982,7 @@ def plot_plotly( Only plot selected nodes. Default: False. height : int - Height of the plotly plot. + Height of the plotly plot in pixels. Returns ------- @@ -1531,7 +1530,7 @@ def plot_dash_app( eDisGo object names as keys. height : int - Height in pixels of the plotly plot. + Height of the plotly plot in pixels. debug : bool Debugging for the dash app: From 8fc07b435b6dd42ebc4460fa32f3aed2045547f0 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 5 Apr 2023 09:06:59 +0200 Subject: [PATCH 201/355] Bug fix --- edisgo/flex_opt/reinforce_grid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 71f26c708..7282ec466 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -356,7 +356,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_nodes: + if while_counter == max_while_iterations and crit_nodes.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, @@ -411,7 +411,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_stations: + if while_counter == max_while_iterations and crit_stations.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, @@ -465,7 +465,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed - if while_counter == max_while_iterations and crit_nodes: + if while_counter == max_while_iterations and crit_nodes.empty: edisgo_reinforce.results.unresolved_issues = pd.concat( [ edisgo_reinforce.results.unresolved_issues, From 69fee91386336550a13c6ae2ab59969eb7fa1445 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 5 Apr 2023 10:53:55 +0200 Subject: [PATCH 202/355] Bug fix --- edisgo/flex_opt/charging_strategies.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edisgo/flex_opt/charging_strategies.py b/edisgo/flex_opt/charging_strategies.py index 80a397241..275e9a033 100644 --- a/edisgo/flex_opt/charging_strategies.py +++ b/edisgo/flex_opt/charging_strategies.py @@ -128,7 +128,7 @@ def charging_strategy( f"to the original frequency of the edisgo time series data." ) - edisgo_obj.timeseries.resample_timeseries(freq=simbev_timedelta) + edisgo_obj.timeseries.resample(freq=simbev_timedelta) if strategy == "dumb": # "dumb" charging @@ -309,7 +309,7 @@ def charging_strategy( raise ValueError(f"Strategy {strategy} has not yet been implemented.") if resample: - edisgo_obj.timeseries.resample_timeseries(freq=edisgo_timedelta) + edisgo_obj.timeseries.resample(freq=edisgo_timedelta) # set reactive power time series to 0 Mvar # fmt: off From 1fc9261f65688a62bace2e456c56a1304eac7a62 Mon Sep 17 00:00:00 2001 From: mltja Date: Wed, 5 Apr 2023 11:14:26 +0200 Subject: [PATCH 203/355] Fix bugs - False scaling of the timeseries - KeyError when no converging timesteps in the catch_convergence reinforcement --- edisgo/flex_opt/reinforce_grid.py | 11 ++++++----- edisgo/network/timeseries.py | 2 +- tests/network/test_timeseries.py | 23 ++++++++++++++++++++++- tests/test_edisgo.py | 20 ++++++++------------ 4 files changed, 37 insertions(+), 19 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index bd05c3a57..cda5e433f 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -680,7 +680,7 @@ def reinforce(): iteration = 0 highest_converged_scaling_factor = 0 - if not fully_converged: + if fully_converged is False: # Find non converging timesteps logger.info("Find converging and non converging timesteps.") converging_timesteps, non_converging_timesteps = edisgo.analyze( @@ -691,10 +691,11 @@ def reinforce(): f"Following timesteps {non_converging_timesteps} " f"doesnt't converged." ) - if not converged: - logger.info("Reinforce only converged timesteps") - selected_timesteps = converging_timesteps - _, _ = reinforce() + if converged is False: + if not converging_timesteps.empty: + logger.info("Reinforce only converged timesteps") + selected_timesteps = converging_timesteps + _, _ = reinforce() logger.info("Reinforce only non converged timesteps") selected_timesteps = non_converging_timesteps diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index 54e322ac9..ca6dc98e4 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -2189,7 +2189,7 @@ def resample_timeseries( def scale_timeseries( self, p_scaling_factor: float = 1.0, q_scaling_factor: float = 1.0 ): - attributes_type = ["generators", "storage_units", "storage_units"] + attributes_type = ["generators", "loads", "storage_units"] power_types = { "active_power": p_scaling_factor, "reactive_power": q_scaling_factor, diff --git a/tests/network/test_timeseries.py b/tests/network/test_timeseries.py index 17046c1a2..4aeb133f8 100644 --- a/tests/network/test_timeseries.py +++ b/tests/network/test_timeseries.py @@ -2431,12 +2431,33 @@ def test_scale_timeseries(self): self.edisgo.set_time_series_worst_case_analysis() edisgo_scaled = copy.deepcopy(self.edisgo) edisgo_scaled.timeseries.scale_timeseries( - p_scaling_factor=0.5, q_scaling_factor=0.5 + p_scaling_factor=0.5, q_scaling_factor=0.4 ) + assert_frame_equal( edisgo_scaled.timeseries.generators_active_power, self.edisgo.timeseries.generators_active_power * 0.5, ) + assert_frame_equal( + edisgo_scaled.timeseries.generators_reactive_power, + self.edisgo.timeseries.generators_reactive_power * 0.4, + ) + assert_frame_equal( + edisgo_scaled.timeseries.loads_active_power, + self.edisgo.timeseries.loads_active_power * 0.5, + ) + assert_frame_equal( + edisgo_scaled.timeseries.loads_reactive_power, + self.edisgo.timeseries.loads_reactive_power * 0.4, + ) + assert_frame_equal( + edisgo_scaled.timeseries.storage_units_active_power, + self.edisgo.timeseries.storage_units_active_power * 0.5, + ) + assert_frame_equal( + edisgo_scaled.timeseries.storage_units_reactive_power, + self.edisgo.timeseries.storage_units_reactive_power * 0.4, + ) class TestTimeSeriesRaw: diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index ffd60070c..9f373edc6 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -452,26 +452,22 @@ def test_reinforce(self): def test_reinforce_catch_convergence(self): # ###################### test with catch convergence ########################## self.setup_worst_case_time_series() - self.edisgo.timeseries.scale_timeseries( - p_scaling_factor=10, q_scaling_factor=10 - ) + self.edisgo.timeseries.scale_timeseries(p_scaling_factor=5, q_scaling_factor=5) results = self.edisgo.reinforce( catch_convergence_problems=True, is_worst_case=False ) assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 109 - assert len(results.equipment_changes) == 186 + assert len(results.grid_expansion_costs) == 91 + assert len(results.equipment_changes) == 116 assert results.v_res.shape == (4, 142) # ############### test with catch convergence worst case false ################ self.setup_worst_case_time_series() - self.edisgo.timeseries.scale_timeseries( - p_scaling_factor=10, q_scaling_factor=10 - ) + self.edisgo.timeseries.scale_timeseries(p_scaling_factor=5, q_scaling_factor=5) results = self.edisgo.reinforce(catch_convergence_problems=True) assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 109 - assert len(results.equipment_changes) == 186 + assert len(results.grid_expansion_costs) == 91 + assert len(results.equipment_changes) == 116 assert results.v_res.shape == (4, 142) def test_reinforce_one_lv_grid(self): @@ -500,8 +496,8 @@ def test_enhanced_reinforce(self): results = edisgo_obj.results - assert len(results.grid_expansion_costs) == 840 - assert len(results.equipment_changes) == 1388 + assert len(results.grid_expansion_costs) == 154 + assert len(results.equipment_changes) == 338 assert results.v_res.shape == (4, 142) def test_add_component(self, caplog): From 75d29419f8a4fa8bce8be737aea210658341b474 Mon Sep 17 00:00:00 2001 From: mltja Date: Wed, 5 Apr 2023 12:01:04 +0200 Subject: [PATCH 204/355] Add docs to catch_convergence_reinforce_grid and remove arguments which were already in kwargs --- edisgo/edisgo.py | 1 - edisgo/flex_opt/reinforce_grid.py | 35 +++++++++++++++++++------------ 2 files changed, 22 insertions(+), 14 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index d0b692224..0b542c27f 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -939,7 +939,6 @@ def reinforce( Uses reinforcement strategy to reinforce not converging grid. Reinforces first with only converging timesteps. Reinforce again with at start not converging timesteps. If still not converging, scale timeseries. - To use method "is_worst_case" must be "False". Default: False lv_grid_id : str or int diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index cda5e433f..348b1ff71 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -626,24 +626,27 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): def catch_convergence_reinforce_grid( edisgo: EDisGo, - timesteps_pfa: str | pd.DatetimeIndex | pd.Timestamp | None = None, - copy_grid: bool = False, - max_while_iterations: int = 20, - combined_analysis: bool = False, - mode: str | None = None, - without_generator_import: bool = False, **kwargs, ) -> Results: + """ + Uses a reinforcement strategy to reinforce not converging grids. Reinforces + first with only converging timesteps. Reinforce again with at start not + converging timesteps. If still not converging, scale the timeseries iteratively. + + Parameters + ---------- + edisgo : :class:`~.EDisGo` + The eDisGo object + + kwargs: :obj:`dict` + See :func:`edisgo.flex_opt.reinforce_grid.reinforce_grid` + """ + def reinforce(): try: results = reinforce_grid( edisgo, - max_while_iterations=max_while_iterations, - copy_grid=copy_grid, timesteps_pfa=selected_timesteps, - combined_analysis=combined_analysis, - mode=mode, - without_generator_import=without_generator_import, **kwargs, ) converged = True @@ -661,17 +664,23 @@ def reinforce(): # Initial try logger.info("Start catch convergence reinforcement") logger.info("Initial reinforcement try.") + + # Get the timesteps from kwargs and then remove it to set it later manually + timesteps_pfa = kwargs.get("timesteps_pfa") + kwargs.pop("timesteps_pfa") selected_timesteps = timesteps_pfa + set_scaling_factor = 1.0 iteration = 0 - converged = True - fully_converged = True converged, results = reinforce() if converged is False: logger.info("Initial reinforcement doesn't converged.") fully_converged = False + else: + logger.info("Initial reinforcement converged.") + fully_converged = True set_scaling_factor = 1 initial_timerseries = copy.deepcopy(edisgo.timeseries) From 724c1838ce42d4e911edfd6b46eaae4cd31914fc Mon Sep 17 00:00:00 2001 From: mltja Date: Wed, 5 Apr 2023 15:10:52 +0200 Subject: [PATCH 205/355] In the catch convergence reinforcement scale the timeseries in the pypsa object not in the edisgo object --- edisgo/edisgo.py | 33 ++++++++++++++++++++++-------- edisgo/flex_opt/reinforce_grid.py | 34 +++++++++++++++++-------------- tests/test_edisgo.py | 21 +++++++++++-------- 3 files changed, 56 insertions(+), 32 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 0b542c27f..251dac446 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -733,6 +733,7 @@ def analyze( troubleshooting_mode: str | None = None, range_start: Number = 0.1, range_num: int = 10, + scale_timeseries: float | None = None, **kwargs, ): """ @@ -818,6 +819,10 @@ def analyze( troubleshooting_mode 'iteration'. Must be non-negative. Default: 10. + scale_timeseries : float or None, optional + Scales the timeseries in the pypsa object with the factor + 'scaling_timeseries'. + Other Parameters ----------------- kwargs : dict @@ -860,6 +865,19 @@ def _check_convergence(): ) return timesteps_converged, timesteps_not_converged + def _scale_timeseries(pypsa_network_copy, fraction): + # Scales the timeseries in the pypsa object + # Reduce power values of generators, loads and storages to fraction of + for obj1, obj2 in [ + (pypsa_network.generators_t, pypsa_network_copy.generators_t), + (pypsa_network.loads_t, pypsa_network_copy.loads_t), + (pypsa_network.storage_units_t, pypsa_network_copy.storage_units_t), + ]: + for attr in ["p_set", "q_set"]: + setattr(obj1, attr, getattr(obj2, attr) * fraction) + + return pypsa_network + if timesteps is None: timesteps = self.timeseries.timeindex # check if timesteps is array-like, otherwise convert to list @@ -868,6 +886,9 @@ def _check_convergence(): pypsa_network = self.to_pypsa(mode=mode, timesteps=timesteps, **kwargs) + if scale_timeseries: + pypsa_network = _scale_timeseries(pypsa_network, scale_timeseries) + if troubleshooting_mode == "lpf": # run linear power flow analysis pypsa_network.lpf() @@ -878,15 +899,7 @@ def _check_convergence(): elif troubleshooting_mode == "iteration": pypsa_network_copy = pypsa_network.copy() for fraction in np.linspace(range_start, 1, range_num): - # Reduce power values of generators, loads and storages to fraction of - # original value - for obj1, obj2 in [ - (pypsa_network.generators_t, pypsa_network_copy.generators_t), - (pypsa_network.loads_t, pypsa_network_copy.loads_t), - (pypsa_network.storage_units_t, pypsa_network_copy.storage_units_t), - ]: - for attr in ["p_set", "q_set"]: - setattr(obj1, attr, getattr(obj2, attr) * fraction) + pypsa_network = _scale_timeseries(pypsa_network_copy, fraction) # run power flow analysis pf_results = pypsa_network.pf(timesteps, use_seed=True) logging.warning( @@ -990,7 +1003,9 @@ def reinforce( setting_list = [{"mode": mode, "timesteps_pfa": timesteps_pfa}] run_analyze_at_the_end = False + logger.info(f"Run the following reinforcements: {setting_list=}") for setting in setting_list: + logger.info(f"Run the following reinforcement: {setting=}") if not catch_convergence_problems: reinforce_grid( edisgo_obj, diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 348b1ff71..e1f71b7ca 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -647,6 +647,7 @@ def reinforce(): results = reinforce_grid( edisgo, timesteps_pfa=selected_timesteps, + scale_timeseries=set_scaling_factor, **kwargs, ) converged = True @@ -682,7 +683,7 @@ def reinforce(): logger.info("Initial reinforcement converged.") fully_converged = True - set_scaling_factor = 1 + set_scaling_factor = 1.0 initial_timerseries = copy.deepcopy(edisgo.timeseries) minimal_scaling_factor = 0.05 max_iterations = 10 @@ -692,12 +693,21 @@ def reinforce(): if fully_converged is False: # Find non converging timesteps logger.info("Find converging and non converging timesteps.") + if kwargs.get("mode", None) == "lv" and kwargs.get("lv_grid_id", None): + analyze_mode = "lv" + elif kwargs.get("mode", None) == "lv": + analyze_mode = None + else: + analyze_mode = kwargs.get("mode", None) + + kwargs_analyze = kwargs + kwargs["mode"] = analyze_mode converging_timesteps, non_converging_timesteps = edisgo.analyze( - timesteps=timesteps_pfa, raise_not_converged=False + timesteps=timesteps_pfa, raise_not_converged=False, **kwargs_analyze ) - logger.debug(f"Following timesteps {converging_timesteps} converged.") - logger.debug( - f"Following timesteps {non_converging_timesteps} " f"doesnt't converged." + logger.info(f"Following timesteps {converging_timesteps} converged.") + logger.info( + f"Following timesteps {non_converging_timesteps} doesnt't converged." ) if converged is False: @@ -729,11 +739,6 @@ def reinforce(): (set_scaling_factor - highest_converged_scaling_factor) * 0.25 ) + highest_converged_scaling_factor - edisgo.timeseries = copy.deepcopy(initial_timerseries) - edisgo.timeseries.scale_timeseries( - p_scaling_factor=set_scaling_factor, - q_scaling_factor=set_scaling_factor, - ) logger.info(f"Try reinforce with {set_scaling_factor=} at {iteration=}") converged, results = reinforce() if converged is False and iteration == max_iterations: @@ -774,12 +779,11 @@ def enhanced_reinforce_wrapper( """ try: - logger.info("Try initial reinforcement.") + logger.info("Try initial enhanced reinforcement.") edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) - logger.info("Initial succeeded.") + logger.info("Initial enhanced reinforcement succeeded.") except: # noqa: E722 - logger.info("Initial failed.") - + logger.info("Initial enhanced reinforcement failed.") logger.info("Try mode 'mv' reinforcement.") try: edisgo_obj.reinforce(mode="mv", catch_convergence_problems=True, **kwargs) @@ -829,7 +833,7 @@ def enhanced_reinforce_wrapper( except: # noqa: E722 logger.info(f"Changed lines mode 'lv' for {lv_grid} failed.") logger.warning( - f"Aggregate all lines to station bus in {lv_grid=}." + f"Aggregate all nodes to station bus in {lv_grid=}." ) try: edisgo_obj.topology.aggregate_lv_grid_buses_on_station( diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 9f373edc6..28b929449 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -452,22 +452,26 @@ def test_reinforce(self): def test_reinforce_catch_convergence(self): # ###################### test with catch convergence ########################## self.setup_worst_case_time_series() - self.edisgo.timeseries.scale_timeseries(p_scaling_factor=5, q_scaling_factor=5) + self.edisgo.timeseries.scale_timeseries( + p_scaling_factor=10, q_scaling_factor=10 + ) results = self.edisgo.reinforce( catch_convergence_problems=True, is_worst_case=False ) assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 91 - assert len(results.equipment_changes) == 116 + assert len(results.grid_expansion_costs) == 134 + assert len(results.equipment_changes) == 231 assert results.v_res.shape == (4, 142) # ############### test with catch convergence worst case false ################ self.setup_worst_case_time_series() - self.edisgo.timeseries.scale_timeseries(p_scaling_factor=5, q_scaling_factor=5) + self.edisgo.timeseries.scale_timeseries( + p_scaling_factor=10, q_scaling_factor=10 + ) results = self.edisgo.reinforce(catch_convergence_problems=True) assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 91 - assert len(results.equipment_changes) == 116 + assert len(results.grid_expansion_costs) == 134 + assert len(results.equipment_changes) == 231 assert results.v_res.shape == (4, 142) def test_reinforce_one_lv_grid(self): @@ -483,6 +487,7 @@ def test_reinforce_one_lv_grid(self): assert len(results.equipment_changes) == 6 assert results.v_res.shape == (4, 142) + @pytest.mark.slow def test_enhanced_reinforce(self): self.setup_edisgo_object() self.setup_worst_case_time_series() @@ -496,8 +501,8 @@ def test_enhanced_reinforce(self): results = edisgo_obj.results - assert len(results.grid_expansion_costs) == 154 - assert len(results.equipment_changes) == 338 + assert len(results.grid_expansion_costs) == 843 + assert len(results.equipment_changes) == 1802 assert results.v_res.shape == (4, 142) def test_add_component(self, caplog): From 9fc64db8d6956e9eaa651eca6ef7cda65883530a Mon Sep 17 00:00:00 2001 From: mltja Date: Wed, 5 Apr 2023 17:19:56 +0200 Subject: [PATCH 206/355] Add some tests and docstrings for the spatial complexity reduction --- edisgo/tools/spatial_complexity_reduction.py | 100 +++++++++++++++++- .../test_spatial_complexity_reduction.py | 36 +++++++ 2 files changed, 131 insertions(+), 5 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index ce607a801..5aad961cd 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -172,11 +172,13 @@ def rename_virtual_buses( # endregion -# region Preprocessing (Currently not tested and probably not working.) +# region Preprocessing def remove_one_meter_lines(edisgo_root: EDisGo) -> EDisGo: """ Remove one meter lines between the feeder and the buildings. This function is a relict from the legacy ding0 grids. + + Only one meter lines are dropped which have on one side only one neighbour. """ def apply_busmap_on_buses_df(series): @@ -266,14 +268,14 @@ def apply_busmap(series): generators_df = edisgo_obj.topology.generators_df.copy() generators_df = generators_df.apply(apply_busmap, axis="columns") - charging_points_df = edisgo_obj.topology.charging_points_df.copy() - charging_points_df = charging_points_df.apply(apply_busmap, axis="columns") + storage_units_df = edisgo_obj.topology.storage_units_df.copy() + storage_units_df = storage_units_df.apply(apply_busmap, axis="columns") edisgo_obj.topology.lines_df = lines_df edisgo_obj.topology.buses_df = buses_df edisgo_obj.topology.loads_df = loads_df edisgo_obj.topology.generators_df = generators_df - edisgo_obj.topology.charging_points_df = charging_points_df + edisgo_obj.topology.storage_units_df = storage_units_df logger.info("Finished in {}s".format(time() - start_time)) return edisgo_obj @@ -284,6 +286,8 @@ def remove_lines_under_one_meter(edisgo_root: EDisGo) -> EDisGo: Remove the lines under one meter. Sometimes these line are causing convergence problems of the power flow calculation or making problems with the clustering methods. + + Function might be a bit overengineered, so that the station bus is never dropped. """ def apply_busmap_on_buses_df(series): @@ -390,6 +394,10 @@ def apply_busmap(series): generators_df = generators_df.apply(apply_busmap, axis="columns") edisgo_obj.topology.generators_df = generators_df + storage_units_df = edisgo_obj.topology.storage_units_df.copy() + storage_units_df = storage_units_df.apply(apply_busmap, axis="columns") + edisgo_obj.topology.storage_units_df = storage_units_df + logger.info("Finished in {}s".format(time() - start_time)) return edisgo_obj @@ -1913,10 +1921,22 @@ def spatial_complexity_reduction( # endregion -# region Postprocessing/Evaluation (Currently not tested and probably not working.) +# region Postprocessing/Evaluation def save_results_reduced_to_min_max( edisgo_root: EDisGo, edisgo_object_name: str ) -> EDisGo: + """ + Save only the biggest and smallest value of the results DataFrames (v_res, i_res, + pfa_p, pfa_q), because they are most important for evaluating the violation of + operating limits. + + Parameters + ---------- + edisgo_root: :obj:`EDisGo` + EDisGo object to save. + edisgo_object_name: :obj:`str` + The path with name to save the object. + """ edisgo_obj = copy.deepcopy(edisgo_root) def min_max(df): @@ -1947,6 +1967,22 @@ def min_max(df): # Analyze results def length_analysis(edisgo_obj: EDisGo) -> Tuple[float, float, float]: + """Calculates the line length in the grid_districts and voltage levels. + + Parameters + ---------- + edisgo_obj: :obj:`EDisGo` + EDisGo object to analyze. + + Returns + ------- + length_total: :obj:`float` + Total line length of the grid district. + length_mv: :obj:`float` + Total line length of the MV grid. + length_lv: :obj:`float` + Total line length of all LV grids. + """ start_time = time() logger.info("Start - Length analysis") @@ -1966,6 +2002,33 @@ def length_analysis(edisgo_obj: EDisGo) -> Tuple[float, float, float]: def voltage_mapping( edisgo_root: EDisGo, edisgo_reduced: EDisGo, busmap_df: DataFrame, timestep: str ) -> Tuple[DataFrame, float]: + """ + Maps the results of the node voltages between the root object and the reduced + object. For the mapping the busmap is used. It is calculated the voltage + difference and the root-mean-square error. + + The calculation is performed for one timestep or the min or max values of the + node voltages. + + Parameters + ---------- + edisgo_root: :obj:`EDisGo` + Unreduced EDisGo object. + edisgo_reduced: :obj:`EDisGo` + Reduced EDisGo object. + busmap_df: :obj:`pd.DataFrame` + Busmap for the mapping. + timestep: :obj:`str` + Select a timestep or 'min' or 'max'. + + Returns + ------- + voltages_df: :obj:`pd.DataFrame` + DataFrame with the voltages of the nodes and the differences. + rms: :obj:`str` + Calculated root-mean-square error. + + """ start_time = time() logger.info("Start - Voltage mapping") @@ -2020,6 +2083,33 @@ def voltage_mapping( def line_apparent_power_mapping( edisgo_root: EDisGo, edisgo_reduced: EDisGo, linemap_df: DataFrame, timestep: str ) -> Tuple[DataFrame, float]: + """ + Maps the results of the line loads between the root object and the reduced + object. For the mapping the linemap is used. It is calculated the apparent power + difference and the root-mean-square error. + + The calculation is performed for one timestep or the min or max values of the + line loads (apparent power). + + Parameters + ---------- + edisgo_root: :obj:`EDisGo` + Unreduced EDisGo object. + edisgo_reduced: :obj:`EDisGo` + Reduced EDisGo object. + linemap_df: :obj:`pd.DataFrame` + Linemap for the mapping. + timestep: :obj:`str` + Select a timestep or 'min' or 'max'. + + Returns + ------- + s_df: :obj:`pd.DataFrame` + DataFrame with the apparent power of the lines and the differences. + rms: :obj:`str` + Calculated root-mean-square error. + + """ start_time = time() logger.info("Start - Line apparent power mapping") diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index f9ed936fa..6460fd831 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -10,6 +10,8 @@ make_busmap, make_grid_list, reduce_edisgo, + remove_lines_under_one_meter, + remove_one_meter_lines, spatial_complexity_reduction, ) @@ -320,3 +322,37 @@ def test_spatial_complexity_reduction(self, test_edisgo_obj): # Check that edisgo_object can run power flow and reinforce edisgo_reduced.analyze() edisgo_reduced.reinforce() + + def test_remove_one_meter_lines(self, test_edisgo_obj): + edisgo_root = copy.deepcopy(test_edisgo_obj) + + edisgo_clean = remove_one_meter_lines(edisgo_root) + + # Check that the generator changed the bus + df_old = edisgo_root.topology.generators_df + df_new = edisgo_clean.topology.generators_df + assert ( + df_old.loc[df_old["bus"] == "Bus_GeneratorFluctuating_19", "bus"].index + == df_new.loc[df_new["bus"] == "Bus_BranchTee_LVGrid_5_6", "bus"].index + ) + # Check that the load changed the bus + df_old = edisgo_root.topology.loads_df + df_new = edisgo_clean.topology.loads_df + assert ( + df_old.loc[df_old["bus"] == "Bus_Load_residential_LVGrid_5_3", "bus"].index + == df_new.loc[df_new["bus"] == "Bus_BranchTee_LVGrid_5_6", "bus"].index + ) + # Check that 2 lines were removed + assert len(edisgo_root.topology.lines_df) - 2 == len( + edisgo_clean.topology.lines_df + ) + + def test_remove_lines_under_one_meter(self, test_edisgo_obj): + edisgo_root = copy.deepcopy(test_edisgo_obj) + + edisgo_clean = remove_lines_under_one_meter(edisgo_root) + + # Check that 1 line was removed + assert len(edisgo_root.topology.lines_df) - 1 == len( + edisgo_clean.topology.lines_df + ) From cb5ce27a4f17f739af4f366930614449afabfa83 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 09:58:52 +0200 Subject: [PATCH 207/355] Integrate generators based on capacity not given voltage level --- edisgo/io/generators_import.py | 58 ++++++++++-------------------- tests/io/test_generators_import.py | 4 --- 2 files changed, 19 insertions(+), 43 deletions(-) diff --git a/edisgo/io/generators_import.py b/edisgo/io/generators_import.py index 86f6911e7..ff382479e 100755 --- a/edisgo/io/generators_import.py +++ b/edisgo/io/generators_import.py @@ -768,6 +768,7 @@ def oedb( edisgo_object: EDisGo, scenario: str, engine: Engine, + max_capacity=20, ): """ Gets generator park for specified scenario from oedb and integrates generators into @@ -816,6 +817,12 @@ def oedb( are "eGon2035" and "eGon100RE". engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. + max_capacity : float + Maximum capacity in MW of power plants to retrieve from database. In general, + the generators that are retrieved from the database are selected based on the + voltage level they are in. In some cases, the voltage level is not correct as + it was wrongly set in the MaStR dataset. To avoid having unrealistically large + generators in the grids, an upper limit is also set. Per default this is 20 MW. Notes ------ @@ -837,13 +844,13 @@ def _get_egon_power_plants(): egon_power_plants.source_id, egon_power_plants.carrier.label("type"), egon_power_plants.el_capacity.label("p_nom"), - egon_power_plants.voltage_level, egon_power_plants.weather_cell_id, egon_power_plants.geom, ) .filter( egon_power_plants.scenario == scenario, egon_power_plants.voltage_level >= 4, + egon_power_plants.el_capacity <= max_capacity, egon_power_plants.bus_id == edisgo_object.topology.id, ) .order_by(egon_power_plants.id) @@ -887,13 +894,13 @@ def _get_egon_pv_rooftop(): egon_power_plants_pv_roof_building.building_id, egon_power_plants_pv_roof_building.gens_id.label("source_id"), egon_power_plants_pv_roof_building.capacity.label("p_nom"), - egon_power_plants_pv_roof_building.voltage_level, egon_power_plants_pv_roof_building.weather_cell_id, ) .filter( egon_power_plants_pv_roof_building.scenario == scenario, egon_power_plants_pv_roof_building.building_id.in_(building_ids), egon_power_plants_pv_roof_building.voltage_level >= 4, + egon_power_plants_pv_roof_building.capacity <= max_capacity, ) .order_by(egon_power_plants_pv_roof_building.index) ) @@ -918,11 +925,11 @@ def _get_egon_chp_plants(): egon_chp_plants.el_capacity.label("p_nom"), egon_chp_plants.th_capacity.label("p_nom_th"), egon_chp_plants.geom, - egon_chp_plants.voltage_level, ) .filter( egon_chp_plants.scenario == scenario, egon_chp_plants.voltage_level >= 4, + egon_chp_plants.el_capacity <= max_capacity, egon_chp_plants.electrical_bus_id == edisgo_object.topology.id, ) .order_by(egon_chp_plants.id) @@ -945,33 +952,6 @@ def _get_egon_chp_plants(): power_plants_gdf = _get_egon_power_plants() chp_gdf = _get_egon_chp_plants() - # sanity check - kick out generators that are too large - p_nom_upper = edisgo_object.config["grid_connection"]["upper_limit_voltage_level_4"] - drop_ind = pv_rooftop_df[pv_rooftop_df.p_nom > p_nom_upper].index - if len(drop_ind) > 0: - logger.warning( - f"There are {len(drop_ind)} PV rooftop plants with a nominal capacity " - f"larger {p_nom_upper} MW. Connecting them to the MV is not valid, " - f"wherefore they are dropped." - ) - pv_rooftop_df.drop(index=drop_ind, inplace=True) - drop_ind = power_plants_gdf[power_plants_gdf.p_nom > p_nom_upper].index - if len(drop_ind) > 0: - logger.warning( - f"There are {len(drop_ind)} power plants with a nominal capacity " - f"larger {p_nom_upper} MW. Connecting them to the MV is not valid, " - f"wherefore they are dropped." - ) - power_plants_gdf.drop(index=drop_ind, inplace=True) - drop_ind = chp_gdf[chp_gdf.p_nom > p_nom_upper].index - if len(drop_ind) > 0: - logger.warning( - f"There are {len(drop_ind)} CHP plants with a nominal capacity " - f"larger {p_nom_upper} MW. Connecting them to the MV is not valid, " - f"wherefore they are dropped." - ) - chp_gdf.drop(index=drop_ind, inplace=True) - # determine number of generators and installed capacity in future scenario # for validation of grid integration total_p_nom_scenario = ( @@ -1027,8 +1007,6 @@ def _integrate_pv_rooftop(edisgo_object, pv_rooftop_df): * weather_cell_id : int Weather cell the PV plant is in used to obtain the potential feed-in time series. - * voltage_level : int - Voltage level the PV plant is connected to. * source_id : int MaStR ID of the PV plant. @@ -1201,6 +1179,14 @@ def _integrate_new_pv_rooftop_to_buildings(edisgo_object, pv_rooftop_df): ) pv_rooftop_df.set_index("index", drop=True, inplace=True) + # add voltage level + for gen in pv_rooftop_df.index: + pv_rooftop_df.at[ + gen, "voltage_level" + ] = determine_grid_integration_voltage_level( + edisgo_object, pv_rooftop_df.at[gen, "p_nom"] + ) + # check for duplicated generator names and choose random name for duplicates tmp = pv_rooftop_df.index.append(edisgo_object.topology.storage_units_df.index) duplicated_indices = tmp[tmp.duplicated()] @@ -1210,7 +1196,7 @@ def _integrate_new_pv_rooftop_to_buildings(edisgo_object, pv_rooftop_df): new_name = duplicate while new_name in tmp: new_name = f"{duplicate}_{random.randint(10 ** 1, 10 ** 2)}" - # change name in batteries_df + # change name in pv_rooftop_df pv_rooftop_df.rename(index={duplicate: new_name}, inplace=True) # filter PV plants that are too large to be integrated into LV @@ -1306,8 +1292,6 @@ def _integrate_power_and_chp_plants(edisgo_object, power_plants_gdf, chp_gdf): * weather_cell_id : int Weather cell the power plant is in used to obtain the potential feed-in time series. Only given for solar and wind generators. - * voltage_level : int - Voltage level the power plant is connected to. * source_id : int MaStR ID of the power plant. * geom : geometry @@ -1326,8 +1310,6 @@ def _integrate_power_and_chp_plants(edisgo_object, power_plants_gdf, chp_gdf): Generator type, e.g. "gas". * district_heating_id : int ID of district heating network the CHP plant is in. - * voltage_level : int - Voltage level the PV plant is connected to. * geom : geometry Geolocation of power plant. @@ -1338,7 +1320,6 @@ def _integrate_new_chp_plant(edisgo_object, comp_data): comp_type="generator", generator_id=comp_data.at["generator_id"], geolocation=comp_data.at["geom"], - voltage_level=comp_data.at["voltage_level"], add_ts=False, p_nom=comp_data.at["p_nom"], p_nom_th=comp_data.at["p_nom_th"], @@ -1351,7 +1332,6 @@ def _integrate_new_power_plant(edisgo_object, comp_data): comp_type="generator", generator_id=comp_data.at["generator_id"], geolocation=comp_data.at["geom"], - voltage_level=comp_data.at["voltage_level"], add_ts=False, p_nom=comp_data.at["p_nom"], generator_type=comp_data.at["type"], diff --git a/tests/io/test_generators_import.py b/tests/io/test_generators_import.py index 7178c8878..35769a45b 100644 --- a/tests/io/test_generators_import.py +++ b/tests/io/test_generators_import.py @@ -261,7 +261,6 @@ def test__integrate_pv_rooftop(self, caplog): "generator_id": [1, 2, 3, 4], "type": ["solar", "solar", "solar", "solar"], "subtype": ["pv_rooftop", "pv_rooftop", "pv_rooftop", "pv_rooftop"], - "voltage_level": [7, 6, 7, 5], "source_id": [ "SEE970362202254", "SEE980819686674", @@ -317,7 +316,6 @@ def test__integrate_new_pv_rooftop_to_buildings(self, caplog): "generator_id": [1, 2, 3], "type": ["solar", "solar", "solar"], "subtype": ["pv_rooftop", "pv_rooftop", "pv_rooftop"], - "voltage_level": [7, 6, 5], "source_id": [None, None, None], }, index=[1, 2, 3], @@ -416,7 +414,6 @@ def test__integrate_power_and_chp_plants(self, caplog): ], "subtype": [None, None, None, None, None, None], "p_nom": [0.005, 0.15, 2.0, 1.0, 0.05, 3.0], - "voltage_level": [7, 6, 5, 5, 7, 5], "weather_cell_id": [None, None, None, None, None, None], "geom": [geom, geom, None, geom, None, None], }, @@ -429,7 +426,6 @@ def test__integrate_power_and_chp_plants(self, caplog): "district_heating_id": [None], "p_nom": [0.66], "p_nom_th": [4.66], - "voltage_level": [5], "geom": [geom], }, index=[0], From 7944eaadbf8df7f8a798bac0c388d64b43e13a94 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 09:59:40 +0200 Subject: [PATCH 208/355] Set upper capacity limit when importing heat pumps and home storage units --- edisgo/io/heat_pump_import.py | 8 ++++++++ edisgo/io/storage_import.py | 2 ++ 2 files changed, 10 insertions(+) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index 65dc3586a..426deea55 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -65,6 +65,10 @@ def _get_individual_heat_pumps(): .filter( egon_hp_capacity_buildings.scenario == scenario, egon_hp_capacity_buildings.building_id.in_(building_ids), + egon_hp_capacity_buildings.hp_capacity + <= edisgo_object.config["grid_connection"][ + "upper_limit_voltage_level_4" + ], ) .outerjoin( # join to obtain zensus cell ID egon_map_zensus_mvgd_buildings, @@ -110,6 +114,10 @@ def _get_central_heat_pumps(): .filter( egon_district_heating.scenario == scenario, egon_district_heating.carrier == "heat_pump", + egon_district_heating.capacity + <= edisgo_object.config["grid_connection"][ + "upper_limit_voltage_level_4" + ], # filter heat pumps inside MV grid district geometry db.sql_within( egon_district_heating.geometry, diff --git a/edisgo/io/storage_import.py b/edisgo/io/storage_import.py index d14853b7c..f9e532f8a 100644 --- a/edisgo/io/storage_import.py +++ b/edisgo/io/storage_import.py @@ -64,6 +64,8 @@ def home_batteries_oedb( egon_home_batteries.building_id.in_( edisgo_obj.topology.loads_df.building_id.unique() ), + egon_home_batteries.p_nom + <= edisgo_obj.config["grid_connection"]["upper_limit_voltage_level_4"], ) .order_by(egon_home_batteries.index) ) From e32774ee4b22e759afdd266a767621628012a4da Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 10:07:09 +0200 Subject: [PATCH 209/355] Specify how grid_charging_capacity_kW is determined --- edisgo/network/electromobility.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/network/electromobility.py b/edisgo/network/electromobility.py index d44ee6cdf..82b3f1631 100644 --- a/edisgo/network/electromobility.py +++ b/edisgo/network/electromobility.py @@ -107,7 +107,7 @@ def charging_processes_df(self): grid_charging_capacity_kW : float Grid-sided charging capacity including charging infrastructure - losses in kW. + losses (nominal_charging_capacity_kW / eta_cp) in kW. chargingdemand_kWh : float Charging demand in kWh. From 3ed565ecfdf3109fe76d76754c3784e03e38ae77 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 10:24:42 +0200 Subject: [PATCH 210/355] Add separate load factors to use in case n-1 security is checked. --- .../config/config_grid_expansion_default.cfg | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/edisgo/config/config_grid_expansion_default.cfg b/edisgo/config/config_grid_expansion_default.cfg index 76b666f7e..74a612eb7 100644 --- a/edisgo/config/config_grid_expansion_default.cfg +++ b/edisgo/config/config_grid_expansion_default.cfg @@ -68,9 +68,24 @@ mv_lv_station_max_v_drop = 0.02 [grid_expansion_load_factors] -# load factors -# ============ +# These are the load factors to use when grid issues in normal grid operation are checked. +# Load factors for n-1 security are set in section grid_expansion_load_factors_n_minus_one. +mv_load_case_transformer = 1.0 +mv_load_case_line = 1.0 +mv_feed-in_case_transformer = 1.0 +mv_feed-in_case_line = 1.0 + +lv_load_case_transformer = 1.0 +lv_load_case_line = 1.0 +lv_feed-in_case_transformer = 1.0 +lv_feed-in_case_line = 1.0 + +[grid_expansion_load_factors_n_minus_one] + +# These are the load factors to use when n-1 security is checked. Usually, only the +# MV grid components need to be n-1 secure. # Source: Rehtanz et. al.: "Verteilnetzstudie für das Land Baden-Württemberg", 2017. + mv_load_case_transformer = 0.5 mv_load_case_line = 0.5 mv_feed-in_case_transformer = 1.0 From 908d4c2adda3cb4c884998e18aa5c77384a7c206 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 10:28:39 +0200 Subject: [PATCH 211/355] Rename functions to make output clearer --- edisgo/flex_opt/check_tech_constraints.py | 16 ++++++++-------- edisgo/flex_opt/reinforce_grid.py | 16 ++++++++-------- tests/flex_opt/test_check_tech_constraints.py | 8 ++++---- 3 files changed, 20 insertions(+), 20 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 55e16e6c1..caa20a8f4 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -9,7 +9,7 @@ logger = logging.getLogger(__name__) -def mv_line_max_overload(edisgo_obj): +def mv_line_max_relative_overload(edisgo_obj): """ Returns time step and value of most severe overloading of lines in MV network. @@ -21,7 +21,7 @@ def mv_line_max_overload(edisgo_obj): ------- :pandas:`pandas.DataFrame` Dataframe containing over-loaded MV lines, their maximum relative over-loading - (maximum calculated apparent power over allowed apparent power) and the + in p.u. (maximum calculated apparent power over allowed apparent power) and the corresponding time step. Index of the dataframe are the names of the over-loaded lines. Columns are 'max_rel_overload' containing the maximum relative @@ -38,7 +38,7 @@ def mv_line_max_overload(edisgo_obj): """ - crit_lines = _line_max_overload(edisgo_obj, voltage_level="mv") + crit_lines = _line_max_relative_overload(edisgo_obj, voltage_level="mv") if not crit_lines.empty: logger.debug( @@ -52,7 +52,7 @@ def mv_line_max_overload(edisgo_obj): return crit_lines -def lv_line_max_overload(edisgo_obj): +def lv_line_max_relative_overload(edisgo_obj): """ Returns time step and value of most severe overloading of lines in LV networks. @@ -64,7 +64,7 @@ def lv_line_max_overload(edisgo_obj): ------- :pandas:`pandas.DataFrame` Dataframe containing over-loaded LV lines, their maximum relative over-loading - (maximum calculated apparent power over allowed apparent power) and the + in p.u. (maximum calculated apparent power over allowed apparent power) and the corresponding time step. Index of the dataframe are the names of the over-loaded lines. Columns are 'max_rel_overload' containing the maximum relative @@ -81,7 +81,7 @@ def lv_line_max_overload(edisgo_obj): """ - crit_lines = _line_max_overload(edisgo_obj, voltage_level="lv") + crit_lines = _line_max_relative_overload(edisgo_obj, voltage_level="lv") if not crit_lines.empty: logger.debug( @@ -95,7 +95,7 @@ def lv_line_max_overload(edisgo_obj): return crit_lines -def _line_max_overload(edisgo_obj, voltage_level): +def _line_max_relative_overload(edisgo_obj, voltage_level): """ Returns time step and value of most severe overloading of lines. @@ -110,7 +110,7 @@ def _line_max_overload(edisgo_obj, voltage_level): ------- :pandas:`pandas.DataFrame` Dataframe containing over-loaded lines, their maximum relative over-loading - (maximum calculated apparent power over allowed apparent power) and the + in p.u. (maximum calculated apparent power over allowed apparent power) and the corresponding time step. Index of the dataframe are the names of the over-loaded lines. Columns are 'max_rel_overload' containing the maximum relative diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 3ed08d3c3..fefd98c8e 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -209,14 +209,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_max_overload(edisgo_reinforce) + else checks.mv_line_max_relative_overload(edisgo_reinforce) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_overload(edisgo_reinforce), + checks.lv_line_max_relative_overload(edisgo_reinforce), ] ) @@ -277,14 +277,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_max_overload(edisgo_reinforce) + else checks.mv_line_max_relative_overload(edisgo_reinforce) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_overload(edisgo_reinforce), + checks.lv_line_max_relative_overload(edisgo_reinforce), ] ) @@ -499,14 +499,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_max_overload(edisgo_reinforce) + else checks.mv_line_max_relative_overload(edisgo_reinforce) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_overload(edisgo_reinforce), + checks.lv_line_max_relative_overload(edisgo_reinforce), ] ) @@ -567,14 +567,14 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_max_overload(edisgo_reinforce) + else checks.mv_line_max_relative_overload(edisgo_reinforce) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_overload(edisgo_reinforce), + checks.lv_line_max_relative_overload(edisgo_reinforce), ] ) diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 92b6a0abb..1ff6fe9bc 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -23,10 +23,10 @@ def run_power_flow(self): """ self.edisgo.analyze() - def test_mv_line_max_overload(self): + def test_mv_line_max_relative_overload(self): # implicitly checks function _line_overload - df = check_tech_constraints.mv_line_max_overload(self.edisgo) + df = check_tech_constraints.mv_line_max_relative_overload(self.edisgo) # check shape of dataframe assert (4, 3) == df.shape # check relative overload of one line @@ -37,10 +37,10 @@ def test_mv_line_max_overload(self): ) assert df.at["Line_10005", "time_index"] == self.timesteps[3] - def test_lv_line_max_overload(self): + def test_lv_line_max_relative_overload(self): # implicitly checks function _line_overload - df = check_tech_constraints.lv_line_max_overload(self.edisgo) + df = check_tech_constraints.lv_line_max_relative_overload(self.edisgo) # check shape of dataframe assert (2, 3) == df.shape # check relative overload of one line From f6ad0153ab20e3915dc7e27cdc56628ef2c2dc03 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 10:29:11 +0200 Subject: [PATCH 212/355] Adapt to renamed function --- edisgo/opf/timeseries_reduction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index d3d2357a5..4ba6adbb1 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -115,7 +115,7 @@ def get_steps_storage(edisgo_obj, window=5): edisgo_obj, voltage_level="mv", split_voltage_band=True ) # Get periods with current violations - crit_lines = check_tech_constraints.mv_line_max_overload(edisgo_obj) + crit_lines = check_tech_constraints.mv_line_max_relative_overload(edisgo_obj) crit_periods = crit_nodes["time_index"].append(crit_lines["time_index"]).unique() From 16e15a33111702ebef692066dd2020b34d2b8bec Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 10:59:47 +0200 Subject: [PATCH 213/355] Add n_minus_one parameter --- edisgo/edisgo.py | 4 + edisgo/flex_opt/check_tech_constraints.py | 155 ++++++++++++++-------- edisgo/flex_opt/reinforce_grid.py | 8 ++ 3 files changed, 111 insertions(+), 56 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index ef7d61ca0..9d6cae812 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1041,6 +1041,7 @@ def reinforce( split_voltage_band: bool = True, mode: str | None = None, without_generator_import: bool = False, + n_minus_one: bool = False, **kwargs, ) -> Results: """ @@ -1090,6 +1091,7 @@ def reinforce( split_voltage_band=split_voltage_band, mode="mv", without_generator_import=without_generator_import, + n_minus_one=n_minus_one, ) if mode != "mv": @@ -1107,6 +1109,7 @@ def reinforce( split_voltage_band=split_voltage_band, mode=reinforce_mode, without_generator_import=without_generator_import, + n_minus_one=n_minus_one, ) if mode not in ["mv", "lv"]: @@ -1122,6 +1125,7 @@ def reinforce( split_voltage_band=split_voltage_band, mode=mode, without_generator_import=without_generator_import, + n_minus_one=n_minus_one, ) # add measure to Results object diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index caa20a8f4..de59026de 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -1,4 +1,3 @@ -import itertools import logging import numpy as np @@ -9,13 +8,18 @@ logger = logging.getLogger(__name__) -def mv_line_max_relative_overload(edisgo_obj): +def mv_line_max_relative_overload(edisgo_obj, n_minus_one=False): """ Returns time step and value of most severe overloading of lines in MV network. Parameters ---------- edisgo_obj : :class:`~.EDisGo` + n_minus_one : bool + Determines which allowed load factors to use (see :py:attr:`~lines_allowed_load` + for more information). Currently, n-1 security cannot be handled correctly, + wherefore the case where this parameter is set to True will lead to an error + being raised. Returns ------- @@ -38,7 +42,9 @@ def mv_line_max_relative_overload(edisgo_obj): """ - crit_lines = _line_max_relative_overload(edisgo_obj, voltage_level="mv") + crit_lines = _line_max_relative_overload( + edisgo_obj, voltage_level="mv", n_minus_one=n_minus_one + ) if not crit_lines.empty: logger.debug( @@ -52,13 +58,18 @@ def mv_line_max_relative_overload(edisgo_obj): return crit_lines -def lv_line_max_relative_overload(edisgo_obj): +def lv_line_max_relative_overload(edisgo_obj, n_minus_one=False): """ Returns time step and value of most severe overloading of lines in LV networks. Parameters ---------- edisgo_obj : :class:`~.EDisGo` + n_minus_one : bool + Determines which allowed load factors to use (see :py:attr:`~lines_allowed_load` + for more information). Currently, n-1 security cannot be handled correctly, + wherefore the case where this parameter is set to True will lead to an error + being raised. Returns ------- @@ -81,7 +92,9 @@ def lv_line_max_relative_overload(edisgo_obj): """ - crit_lines = _line_max_relative_overload(edisgo_obj, voltage_level="lv") + crit_lines = _line_max_relative_overload( + edisgo_obj, voltage_level="lv", n_minus_one=n_minus_one + ) if not crit_lines.empty: logger.debug( @@ -95,7 +108,7 @@ def lv_line_max_relative_overload(edisgo_obj): return crit_lines -def _line_max_relative_overload(edisgo_obj, voltage_level): +def _line_max_relative_overload(edisgo_obj, voltage_level, n_minus_one=False): """ Returns time step and value of most severe overloading of lines. @@ -105,6 +118,9 @@ def _line_max_relative_overload(edisgo_obj, voltage_level): voltage_level : str Voltage level, over-loading is checked for. Possible options are 'mv' or 'lv'. + n_minus_one : bool + Determines which allowed load factors to use. See :py:attr:`~lines_allowed_load` + for more information. Returns ------- @@ -141,7 +157,7 @@ def _line_max_relative_overload(edisgo_obj, voltage_level): ) # calculate relative line load and keep maximum over-load of each line - relative_i_res = lines_relative_load(edisgo_obj, lines) + relative_i_res = lines_relative_load(edisgo_obj, lines, n_minus_one=n_minus_one) crit_lines_relative_load = relative_i_res[relative_i_res > 1].max().dropna() if len(crit_lines_relative_load) > 0: @@ -161,7 +177,7 @@ def _line_max_relative_overload(edisgo_obj, voltage_level): return crit_lines -def lines_allowed_load(edisgo_obj, lines=None): +def lines_allowed_load(edisgo_obj, lines=None, n_minus_one=False): """ Returns allowed loading of specified lines per time step in MVA. @@ -175,6 +191,13 @@ def lines_allowed_load(edisgo_obj, lines=None): lines : list(str) List of line names to get allowed loading for. Per default allowed loading is returned for all lines in the network. Default: None. + n_minus_one : bool + Determines which allowed load factors to use. In case it is set to False, + allowed load factors defined in the config file 'config_grid_expansion' in + section 'grid_expansion_load_factors' are used. This is the default. + In case it is set to True, allowed load factors defined in the config file + 'config_grid_expansion' in section 'grid_expansion_load_factors_n_minus_one' + are used. This case is currently not implemented. Returns ------- @@ -186,8 +209,12 @@ def lines_allowed_load(edisgo_obj, lines=None): :attr:`~.network.topology.Topology.loads_df`. """ - allowed_load_lv = _lines_allowed_load_voltage_level(edisgo_obj, voltage_level="lv") - allowed_load_mv = _lines_allowed_load_voltage_level(edisgo_obj, voltage_level="mv") + allowed_load_lv = _lines_allowed_load_voltage_level( + edisgo_obj, voltage_level="lv", n_minus_one=n_minus_one + ) + allowed_load_mv = _lines_allowed_load_voltage_level( + edisgo_obj, voltage_level="mv", n_minus_one=n_minus_one + ) allowed_load = pd.concat([allowed_load_lv, allowed_load_mv], axis=1) if lines is None: return allowed_load @@ -195,7 +222,7 @@ def lines_allowed_load(edisgo_obj, lines=None): return allowed_load.loc[:, lines] -def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): +def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level, n_minus_one=False): """ Returns allowed loading per line in the specified voltage level in MVA. @@ -205,6 +232,13 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): voltage_level : str Grid level, allowed line load is returned for. Possible options are "mv" or "lv". + n_minus_one : bool + Determines which allowed load factors to use. In case it is set to False, + allowed load factors defined in the config file 'config_grid_expansion' in + section 'grid_expansion_load_factors' are used. This is the default. + In case it is set to True, allowed load factors defined in the config file + 'config_grid_expansion' in section 'grid_expansion_load_factors_n_minus_one' + are used. This case is currently not implemented. Returns ------- @@ -235,47 +269,48 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): allowed_load_per_case = {} # get allowed loads per case - for case in ["feed-in_case", "load_case"]: - - # if load factor is not 1, handle lines in cycles differently from lines in - # stubs - if ( - edisgo_obj.config["grid_expansion_load_factors"][ - f"{voltage_level}_{case}_line" - ] - != 1.0 - ): - - buses_in_cycles = list( - set(itertools.chain.from_iterable(edisgo_obj.topology.rings)) - ) - - # Find lines in cycles - lines_in_cycles = list( - lines_df.loc[ - lines_df[["bus0", "bus1"]].isin(buses_in_cycles).all(axis=1) - ].index.values - ) - lines_radial_feeders = list( - lines_df.loc[~lines_df.index.isin(lines_in_cycles)].index.values - ) - - # lines in cycles have to be n-1 secure - allowed_load_per_case[case] = ( - lines_df.loc[lines_in_cycles].s_nom - * edisgo_obj.config["grid_expansion_load_factors"][ - f"{voltage_level}_{case}_line" - ] - ) - - # lines in radial feeders are not n-1 secure anyway - allowed_load_per_case[case] = pd.concat( - [ - allowed_load_per_case[case], - lines_df.loc[lines_radial_feeders].s_nom, - ] - ) - else: + if n_minus_one is True: + raise NotImplementedError("n-1 security can currently not be checked.") + # # handle lines in cycles differently from lines in stubs + # for case in ["feed-in_case", "load_case"]: + # if ( + # edisgo_obj.config["grid_expansion_load_factors_n_minus_one"][ + # f"{voltage_level}_{case}_line" + # ] + # != 1.0 + # ): + # + # buses_in_cycles = list( + # set(itertools.chain.from_iterable(edisgo_obj.topology.rings)) + # ) + # + # # Find lines in cycles + # lines_in_cycles = list( + # lines_df.loc[ + # lines_df[["bus0", "bus1"]].isin(buses_in_cycles).all(axis=1) + # ].index.values + # ) + # lines_radial_feeders = list( + # lines_df.loc[~lines_df.index.isin(lines_in_cycles)].index.values + # ) + # + # # lines in cycles have to be n-1 secure + # allowed_load_per_case[case] = ( + # lines_df.loc[lines_in_cycles].s_nom + # * edisgo_obj.config["grid_expansion_load_factors_n_minus_one"][ + # f"{voltage_level}_{case}_line" + # ] + # ) + # + # # lines in radial feeders are not n-1 secure anyway + # allowed_load_per_case[case] = pd.concat( + # [ + # allowed_load_per_case[case], + # lines_df.loc[lines_radial_feeders].s_nom, + # ] + # ) + else: + for case in ["feed-in_case", "load_case"]: allowed_load_per_case[case] = ( lines_df.s_nom * edisgo_obj.config["grid_expansion_load_factors"][ @@ -288,7 +323,7 @@ def _lines_allowed_load_voltage_level(edisgo_obj, voltage_level): ].apply(lambda _: allowed_load_per_case[_]) -def lines_relative_load(edisgo_obj, lines=None): +def lines_relative_load(edisgo_obj, lines=None, n_minus_one=False): """ Returns relative line load. @@ -303,6 +338,9 @@ def lines_relative_load(edisgo_obj, lines=None): lines : list(str) or None List of line names to get relative loading for. Per default relative loading is returned for all lines included in the power flow analysis. Default: None. + n_minus_one : bool + Determines which allowed load factors to use. See :py:attr:`~lines_allowed_load` + for more information. Returns -------- @@ -320,7 +358,7 @@ def lines_relative_load(edisgo_obj, lines=None): ) # get allowed loading - allowed_loading = lines_allowed_load(edisgo_obj, lines) + allowed_loading = lines_allowed_load(edisgo_obj, lines, n_minus_one=n_minus_one) # get line load from power flow analysis loading = edisgo_obj.results.s_res.loc[:, lines] @@ -655,7 +693,7 @@ def stations_relative_load(edisgo_obj, grids=None): return loading / allowed_loading.loc[:, loading.columns] -def components_relative_load(edisgo_obj): +def components_relative_load(edisgo_obj, n_minus_one=False): """ Returns relative loading of all lines and stations included in power flow analysis. @@ -667,6 +705,9 @@ def components_relative_load(edisgo_obj): Parameters ---------- edisgo_obj : :class:`~.EDisGo` + n_minus_one : bool + Determines which allowed load factors to use. See :py:attr:`~lines_allowed_load` + for more information. Returns ------- @@ -682,7 +723,9 @@ def components_relative_load(edisgo_obj): """ stations_rel_load = stations_relative_load(edisgo_obj) - lines_rel_load = lines_relative_load(edisgo_obj, lines=None) + lines_rel_load = lines_relative_load( + edisgo_obj, lines=None, n_minus_one=n_minus_one + ) return pd.concat([lines_rel_load, stations_rel_load], axis=1) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index fefd98c8e..ee7aed759 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -28,6 +28,7 @@ def reinforce_grid( split_voltage_band: bool = True, mode: str | None = None, without_generator_import: bool = False, + n_minus_one: bool = False, ) -> Results: """ Evaluates network reinforcement needs and performs measures. @@ -94,6 +95,10 @@ def reinforce_grid( If True excludes lines that were added in the generator import to connect new generators to the topology from calculation of topology expansion costs. Default: False. + n_minus_one : bool + Determines whether n-1 security should be checked. Currently, n-1 security + cannot be handled correctly, wherefore the case where this parameter is set to + True will lead to an error being raised. Returns ------- @@ -143,6 +148,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): edisgo_reinforce.results.equipment_changes = pd.concat(df_list) + if n_minus_one is True: + raise NotImplementedError("n-1 security can currently not be checked.") + # check if provided mode is valid if mode and mode not in ["mv", "mvlv", "lv"]: raise ValueError(f"Provided mode {mode} is not a valid mode.") From 089bcabf9081120b4b090119e47301ab7d8ac445 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 11:02:04 +0200 Subject: [PATCH 214/355] Raise warning when allowed limits cannot be returned --- edisgo/flex_opt/check_tech_constraints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index de59026de..6628f4c6e 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -940,7 +940,7 @@ def allowed_voltage_limits(edisgo_obj, buses=None, split_voltage_band=True): allowed_buses = upper.columns buses_not_incl = list(set(buses) - set(allowed_buses)) if buses_not_incl: - logger.debug( + logger.warning( f"Allowed voltage limits cannot be determined for all given buses as " f"voltage information from power flow analysis is needed to calculate " f"allowed voltage for the MV/LV and LV level but the buses were not " From 5ef9c88ed691b38588c13477e1353a156749593b Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 11:53:22 +0200 Subject: [PATCH 215/355] Fix tests --- tests/flex_opt/test_check_tech_constraints.py | 22 +++++++++---------- tests/test_edisgo.py | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 1ff6fe9bc..93d98f0de 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -69,7 +69,7 @@ def test_lines_allowed_load(self): # check values (load case) assert np.isclose( df.at[self.timesteps[0], "Line_10005"], - 7.274613391789284 * 0.5, + 7.274613391789284, ) assert np.isclose( df.at[self.timesteps[0], "Line_50000002"], @@ -94,10 +94,10 @@ def test__lines_allowed_load_voltage_level(self): df.at[self.timesteps[2], "Line_10005"], 7.27461339178928, ) - # check in load case (line in cycle as well as stub) + # check in load case assert np.isclose( df.at[self.timesteps[0], "Line_10005"], - 7.274613391789284 * 0.5, + 7.274613391789284, ) assert np.isclose( df.at[self.timesteps[0], "Line_10024"], @@ -134,7 +134,7 @@ def test_lines_relative_load(self): ) # check values (load case) assert np.isclose( - df.at[self.timesteps[0], "Line_10005"], 0.00142 / (7.27461 * 0.5), atol=1e-5 + df.at[self.timesteps[0], "Line_10005"], 0.00142 / 7.27461, atol=1e-5 ) # check with specifying lines @@ -159,7 +159,7 @@ def test_hv_mv_station_max_overload(self): # check missing transformer capacity assert np.isclose( df.at["MVGrid_1_station", "s_missing"], - (np.hypot(30, 30) - 20) / 0.5, + (np.hypot(30, 30) - 40), ) assert df.at["MVGrid_1_station", "time_index"] == self.timesteps[0] @@ -232,7 +232,7 @@ def test__station_allowed_load(self): load_cases = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") ] - assert np.isclose(20.0, df.loc[load_cases.values].values).all() + assert np.isclose(40.0, df.loc[load_cases.values].values).all() feed_in_cases = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("feed") ] @@ -254,7 +254,7 @@ def test_stations_allowed_load(self): self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") ] assert np.isclose( - 20.0, df.loc[load_cases.values, "MVGrid_1_station"].values + 40.0, df.loc[load_cases.values, "MVGrid_1_station"].values ).all() # check with specifying grids @@ -269,7 +269,7 @@ def test_stations_allowed_load(self): ) assert_frame_equal(df.loc[:, ["LVGrid_1_station"]], exp) assert np.isclose( - 20.0, df.loc[load_cases.values, "MVGrid_1_station"].values + 40.0, df.loc[load_cases.values, "MVGrid_1_station"].values ).all() feed_in_cases = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("feed") @@ -312,7 +312,7 @@ def test_stations_relative_load(self): self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") ] assert np.isclose( - 0.06753, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 + 0.033765, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 ).all() def test_components_relative_load(self): @@ -329,7 +329,7 @@ def test_components_relative_load(self): 0.02853, df.loc[load_cases.values, "LVGrid_4_station"].values, atol=1e-5 ).all() assert np.isclose( - df.at[self.timesteps[0], "Line_10005"], 0.00142 / (7.27461 * 0.5), atol=1e-5 + df.at[self.timesteps[0], "Line_10005"], 0.00142 / 7.27461, atol=1e-5 ) # check with power flow results not available for all components @@ -352,7 +352,7 @@ def test_components_relative_load(self): self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("load") ] assert np.isclose( - 0.06753, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 + 0.033765, df.loc[load_cases.values, "MVGrid_1_station"].values, atol=1e-5 ).all() # check single LV grid diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index acc5e8149..2c9b4169b 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -59,7 +59,7 @@ def test_config_setter(self): save_electromobility=False, ) # overwrite config with config_path=None and check - self.edisgo.config = {"config_path": None} + self.edisgo.config = {"config_path": save_dir} assert config_orig._data == self.edisgo.config._data # overwrite config from json and check self.edisgo.config = {"from_json": True, "config_path": save_dir} From 9bd7de41b9d7d36d3f58dc276ef5f3902b349260 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 13:59:19 +0200 Subject: [PATCH 216/355] Add explanation --- examples/plot_example.ipynb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/examples/plot_example.ipynb b/examples/plot_example.ipynb index 3e1f9679a..4c71ecc1d 100644 --- a/examples/plot_example.ipynb +++ b/examples/plot_example.ipynb @@ -204,7 +204,13 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "#### Plotting relative loading and voltage deviation, with map in the background." + "#### Plotting relative loading and voltage deviation, with map in the background. \n", + "\n", + "Be aware that the used grid is a test grid with random geolocations. To see the plotting on a map with a ding0 grid with actual geolocations you can change the downloaded grid in the function `download_ding0_example_grid` above to 'ding0_test_network_3' and import the grid as follows:\n", + "\n", + "```\n", + "edisgo_root = EDisGo(ding0_grid=ding0_grid, legacy_ding0_grids=False)\n", + "```" ] }, { From 3d3edc3c17e9a6a8980871eb76d1f1f9b8f8cd7b Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 14:02:46 +0200 Subject: [PATCH 217/355] Do not round grid capacity of charging park --- edisgo/network/components.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/edisgo/network/components.py b/edisgo/network/components.py index 383a0aa56..a741ca50c 100644 --- a/edisgo/network/components.py +++ b/edisgo/network/components.py @@ -837,12 +837,11 @@ def designated_charging_point_capacity(self): Total gross designated charging park capacity """ - return round( + return ( self.charging_processes_df.groupby("charging_point_id") .max() .nominal_charging_capacity_kW.sum() - / self._edisgo_obj.electromobility.eta_charging_points, - 1, + / self._edisgo_obj.electromobility.eta_charging_points ) @property From 912af38b99992e8be0d7a59b891676bef45b5863 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 14:03:02 +0200 Subject: [PATCH 218/355] Do not add geom when integrating into mv --- edisgo/network/topology.py | 1 + 1 file changed, 1 insertion(+) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 958af075d..87ae18a01 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -1875,6 +1875,7 @@ def connect_to_mv(self, edisgo_object, comp_data, comp_type="generator"): ) # add component to newly created bus + comp_data.pop("geom") if comp_type == "generator": comp_name = self.add_generator(bus=bus, **comp_data) elif comp_type == "charging_point": From 574c5bc056671cb847c447135c92258b92623831 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 6 Apr 2023 15:09:57 +0200 Subject: [PATCH 219/355] Minor logging and docstring changes --- edisgo/tools/spatial_complexity_reduction.py | 184 ++++++++++--------- 1 file changed, 98 insertions(+), 86 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 5aad961cd..7f654f416 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -46,13 +46,15 @@ def make_grid_list(edisgo_obj: EDisGo, grid: object = None) -> list: ---------- edisgo_obj : :class:`~.EDisGo` EDisGo object to get the grids from. - grid : :obj:`str` - Name of the grid, if None than all grids of the EDisGo objects are used. + grid : str + Name of the grid. If None, than all grids of the EDisGo objects are used. + Default: None. Returns ------- - :obj:`list` - List of the Grid objects + list(:class:`~.network.grids.Grid`) + List of the :class:`~.network.grids.Grid` objects. + """ if edisgo_obj is None and grid is None: raise ValueError("Pass an EDisGo object and an grid") @@ -73,8 +75,8 @@ def make_grid_list(edisgo_obj: EDisGo, grid: object = None) -> list: def find_buses_of_interest(edisgo_root: EDisGo) -> set: """ - Find the buses of interest of the EDisGo object. With a worst-case powerflow the - buses with problems are found. Check for line load and voltage deviation. + Return buses with load and voltage issues, determined doing a worst-case powerflow + analysis. Parameters ---------- @@ -83,11 +85,12 @@ def find_buses_of_interest(edisgo_root: EDisGo) -> set: Returns ------- - :obj:`set` - Set with the names of the buses of interest. + set(str) + Set with the names of the buses with load and voltage issues. + """ start_time = time() - logger.info("Start - Find buses of interest") + logger.debug("Start - Find buses of interest") edisgo_obj = copy.deepcopy(edisgo_root) edisgo_obj.timeseries = timeseries.TimeSeries() @@ -111,7 +114,7 @@ def find_buses_of_interest(edisgo_root: EDisGo) -> set: for value in lv_buses.values(): buses_of_interest.update(value.index.tolist()) - logger.info("Finished in {}s".format(time() - start_time)) + logger.debug("Finished in {}s".format(time() - start_time)) return buses_of_interest @@ -123,14 +126,16 @@ def rename_virtual_buses( Parameters ---------- - partial_busmap_df: :obj:`pd.DataFrame` + partial_busmap_df : :pandas:`pandas.DataFrame` Busmap to work on. - transformer_node: :obj:`str` + transformer_node : str Transformer node name. + Returns ------- - :obj:`pd.DataFrame` + :pandas:`pandas.DataFrame` Busmap with applied changes. + """ nodes = partial_busmap_df.index.to_list() pairs = [] @@ -145,7 +150,7 @@ def rename_virtual_buses( logger.debug("Pairs: {}".format(pairs)) logger.debug("Length pairs: {}".format(len(pairs))) if len(pairs) > 0: - logger.info("Rename virtual buses") + logger.debug("Rename virtual buses") for feeder_virtual, feeder_non_virtual in pairs: old_name_of_virtual_node = partial_busmap_df.loc[feeder_virtual, "new_bus"] nodes_in_the_same_cluster_as_virtual_node = partial_busmap_df.loc[ @@ -204,7 +209,7 @@ def apply_busmap(series): return series start_time = time() - logger.info("Start - Removing 1m lines") + logger.debug("Start - Removing 1m lines") edisgo_obj = copy.deepcopy(edisgo_root) G = edisgo_obj.to_graph() @@ -213,7 +218,7 @@ def apply_busmap(series): unused_lines = [] for index, row in lines_df.iterrows(): if row.length < 0.001: - logger.info( + logger.debug( 'Line "{}" is {:.3f}m long and will not be removed.'.format( index, row.length * 1000 ) @@ -277,7 +282,7 @@ def apply_busmap(series): edisgo_obj.topology.generators_df = generators_df edisgo_obj.topology.storage_units_df = storage_units_df - logger.info("Finished in {}s".format(time() - start_time)) + logger.debug("Finished in {}s".format(time() - start_time)) return edisgo_obj @@ -413,34 +418,35 @@ def make_busmap_from_clustering( preserve_trafo_bus_coordinates: bool = True, ) -> DataFrame: """ - See for more information the function - :func:`make_busmap`. + Making busmap for the cluster area 'grid'. - Making busmap for the cluster area 'grid'. Every grid is clustered individually. + Every grid is clustered individually. For more information see function + :func:`~make_busmap`. Parameters ---------- - edisgo_root: :obj:`EDisGo` - EDisGo object for which the busmap ist created. - grid: :obj:`str` or None - If None, busmap is created for all grids, else only for the selected Grid. - mode: :obj:`str` + edisgo_root : :class:`~.EDisGo` + EDisGo object for which the busmap is created. + grid : str or None + If None, busmap is created for all grids, else only for the selected grid. + mode : str "kmeans" or "kmeansdijkstra" as clustering method. - reduction_factor: :obj:`float` - Must bigger than 0 smaller than 1. Nodes are reduced with this factor. - preserve_trafo_bus_coordinates: :obj:`bool` - If true transformators have the same coordinates after the clustering, else - the transformer coordinates are get by the clustering. + reduction_factor : float + Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. + preserve_trafo_bus_coordinates : True + If True, transformers have the same coordinates after the clustering, else + the transformer coordinates are changed by the clustering. Default: True. Returns ------- - :obj:`pd.DataFrame` + :pandas:`pandas.DataFrame` Busmap which maps the old bus names to the new bus names with new coordinates. References ---------- - In parts based on PyPSA spatial complexity reduction - `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + In parts based on `PyPSA spatial complexity reduction `_. + """ def calculate_weighting(series): @@ -498,7 +504,7 @@ def rename_new_buses(series): return series start_time = time() - logger.info("Start - Make busmap from clustering, mode = {}".format(mode)) + logger.debug("Start - Make busmap from clustering, mode = {}".format(mode)) edisgo_obj = copy.deepcopy(edisgo_root) grid_list = make_grid_list(edisgo_obj, grid=grid) @@ -607,7 +613,7 @@ def rename_new_buses(series): busmap_df = pd.concat([busmap_df, partial_busmap_df]) - logger.info("Finished in {}s".format(time() - start_time)) + logger.debug("Finished in {}s".format(time() - start_time)) return busmap_df @@ -619,34 +625,36 @@ def make_busmap_from_feeders( reduction_factor_not_focused: Union[bool, float] = False, ) -> DataFrame: """ - See for more information the function :func:`make_busmap`. + Making busmap for the cluster area 'feeder'. - Making busmap for the cluster area 'feeder'. Every feeder is clustered individually. + Every feeder is clustered individually. For more information see function + :func:`~make_busmap`. Parameters ---------- - edisgo_root: :obj:`EDisGo` - EDisGo object for which the busmap ist created. - grid: :obj:`str` or None - If None, busmap is created for all grids, else only for the selected Grid. - mode: :obj:`str` + edisgo_root : :class:`~.EDisGo` + EDisGo object for which the busmap is created. + grid : str or None + If None, busmap is created for all grids, else only for the selected grid. + mode : str "kmeans" or "kmeansdijkstra" as clustering method. - reduction_factor: :obj:`float` - Must bigger than 0 smaller than 1. Nodes are reduced with this factor. - reduction_factor_not_focused: :obj:`bool` or :obj:`floar` - If false the focus method is not used. If 0 or smaller than 1, this sets the - reduction factor for buses not of interest. When selecting 0 the nodes of the + reduction_factor : float + Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. + reduction_factor_not_focused : bool or float + If False, the focus method is not used. If between 0 and 1, this sets the + reduction factor for buses not of interest. When selecting 0, the nodes of the clustering area are aggregated to the transformer bus. Returns ------- - :obj:`pd.DataFrame` + :pandas:`pandas.DataFrame` Busmap which maps the old bus names to the new bus names with new coordinates. References ---------- - In parts based on PyPSA spatial complexity reduction - `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + In parts based on `PyPSA spatial complexity reduction `_. + """ def make_name(number_of_feeder_node): @@ -712,7 +720,7 @@ def transform_coordinates_back(ser): edisgo_obj = copy.deepcopy(edisgo_root) start_time = time() - logger.info("Start - Make busmap from feeders, mode = {}".format(mode)) + logger.debug("Start - Make busmap from feeders, mode = {}".format(mode)) edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.apply( transform_coordinates, axis="columns" @@ -733,7 +741,7 @@ def transform_coordinates_back(ser): for grid in grid_list: grid_id = grid.id v_grid = grid.nominal_voltage - logger.info("Make busmap for grid: {}, v_nom={}".format(grid, v_grid)) + logger.debug("Make busmap for grid: {}, v_nom={}".format(grid, v_grid)) graph_root = grid.graph transformer_node = grid.transformers_df.bus1.values[0] @@ -861,7 +869,7 @@ def transform_coordinates_back(ser): busmap_df = busmap_df.apply(transform_coordinates_back, axis="columns") busmap_df.sort_index(inplace=True) - logger.info("Finished in {}s".format(time() - start_time)) + logger.debug("Finished in {}s".format(time() - start_time)) return busmap_df @@ -873,37 +881,39 @@ def make_busmap_from_main_feeders( reduction_factor_not_focused: Union[bool, float] = False, ) -> DataFrame: """ - See for more information the function :func:`make_busmap`. + Making busmap for the cluster area 'main_feeder'. - Making busmap for the cluster area 'main_feeder'. Every main feeder is clustered - individually. The main feeder is selected as the longest way in the feeder. All - nodes are aggregated to this main feeder and than the feeder is clustered. + Every main feeder is clustered individually. The main feeder is selected as the + longest path in the feeder. All nodes are aggregated to this main feeder and + then the feeder is clustered. For more information see function + :func:`~make_busmap`. Parameters ---------- - edisgo_root: :obj:`EDisGo` - EDisGo object for which the busmap ist created. - grid: :obj:`str` or None - If None, busmap is created for all grids, else only for the selected Grid. - mode: :obj:`str` + edisgo_root : :class:`~.EDisGo` + EDisGo object for which the busmap is created. + grid : str or None + If None, busmap is created for all grids, else only for the selected grid. + mode : str "kmeans", "kmeansdijkstra", "aggregate_to_main_feeder" or "equidistant_nodes" as clustering method. - reduction_factor: :obj:`float` - Must bigger than 0 smaller than 1. Nodes are reduced with this factor. - reduction_factor_not_focused: :obj:`bool` or :obj:`floar` - If false the focus method is not used. If 0 or smaller than 1, this sets the - reduction factor for buses not of interest. When selecting 0 the nodes of the + reduction_factor : float + Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. + reduction_factor_not_focused : bool or float + If False, the focus method is not used. If between 0 and 1, this sets the + reduction factor for buses not of interest. When selecting 0, the nodes of the clustering area are aggregated to the transformer bus. Returns ------- - :obj:`pd.DataFrame` + :pandas:`pandas.DataFrame` Busmap which maps the old bus names to the new bus names with new coordinates. References ---------- - In parts based on PyPSA spatial complexity reduction - `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + In parts based on `PyPSA spatial complexity reduction `_. + """ def make_name(number_of_feeder_node): @@ -974,7 +984,7 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): edisgo_obj = copy.deepcopy(edisgo_root) start_time = time() - logger.info("Start - Make busmap from main feeders, mode = {}".format(mode)) + logger.debug("Start - Make busmap from main feeders, mode = {}".format(mode)) if mode != "aggregate_to_main_feeder": edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.apply( @@ -1275,7 +1285,7 @@ def short_coordinates(root_node, end_node, branch_length, node_number): if mode != "aggregate_to_main_feeder": busmap_df = busmap_df.apply(transform_coordinates_back, axis="columns") - logger.info("Finished in {}s".format(time() - start_time)) + logger.debug("Finished in {}s".format(time() - start_time)) return busmap_df @@ -1289,6 +1299,7 @@ def make_busmap( ) -> DataFrame: """ Wrapper around the different make_busmap methods for the different cluster areas. + From the EDisGo object a busmap is generated. The bus names are mapped to new bus names with new coordinates. The busmap can be used with the function :func:`reduce_edisgo ` to @@ -1296,9 +1307,9 @@ def make_busmap( Parameters ---------- - edisgo_root: :obj:`EDisGo` - EDisGo object for which the busmap ist created. - mode: :obj:`str` + edisgo_root : :class:`~.EDisGo` + EDisGo object for which the busmap is created. + mode : str "kmeans", "kmeansdijkstra", "aggregate_to_main_feeder" or "equidistant_nodes" as clustering method. "aggregate_to_main_feeder" or "equidistant_nodes" only work with the cluster area "main_feeder". @@ -1318,27 +1329,28 @@ def make_busmap( Through a reduction of the nodes by the reduction factor and then distributing the remaining nodes on the graph. - cluster_area: :obj:`str` - Select: 'grid', 'feeder' or 'main_feeder' as the cluster area. The cluster area - is the area on which the different clustering methods are used on. - reduction_factor: :obj:`float` - Must bigger than 0 smaller than 1. Nodes are reduced with this factor. - reduction_factor_not_focused: :obj:`bool` or :obj:`float` - If false the focus method is not used. If 0 or smaller than 1, this sets the - reduction factor for buses not of interest. When selecting 0 the nodes of the + cluster_area : str + The cluster area is the area the different clustering methods are applied to. + Possible options are 'grid', 'feeder' or 'main_feeder'. + reduction_factor : float + Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. + reduction_factor_not_focused : bool or float + If False, the focus method is not used. If between 0 and 1, this sets the + reduction factor for buses not of interest. When selecting 0, the nodes of the clustering area are aggregated to the transformer bus. grid: :obj:`str` or None If None, busmap is created for all grids, else only for the selected Grid. Returns ------- - :obj:`pd.DataFrame` + :pandas:`pandas.DataFrame` Busmap which maps the old bus names to the new bus names with new coordinates. References ---------- - In parts based on PyPSA spatial complexity reduction - `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + In parts based on `PyPSA spatial complexity reduction `_. + """ # Check for false input. if mode == "aggregate_to_main_feeder": From e4b85c833e84f36c1458a8840482e6c7e4bfbda5 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 11 Apr 2023 08:04:12 +0200 Subject: [PATCH 220/355] Minor doc changes --- edisgo/network/components.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edisgo/network/components.py b/edisgo/network/components.py index a741ca50c..5e4df1fba 100644 --- a/edisgo/network/components.py +++ b/edisgo/network/components.py @@ -163,7 +163,7 @@ def grid(self): @property def geom(self): """ - Geo location of component. + Geolocation of component. Returns -------- @@ -827,7 +827,7 @@ def use_case(self): @property def designated_charging_point_capacity(self): """ - Total gross designated charging park capacity. + Total gross designated charging park capacity in kW. This is not necessarily equal to the connection rating. From 4d2fb026c2f9bef5d38749960e1f7da5716f0170 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 11 Apr 2023 08:04:34 +0200 Subject: [PATCH 221/355] Add tolerance --- edisgo/edisgo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index a68598ee2..987958430 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2651,7 +2651,7 @@ def check_integrity(self): (active_power[comps_complete].max() > comps.loc[comps_complete, attr]) ] - if len(exceeding) > 0: + if len(exceeding) > 1e-6: logger.warning( f"Values of active power in the timeseries object exceed {attr} for" f" the following {comp_type}: {exceeding.values}" From cb794eeb7b20b6f6aab4164cc3e71e9c3ef05e10 Mon Sep 17 00:00:00 2001 From: Maike Held Date: Tue, 11 Apr 2023 13:55:11 +0200 Subject: [PATCH 222/355] Added test for timeseries_reduction.py --- edisgo/opf/timeseries_reduction.py | 479 +++++++++++++++++++++++++ tests/opf/test_timeseries_reduction.py | 83 +++++ 2 files changed, 562 insertions(+) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 356de5134..2df44c013 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -1,4 +1,7 @@ import logging +import os + +from copy import deepcopy import numpy as np import pandas as pd @@ -7,6 +10,8 @@ from sklearn.preprocessing import StandardScaler from edisgo.flex_opt import check_tech_constraints +from edisgo.flex_opt.costs import line_expansion_costs +from edisgo.tools.tools import assign_feeder logger = logging.getLogger(__name__) @@ -53,6 +58,103 @@ def _scored_most_critical_loading(edisgo_obj): return crit_lines_score.sort_values(ascending=False) +def _scored_most_critical_loading_time_interval(edisgo_obj, window_days): + """ + Get the time steps with the most critical overloadings for flexibility + optimization. + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + window_days : int + Amount of continuous days that violation is determined for. Default: 7 + + Returns + -------- + `pandas.DataFrame` + Contains time intervals and first time step of these intervals with worst + overloadings for given timeframe. Also contains information of how many + lines and transformers have had their worst overloading within the considered + timeframes. + """ + + # Get current relative to allowed current + relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj) + + # Get lines that have violations and replace nan values with 0 + crit_lines_score = relative_i_res[relative_i_res > 1].fillna(0) + max_per_line = crit_lines_score.max() + # weight line violations with expansion costs + costs_lines = ( + line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) + ) + costs_trafos_lv = pd.Series( + index=[ + str(lv_grid) + "_station" + for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids) + ], + data=edisgo_obj.config._data["costs_transformers"]["lv"], + ) + costs_trafos_mv = pd.Series( + index=["MVGrid_" + str(edisgo_obj.topology.id) + "_station"], + data=edisgo_obj.config._data["costs_transformers"]["mv"], + ) + costs = pd.concat([costs_lines, costs_trafos_lv, costs_trafos_mv]) + + crit_lines_cost = crit_lines_score * costs + # Get most "expensive" time intervall over all components + crit_timesteps = ( + crit_lines_cost.rolling(window=int(window_days * 24), closed="right") + .max() + .sum(axis=1) + ) + # time intervall starts at 4am on every considered day + crit_timesteps = ( + crit_timesteps.iloc[int(window_days * 24) - 1 :] + .iloc[5::24] + .sort_values(ascending=False) + ) + timesteps = crit_timesteps.index - pd.DateOffset(hours=int(window_days * 24)) + time_intervals = [ + pd.date_range(start=timestep, periods=int(window_days * 24) + 1, freq="h") + for timestep in timesteps + ] + time_intervals_df = pd.DataFrame( + index=range(len(time_intervals)), columns=["OL_ts", "OL_t1", "OL_max"] + ) + time_intervals_df["OL_t1"] = timesteps + for i in range(len(time_intervals)): + time_intervals_df["OL_ts"][i] = time_intervals[i] + lines_no_max = crit_lines_score.columns.values + total_lines = len(lines_no_max) + # check if worst overloading of every line is included in worst three time intervals + for i in range(len(time_intervals)): + max_per_lin_ti = crit_lines_score.loc[time_intervals[i]].max() + time_intervals_df["OL_max"][i] = ( + len( + np.intersect1d( + lines_no_max, + max_per_lin_ti[max_per_lin_ti >= max_per_line * 0.95].index.values, + ) + ) + / total_lines + ) + lines_no_max = np.intersect1d( + lines_no_max, + max_per_lin_ti[max_per_lin_ti < max_per_line * 0.95].index.values, + ) + + if i == 2: + if len(lines_no_max) > 0: + logger.warning( + "Highest overloading of following lines does not lie within the " + "overall worst three time intervals: " + str(lines_no_max) + ) + + return time_intervals_df + + def _scored_critical_overvoltage(edisgo_obj): voltage_dev = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( @@ -87,6 +189,144 @@ def _scored_most_critical_voltage_issues(edisgo_obj): return voltage_diff.sort_values(ascending=False) +def _scored_most_critical_voltage_issues_time_interval(edisgo_obj, window_days): + """ + Get the time steps with the most critical voltage violations for flexibilities + optimization. + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + window_days : int + Amount of continuous days that violation is determined for. Default: 7 + + Returns + -------- + `pandas.DataFrame` + Contains time intervals and first time step of these intervals with worst + voltage violations for given timeframe. Also contains information of how many + lines and transformers have had their worst voltage violation within the + considered timeframes. + """ + voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + edisgo_obj + ).fillna(0) + + # Get score for nodes that are over or under the allowed deviations + voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] + max_per_bus = voltage_diff.max().fillna(0) + + assign_feeder(edisgo_obj, mode="mv_feeder") + + # determine costs per feeder + costs_lines = ( + line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) + ) + costs_trafos_lv = pd.Series( + index=[ + lv_grid.station.index[0] for lv_grid in edisgo_obj.topology.mv_grid.lv_grids + ], + data=edisgo_obj.config._data["costs_transformers"]["lv"], + ) + costs_trafos_mv = pd.Series( + index=[edisgo_obj.topology.mv_grid.station.index[0]], + data=edisgo_obj.config._data["costs_transformers"]["mv"], + ) + costs = pd.concat([costs_lines, costs_trafos_lv, costs_trafos_mv]) + + feeder_lines = edisgo_obj.topology.lines_df.mv_feeder + feeder_trafos_lv = pd.Series( + index=[ + lv_grid.station.index[0] for lv_grid in edisgo_obj.topology.mv_grid.lv_grids + ], + data=[ + lv_grid.station.mv_feeder[0] + for lv_grid in edisgo_obj.topology.mv_grid.lv_grids + ], + ) + feeder_trafos_mv = pd.Series( + index=[edisgo_obj.topology.mv_grid.station.index[0]], + data=[edisgo_obj.topology.mv_grid.station.mv_feeder[0]], + ) + feeder = pd.concat([feeder_lines, feeder_trafos_lv, feeder_trafos_mv]) + costs_per_feeder = ( + pd.concat([costs.rename("costs"), feeder.rename("feeder")], axis=1) + .groupby(by="feeder")[["costs"]] + .sum() + ) + + # check vor every feeder if any of the buses within violate the allowed voltage + # deviation + feeder_buses = edisgo_obj.topology.buses_df.mv_feeder + columns = [ + feeder_buses.loc[voltage_diff.columns[i]] + for i in range(len(voltage_diff.columns)) + ] + voltage_diff_copy = deepcopy(voltage_diff).fillna(0) + voltage_diff.columns = columns + voltage_diff_feeder = ( + voltage_diff.transpose().reset_index().groupby(by="index").sum().transpose() + ) + voltage_diff_feeder[voltage_diff_feeder != 0] = 1 + + # weigth feeder voltage violation with costs per feeder + voltage_diff_feeder = voltage_diff_feeder * costs_per_feeder.squeeze() + # Todo: should there be different ones for over and undervoltage? + # Get most "expensive" time intervall over all feeders + crit_timesteps = ( + voltage_diff_feeder.rolling(window=int(window_days * 24), closed="right") + .max() + .sum(axis=1) + ) + # time intervall starts at 4am on every considered day + crit_timesteps = ( + crit_timesteps.iloc[int(window_days * 24) - 1 :] + .iloc[5::24] + .sort_values(ascending=False) + ) + timesteps = crit_timesteps.index - pd.DateOffset(hours=int(window_days * 24)) + time_intervals = [ + pd.date_range(start=timestep, periods=int(window_days * 24) + 1, freq="h") + for timestep in timesteps + ] + time_intervals_df = pd.DataFrame( + index=range(len(time_intervals)), columns=["V_ts", "V_t1", "V_max"] + ) + time_intervals_df["V_t1"] = timesteps + for i in range(len(time_intervals)): + time_intervals_df["V_ts"][i] = time_intervals[i] + + buses_no_max = max_per_bus.index.values + total_buses = len(buses_no_max) + + # check if worst voltage deviation of every bus is included in worst three time + # intervals + for i in range(len(time_intervals)): + max_per_bus_ti = voltage_diff_copy.loc[time_intervals[i]].max() + time_intervals_df["V_max"][i] = ( + len( + np.intersect1d( + buses_no_max, + max_per_bus_ti[max_per_bus_ti >= max_per_bus * 0.95].index.values, + ) + ) + / total_buses + ) + buses_no_max = np.intersect1d( + buses_no_max, + max_per_bus_ti[max_per_bus_ti < max_per_bus * 0.95].index.values, + ) + if i == 2: + if len(buses_no_max) > 0: + logger.warning( + "Highest voltage deviation of following buses does not lie within " + "the overall worst three time intervals: " + str(buses_no_max) + ) + + return time_intervals_df + + def get_steps_reinforcement( edisgo_obj, num_steps_loading=None, num_steps_voltage=None, percentage=1.0 ): @@ -245,6 +485,99 @@ def get_steps_storage(edisgo_obj, window=5): return pd.DatetimeIndex(reduced) +def get_steps_flex_opf( + edisgo_obj, + num_ti_loading=None, + num_ti_voltage=None, + percentage=0.1, + window_days=7, + save_steps=False, + path="", +): + """ + Get the time steps with the most critical violations for curtailment + optimization. + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + num_ti_loading: int + The number of most critical overloading time intervals to select, if None + percentage is used. Default: None + num_ti_voltage: int + The number of most critical voltage issues to select, if None percentage is + used. Default: None + percentage : float + The percentage of most critical time intervals to select. Default: 0.1 + window_days : int + Amount of continuous days that violation is determined for. Default: 7 + save_steps : bool + If set to True, dataframe with time intervals is saved to csv file. + Default: False + path: + Directory the csv file is saved to. Per default it takes the current + working directory. + + Returns + -------- + `pandas.DataFrame` + Contains time intervals and first time step of these intervals with worst grid + violations for given timeframe. Also contains information of how many lines and + transformers have had their worst violation within the considered timeframes. + """ + # Run power flow if not available + if edisgo_obj.results.i_res is None or edisgo_obj.results.i_res.empty: + logger.debug("Running initial power flow") + edisgo_obj.analyze(raise_not_converged=False) # Todo: raise warning? + + # Select most critical time intervalls based on current violations + loading_scores = _scored_most_critical_loading_time_interval( + edisgo_obj, window_days + ) + if num_ti_loading is None: + num_ti_loading = int(np.ceil(len(loading_scores.OL_ts) * percentage)) + else: + if num_ti_loading > len(loading_scores.OL_ts): + logger.info( + f"The number of time intervals with highest overloading " + f"({len(loading_scores.OL_ts)}) is lower than the defined number of " + f"loading time intervals ({num_ti_loading}). Therefore, only " + f"{len(loading_scores.OL_ts)} time intervals are exported." + ) + num_ti_loading = len(loading_scores.OL_ts) + steps = loading_scores.iloc[:num_ti_loading] + + # Select most critical steps based on voltage violations + voltage_scores = _scored_most_critical_voltage_issues_time_interval( + edisgo_obj, window_days + ) + if num_ti_voltage is None: + num_ti_voltage = int(np.ceil(len(voltage_scores.V_ts) * percentage)) + else: + if num_ti_voltage > len(voltage_scores.V_ts): + logger.info( + f"The number of time steps with highest voltage issues " + f"({len(voltage_scores.V_ts)}) is lower than the defined number of " + f"voltage time steps ({num_ti_voltage}). Therefore, only " + f"{len(voltage_scores.V_ts)} time steps are exported." + ) + num_ti_voltage = len(voltage_scores.V_ts) + steps = pd.concat([steps, voltage_scores.iloc[:num_ti_voltage]], axis=1) + + if len(steps) == 0: + logger.warning("No critical steps detected. No network expansion required.") + + if save_steps: + abs_path = os.path.abspath(path) + steps.to_csv( + os.path.join( + abs_path, + str(edisgo_obj.topology.id) + "_t" + str(window_days * 24 + 1) + ".csv", + ) + ) + return steps + + def get_linked_steps(cluster_params, num_steps=24, keep_steps=[]): """ Use provided data to identify representative time steps and create mapping @@ -305,3 +638,149 @@ def get_representative(center, values): linked_steps[step + 1] = representatives[cluster_id] + 1 return linked_steps + + +def distribute_overlying_grid_timeseries(edisgo_obj): + """ + Distributes overlying grid timeseries of flexibilities for temporal complexity + reduction. + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + + Returns + -------- + :class:`~.EDisGo` + Contains adjusted timeseries for flexibilities. + """ + edisgo_copy = deepcopy(edisgo_obj) + if not edisgo_copy.overlying_grid.electromobility_active_power.empty: + cp_loads = edisgo_obj.topology.loads_df.index[ + edisgo_obj.topology.loads_df.type == "charging_point" + ] + # scale flexibility band upper power timeseries + scaling_df = ( + edisgo_obj.electromobility.flexibility_bands["upper_power"].transpose() + / edisgo_obj.electromobility.flexibility_bands["upper_power"].sum(axis=1) + ).transpose() + edisgo_copy.timeseries._loads_active_power.loc[:, cp_loads] = ( + scaling_df.transpose() + * edisgo_obj.overlying_grid.storage_units_active_power + ).transpose() + if not edisgo_copy.overlying_grid.storage_units_active_power.empty: + scaling_factor = ( + edisgo_obj.topology.storage_units_df.p_nom + / edisgo_obj.topology.storage_units_df.p_nom.sum() + ) + scaling_df = pd.DataFrame( + columns=scaling_factor.index, + index=edisgo_copy.timeseries.timeindex, + data=pd.concat( + [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 + ) + .transpose() + .values, + ) + edisgo_copy.timeseries._storage_units_active_power = ( + scaling_df.transpose() + * edisgo_obj.overlying_grid.storage_units_active_power + ).transpose() + if not edisgo_copy.overlying_grid.heat_pump_central_active_power.empty: + hp_district = edisgo_obj.topology.loads_df[ + (edisgo_obj.topology.loads_df.type == "heat_pump") + & (edisgo_obj.topology.loads_df.sector == "district_heating") + ] + scaling_factor = hp_district.p_set / hp_district.p_set.sum() + scaling_df = pd.DataFrame( + columns=scaling_factor.index, + index=edisgo_copy.timeseries.timeindex, + data=pd.concat( + [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 + ) + .transpose() + .values, + ) + edisgo_copy.timeseries._loads_active_power.loc[:, hp_district.index] = ( + scaling_df.transpose() + * edisgo_obj.overlying_grid.heat_pump_central_active_power.sum(axis=1)[0] + ).transpose() + + if not edisgo_copy.overlying_grid.heat_pump_decentral_active_power.empty: + hp_individual = edisgo_obj.topology.loads_df.index[ + (edisgo_obj.topology.loads_df.type == "heat_pump") + & (edisgo_obj.topology.loads_df.sector == "individual_heating") + ] + # scale with heat pump upper power + scaling_factor = ( + edisgo_obj.topology.loads_df.p_set.loc[hp_individual] + / edisgo_obj.topology.loads_df.p_set.loc[hp_individual].sum() + ) + scaling_df = pd.DataFrame( + columns=scaling_factor.index, + index=edisgo_copy.timeseries.timeindex, + data=pd.concat( + [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 + ) + .transpose() + .values, + ) + edisgo_copy.timeseries._loads_active_power.loc[:, hp_individual] = ( + scaling_df.transpose() + * edisgo_obj.overlying_grid.heat_pump_decentral_active_power + ).transpose() + if not edisgo_copy.overlying_grid.dsm_active_power.empty: + try: + dsm_loads = edisgo_copy.dsm.p_max.columns + scaling_df_max = ( + edisgo_copy.dsm.p_max.transpose() / edisgo_copy.dsm.p_max.sum(axis=1) + ).transpose() + scaling_df_min = ( + edisgo_copy.dsm.p_min.transpose() / edisgo_copy.dsm.p_min.sum(axis=1) + ).transpose() + edisgo_copy.timeseries._loads_active_power.loc[:, dsm_loads] = ( + edisgo_obj.timeseries._loads_active_power.loc[:, dsm_loads] + + ( + scaling_df_min.transpose() + * edisgo_obj.overlying_grid.dsm_active_power.clip(upper=0) + ).transpose() + + ( + scaling_df_max.transpose() + * edisgo_obj.overlying_grid.dsm_active_power.clip(lower=0) + ).transpose() + ) + except AttributeError: + logger.warning( + "'EDisGo' object has no attribute 'dsm'. DSM timeseries from" + " overlying grid can not be distributed." + ) + if not edisgo_copy.overlying_grid.renewables_curtailment.empty: + for res in ["solar", "wind"]: + gens = edisgo_obj.topology.generators_df.index[ + edisgo_obj.topology.generators_df.type == res + ] + gen_per_ts = edisgo_obj.timeseries.generators_active_power.loc[:, gens].sum( + axis=1 + ) + scaling_factor = ( + ( + edisgo_obj.timeseries.generators_active_power.loc[ + :, gens + ].transpose() + * 1 + / gen_per_ts + ) + .transpose() + .fillna(0) + ) + curtailment = ( + scaling_factor.transpose() + * edisgo_obj.overlying_grid.renewables_curtailment[res] + ).transpose() + edisgo_copy.timeseries._generators_active_power.loc[:, gens] = ( + edisgo_obj.timeseries.generators_active_power.loc[:, gens] - curtailment + ) + + edisgo_copy.set_time_series_reactive_power_control() + return edisgo_copy diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index cd6b42c6f..ced0eef85 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -1,10 +1,16 @@ import numpy as np + +# import pandas as pd import pytest from edisgo import EDisGo from edisgo.opf.timeseries_reduction import ( _scored_most_critical_loading, + _scored_most_critical_loading_time_interval, _scored_most_critical_voltage_issues, + _scored_most_critical_voltage_issues_time_interval, + distribute_overlying_grid_timeseries, + get_steps_flex_opf, get_steps_reinforcement, ) @@ -15,6 +21,43 @@ def setup_class(self): self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) self.edisgo.set_time_series_worst_case_analysis() self.timesteps = self.edisgo.timeseries.timeindex + # timeindex = pd.date_range("1/1/2018", periods=168, freq="H") + # gens_ts = pd.DataFrame( + # data={ + # "GeneratorFluctuating_15": pd.concat( + # [pd.Series([2.0, 5.0, 6.0])] * 56).values, + # "GeneratorFluctuating_24": pd.concat( + # [pd.Series([4.0, 7.0, 8.0])] * 56).values, + # }, + # index=timeindex, + # ) + # loads_ts = pd.DataFrame( + # data={ + # "Load_residential_LVGrid_5_3": pd.concat( + # [pd.Series([2.0, 5.0, 6.0])] * 56, axis=1 + # ).transpose() + # .values, + # }, + # index=timeindex, + # ) + # storage_units_ts = pd.DataFrame( + # data={ + # "Storage_1": pd.concat( + # [pd.Series([4.0, 7.0, 8.0])] * 56, axis=1 + # ).transpose() + # .values, + # }, + # index=timeindex, + # ) + # + # # ToDo: add DSM, heatpump, emob, OG + # + # self.edisgo.set_time_series_manual( + # generators_p=gens_ts, + # generators_q=gens_ts, + # loads_p=loads_ts, + # storage_units_q=storage_units_ts, + # ) @pytest.fixture(autouse=True) def run_power_flow(self): @@ -55,3 +98,43 @@ def test_get_steps_reinforcement(self): assert len(ts_crit) == 3 assert (ts_crit == self.timesteps[[0, 1, 3]]).all() + + def test__scored_most_critical_loading_time_interval(self): + + ts_crit = _scored_most_critical_loading_time_interval(self.edisgo, 1) + + assert len(ts_crit) == 3 + + assert (ts_crit.index == self.timesteps[[0, 1, 3]]).all() + + assert ( + np.isclose(ts_crit[self.timesteps[[0, 1, 3]]], [1.45613, 1.45613, 1.14647]) + ).all() + + def test__scored_most_critical_voltage_issues_time_interval(self): + + ts_crit = _scored_most_critical_voltage_issues_time_interval(self.edisgo) + + assert len(ts_crit) == 2 + + assert (ts_crit.index == self.timesteps[[0, 1]]).all() + + assert ( + np.isclose(ts_crit[self.timesteps[[0, 1]]], [0.01062258, 0.01062258]) + ).all() + + def test_get_steps_flex_opf(self): + + ts_crit = get_steps_flex_opf(self.edisgo) + + assert len(ts_crit) == 3 + + assert (ts_crit == self.timesteps[[0, 1, 3]]).all() + + def test_distribute_overlying_grid_timeseries(self): + + ts_crit = distribute_overlying_grid_timeseries(self.edisgo) + + assert len(ts_crit) == 3 + + assert (ts_crit == self.timesteps[[0, 1, 3]]).all() From 0958af2ca4720d0877106a56f5506b5e3facde1c Mon Sep 17 00:00:00 2001 From: Maike Held Date: Tue, 11 Apr 2023 14:16:09 +0200 Subject: [PATCH 223/355] Minor change --- tests/conftest.py | 4 ++++ tests/opf/test_timeseries_reduction.py | 18 ++++++++++++++---- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index b92428ed5..73c551c3d 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -20,6 +20,10 @@ def pytest_configure(config): pytest.ding0_test_network_3_path = os.path.join( os.path.realpath(os.path.dirname(__file__)), "data/ding0_test_network_3" ) + # real ding0 grid containing new egon data like flexibilities + pytest.ding0_test_network_4_path = os.path.join( + os.path.realpath(os.path.dirname(__file__)), "data/ding0_test_network_4.zip" + ) pytest.simbev_example_scenario_path = os.path.join( os.path.realpath(os.path.dirname(__file__)), "data/simbev_example_scenario" diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index ced0eef85..a843028fa 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -3,7 +3,8 @@ # import pandas as pd import pytest -from edisgo import EDisGo +# from edisgo import EDisGo +from edisgo.edisgo import import_edisgo_from_files from edisgo.opf.timeseries_reduction import ( _scored_most_critical_loading, _scored_most_critical_loading_time_interval, @@ -18,9 +19,18 @@ class TestTimeseriesReduction: @classmethod def setup_class(self): - self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) - self.edisgo.set_time_series_worst_case_analysis() - self.timesteps = self.edisgo.timeseries.timeindex + # self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + # self.edisgo.set_time_series_worst_case_analysis() + # self.timesteps = self.edisgo.timeseries.timeindex + self.edisgo = import_edisgo_from_files( + pytest.ding0_test_network_4_path, + import_timeseries=True, + import_electromobility=True, + import_heat_pump=True, + import_dsm=True, + import_overlying_grid=True, + from_zip_archive=True, + ) # timeindex = pd.date_range("1/1/2018", periods=168, freq="H") # gens_ts = pd.DataFrame( # data={ From 1d0e4e0f4b4f299d3064c74c72e0e8988416ba09 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 11:30:33 +0200 Subject: [PATCH 224/355] Change import --- .../test_spatial_complexity_reduction.py | 27 +++++++------------ 1 file changed, 10 insertions(+), 17 deletions(-) diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index 6460fd831..559a58b89 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -6,14 +6,7 @@ from edisgo import EDisGo from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates -from edisgo.tools.spatial_complexity_reduction import ( - make_busmap, - make_grid_list, - reduce_edisgo, - remove_lines_under_one_meter, - remove_one_meter_lines, - spatial_complexity_reduction, -) +from edisgo.tools import spatial_complexity_reduction class TestSpatialComplexityReduction: @@ -27,7 +20,7 @@ def test_edisgo_obj(self): @pytest.fixture(scope="class") def test_busmap_df(self, test_edisgo_obj): - busmap_df = make_busmap( + busmap_df = spatial_complexity_reduction.make_busmap( test_edisgo_obj, mode="kmeansdijkstra", cluster_area="main_feeder", @@ -179,7 +172,7 @@ def test_make_busmap( edisgo_root = copy.deepcopy(test_edisgo_obj) with test_exception: - busmap_df = make_busmap( + busmap_df = spatial_complexity_reduction.make_busmap( edisgo_root, mode=mode, cluster_area=cluster_area, @@ -213,11 +206,11 @@ def test_make_busmap_for_only_one_grid( edisgo_root = copy.deepcopy(test_edisgo_obj) if grid == "MVGrid": - grid = make_grid_list(edisgo_root, grid="MVGrid_1")[0] + grid = spatial_complexity_reduction.make_grid_list(edisgo_root, grid="MVGrid_1")[0] elif grid == "LVGrid": - grid = make_grid_list(edisgo_root, grid="LVGrid_9")[0] + grid = spatial_complexity_reduction.make_grid_list(edisgo_root, grid="LVGrid_9")[0] - busmap_df = make_busmap( + busmap_df = spatial_complexity_reduction.make_busmap( edisgo_root, mode="kmeans", grid=grid, @@ -267,7 +260,7 @@ def test_reduce_edisgo( assert edisgo_root.topology.transformers_df.shape[0] == 14 assert edisgo_root.topology.switches_df.shape[0] == 2 - edisgo_reduced, linemap_df = reduce_edisgo( + edisgo_reduced, linemap_df = spatial_complexity_reduction.reduce_edisgo( edisgo_root, busmap_df, line_naming_convention=line_naming_convention, @@ -308,7 +301,7 @@ def test_reduce_edisgo( def test_spatial_complexity_reduction(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) - edisgo_reduced, busmap_df, linemap_df = spatial_complexity_reduction( + edisgo_reduced, busmap_df, linemap_df = spatial_complexity_reduction.spatial_complexity_reduction( edisgo_root, mode="kmeans", cluster_area="grid", @@ -326,7 +319,7 @@ def test_spatial_complexity_reduction(self, test_edisgo_obj): def test_remove_one_meter_lines(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) - edisgo_clean = remove_one_meter_lines(edisgo_root) + edisgo_clean = spatial_complexity_reduction.remove_one_meter_lines(edisgo_root) # Check that the generator changed the bus df_old = edisgo_root.topology.generators_df @@ -350,7 +343,7 @@ def test_remove_one_meter_lines(self, test_edisgo_obj): def test_remove_lines_under_one_meter(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) - edisgo_clean = remove_lines_under_one_meter(edisgo_root) + edisgo_clean = spatial_complexity_reduction.remove_lines_under_one_meter(edisgo_root) # Check that 1 line was removed assert len(edisgo_root.topology.lines_df) - 1 == len( From af5d8a39cb91343f1beac129fc32229aec15dca4 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 11:31:51 +0200 Subject: [PATCH 225/355] Bug fix - due to clustering primary sides of different stations can be the same --- edisgo/flex_opt/check_tech_constraints.py | 27 ++++++++--------------- 1 file changed, 9 insertions(+), 18 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 6628f4c6e..b34ca2ff1 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -1038,22 +1038,21 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): upper_limits_df = pd.DataFrame() lower_limits_df = pd.DataFrame() - buses_in_pfa = edisgo_obj.results.v_res.columns + voltages_pfa = edisgo_obj.results.v_res + buses_in_pfa = voltages_pfa.columns if mode == "stations": config_string = "mv_lv_station" - # get all primary and secondary sides - primary_sides = pd.Series() - secondary_sides = pd.Series() + # get base voltage (voltage at primary side) for each station + voltage_base = pd.DataFrame() for grid in lv_grids: - primary_side = grid.transformers_df.iloc[0].bus0 + transformers_df = grid.transformers_df + primary_side = transformers_df.iloc[0].bus0 + secondary_side = transformers_df.iloc[0].bus1 if primary_side in buses_in_pfa: - primary_sides[grid] = primary_side - secondary_sides[grid] = grid.station.index[0] - - voltage_base = edisgo_obj.results.v_res.loc[:, primary_sides.values] + voltage_base[secondary_side] = voltages_pfa.loc[:, primary_side] upper_limits_df = ( voltage_base @@ -1067,14 +1066,6 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): "{}_max_v_drop".format(config_string) ] ) - - # rename columns to secondary side - rename_dict = { - primary_sides[g]: secondary_sides[g] for g in primary_sides.keys() - } - upper_limits_df.rename(columns=rename_dict, inplace=True) - lower_limits_df.rename(columns=rename_dict, inplace=True) - else: config_string = "lv" @@ -1089,7 +1080,7 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): grid.station.index[0] ) - voltage_base = edisgo_obj.results.v_res.loc[:, secondary_sides.values] + voltage_base = voltages_pfa.loc[:, secondary_sides.values] upper_limits_df_tmp = ( voltage_base From 396d2fc04687a051cb5beddb8cee771275abad27 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 11:39:40 +0200 Subject: [PATCH 226/355] Adapt to new check_tech_constraints functions --- edisgo/tools/spatial_complexity_reduction.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 7f654f416..56b51ab87 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -98,21 +98,19 @@ def find_buses_of_interest(edisgo_root: EDisGo) -> set: edisgo_obj.analyze() buses_of_interest = set() - mv_lines = checks.mv_line_load(edisgo_obj) - lv_lines = checks.lv_line_load(edisgo_obj) + mv_lines = checks.mv_line_max_relative_overload(edisgo_obj) + lv_lines = checks.lv_line_max_relative_overload(edisgo_obj) lines = mv_lines.index.tolist() lines = lines + lv_lines.index.tolist() for line in lines: buses_of_interest.add(edisgo_obj.topology.lines_df.loc[line, "bus0"]) buses_of_interest.add(edisgo_obj.topology.lines_df.loc[line, "bus1"]) - mv_buses = checks.mv_voltage_deviation(edisgo_obj, voltage_levels="mv") - for value in mv_buses.values(): - buses_of_interest.update(value.index.tolist()) + mv_buses = checks.voltage_issues(edisgo_obj, voltage_level="mv") + buses_of_interest.update(mv_buses.index.tolist()) - lv_buses = checks.lv_voltage_deviation(edisgo_obj, voltage_levels="lv") - for value in lv_buses.values(): - buses_of_interest.update(value.index.tolist()) + lv_buses = checks.voltage_issues(edisgo_obj, voltage_level="lv") + buses_of_interest.update(lv_buses.index.tolist()) logger.debug("Finished in {}s".format(time() - start_time)) return buses_of_interest From fb4cef0e6a7779a229ada61780519ba13c51d68a Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 11:47:00 +0200 Subject: [PATCH 227/355] Adapt functions to compare voltage and apparent power after clustering --- edisgo/tools/spatial_complexity_reduction.py | 280 +++++++----------- .../test_spatial_complexity_reduction.py | 63 +++- 2 files changed, 157 insertions(+), 186 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 56b51ab87..31f10ba29 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -1,10 +1,12 @@ +from __future__ import annotations + import copy import logging import math from hashlib import md5 from time import time -from typing import Tuple, Union +from typing import TYPE_CHECKING import networkx as nx import numpy as np @@ -15,7 +17,6 @@ from sklearn.cluster import KMeans from sklearn.metrics import mean_squared_error -from edisgo import EDisGo from edisgo.flex_opt import check_tech_constraints as checks from edisgo.network import timeseries from edisgo.network.grids import Grid @@ -23,8 +24,10 @@ logger = logging.getLogger(__name__) +if TYPE_CHECKING: + from edisgo import EDisGo + -# region Used functions def hash_df(df: DataFrame) -> str: """Calculate hash from busmap, good to check if dataframe has the same content.""" s = df.to_json() @@ -173,9 +176,6 @@ def rename_virtual_buses( return partial_busmap_df -# endregion - -# region Preprocessing def remove_one_meter_lines(edisgo_root: EDisGo) -> EDisGo: """ Remove one meter lines between the feeder and the buildings. This function is @@ -405,12 +405,9 @@ def apply_busmap(series): return edisgo_obj -# endregion - -# region Complexity reduction def make_busmap_from_clustering( edisgo_root: EDisGo, - grid: Union[None, str] = None, + grid: None | str = None, mode: str = None, reduction_factor: float = 0.25, preserve_trafo_bus_coordinates: bool = True, @@ -617,10 +614,10 @@ def rename_new_buses(series): def make_busmap_from_feeders( edisgo_root: EDisGo = None, - grid: Union[None, Grid] = None, + grid: None | Grid = None, mode: str = None, reduction_factor: float = 0.25, - reduction_factor_not_focused: Union[bool, float] = False, + reduction_factor_not_focused: bool | float = False, ) -> DataFrame: """ Making busmap for the cluster area 'feeder'. @@ -873,10 +870,10 @@ def transform_coordinates_back(ser): def make_busmap_from_main_feeders( edisgo_root: EDisGo = None, - grid: Union[None, Grid] = None, + grid: None | Grid = None, mode: str = None, reduction_factor: float = 0.25, - reduction_factor_not_focused: Union[bool, float] = False, + reduction_factor_not_focused: bool | float = False, ) -> DataFrame: """ Making busmap for the cluster area 'main_feeder'. @@ -1292,8 +1289,8 @@ def make_busmap( mode: str = None, cluster_area: str = None, reduction_factor: float = 0.25, - reduction_factor_not_focused: Union[bool, float] = False, - grid: Union[None, Grid] = None, + reduction_factor_not_focused: bool | float = False, + grid: None | Grid = None, ) -> DataFrame: """ Wrapper around the different make_busmap methods for the different cluster areas. @@ -1449,7 +1446,7 @@ def reduce_edisgo( aggregation_mode: bool = True, load_aggregation_mode: str = "sector", generator_aggregation_mode: str = "type", -) -> Tuple[EDisGo, DataFrame]: +) -> tuple[EDisGo, DataFrame]: """ Function to reduce the EDisGo object with a previously generated busmap. @@ -1494,7 +1491,7 @@ def reduce_edisgo( In parts based on PyPSA spatial complexity reduction `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` """ - # region Define local functions + def apply_busmap_on_busmap_df(series): series.loc["bus"] = busmap_df.loc[series.name, "new_bus"] series.loc["x"] = busmap_df.loc[series.name, "new_x"] @@ -1711,9 +1708,6 @@ def apply_busmap_on_transformers_df(series): series.loc["bus1"] = busmap_df.loc[series.loc["bus1"], "new_bus"] return series - # endregion - - # region Reduce EDisGO object start_time = time() logger.info("Start - Reducing edisgo object") @@ -1887,7 +1881,6 @@ def apply_busmap_on_transformers_df(series): linemap_df.loc[old_line_name, "new_line_name"] = new_line_name logger.info("Finished in {}s".format(time() - start_time)) - # endregion return edisgo_obj, linemap_df @@ -1897,9 +1890,9 @@ def spatial_complexity_reduction( mode: str = "kmeansdijkstra", cluster_area: str = "feeder", reduction_factor: float = 0.5, - reduction_factor_not_focused: Union[float, bool] = 0.2, + reduction_factor_not_focused: float | bool = 0.2, apply_pseudo_coordinates: bool = True, -) -> Tuple[EDisGo, DataFrame, DataFrame]: +) -> tuple[EDisGo, DataFrame, DataFrame]: """ Wrapper around the functions :func:`make_busmap` and :func:`reduce_edisgo ` @@ -1929,133 +1922,60 @@ def spatial_complexity_reduction( return edisgo_reduced, busmap_df, linemap_df -# endregion - -# region Postprocessing/Evaluation -def save_results_reduced_to_min_max( - edisgo_root: EDisGo, edisgo_object_name: str -) -> EDisGo: - """ - Save only the biggest and smallest value of the results DataFrames (v_res, i_res, - pfa_p, pfa_q), because they are most important for evaluating the violation of - operating limits. - - Parameters - ---------- - edisgo_root: :obj:`EDisGo` - EDisGo object to save. - edisgo_object_name: :obj:`str` - The path with name to save the object. - """ - edisgo_obj = copy.deepcopy(edisgo_root) - - def min_max(df): - min_df = df.min() - min_df.name = "min" - max_df = df.max() - max_df.name = "max" - - df = pd.concat([min_df, max_df], axis=1) - df = df.T - return df - - start_time = time() - logger.info("Start - Reduce results to min and max") - - edisgo_obj.results.v_res = min_max(edisgo_obj.results.v_res) - edisgo_obj.results.i_res = min_max(edisgo_obj.results.i_res) - edisgo_obj.results.pfa_p = min_max(edisgo_obj.results.pfa_p) - edisgo_obj.results.pfa_q = min_max(edisgo_obj.results.pfa_q) - - edisgo_obj.save( - edisgo_object_name, save_results=True, save_topology=True, save_timeseries=False - ) - - logger.info("Finished in {}s".format(time() - start_time)) - return edisgo_obj - - -# Analyze results -def length_analysis(edisgo_obj: EDisGo) -> Tuple[float, float, float]: - """Calculates the line length in the grid_districts and voltage levels. - - Parameters - ---------- - edisgo_obj: :obj:`EDisGo` - EDisGo object to analyze. - - Returns - ------- - length_total: :obj:`float` - Total line length of the grid district. - length_mv: :obj:`float` - Total line length of the MV grid. - length_lv: :obj:`float` - Total line length of all LV grids. - """ - start_time = time() - logger.info("Start - Length analysis") - - length_total = edisgo_obj.topology.lines_df.length.sum() - mv_grid = edisgo_obj.topology.mv_grid - length_mv = mv_grid.lines_df.length.sum() - length_lv = length_total - length_mv - - logger.info("Total length of lines: {:.2f}km".format(length_total)) - logger.info("Total length of mv lines: {:.2f}km".format(length_mv)) - logger.info("Total length of lv lines: {:.2f}km".format(length_lv)) - - logger.info("Finished in {}s".format(time() - start_time)) - return length_total, length_mv, length_lv - - -def voltage_mapping( - edisgo_root: EDisGo, edisgo_reduced: EDisGo, busmap_df: DataFrame, timestep: str -) -> Tuple[DataFrame, float]: +def compare_voltage( + edisgo_unreduced: EDisGo, + edisgo_reduced: EDisGo, + busmap_df: DataFrame, + timestep: str | pd.Timestamp, +) -> tuple[DataFrame, float]: """ - Maps the results of the node voltages between the root object and the reduced - object. For the mapping the busmap is used. It is calculated the voltage - difference and the root-mean-square error. + Compares the voltages per node between the unreduced and the reduced EDisGo object. - The calculation is performed for one timestep or the min or max values of the - node voltages. + The voltage difference for each node in p.u. as well as the root-mean-square error + is returned. For the mapping of nodes in the unreduced and reduced network the + busmap is used. + The calculation is performed for one timestep or the minimum or maximum values of + the node voltages. Parameters ---------- - edisgo_root: :obj:`EDisGo` + edisgo_unreduced : :class:`~.EDisGo` Unreduced EDisGo object. - edisgo_reduced: :obj:`EDisGo` + edisgo_reduced : :class:`~.EDisGo` Reduced EDisGo object. - busmap_df: :obj:`pd.DataFrame` - Busmap for the mapping. - timestep: :obj:`str` - Select a timestep or 'min' or 'max'. + busmap_df : :pandas:`pandas.DataFrame` + Busmap for the mapping of nodes. + timestep : str or :pandas:`pandas.Timestamp` + Timestep for which to compare the bus voltage. Can either be a certain time + step or 'min' or 'max'. Returns ------- - voltages_df: :obj:`pd.DataFrame` - DataFrame with the voltages of the nodes and the differences. - rms: :obj:`str` - Calculated root-mean-square error. + (:pandas:`pandas.DataFrame`, rms) + Returns a tuple with the first entry being a DataFrame containing the node + voltages as well as voltage differences and the second entry being the + root-mean-square error. + Columns of the DataFrame are "v_unreduced" with voltage in p.u. in unreduced + EDisGo object, "v_reduced" with voltage in p.u. in reduced EDisGo object, and + "v_diff" with voltage difference in p.u. between voltages in unreduced and + reduced EDisGo object. Index of the DataFrame contains the bus names of buses in + the unreduced EDisGo object. """ - start_time = time() - logger.info("Start - Voltage mapping") - if timestep == "min": - logger.info("Voltage mapping for the minium values") - v_root = edisgo_root.results.v_res.min() + logger.debug("Voltage mapping for the minium values.") + v_root = edisgo_unreduced.results.v_res.min() v_reduced = edisgo_reduced.results.v_res.min() elif timestep == "max": - logger.info("Voltage mapping for the maximum values") - v_root = edisgo_root.results.v_res.max() + logger.debug("Voltage mapping for the maximum values.") + v_root = edisgo_unreduced.results.v_res.max() v_reduced = edisgo_reduced.results.v_res.max() else: - logger.info("Voltage mapping for timestep {}".format(timestep)) - v_root = edisgo_root.results.v_res.loc[timestep] + logger.debug(f"Voltage mapping for timestep {timestep}.") + v_root = edisgo_unreduced.results.v_res.loc[timestep] v_reduced = edisgo_reduced.results.v_res.loc[timestep] - v_root.name = "v_root" + v_root.name = "v_unreduced" v_root = v_root.loc[busmap_df.index] voltages_df = v_root.to_frame() @@ -2065,94 +1985,92 @@ def voltage_mapping( voltages_df.loc[index, "v_reduced"] = v_reduced.loc[ busmap_df.loc[index, "new_bus"] ] - voltages_df.loc[index, "new_bus_name"] = busmap_df.loc[index, "new_bus"] except KeyError: voltages_df.loc[index, "v_reduced"] = v_reduced.loc[ busmap_df.loc[index, "new_bus"].lstrip("virtual_") ] - voltages_df.loc[index, "new_bus_name"] = busmap_df.loc[ - index, "new_bus" - ].lstrip("virtual_") voltages_df.loc[:, "v_diff"] = ( - voltages_df.loc[:, "v_root"] - voltages_df.loc[:, "v_reduced"] + voltages_df.loc[:, "v_unreduced"] - voltages_df.loc[:, "v_reduced"] ) rms = np.sqrt( mean_squared_error( - voltages_df.loc[:, "v_root"], voltages_df.loc[:, "v_reduced"] + voltages_df.loc[:, "v_unreduced"], voltages_df.loc[:, "v_reduced"] ) ) - logger.info( - "Root mean square value between edisgo_root " - "voltages and edisgo_reduced: v_rms = {:.2%}".format(rms) + logger.debug( + "Root-mean-square error between voltages in unreduced and reduced " + "EDisGo object is: rms = {:.2%}".format(rms) ) - - logger.info("Finished in {}s".format(time() - start_time)) return voltages_df, rms -def line_apparent_power_mapping( - edisgo_root: EDisGo, edisgo_reduced: EDisGo, linemap_df: DataFrame, timestep: str -) -> Tuple[DataFrame, float]: +def compare_apparent_power( + edisgo_unreduced: EDisGo, + edisgo_reduced: EDisGo, + linemap_df: DataFrame, + timestep: str, +) -> tuple[DataFrame, float]: """ - Maps the results of the line loads between the root object and the reduced - object. For the mapping the linemap is used. It is calculated the apparent power - difference and the root-mean-square error. + Compares the apparent power over each line between the unreduced and the reduced + EDisGo object. - The calculation is performed for one timestep or the min or max values of the - line loads (apparent power). + The difference of apparent power over each line in MVA as well as the + root-mean-square error is returned. For the mapping of lines in the unreduced and + reduced network the linemap is used. + The calculation is performed for one timestep or the minimum or maximum values of + the node voltages. Parameters ---------- - edisgo_root: :obj:`EDisGo` + edisgo_unreduced : :class:`~.EDisGo` Unreduced EDisGo object. - edisgo_reduced: :obj:`EDisGo` + edisgo_reduced : :class:`~.EDisGo` Reduced EDisGo object. - linemap_df: :obj:`pd.DataFrame` + linemap_df : :pandas:`pandas.DataFrame` Linemap for the mapping. - timestep: :obj:`str` - Select a timestep or 'min' or 'max'. + timestep : str or :pandas:`pandas.Timestamp` + Timestep for which to compare the apparent power. Can either be a certain time + step or 'min' or 'max'. Returns ------- - s_df: :obj:`pd.DataFrame` - DataFrame with the apparent power of the lines and the differences. - rms: :obj:`str` - Calculated root-mean-square error. + (:pandas:`pandas.DataFrame`, rms) + Returns a tuple with the first entry being a DataFrame containing the apparent + power as well as difference of apparent power for each line and the second entry + being the root-mean-square error. + Columns of the DataFrame are "s_unreduced" with apparent power in MVA in + unreduced EDisGo object, "s_reduced" with apparent power in MVA in reduced + EDisGo object, and "s_diff" with difference in apparent power in MVA between + apparent power over line in unreduced and reduced EDisGo object. Index of the + DataFrame contains the line names of lines in the unreduced EDisGo object. """ - start_time = time() - logger.info("Start - Line apparent power mapping") - if timestep == "min": - logger.info("Apparent power mapping for the minium values") - s_root = edisgo_root.results.s_res.min() + logger.debug("Apparent power mapping for the minium values.") + s_root = edisgo_unreduced.results.s_res.min() s_reduced = edisgo_reduced.results.s_res.min() elif timestep == "max": - logger.info("Apparent power mapping for the maximum values") - s_root = edisgo_root.results.s_res.max() + logger.debug("Apparent power mapping for the maximum values.") + s_root = edisgo_unreduced.results.s_res.max() s_reduced = edisgo_reduced.results.s_res.max() else: - logger.info("Apparent power mapping for timestep {}".format(timestep)) - s_root = edisgo_root.results.s_res.loc[timestep] + logger.debug("fApparent power mapping for timestep {timestep}.") + s_root = edisgo_unreduced.results.s_res.loc[timestep] s_reduced = edisgo_reduced.results.s_res.loc[timestep] - s_root.name = "s_root" + s_root.name = "s_unreduced" s_root = s_root.loc[linemap_df.index] s_df = s_root.to_frame() for index, row in s_df.iterrows(): s_df.loc[index, "s_reduced"] = s_reduced.loc[linemap_df.loc[index][0]] - s_df.loc[index, "new_bus_name"] = linemap_df.loc[index][0] - s_df.loc[:, "s_diff"] = s_df.loc[:, "s_root"] - s_df.loc[:, "s_reduced"] - rms = np.sqrt(mean_squared_error(s_df.loc[:, "s_root"], s_df.loc[:, "s_reduced"])) - logger.info( - "Root mean square value between edisgo_root " - "s_res and edisgo_reduced: s_rms = {:.2}".format(rms) + s_df.loc[:, "s_diff"] = s_df.loc[:, "s_unreduced"] - s_df.loc[:, "s_reduced"] + rms = np.sqrt( + mean_squared_error(s_df.loc[:, "s_unreduced"], s_df.loc[:, "s_reduced"]) + ) + logger.debug( + "Root-mean-square error between apparent power in unreduced and reduced " + "EDisGo object is: rms = {:.2}".format(rms) ) - - logger.info("Finished in {}s".format(time() - start_time)) return s_df, rms - - -# endregion diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index 559a58b89..f9b5313f9 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -2,11 +2,12 @@ from contextlib import nullcontext as does_not_raise +import numpy as np import pytest from edisgo import EDisGo -from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates from edisgo.tools import spatial_complexity_reduction +from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates class TestSpatialComplexityReduction: @@ -206,9 +207,13 @@ def test_make_busmap_for_only_one_grid( edisgo_root = copy.deepcopy(test_edisgo_obj) if grid == "MVGrid": - grid = spatial_complexity_reduction.make_grid_list(edisgo_root, grid="MVGrid_1")[0] + grid = spatial_complexity_reduction.make_grid_list( + edisgo_root, grid="MVGrid_1" + )[0] elif grid == "LVGrid": - grid = spatial_complexity_reduction.make_grid_list(edisgo_root, grid="LVGrid_9")[0] + grid = spatial_complexity_reduction.make_grid_list( + edisgo_root, grid="LVGrid_9" + )[0] busmap_df = spatial_complexity_reduction.make_busmap( edisgo_root, @@ -301,7 +306,11 @@ def test_reduce_edisgo( def test_spatial_complexity_reduction(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) - edisgo_reduced, busmap_df, linemap_df = spatial_complexity_reduction.spatial_complexity_reduction( + ( + edisgo_reduced, + busmap_df, + linemap_df, + ) = spatial_complexity_reduction.spatial_complexity_reduction( edisgo_root, mode="kmeans", cluster_area="grid", @@ -316,6 +325,48 @@ def test_spatial_complexity_reduction(self, test_edisgo_obj): edisgo_reduced.analyze() edisgo_reduced.reinforce() + def test_compare_voltage(self, test_edisgo_obj): + edisgo_root = copy.deepcopy(test_edisgo_obj) + + ( + edisgo_reduced, + busmap_df, + linemap_df, + ) = spatial_complexity_reduction.spatial_complexity_reduction( + edisgo_root, + mode="kmeans", + cluster_area="grid", + reduction_factor=0.2, + reduction_factor_not_focused=False, + ) + edisgo_root.analyze() + edisgo_reduced.analyze() + _, rms = spatial_complexity_reduction.compare_voltage( + edisgo_root, edisgo_reduced, busmap_df, "max" + ) + assert np.isclose(rms, 0.00766, atol=1e-5) + + def test_compare_apparent_power(self, test_edisgo_obj): + edisgo_root = copy.deepcopy(test_edisgo_obj) + + ( + edisgo_reduced, + busmap_df, + linemap_df, + ) = spatial_complexity_reduction.spatial_complexity_reduction( + edisgo_root, + mode="kmeans", + cluster_area="grid", + reduction_factor=0.2, + reduction_factor_not_focused=False, + ) + edisgo_root.analyze() + edisgo_reduced.analyze() + _, rms = spatial_complexity_reduction.compare_apparent_power( + edisgo_root, edisgo_reduced, linemap_df, "max" + ) + assert np.isclose(rms, 2.873394, atol=1e-5) + def test_remove_one_meter_lines(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) @@ -343,7 +394,9 @@ def test_remove_one_meter_lines(self, test_edisgo_obj): def test_remove_lines_under_one_meter(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) - edisgo_clean = spatial_complexity_reduction.remove_lines_under_one_meter(edisgo_root) + edisgo_clean = spatial_complexity_reduction.remove_lines_under_one_meter( + edisgo_root + ) # Check that 1 line was removed assert len(edisgo_root.topology.lines_df) - 1 == len( From a5c147d7edeef3a85c3515d16b75efb237367df0 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 11:54:10 +0200 Subject: [PATCH 228/355] Move hash function --- edisgo/tools/spatial_complexity_reduction.py | 7 ------- edisgo/tools/tools.py | 22 ++++++++++++++++++++ 2 files changed, 22 insertions(+), 7 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 31f10ba29..12f0747e6 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -4,7 +4,6 @@ import logging import math -from hashlib import md5 from time import time from typing import TYPE_CHECKING @@ -28,12 +27,6 @@ from edisgo import EDisGo -def hash_df(df: DataFrame) -> str: - """Calculate hash from busmap, good to check if dataframe has the same content.""" - s = df.to_json() - return md5(s.encode()).hexdigest() - - # Transform coordinates between the different coordinates systems # ToDo: The spatial complexity reduction forces the usage of EPSG:4326 and than # transforms to other coordinate systems if needed. Maybe write it more dynamically. diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index 01eafab6f..c3856806f 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -3,6 +3,7 @@ import logging import os +from hashlib import md5 from math import pi, sqrt from typing import TYPE_CHECKING @@ -959,3 +960,24 @@ def get_year_based_on_scenario(scenario): return 2045 else: return None + + +def hash_dataframe(df: pd.DataFrame) -> str: + """ + Get hash of dataframe. + + Can be used to check if dataframes have the same content. + + Parameters + ----------- + df : :pandas:`pandas.DataFrame` + DataFrame to hash. + + Returns + -------- + str + Hash of dataframe as string. + + """ + s = df.to_json() + return md5(s.encode()).hexdigest() From 40376d056f5f8a28fab30312eacbdcbcc5281d84 Mon Sep 17 00:00:00 2001 From: Jonas Jeckstadt Date: Wed, 12 Apr 2023 13:35:49 +0200 Subject: [PATCH 229/355] updated codebase to work with pandas 2.0 autoupdated pre-commit hooks --- .pre-commit-config.yaml | 10 +++++----- edisgo/network/timeseries.py | 19 ++++++++++-------- edisgo/tools/geopandas_helper.py | 4 ++++ edisgo/tools/plots.py | 9 ++------- setup.py | 2 +- tests/io/test_pypsa_io.py | 2 +- tests/network/test_electromobility.py | 3 +-- tests/network/test_timeseries.py | 28 +++------------------------ tests/network/test_topology.py | 21 ++++++++++---------- tests/test_edisgo.py | 7 +------ 10 files changed, 40 insertions(+), 65 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index af7bb3464..bb2612e60 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,25 +1,25 @@ repos: - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.3.0 + rev: v4.4.0 hooks: - id: check-yaml - id: end-of-file-fixer - id: trailing-whitespace - repo: https://github.com/psf/black - rev: 22.10.0 + rev: 23.3.0 hooks: - id: black - repo: https://github.com/pycqa/flake8 - rev: 5.0.4 + rev: 6.0.0 hooks: - id: flake8 - repo: https://github.com/pycqa/isort - rev: 5.10.1 + rev: 5.12.0 hooks: - id: isort name: isort (python) - repo: https://github.com/asottile/pyupgrade - rev: v3.2.0 + rev: v3.3.1 hooks: - id: pyupgrade #- repo: https://github.com/pycqa/pylint diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index ce3debad9..c073a4512 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -47,7 +47,6 @@ class TimeSeries: """ def __init__(self, **kwargs): - self._timeindex = kwargs.get("timeindex", pd.DatetimeIndex([])) self.time_series_raw = TimeSeriesRaw() @@ -657,9 +656,14 @@ def _overwrite_time_series(p, q, comp_type): periods=len(worst_cases), freq="H", ) - self.timeindex_worst_cases = self.timeindex_worst_cases.append( - pd.Series(time_stamps, index=worst_cases) + + self.timeindex_worst_cases = pd.concat( + [ + self.timeindex_worst_cases, + pd.Series(data=time_stamps, index=worst_cases), + ] ) + self.timeindex = self.timeindex.append(time_stamps) if generators_names is None: @@ -789,7 +793,7 @@ def _worst_case_generators(self, cases, df, configs): # get power scaling factors for different technologies, voltage levels and # feed-in/load case types = ["pv", "wind", "other"] - power_scaling = pd.DataFrame(columns=types) + power_scaling = pd.DataFrame(columns=types, dtype=float) for t in types: for case in cases: power_scaling.at[f"{case}_mv", t] = worst_case_scale_factors[ @@ -2153,8 +2157,8 @@ def _check_if_components_exist( f"concerns the following components: {comps_not_in_network}." ) - return set(component_names) - set(comps_not_in_network) - return component_names + return list(set(component_names) - set(comps_not_in_network)) + return list(component_names) def resample_timeseries( self, method: str = "ffill", freq: str | pd.Timedelta = "15min" @@ -2188,9 +2192,8 @@ def resample_timeseries( if pd.Timedelta(freq) < freq_orig: # up-sampling index = pd.date_range( self.timeindex[0], - self.timeindex[-1] + freq_orig, + self.timeindex[-1] + freq_orig - pd.Timedelta(freq), freq=freq, - closed="left", ) else: # down-sampling index = pd.date_range( diff --git a/edisgo/tools/geopandas_helper.py b/edisgo/tools/geopandas_helper.py index 83b08e20f..6c48a62e6 100644 --- a/edisgo/tools/geopandas_helper.py +++ b/edisgo/tools/geopandas_helper.py @@ -203,6 +203,10 @@ def to_geopandas(grid_obj: Grid): ), crs=f"EPSG:{srid}", ) + if components_dict[component.replace("_df", "_gdf")].empty: + components_dict[component.replace("_df", "_gdf")].index = components_dict[ + component.replace("_df", "_gdf") + ].index.astype(object) # convert lines_df lines_df = grid_obj.lines_df diff --git a/edisgo/tools/plots.py b/edisgo/tools/plots.py index 168b05cca..63dc1fcd4 100644 --- a/edisgo/tools/plots.py +++ b/edisgo/tools/plots.py @@ -31,7 +31,6 @@ from edisgo.network.grids import Grid if "READTHEDOCS" not in os.environ: - import geopandas as gpd from egoio.db_tables.grid import EgoDpMvGriddistrict @@ -188,7 +187,6 @@ def get_grid_district_polygon(config, subst_id=None, projection=4326): with session_scope() as session: # get polygon from versioned schema if config["data_source"]["oedb_data_source"] == "versioned": - version = config["versioned"]["version"] query = session.query( EgoDpMvGriddistrict.subst_id, EgoDpMvGriddistrict.geom @@ -1129,7 +1127,7 @@ def plot_line_text(): text += "
" + "Loading = " + str(s_res.loc[branch_name]) line_parameters = edisgo_obj.topology.lines_df.loc[branch_name, :] - for index, value in line_parameters.iteritems(): + for index, value in line_parameters.items(): text += "
" + str(index) + " = " + str(value) middle_node_text.append(text) @@ -1150,7 +1148,6 @@ def plot_line_text(): return [middle_node_scatter] def plot_lines(): - showscale = True if line_color == "loading": @@ -1176,7 +1173,6 @@ def plot_lines(): data_line_plot = [] for edge in G.edges(data=True): - x0, y0, x1, y1 = get_coordinates_for_edge(edge) edge_x = [x0 - x_root, x1 - x_root, None] edge_y = [y0 - y_root, y1 - y_root, None] @@ -1202,7 +1198,6 @@ def plot_lines(): .isin([branch_name]) .any() ): - color = "red" else: color = "black" @@ -1364,7 +1359,7 @@ def plot_buses(): text = text + "
" + "Neighbors = " + str(G.degree(node)) node_parameters = edisgo_obj.topology.buses_df.loc[node] - for index, value in node_parameters.iteritems(): + for index, value in node_parameters.items(): text += "
" + str(index) + " = " + str(value) node_text.append(text) diff --git a/setup.py b/setup.py index 213f6cd03..75849fe70 100644 --- a/setup.py +++ b/setup.py @@ -45,7 +45,7 @@ def read(fname): "matplotlib >= 3.3.0", "multiprocess", "networkx >= 2.5.0", - "pandas >= 1.2.0", + "pandas >= 2.0", "plotly", "pydot", "pygeos", diff --git a/tests/io/test_pypsa_io.py b/tests/io/test_pypsa_io.py index 297010b3f..14246f3e9 100644 --- a/tests/io/test_pypsa_io.py +++ b/tests/io/test_pypsa_io.py @@ -2,7 +2,7 @@ import pandas as pd import pytest -from pandas.util.testing import assert_frame_equal +from pandas.testing import assert_frame_equal from edisgo import EDisGo from edisgo.io import pypsa_io diff --git a/tests/network/test_electromobility.py b/tests/network/test_electromobility.py index d81f7e22b..2afeeb660 100644 --- a/tests/network/test_electromobility.py +++ b/tests/network/test_electromobility.py @@ -8,7 +8,7 @@ import pandas as pd import pytest -from pandas.util.testing import assert_frame_equal +from pandas.testing import assert_frame_equal from edisgo.edisgo import EDisGo from edisgo.io import electromobility_import @@ -156,7 +156,6 @@ def test_get_flexibility_bands(self): "Charging_Point_LVGrid_362451_public_1", "Charging_Point_LVGrid_136124_work_1", ]: - charging_park_id = integrated_charging_parks.loc[ integrated_charging_parks.edisgo_id == cp ].index diff --git a/tests/network/test_timeseries.py b/tests/network/test_timeseries.py index e785c388f..0328d49e5 100644 --- a/tests/network/test_timeseries.py +++ b/tests/network/test_timeseries.py @@ -8,11 +8,7 @@ import pandas as pd import pytest -from pandas.util.testing import ( - assert_frame_equal, - assert_index_equal, - assert_series_equal, -) +from pandas.testing import assert_frame_equal, assert_index_equal, assert_series_equal from edisgo import EDisGo from edisgo.network import timeseries @@ -45,7 +41,6 @@ def test_timeseries_getters(self, caplog): ) def test_set_active_power_manual(self): - # create dummy time series index_2 = pd.date_range("1/1/2018", periods=2, freq="H") index_3 = pd.date_range("1/1/2018", periods=3, freq="H") @@ -197,7 +192,6 @@ def test_set_active_power_manual(self): ) def test_set_reactive_power_manual(self): - # create dummy time series index_2 = pd.date_range("1/1/2018", periods=2, freq="H") index_3 = pd.date_range("1/1/2018", periods=3, freq="H") @@ -350,7 +344,6 @@ def test_set_reactive_power_manual(self): ) def test_set_worst_case(self): - # test - check if right functions are called for all components # change load types to have charging point, heat pump and load without set @@ -607,7 +600,6 @@ def test_set_worst_case(self): ).all() def test_worst_case_generators(self): - # ######### check both feed-in and load case df = assign_voltage_level_to_component( self.edisgo.topology.generators_df, self.edisgo.topology.buses_df @@ -745,7 +737,6 @@ def test_worst_case_generators(self): ) def test_worst_case_conventional_load(self): - # connect one load to MV self.edisgo.topology._loads_df.at[ "Load_agricultural_LVGrid_1_1", "bus" @@ -1142,7 +1133,6 @@ def test_worst_case_heat_pumps(self): ) def test_worst_case_storage_units(self): - # ######### check both feed-in and load case df = assign_voltage_level_to_component( self.edisgo.topology.storage_units_df, self.edisgo.topology.buses_df @@ -1245,7 +1235,6 @@ def test_worst_case_storage_units(self): @pytest.mark.slow def test_predefined_fluctuating_generators_by_technology(self): - timeindex = pd.date_range("1/1/2011 12:00", periods=2, freq="H") self.edisgo.timeseries.timeindex = timeindex @@ -1415,7 +1404,6 @@ def test_predefined_fluctuating_generators_by_technology(self): @pytest.mark.local def test_predefined_fluctuating_generators_by_technology_oedb(self): - edisgo_object = EDisGo( ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False ) @@ -1462,7 +1450,6 @@ def test_predefined_fluctuating_generators_by_technology_oedb(self): assert_series_equal(p_ts.loc[:, comp], exp, check_dtype=False, atol=1e-5) def test_predefined_dispatchable_generators_by_technology(self): - timeindex = pd.date_range("1/1/2011 12:00", periods=2, freq="H") self.edisgo.timeseries.timeindex = timeindex @@ -2044,9 +2031,9 @@ def test_residual_load(self): self.edisgo.topology.loads_df.p_set.sum() + self.edisgo.topology.storage_units_df.p_nom.sum() ) - assert np.isclose( + assert np.allclose( self.edisgo.timeseries.residual_load.loc[time_steps_load_case], peak_load - ).all() + ) time_steps_feedin_case = self.edisgo.timeseries.timeindex_worst_cases[ self.edisgo.timeseries.timeindex_worst_cases.index.str.contains("feed") ].values @@ -2074,7 +2061,6 @@ def test_timesteps_load_feedin_case(self): ).all() def test_reduce_memory(self): - self.edisgo.set_time_series_worst_case_analysis() # fmt: off self.edisgo.timeseries.time_series_raw.\ @@ -2125,7 +2111,6 @@ def test_reduce_memory(self): # fmt: on def test_to_csv(self): - timeindex = pd.date_range("1/1/2018", periods=2, freq="H") self.edisgo.set_timeindex(timeindex) @@ -2182,7 +2167,6 @@ def test_to_csv(self): shutil.rmtree(save_dir, ignore_errors=True) def test_from_csv(self): - timeindex = pd.date_range("1/1/2018", periods=2, freq="H") self.edisgo.set_timeindex(timeindex) @@ -2320,7 +2304,6 @@ def test_integrity_check(self, caplog): setattr(self.edisgo.timeseries, attr, ts_tmp) def test_drop_component_time_series(self): - time_series_obj = timeseries.TimeSeries() # check that no error is raised in case of empty dataframe @@ -2349,7 +2332,6 @@ def test_drop_component_time_series(self): assert time_series_obj.loads_active_power.empty def test_add_component_time_series(self): - time_series_obj = timeseries.TimeSeries() time_series_obj.timeindex = pd.date_range("1/1/2018", periods=4, freq="H") @@ -2406,7 +2388,6 @@ def test_check_if_components_exist(self): assert "Load_residential_LVGrid_5_3" in component_names def test_resample_timeseries(self): - self.edisgo.set_time_series_worst_case_analysis() len_timeindex_orig = len(self.edisgo.timeseries.timeindex) @@ -2502,7 +2483,6 @@ def setup_class(self): self.time_series_raw.q_control = self.q_control def test_reduce_memory(self): - # check with default value assert ( self.time_series_raw.conventional_loads_active_power_by_sector.dtypes @@ -2536,7 +2516,6 @@ def test_reduce_memory(self): ).all() def test_to_csv(self): - # test with default values save_dir = os.path.join(os.getcwd(), "timeseries_csv") self.time_series_raw.to_csv(save_dir) @@ -2564,7 +2543,6 @@ def test_to_csv(self): shutil.rmtree(save_dir, ignore_errors=True) def test_from_csv(self): - # write to csv save_dir = os.path.join(os.getcwd(), "timeseries_csv") self.time_series_raw.to_csv(save_dir, time_series_raw=True) diff --git a/tests/network/test_topology.py b/tests/network/test_topology.py index 1851e5723..aea49ba95 100644 --- a/tests/network/test_topology.py +++ b/tests/network/test_topology.py @@ -535,7 +535,6 @@ def test_check_bus_for_removal(self, caplog): assert return_value def test_check_line_for_removal(self, caplog): - # test warning if line does not exist msg = "Line of name TestLine not in Topology. Cannot be removed." with caplog.at_level(logging.WARNING): @@ -749,7 +748,6 @@ def test_remove_bus(self, caplog): assert bus_name not in self.topology.buses_df.index def test_update_number_of_parallel_lines(self): - line_1 = "Line_10026" line_2 = "Line_90000010" # manipulate number of parallel lines of line_2 @@ -789,7 +787,6 @@ def test_update_number_of_parallel_lines(self): ) def test_change_line_type(self): - # test line type not in equipment data line_1 = "Line_10027" msg = ( @@ -839,7 +836,6 @@ def test_change_line_type(self): ).all() def test_sort_buses(self): - lines_df_before = self.topology.lines_df.copy() self.topology.sort_buses() @@ -1200,7 +1196,6 @@ def test_connect_to_mv(self): assert "Storage" in self.edisgo.topology.storage_units_df.at[comp_name, "bus"] def test_connect_to_lv(self): - # ######### Generator ############# # test substation ID that does not exist in the grid @@ -1733,7 +1728,11 @@ def test_check_integrity(self, caplog): for comp, name in comps_dict.items(): new_comp = getattr(self.edisgo.topology, "_{}_df".format(comp)).loc[name] comps = getattr(self.edisgo.topology, "_{}_df".format(comp)) - setattr(self.edisgo.topology, "_{}_df".format(comp), comps.append(new_comp)) + setattr( + self.edisgo.topology, + "_{}_df".format(comp), + pd.concat([comps, new_comp.to_frame().T]), + ) # comps.append(new_comp)) self.edisgo.topology.check_integrity() assert ( f"{name} have duplicate entry in one of the following components' " @@ -1754,7 +1753,7 @@ def test_check_integrity(self, caplog): setattr( self.edisgo.topology, "_{}_df".format(nodal_component), - comps.append(new_comp), + pd.concat([comps, new_comp.to_frame().T]), ) self.edisgo.topology.check_integrity() assert ( @@ -1782,7 +1781,7 @@ def test_check_integrity(self, caplog): setattr( self.edisgo.topology, "_{}_df".format(branch_component), - comps.append(new_comp), + pd.concat([comps, new_comp.to_frame().T]), ) self.edisgo.topology.check_integrity() assert ( @@ -1802,7 +1801,7 @@ def test_check_integrity(self, caplog): for attr in ["bus_open", "bus_closed"]: new_comp = comps.loc[comps_dict["switches"]] new_comp.name = "new_switch" - new_comps = comps.append(new_comp) + new_comps = pd.concat([comps, new_comp.to_frame().T]) new_comps.at[new_comp.name, attr] = "Non_existent_" + attr self.edisgo.topology.switches_df = new_comps self.edisgo.topology.check_integrity() @@ -1819,7 +1818,9 @@ def test_check_integrity(self, caplog): # check isolated node bus = self.edisgo.topology.buses_df.loc[comps_dict["buses"]] bus.name = "New_bus" - self.edisgo.topology.buses_df = self.edisgo.topology.buses_df.append(bus) + self.edisgo.topology.buses_df = pd.concat( + [self.edisgo.topology.buses_df, bus.to_frame().T] + ) self.edisgo.topology.check_integrity() assert "The following buses are isolated: {}.".format(bus.name) in caplog.text assert "The network has isolated nodes or edges." in caplog.text diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 4c5ee592f..19ebf3faf 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -11,7 +11,7 @@ import pytest from matplotlib import pyplot as plt -from pandas.util.testing import assert_frame_equal, assert_series_equal +from pandas.testing import assert_frame_equal, assert_series_equal from shapely.geometry import Point from edisgo import EDisGo @@ -34,7 +34,6 @@ def setup_worst_case_time_series(self): self.edisgo.set_time_series_worst_case_analysis() def test_config_setter(self): - save_dir = os.path.join(os.getcwd(), "config_dir") # test default @@ -69,7 +68,6 @@ def test_config_setter(self): shutil.rmtree(save_dir) def test_set_time_series_manual(self, caplog): - timeindex = pd.date_range("1/1/2018", periods=3, freq="H") gens_ts = pd.DataFrame( data={ @@ -259,7 +257,6 @@ def test_set_time_series_active_power_predefined(self, caplog): @pytest.mark.local def test_set_time_series_active_power_predefined_oedb(self): - # test conventional_loads_ts="oedb" for all loads in grid edisgo_object = EDisGo( ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False @@ -430,7 +427,6 @@ def test_analyze(self, caplog): assert "Current fraction in iterative process: 1.0." in caplog.text def test_reinforce(self): - # ###################### test with default settings ########################## self.setup_worst_case_time_series() results = self.edisgo.reinforce() @@ -1256,7 +1252,6 @@ def test_import_electromobility_oedb(self): @pytest.mark.local def test_import_heat_pumps(self): - edisgo_object = EDisGo( ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False ) From 101f104258ecd3ac5c5a6d509a784be7b988d950 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 13:48:45 +0200 Subject: [PATCH 230/355] Change voltage level integration limits --- edisgo/config/config_grid_default.cfg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/edisgo/config/config_grid_default.cfg b/edisgo/config/config_grid_default.cfg index f7059cb42..f48c68d8f 100644 --- a/edisgo/config/config_grid_default.cfg +++ b/edisgo/config/config_grid_default.cfg @@ -46,9 +46,9 @@ conn_diff_tolerance = 0.0001 # the next higher voltage level, i.e. upper limit of voltage limit 7 is lower limit for # voltage level 6. upper_limit_voltage_level_7 = 0.1 -upper_limit_voltage_level_6 = 0.3 -upper_limit_voltage_level_5 = 4.5 -upper_limit_voltage_level_4 = 17.5 +upper_limit_voltage_level_6 = 0.2 +upper_limit_voltage_level_5 = 5.5 +upper_limit_voltage_level_4 = 20.0 [disconnecting_point] From 8f958fa27978b565590353094e7322b367479263 Mon Sep 17 00:00:00 2001 From: Jonas Jeckstadt Date: Wed, 12 Apr 2023 14:18:12 +0200 Subject: [PATCH 231/355] adapted installation files to pandas version --- eDisGo_env.yml | 2 +- eDisGo_env_dev.yml | 2 +- rtd_requirements.txt | 2 +- tests/flex_opt/test_check_tech_constraints.py | 14 +------------- 4 files changed, 4 insertions(+), 16 deletions(-) diff --git a/eDisGo_env.yml b/eDisGo_env.yml index e5693e58a..f35301247 100644 --- a/eDisGo_env.yml +++ b/eDisGo_env.yml @@ -5,7 +5,7 @@ channels: dependencies: - python >= 3.8, < 3.10 - pip - - pandas >= 1.2 + - pandas >= 1.4 - conda-forge::fiona - conda-forge::geopy - conda-forge::geopandas diff --git a/eDisGo_env_dev.yml b/eDisGo_env_dev.yml index 047b092a3..a59866094 100644 --- a/eDisGo_env_dev.yml +++ b/eDisGo_env_dev.yml @@ -5,7 +5,7 @@ channels: dependencies: - python >= 3.8, < 3.10 - pip - - pandas >= 1.2 + - pandas >= 1.4 - conda-forge::fiona - conda-forge::geopy - conda-forge::geopandas diff --git a/rtd_requirements.txt b/rtd_requirements.txt index de875b297..8b0793f6c 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -8,7 +8,7 @@ jupyter_dash matplotlib >= 3.3.0 multiprocess networkx >= 2.5.0 -pandas >= 1.2.0, < 2.0.0 +pandas >= 1.4.0 plotly pyomo >= 6.0 pypower diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 93d98f0de..4a03e6871 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -2,7 +2,7 @@ import pandas as pd import pytest -from pandas.util.testing import assert_frame_equal +from pandas.testing import assert_frame_equal from edisgo import EDisGo from edisgo.flex_opt import check_tech_constraints @@ -52,7 +52,6 @@ def test_lv_line_max_relative_overload(self): assert df.at["Line_50000002", "time_index"] == self.timesteps[0] def test_lines_allowed_load(self): - # check with default value (all lines) df = check_tech_constraints.lines_allowed_load(self.edisgo) # check shape of dataframe @@ -84,7 +83,6 @@ def test_lines_allowed_load(self): assert (4, 2) == df.shape def test__lines_allowed_load_voltage_level(self): - # check for MV df = check_tech_constraints._lines_allowed_load_voltage_level(self.edisgo, "mv") # check shape of dataframe @@ -120,7 +118,6 @@ def test__lines_allowed_load_voltage_level(self): ) def test_lines_relative_load(self): - # check with default value (all lines) df = check_tech_constraints.lines_relative_load(self.edisgo) # check shape of dataframe @@ -210,7 +207,6 @@ def test__station_load(self): check_tech_constraints._station_load(self.edisgo, grid) def test__station_allowed_load(self): - # check LV grid grid = self.edisgo.topology.get_lv_grid(4) df = check_tech_constraints._station_allowed_load(self.edisgo, grid) @@ -239,7 +235,6 @@ def test__station_allowed_load(self): assert np.isclose(40.0, df.loc[feed_in_cases.values].values).all() def test_stations_allowed_load(self): - # check without specifying a grid df = check_tech_constraints.stations_allowed_load(self.edisgo) # check shape of dataframe @@ -279,7 +274,6 @@ def test_stations_allowed_load(self): ).all() def test_stations_relative_load(self): - # check without specifying grids df = check_tech_constraints.stations_relative_load(self.edisgo) # check shape of dataframe @@ -316,7 +310,6 @@ def test_stations_relative_load(self): ).all() def test_components_relative_load(self): - # check with power flow results available for all components df = check_tech_constraints.components_relative_load(self.edisgo) # check shape of dataframe @@ -380,7 +373,6 @@ def mv_voltage_issues(self): self.edisgo.results._v_res.loc[self.timesteps[0], bus2] = 0.895 def test_voltage_issues(self): - # ########################## check mv mode ################################# # ################### check with no voltage issues @@ -500,7 +492,6 @@ def test_voltage_issues(self): assert (6, 3) == voltage_issues.shape def test__voltage_issues_helper(self): - # create voltage issues self.mv_voltage_issues() @@ -660,7 +651,6 @@ def test_allowed_voltage_limits(self): assert upper.shape == (4, 41) def test__mv_allowed_voltage_limits(self): - ( v_limits_upper, v_limits_lower, @@ -670,7 +660,6 @@ def test__mv_allowed_voltage_limits(self): assert 0.985 == v_limits_lower def test__lv_allowed_voltage_limits(self): - lv_grid_1 = self.edisgo.topology.get_lv_grid(1) lv_grid_3 = self.edisgo.topology.get_lv_grid(3) @@ -774,7 +763,6 @@ def test__lv_allowed_voltage_limits(self): ) def test_voltage_deviation_from_allowed_voltage_limits(self): - # create MV voltage issues self.mv_voltage_issues() From fe56fc58a65b6ea3a37c8be3710bf7bf9728cdae Mon Sep 17 00:00:00 2001 From: Jonas Jeckstadt Date: Wed, 12 Apr 2023 14:24:10 +0200 Subject: [PATCH 232/355] adapted whatsnew --- doc/whatsnew/v0-3-0.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/whatsnew/v0-3-0.rst b/doc/whatsnew/v0-3-0.rst index 0e73e41fe..21c333bec 100644 --- a/doc/whatsnew/v0-3-0.rst +++ b/doc/whatsnew/v0-3-0.rst @@ -16,3 +16,4 @@ Changes * Added integrity check for very short lines `#335 `_ * Refactoring of check_tech_constraints functions `#290 `_ * Add background map to plots `#346 `_ +* Adapted codebase to work with pandas 2.0 `#373 `_ From c4c99346f953ed6aa68612ec110c3065a7ab0c56 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 20:12:01 +0200 Subject: [PATCH 233/355] Adapt central heat pump import --- edisgo/io/heat_pump_import.py | 173 +++++++++++++++++++++++------- tests/io/test_heat_pump_import.py | 5 +- tests/network/test_heat.py | 2 + 3 files changed, 140 insertions(+), 40 deletions(-) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index 426deea55..3bab5b296 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -6,6 +6,8 @@ import pandas as pd import saio +from sqlalchemy import func + from edisgo.io import db from edisgo.tools.tools import ( determine_bus_voltage_level, @@ -15,6 +17,8 @@ if "READTHEDOCS" not in os.environ: import geopandas as gpd + from shapely.geometry import Point + logger = logging.getLogger(__name__) @@ -93,7 +97,23 @@ def _get_central_heat_pumps(): """ Get heat pumps in district heating from oedb. - Weather cell ID is as well added in this function. + Weather cell ID and geolocation is as well added in this function. + Concerning the geolocation - the electricity bus central heat pumps are + attached to is not determined based on the geolocation of the heat pump (which + is in egon_data always set to the centroid of the district heating area they + are in) but based on the majority of heat demand in an MV grid area. Further, + large heat pumps are split into several smaller ones in egon_data. The + geolocation is however not adapted in egon_data. Due to this, it is often + the case, that the central heat pumps lie outside the MV grid district area. + Therefore, the geolocation is adapted in this function. It is first checked, + if there is a CHP plant in the same district heating area. If this is the case + and the CHP plant lies within the MV grid district, then the geolocation of the + heat pump is set to the same geolocation as the CHP plant, as it is assumed, + that this would be a suitable place for a heat pump as well. If there is no + CHP plant, then it is checked if the centroid of the district heating area lies + within the MV grid. If this is the case, then this is used. If neither of these + options can be used, then the geolocation of the HV/MV station is used, as there + is no better indicator where the heat pump would be placed. Returns ------- @@ -104,46 +124,115 @@ def _get_central_heat_pumps(): :func:`~.io.heat_pump_import._grid_integration`. """ - query = ( - session.query( + query = session.query( + egon_etrago_link.bus0, + egon_etrago_link.bus1, + egon_etrago_link.p_nom.label("p_set"), + ).filter( + egon_etrago_link.scn_name == scenario, + egon_etrago_link.bus0 == edisgo_object.topology.id, + egon_etrago_link.carrier == "central_heat_pump", + egon_etrago_link.p_nom + <= edisgo_object.config["grid_connection"]["upper_limit_voltage_level_4"], + ) + df = pd.read_sql(query.statement, engine, index_col=None) + if not df.empty: + # get geom of heat bus, weather_cell_id, district_heating_id and area_id + srid_etrago_bus = db.get_srid_of_db_table(session, egon_etrago_bus.geom) + query = ( + session.query( + egon_etrago_bus.bus_id.label("bus1"), + egon_etrago_bus.geom, + egon_era5_weather_cells.w_id.label("weather_cell_id"), + egon_district_heating_areas.id.label("district_heating_id"), + egon_district_heating_areas.area_id, + ) + .filter( + egon_etrago_bus.scn_name == scenario, + egon_district_heating_areas.scenario == scenario, + egon_etrago_bus.bus_id.in_(df.bus1), + ) + .outerjoin( # join to obtain weather cell ID + egon_era5_weather_cells, + db.sql_within( + egon_etrago_bus.geom, + egon_era5_weather_cells.geom, + mv_grid_geom_srid, + ), + ) + .outerjoin( # join to obtain district heating ID + egon_district_heating_areas, + func.ST_Transform( + func.ST_Centroid(egon_district_heating_areas.geom_polygon), + srid_etrago_bus, + ) + == egon_etrago_bus.geom, + ) + ) + df_geom = gpd.read_postgis( + query.statement, + engine, + index_col=None, + crs=f"EPSG:{srid_etrago_bus}", + ).to_crs(mv_grid_geom_srid) + # merge dataframes + df_merge = pd.merge( + df_geom, df, how="right", right_on="bus1", left_on="bus1" + ) + + # check if there is a CHP plant where heat pump can be located + srid_dh_supply = db.get_srid_of_db_table( + session, egon_district_heating.geometry + ) + query = session.query( egon_district_heating.district_heating_id, - egon_district_heating.capacity.label("p_set"), egon_district_heating.geometry.label("geom"), - egon_era5_weather_cells.w_id.label("weather_cell_id"), - ) - .filter( + ).filter( + egon_district_heating.carrier == "CHP", egon_district_heating.scenario == scenario, - egon_district_heating.carrier == "heat_pump", - egon_district_heating.capacity - <= edisgo_object.config["grid_connection"][ - "upper_limit_voltage_level_4" - ], - # filter heat pumps inside MV grid district geometry - db.sql_within( - egon_district_heating.geometry, - db.sql_grid_geom(edisgo_object), - mv_grid_geom_srid, + egon_district_heating.district_heating_id.in_( + df_geom.district_heating_id ), ) - .outerjoin( # join to obtain weather cell ID - egon_era5_weather_cells, - db.sql_within( - egon_district_heating.geometry, - egon_era5_weather_cells.geom, - mv_grid_geom_srid, - ), - ) - ) - srid = db.get_srid_of_db_table(session, egon_district_heating.geometry) - df = gpd.read_postgis( - query.statement, - engine, - index_col=None, - crs=f"EPSG:{srid}", - ) - - # transform to same SRID as MV grid district geometry - return df.to_crs(mv_grid_geom_srid) + df_geom_chp = gpd.read_postgis( + query.statement, + engine, + index_col=None, + crs=f"EPSG:{srid_dh_supply}", + ).to_crs(mv_grid_geom_srid) + + # set geolocation of central heat pump + for idx in df_merge.index: + geom = None + # if there is a CHP plant and it lies within the grid district, use + # its geolocation + df_chp = df_geom_chp[ + df_geom_chp.district_heating_id + == df_merge.at[idx, "district_heating_id"] + ] + if not df_chp.empty: + for idx_chp in df_chp.index: + if edisgo_object.topology.grid_district["geom"].contains( + df_chp.at[idx_chp, "geom"] + ): + geom = df_chp.at[idx_chp, "geom"] + break + # if the heat bus lies within the grid district, use its geolocation + if geom is None and edisgo_object.topology.grid_district[ + "geom" + ].contains(df_merge.at[idx, "geom"]): + geom = df_merge.at[idx, "geom"] + # if geom is still None, use geolocation of HV/MV station + if geom is None: + hvmv_station = edisgo_object.topology.mv_grid.station + geom = Point(hvmv_station.x[0], hvmv_station.y[0]) + df_merge.at[idx, "geom"] = geom + return df_merge.loc[ + :, + ["p_set", "weather_cell_id", "district_heating_id", "geom", "area_id"], + ] + else: + return df def _get_individual_heat_pump_capacity(): """ @@ -163,7 +252,7 @@ def _get_individual_heat_pump_capacity(): return np.sum(cap) saio.register_schema("demand", engine) - from saio.demand import egon_hp_capacity_buildings + from saio.demand import egon_district_heating_areas, egon_hp_capacity_buildings saio.register_schema("supply", engine) from saio.supply import ( @@ -178,6 +267,9 @@ def _get_individual_heat_pump_capacity(): egon_map_zensus_weather_cell, ) + saio.register_schema("grid", engine) + from saio.grid import egon_etrago_bus, egon_etrago_link + building_ids = edisgo_object.topology.loads_df.building_id.unique() mv_grid_geom_srid = edisgo_object.topology.grid_district["srid"] @@ -235,7 +327,11 @@ def _grid_integration( * p_set : float Nominal electric power of heat pump in MW. * district_heating_id : int - ID of the district heating network the heat pump is in. + ID of the district heating network the heat pump is in, used to obtain + other heat supply technologies from supply.egon_district_heating. + * area_id : int + ID of the district heating network the heat pump is in, used to obtain + heat demand time series from demand.egon_timeseries_district_heating. * weather_cell_id : int Weather cell the heat pump is in used to obtain the COP time series. * geom : :shapely:`Shapely Point object` @@ -366,6 +462,7 @@ def _grid_integration( weather_cell_id=hp_central.at[hp, "weather_cell_id"], sector="district_heating", district_heating_id=hp_central.at[hp, "district_heating_id"], + area_id=hp_central.at[hp, "area_id"], ) integrated_hps = integrated_hps.append(pd.Index([hp_name])) diff --git a/tests/io/test_heat_pump_import.py b/tests/io/test_heat_pump_import.py index a3166c127..5f8d1b363 100644 --- a/tests/io/test_heat_pump_import.py +++ b/tests/io/test_heat_pump_import.py @@ -32,9 +32,10 @@ def setup_heat_pump_data_dh(self): geom = Point((10.02178787570608, 47.55650888787377)) hp_df = pd.DataFrame( data={ - "p_set": [0.05, 0.25, 1.0], + "p_set": [0.05, 0.17, 1.0], "weather_cell_id": [11051, 11051, 11052], "district_heating_id": [5, 5, 5], + "area_id": [4, 4, 4], "geom": [geom, geom, geom], }, index=[1, 2, 3], @@ -75,7 +76,7 @@ def test__grid_integration(self, caplog): bus_hp_voltage_level_7 = hp_df[hp_df.p_set == 0.05].bus[0] assert self.edisgo.topology.buses_df.at[bus_hp_voltage_level_7, "v_nom"] == 0.4 # check that medium heat pump is connected to MV/LV station - bus_hp_voltage_level_6 = hp_df[hp_df.p_set == 0.25].bus[0] + bus_hp_voltage_level_6 = hp_df[hp_df.p_set == 0.17].bus[0] line_hp_voltage_level_6 = self.edisgo.topology.lines_df[ self.edisgo.topology.lines_df.bus1 == bus_hp_voltage_level_6 ] diff --git a/tests/network/test_heat.py b/tests/network/test_heat.py index 6cc451802..14638d723 100644 --- a/tests/network/test_heat.py +++ b/tests/network/test_heat.py @@ -47,6 +47,7 @@ def setup_egon_heat_pump_data(self): sector = ["individual_heating", "district_heating", "individual_heating"] weather_cell_ids = [11051, 11051, 11052] district_heating_ids = [None, 5, None] + area_ids = [None, 4, None] hp_df = pd.DataFrame( data={ "bus": "dummy_bus", @@ -56,6 +57,7 @@ def setup_egon_heat_pump_data(self): "sector": sector, "weather_cell_id": weather_cell_ids, "district_heating_id": district_heating_ids, + "area_id": area_ids, }, index=names, ) From 0515bb4f2850617977edb11061e197b6dc81c5bf Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 21:09:54 +0200 Subject: [PATCH 234/355] Add area_id to test heat pumps --- tests/io/test_timeseries_import.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/io/test_timeseries_import.py b/tests/io/test_timeseries_import.py index 4c25ce3fe..d56f33505 100644 --- a/tests/io/test_timeseries_import.py +++ b/tests/io/test_timeseries_import.py @@ -119,6 +119,7 @@ def setup_egon_heat_pump_data(self): sector = ["individual_heating", "district_heating", "individual_heating"] weather_cell_ids = [11051, 11051, 11052] district_heating_ids = [None, 5, None] + area_ids = [None, 5, None] hp_df = pd.DataFrame( data={ "bus": "dummy_bus", @@ -128,6 +129,7 @@ def setup_egon_heat_pump_data(self): "sector": sector, "weather_cell_id": weather_cell_ids, "district_heating_id": district_heating_ids, + "area_id": area_ids, }, index=names, ) From 9907986e37e832707ff7b1b198e043aef8919d51 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 21:10:09 +0200 Subject: [PATCH 235/355] Use area_id to obtain heat demand time series --- edisgo/io/timeseries_import.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 6c9bcd6ba..013cb72d4 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -462,8 +462,8 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): individual_heating_df = pd.DataFrame(index=timeindex_full) # get district heating profiles from oedb - if "district_heating_id" in hp_df.columns: - dh_ids = hp_df.district_heating_id.dropna().unique() + if "area_id" in hp_df.columns: + dh_ids = hp_df.area_id.dropna().unique() else: dh_ids = [] if len(dh_ids) > 0: @@ -472,10 +472,10 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): ) # set column names to be heat pump names instead of district heating IDs rename_series = ( - hp_df.loc[:, ["district_heating_id"]] + hp_df.loc[:, ["area_id"]] .dropna() .reset_index() - .set_index("district_heating_id") + .set_index("area_id") .iloc[:, 0] ) dh_profile_df.rename(columns=rename_series, inplace=True) From a82771fa6af83a7b27c66b914cc97a5ca93c2d9c Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 12 Apr 2023 21:36:45 +0200 Subject: [PATCH 236/355] Adapt reduce_edisgo --- edisgo/tools/spatial_complexity_reduction.py | 148 +++++++++--------- .../test_spatial_complexity_reduction.py | 22 +-- 2 files changed, 86 insertions(+), 84 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 12f0747e6..f12138435 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -1433,59 +1433,68 @@ def make_remaining_busmap(busmap_df: DataFrame, edisgo_root: EDisGo) -> DataFram def reduce_edisgo( - edisgo_root: EDisGo, + edisgo_obj: EDisGo, busmap_df: DataFrame, line_naming_convention: str = "standard_lines", - aggregation_mode: bool = True, + aggregation_mode: bool = False, load_aggregation_mode: str = "sector", generator_aggregation_mode: str = "type", -) -> tuple[EDisGo, DataFrame]: +) -> DataFrame: """ Function to reduce the EDisGo object with a previously generated busmap. - Warning: After reducing all attributes 'in_building' of the buses is set to False. - Also, the method only works for lines which length can be calculated with a detour - factor, which has to be set in the config. Else the line length is calculated - false which leads to false results. If the grid doesn't have coordinates or - matches the requirements use the :func:`make_pseudo_coordinates - `. + Warning: After reduction, 'in_building' of all buses is set to False. + Also, the method only works if all buses have x and y coordinates. If this is not + the case, you can use the function + :func:`~.tools.pseudo_coordinates.make_pseudo_coordinates` to set coordinates for + all buses. Parameters ---------- - edisgo_root: :obj:`EDisGo` + edisgo_obj : :class:`~.EDisGo` EDisGo object to reduce. - busmap_df: :obj:`DataFrame` - Busmap, holds the information which nodes are merged together. - aggregation_mode: :obj:`str` - If True loads and generators and their timeseries are aggregated - according to their selected modes. - line_naming_convention: :obj:`str` - Select "standard_lines" or "combined_name". When the lines are aggregated it - can happen that two or more lines are merged. This leads to the problem of - new line types. If "standard_lines" is selected. In the case of a line merge - as line_tipe and kind the values of the standard type of the voltage level is - selected. If "combined_name" is selected the new type and kind is contains the - concated names of the merged lines. - - load_aggregation_mode: :obj:`str` - Choose: "bus" or "sector" if bus is chosen all loads in the loads_df are - aggregated per bus. When sector is chosen its aggregated by bus and sector. - generator_aggregation_mode: :obj:`str` - Choose: "bus" or "type" if bus is chosen all generators in the generators_df - are aggregated per bus. When type is chosen its aggregated by bus and type. + busmap_df : :pandas:`pandas.DataFrame` + Busmap holding the information which nodes are merged together. + line_naming_convention : str + Determines how to set "type_info" and "kind" in case two or more lines are + aggregated. Possible options are "standard_lines" or "combined_name". + If "standard_lines" is selected, the values of the standard line of the + respective voltage level are used to set "type_info" and "kind". + If "combined_name" is selected, "type_info" and "kind" contain the + concatenated values of the merged lines. x and r of the lines are not influenced + by this as they are always determined from the x and r values of the aggregated + lines. + Default: "standard_lines". + aggregation_mode : bool + Specifies, whether to aggregate loads and generators at the same bus or not. + If True, loads and generators at the same bus are aggregated + according to their selected modes (see parameters `load_aggregation_mode` and + `generator_aggregation_mode`). Default: False. + load_aggregation_mode : str + Specifies, how to aggregate loads at the same bus, in case parameter + `aggregation_mode` is set to True. Possible options are "bus" or "sector". + If "bus" is chosen, loads are aggregated per bus. When "sector" is chosen, + loads are aggregated by bus, type and sector. Default: "sector". + generator_aggregation_mode : str + Specifies, how to aggregate generators at the same bus, in case parameter + `aggregation_mode` is set to True. Possible options are "bus" or "type". + If "bus" is chosen, generators are aggregated per bus. When "type" is chosen, + generators are aggregated by bus and type. Returns ------- - :obj:`EDisGo` - Reduced EDisGo object. + :pandas:`pandas.DataFrame` + Linemap which maps the old line names (in the index of the dataframe) to the + new line names (in column "new_line_name"). References ---------- - In parts based on PyPSA spatial complexity reduction - `https://pypsa.readthedocs.io/en/latest/examples/spatial-clustering.html` + In parts based on `PyPSA spatial complexity reduction `_. + """ - def apply_busmap_on_busmap_df(series): + def apply_busmap_on_buses_df(series): series.loc["bus"] = busmap_df.loc[series.name, "new_bus"] series.loc["x"] = busmap_df.loc[series.name, "new_x"] series.loc["y"] = busmap_df.loc[series.name, "new_y"] @@ -1498,7 +1507,7 @@ def apply_busmap_on_lines_df(series): def remove_lines_with_the_same_bus(series): if series.bus0 == series.bus1: - return # Drop lines which connect to the same bus. + return # Drop lines which connect the same bus. elif ( series.bus0.split("_")[0] == "virtual" and series.bus0.lstrip("virtual_") == slack_bus @@ -1548,10 +1557,13 @@ def aggregate_lines_df(df): if length == 0: length = 0.001 logger.warning( - f"Length of line between {bus0} and {bus1} can't be 0, set to 1m." + f"Length of line between {bus0} and {bus1} cannot be 0 m and is " + f"therefore set to 1 m." ) if length < 0.001: - logger.warning(f"Length of line between {bus0} and {bus1} smaller than 1m.") + logger.warning( + f"Length of line between {bus0} and {bus1} is " f"smaller than 1 m." + ) # Get type of the line to get the according standard line for the voltage_level if np.isnan(buses_df.loc[df.bus0, "lv_grid_id"])[0]: @@ -1589,10 +1601,7 @@ def aggregate_lines_df(df): ] except KeyError: x_line = line_data_df.loc[line_type, "L_per_km"] - logger.error( - f"Line type doesn't matches voltage level" - f"{line_type} not in voltage level {v_nom}." - ) + logger.error(f"Line type {line_type} not in voltage level {v_nom} kV.") x_sum = x_sum + 1 / x_line x_sum = 1 / x_sum x = length * 2 * math.pi * 50 * x_sum / 1000 @@ -1605,10 +1614,7 @@ def aggregate_lines_df(df): ] except KeyError: r_line = line_data_df.loc[line_type, "R_per_km"] - logger.error( - f"Line type doesn't matches voltage level" - f"{line_type} not in voltage level {v_nom}." - ) + logger.error(f"Line type {line_type} not in voltage level {v_nom} kV.") r_sum = r_sum + 1 / r_line r_sum = 1 / r_sum @@ -1632,13 +1638,15 @@ def apply_busmap_on_components(series): return series def aggregate_loads_df(df): - series = pd.Series(index=df.columns, dtype="object") # l.values[0], + series = pd.Series(index=df.columns, dtype="object") series.loc["bus"] = df.loc[:, "bus"].values[0] series.loc["p_set"] = df.loc[:, "p_set"].sum() series.loc["annual_consumption"] = df.loc[:, "annual_consumption"].sum() if load_aggregation_mode == "sector": + series.loc["type"] = df.loc[:, "type"].values[0] series.loc["sector"] = df.loc[:, "sector"].values[0] elif load_aggregation_mode == "bus": + series.loc["type"] = "aggregated" series.loc["sector"] = "aggregated" series.loc["old_name"] = df.index.tolist() return series @@ -1648,7 +1656,7 @@ def aggregate_generators_df(df): series.loc["bus"] = df.loc[:, "bus"].values[0] series.loc["p_nom"] = df.loc[:, "p_nom"].sum() series.loc["control"] = df.loc[:, "control"].values[0] - series.loc["subtype"] = df.loc[:, "subtype"].values[0] + series.loc["subtype"] = "aggregated" series.loc["old_name"] = df.index.tolist() if generator_aggregation_mode == "bus": series.loc["type"] = "aggregated" @@ -1667,7 +1675,7 @@ def extract_weather_cell_id(series): def aggregate_timeseries( df: DataFrame, edisgo_obj: EDisGo, timeseries_to_aggregate: list - ) -> None: + ): # comp = component # aggregate load timeseries name_map_df = df.loc[:, "old_name"].to_dict() @@ -1694,36 +1702,29 @@ def aggregate_timeseries( setattr(edisgo_obj.timeseries, timeseries_name, timeseries) - return edisgo_obj - def apply_busmap_on_transformers_df(series): series.loc["bus0"] = busmap_df.loc[series.loc["bus0"], "new_bus"] series.loc["bus1"] = busmap_df.loc[series.loc["bus1"], "new_bus"] return series - start_time = time() - logger.info("Start - Reducing edisgo object") - - edisgo_obj = copy.deepcopy(edisgo_root) # Make deepcopy to preserve root object - - logger.info("Copy dataframes from edisgo object") + # Copy dataframes from edisgo object buses_df = edisgo_obj.topology.buses_df.copy() lines_df = edisgo_obj.topology.lines_df.copy() loads_df = edisgo_obj.topology.loads_df.copy() generators_df = edisgo_obj.topology.generators_df.copy() storage_units_df = edisgo_obj.topology.storage_units_df.copy() + transformers_df = edisgo_obj.topology.transformers_df.copy() switches_df = edisgo_obj.topology.switches_df.copy() slack_bus = edisgo_obj.topology.transformers_hvmv_df.bus1[0] - logger.info("Manipulate buses_df") - buses_df = buses_df.apply(apply_busmap_on_busmap_df, axis="columns") + # Manipulate buses_df + buses_df = buses_df.apply(apply_busmap_on_buses_df, axis="columns") buses_df = buses_df.groupby(by=["bus"], dropna=False, as_index=False).first() - buses_df.loc[:, "in_building"] = False buses_df = buses_df.set_index("bus") - logger.info("Manipulate lines_df") + # Manipulate lines_df if not lines_df.empty: # Get one dataframe with all data of the line types line_data_df = pd.concat( @@ -1744,17 +1745,22 @@ def apply_busmap_on_transformers_df(series): "Line_" + lines_df.loc[:, "bus0"] + "_to_" + lines_df.loc[:, "bus1"] ) - logger.info("Manipulate loads_df") + # Manipulate loads_df if not loads_df.empty: loads_df = loads_df.apply(apply_busmap_on_components, axis="columns") if aggregation_mode: if load_aggregation_mode == "sector": - loads_df = loads_df.groupby(by=["bus", "sector"]).apply( + loads_df = loads_df.groupby(by=["bus", "type", "sector"]).apply( aggregate_loads_df ) loads_df.index = ( - "Load_" + loads_df.loc[:, "bus"] + "_" + loads_df.loc[:, "sector"] + "Load_" + + loads_df.loc[:, "bus"] + + "_" + + loads_df.loc[:, "type"] + + "_" + + loads_df.loc[:, "sector"] ) elif load_aggregation_mode == "bus": loads_df = loads_df.groupby(by=["bus"]).apply(aggregate_loads_df) @@ -1766,7 +1772,7 @@ def apply_busmap_on_transformers_df(series): loads_df, edisgo_obj, ["loads_active_power", "loads_reactive_power"] ) - logger.info("Manipulate generators_df") + # Manipulate generators_df if not generators_df.empty: generators_df = generators_df.loc[ generators_df.loc[:, "bus"].isin(busmap_df.index), : @@ -1800,20 +1806,18 @@ def apply_busmap_on_transformers_df(series): ["generators_active_power", "generators_reactive_power"], ) - logger.info("Manipulate storage_units_df") - + # Manipulate storage_units_df if not storage_units_df.empty: storage_units_df = storage_units_df.apply( apply_busmap_on_components, axis="columns" ) - logger.info("Manipulate transformers_df") - transformers_df = edisgo_obj.topology.transformers_df + # Manipulate transformers_df transformers_df = transformers_df.apply( apply_busmap_on_transformers_df, axis="columns" ) - logger.info("Manipulate switches_df") + # Manipulate switches_df if not switches_df.empty: # drop switches unused switches switches_to_drop = [] @@ -1867,15 +1871,13 @@ def apply_busmap_on_transformers_df(series): edisgo_obj.topology.transformers_df = transformers_df edisgo_obj.topology.switches_df = switches_df - logger.info("Make linemap_df") + # Make linemap_df linemap_df = pd.DataFrame() for new_line_name, old_line_names in zip(lines_df.index, lines_df.old_line_name): for old_line_name in old_line_names: linemap_df.loc[old_line_name, "new_line_name"] = new_line_name - logger.info("Finished in {}s".format(time() - start_time)) - - return edisgo_obj, linemap_df + return linemap_df def spatial_complexity_reduction( diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index f9b5313f9..cbe88efa0 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -265,7 +265,7 @@ def test_reduce_edisgo( assert edisgo_root.topology.transformers_df.shape[0] == 14 assert edisgo_root.topology.switches_df.shape[0] == 2 - edisgo_reduced, linemap_df = spatial_complexity_reduction.reduce_edisgo( + linemap_df = spatial_complexity_reduction.reduce_edisgo( edisgo_root, busmap_df, line_naming_convention=line_naming_convention, @@ -274,29 +274,29 @@ def test_reduce_edisgo( generator_aggregation_mode=generator_aggregation_mode, ) - assert edisgo_reduced.topology.buses_df.shape[0] == 43 - assert edisgo_reduced.topology.lines_df.shape[0] == 34 - assert edisgo_reduced.topology.loads_df.shape[0] == n_loads - assert edisgo_reduced.topology.generators_df.shape[0] == n_generators - assert edisgo_reduced.topology.storage_units_df.shape[0] == 1 - assert edisgo_reduced.topology.transformers_df.shape[0] == 14 - assert edisgo_reduced.topology.switches_df.shape[0] == 2 + assert edisgo_root.topology.buses_df.shape[0] == 43 + assert edisgo_root.topology.lines_df.shape[0] == 34 + assert edisgo_root.topology.loads_df.shape[0] == n_loads + assert edisgo_root.topology.generators_df.shape[0] == n_generators + assert edisgo_root.topology.storage_units_df.shape[0] == 1 + assert edisgo_root.topology.transformers_df.shape[0] == 14 + assert edisgo_root.topology.switches_df.shape[0] == 2 if line_naming_convention == "standard_lines": assert ( - edisgo_reduced.topology.lines_df.loc[ + edisgo_root.topology.lines_df.loc[ "Line_Bus_MVStation_1_to_Bus_mvgd_1_F0_B2", "type_info" ] == "NA2XS2Y 3x1x240" ) elif line_naming_convention == "combined_name": assert ( - edisgo_reduced.topology.lines_df.loc[ + edisgo_root.topology.lines_df.loc[ "Line_Bus_MVStation_1_to_Bus_mvgd_1_F0_B2", "type_info" ] == "Merged: 48-AL1/8-ST1A 48-AL1/8-ST1A " ) - timeseries = edisgo_reduced.timeseries + timeseries = edisgo_root.timeseries assert timeseries.loads_active_power.shape[1] == n_loads assert timeseries.loads_reactive_power.shape[1] == n_loads assert timeseries.generators_active_power.shape[1] == n_generators From b1c60f186b2d9adbcd36aaecd8dea114c6701f2e Mon Sep 17 00:00:00 2001 From: Maike Held Date: Thu, 13 Apr 2023 09:58:15 +0200 Subject: [PATCH 237/355] Added dummy data to timeseries_reduction test --- tests/opf/test_timeseries_reduction.py | 163 ++++++++++++++++++------- 1 file changed, 120 insertions(+), 43 deletions(-) diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index a843028fa..6e601459d 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -1,10 +1,8 @@ import numpy as np - -# import pandas as pd +import pandas as pd import pytest -# from edisgo import EDisGo -from edisgo.edisgo import import_edisgo_from_files +from edisgo import EDisGo from edisgo.opf.timeseries_reduction import ( _scored_most_critical_loading, _scored_most_critical_loading_time_interval, @@ -19,56 +17,135 @@ class TestTimeseriesReduction: @classmethod def setup_class(self): - # self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) - # self.edisgo.set_time_series_worst_case_analysis() - # self.timesteps = self.edisgo.timeseries.timeindex - self.edisgo = import_edisgo_from_files( - pytest.ding0_test_network_4_path, - import_timeseries=True, - import_electromobility=True, - import_heat_pump=True, - import_dsm=True, - import_overlying_grid=True, - from_zip_archive=True, + self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + self.edisgo.set_time_series_worst_case_analysis() + self.timesteps = self.edisgo.timeseries.timeindex + + def setup_flexibility_data(self): + self.edisgo.add_component( + comp_type="load", + type="heat_pump", + ts_active_power=pd.Series( + index=self.edisgo.timeseries.timeindex, + data=[1.0 / 5, 2.0 / 6, 2.0 / 5, 1.0 / 6], + ), + ts_reactive_power="default", + bus=self.edisgo.topology.buses_df.index[26], + p_set=2, + ) + self.edisgo.add_component( + comp_type="load", + type="heat_pump", + ts_active_power=pd.Series( + index=self.edisgo.timeseries.timeindex, + data=[2.0 / 7.0, 4.0 / 8.0, 3.0 / 7.0, 3.0 / 8.0], + ), + ts_reactive_power="default", + bus=self.edisgo.topology.buses_df.index[30], + p_set=3, + ) + + # add heat pump, electromobility, overlying grid dummy data + self.edisgo.heat_pump.cop_df = pd.DataFrame( + data={ + "Heat_Pump_LVGrid_3_1": [5.0, 6.0, 5.0, 6.0], + "Heat_Pump_LVGrid_5_1": [7.0, 8.0, 7.0, 8.0], + }, + index=self.edisgo.timeseries.timeindex, ) - # timeindex = pd.date_range("1/1/2018", periods=168, freq="H") - # gens_ts = pd.DataFrame( + self.edisgo.heat_pump.heat_demand_df = pd.DataFrame( + data={ + "Heat_Pump_LVGrid_3_1": [1.0, 2.0, 2.0, 1.0], + "Heat_Pump_LVGrid_5_1": [2.0, 4.0, 3.0, 3.0], + }, + index=self.edisgo.timeseries.timeindex, + ) + self.edisgo.heat_pump.thermal_storage_units_df = pd.DataFrame( + data={ + "capacity": [4, 8], + "efficiency": [1, 1], + }, + index=self.edisgo.heat_pump.heat_demand_df.columns, + ) + + self.edisgo.add_component( + comp_type="load", + type="charging_point", + ts_active_power=pd.Series( + index=self.edisgo.timeseries.timeindex, data=[0.5, 0.5, 0.5, 0.5] + ), + ts_reactive_power="default", + bus=self.edisgo.topology.buses_df.index[32], + p_set=3, + ) + + flex_bands = { + "lower_energy": pd.DataFrame( + {"Charging_Point_LVGrid_6_1": [0, 0, 1, 2]}, + index=self.edisgo.timeseries.timeindex, + ), + "upper_energy": pd.DataFrame( + {"Charging_Point_LVGrid_6_1": [1, 2, 2, 3]}, + index=self.edisgo.timeseries.timeindex, + ), + "upper_power": pd.DataFrame( + {"Charging_Point_LVGrid_6_1": [1, 1, 2, 1]}, + index=self.edisgo.timeseries.timeindex, + ), + } + self.edisgo.electromobility.flexibility_bands = flex_bands + # ToDo: add DSM attribute to EDisGo object + # self.edisgo.dsm.p_min = pd.DataFrame( # data={ - # "GeneratorFluctuating_15": pd.concat( - # [pd.Series([2.0, 5.0, 6.0])] * 56).values, - # "GeneratorFluctuating_24": pd.concat( - # [pd.Series([4.0, 7.0, 8.0])] * 56).values, + # "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + # -0.3, + # -0.3, + # -0.3, + # -0.3, + # ], + # "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], # }, - # index=timeindex, + # index=self.edisgo.timeseries.timeindex, # ) - # loads_ts = pd.DataFrame( + # self.edisgo.dsm.p_max = pd.DataFrame( # data={ - # "Load_residential_LVGrid_5_3": pd.concat( - # [pd.Series([2.0, 5.0, 6.0])] * 56, axis=1 - # ).transpose() - # .values, + # "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + # 0.3, + # 0.3, + # 0.3, + # 0.3, + # ], + # "Load_industrial_LVGrid_5_1": [0.07, 0.07, 0.07, 0.07], # }, - # index=timeindex, + # index=self.edisgo.timeseries.timeindex, # ) - # storage_units_ts = pd.DataFrame( + # self.edisgo.dsm.e_min = pd.DataFrame( # data={ - # "Storage_1": pd.concat( - # [pd.Series([4.0, 7.0, 8.0])] * 56, axis=1 - # ).transpose() - # .values, + # "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + # -0.3, + # -0.4, + # -0.5, + # -0.4, + # ], + # "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], # }, - # index=timeindex, + # index=self.edisgo.timeseries.timeindex, # ) - # - # # ToDo: add DSM, heatpump, emob, OG - # - # self.edisgo.set_time_series_manual( - # generators_p=gens_ts, - # generators_q=gens_ts, - # loads_p=loads_ts, - # storage_units_q=storage_units_ts, + # self.edisgo.dsm.e_max = pd.DataFrame( + # data={ + # "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + # 0.3, + # 0.5, + # 0.5, + # 0.4, + # ], + # "Load_industrial_LVGrid_5_1": [0.07, 0.1, 0.09, 0.07], + # }, + # index=self.edisgo.timeseries.timeindex, # ) + # ToDo: Add OG Data + @pytest.fixture(autouse=True) def run_power_flow(self): """ @@ -110,7 +187,7 @@ def test_get_steps_reinforcement(self): assert (ts_crit == self.timesteps[[0, 1, 3]]).all() def test__scored_most_critical_loading_time_interval(self): - + self.setup_flexibility_data() ts_crit = _scored_most_critical_loading_time_interval(self.edisgo, 1) assert len(ts_crit) == 3 From 594953d62b9a77f724762506cbf5d0b6074cc8fd Mon Sep 17 00:00:00 2001 From: Maike Held Date: Thu, 13 Apr 2023 10:27:58 +0200 Subject: [PATCH 238/355] create dummy data --- tests/opf/test_timeseries_reduction.py | 91 ++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index 6e601459d..a050afc74 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -146,6 +146,97 @@ def setup_flexibility_data(self): # ToDo: Add OG Data + self.edisgo.resample_timeseries(freq="1min") + self.timesteps = pd.date_range(start="01/01/2018", periods=240, freq="h") + + attributes = self.edisgo.timeseries._attributes + + for attr in attributes: + if not getattr(self.edisgo.timeseries, attr).empty: + df = pd.DataFrame( + index=self.timesteps, + columns=getattr(self.edisgo.timeseries, attr).columns, + data=getattr(self.edisgo.timeseries, attr).values, + ) + setattr( + self.edisgo.timeseries, + attr, + df, + ) + self.edisgo.timeseries.timeindex = self.timesteps + # # Battery electric vehicle timeseries + # if bev: + # if save_ev_soc_initial: + # # timestep EV SOC from timestep before if possible + # ts_before = pd.to_datetime(timeframe[0]) - pd.Timedelta(hours=1) + # try: + # initial_soc_cp = ( + # 1 + # / 2 + # * ( + # edisgo_obj.electromobility.flexibility_bands[ + # "upper_energy" + # ].loc[ts_before] + # + edisgo_obj.electromobility.flexibility_bands[ + # "lower_energy" + # ].loc[ts_before] + # ) + # ) + # except KeyError: + # initial_soc_cp = ( + # 1 + # / 2 + # * ( + # edisgo_obj.electromobility.flexibility_bands[ + # "upper_energy" + # ].loc[timeframe[0]] + # + edisgo_obj.electromobility.flexibility_bands[ + # "lower_energy" + # ].loc[timeframe[0]] + # ) + # ) + # edisgo_obj.electromobility.initial_soc_df = initial_soc_cp + # for key, df in edisgo_obj.electromobility.flexibility_bands.items(): + # if not df.empty: + # df = df.loc[timeframe] + # edisgo_obj.electromobility.flexibility_bands.update({key: df}) + # # Heat pumps timeseries + # if hp: + # for attr in ["cop_df", "heat_demand_df"]: + # if not getattr(edisgo_obj.heat_pump, attr).empty: + # setattr( + # edisgo_obj.heat_pump, + # attr, + # getattr(edisgo_obj.heat_pump, attr).loc[timeframe], + # ) + # # Demand Side Management timeseries + # if dsm: + # for attr in ["e_min", "e_max", "p_min", "p_max"]: + # if not getattr(edisgo_obj.dsm, attr).empty: + # setattr( + # edisgo_obj.dsm, + # attr, + # getattr(edisgo_obj.dsm, attr).loc[timeframe], + # ) + # + # if og: + # for attr in [ + # "dsm_active_power", + # "electromobility_active_power", + # "geothermal_energy_feedin_district_heating", + # "heat_pump_central_active_power", + # "heat_pump_decentral_active_power", + # "renewables_curtailment", + # "solarthermal_energy_feedin_district_heating", + # "storage_units_active_power", + # ]: + # if not getattr(edisgo_obj.overlying_grid, attr).empty: + # setattr( + # edisgo_obj.overlying_grid, + # attr, + # getattr(edisgo_obj.overlying_grid, attr).loc[timeframe], + # ) + @pytest.fixture(autouse=True) def run_power_flow(self): """ From 186f8f8d58c0b0921dddddc3a1d1d10ffe97900a Mon Sep 17 00:00:00 2001 From: Maike Held Date: Thu, 13 Apr 2023 10:51:42 +0200 Subject: [PATCH 239/355] adjusted dummy data --- tests/opf/test_timeseries_reduction.py | 125 +++++++++++-------------- 1 file changed, 53 insertions(+), 72 deletions(-) diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index a050afc74..2794e0677 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -164,78 +164,59 @@ def setup_flexibility_data(self): df, ) self.edisgo.timeseries.timeindex = self.timesteps - # # Battery electric vehicle timeseries - # if bev: - # if save_ev_soc_initial: - # # timestep EV SOC from timestep before if possible - # ts_before = pd.to_datetime(timeframe[0]) - pd.Timedelta(hours=1) - # try: - # initial_soc_cp = ( - # 1 - # / 2 - # * ( - # edisgo_obj.electromobility.flexibility_bands[ - # "upper_energy" - # ].loc[ts_before] - # + edisgo_obj.electromobility.flexibility_bands[ - # "lower_energy" - # ].loc[ts_before] - # ) - # ) - # except KeyError: - # initial_soc_cp = ( - # 1 - # / 2 - # * ( - # edisgo_obj.electromobility.flexibility_bands[ - # "upper_energy" - # ].loc[timeframe[0]] - # + edisgo_obj.electromobility.flexibility_bands[ - # "lower_energy" - # ].loc[timeframe[0]] - # ) - # ) - # edisgo_obj.electromobility.initial_soc_df = initial_soc_cp - # for key, df in edisgo_obj.electromobility.flexibility_bands.items(): - # if not df.empty: - # df = df.loc[timeframe] - # edisgo_obj.electromobility.flexibility_bands.update({key: df}) - # # Heat pumps timeseries - # if hp: - # for attr in ["cop_df", "heat_demand_df"]: - # if not getattr(edisgo_obj.heat_pump, attr).empty: - # setattr( - # edisgo_obj.heat_pump, - # attr, - # getattr(edisgo_obj.heat_pump, attr).loc[timeframe], - # ) - # # Demand Side Management timeseries - # if dsm: - # for attr in ["e_min", "e_max", "p_min", "p_max"]: - # if not getattr(edisgo_obj.dsm, attr).empty: - # setattr( - # edisgo_obj.dsm, - # attr, - # getattr(edisgo_obj.dsm, attr).loc[timeframe], - # ) - # - # if og: - # for attr in [ - # "dsm_active_power", - # "electromobility_active_power", - # "geothermal_energy_feedin_district_heating", - # "heat_pump_central_active_power", - # "heat_pump_decentral_active_power", - # "renewables_curtailment", - # "solarthermal_energy_feedin_district_heating", - # "storage_units_active_power", - # ]: - # if not getattr(edisgo_obj.overlying_grid, attr).empty: - # setattr( - # edisgo_obj.overlying_grid, - # attr, - # getattr(edisgo_obj.overlying_grid, attr).loc[timeframe], - # ) + # Battery electric vehicle timeseries + for key, df in self.edisgo.electromobility.flexibility_bands.items(): + if not df.empty: + df.index = self.edisgo.timeseries + self.edisgo.electromobility.flexibility_bands.update({key: df}) + # Heat pumps timeseries + for attr in ["cop_df", "heat_demand_df"]: + if not getattr(self.edisgo.heat_pump, attr).empty: + df = pd.DataFrame( + index=self.timesteps, + columns=getattr(self.edisgo.timeseries, attr).columns, + data=getattr(self.edisgo.timeseries, attr).values, + ) + setattr( + self.edisgo.heat_pump, + attr, + df, + ) + # Demand Side Management timeseries + for attr in ["e_min", "e_max", "p_min", "p_max"]: + if not getattr(self.edisgo.dsm, attr).empty: + df = pd.DataFrame( + index=self.timesteps, + columns=getattr(self.edisgo.timeseries, attr).columns, + data=getattr(self.edisgo.timeseries, attr).values, + ) + setattr( + self.edisgo.dsm, + attr, + df, + ) + # overlying grid + for attr in [ + "dsm_active_power", + "electromobility_active_power", + "geothermal_energy_feedin_district_heating", + "heat_pump_central_active_power", + "heat_pump_decentral_active_power", + "renewables_curtailment", + "solarthermal_energy_feedin_district_heating", + "storage_units_active_power", + ]: + if not getattr(self.edisgo.overlying_grid, attr).empty: + df = pd.DataFrame( + index=self.timesteps, + columns=getattr(self.edisgo.timeseries, attr).columns, + data=getattr(self.edisgo.timeseries, attr).values, + ) + setattr( + self.edisgo.overlying_grid, + attr, + df, + ) @pytest.fixture(autouse=True) def run_power_flow(self): From 13520460e452d5db4050d73533da6dad34b1e5b2 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 13:04:24 +0200 Subject: [PATCH 240/355] Minor docstring change --- edisgo/edisgo.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 987958430..d6fe2ac14 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1216,6 +1216,14 @@ def add_component( * 'storage_unit' : :attr:`~.network.topology.Topology.add_storage_unit` + Returns + -------- + str + The identifier of the newly integrated component as in index of + :attr:`~.network.topology.Topology.generators_df`, + :attr:`~.network.topology.Topology.loads_df`, etc., depending on component + type. + """ # ToDo: Add option to add transformer. # Todo: change into add_components to allow adding of several components @@ -1360,6 +1368,15 @@ def integrate_component_based_on_geolocation( :attr:`~.network.topology.Topology.add_load` methods for more information on required and optional parameters. + Returns + ------- + str + The identifier of the newly integrated component as in index of + :attr:`~.network.topology.Topology.generators_df`, + :attr:`~.network.topology.Topology.loads_df` or + :attr:`~.network.topology.Topology.storage_units_df`, depending on component + type. + """ supported_voltage_levels = {4, 5, 6, 7} p_nom = kwargs.get("p_nom", None) From 94eace99790382c7b7ad3aba9bad2e7efc309d01 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 13:16:05 +0200 Subject: [PATCH 241/355] Add import of central resistive heaters --- edisgo/io/heat_pump_import.py | 157 +++++++++++++++++++++++++----- tests/io/test_heat_pump_import.py | 67 ++++++++++++- 2 files changed, 194 insertions(+), 30 deletions(-) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index 3bab5b296..de262425d 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -22,7 +22,7 @@ logger = logging.getLogger(__name__) -def oedb(edisgo_object, scenario, engine): +def oedb(edisgo_object, scenario, engine, import_types=None): """ Gets heat pumps for specified scenario from oedb and integrates them into the grid. @@ -36,6 +36,10 @@ def oedb(edisgo_object, scenario, engine): are "eGon2035" and "eGon100RE". engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. + import_types : list(str) or None + Specifies which technologies to import. Possible options are + "individual_heat_pumps", "central_heat_pumps" and "central_resistive_heaters". + If None, all are imported. Returns -------- @@ -93,37 +97,46 @@ def _get_individual_heat_pumps(): # e.g. for CTS and residential return df.drop_duplicates(subset=["building_id"]) - def _get_central_heat_pumps(): + def _get_central_heat_pump_or_resistive_heaters(carrier): """ - Get heat pumps in district heating from oedb. + Get heat pumps or resistive heaters in district heating from oedb. Weather cell ID and geolocation is as well added in this function. - Concerning the geolocation - the electricity bus central heat pumps are - attached to is not determined based on the geolocation of the heat pump (which - is in egon_data always set to the centroid of the district heating area they - are in) but based on the majority of heat demand in an MV grid area. Further, - large heat pumps are split into several smaller ones in egon_data. The - geolocation is however not adapted in egon_data. Due to this, it is often - the case, that the central heat pumps lie outside the MV grid district area. - Therefore, the geolocation is adapted in this function. It is first checked, - if there is a CHP plant in the same district heating area. If this is the case - and the CHP plant lies within the MV grid district, then the geolocation of the - heat pump is set to the same geolocation as the CHP plant, as it is assumed, - that this would be a suitable place for a heat pump as well. If there is no + Concerning the geolocation - the electricity bus central heat pumps and + resistive heaters are attached to is not determined based on the geolocation + (which is in egon_data always set to the centroid of the district heating area + they are in) but based on the majority of heat demand in an MV grid area. + Further, large heat pumps and resistive heaters are split into several smaller + ones in egon_data. The geolocation is however not adapted in egon_data. Due to + this, it is often the case, that the central heat pumps and resistive heaters + lie outside the MV grid district area. Therefore, the geolocation is adapted in + this function. It is first checked, if there is a CHP plant in the same district + heating area. If this is the case and the CHP plant lies within the MV grid + district, then the geolocation of the is set to the same geolocation as the + CHP plant, as it is assumed, that this would be a suitable place for a heat pump + and resistive heaters as well. If there is no CHP plant, then it is checked if the centroid of the district heating area lies within the MV grid. If this is the case, then this is used. If neither of these options can be used, then the geolocation of the HV/MV station is used, as there - is no better indicator where the heat pump would be placed. + is no better indicator where the heat pump or resistive heater would be placed. + + Parameters + ---------- + carrier : str + Specifies whether to obtain central heat pumps or resistive heaters. + Possible options are "central_heat_pump" and "central_resistive_heater". Returns ------- :geopandas:`geopandas.GeoDataFrame` - Geodataframe containing installed heat pump capacity for all central heat - pumps in the grid per district heating area. - For more information see parameter `hp_central` in + Geodataframe containing information on all central heat pumps or + resistive heaters in the grid per district heating area. + For more information see parameter `hp_central` or + `resistive_heater_central` in :func:`~.io.heat_pump_import._grid_integration`. """ + # get heat pumps / resistive heaters in the grid query = session.query( egon_etrago_link.bus0, egon_etrago_link.bus1, @@ -131,7 +144,7 @@ def _get_central_heat_pumps(): ).filter( egon_etrago_link.scn_name == scenario, egon_etrago_link.bus0 == edisgo_object.topology.id, - egon_etrago_link.carrier == "central_heat_pump", + egon_etrago_link.carrier == carrier, egon_etrago_link.p_nom <= edisgo_object.config["grid_connection"]["upper_limit_voltage_level_4"], ) @@ -180,7 +193,8 @@ def _get_central_heat_pumps(): df_geom, df, how="right", right_on="bus1", left_on="bus1" ) - # check if there is a CHP plant where heat pump can be located + # check if there is a CHP plant where heat pump / resistive heater can + # be located srid_dh_supply = db.get_srid_of_db_table( session, egon_district_heating.geometry ) @@ -201,7 +215,7 @@ def _get_central_heat_pumps(): crs=f"EPSG:{srid_dh_supply}", ).to_crs(mv_grid_geom_srid) - # set geolocation of central heat pump + # set geolocation of central heat pump / resistive heater for idx in df_merge.index: geom = None # if there is a CHP plant and it lies within the grid district, use @@ -273,10 +287,34 @@ def _get_individual_heat_pump_capacity(): building_ids = edisgo_object.topology.loads_df.building_id.unique() mv_grid_geom_srid = edisgo_object.topology.grid_district["srid"] - # get individual and district heating heat pumps + if import_types is None: + import_types = [ + "individual_heat_pumps", + "central_heat_pumps", + "central_resistive_heaters", + ] + + # get individual and district heating heat pumps, as well as resistive heaters + # in district heating with db.session_scope_egon_data(engine) as session: - hp_individual = _get_individual_heat_pumps() - hp_central = _get_central_heat_pumps() + if "individual_heat_pumps" in import_types: + hp_individual = _get_individual_heat_pumps() + else: + hp_individual = pd.DataFrame(columns=["p_set"]) + + if "central_heat_pumps" in import_types: + hp_central = _get_central_heat_pump_or_resistive_heaters( + "central_heat_pump" + ) + else: + hp_central = pd.DataFrame(columns=["p_set"]) + + if "central_resistive_heaters" in import_types: + resistive_heaters_central = _get_central_heat_pump_or_resistive_heaters( + "central_resistive_heater" + ) + else: + resistive_heaters_central = pd.DataFrame(columns=["p_set"]) # sanity check with db.session_scope_egon_data(engine) as session: @@ -292,6 +330,7 @@ def _get_individual_heat_pump_capacity(): edisgo_object=edisgo_object, hp_individual=hp_individual.sort_values(by="p_set"), hp_central=hp_central.sort_values(by="p_set"), + resistive_heaters_central=resistive_heaters_central.sort_values(by="p_set"), ) @@ -299,6 +338,7 @@ def _grid_integration( edisgo_object, hp_individual, hp_central, + resistive_heaters_central, ): """ Integrates heat pumps for individual and district heating into the grid. @@ -321,7 +361,7 @@ def _grid_integration( Weather cell the heat pump is in used to obtain the COP time series. hp_central : :geopandas:`geopandas.GeoDataFrame` - Geodataframe containing all heat pumps in district heating network. + Geodataframe containing all heat pumps in district heating networks. Columns are: * p_set : float @@ -338,6 +378,10 @@ def _grid_integration( Geolocation of the heat pump in the same coordinate reference system as the MV grid district geometry. + resistive_heaters_central : :geopandas:`geopandas.GeoDataFrame` + Geodataframe containing all resistive heaters in district heating networks. + Columns are the same as for `hp_central`. + Returns -------- list(str) @@ -454,9 +498,22 @@ def _grid_integration( if not hp_central.empty: # integrate central heat pumps for hp in hp_central.index: + # determine voltage level, considering resistive heaters + p_set = hp_central.at[hp, "p_set"] + if not resistive_heaters_central.empty: + rh = resistive_heaters_central[ + resistive_heaters_central.district_heating_id + == hp_central.at[hp, "district_heating_id"] + ] + p_set += rh.p_set.sum() + voltage_level = determine_grid_integration_voltage_level( + edisgo_object, p_set + ) + # check if there is a resistive heater as well hp_name = edisgo_object.integrate_component_based_on_geolocation( comp_type="heat_pump", geolocation=hp_central.at[hp, "geom"], + voltage_level=voltage_level, add_ts=False, p_set=hp_central.at[hp, "p_set"], weather_cell_id=hp_central.at[hp, "weather_cell_id"], @@ -470,4 +527,52 @@ def _grid_integration( f"{sum(hp_central.p_set):.2f} MW of heat pumps for district heating " f"integrated." ) + + if not resistive_heaters_central.empty: + # integrate central resistive heaters + for rh in resistive_heaters_central.index: + integrated = False + # check if there already is a component in the same district heating network + # integrated into the grid and if so, use the same bus + if "district_heating_id" in edisgo_object.topology.loads_df.columns: + tmp = edisgo_object.topology.loads_df[ + edisgo_object.topology.loads_df.district_heating_id + == resistive_heaters_central.at[rh, "district_heating_id"] + ] + if not tmp.empty: + hp_name = edisgo_object.add_component( + comp_type="load", + type="heat_pump", + sector="district_heating_resistive_heater", + bus=tmp.bus[0], + p_set=resistive_heaters_central.at[rh, "p_set"], + weather_cell_id=resistive_heaters_central.at[ + rh, "weather_cell_id" + ], + district_heating_id=resistive_heaters_central.at[ + rh, "district_heating_id" + ], + area_id=resistive_heaters_central.at[rh, "area_id"], + ) + integrated = True + if integrated is False: + hp_name = edisgo_object.integrate_component_based_on_geolocation( + comp_type="heat_pump", + geolocation=resistive_heaters_central.at[rh, "geom"], + add_ts=False, + p_set=resistive_heaters_central.at[rh, "p_set"], + weather_cell_id=resistive_heaters_central.at[rh, "weather_cell_id"], + sector="district_heating_resistive_heater", + district_heating_id=resistive_heaters_central.at[ + rh, "district_heating_id" + ], + area_id=resistive_heaters_central.at[rh, "area_id"], + ) + integrated_hps = integrated_hps.append(pd.Index([hp_name])) + + logger.debug( + f"{sum(resistive_heaters_central.p_set):.2f} MW of resistive heaters for" + f"district heating integrated." + ) + return integrated_hps diff --git a/tests/io/test_heat_pump_import.py b/tests/io/test_heat_pump_import.py index 5f8d1b363..00717db0e 100644 --- a/tests/io/test_heat_pump_import.py +++ b/tests/io/test_heat_pump_import.py @@ -8,6 +8,7 @@ from edisgo import EDisGo from edisgo.io import heat_pump_import +from edisgo.tools.tools import determine_bus_voltage_level class TestHeatPumpImport: @@ -42,6 +43,20 @@ def setup_heat_pump_data_dh(self): ) return hp_df + def setup_resistive_heater_data_dh(self): + geom = Point((10.02178787570608, 47.55650888787377)) + hp_df = pd.DataFrame( + data={ + "p_set": [21.0, 0.17], + "weather_cell_id": [11051, 11051], + "district_heating_id": [5, 6], + "area_id": [4, 5], + "geom": [None, geom], + }, + index=[1, 2], + ) + return hp_df + @pytest.mark.local def test_oedb(self, caplog): with caplog.at_level(logging.DEBUG): @@ -51,15 +66,37 @@ def test_oedb(self, caplog): loads_df = self.edisgo.topology.loads_df hp_df = loads_df[loads_df.type == "heat_pump"] assert "Capacity of individual heat pumps" not in caplog.text - assert len(hp_df) == 151 + assert len(hp_df) == 152 assert len(hp_df[hp_df.sector == "individual_heating"]) == 150 assert np.isclose( hp_df[hp_df.sector == "individual_heating"].p_set.sum(), 2.97316 ) - assert len(hp_df[hp_df.sector == "district_heating"]) == 1 - assert np.isclose( - hp_df[hp_df.sector == "district_heating"].p_set.sum(), 0.095202 + dh_hp = hp_df[hp_df.sector == "district_heating"] + assert len(dh_hp) == 1 + assert np.isclose(dh_hp.p_set.sum(), 0.095202) + dh_rh = hp_df[hp_df.sector == "district_heating_resistive_heater"] + assert len(dh_rh) == 1 + assert np.isclose(dh_rh.p_set.sum(), 0.042807) + # assert central heat pump and resistive heater at same bus in voltage level 6 + assert determine_bus_voltage_level(self.edisgo, dh_hp.bus[0]) == 6 + assert dh_hp.bus[0] == dh_rh.bus[0] + + # test without resistive heaters and individual heat pumps + self.edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_3_path, legacy_ding0_grids=False ) + heat_pump_import.oedb( + self.edisgo, + scenario="eGon2035", + engine=pytest.engine, + import_types=["central_heat_pumps"], + ) + loads_df = self.edisgo.topology.loads_df + hp_df = loads_df[loads_df.type == "heat_pump"] + assert len(hp_df) == 1 + assert len(hp_df[hp_df.sector == "district_heating"]) == 1 + # assert central heat pump in voltage level 7 + assert determine_bus_voltage_level(self.edisgo, hp_df.bus[0]) == 7 def test__grid_integration(self, caplog): @@ -68,6 +105,7 @@ def test__grid_integration(self, caplog): self.edisgo, hp_individual=pd.DataFrame(), hp_central=self.setup_heat_pump_data_dh(), + resistive_heaters_central=pd.DataFrame(), ) loads_df = self.edisgo.topology.loads_df hp_df = loads_df[loads_df.type == "heat_pump"] @@ -102,6 +140,7 @@ def test__grid_integration(self, caplog): self.edisgo, hp_individual=self.setup_heat_pump_data_individual_heating(), hp_central=pd.DataFrame(), + resistive_heaters_central=pd.DataFrame(), ) loads_df = self.edisgo.topology.loads_df @@ -133,7 +172,27 @@ def test__grid_integration(self, caplog): self.edisgo, hp_individual=self.setup_heat_pump_data_individual_heating(), hp_central=pd.DataFrame(), + resistive_heaters_central=pd.DataFrame(), ) loads_df = self.edisgo.topology.loads_df hp_df = loads_df[loads_df.type == "heat_pump"] assert len(hp_df) == 9 + + # ############# test integration of central resistive heaters ################# + heat_pump_import._grid_integration( + self.edisgo, + hp_individual=pd.DataFrame(), + hp_central=pd.DataFrame(), + resistive_heaters_central=self.setup_resistive_heater_data_dh(), + ) + loads_df = self.edisgo.topology.loads_df + hp_df = loads_df[loads_df.sector == "district_heating_resistive_heater"] + assert len(hp_df) == 2 + # check that resistive heater in same district heating network as heat pumps + # is integrated at same bus + bus_rh = hp_df[hp_df.p_set == 21.0].bus[0] + assert bus_rh in loads_df[loads_df.sector == "district_heating"].bus.values + # check that resistive heater in other district heating network is integrated + # in voltage level 6 + bus_rh = hp_df[hp_df.p_set == 0.17].bus[0] + assert determine_bus_voltage_level(self.edisgo, bus_rh) == 6 From a9209cdbffaf509928495945ce7f637be8d282e0 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 13:21:44 +0200 Subject: [PATCH 242/355] Add resistive heaters in Topology docstring --- edisgo/network/topology.py | 29 +++++++++++++++++++++-------- 1 file changed, 21 insertions(+), 8 deletions(-) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 87ae18a01..aada8b1c8 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -217,7 +217,9 @@ def loads_df(self): Peak load or nominal capacity in MW. type : str - Type of load, e.g. 'conventional_load', 'charging_point' or 'heat_pump'. + Type of load, e.g. 'conventional_load', 'charging_point' or 'heat_pump' + (resistive heaters are as well treated as heat pumps with a COP smaller + than 1). This information is for example currently necessary when setting up a worst case analysis, as different types of loads are treated differently. @@ -248,8 +250,12 @@ def loads_df(self): In case of heat pumps it is used when heat pumps are integrated into the grid, as e.g. heat pumps for individual heating are allocated to an existing load (see - function :attr:`~.network.topology.Topology.connect_to_lv`). The sector - needs to either be 'individual_heating' or 'district_heating'. + function :attr:`~.network.topology.Topology.connect_to_lv`). It is + further used to specify, if component is a resistive heater, as + resistive heaters are treated as heat pumps. The sector + needs to either be 'individual_heating', 'district_heating', + 'individual_heating_resistive_heater' or + 'district_heating_resistive_heater'. building_id : int ID of the building the load is associated with. This is e.g. used to @@ -2017,9 +2023,10 @@ def connect_to_lv( (fallback) * Heat pumps with specified voltage level 7 - * with sector 'individual_heating' to LV loads - * with sector 'individual_heating' to some bus in the grid that - is not a house connection + * with sector 'individual_heating' or + 'individual_heating_resistive_heater' to LV loads + * with sector 'district_heating' or 'district_heating_resistive_heater' + to some bus in the grid that is not a house connection * to random bus in the LV grid that if no appropriate load is available (fallback) @@ -2201,9 +2208,15 @@ def _choose_random_substation_id(): ~lv_grid.buses_df.in_building.astype(bool) ].index else: - if comp_data["sector"] == "individual_heating": + if comp_data["sector"] in [ + "individual_heating", + "individual_heating_resistive_heater", + ]: target_buses = lv_loads.bus.values - elif comp_data["sector"] == "district_heating": + elif comp_data["sector"] in [ + "district_heating", + "district_heating_resistive_heater", + ]: target_buses = lv_grid.buses_df[ ~lv_grid.buses_df.in_building.astype(bool) ].index From cbe217b95a7892105d2e537c9d9a81b489542b02 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 13:25:22 +0200 Subject: [PATCH 243/355] Add option to choose which pth technologies to import to EDisGo wrapper --- edisgo/edisgo.py | 12 ++++++++++-- tests/test_edisgo.py | 1 + 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index d6fe2ac14..f26f9f98a 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1829,7 +1829,7 @@ def apply_charging_strategy(self, strategy="dumb", **kwargs): """ charging_strategy(self, strategy=strategy, **kwargs) - def import_heat_pumps(self, scenario, engine, timeindex=None): + def import_heat_pumps(self, scenario, engine, timeindex=None, import_types=None): """ Gets heat pump data for specified scenario from oedb and integrates the heat pumps into the grid. @@ -1899,6 +1899,10 @@ def import_heat_pumps(self, scenario, engine, timeindex=None): :py:attr:`~.network.timeseries.TimeSeries.timeindex` is used. If :py:attr:`~.network.timeseries.TimeSeries.timeindex` is not set, the data is indexed using the default year and returned for the whole year. + import_types : list(str) or None + Specifies which technologies to import. Possible options are + "individual_heat_pumps", "central_heat_pumps" and + "central_resistive_heaters". If None, all are imported. """ # set up year to index data by @@ -1927,10 +1931,14 @@ def import_heat_pumps(self, scenario, engine, timeindex=None): scenario, engine, timeindex=pd.date_range(f"1/1/{year}", periods=8760, freq="H"), + import_types=import_types, ) integrated_heat_pumps = import_heat_pumps_oedb( - edisgo_object=self, scenario=scenario, engine=engine + edisgo_object=self, + scenario=scenario, + engine=engine, + import_types=import_types, ) if len(integrated_heat_pumps) > 0: self.heat_pump.set_heat_demand( diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index aa6cafa3c..339ef0de4 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -1273,6 +1273,7 @@ def test_import_heat_pumps(self): scenario="eGon2035", engine=pytest.engine, timeindex=pd.date_range("1/1/2020", periods=2, freq="H"), + import_types=["individual_heat_pumps", "central_heat_pumps"], ) loads_df = edisgo_object.topology.loads_df From df1894651f090246bf7e0890765c13c7128e33a2 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 13:57:45 +0200 Subject: [PATCH 244/355] Bug fix allow several PtH components per building and DH area --- edisgo/io/timeseries_import.py | 42 +++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 18 deletions(-) diff --git a/edisgo/io/timeseries_import.py b/edisgo/io/timeseries_import.py index 013cb72d4..93d461b82 100644 --- a/edisgo/io/timeseries_import.py +++ b/edisgo/io/timeseries_import.py @@ -426,12 +426,17 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): allow_leap_year=False, ) - hp_df = edisgo_obj.topology.loads_df[ + pth_df = edisgo_obj.topology.loads_df[ edisgo_obj.topology.loads_df.type == "heat_pump" ] # get individual heating profiles from oedb - building_ids = hp_df.building_id.dropna().unique() + pth_ind_df = pth_df[ + pth_df.sector.isin( + ["individual_heating", "individual_heating_resistive_heater"] + ) + ] + building_ids = pth_ind_df.building_id.dropna().unique() if len(building_ids) > 0: residential_profiles_df = get_residential_heat_profiles_per_building( building_ids, scenario, engine @@ -448,22 +453,25 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): ) individual_heating_df = individual_heating_df.groupby(axis=1, level=0).sum() # set column names to be heat pump names instead of building IDs - rename_series = ( - hp_df.loc[:, ["building_id"]] - .dropna() - .reset_index() - .set_index("building_id") - .iloc[:, 0] + individual_heating_df = pd.DataFrame( + { + hp_name: individual_heating_df.loc[ + :, pth_ind_df.at[hp_name, "building_id"] + ] + for hp_name in pth_ind_df.index + } ) - individual_heating_df.rename(columns=rename_series, inplace=True) # set index individual_heating_df.index = timeindex_full else: individual_heating_df = pd.DataFrame(index=timeindex_full) # get district heating profiles from oedb - if "area_id" in hp_df.columns: - dh_ids = hp_df.area_id.dropna().unique() + pth_dh_df = pth_df[ + pth_df.sector.isin(["district_heating", "district_heating_resistive_heater"]) + ] + if "area_id" in pth_dh_df.columns: + dh_ids = pth_dh_df.area_id.dropna().unique() else: dh_ids = [] if len(dh_ids) > 0: @@ -471,14 +479,12 @@ def heat_demand_oedb(edisgo_obj, scenario, engine, timeindex=None): dh_ids, scenario, engine ) # set column names to be heat pump names instead of district heating IDs - rename_series = ( - hp_df.loc[:, ["area_id"]] - .dropna() - .reset_index() - .set_index("area_id") - .iloc[:, 0] + dh_profile_df = pd.DataFrame( + { + hp_name: dh_profile_df.loc[:, pth_dh_df.at[hp_name, "area_id"]] + for hp_name in pth_dh_df.index + } ) - dh_profile_df.rename(columns=rename_series, inplace=True) # set index dh_profile_df.index = timeindex_full else: From 524682a508334e702f870901996e60d02b0bccc7 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 17:42:42 +0200 Subject: [PATCH 245/355] Add function to obtain efficiency of resistive heaters --- edisgo/io/heat_pump_import.py | 37 +++++++++++++++++++++++++++++++ tests/io/test_heat_pump_import.py | 9 ++++++++ 2 files changed, 46 insertions(+) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index de262425d..cd579a099 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -576,3 +576,40 @@ def _grid_integration( ) return integrated_hps + + +def efficiency_resistive_heaters_oedb(scenario, engine): + """ + Get efficiency of resistive heaters from the + `OpenEnergy DataBase `_. + + Parameters + ---------- + scenario : str + Scenario for which to retrieve efficiency data. Possible options + are "eGon2035" and "eGon100RE". + engine : :sqlalchemy:`sqlalchemy.Engine` + Database engine. + + Returns + ------- + dict + Dictionary with efficiency of resistive heaters in district and individual + heating. Keys of the dictionary are + "central_resistive_heater" giving the efficiency of resistive heaters in + district heating and "rural_resistive_heater" giving the efficiency of + resistive heaters in individual heating systems. Values are of type float and + given in p.u. + + """ + saio.register_schema("scenario", engine) + from saio.scenario import egon_scenario_parameters + + # get cop from database + with db.session_scope_egon_data(engine) as session: + query = session.query( + egon_scenario_parameters.heat_parameters, + ).filter(egon_scenario_parameters.name == scenario) + eta_dict = query.first()[0]["efficiency"] + + return eta_dict diff --git a/tests/io/test_heat_pump_import.py b/tests/io/test_heat_pump_import.py index 00717db0e..ada66b5b8 100644 --- a/tests/io/test_heat_pump_import.py +++ b/tests/io/test_heat_pump_import.py @@ -196,3 +196,12 @@ def test__grid_integration(self, caplog): # in voltage level 6 bus_rh = hp_df[hp_df.p_set == 0.17].bus[0] assert determine_bus_voltage_level(self.edisgo, bus_rh) == 6 + + @pytest.mark.local + def test_efficiency_resistive_heaters_oedb(self): + + eta_dict = heat_pump_import.efficiency_resistive_heaters_oedb( + scenario="eGon2035", engine=pytest.engine + ) + assert eta_dict["central_resistive_heater"] == 0.99 + assert eta_dict["rural_resistive_heater"] == 0.9 From d8e064af15a971e758eaf882380e85721bcc6c65 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 18:20:12 +0200 Subject: [PATCH 246/355] Add setting efficiency for resistive heaters in HeatPump class --- edisgo/network/heat.py | 75 ++++++++++++++++++++++++++++++++++++------ 1 file changed, 65 insertions(+), 10 deletions(-) diff --git a/edisgo/network/heat.py b/edisgo/network/heat.py index 89033fd16..b1d34849d 100644 --- a/edisgo/network/heat.py +++ b/edisgo/network/heat.py @@ -7,7 +7,7 @@ import pandas as pd -from edisgo.io import timeseries_import +from edisgo.io import heat_pump_import, timeseries_import from edisgo.tools import tools logger = logging.getLogger(__name__) @@ -148,12 +148,15 @@ def set_cop(self, edisgo_object, ts_cop, **kwargs): * 'oedb' - Weather cell specific hourly COP time series are obtained - from the `OpenEnergy DataBase - `_ (see - :func:`edisgo.io.timeseries_import.cop_oedb` for more information). - Using information on which weather cell each heat pump is in, the - weather cell specific time series are mapped to each heat pump. + COP / efficiency data are obtained from the `OpenEnergy DataBase + `_. + In case of heat pumps weather cell specific hourly COP time series + are obtained (see :func:`edisgo.io.timeseries_import.cop_oedb` for more + information). Using information on which weather cell each heat pump + is in, the weather cell specific time series are mapped to each heat + pump. + In case of resistive heaters a constant efficiency is set (see + :func:`edisgo.io.heat_pump_import.efficiency_resistive_heaters_oedb`). Weather cell information of heat pumps is obtained from column 'weather_cell_id' in :attr:`~.network.topology.Topology.loads_df`. In @@ -176,7 +179,7 @@ def set_cop(self, edisgo_object, ts_cop, **kwargs): engine : :sqlalchemy:`sqlalchemy.Engine` Database engine. This parameter is required in case `ts_cop` is 'oedb'. heat_pump_names : list(str) or None - Defines for which heat pumps to get COP time series for in case `ts_cop` is + Defines for which heat pumps to set COP time series in case `ts_cop` is 'oedb'. If None, all heat pumps in :attr:`~.network.topology.Topology.loads_df` (type is 'heat_pump') are used. Default: None. @@ -199,9 +202,19 @@ def set_cop(self, edisgo_object, ts_cop, **kwargs): edisgo_object.topology.loads_df.type == "heat_pump" ].index - if len(heat_pump_names) > 0: + pth_df = edisgo_object.topology.loads_df.loc[heat_pump_names, :] + hp_df = pth_df[ + ~pth_df.sector.isin( + [ + "individual_heating_resistive_heater", + "district_heating_resistive_heater", + ] + ) + ] + + # set COP of heat pumps + if len(hp_df) > 0: # check weather cell information of heat pumps - hp_df = edisgo_object.topology.loads_df.loc[heat_pump_names, :] # if no heat pump has weather cell information, throw an error if ( "weather_cell_id" not in hp_df.columns @@ -247,6 +260,48 @@ def set_cop(self, edisgo_object, ts_cop, **kwargs): ) else: cop_df = pd.DataFrame() + + # set efficiency of resistive heaters + rh_df = pth_df[ + pth_df.sector.isin( + [ + "individual_heating_resistive_heater", + "district_heating_resistive_heater", + ] + ) + ] + if len(rh_df) > 0: + # get efficiencies of resistive heaters + eta_dict = heat_pump_import.efficiency_resistive_heaters_oedb( + scenario="eGon2035", # currently only possible scenario + engine=kwargs.get("engine", None), + ) + # determine timeindex to use + if not cop_df.empty: + timeindex = cop_df.index + else: + timeindex, _ = timeseries_import._timeindex_helper_func( + edisgo_object, + kwargs.get("timeindex", None), + default_year=2011, + allow_leap_year=False, + ) + # assign efficiency time series to each heat pump + eta_df = pd.DataFrame( + data={ + _: ( + eta_dict["central_resistive_heater"] + if rh_df.at[_, "sector"] + == "district_heating_resistive_heater" + else eta_dict["rural_resistive_heater"] + ) + for _ in rh_df.index + }, + index=timeindex, + ) + else: + eta_df = pd.DataFrame() + cop_df = pd.concat([cop_df, eta_df], axis=1) elif isinstance(ts_cop, pd.DataFrame): cop_df = ts_cop else: From 007b73ae18c7d11db213cf62d4161ba30da38460 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 18:20:44 +0200 Subject: [PATCH 247/355] Adapt tests to include resistive heaters --- tests/network/test_heat.py | 58 +++++++++++++++++++++++++++----------- 1 file changed, 42 insertions(+), 16 deletions(-) diff --git a/tests/network/test_heat.py b/tests/network/test_heat.py index 14638d723..dfbc442e0 100644 --- a/tests/network/test_heat.py +++ b/tests/network/test_heat.py @@ -42,12 +42,20 @@ def setup_egon_heat_pump_data(self): "HP_442081", "Heat_Pump_LVGrid_1163850014_district_heating_6", "HP_448156", + "Heat_Pump_LVGrid_1163850014_district_heating_6_2", + "Heat_Pump_LVGrid_1163850014_district_heating_6_3", ] - building_ids = [442081, None, 430859] - sector = ["individual_heating", "district_heating", "individual_heating"] - weather_cell_ids = [11051, 11051, 11052] - district_heating_ids = [None, 5, None] - area_ids = [None, 4, None] + building_ids = [442081, None, 430859, None, None] + sector = [ + "individual_heating", + "district_heating", + "individual_heating", + "district_heating_resistive_heater", + "district_heating_resistive_heater", + ] + weather_cell_ids = [11051, 11051, 11052, 11051, 11052] + district_heating_ids = [None, 5, None, 5, 6] + area_ids = [None, 4, None, 4, 5] hp_df = pd.DataFrame( data={ "bus": "dummy_bus", @@ -125,6 +133,15 @@ def test_set_cop_oedb(self, caplog): heat_pump_names=edisgo_object.topology.loads_df.index[0:4], ) + # test with heat_pump_names empty + edisgo_object.heat_pump.set_cop( + edisgo_object, + "oedb", + engine=pytest.engine, + heat_pump_names=[], + ) + assert edisgo_object.heat_pump.cop_df.empty + # test with missing weather cell information (some values None) - raises # warning hp_data_egon = self.setup_egon_heat_pump_data() @@ -142,16 +159,25 @@ def test_set_cop_oedb(self, caplog): heat_pump_names=heat_pump_names, ) assert "There are heat pumps with no weather cell ID." in caplog.text - assert edisgo_object.heat_pump.cop_df.shape == (8760, 4) - - # test with empty list for heat_pump_names - edisgo_object.heat_pump.set_cop( - edisgo_object, - "oedb", - engine=pytest.engine, - heat_pump_names=[], - ) - assert edisgo_object.heat_pump.cop_df.shape == (8760, 4) + assert edisgo_object.heat_pump.cop_df.shape == (8760, 6) + assert ( + edisgo_object.heat_pump.cop_df.loc[ + :, "Heat_Pump_LVGrid_1163850014_district_heating_6_2" + ] + == 0.99 + ).all() + assert ( + edisgo_object.heat_pump.cop_df.loc[ + :, "Heat_Pump_LVGrid_1163850014_district_heating_6_3" + ] + == 0.99 + ).all() + assert ( + edisgo_object.heat_pump.cop_df.loc[:, "HP_442081"] + == edisgo_object.heat_pump.cop_df.loc[ + :, "Heat_Pump_LVGrid_1163850014_district_heating_6" + ] + ).all() def test_set_heat_demand(self): # test with dataframe @@ -204,7 +230,7 @@ def test_set_heat_demand_oedb(self): engine=pytest.engine, scenario="eGon2035", ) - assert edisgo_object.heat_pump.heat_demand_df.shape == (8760, 3) + assert edisgo_object.heat_pump.heat_demand_df.shape == (8760, 5) assert edisgo_object.heat_pump.heat_demand_df.index[0].year == 2035 # ###### test with timeindex to get year from and invalid heat pump name ##### From c480a9cb7c5b65f3ee30c6e95c3fc8fbe1243568 Mon Sep 17 00:00:00 2001 From: Maike Held Date: Thu, 13 Apr 2023 19:43:04 +0200 Subject: [PATCH 248/355] Added assertions to test_distribute_overlying_grid_timeseries() --- edisgo/edisgo.py | 7 +- edisgo/flex_opt/check_tech_constraints.py | 2 +- edisgo/network/dsm.py | 35 +++ edisgo/opf/timeseries_reduction.py | 44 ++-- tests/opf/test_timeseries_reduction.py | 265 ++++++++++++++-------- 5 files changed, 226 insertions(+), 127 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 9d6cae812..dfb3c3850 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2703,8 +2703,8 @@ def resample_timeseries( """ Resamples time series data in :class:`~.network.timeseries.TimeSeries`, :class:`~.network.heat.HeatPump`, - :class:`~.network.electromobility.Electromobility` and - :class:`~.network.overlying_grid.OverlyingGrid`. + :class:`~.network.electromobility.Electromobility`, :class:`~.network.dsm.DSM` + and :class:`~.network.overlying_grid.OverlyingGrid`. Both up- and down-sampling methods are possible. @@ -2728,6 +2728,8 @@ def resample_timeseries( * :attr:`~.network.heat.HeatPump.heat_demand_df` + * All data in :class:`~.network.dsm.DSM` + * All data in :class:`~.network.overlying_grid.OverlyingGrid` Parameters @@ -2760,6 +2762,7 @@ def resample_timeseries( self.timeseries.resample(method=method, freq=freq) self.electromobility.resample(freq=freq) self.heat_pump.resample_timeseries(method=method, freq=freq) + self.dsm.resample(method=method, freq=freq) self.overlying_grid.resample(method=method, freq=freq) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 6628f4c6e..a2d7df72d 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -650,7 +650,7 @@ def stations_allowed_load(edisgo_obj, grids=None): def stations_relative_load(edisgo_obj, grids=None): """ Returns relative loading of specified grids stations to the overlying voltage level - per time step in p.u.. + per time step in p.u. Stations relative loading is determined by dividing the stations loading (from power flow analysis) by the allowed loading (considering allowed load factors in diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py index 8180186bf..9b09d2874 100644 --- a/edisgo/network/dsm.py +++ b/edisgo/network/dsm.py @@ -7,6 +7,8 @@ import pandas as pd +from edisgo.tools.tools import resample + logger = logging.getLogger(__name__) @@ -262,3 +264,36 @@ def from_csv(self, data_path: str | Path, from_zip_archive: bool = False): if from_zip_archive: # make sure to destroy ZipFile Class to close any open connections zip.close() + + def resample(self, method: str = "ffill", freq: str | pd.Timedelta = "15min"): + """ + Resamples all time series to a desired resolution. + + See :attr:`~.EDisGo.resample_timeseries` for more information. + + Parameters + ---------- + method : str, optional + See :attr:`~.EDisGo.resample_timeseries` for more information. + + freq : str, optional + See :attr:`~.EDisGo.resample_timeseries` for more information. + + """ + # get frequency of time series data + timeindex = [] + for attr_str in self._attributes: + attr = getattr(self, attr_str) + if not attr.empty: + if len(attr) >= 2: + timeindex = attr.index + break + + if len(timeindex) < 2: + logger.warning( + "Data cannot be resampled as it only contains one time step." + ) + return + + freq_orig = timeindex[1] - timeindex[0] + resample(self, freq_orig, method, freq) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 990bd02bd..46fd22ec2 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -487,8 +487,7 @@ def get_steps_storage(edisgo_obj, window=5): def get_steps_flex_opf( edisgo_obj, - num_ti_loading=None, - num_ti_voltage=None, + num_ti=None, percentage=0.1, window_days=7, save_steps=False, @@ -501,12 +500,9 @@ def get_steps_flex_opf( ----------- edisgo_obj : :class:`~.EDisGo` The eDisGo API object - num_ti_loading: int - The number of most critical overloading time intervals to select, if None + num_ti: int + The number of most critical line loading and voltage issues to select. If None percentage is used. Default: None - num_ti_voltage: int - The number of most critical voltage issues to select, if None percentage is - used. Default: None percentage : float The percentage of most critical time intervals to select. Default: 0.1 window_days : int @@ -534,35 +530,35 @@ def get_steps_flex_opf( loading_scores = _scored_most_critical_loading_time_interval( edisgo_obj, window_days ) - if num_ti_loading is None: - num_ti_loading = int(np.ceil(len(loading_scores.OL_ts) * percentage)) + if num_ti is None: + num_ti = int(np.ceil(len(loading_scores) * percentage)) else: - if num_ti_loading > len(loading_scores.OL_ts): + if num_ti > len(loading_scores): logger.info( f"The number of time intervals with highest overloading " - f"({len(loading_scores.OL_ts)}) is lower than the defined number of " - f"loading time intervals ({num_ti_loading}). Therefore, only " - f"{len(loading_scores.OL_ts)} time intervals are exported." + f"({len(loading_scores)}) is lower than the defined number of " + f"loading time intervals ({num_ti}). Therefore, only " + f"{len(loading_scores)} time intervals are exported." ) - num_ti_loading = len(loading_scores.OL_ts) - steps = loading_scores.iloc[:num_ti_loading] + num_ti = len(loading_scores) + steps = loading_scores.iloc[:num_ti] # Select most critical steps based on voltage violations voltage_scores = _scored_most_critical_voltage_issues_time_interval( edisgo_obj, window_days ) - if num_ti_voltage is None: - num_ti_voltage = int(np.ceil(len(voltage_scores.V_ts) * percentage)) + if num_ti is None: + num_ti = int(np.ceil(len(voltage_scores) * percentage)) else: - if num_ti_voltage > len(voltage_scores.V_ts): + if num_ti > len(voltage_scores): logger.info( f"The number of time steps with highest voltage issues " - f"({len(voltage_scores.V_ts)}) is lower than the defined number of " - f"voltage time steps ({num_ti_voltage}). Therefore, only " - f"{len(voltage_scores.V_ts)} time steps are exported." + f"({len(voltage_scores)}) is lower than the defined number of " + f"voltage time steps ({num_ti}). Therefore, only " + f"{len(voltage_scores)} time steps are exported." ) - num_ti_voltage = len(voltage_scores.V_ts) - steps = pd.concat([steps, voltage_scores.iloc[:num_ti_voltage]], axis=1) + num_ti = len(voltage_scores) + steps = pd.concat([steps, voltage_scores.iloc[:num_ti]], axis=1) if len(steps) == 0: logger.warning("No critical steps detected. No network expansion required.") @@ -667,7 +663,7 @@ def distribute_overlying_grid_timeseries(edisgo_obj): ).transpose() edisgo_copy.timeseries._loads_active_power.loc[:, cp_loads] = ( scaling_df.transpose() - * edisgo_obj.overlying_grid.storage_units_active_power + * edisgo_obj.overlying_grid.electromobility_active_power ).transpose() if not edisgo_copy.overlying_grid.storage_units_active_power.empty: scaling_factor = ( diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index 2794e0677..5b0e2937e 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -22,9 +22,11 @@ def setup_class(self): self.timesteps = self.edisgo.timeseries.timeindex def setup_flexibility_data(self): + # add heat pump dummy data self.edisgo.add_component( comp_type="load", type="heat_pump", + sector="individual_heating", ts_active_power=pd.Series( index=self.edisgo.timeseries.timeindex, data=[1.0 / 5, 2.0 / 6, 2.0 / 5, 1.0 / 6], @@ -36,6 +38,7 @@ def setup_flexibility_data(self): self.edisgo.add_component( comp_type="load", type="heat_pump", + sector="individual_heating", ts_active_power=pd.Series( index=self.edisgo.timeseries.timeindex, data=[2.0 / 7.0, 4.0 / 8.0, 3.0 / 7.0, 3.0 / 8.0], @@ -45,18 +48,17 @@ def setup_flexibility_data(self): p_set=3, ) - # add heat pump, electromobility, overlying grid dummy data self.edisgo.heat_pump.cop_df = pd.DataFrame( data={ - "Heat_Pump_LVGrid_3_1": [5.0, 6.0, 5.0, 6.0], - "Heat_Pump_LVGrid_5_1": [7.0, 8.0, 7.0, 8.0], + "Heat_Pump_LVGrid_3_individual_heating_1": [5.0, 6.0, 5.0, 6.0], + "Heat_Pump_LVGrid_5_individual_heating_1": [7.0, 8.0, 7.0, 8.0], }, index=self.edisgo.timeseries.timeindex, ) self.edisgo.heat_pump.heat_demand_df = pd.DataFrame( data={ - "Heat_Pump_LVGrid_3_1": [1.0, 2.0, 2.0, 1.0], - "Heat_Pump_LVGrid_5_1": [2.0, 4.0, 3.0, 3.0], + "Heat_Pump_LVGrid_3_individual_heating_1": [1.0, 2.0, 2.0, 1.0], + "Heat_Pump_LVGrid_5_individual_heating_1": [2.0, 4.0, 3.0, 3.0], }, index=self.edisgo.timeseries.timeindex, ) @@ -67,7 +69,7 @@ def setup_flexibility_data(self): }, index=self.edisgo.heat_pump.heat_demand_df.columns, ) - + # add electromobility dummy data self.edisgo.add_component( comp_type="load", type="charging_point", @@ -94,63 +96,92 @@ def setup_flexibility_data(self): ), } self.edisgo.electromobility.flexibility_bands = flex_bands - # ToDo: add DSM attribute to EDisGo object - # self.edisgo.dsm.p_min = pd.DataFrame( - # data={ - # "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ - # -0.3, - # -0.3, - # -0.3, - # -0.3, - # ], - # "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], - # }, - # index=self.edisgo.timeseries.timeindex, - # ) - # self.edisgo.dsm.p_max = pd.DataFrame( - # data={ - # "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ - # 0.3, - # 0.3, - # 0.3, - # 0.3, - # ], - # "Load_industrial_LVGrid_5_1": [0.07, 0.07, 0.07, 0.07], - # }, - # index=self.edisgo.timeseries.timeindex, - # ) - # self.edisgo.dsm.e_min = pd.DataFrame( - # data={ - # "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ - # -0.3, - # -0.4, - # -0.5, - # -0.4, - # ], - # "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], - # }, - # index=self.edisgo.timeseries.timeindex, - # ) - # self.edisgo.dsm.e_max = pd.DataFrame( - # data={ - # "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ - # 0.3, - # 0.5, - # 0.5, - # 0.4, - # ], - # "Load_industrial_LVGrid_5_1": [0.07, 0.1, 0.09, 0.07], - # }, - # index=self.edisgo.timeseries.timeindex, - # ) - - # ToDo: Add OG Data + # add DSM dummy data + self.edisgo.dsm.p_min = pd.DataFrame( + data={ + "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + -0.3, + -0.3, + -0.3, + -0.3, + ], + "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], + }, + index=self.edisgo.timeseries.timeindex, + ) + self.edisgo.dsm.p_max = pd.DataFrame( + data={ + "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + 0.3, + 0.3, + 0.3, + 0.3, + ], + "Load_industrial_LVGrid_5_1": [0.07, 0.07, 0.07, 0.07], + }, + index=self.edisgo.timeseries.timeindex, + ) + self.edisgo.dsm.e_min = pd.DataFrame( + data={ + "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + -0.3, + -0.4, + -0.5, + -0.4, + ], + "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], + }, + index=self.edisgo.timeseries.timeindex, + ) + self.edisgo.dsm.e_max = pd.DataFrame( + data={ + "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + 0.3, + 0.5, + 0.5, + 0.4, + ], + "Load_industrial_LVGrid_5_1": [0.07, 0.1, 0.09, 0.07], + }, + index=self.edisgo.timeseries.timeindex, + ) + # add overlying grid dummy data + for attr in [ + "dsm_active_power", + "electromobility_active_power", + "heat_pump_decentral_active_power", + "renewables_curtailment", + "storage_units_active_power", + ]: + if attr == "dsm_active_power": + data = [0.1, -0.1, -0.1, 0.1] + elif attr == "electromobility_active_power": + data = [0.4, 0.5, 0.5, 0.6] + elif attr == "heat_pump_decentral_active_power": + data = [0.5, 0.85, 0.85, 0.55] + elif attr == "storage_units_active_power": + data = [-0.35, -0.35, 0.35, 0.35] + if attr == "renewables_curtailment": + df = pd.DataFrame( + index=self.timesteps, + columns=["solar", "wind"], + data=0.1, + ) + else: + df = pd.Series( + index=self.timesteps, + data=data, + ) + setattr( + self.edisgo.overlying_grid, + attr, + df, + ) + # Resample timeseries and reindex to hourly timedelta self.edisgo.resample_timeseries(freq="1min") self.timesteps = pd.date_range(start="01/01/2018", periods=240, freq="h") - attributes = self.edisgo.timeseries._attributes - for attr in attributes: if not getattr(self.edisgo.timeseries, attr).empty: df = pd.DataFrame( @@ -167,15 +198,15 @@ def setup_flexibility_data(self): # Battery electric vehicle timeseries for key, df in self.edisgo.electromobility.flexibility_bands.items(): if not df.empty: - df.index = self.edisgo.timeseries + df.index = self.timesteps self.edisgo.electromobility.flexibility_bands.update({key: df}) # Heat pumps timeseries for attr in ["cop_df", "heat_demand_df"]: if not getattr(self.edisgo.heat_pump, attr).empty: df = pd.DataFrame( index=self.timesteps, - columns=getattr(self.edisgo.timeseries, attr).columns, - data=getattr(self.edisgo.timeseries, attr).values, + columns=getattr(self.edisgo.heat_pump, attr).columns, + data=getattr(self.edisgo.heat_pump, attr).values, ) setattr( self.edisgo.heat_pump, @@ -187,31 +218,34 @@ def setup_flexibility_data(self): if not getattr(self.edisgo.dsm, attr).empty: df = pd.DataFrame( index=self.timesteps, - columns=getattr(self.edisgo.timeseries, attr).columns, - data=getattr(self.edisgo.timeseries, attr).values, + columns=getattr(self.edisgo.dsm, attr).columns, + data=getattr(self.edisgo.dsm, attr).values, ) setattr( self.edisgo.dsm, attr, df, ) - # overlying grid + # overlying grid timeseries for attr in [ "dsm_active_power", "electromobility_active_power", - "geothermal_energy_feedin_district_heating", - "heat_pump_central_active_power", "heat_pump_decentral_active_power", "renewables_curtailment", - "solarthermal_energy_feedin_district_heating", "storage_units_active_power", ]: if not getattr(self.edisgo.overlying_grid, attr).empty: - df = pd.DataFrame( - index=self.timesteps, - columns=getattr(self.edisgo.timeseries, attr).columns, - data=getattr(self.edisgo.timeseries, attr).values, - ) + if attr == "renewables_curtailment": + df = pd.DataFrame( + index=self.timesteps, + columns=getattr(self.edisgo.overlying_grid, attr).columns, + data=getattr(self.edisgo.overlying_grid, attr).values, + ) + else: + df = pd.Series( + index=self.timesteps, + data=getattr(self.edisgo.overlying_grid, attr).values, + ) setattr( self.edisgo.overlying_grid, attr, @@ -260,40 +294,71 @@ def test_get_steps_reinforcement(self): def test__scored_most_critical_loading_time_interval(self): self.setup_flexibility_data() + self.edisgo.analyze() ts_crit = _scored_most_critical_loading_time_interval(self.edisgo, 1) - assert len(ts_crit) == 3 - - assert (ts_crit.index == self.timesteps[[0, 1, 3]]).all() - - assert ( - np.isclose(ts_crit[self.timesteps[[0, 1, 3]]], [1.45613, 1.45613, 1.14647]) - ).all() + assert len(ts_crit) == 9 + for ts in ts_crit.OL_t1: + assert ts in self.timesteps def test__scored_most_critical_voltage_issues_time_interval(self): + self.setup_flexibility_data() + self.edisgo.analyze() + ts_crit = _scored_most_critical_voltage_issues_time_interval(self.edisgo, 1) - ts_crit = _scored_most_critical_voltage_issues_time_interval(self.edisgo) - - assert len(ts_crit) == 2 - - assert (ts_crit.index == self.timesteps[[0, 1]]).all() - - assert ( - np.isclose(ts_crit[self.timesteps[[0, 1]]], [0.01062258, 0.01062258]) - ).all() + assert len(ts_crit) == 9 + for ts in ts_crit.V_t1: + assert ts in self.timesteps def test_get_steps_flex_opf(self): + self.setup_flexibility_data() + self.edisgo.analyze() + steps = get_steps_flex_opf(self.edisgo, num_ti=6, window_days=1) - ts_crit = get_steps_flex_opf(self.edisgo) - - assert len(ts_crit) == 3 - - assert (ts_crit == self.timesteps[[0, 1, 3]]).all() + assert len(steps) == 6 + assert len(steps.columns) == 6 def test_distribute_overlying_grid_timeseries(self): - - ts_crit = distribute_overlying_grid_timeseries(self.edisgo) - - assert len(ts_crit) == 3 - - assert (ts_crit == self.timesteps[[0, 1, 3]]).all() + self.setup_flexibility_data() + # self.edisgo.analyze() + edisgo_copy = distribute_overlying_grid_timeseries(self.edisgo) + dsm = self.edisgo.dsm.e_max.columns.values + hps = self.edisgo.heat_pump.cop_df.columns.values + # res = self.edisgo.topology.generators_df.loc[ + # (self.edisgo.topology.generators_df.type == "solar") + # | (self.edisgo.topology.generators_df.type == "wind") + # ].index.values + assert { + np.isclose( + edisgo_copy.timeseries.loads_active_power[hps].sum(axis=1)[i], + self.edisgo.overlying_grid.heat_pump_decentral_active_power[i], + atol=1e-5, + ) + for i in range(len(self.timesteps)) + } == {True} + assert ( + edisgo_copy.timeseries.loads_active_power["Charging_Point_LVGrid_6_1"] + == self.edisgo.overlying_grid.electromobility_active_power.values + ).all() + assert ( + edisgo_copy.timeseries.storage_units_active_power["Storage_1"] + == self.edisgo.overlying_grid.storage_units_active_power.values + ).all() + assert { + np.isclose( + edisgo_copy.timeseries.loads_active_power[dsm].sum(axis=1)[i], + self.edisgo.timeseries.loads_active_power[dsm].sum(axis=1)[i] + + self.edisgo.overlying_grid.dsm_active_power.values[i], + atol=1e-5, + ) + for i in range(len(self.timesteps)) + } == {True} + # ToDo: Curtailment funktioniert nicht + # assert set([np.isclose(edisgo_copy.timeseries.generators_active_power[ + # res].sum(axis=1)[i], + # self.edisgo.timeseries.generators_active_power[ + # res].sum( + # axis=1)[i] - + # self.edisgo.overlying_grid.renewables_curtailment.sum(axis=1).values[i], + # atol=1e-5) for i in range(len(self.timesteps))]) == {True} + print(" ") From d58a7f64ea63fb3893fb1369c1bcbde613e0b4de Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 13 Apr 2023 21:40:57 +0200 Subject: [PATCH 249/355] Adapt busmap functions --- edisgo/tools/spatial_complexity_reduction.py | 160 +++++++------------ 1 file changed, 60 insertions(+), 100 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index f12138435..5c7a19453 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -398,8 +398,8 @@ def apply_busmap(series): return edisgo_obj -def make_busmap_from_clustering( - edisgo_root: EDisGo, +def make_busmap_grid( + edisgo_obj: EDisGo, grid: None | str = None, mode: str = None, reduction_factor: float = 0.25, @@ -413,7 +413,7 @@ def make_busmap_from_clustering( Parameters ---------- - edisgo_root : :class:`~.EDisGo` + edisgo_obj : :class:`~.EDisGo` EDisGo object for which the busmap is created. grid : str or None If None, busmap is created for all grids, else only for the selected grid. @@ -429,6 +429,7 @@ def make_busmap_from_clustering( ------- :pandas:`pandas.DataFrame` Busmap which maps the old bus names to the new bus names with new coordinates. + See return value in function :func:`~make_busmap` for more information. References ---------- @@ -491,10 +492,8 @@ def rename_new_buses(series): logger.error("Grid is None") return series - start_time = time() - logger.debug("Start - Make busmap from clustering, mode = {}".format(mode)) + logger.debug("Start making busmap for grids.") - edisgo_obj = copy.deepcopy(edisgo_root) grid_list = make_grid_list(edisgo_obj, grid=grid) busmap_df = pd.DataFrame() @@ -601,12 +600,11 @@ def rename_new_buses(series): busmap_df = pd.concat([busmap_df, partial_busmap_df]) - logger.debug("Finished in {}s".format(time() - start_time)) return busmap_df -def make_busmap_from_feeders( - edisgo_root: EDisGo = None, +def make_busmap_feeders( + edisgo_obj: EDisGo = None, grid: None | Grid = None, mode: str = None, reduction_factor: float = 0.25, @@ -620,7 +618,7 @@ def make_busmap_from_feeders( Parameters ---------- - edisgo_root : :class:`~.EDisGo` + edisgo_obj : :class:`~.EDisGo` EDisGo object for which the busmap is created. grid : str or None If None, busmap is created for all grids, else only for the selected grid. @@ -637,6 +635,7 @@ def make_busmap_from_feeders( ------- :pandas:`pandas.DataFrame` Busmap which maps the old bus names to the new bus names with new coordinates. + See return value in function :func:`~make_busmap` for more information. References ---------- @@ -706,9 +705,7 @@ def transform_coordinates_back(ser): ser["new_y"] = y return ser - edisgo_obj = copy.deepcopy(edisgo_root) - start_time = time() - logger.debug("Start - Make busmap from feeders, mode = {}".format(mode)) + logger.debug("Start making busmap for feeders.") edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.apply( transform_coordinates, axis="columns" @@ -741,9 +738,7 @@ def transform_coordinates_back(ser): neighbors = list(nx.neighbors(graph_root, transformer_node)) neighbors.sort() logger.debug( - "Transformer neighbors has {} neighbors: {}".format( - len(neighbors), neighbors - ) + "Transformer has {} neighbors: {}".format(len(neighbors), neighbors) ) graph_without_transformer = copy.deepcopy(graph_root) @@ -857,12 +852,11 @@ def transform_coordinates_back(ser): busmap_df = busmap_df.apply(transform_coordinates_back, axis="columns") busmap_df.sort_index(inplace=True) - logger.debug("Finished in {}s".format(time() - start_time)) return busmap_df -def make_busmap_from_main_feeders( - edisgo_root: EDisGo = None, +def make_busmap_main_feeders( + edisgo_obj: EDisGo = None, grid: None | Grid = None, mode: str = None, reduction_factor: float = 0.25, @@ -878,7 +872,7 @@ def make_busmap_from_main_feeders( Parameters ---------- - edisgo_root : :class:`~.EDisGo` + edisgo_obj : :class:`~.EDisGo` EDisGo object for which the busmap is created. grid : str or None If None, busmap is created for all grids, else only for the selected grid. @@ -896,6 +890,7 @@ def make_busmap_from_main_feeders( ------- :pandas:`pandas.DataFrame` Busmap which maps the old bus names to the new bus names with new coordinates. + See return value in function :func:`~make_busmap` for more information. References ---------- @@ -970,9 +965,7 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): if node in main_feeder_nodes: return node - edisgo_obj = copy.deepcopy(edisgo_root) - start_time = time() - logger.debug("Start - Make busmap from main feeders, mode = {}".format(mode)) + logger.debug("Start making busmap for main feeders") if mode != "aggregate_to_main_feeder": edisgo_obj.topology.buses_df = edisgo_obj.topology.buses_df.apply( @@ -1006,9 +999,7 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): neighbors = list(nx.neighbors(graph_root, transformer_node)) neighbors.sort() logger.debug( - "Transformer neighbors has {} neighbors: {}".format( - len(neighbors), neighbors - ) + "Transformer has {} neighbors: {}".format(len(neighbors), neighbors) ) graph_without_transformer = copy.deepcopy(graph_root) @@ -1273,12 +1264,11 @@ def short_coordinates(root_node, end_node, branch_length, node_number): if mode != "aggregate_to_main_feeder": busmap_df = busmap_df.apply(transform_coordinates_back, axis="columns") - logger.debug("Finished in {}s".format(time() - start_time)) return busmap_df def make_busmap( - edisgo_root: EDisGo, + edisgo_obj: EDisGo, mode: str = None, cluster_area: str = None, reduction_factor: float = 0.25, @@ -1295,27 +1285,28 @@ def make_busmap( Parameters ---------- - edisgo_root : :class:`~.EDisGo` + edisgo_obj : :class:`~.EDisGo` EDisGo object for which the busmap is created. mode : str - "kmeans", "kmeansdijkstra", "aggregate_to_main_feeder" or - "equidistant_nodes" as clustering method. "aggregate_to_main_feeder" or - "equidistant_nodes" only work with the cluster area "main_feeder". + Clustering method to use. Possible options are "kmeans", "kmeansdijkstra", + "aggregate_to_main_feeder" or "equidistant_nodes". The clustering methods + "aggregate_to_main_feeder" and "equidistant_nodes" only work for the cluster + area "main_feeder". - "kmeans": - Perform the k-means algorithm on the cluster area and map then the buses to + Perform the k-means algorithm on the cluster area and then map the buses to the cluster centers. - "kmeansdijkstra": - Perform the k-mean algorithm but then map the nodes to the cluster centers - through the distance shortest distance in the graph. The distances are - calculated by the dijkstra algorithm. + Perform the k-means algorithm and then map the nodes to the cluster centers + through the shortest distance in the graph. The distances are + calculated using the dijkstra algorithm. - "aggregate_to_main_feeder": Aggregate the nodes in the feeder to the longest path in the feeder, here - named main feeder. + called main feeder. - "equidistant_nodes": - Use the method aggregate to main feeder and then reduce the nodes again. - Through a reduction of the nodes by the reduction factor and then - distributing the remaining nodes on the graph. + Uses the method "aggregate_to_main_feeder" and then reduces the nodes again + through a reduction of the nodes by the specified reduction factor and + distributing the remaining nodes on the graph equidistantly. cluster_area : str The cluster area is the area the different clustering methods are applied to. @@ -1323,16 +1314,22 @@ def make_busmap( reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. reduction_factor_not_focused : bool or float - If False, the focus method is not used. If between 0 and 1, this sets the - reduction factor for buses not of interest. When selecting 0, the nodes of the - clustering area are aggregated to the transformer bus. - grid: :obj:`str` or None - If None, busmap is created for all grids, else only for the selected Grid. + If False, uses the same reduction factor for all cluster areas. If between 0 + and 1, this sets the reduction factor for buses not of interest (these are buses + without voltage or overloading issues, that are determined through a worst case + power flow analysis). When selecting 0, the nodes of the clustering area are + aggregated to the transformer bus. This parameter is only used when parameter + `cluster_area` is set to 'feeder' or 'main_feeder'. + grid : str or None + If None, busmap is created for all grids, else only for the selected grid. Returns ------- :pandas:`pandas.DataFrame` Busmap which maps the old bus names to the new bus names with new coordinates. + Columns are "new_bus" with new bus name, "new_x" with new x-coordinate and + "new_y" with new y-coordinate. Index of the dataframe holds bus names of + original buses as in buses_df. References ---------- @@ -1340,95 +1337,58 @@ def make_busmap( /en/latest/examples/spatial-clustering.html>`_. """ + # Check for false input. if mode == "aggregate_to_main_feeder": pass # Aggregate to the main feeder elif not 0 < reduction_factor < 1.0: - raise ValueError("Reduction factor must bigger than 0 and smaller than 1") + raise ValueError("Reduction factor must be between 0 and 1.") - if mode not in [ + modes = [ "aggregate_to_main_feeder", "kmeans", "kmeansdijkstra", "equidistant_nodes", - ]: - raise ValueError(f"Selected false {mode=}") + ] + if mode not in modes: + raise ValueError(f"Invalid input for parameter 'mode'. Must be one of {modes}.") if (reduction_factor_not_focused is not False) and not ( 0 <= reduction_factor_not_focused < 1.0 ): raise ValueError( - f"{reduction_factor_not_focused=}, should be 'False' " - f"or 0 or bigger than 0 but smaller than 1" + "Invalid input for parameter 'reduction_factor_not_focused'. Should be" + "'False' or between 0 and 1." ) if cluster_area == "grid": - busmap_df = make_busmap_from_clustering( - edisgo_root, + busmap_df = make_busmap_grid( + edisgo_obj, mode=mode, grid=grid, reduction_factor=reduction_factor, ) elif cluster_area == "feeder": - busmap_df = make_busmap_from_feeders( - edisgo_root, + busmap_df = make_busmap_feeders( + edisgo_obj, grid=grid, mode=mode, reduction_factor=reduction_factor, reduction_factor_not_focused=reduction_factor_not_focused, ) elif cluster_area == "main_feeder": - busmap_df = make_busmap_from_main_feeders( - edisgo_root, + busmap_df = make_busmap_main_feeders( + edisgo_obj, grid=grid, mode=mode, reduction_factor=reduction_factor, reduction_factor_not_focused=reduction_factor_not_focused, ) else: - raise ValueError(f"Selected false {cluster_area=}!") - - return busmap_df - - -def make_remaining_busmap(busmap_df: DataFrame, edisgo_root: EDisGo) -> DataFrame: - """ - Make the remaining busmap out of an existing busmap and the EDisGo object. - If only the busmap for one grid is generated than with this function the remaining - busmap can be generated. Cause the - :func:`reduce_edisgo ` - needs a busmap with all nodes of a bus. - - Parameters - ---------- - busmap_df: :obj:`pd.DataFrame` - Busmap with missing nodes. - edisgo_root: :obj:`EDisGo` - EDisGo object for which the busmap is generated. - - Returns - ------- - :obj:`DataFrame` - Busmap for the full edisgo object. - """ - - start_time = time() - logger.info("Start - Make remaining busmap") - - remaining_busmap_df = edisgo_root.topology.buses_df.loc[ - ~edisgo_root.topology.buses_df.index.isin(busmap_df.index) - ].copy() - remaining_busmap_df.loc[ - remaining_busmap_df.index, "new_bus" - ] = remaining_busmap_df.index - remaining_busmap_df.loc[remaining_busmap_df.index, "new_x"] = remaining_busmap_df.x - remaining_busmap_df.loc[remaining_busmap_df.index, "new_y"] = remaining_busmap_df.y - remaining_busmap_df = remaining_busmap_df.drop( - labels=["v_nom", "mv_grid_id", "lv_grid_id", "in_building", "x", "y"], axis=1 - ) - remaining_busmap_df.index.name = "old_bus" - busmap_df = pd.concat([busmap_df, remaining_busmap_df]) + raise ValueError( + "Invalid input for parameter 'cluster_area'. Must be one of 'grid', " + "'feeder' or 'main_feeder'." + ) - logger.info("Finished in {}s".format(time() - start_time)) return busmap_df From 0563ffe080d732b485555024a607cb2cb56195ca Mon Sep 17 00:00:00 2001 From: Maike Held Date: Fri, 14 Apr 2023 08:15:55 +0200 Subject: [PATCH 250/355] Adjusted test_distribute_overlying_grid_timeseries() --- tests/opf/test_timeseries_reduction.py | 41 +++++++++++++++++--------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index 5b0e2937e..8ea803956 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -293,6 +293,7 @@ def test_get_steps_reinforcement(self): assert (ts_crit == self.timesteps[[0, 1, 3]]).all() def test__scored_most_critical_loading_time_interval(self): + self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() ts_crit = _scored_most_critical_loading_time_interval(self.edisgo, 1) @@ -302,6 +303,7 @@ def test__scored_most_critical_loading_time_interval(self): assert ts in self.timesteps def test__scored_most_critical_voltage_issues_time_interval(self): + self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() ts_crit = _scored_most_critical_voltage_issues_time_interval(self.edisgo, 1) @@ -311,6 +313,7 @@ def test__scored_most_critical_voltage_issues_time_interval(self): assert ts in self.timesteps def test_get_steps_flex_opf(self): + self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() steps = get_steps_flex_opf(self.edisgo, num_ti=6, window_days=1) @@ -319,15 +322,15 @@ def test_get_steps_flex_opf(self): assert len(steps.columns) == 6 def test_distribute_overlying_grid_timeseries(self): + self.setup_class() self.setup_flexibility_data() - # self.edisgo.analyze() edisgo_copy = distribute_overlying_grid_timeseries(self.edisgo) dsm = self.edisgo.dsm.e_max.columns.values hps = self.edisgo.heat_pump.cop_df.columns.values - # res = self.edisgo.topology.generators_df.loc[ - # (self.edisgo.topology.generators_df.type == "solar") - # | (self.edisgo.topology.generators_df.type == "wind") - # ].index.values + res = self.edisgo.topology.generators_df.loc[ + (self.edisgo.topology.generators_df.type == "solar") + | (self.edisgo.topology.generators_df.type == "wind") + ].index.values assert { np.isclose( edisgo_copy.timeseries.loads_active_power[hps].sum(axis=1)[i], @@ -353,12 +356,22 @@ def test_distribute_overlying_grid_timeseries(self): ) for i in range(len(self.timesteps)) } == {True} - # ToDo: Curtailment funktioniert nicht - # assert set([np.isclose(edisgo_copy.timeseries.generators_active_power[ - # res].sum(axis=1)[i], - # self.edisgo.timeseries.generators_active_power[ - # res].sum( - # axis=1)[i] - - # self.edisgo.overlying_grid.renewables_curtailment.sum(axis=1).values[i], - # atol=1e-5) for i in range(len(self.timesteps))]) == {True} - print(" ") + assert { + np.isclose( + edisgo_copy.timeseries.generators_active_power[res].sum(axis=1)[i], + self.edisgo.timeseries.generators_active_power[res].sum(axis=1)[i] + - self.edisgo.overlying_grid.renewables_curtailment.sum(axis=1).values[ + i + ], + atol=1e-5, + ) + for i in range(int(0.5 * len(self.timesteps)), len(self.timesteps)) + } == {True} + assert { + np.isclose( + edisgo_copy.timeseries.generators_active_power[res].sum(axis=1)[i], + self.edisgo.timeseries.generators_active_power[res].sum(axis=1)[i], + atol=1e-5, + ) + for i in range(int(0.5 * len(self.timesteps))) + } == {True} From c97987acbc6bf0fb6d52764d0bd505b7dcadfb19 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 10:08:48 +0200 Subject: [PATCH 251/355] Add integrity check for DSM class --- edisgo/network/dsm.py | 59 +++++++++++++++++++++++++++++++++++++++ tests/network/test_dsm.py | 53 +++++++++++++++++++++++++++++++++++ 2 files changed, 112 insertions(+) diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py index 8180186bf..c2ab2dbdd 100644 --- a/edisgo/network/dsm.py +++ b/edisgo/network/dsm.py @@ -5,6 +5,7 @@ from pathlib import Path from zipfile import ZipFile +import numpy as np import pandas as pd logger = logging.getLogger(__name__) @@ -262,3 +263,61 @@ def from_csv(self, data_path: str | Path, from_zip_archive: bool = False): if from_zip_archive: # make sure to destroy ZipFile Class to close any open connections zip.close() + + def check_integrity(self): + """ + Check data integrity. + + Checks for duplicated and missing labels as well as implausible values. + + """ + # check for duplicate labels (of components) + duplicated_labels = [] + + for ts in self._attributes: + df = getattr(self, ts) + if any(df.columns.duplicated()): + duplicated_labels.append(df.columns[df.columns.duplicated()].values) + + if len(duplicated_labels) > 0: + duplicates = set( + np.concatenate([list.tolist() for list in duplicated_labels]) + ) + logger.warning( + f"DSM timeseries contain the following duplicates: {duplicates}." + ) + + # check that all profiles exist for the same loads + columns = set( + np.concatenate([getattr(self, _).columns for _ in self._attributes]) + ) + for ts in self._attributes: + df = getattr(self, ts) + missing_entries = [_ for _ in columns if _ not in df.columns] + if len(missing_entries) > 0: + logger.warning( + f"DSM timeseries {ts} is missing the following " + f"entries: {missing_entries}." + ) + + # check for implausible values + if not (self.p_min <= 0.0).all().all(): + logger.warning( + "DSM timeseries p_min contains values larger than zero, which is " + "not allowed." + ) + if not (self.e_min <= 0.0).all().all(): + logger.warning( + "DSM timeseries e_min contains values larger than zero, which is " + "not allowed." + ) + if not (self.p_max >= 0.0).all().all(): + logger.warning( + "DSM timeseries p_max contains values smaller than zero, which is " + "not allowed." + ) + if not (self.e_max >= 0.0).all().all(): + logger.warning( + "DSM timeseries e_max contains values smaller than zero, which is " + "not allowed." + ) diff --git a/tests/network/test_dsm.py b/tests/network/test_dsm.py index adf826d9d..345f09409 100644 --- a/tests/network/test_dsm.py +++ b/tests/network/test_dsm.py @@ -1,3 +1,4 @@ +import logging import os import shutil @@ -114,3 +115,55 @@ def test_from_csv(self): ) shutil.rmtree(save_dir) + + def test_check_integrity(self, caplog): + timeindex = pd.date_range("1/1/2011 12:00", periods=2, freq="H") + # create duplicate entries and loads that do not appear in each DSM dataframe + self.dsm.p_max = pd.concat( + [ + self.dsm.p_max, + pd.DataFrame( + data={ + "load_2": [5.0, 6.0], + "load_3": [7.0, 8.0], + }, + index=timeindex, + ), + ], + axis=1, + ) + self.dsm.p_min = pd.concat( + [ + self.dsm.p_min, + pd.DataFrame( + data={ + "load_2": [5.0, 6.0], + "load_3": [7.0, 8.0], + }, + index=timeindex, + ), + ], + axis=1, + ) + + with caplog.at_level(logging.WARNING): + self.dsm.check_integrity() + assert len(caplog.messages) == 5 + assert "DSM timeseries contain the following duplicates:" in caplog.text + assert "DSM timeseries e_min is missing the following entries:" in caplog.text + assert "DSM timeseries e_max is missing the following entries:" in caplog.text + assert ( + "DSM timeseries p_min contains values larger than zero, which is not " + "allowed." in caplog.text + ) + assert ( + "DSM timeseries e_min contains values larger than zero, which is not " + "allowed." in caplog.text + ) + + caplog.clear() + # check for empty DSM class + self.dsm = DSM() + with caplog.at_level(logging.WARNING): + self.dsm.check_integrity() + assert len(caplog.text) == 0 From a9b9c58967ab2a2080deca4d54f5d3fbbe70cf05 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 10:16:52 +0200 Subject: [PATCH 252/355] Adapt district heating feed-in in overlying grid class --- edisgo/network/overlying_grid.py | 18 +++++------------- tests/test_edisgo.py | 26 ++++++++------------------ 2 files changed, 13 insertions(+), 31 deletions(-) diff --git a/edisgo/network/overlying_grid.py b/edisgo/network/overlying_grid.py index d7061a39f..c572cd414 100644 --- a/edisgo/network/overlying_grid.py +++ b/edisgo/network/overlying_grid.py @@ -32,11 +32,8 @@ class OverlyingGrid: Aggregated demand of flexible decentral heat pumps per time step in MW. heat_pump_central_active_power : :pandas:`pandas.Series` Aggregated demand of flexible central heat pumps per time step in MW. - geothermal_energy_feedin_district_heating : :pandas:`pandas.DataFrame` - Geothermal feed-in into district heating per district heating area (in columns) - and time step (in index) in MW. - solarthermal_energy_feedin_district_heating : :pandas:`pandas.DataFrame` - Solarthermal feed-in into district heating per district heating area (in + feedin_district_heating : :pandas:`pandas.DataFrame` + Other thermal feed-in into district heating per district heating area (in columns) and time step (in index) in MW. """ @@ -61,12 +58,8 @@ def __init__(self, **kwargs): self.heat_pump_central_active_power = kwargs.get( "heat_pump_central_active_power", pd.Series(dtype="float64") ) - - self.geothermal_energy_feedin_district_heating = kwargs.get( - "geothermal_energy_feedin_district_heating", pd.DataFrame(dtype="float64") - ) - self.solarthermal_energy_feedin_district_heating = kwargs.get( - "solarthermal_energy_feedin_district_heating", pd.DataFrame(dtype="float64") + self.feedin_district_heating = kwargs.get( + "feedin_district_heating", pd.DataFrame(dtype="float64") ) @property @@ -78,8 +71,7 @@ def _attributes(self): "electromobility_active_power", "heat_pump_decentral_active_power", "heat_pump_central_active_power", - "geothermal_energy_feedin_district_heating", - "solarthermal_energy_feedin_district_heating", + "feedin_district_heating", ] def reduce_memory(self, attr_to_reduce=None, to_type="float32"): diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 339ef0de4..9d836c12e 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -1406,11 +1406,9 @@ def test_save(self): self.edisgo.overlying_grid.dsm_active_power = pd.Series( data=[2.4], index=[self.edisgo.timeseries.timeindex[0]] ) - self.edisgo.overlying_grid.solarthermal_energy_feedin_district_heating = ( - pd.DataFrame( - {"dh1": [1.4, 2.3], "dh2": [2.4, 1.3]}, - index=self.edisgo.timeseries.timeindex[0:2], - ) + self.edisgo.overlying_grid.feedin_district_heating = pd.DataFrame( + {"dh1": [1.4, 2.3], "dh2": [2.4, 1.3]}, + index=self.edisgo.timeseries.timeindex[0:2], ) self.edisgo.dsm.p_max = pd.DataFrame( data={ @@ -1478,7 +1476,7 @@ def test_reduce_memory(self): og.dsm_active_power = pd.Series( data=[2.4], index=[self.edisgo.timeseries.timeindex[0]] ) - og.solarthermal_energy_feedin_district_heating = pd.DataFrame( + og.feedin_district_heating = pd.DataFrame( {"dh1": [1.4, 2.3], "dh2": [2.4, 1.3]}, index=self.edisgo.timeseries.timeindex[0:2], ) @@ -1491,9 +1489,7 @@ def test_reduce_memory(self): mem_hp_before = self.edisgo.heat_pump.heat_demand_df.memory_usage( deep=True ).sum() - mem_og_before = og.solarthermal_energy_feedin_district_heating.memory_usage( - deep=True - ).sum() + mem_og_before = og.feedin_district_heating.memory_usage(deep=True).sum() # check with default value self.edisgo.reduce_memory() @@ -1505,9 +1501,7 @@ def test_reduce_memory(self): mem_hp_with_default = self.edisgo.heat_pump.heat_demand_df.memory_usage( deep=True ).sum() - mem_og_with_default = ( - og.solarthermal_energy_feedin_district_heating.memory_usage(deep=True).sum() - ) + mem_og_with_default = og.feedin_district_heating.memory_usage(deep=True).sum() assert mem_ts_before > mem_ts_with_default assert mem_res_before > mem_res_with_default @@ -1525,9 +1519,7 @@ def test_reduce_memory(self): to_type="float16", results_attr_to_reduce=["pfa_p"], timeseries_attr_to_reduce=["generators_active_power"], - overlying_grid_attr_to_reduce=[ - "solarthermal_energy_feedin_district_heating" - ], + overlying_grid_attr_to_reduce=["feedin_district_heating"], ) assert ( @@ -1542,9 +1534,7 @@ def test_reduce_memory(self): ) assert ( mem_og_with_default - > og.solarthermal_energy_feedin_district_heating.memory_usage( - deep=True - ).sum() + > og.feedin_district_heating.memory_usage(deep=True).sum() ) # check that i_res, loads_active_power and dsm_active_power were not reduced assert np.isclose( From 90dee5e9a6b32017e64aeb09866d3f002eb15cfa Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 10:41:37 +0200 Subject: [PATCH 253/355] Add integrity check for heat pump class --- edisgo/network/heat.py | 31 +++++++++++++++++++++++++++++++ tests/network/test_heat.py | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 69 insertions(+) diff --git a/edisgo/network/heat.py b/edisgo/network/heat.py index b1d34849d..22403d0f2 100644 --- a/edisgo/network/heat.py +++ b/edisgo/network/heat.py @@ -5,6 +5,7 @@ from zipfile import ZipFile +import numpy as np import pandas as pd from edisgo.io import heat_pump_import, timeseries_import @@ -584,3 +585,33 @@ def resample_timeseries( else: freq_orig = attr_index[1] - attr_index[0] tools.resample(self, freq_orig, method, freq, attr_to_resample=[attr]) + + def check_integrity(self): + """ + Check data integrity. + + Checks for duplicated and missing labels as well as implausible values. + + """ + check_dfs = ["heat_demand_df", "cop_df"] + # check for duplicate columns + for ts in check_dfs: + df = getattr(self, ts) + duplicated_labels = df.columns[df.columns.duplicated()].values + + if len(duplicated_labels) > 0: + logger.warning( + f"HeatPump timeseries {ts} contains the following duplicates: " + f"{set(duplicated_labels)}." + ) + + # check that all profiles exist for the same heat pumps + columns = set(np.concatenate([getattr(self, _).columns for _ in check_dfs])) + for ts in check_dfs: + df = getattr(self, ts) + missing_entries = [_ for _ in columns if _ not in df.columns] + if len(missing_entries) > 0: + logger.warning( + f"HeatPump timeseries {ts} is missing the following " + f"entries: {missing_entries}." + ) diff --git a/tests/network/test_heat.py b/tests/network/test_heat.py index dfbc442e0..27545e2de 100644 --- a/tests/network/test_heat.py +++ b/tests/network/test_heat.py @@ -370,3 +370,41 @@ def test_resample_timeseries(self): heatpump.resample_timeseries(freq="1H") assert len(heatpump.heat_demand_df) == 2 assert len(heatpump.cop_df) == 2 + + def test_check_integrity(self, caplog): + # check for empty HeatPump class + heatpump = HeatPump() + with caplog.at_level(logging.WARNING): + heatpump.check_integrity() + assert len(caplog.text) == 0 + + caplog.clear() + + # create duplicate entries and loads that do not appear in each DSM dataframe + heat_demand_df = pd.concat( + [ + self.heat_demand, + pd.DataFrame( + data={ + "hp1": [1.0, 2.0], + "hp3": [3.0, 4.0], + }, + index=self.timeindex, + ), + ], + axis=1, + ) + heatpump.cop_df = self.cop + heatpump.heat_demand_df = heat_demand_df + + with caplog.at_level(logging.WARNING): + heatpump.check_integrity() + assert len(caplog.messages) == 2 + assert ( + "HeatPump timeseries heat_demand_df contains the following duplicates:" + in caplog.text + ) + assert ( + "HeatPump timeseries cop_df is missing the following entries:" + in caplog.text + ) From a0df398666e41707a84c2b387b4a60cbe59cfeb0 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 10:41:49 +0200 Subject: [PATCH 254/355] Minor docstring change --- edisgo/network/dsm.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py index c2ab2dbdd..b03f1a54c 100644 --- a/edisgo/network/dsm.py +++ b/edisgo/network/dsm.py @@ -271,9 +271,8 @@ def check_integrity(self): Checks for duplicated and missing labels as well as implausible values. """ - # check for duplicate labels (of components) + # check for duplicate columns duplicated_labels = [] - for ts in self._attributes: df = getattr(self, ts) if any(df.columns.duplicated()): From d3e1eea05fe99d1b13169f742c41fc9d9bfbdcaa Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 10:50:09 +0200 Subject: [PATCH 255/355] Add integrity checks to EDisGo --- edisgo/edisgo.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index f26f9f98a..d49087a83 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2622,8 +2622,9 @@ def check_integrity(self): :func:`edisgo.network.timeseries.TimeSeries.check_integrity`) and the interplay of both. Further, checks integrity of electromobility object (see - :func:`edisgo.network.electromobility.Electromobility.check_integrity`) if - there is electromobility data. + :func:`edisgo.network.electromobility.Electromobility.check_integrity`), + the heat pump object (see :func:`edisgo.network.heat.HeatPump.check_integrity`) + and the DSM object (see :func:`edisgo.network.dsm.DSM.check_integrity`). Additionally, checks whether time series data in :class:`~.network.heat.HeatPump`, :class:`~.network.electromobility.Electromobility`, @@ -2635,6 +2636,8 @@ def check_integrity(self): self.topology.check_integrity() self.timeseries.check_integrity() self.electromobility.check_integrity() + self.dsm.check_integrity() + self.heat_pump.check_integrity() # check consistency of topology and timeseries comp_types = ["generators", "loads", "storage_units"] From 1f22a1e281e3160883723f1ab4609e8b7514310f Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 12:09:53 +0200 Subject: [PATCH 256/355] Bug fix --- tests/network/test_overlying_grid.py | 63 ++++++++++------------------ 1 file changed, 22 insertions(+), 41 deletions(-) diff --git a/tests/network/test_overlying_grid.py b/tests/network/test_overlying_grid.py index 5e64e257d..aef140470 100644 --- a/tests/network/test_overlying_grid.py +++ b/tests/network/test_overlying_grid.py @@ -21,7 +21,7 @@ def setup_fixture(self): self.overlying_grid.renewables_curtailment = pd.Series( data=[2.4], index=[self.timeindex[0]] ) - self.overlying_grid.geothermal_energy_feedin_district_heating = pd.DataFrame( + self.overlying_grid.feedin_district_heating = pd.DataFrame( {"dh1": [1.4, 2.3], "dh2": [2.4, 1.3]}, index=self.timeindex ) @@ -29,17 +29,11 @@ def test_reduce_memory(self): # check with default value assert self.overlying_grid.renewables_curtailment.dtypes == "float64" - assert ( - self.overlying_grid.geothermal_energy_feedin_district_heating.dtypes - == "float64" - ).all() + assert (self.overlying_grid.feedin_district_heating.dtypes == "float64").all() self.overlying_grid.reduce_memory() assert self.overlying_grid.renewables_curtailment.dtypes == "float32" - assert ( - self.overlying_grid.geothermal_energy_feedin_district_heating.dtypes - == "float32" - ).all() + assert (self.overlying_grid.feedin_district_heating.dtypes == "float32").all() # check with arguments self.overlying_grid.reduce_memory( @@ -48,10 +42,7 @@ def test_reduce_memory(self): ) assert self.overlying_grid.renewables_curtailment.dtypes == "float16" - assert ( - self.overlying_grid.geothermal_energy_feedin_district_heating.dtypes - == "float32" - ).all() + assert (self.overlying_grid.feedin_district_heating.dtypes == "float32").all() def test_to_csv(self): @@ -62,17 +53,14 @@ def test_to_csv(self): files_in_dir = os.listdir(save_dir) assert len(files_in_dir) == 2 assert "renewables_curtailment.csv" in files_in_dir - assert "geothermal_energy_feedin_district_heating.csv" in files_in_dir + assert "feedin_district_heating.csv" in files_in_dir shutil.rmtree(save_dir) # test with reduce memory True and to_type = float16 self.overlying_grid.to_csv(save_dir, reduce_memory=True, to_type="float16") - assert ( - self.overlying_grid.geothermal_energy_feedin_district_heating.dtypes - == "float16" - ).all() + assert (self.overlying_grid.feedin_district_heating.dtypes == "float16").all() files_in_dir = os.listdir(save_dir) assert len(files_in_dir) == 2 @@ -81,9 +69,7 @@ def test_to_csv(self): def test_from_csv(self): renewables_curtailment = self.overlying_grid.renewables_curtailment - geothermal_energy_feedin_district_heating = ( - self.overlying_grid.geothermal_energy_feedin_district_heating - ) + feedin_district_heating = self.overlying_grid.feedin_district_heating # write to csv save_dir = os.path.join(os.getcwd(), "overlying_grid_csv") @@ -102,34 +88,29 @@ def test_from_csv(self): check_freq=False, ) pd.testing.assert_frame_equal( - self.overlying_grid.geothermal_energy_feedin_district_heating, - geothermal_energy_feedin_district_heating, + self.overlying_grid.feedin_district_heating, + feedin_district_heating, check_freq=False, ) # test with dtype = float32 self.overlying_grid.from_csv(save_dir, dtype="float32") - assert ( - self.overlying_grid.geothermal_energy_feedin_district_heating.dtypes - == "float32" - ).all() + assert (self.overlying_grid.feedin_district_heating.dtypes == "float32").all() shutil.rmtree(save_dir) def test_resample(self, caplog): mean_value_curtailment_orig = self.overlying_grid.renewables_curtailment.mean() - mean_value_geothermal_orig = ( - self.overlying_grid.geothermal_energy_feedin_district_heating.mean() - ) + mean_value_feedin_dh_orig = self.overlying_grid.feedin_district_heating.mean() # test up-sampling with ffill (default) self.overlying_grid.resample() # check if resampled length of time index is 4 times original length of # timeindex - assert len( - self.overlying_grid.geothermal_energy_feedin_district_heating.index - ) == 4 * len(self.timeindex) + assert len(self.overlying_grid.feedin_district_heating.index) == 4 * len( + self.timeindex + ) # check if mean value of resampled data is the same as mean value of original # data assert np.isclose( @@ -139,23 +120,23 @@ def test_resample(self, caplog): ) assert ( np.isclose( - self.overlying_grid.geothermal_energy_feedin_district_heating.mean(), - mean_value_geothermal_orig, + self.overlying_grid.feedin_district_heating.mean(), + mean_value_feedin_dh_orig, atol=1e-5, ) ).all() # check if index is the same after resampled back self.overlying_grid.resample(freq="1h") pd.testing.assert_index_equal( - self.overlying_grid.geothermal_energy_feedin_district_heating.index, + self.overlying_grid.feedin_district_heating.index, self.timeindex, ) # same tests for down-sampling self.overlying_grid.resample(freq="2h") - assert len( - self.overlying_grid.geothermal_energy_feedin_district_heating.index - ) == 0.5 * len(self.timeindex) + assert len(self.overlying_grid.feedin_district_heating.index) == 0.5 * len( + self.timeindex + ) assert np.isclose( self.overlying_grid.renewables_curtailment.mean(), mean_value_curtailment_orig, @@ -163,8 +144,8 @@ def test_resample(self, caplog): ) assert ( np.isclose( - self.overlying_grid.geothermal_energy_feedin_district_heating.mean(), - mean_value_geothermal_orig, + self.overlying_grid.feedin_district_heating.mean(), + mean_value_feedin_dh_orig, atol=1e-5, ) ).all() From 77a1bb5578a3286ac0d9f09954fa52854a045cbb Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 17:10:06 +0200 Subject: [PATCH 257/355] Remove redundant function --- edisgo/io/ding0_import.py | 87 ----------------------------------- tests/io/test_ding0_import.py | 12 ----- 2 files changed, 99 deletions(-) diff --git a/edisgo/io/ding0_import.py b/edisgo/io/ding0_import.py index 4cb3399f4..326553111 100644 --- a/edisgo/io/ding0_import.py +++ b/edisgo/io/ding0_import.py @@ -4,7 +4,6 @@ from pypsa import Network as PyPSANetwork -from edisgo.network.components import Switch from edisgo.network.grids import MVGrid if "READTHEDOCS" not in os.environ: @@ -133,89 +132,3 @@ def sort_hvmv_transformer_buses(transformers_df): # check data integrity edisgo_obj.topology.check_integrity() - - -def remove_1m_end_lines(edisgo): - """ - Method to remove 1m end lines to reduce size of edisgo object. - - Short lines inside houses are removed in this function, including the end node. - Components that were originally connected to the end node are reconnected to the - upstream node. - - This function will become obsolete once it is changed in the ding0 export. - - Parameters - ---------- - edisgo : :class:`~.EDisGo` - - Returns - -------- - edisgo : :class:`~.EDisGo` - EDisGo object where 1m end lines are removed from topology. - - """ - - def remove_1m_end_line(edisgo, line): - """ - Method that removes end lines and moves components of end bus to neighboring - bus. If the line is not an end line, the method will skip this line. - - Returns - ------- - int - Number of removed lines. Either 0, if no line was removed, or 1, if line - was removed. - - """ - # check for end buses - if len(edisgo.topology.get_connected_lines_from_bus(line.bus1)) == 1: - end_bus = "bus1" - neighbor_bus = "bus0" - elif len(edisgo.topology.get_connected_lines_from_bus(line.bus0)) == 1: - end_bus = "bus0" - neighbor_bus = "bus1" - else: - return 0 - - # move connected elements of end bus to the other bus - connected_elements = edisgo.topology.get_connected_components_from_bus( - line[end_bus] - ) - rename_dict = {line[end_bus]: line[neighbor_bus]} - for comp_type, components in connected_elements.items(): - if not components.empty and comp_type != "lines": - setattr( - edisgo.topology, - comp_type.lower() + "_df", - getattr(edisgo.topology, comp_type.lower() + "_df").replace( - rename_dict - ), - ) - - # remove line - edisgo.topology.remove_line(line.name) - return 1 - - # close switches such that lines with connected switches are not removed - switches = [ - Switch(id=_, topology=edisgo.topology) - for _ in edisgo.topology.switches_df.index - ] - switch_status = {} - for switch in switches: - switch_status[switch] = switch.state - switch.close() - - # get all lines with length of one meter and remove the ones that are end lines - number_of_lines_removed = 0 - lines = edisgo.topology.lines_df.loc[edisgo.topology.lines_df.length == 0.001] - for name, line in lines.iterrows(): - number_of_lines_removed += remove_1m_end_line(edisgo, line) - logger.debug(f"Removed {number_of_lines_removed} 1 m end lines.") - - # set switches back to original state - for switch in switches: - if switch_status[switch] == "open": - switch.open() - return edisgo diff --git a/tests/io/test_ding0_import.py b/tests/io/test_ding0_import.py index c8ac32300..11c77436c 100644 --- a/tests/io/test_ding0_import.py +++ b/tests/io/test_ding0_import.py @@ -1,5 +1,3 @@ -import logging - import pytest import shapely @@ -67,13 +65,3 @@ def test_transformer_buses(self): index=self.topology.transformers_df.bus0 ).v_nom.values ).all() - - def test_remove_1m_end_lines(self, caplog): - ding0_import.import_ding0_grid(pytest.ding0_test_network_path, self) - with caplog.at_level(logging.DEBUG): - ding0_import.remove_1m_end_lines(self) - assert "Removed 2 1 m end lines." in caplog.text - - # check number of lines and buses - assert self.topology.buses_df.shape[0] == 140 - assert self.topology.lines_df.shape[0] == 129 From 15469aa1c13748f5b553281bbca30943b3697477 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 17:12:03 +0200 Subject: [PATCH 258/355] Adapt helper functions --- edisgo/tools/spatial_complexity_reduction.py | 296 ++++++++---------- .../test_spatial_complexity_reduction.py | 55 ++-- 2 files changed, 169 insertions(+), 182 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 5c7a19453..2b999be60 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -4,7 +4,6 @@ import logging import math -from time import time from typing import TYPE_CHECKING import networkx as nx @@ -27,14 +26,12 @@ from edisgo import EDisGo -# Transform coordinates between the different coordinates systems -# ToDo: The spatial complexity reduction forces the usage of EPSG:4326 and than -# transforms to other coordinate systems if needed. Maybe write it more dynamically. +# Transform coordinates between the different coordinate systems coor_transform = Transformer.from_crs("EPSG:4326", "EPSG:3035", always_xy=True) coor_transform_back = Transformer.from_crs("EPSG:3035", "EPSG:4326", always_xy=True) -def make_grid_list(edisgo_obj: EDisGo, grid: object = None) -> list: +def _make_grid_list(edisgo_obj: EDisGo, grid: object = None) -> list: """ Get a list of all grids in the EDisGo object or a list with the specified grid. @@ -43,7 +40,7 @@ def make_grid_list(edisgo_obj: EDisGo, grid: object = None) -> list: edisgo_obj : :class:`~.EDisGo` EDisGo object to get the grids from. grid : str - Name of the grid. If None, than all grids of the EDisGo objects are used. + Name of the grid. If None, all grids of the EDisGo objects are used. Default: None. Returns @@ -85,8 +82,7 @@ def find_buses_of_interest(edisgo_root: EDisGo) -> set: Set with the names of the buses with load and voltage issues. """ - start_time = time() - logger.debug("Start - Find buses of interest") + logger.debug("Find buses of interest.") edisgo_obj = copy.deepcopy(edisgo_root) edisgo_obj.timeseries = timeseries.TimeSeries() @@ -108,7 +104,6 @@ def find_buses_of_interest(edisgo_root: EDisGo) -> set: lv_buses = checks.voltage_issues(edisgo_obj, voltage_level="lv") buses_of_interest.update(lv_buses.index.tolist()) - logger.debug("Finished in {}s".format(time() - start_time)) return buses_of_interest @@ -169,12 +164,20 @@ def rename_virtual_buses( return partial_busmap_df -def remove_one_meter_lines(edisgo_root: EDisGo) -> EDisGo: +def remove_short_end_lines(edisgo_obj: EDisGo): """ - Remove one meter lines between the feeder and the buildings. This function is - a relict from the legacy ding0 grids. + Method to remove end lines under 1 meter to reduce size of edisgo object. + + Short lines inside at the end are removed in this function, including the end node. + Components that were originally connected to the end node are reconnected to the + upstream node. + + This function does currently not remove short lines that are no end lines. + + Parameters + ---------- + edisgo : :class:`~.EDisGo` - Only one meter lines are dropped which have on one side only one neighbour. """ def apply_busmap_on_buses_df(series): @@ -199,22 +202,14 @@ def apply_busmap(series): return series - start_time = time() - logger.debug("Start - Removing 1m lines") + logger.debug("Removing 1 m end lines.") - edisgo_obj = copy.deepcopy(edisgo_root) G = edisgo_obj.to_graph() lines_df = edisgo_obj.topology.lines_df.copy() busmap = {} unused_lines = [] for index, row in lines_df.iterrows(): - if row.length < 0.001: - logger.debug( - 'Line "{}" is {:.3f}m long and will not be removed.'.format( - index, row.length * 1000 - ) - ) - if row.length == 0.001: + if row.length <= 0.001: # find lines that have at one bus only one neighbor # and at the other more than one number_of_neighbors_bus0 = G.degree(row.bus0) @@ -234,37 +229,26 @@ def apply_busmap(series): ) and number_of_neighbors_bus0 == 1: unused_lines.append(index) busmap[row.bus0] = row.bus1 - else: - logger.info( - 'Line "{}" is {:.3f}m long and will not be removed.'.format( - index, row.length * 1000 - ) - ) - logger.info( - "Drop {} of {} short lines ({:.0f}%)".format( - len(unused_lines), - lines_df.shape[0], - (len(unused_lines) / lines_df.shape[0] * 100), - ) - ) + + logger.info(f"Drop {len(unused_lines)} of {lines_df.shape[0]} 1 m lines.") # Apply the busmap on the components lines_df = lines_df.drop(unused_lines) lines_df = lines_df.apply(apply_busmap_on_lines_df, axis="columns") - buses_df = edisgo_obj.topology.buses_df.copy() + buses_df = edisgo_obj.topology.buses_df buses_df = buses_df.apply(apply_busmap_on_buses_df, axis="columns") buses_df = buses_df.groupby( by=["new_bus"], dropna=False, as_index=False, sort=False ).first() buses_df = buses_df.set_index("new_bus") - loads_df = edisgo_obj.topology.loads_df.copy() + loads_df = edisgo_obj.topology.loads_df loads_df = loads_df.apply(apply_busmap, axis="columns") - generators_df = edisgo_obj.topology.generators_df.copy() + generators_df = edisgo_obj.topology.generators_df generators_df = generators_df.apply(apply_busmap, axis="columns") - storage_units_df = edisgo_obj.topology.storage_units_df.copy() + storage_units_df = edisgo_obj.topology.storage_units_df storage_units_df = storage_units_df.apply(apply_busmap, axis="columns") edisgo_obj.topology.lines_df = lines_df @@ -273,11 +257,8 @@ def apply_busmap(series): edisgo_obj.topology.generators_df = generators_df edisgo_obj.topology.storage_units_df = storage_units_df - logger.debug("Finished in {}s".format(time() - start_time)) - return edisgo_obj - -def remove_lines_under_one_meter(edisgo_root: EDisGo) -> EDisGo: +def remove_lines_under_one_meter(edisgo_obj: EDisGo) -> EDisGo: """ Remove the lines under one meter. Sometimes these line are causing convergence problems of the power flow calculation or making problems with the clustering @@ -285,117 +266,116 @@ def remove_lines_under_one_meter(edisgo_root: EDisGo) -> EDisGo: Function might be a bit overengineered, so that the station bus is never dropped. """ - - def apply_busmap_on_buses_df(series): - if series.name in busmap: - series.loc["new_bus"] = busmap[series.name] - else: - series.loc["new_bus"] = series.name - return series - - def apply_busmap_on_lines_df(series): - if series.bus0 in busmap: - series.loc["bus0"] = busmap[series.bus0] - if series.bus1 in busmap: - series.loc["bus1"] = busmap[series.bus1] - - return series - - def apply_busmap(series): - if series.bus in busmap: - series.loc["bus"] = busmap[series.bus] - - return series - - start_time = time() - logger.info("Start - Removing lines under 1m") - - edisgo_obj = copy.deepcopy(edisgo_root) - - busmap = {} - unused_lines = [] - - grid_list = [edisgo_obj.topology.mv_grid] - grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) - - for grid in grid_list: - G = grid.graph - - transformer_node = grid.transformers_df.bus1.values[0] - - lines_df = grid.lines_df.copy() - - for index, row in lines_df.iterrows(): - if row.length < 0.001: - - distance_bus_0, path = nx.single_source_dijkstra( - G, source=transformer_node, target=row.bus0, weight="length" - ) - distance_bus_1, path = nx.single_source_dijkstra( - G, source=transformer_node, target=row.bus1, weight="length" - ) - - logger.debug( - 'Line "{}" is {:.5f}m long and will be removed.'.format( - index, row.length * 1000 - ) - ) - logger.debug( - "Bus0: {} - Distance0: {}".format(row.bus0, distance_bus_0) - ) - logger.debug( - "Bus1: {} - Distance1: {}".format(row.bus1, distance_bus_1) - ) - - if distance_bus_0 < distance_bus_1: - busmap[row.bus1] = row.bus0 - if distance_bus_0 < 0.001: - busmap[row.bus0] = transformer_node - busmap[row.bus1] = transformer_node - elif distance_bus_0 > distance_bus_1: - busmap[row.bus0] = row.bus1 - if distance_bus_1 < 0.001: - busmap[row.bus0] = transformer_node - busmap[row.bus1] = transformer_node - else: - raise ValueError("ERROR") - - unused_lines.append(index) - - logger.debug("Busmap: {}".format(busmap)) - # Apply the busmap on the components - transformers_df = edisgo_obj.topology.transformers_df.copy() - transformers_df = transformers_df.apply(apply_busmap_on_lines_df, axis="columns") - edisgo_obj.topology.transformers_df = transformers_df - - lines_df = edisgo_obj.topology.lines_df.copy() - lines_df = lines_df.drop(unused_lines) - lines_df = lines_df.apply(apply_busmap_on_lines_df, axis="columns") - edisgo_obj.topology.lines_df = lines_df - - buses_df = edisgo_obj.topology.buses_df.copy() - buses_df.index.name = "bus" - buses_df = buses_df.apply(apply_busmap_on_buses_df, axis="columns") - buses_df = buses_df.groupby( - by=["new_bus"], dropna=False, as_index=False, sort=False - ).first() - buses_df = buses_df.set_index("new_bus") - edisgo_obj.topology.buses_df = buses_df - - loads_df = edisgo_obj.topology.loads_df.copy() - loads_df = loads_df.apply(apply_busmap, axis="columns") - edisgo_obj.topology.loads_df = loads_df - - generators_df = edisgo_obj.topology.generators_df.copy() - generators_df = generators_df.apply(apply_busmap, axis="columns") - edisgo_obj.topology.generators_df = generators_df - - storage_units_df = edisgo_obj.topology.storage_units_df.copy() - storage_units_df = storage_units_df.apply(apply_busmap, axis="columns") - edisgo_obj.topology.storage_units_df = storage_units_df - - logger.info("Finished in {}s".format(time() - start_time)) - return edisgo_obj + # ToDo this function does currently not work correctly as it may lead to + # isolated nodes and possibly broken switches, plus it should be merged with + # function remove_one_meter_lines + # def apply_busmap_on_buses_df(series): + # if series.name in busmap: + # series.loc["new_bus"] = busmap[series.name] + # else: + # series.loc["new_bus"] = series.name + # return series + # + # def apply_busmap_on_lines_df(series): + # if series.bus0 in busmap: + # series.loc["bus0"] = busmap[series.bus0] + # if series.bus1 in busmap: + # series.loc["bus1"] = busmap[series.bus1] + # + # return series + # + # def apply_busmap(series): + # if series.bus in busmap: + # series.loc["bus"] = busmap[series.bus] + # + # return series + # + # busmap = {} + # unused_lines = [] + # + # grid_list = [edisgo_obj.topology.mv_grid] + # grid_list = grid_list + list(edisgo_obj.topology.mv_grid.lv_grids) + # + # for grid in grid_list: + # G = grid.graph + # + # transformer_node = grid.transformers_df.bus1.values[0] + # + # lines_df = grid.lines_df.copy() + # + # for index, row in lines_df.iterrows(): + # if row.length < 0.001: + # + # distance_bus_0, path = nx.single_source_dijkstra( + # G, source=transformer_node, target=row.bus0, weight="length" + # ) + # distance_bus_1, path = nx.single_source_dijkstra( + # G, source=transformer_node, target=row.bus1, weight="length" + # ) + # + # logger.debug( + # 'Line "{}" is {:.5f}m long and will be removed.'.format( + # index, row.length * 1000 + # ) + # ) + # logger.debug( + # "Bus0: {} - Distance0: {}".format(row.bus0, distance_bus_0) + # ) + # logger.debug( + # "Bus1: {} - Distance1: {}".format(row.bus1, distance_bus_1) + # ) + # # map bus farther away to bus closer to the station + # # ToDo check if either node is already in the busmap + # # ToDo make sure no virtual bus is dropped + # if distance_bus_0 < distance_bus_1: + # busmap[row.bus1] = row.bus0 + # if distance_bus_0 < 0.001: + # busmap[row.bus0] = transformer_node + # busmap[row.bus1] = transformer_node + # elif distance_bus_0 > distance_bus_1: + # busmap[row.bus0] = row.bus1 + # if distance_bus_1 < 0.001: + # busmap[row.bus0] = transformer_node + # busmap[row.bus1] = transformer_node + # else: + # raise ValueError("ERROR") + # + # unused_lines.append(index) + # + # logger.debug("Busmap: {}".format(busmap)) + # # Apply the busmap on the components + # transformers_df = edisgo_obj.topology.transformers_df.copy() + # transformers_df = transformers_df.apply(apply_busmap_on_lines_df, axis="columns") + # edisgo_obj.topology.transformers_df = transformers_df + # + # lines_df = edisgo_obj.topology.lines_df.copy() + # lines_df = lines_df.drop(unused_lines) + # lines_df = lines_df.apply(apply_busmap_on_lines_df, axis="columns") + # edisgo_obj.topology.lines_df = lines_df + # + # buses_df = edisgo_obj.topology.buses_df.copy() + # buses_df.index.name = "bus" + # buses_df = buses_df.apply(apply_busmap_on_buses_df, axis="columns") + # buses_df = buses_df.groupby( + # by=["new_bus"], dropna=False, as_index=False, sort=False + # ).first() + # buses_df = buses_df.set_index("new_bus") + # edisgo_obj.topology.buses_df = buses_df + # + # loads_df = edisgo_obj.topology.loads_df.copy() + # loads_df = loads_df.apply(apply_busmap, axis="columns") + # edisgo_obj.topology.loads_df = loads_df + # + # generators_df = edisgo_obj.topology.generators_df.copy() + # generators_df = generators_df.apply(apply_busmap, axis="columns") + # edisgo_obj.topology.generators_df = generators_df + # + # storage_units_df = edisgo_obj.topology.storage_units_df.copy() + # storage_units_df = storage_units_df.apply(apply_busmap, axis="columns") + # edisgo_obj.topology.storage_units_df = storage_units_df + # + # return edisgo_obj + raise NotImplementedError def make_busmap_grid( @@ -494,7 +474,7 @@ def rename_new_buses(series): logger.debug("Start making busmap for grids.") - grid_list = make_grid_list(edisgo_obj, grid=grid) + grid_list = _make_grid_list(edisgo_obj, grid=grid) busmap_df = pd.DataFrame() # Cluster every grid @@ -711,7 +691,7 @@ def transform_coordinates_back(ser): transform_coordinates, axis="columns" ) - grid_list = make_grid_list(edisgo_obj, grid=grid) + grid_list = _make_grid_list(edisgo_obj, grid=grid) busmap_df = pd.DataFrame() mvgd_id = edisgo_obj.topology.mv_grid.id @@ -972,7 +952,7 @@ def next_main_node(node_to_delete, graph_root, main_feeder_nodes): transform_coordinates, axis="columns" ) - grid_list = make_grid_list(edisgo_obj, grid=grid) + grid_list = _make_grid_list(edisgo_obj, grid=grid) busmap_df = pd.DataFrame() mvgd_id = edisgo_obj.topology.mv_grid.id diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index cbe88efa0..30ce5bfbf 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -207,11 +207,11 @@ def test_make_busmap_for_only_one_grid( edisgo_root = copy.deepcopy(test_edisgo_obj) if grid == "MVGrid": - grid = spatial_complexity_reduction.make_grid_list( + grid = spatial_complexity_reduction._make_grid_list( edisgo_root, grid="MVGrid_1" )[0] elif grid == "LVGrid": - grid = spatial_complexity_reduction.make_grid_list( + grid = spatial_complexity_reduction._make_grid_list( edisgo_root, grid="LVGrid_9" )[0] @@ -307,7 +307,6 @@ def test_spatial_complexity_reduction(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) ( - edisgo_reduced, busmap_df, linemap_df, ) = spatial_complexity_reduction.spatial_complexity_reduction( @@ -322,8 +321,8 @@ def test_spatial_complexity_reduction(self, test_edisgo_obj): assert len(set(linemap_df["new_line_name"].to_list())) == 23 # Check that edisgo_object can run power flow and reinforce - edisgo_reduced.analyze() - edisgo_reduced.reinforce() + edisgo_root.analyze() + edisgo_root.reinforce() def test_compare_voltage(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) @@ -367,38 +366,46 @@ def test_compare_apparent_power(self, test_edisgo_obj): ) assert np.isclose(rms, 2.873394, atol=1e-5) - def test_remove_one_meter_lines(self, test_edisgo_obj): + def test_remove_short_end_lines(self, test_edisgo_obj): edisgo_root = copy.deepcopy(test_edisgo_obj) - edisgo_clean = spatial_complexity_reduction.remove_one_meter_lines(edisgo_root) + # change line length of line to switch to under 1 meter to check that it + # is not deleted + edisgo_root.topology.lines_df.at["Line_10016", "length"] = 0.0006 + + spatial_complexity_reduction.remove_short_end_lines(edisgo_root) # Check that the generator changed the bus - df_old = edisgo_root.topology.generators_df - df_new = edisgo_clean.topology.generators_df + df_old = test_edisgo_obj.topology.generators_df + df_new = edisgo_root.topology.generators_df assert ( df_old.loc[df_old["bus"] == "Bus_GeneratorFluctuating_19", "bus"].index == df_new.loc[df_new["bus"] == "Bus_BranchTee_LVGrid_5_6", "bus"].index ) # Check that the load changed the bus - df_old = edisgo_root.topology.loads_df - df_new = edisgo_clean.topology.loads_df + df_old = test_edisgo_obj.topology.loads_df + df_new = edisgo_root.topology.loads_df assert ( df_old.loc[df_old["bus"] == "Bus_Load_residential_LVGrid_5_3", "bus"].index == df_new.loc[df_new["bus"] == "Bus_BranchTee_LVGrid_5_6", "bus"].index ) # Check that 2 lines were removed - assert len(edisgo_root.topology.lines_df) - 2 == len( - edisgo_clean.topology.lines_df + assert len(test_edisgo_obj.topology.lines_df) - 2 == len( + edisgo_root.topology.lines_df ) - def test_remove_lines_under_one_meter(self, test_edisgo_obj): - edisgo_root = copy.deepcopy(test_edisgo_obj) - - edisgo_clean = spatial_complexity_reduction.remove_lines_under_one_meter( - edisgo_root - ) - - # Check that 1 line was removed - assert len(edisgo_root.topology.lines_df) - 1 == len( - edisgo_clean.topology.lines_df - ) + # def test_remove_lines_under_one_meter(self, test_edisgo_obj, caplog): + # edisgo_root = copy.deepcopy(test_edisgo_obj) + # edisgo_root.topology.lines_df.at["Line_50000002", "length"] = 0.0006 + # edisgo_root.topology.lines_df.at["Line_90000009", "length"] = 0.0007 + # edisgo_root.topology.lines_df.at["Line_90000013", "length"] = 0.0008 + # edisgo_clean = spatial_complexity_reduction.remove_lines_under_one_meter( + # edisgo_root + # ) + # with caplog.at_level(logging.WARNING): + # edisgo_clean.check_integrity() + # assert "isolated nodes" not in caplog.text + # # Check that 1 line was removed + # assert len(edisgo_root.topology.lines_df) - 1 == len( + # edisgo_clean.topology.lines_df + # ) From db1eb645ecc899ac86311b6d24f286d7527b60e9 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 14 Apr 2023 17:13:40 +0200 Subject: [PATCH 259/355] Minor change --- edisgo/io/heat_pump_import.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/io/heat_pump_import.py b/edisgo/io/heat_pump_import.py index cd579a099..dee7dd7a0 100644 --- a/edisgo/io/heat_pump_import.py +++ b/edisgo/io/heat_pump_import.py @@ -571,7 +571,7 @@ def _grid_integration( integrated_hps = integrated_hps.append(pd.Index([hp_name])) logger.debug( - f"{sum(resistive_heaters_central.p_set):.2f} MW of resistive heaters for" + f"{sum(resistive_heaters_central.p_set):.2f} MW of resistive heaters for " f"district heating integrated." ) From 0de0c2ac618b97c0b4373dfba9d1202336336c99 Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 16 Apr 2023 19:08:57 +0200 Subject: [PATCH 260/355] Do not copy EDisGo object when generating pseudo coordinates --- edisgo/tools/pseudo_coordinates.py | 39 ++++++-------------------- tests/tools/test_pseudo_coordinates.py | 14 ++++----- 2 files changed, 15 insertions(+), 38 deletions(-) diff --git a/edisgo/tools/pseudo_coordinates.py b/edisgo/tools/pseudo_coordinates.py index 8d0f7cfe9..d953bdf0e 100644 --- a/edisgo/tools/pseudo_coordinates.py +++ b/edisgo/tools/pseudo_coordinates.py @@ -1,10 +1,8 @@ from __future__ import annotations -import copy import logging import math -from time import time from typing import TYPE_CHECKING import networkx as nx @@ -210,49 +208,33 @@ def make_pseudo_coordinates_graph(G: Graph, branch_detour_factor: float) -> Grap Graph with pseudo coordinates for all nodes. """ - start_time = time() - logger.debug("Start - Making pseudo coordinates for graph") - x0, y0 = G.nodes[list(nx.nodes(G))[0]]["pos"] G = _make_coordinates(G, branch_detour_factor) x0, y0 = coor_transform.transform(x0, y0) for node in G.nodes(): x, y = G.nodes[node]["pos"] G.nodes[node]["pos"] = coor_transform_back.transform(x + x0, y + y0) - - logger.debug("Finished in {}s".format(time() - start_time)) return G -def make_pseudo_coordinates( - edisgo_root: EDisGo, mv_coordinates: bool = False -) -> EDisGo: +def make_pseudo_coordinates(edisgo_obj: EDisGo, mv_coordinates: bool = False): """ Generates pseudo coordinates for all LV grids and optionally MV grid. + Bus coordinates are changed in the Topology object directly. If you want to keep + information on the original coordinates, hand a copy of the EDisGo object to this + function. + Parameters ---------- - edisgo_root : :class:`~.EDisGo` - eDisGo object + edisgo_obj : :class:`~.EDisGo` + eDisGo object to create pseudo coordinates for. mv_coordinates : bool, optional - If True pseudo coordinates are also generated for MV grid. + If False, pseudo coordinates are only generated for LV busses. If True, pseudo + coordinates are as well generated for MV busses. Default: False. - Returns - ------- - :class:`~.EDisGo` - eDisGo object with pseudo coordinates for all LV nodes and optionally MV nodes. - """ - start_time = time() - logger.debug( - "Start - Making pseudo coordinates for grid: {}".format( - str(edisgo_root.topology.mv_grid) - ) - ) - - edisgo_obj = copy.deepcopy(edisgo_root) - grids = list(edisgo_obj.topology.mv_grid.lv_grids) if mv_coordinates: grids = [edisgo_obj.topology.mv_grid] + grids @@ -267,6 +249,3 @@ def make_pseudo_coordinates( x, y = G.nodes[node]["pos"] edisgo_obj.topology.buses_df.loc[node, "x"] = x edisgo_obj.topology.buses_df.loc[node, "y"] = y - - logger.debug("Finished in {}s".format(time() - start_time)) - return edisgo_obj diff --git a/tests/tools/test_pseudo_coordinates.py b/tests/tools/test_pseudo_coordinates.py index 4ada42f05..3c1720062 100644 --- a/tests/tools/test_pseudo_coordinates.py +++ b/tests/tools/test_pseudo_coordinates.py @@ -11,24 +11,22 @@ def setup_class(cls): cls.edisgo_root = EDisGo(ding0_grid=pytest.ding0_test_network_path) def test_make_pseudo_coordinates(self): - # make pseudo coordinates - edisgo_pseudo_coordinates = make_pseudo_coordinates( - edisgo_root=self.edisgo_root, mv_coordinates=True - ) - # test that coordinates change for one node + # test coordinates before coordinates = self.edisgo_root.topology.buses_df.loc[ "Bus_BranchTee_LVGrid_1_9", ["x", "y"] ] assert round(coordinates[0], 5) != round(7.943307, 5) assert round(coordinates[1], 5) != round(48.080396, 5) + # make pseudo coordinates + make_pseudo_coordinates(self.edisgo_root, mv_coordinates=True) + # test if the right coordinates are set for one node - coordinates = edisgo_pseudo_coordinates.topology.buses_df.loc[ + coordinates = self.edisgo_root.topology.buses_df.loc[ "Bus_BranchTee_LVGrid_1_9", ["x", "y"] ] assert round(coordinates[0], 5) == round(7.943307, 5) assert round(coordinates[1], 5) == round(48.080396, 5) - assert self.edisgo_root.topology.buses_df.x.isin([np.NaN]).any() - assert not edisgo_pseudo_coordinates.topology.buses_df.x.isin([np.NaN]).any() + assert not self.edisgo_root.topology.buses_df.x.isin([np.NaN]).any() From 1d01aa4584f852c02b79e0af0b938a5fa7a0286e Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 16 Apr 2023 20:06:42 +0200 Subject: [PATCH 261/355] Adapt docstrings --- edisgo/tools/spatial_complexity_reduction.py | 193 ++++++++++++++---- .../test_spatial_complexity_reduction.py | 97 ++++----- 2 files changed, 193 insertions(+), 97 deletions(-) diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 2b999be60..6f65455c0 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -381,15 +381,14 @@ def remove_lines_under_one_meter(edisgo_obj: EDisGo) -> EDisGo: def make_busmap_grid( edisgo_obj: EDisGo, grid: None | str = None, - mode: str = None, + mode: str = "kmeansdijkstra", reduction_factor: float = 0.25, preserve_trafo_bus_coordinates: bool = True, ) -> DataFrame: """ Making busmap for the cluster area 'grid'. - Every grid is clustered individually. For more information see function - :func:`~make_busmap`. + Every grid is clustered individually. Parameters ---------- @@ -397,8 +396,11 @@ def make_busmap_grid( EDisGo object for which the busmap is created. grid : str or None If None, busmap is created for all grids, else only for the selected grid. + Default: None. mode : str - "kmeans" or "kmeansdijkstra" as clustering method. + "kmeans" or "kmeansdijkstra" as clustering method. See parameter + `mode` in function :func:`~make_busmap` for more information. + Default: "kmeansdijkstra". reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. preserve_trafo_bus_coordinates : True @@ -586,15 +588,14 @@ def rename_new_buses(series): def make_busmap_feeders( edisgo_obj: EDisGo = None, grid: None | Grid = None, - mode: str = None, + mode: str = "kmeansdijkstra", reduction_factor: float = 0.25, reduction_factor_not_focused: bool | float = False, ) -> DataFrame: """ Making busmap for the cluster area 'feeder'. - Every feeder is clustered individually. For more information see function - :func:`~make_busmap`. + Every feeder is clustered individually. Parameters ---------- @@ -602,14 +603,18 @@ def make_busmap_feeders( EDisGo object for which the busmap is created. grid : str or None If None, busmap is created for all grids, else only for the selected grid. + Default: None. mode : str - "kmeans" or "kmeansdijkstra" as clustering method. + "kmeans" or "kmeansdijkstra" as clustering method. See parameter + `mode` in function :func:`~make_busmap` for more information. + Default: "kmeansdijkstra". reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. reduction_factor_not_focused : bool or float If False, the focus method is not used. If between 0 and 1, this sets the - reduction factor for buses not of interest. When selecting 0, the nodes of the - clustering area are aggregated to the transformer bus. + reduction factor for buses not of interest. See parameter + `reduction_factor_not_focused` in function :func:`~make_busmap` + for more information. Default: False. Returns ------- @@ -838,7 +843,7 @@ def transform_coordinates_back(ser): def make_busmap_main_feeders( edisgo_obj: EDisGo = None, grid: None | Grid = None, - mode: str = None, + mode: str = "kmeansdijkstra", reduction_factor: float = 0.25, reduction_factor_not_focused: bool | float = False, ) -> DataFrame: @@ -847,8 +852,7 @@ def make_busmap_main_feeders( Every main feeder is clustered individually. The main feeder is selected as the longest path in the feeder. All nodes are aggregated to this main feeder and - then the feeder is clustered. For more information see function - :func:`~make_busmap`. + then the feeder is clustered. Parameters ---------- @@ -856,15 +860,19 @@ def make_busmap_main_feeders( EDisGo object for which the busmap is created. grid : str or None If None, busmap is created for all grids, else only for the selected grid. + Default: None. mode : str "kmeans", "kmeansdijkstra", "aggregate_to_main_feeder" or - "equidistant_nodes" as clustering method. + "equidistant_nodes" as clustering method. See parameter + `mode` in function :func:`~make_busmap` for more information. + Default: "kmeansdijkstra". reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. reduction_factor_not_focused : bool or float If False, the focus method is not used. If between 0 and 1, this sets the - reduction factor for buses not of interest. When selecting 0, the nodes of the - clustering area are aggregated to the transformer bus. + reduction factor for buses not of interest. See parameter + `reduction_factor_not_focused` in function :func:`~make_busmap` + for more information. Default: False. Returns ------- @@ -1249,19 +1257,18 @@ def short_coordinates(root_node, end_node, branch_length, node_number): def make_busmap( edisgo_obj: EDisGo, - mode: str = None, - cluster_area: str = None, + mode: str = "kmeansdijkstra", + cluster_area: str = "feeder", reduction_factor: float = 0.25, reduction_factor_not_focused: bool | float = False, grid: None | Grid = None, ) -> DataFrame: """ - Wrapper around the different make_busmap methods for the different cluster areas. + Determines which busses are clustered. - From the EDisGo object a busmap is generated. The bus names are mapped to new bus - names with new coordinates. The busmap can be used with the function - :func:`reduce_edisgo ` to - perform a spatial complexity reduction. + The information on which original busses are clustered to which new busses is + given in the so-called busmap dataframe. The busmap can be used with the function + :func:`~apply_busmap` to perform a spatial complexity reduction. Parameters ---------- @@ -1288,9 +1295,10 @@ def make_busmap( through a reduction of the nodes by the specified reduction factor and distributing the remaining nodes on the graph equidistantly. + Default: "kmeansdijkstra". cluster_area : str The cluster area is the area the different clustering methods are applied to. - Possible options are 'grid', 'feeder' or 'main_feeder'. + Possible options are 'grid', 'feeder' or 'main_feeder'. Default: "feeder". reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. reduction_factor_not_focused : bool or float @@ -1300,6 +1308,7 @@ def make_busmap( power flow analysis). When selecting 0, the nodes of the clustering area are aggregated to the transformer bus. This parameter is only used when parameter `cluster_area` is set to 'feeder' or 'main_feeder'. + Default: False. grid : str or None If None, busmap is created for all grids, else only for the selected grid. @@ -1372,7 +1381,7 @@ def make_busmap( return busmap_df -def reduce_edisgo( +def apply_busmap( edisgo_obj: EDisGo, busmap_df: DataFrame, line_naming_convention: str = "standard_lines", @@ -1501,8 +1510,9 @@ def aggregate_lines_df(df): f"therefore set to 1 m." ) if length < 0.001: - logger.warning( - f"Length of line between {bus0} and {bus1} is " f"smaller than 1 m." + logger.debug( + f"Length of line between {bus0} and {bus1} is smaller than 1 m. To " + f"avoid stability issues in the power flow analysis it is set to 1 m." ) # Get type of the line to get the according standard line for the voltage_level @@ -1821,27 +1831,128 @@ def apply_busmap_on_transformers_df(series): def spatial_complexity_reduction( - edisgo_root: EDisGo, + edisgo_obj: EDisGo, mode: str = "kmeansdijkstra", cluster_area: str = "feeder", - reduction_factor: float = 0.5, - reduction_factor_not_focused: float | bool = 0.2, + reduction_factor: float = 0.25, + reduction_factor_not_focused: bool | float = False, apply_pseudo_coordinates: bool = True, -) -> tuple[EDisGo, DataFrame, DataFrame]: + **kwargs, +) -> tuple[DataFrame, DataFrame]: """ - Wrapper around the functions :func:`make_busmap` and - :func:`reduce_edisgo ` - look there for more information. + Reduces the number of busses and lines by applying a spatial clustering. + + Per default, this function creates pseudo coordinates for all busses in the LV + grids (see function :func:`~.tools.pseudo_coordinates.make_pseudo_coordinates`). + In case LV grids are not geo-referenced, this is a necessary step. If they are + already geo-referenced it can still be useful to obtain better results. + + Which busses are clustered is determined in function + :func:`~.tools.spatial_complexity_reduction.make_busmap`. + The clustering method used can be specified through the parameter `mode`. Further, + the clustering can be applied to different areas such as the whole grid or the + separate feeders, which is specified through the parameter `cluster_area`, and + to different degrees, specified through the parameter `reduction_factor`. + + The actual spatial reduction of the EDisGo object is conducted in function + :func:`~.tools.spatial_complexity_reduction.apply_busmap`. The changes, such as + dropping of lines connecting the same buses and adapting buses loads, generators + and storage units are connected to, are applied directly in the Topology object. + If you want to keep information on the original grid, hand a copy of the EDisGo + object to this function. You can also set how loads and generators at clustered + busses are aggregated through the keyword arguments + `load_aggregation_mode` and `generator_aggregation_mode`. Parameters ---------- + edisgo_obj : :class:`~.EDisGo` + EDisGo object to apply spatial complexity reduction to. + mode : str + Clustering method to use. Possible options are "kmeans", "kmeansdijkstra", + "aggregate_to_main_feeder" or "equidistant_nodes". The clustering methods + "aggregate_to_main_feeder" and "equidistant_nodes" only work for the cluster + area "main_feeder". + + - "kmeans": + Perform the k-means algorithm on the cluster area and then map the buses to + the cluster centers. + - "kmeansdijkstra": + Perform the k-means algorithm and then map the nodes to the cluster centers + through the shortest distance in the graph. The distances are + calculated using the dijkstra algorithm. + - "aggregate_to_main_feeder": + Aggregate the nodes in the feeder to the longest path in the feeder, here + called main feeder. + - "equidistant_nodes": + Uses the method "aggregate_to_main_feeder" and then reduces the nodes again + through a reduction of the nodes by the specified reduction factor and + distributing the remaining nodes on the graph equidistantly. + + Default: "kmeansdijkstra". + cluster_area : str + The cluster area is the area the different clustering methods are applied to. + Possible options are 'grid', 'feeder' or 'main_feeder'. Default: "feeder". + reduction_factor : float + Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. + reduction_factor_not_focused : bool or float + If False, uses the same reduction factor for all cluster areas. If between 0 + and 1, this sets the reduction factor for buses not of interest (these are buses + without voltage or overloading issues, that are determined through a worst case + power flow analysis). When selecting 0, the nodes of the clustering area are + aggregated to the transformer bus. This parameter is only used when parameter + `cluster_area` is set to 'feeder' or 'main_feeder'. Default: False. apply_pseudo_coordinates : bool - If True Pseudo Coordinates are applied. The spatial complexity reduction method - is only tested for pseudo coordinates. + If True pseudo coordinates are applied. The spatial complexity reduction method + is only tested with pseudo coordinates. Default: True. + + Other Parameters + ----------------- + line_naming_convention : str + Determines how to set "type_info" and "kind" in case two or more lines are + aggregated. Possible options are "standard_lines" or "combined_name". + If "standard_lines" is selected, the values of the standard line of the + respective voltage level are used to set "type_info" and "kind". + If "combined_name" is selected, "type_info" and "kind" contain the + concatenated values of the merged lines. x and r of the lines are not influenced + by this as they are always determined from the x and r values of the aggregated + lines. + Default: "standard_lines". + aggregation_mode : bool + Specifies, whether to aggregate loads and generators at the same bus or not. + If True, loads and generators at the same bus are aggregated + according to their selected modes (see parameters `load_aggregation_mode` and + `generator_aggregation_mode`). Default: False. + load_aggregation_mode : str + Specifies, how to aggregate loads at the same bus, in case parameter + `aggregation_mode` is set to True. Possible options are "bus" or "sector". + If "bus" is chosen, loads are aggregated per bus. When "sector" is chosen, + loads are aggregated by bus, type and sector. Default: "sector". + generator_aggregation_mode : str + Specifies, how to aggregate generators at the same bus, in case parameter + `aggregation_mode` is set to True. Possible options are "bus" or "type". + If "bus" is chosen, generators are aggregated per bus. When "type" is chosen, + generators are aggregated by bus and type. + mv_pseudo_coordinates : bool, optional + If True pseudo coordinates are also generated for MV grid. + Default: False. + + Returns + ------- + tuple(:pandas:`pandas.DataFrame`, :pandas:`pandas.DataFrame`) + Returns busmap and linemap dataframes. + The busmap maps the original busses to the new busses with new coordinates. + Columns are "new_bus" with new bus name, "new_x" with new x-coordinate and + "new_y" with new y-coordinate. Index of the dataframe holds bus names of + original buses as in buses_df. + The linemap maps the original line names (in the index of the dataframe) to the + new line names (in column "new_line_name"). + """ - edisgo_obj = copy.deepcopy(edisgo_root) + if apply_pseudo_coordinates: - edisgo_obj = make_pseudo_coordinates(edisgo_obj) + make_pseudo_coordinates( + edisgo_obj, mv_coordinates=kwargs.get("mv_pseudo_coordinates") + ) busmap_df = make_busmap( edisgo_obj, @@ -1850,11 +1961,9 @@ def spatial_complexity_reduction( reduction_factor=reduction_factor, reduction_factor_not_focused=reduction_factor_not_focused, ) - edisgo_reduced, linemap_df = reduce_edisgo( - edisgo_obj, busmap_df, aggregation_mode=False - ) + linemap_df = apply_busmap(edisgo_obj, busmap_df, **kwargs) - return edisgo_reduced, busmap_df, linemap_df + return busmap_df, linemap_df def compare_voltage( diff --git a/tests/tools/test_spatial_complexity_reduction.py b/tests/tools/test_spatial_complexity_reduction.py index 30ce5bfbf..83ae18dcd 100644 --- a/tests/tools/test_spatial_complexity_reduction.py +++ b/tests/tools/test_spatial_complexity_reduction.py @@ -11,18 +11,16 @@ class TestSpatialComplexityReduction: - @pytest.fixture(scope="class") + @pytest.fixture(autouse=True) def test_edisgo_obj(self): - """EDisGo-object is set up only once, during class lifetime.""" edisgo_root = EDisGo(ding0_grid=pytest.ding0_test_network_path) edisgo_root.set_time_series_worst_case_analysis() - edisgo_root = make_pseudo_coordinates(edisgo_root) + make_pseudo_coordinates(edisgo_root) return edisgo_root - @pytest.fixture(scope="class") - def test_busmap_df(self, test_edisgo_obj): + def setup_busmap_df(self, edisgo_obj): busmap_df = spatial_complexity_reduction.make_busmap( - test_edisgo_obj, + edisgo_obj, mode="kmeansdijkstra", cluster_area="main_feeder", reduction_factor=0.25, @@ -170,11 +168,9 @@ def test_make_busmap( test_exception, n_new_buses, ): - edisgo_root = copy.deepcopy(test_edisgo_obj) - with test_exception: busmap_df = spatial_complexity_reduction.make_busmap( - edisgo_root, + test_edisgo_obj, mode=mode, cluster_area=cluster_area, reduction_factor=reduction_factor, @@ -204,19 +200,17 @@ def test_make_busmap_for_only_one_grid( grid, n_buses, ): - edisgo_root = copy.deepcopy(test_edisgo_obj) - if grid == "MVGrid": grid = spatial_complexity_reduction._make_grid_list( - edisgo_root, grid="MVGrid_1" + test_edisgo_obj, grid="MVGrid_1" )[0] elif grid == "LVGrid": grid = spatial_complexity_reduction._make_grid_list( - edisgo_root, grid="LVGrid_9" + test_edisgo_obj, grid="LVGrid_9" )[0] busmap_df = spatial_complexity_reduction.make_busmap( - edisgo_root, + test_edisgo_obj, mode="kmeans", grid=grid, cluster_area=cluster_area, @@ -238,10 +232,9 @@ def test_make_busmap_for_only_one_grid( ("combined_name", False, None, None, 50, 28), ], ) - def test_reduce_edisgo( + def test_apply_busmap( self, test_edisgo_obj, - test_busmap_df, line_naming_convention, aggregation_mode, load_aggregation_mode, @@ -249,24 +242,23 @@ def test_reduce_edisgo( n_loads, n_generators, ): - edisgo_root = copy.deepcopy(test_edisgo_obj) - busmap_df = copy.deepcopy(test_busmap_df) + busmap_df = self.setup_busmap_df(test_edisgo_obj) # Add second line to test line reduction - edisgo_root.topology.lines_df.loc[ + test_edisgo_obj.topology.lines_df.loc[ "Line_10003_2" - ] = edisgo_root.topology.lines_df.loc["Line_10003"] + ] = test_edisgo_obj.topology.lines_df.loc["Line_10003"] - assert edisgo_root.topology.buses_df.shape[0] == 142 - assert edisgo_root.topology.lines_df.shape[0] == 132 - assert edisgo_root.topology.loads_df.shape[0] == 50 - assert edisgo_root.topology.generators_df.shape[0] == 28 - assert edisgo_root.topology.storage_units_df.shape[0] == 1 - assert edisgo_root.topology.transformers_df.shape[0] == 14 - assert edisgo_root.topology.switches_df.shape[0] == 2 + assert test_edisgo_obj.topology.buses_df.shape[0] == 142 + assert test_edisgo_obj.topology.lines_df.shape[0] == 132 + assert test_edisgo_obj.topology.loads_df.shape[0] == 50 + assert test_edisgo_obj.topology.generators_df.shape[0] == 28 + assert test_edisgo_obj.topology.storage_units_df.shape[0] == 1 + assert test_edisgo_obj.topology.transformers_df.shape[0] == 14 + assert test_edisgo_obj.topology.switches_df.shape[0] == 2 - linemap_df = spatial_complexity_reduction.reduce_edisgo( - edisgo_root, + linemap_df = spatial_complexity_reduction.apply_busmap( + test_edisgo_obj, busmap_df, line_naming_convention=line_naming_convention, aggregation_mode=aggregation_mode, @@ -274,29 +266,29 @@ def test_reduce_edisgo( generator_aggregation_mode=generator_aggregation_mode, ) - assert edisgo_root.topology.buses_df.shape[0] == 43 - assert edisgo_root.topology.lines_df.shape[0] == 34 - assert edisgo_root.topology.loads_df.shape[0] == n_loads - assert edisgo_root.topology.generators_df.shape[0] == n_generators - assert edisgo_root.topology.storage_units_df.shape[0] == 1 - assert edisgo_root.topology.transformers_df.shape[0] == 14 - assert edisgo_root.topology.switches_df.shape[0] == 2 + assert test_edisgo_obj.topology.buses_df.shape[0] == 43 + assert test_edisgo_obj.topology.lines_df.shape[0] == 34 + assert test_edisgo_obj.topology.loads_df.shape[0] == n_loads + assert test_edisgo_obj.topology.generators_df.shape[0] == n_generators + assert test_edisgo_obj.topology.storage_units_df.shape[0] == 1 + assert test_edisgo_obj.topology.transformers_df.shape[0] == 14 + assert test_edisgo_obj.topology.switches_df.shape[0] == 2 if line_naming_convention == "standard_lines": assert ( - edisgo_root.topology.lines_df.loc[ + test_edisgo_obj.topology.lines_df.loc[ "Line_Bus_MVStation_1_to_Bus_mvgd_1_F0_B2", "type_info" ] == "NA2XS2Y 3x1x240" ) elif line_naming_convention == "combined_name": assert ( - edisgo_root.topology.lines_df.loc[ + test_edisgo_obj.topology.lines_df.loc[ "Line_Bus_MVStation_1_to_Bus_mvgd_1_F0_B2", "type_info" ] == "Merged: 48-AL1/8-ST1A 48-AL1/8-ST1A " ) - timeseries = edisgo_root.timeseries + timeseries = test_edisgo_obj.timeseries assert timeseries.loads_active_power.shape[1] == n_loads assert timeseries.loads_reactive_power.shape[1] == n_loads assert timeseries.generators_active_power.shape[1] == n_generators @@ -304,13 +296,11 @@ def test_reduce_edisgo( assert len(set(linemap_df["new_line_name"].to_list())) == 34 def test_spatial_complexity_reduction(self, test_edisgo_obj): - edisgo_root = copy.deepcopy(test_edisgo_obj) - ( busmap_df, linemap_df, ) = spatial_complexity_reduction.spatial_complexity_reduction( - edisgo_root, + test_edisgo_obj, mode="kmeans", cluster_area="grid", reduction_factor=0.2, @@ -321,48 +311,45 @@ def test_spatial_complexity_reduction(self, test_edisgo_obj): assert len(set(linemap_df["new_line_name"].to_list())) == 23 # Check that edisgo_object can run power flow and reinforce - edisgo_root.analyze() - edisgo_root.reinforce() + test_edisgo_obj.analyze() + test_edisgo_obj.reinforce() def test_compare_voltage(self, test_edisgo_obj): - edisgo_root = copy.deepcopy(test_edisgo_obj) - + edisgo_reduced = copy.deepcopy(test_edisgo_obj) ( - edisgo_reduced, busmap_df, linemap_df, ) = spatial_complexity_reduction.spatial_complexity_reduction( - edisgo_root, + edisgo_reduced, mode="kmeans", cluster_area="grid", reduction_factor=0.2, reduction_factor_not_focused=False, ) - edisgo_root.analyze() + test_edisgo_obj.analyze() edisgo_reduced.analyze() _, rms = spatial_complexity_reduction.compare_voltage( - edisgo_root, edisgo_reduced, busmap_df, "max" + test_edisgo_obj, edisgo_reduced, busmap_df, "max" ) assert np.isclose(rms, 0.00766, atol=1e-5) def test_compare_apparent_power(self, test_edisgo_obj): - edisgo_root = copy.deepcopy(test_edisgo_obj) + edisgo_reduced = copy.deepcopy(test_edisgo_obj) ( - edisgo_reduced, busmap_df, linemap_df, ) = spatial_complexity_reduction.spatial_complexity_reduction( - edisgo_root, + edisgo_reduced, mode="kmeans", cluster_area="grid", reduction_factor=0.2, reduction_factor_not_focused=False, ) - edisgo_root.analyze() + test_edisgo_obj.analyze() edisgo_reduced.analyze() _, rms = spatial_complexity_reduction.compare_apparent_power( - edisgo_root, edisgo_reduced, linemap_df, "max" + test_edisgo_obj, edisgo_reduced, linemap_df, "max" ) assert np.isclose(rms, 2.873394, atol=1e-5) From 0811f2151a623933da226afadfd52a45934e291f Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 16 Apr 2023 20:39:05 +0200 Subject: [PATCH 262/355] Add wrapper function in EDisGo class --- edisgo/edisgo.py | 141 +++++++++++++++++++++++++++++++++++++++++++ tests/test_edisgo.py | 41 +++++++++++++ 2 files changed, 182 insertions(+) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 3cd3e3565..493fe0c86 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -42,6 +42,7 @@ from edisgo.tools import plots, tools from edisgo.tools.config import Config from edisgo.tools.geo import find_nearest_bus +from edisgo.tools.spatial_complexity_reduction import spatial_complexity_reduction from edisgo.tools.tools import determine_grid_integration_voltage_level if "READTHEDOCS" not in os.environ: @@ -2615,6 +2616,146 @@ def reduce_memory(self, **kwargs): attr_to_reduce=kwargs.get("overlying_grid_attr_to_reduce", None), ) + def spatial_complexity_reduction( + self, + copy_edisgo: bool = False, + mode: str = "kmeansdijkstra", + cluster_area: str = "feeder", + reduction_factor: float = 0.25, + reduction_factor_not_focused: bool | float = False, + apply_pseudo_coordinates: bool = True, + **kwargs, + ) -> tuple[EDisGo, pd.DataFrame, pd.DataFrame]: + """ + Reduces the number of busses and lines by applying a spatial clustering. + + Per default, this function creates pseudo coordinates for all busses in the LV + grids (see function :func:`~.tools.pseudo_coordinates.make_pseudo_coordinates`). + In case LV grids are not geo-referenced, this is a necessary step. If they are + already geo-referenced it can still be useful to obtain better results. + + Which busses are clustered is determined in function + :func:`~.tools.spatial_complexity_reduction.make_busmap`. + The clustering method used can be specified through the parameter `mode`. + Further, the clustering can be applied to different areas such as the whole grid + or the separate feeders, which is specified through the parameter + `cluster_area`, and to different degrees, specified through the parameter + `reduction_factor`. + + The actual spatial reduction of the EDisGo object is conducted in function + :func:`~.tools.spatial_complexity_reduction.apply_busmap`. The changes, such as + dropping of lines connecting the same buses and adapting buses loads, generators + and storage units are connected to, are applied directly in the Topology object. + If you want to keep information on the original grid, hand a copy of the EDisGo + object to this function. You can also set how loads and generators at clustered + busses are aggregated through the keyword arguments + `load_aggregation_mode` and `generator_aggregation_mode`. + + Parameters + ---------- + copy_edisgo : bool + Defines whether to apply the spatial complexity reduction directly on the + EDisGo object or on a copy. Per default, the complexity reduction is + directly applied. + mode : str + Clustering method to use. Possible options are "kmeans", "kmeansdijkstra", + "aggregate_to_main_feeder" or "equidistant_nodes". The clustering methods + "aggregate_to_main_feeder" and "equidistant_nodes" only work for the cluster + area "main_feeder". + + - "kmeans": + Perform the k-means algorithm on the cluster area and then map the buses + to the cluster centers. + - "kmeansdijkstra": + Perform the k-means algorithm and then map the nodes to the cluster + centers through the shortest distance in the graph. The distances are + calculated using the dijkstra algorithm. + - "aggregate_to_main_feeder": + Aggregate the nodes in the feeder to the longest path in the feeder, + here called main feeder. + - "equidistant_nodes": + Uses the method "aggregate_to_main_feeder" and then reduces the nodes + again through a reduction of the nodes by the specified reduction factor + and distributing the remaining nodes on the graph equidistantly. + + Default: "kmeansdijkstra". + cluster_area : str + The cluster area is the area the different clustering methods are applied + to. Possible options are 'grid', 'feeder' or 'main_feeder'. + Default: "feeder". + reduction_factor : float + Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. + reduction_factor_not_focused : bool or float + If False, uses the same reduction factor for all cluster areas. If between 0 + and 1, this sets the reduction factor for buses not of interest (these are + buses without voltage or overloading issues, that are determined through a + worst case power flow analysis). When selecting 0, the nodes of the + clustering area are aggregated to the transformer bus. This parameter is + only used when parameter `cluster_area` is set to 'feeder' or 'main_feeder'. + Default: False. + apply_pseudo_coordinates : bool + If True pseudo coordinates are applied. The spatial complexity reduction + method is only tested with pseudo coordinates. Default: True. + + Other Parameters + ----------------- + line_naming_convention : str + Determines how to set "type_info" and "kind" in case two or more lines are + aggregated. Possible options are "standard_lines" or "combined_name". + If "standard_lines" is selected, the values of the standard line of the + respective voltage level are used to set "type_info" and "kind". + If "combined_name" is selected, "type_info" and "kind" contain the + concatenated values of the merged lines. x and r of the lines are not + influenced by this as they are always determined from the x and r values of + the aggregated lines. + Default: "standard_lines". + aggregation_mode : bool + Specifies, whether to aggregate loads and generators at the same bus or not. + If True, loads and generators at the same bus are aggregated + according to their selected modes (see parameters `load_aggregation_mode` + and `generator_aggregation_mode`). Default: False. + load_aggregation_mode : str + Specifies, how to aggregate loads at the same bus, in case parameter + `aggregation_mode` is set to True. Possible options are "bus" or "sector". + If "bus" is chosen, loads are aggregated per bus. When "sector" is chosen, + loads are aggregated by bus, type and sector. Default: "sector". + generator_aggregation_mode : str + Specifies, how to aggregate generators at the same bus, in case parameter + `aggregation_mode` is set to True. Possible options are "bus" or "type". + If "bus" is chosen, generators are aggregated per bus. When "type" is + chosen, generators are aggregated by bus and type. + mv_pseudo_coordinates : bool, optional + If True pseudo coordinates are also generated for MV grid. + Default: False. + + Returns + ------- + tuple(:pandas:`pandas.DataFrame`, + :pandas:`pandas.DataFrame`) + Returns busmap and linemap dataframes. + The busmap maps the original busses to the new busses with new coordinates. + Columns are "new_bus" with new bus name, "new_x" with new x-coordinate and + "new_y" with new y-coordinate. Index of the dataframe holds bus names of + original buses as in buses_df. + The linemap maps the original line names (in the index of the dataframe) to + the new line names (in column "new_line_name"). + + """ + if copy_edisgo is True: + edisgo_obj = copy.deepcopy(self) + else: + edisgo_obj = self + busmap_df, linemap_df = spatial_complexity_reduction( + edisgo_obj=edisgo_obj, + mode=mode, + cluster_area=cluster_area, + reduction_factor=reduction_factor, + reduction_factor_not_focused=reduction_factor_not_focused, + apply_pseudo_coordinates=apply_pseudo_coordinates, + **kwargs, + ) + return edisgo_obj, busmap_df, linemap_df + def check_integrity(self): """ Method to check the integrity of the EDisGo object. diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 3b17f6159..3af240725 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -1552,6 +1552,47 @@ def test_reduce_memory(self): og.dsm_active_power.memory_usage(deep=True), ) + def test_spatial_complexity_reduction(self): + # test with copying edisgo object + (edisgo_obj, busmap_df, linemap_df,) = self.edisgo.spatial_complexity_reduction( + copy_edisgo=True, + mode="kmeans", + cluster_area="grid", + reduction_factor=0.2, + reduction_factor_not_focused=False, + ) + # check for deterministic behaviour + assert len(self.edisgo.topology.buses_df) != len(edisgo_obj.topology.buses_df) + assert len(self.edisgo.topology.loads_df) == len(edisgo_obj.topology.loads_df) + assert len(self.edisgo.topology.generators_df) == len( + edisgo_obj.topology.generators_df + ) + assert len(set(busmap_df["new_bus"].to_list())) == 32 + assert len(edisgo_obj.topology.buses_df) == 32 + assert len(set(linemap_df["new_line_name"].to_list())) == 23 + assert len(edisgo_obj.topology.lines_df) == 23 + + # test without copying edisgo object + edisgo_orig = copy.deepcopy(self.edisgo) + (_, busmap_df, linemap_df,) = self.edisgo.spatial_complexity_reduction( + mode="kmeans", + cluster_area="grid", + reduction_factor=0.2, + reduction_factor_not_focused=False, + aggregation_mode=True, + mv_pseudo_coordinates=True, + ) + # Check for deterministic behaviour + assert len(self.edisgo.topology.buses_df) == len(edisgo_obj.topology.buses_df) + assert len(edisgo_orig.topology.loads_df) != len(self.edisgo.topology.loads_df) + assert len(edisgo_orig.topology.generators_df) != len( + self.edisgo.topology.generators_df + ) + assert len(self.edisgo.topology.loads_df) == 28 + assert len(self.edisgo.topology.generators_df) == 17 + assert len(set(busmap_df["new_bus"].to_list())) == 32 + assert len(set(linemap_df["new_line_name"].to_list())) == 21 + def test_check_integrity(self, caplog): self.edisgo.check_integrity() assert ( From ee5c08d679ddf8d546932af0361dfcbecf6d9b6a Mon Sep 17 00:00:00 2001 From: birgits Date: Sun, 16 Apr 2023 20:58:05 +0200 Subject: [PATCH 263/355] Change docstrings and documentation --- doc/features_in_detail.rst | 17 +-- edisgo/edisgo.py | 10 +- edisgo/tools/spatial_complexity_reduction.py | 119 +++++-------------- 3 files changed, 38 insertions(+), 108 deletions(-) diff --git a/doc/features_in_detail.rst b/doc/features_in_detail.rst index fcbdc735e..3a0f0b216 100644 --- a/doc/features_in_detail.rst +++ b/doc/features_in_detail.rst @@ -351,14 +351,7 @@ mapping each bus in the original grid to a new bus in the clustered grid. Then, the busmap, the eDisGo object is reduced. Some parts of the methods are based on the spatial clustering of [PyPSA]_. You can apply the complexity reduction by calling the function -:py:func:`~edisgo.tools.spatial_complexity_reduction.spatial_complexity_reduction`: - -.. code-block:: python - - from edisgo.tools.spatial_complexity_reduction import spatial_complexity_reduction - - # call spatial complexity reduction with default values - edisgo_reduced, busmap_df, linemap_df = spatial_complexity_reduction(edisgo_obj) +:py:attr:`~EDisGo.spatial_complexity_reduction`. Important is that all grid buses have coordinates and the line length can be calculated through the Euclidean distance and a detour factor. If the grids do not match these conditions, the complexity reduction might not work as expected. @@ -392,9 +385,9 @@ of the number of nodes and vice versa. Also, there is the possibility to reduce the number of nodes to a larger degree in areas with no predicted reinforcement through the parameter 'reduction_factor_not_focused'. The areas which are not focused, are -the areas that do not have components with voltage and overloading problems for the worst case power flow. +the areas that do not have components with voltage and overloading problems in the worst case power flow. -For the reduction of the grid graph, the function :py:func:`~edisgo.tools.spatial_complexity_reduction.reduce_edisgo` is used. +For the reduction of the grid graph, the function :py:func:`~edisgo.tools.spatial_complexity_reduction.apply_busmap` is used. With this method, every line and all their parameters are recalculated and sometimes lines are combined to a new line. This is the part where the magic of reducing the grid object happens. For more information, read: [HoerschBrown]_ and [SCR]_. @@ -403,7 +396,7 @@ If you want more flexibility in using the complexity reduction, you can also run .. code-block:: python - from edisgo.tools.spatial_complexity_reduction import make_busmap, reduce_edisgo + from edisgo.tools.spatial_complexity_reduction import make_busmap, apply_busmap from edisgo.tools.pseudo_coordinates import make_pseudo_coordinates # create pseudo coordinates @@ -418,7 +411,7 @@ If you want more flexibility in using the complexity reduction, you can also run reduction_factor_not_focused=k_rf_not_focused', # 0 <= k_rf_not_focused < 1 ) # reduce EDisGo object - edisgo_reduced, linemap_df = reduce_edisgo(edisgo_obj, busmap_df) + edisgo_reduced, linemap_df = apply_busmap(edisgo_obj, busmap_df) For more details see the API documentation or the thesis where the methods were implemented and tested [SCR]_. diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 493fe0c86..6b8a8e476 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2730,9 +2730,11 @@ def spatial_complexity_reduction( Returns ------- - tuple(:pandas:`pandas.DataFrame`, - :pandas:`pandas.DataFrame`) - Returns busmap and linemap dataframes. + tuple(:class:`~.EDisGo`, :pandas:`pandas.DataFrame`,\ + :pandas:`pandas.DataFrame`) + Returns the EDisGo object (which is only relevant in case the parameter + `copy_edisgo` was set to True), as well as the busmap and linemap + dataframes. The busmap maps the original busses to the new busses with new coordinates. Columns are "new_bus" with new bus name, "new_x" with new x-coordinate and "new_y" with new y-coordinate. Index of the dataframe holds bus names of @@ -3072,7 +3074,7 @@ def import_edisgo_from_files( `parameters` parameter in :func:`~.network.results.Results.to_csv` for more information. - Results + Returns --------- :class:`~.EDisGo` Restored EDisGo object. diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index 6f65455c0..e4d00830e 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -398,8 +398,8 @@ def make_busmap_grid( If None, busmap is created for all grids, else only for the selected grid. Default: None. mode : str - "kmeans" or "kmeansdijkstra" as clustering method. See parameter - `mode` in function :func:`~make_busmap` for more information. + "kmeans" or "kmeansdijkstra" as clustering method. See parameter `mode` in + function :attr:`~.EDisGo.spatial_complexity_reduction` for more information. Default: "kmeansdijkstra". reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. @@ -605,8 +605,8 @@ def make_busmap_feeders( If None, busmap is created for all grids, else only for the selected grid. Default: None. mode : str - "kmeans" or "kmeansdijkstra" as clustering method. See parameter - `mode` in function :func:`~make_busmap` for more information. + "kmeans" or "kmeansdijkstra" as clustering method. See parameter `mode` in + function :attr:`~.EDisGo.spatial_complexity_reduction` for more information. Default: "kmeansdijkstra". reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. @@ -863,8 +863,8 @@ def make_busmap_main_feeders( Default: None. mode : str "kmeans", "kmeansdijkstra", "aggregate_to_main_feeder" or - "equidistant_nodes" as clustering method. See parameter - `mode` in function :func:`~make_busmap` for more information. + "equidistant_nodes" as clustering method. See parameter `mode` in + function :attr:`~.EDisGo.spatial_complexity_reduction` for more information. Default: "kmeansdijkstra". reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. @@ -1275,27 +1275,9 @@ def make_busmap( edisgo_obj : :class:`~.EDisGo` EDisGo object for which the busmap is created. mode : str - Clustering method to use. Possible options are "kmeans", "kmeansdijkstra", - "aggregate_to_main_feeder" or "equidistant_nodes". The clustering methods - "aggregate_to_main_feeder" and "equidistant_nodes" only work for the cluster - area "main_feeder". - - - "kmeans": - Perform the k-means algorithm on the cluster area and then map the buses to - the cluster centers. - - "kmeansdijkstra": - Perform the k-means algorithm and then map the nodes to the cluster centers - through the shortest distance in the graph. The distances are - calculated using the dijkstra algorithm. - - "aggregate_to_main_feeder": - Aggregate the nodes in the feeder to the longest path in the feeder, here - called main feeder. - - "equidistant_nodes": - Uses the method "aggregate_to_main_feeder" and then reduces the nodes again - through a reduction of the nodes by the specified reduction factor and - distributing the remaining nodes on the graph equidistantly. - - Default: "kmeansdijkstra". + Clustering method to use. + See parameter `mode` in function :attr:`~.EDisGo.spatial_complexity_reduction` + for more information. cluster_area : str The cluster area is the area the different clustering methods are applied to. Possible options are 'grid', 'feeder' or 'main_feeder'. Default: "feeder". @@ -1842,65 +1824,27 @@ def spatial_complexity_reduction( """ Reduces the number of busses and lines by applying a spatial clustering. - Per default, this function creates pseudo coordinates for all busses in the LV - grids (see function :func:`~.tools.pseudo_coordinates.make_pseudo_coordinates`). - In case LV grids are not geo-referenced, this is a necessary step. If they are - already geo-referenced it can still be useful to obtain better results. - - Which busses are clustered is determined in function - :func:`~.tools.spatial_complexity_reduction.make_busmap`. - The clustering method used can be specified through the parameter `mode`. Further, - the clustering can be applied to different areas such as the whole grid or the - separate feeders, which is specified through the parameter `cluster_area`, and - to different degrees, specified through the parameter `reduction_factor`. - - The actual spatial reduction of the EDisGo object is conducted in function - :func:`~.tools.spatial_complexity_reduction.apply_busmap`. The changes, such as - dropping of lines connecting the same buses and adapting buses loads, generators - and storage units are connected to, are applied directly in the Topology object. - If you want to keep information on the original grid, hand a copy of the EDisGo - object to this function. You can also set how loads and generators at clustered - busses are aggregated through the keyword arguments - `load_aggregation_mode` and `generator_aggregation_mode`. + See function :attr:`~.EDisGo.spatial_complexity_reduction` for more information. Parameters ---------- edisgo_obj : :class:`~.EDisGo` EDisGo object to apply spatial complexity reduction to. mode : str - Clustering method to use. Possible options are "kmeans", "kmeansdijkstra", - "aggregate_to_main_feeder" or "equidistant_nodes". The clustering methods - "aggregate_to_main_feeder" and "equidistant_nodes" only work for the cluster - area "main_feeder". - - - "kmeans": - Perform the k-means algorithm on the cluster area and then map the buses to - the cluster centers. - - "kmeansdijkstra": - Perform the k-means algorithm and then map the nodes to the cluster centers - through the shortest distance in the graph. The distances are - calculated using the dijkstra algorithm. - - "aggregate_to_main_feeder": - Aggregate the nodes in the feeder to the longest path in the feeder, here - called main feeder. - - "equidistant_nodes": - Uses the method "aggregate_to_main_feeder" and then reduces the nodes again - through a reduction of the nodes by the specified reduction factor and - distributing the remaining nodes on the graph equidistantly. - - Default: "kmeansdijkstra". + Clustering method to use. + See parameter `mode` in function :attr:`~.EDisGo.spatial_complexity_reduction` + for more information. cluster_area : str The cluster area is the area the different clustering methods are applied to. - Possible options are 'grid', 'feeder' or 'main_feeder'. Default: "feeder". + See parameter `cluster_area` in function + :attr:`~.EDisGo.spatial_complexity_reduction` for more information. reduction_factor : float Factor to reduce number of nodes by. Must be between 0 and 1. Default: 0.25. reduction_factor_not_focused : bool or float If False, uses the same reduction factor for all cluster areas. If between 0 - and 1, this sets the reduction factor for buses not of interest (these are buses - without voltage or overloading issues, that are determined through a worst case - power flow analysis). When selecting 0, the nodes of the clustering area are - aggregated to the transformer bus. This parameter is only used when parameter - `cluster_area` is set to 'feeder' or 'main_feeder'. Default: False. + and 1, this sets the reduction factor for buses not of interest. See parameter + `reduction_factor_not_focused` in function + :attr:`~.EDisGo.spatial_complexity_reduction` for more information. apply_pseudo_coordinates : bool If True pseudo coordinates are applied. The spatial complexity reduction method is only tested with pseudo coordinates. Default: True. @@ -1909,29 +1853,20 @@ def spatial_complexity_reduction( ----------------- line_naming_convention : str Determines how to set "type_info" and "kind" in case two or more lines are - aggregated. Possible options are "standard_lines" or "combined_name". - If "standard_lines" is selected, the values of the standard line of the - respective voltage level are used to set "type_info" and "kind". - If "combined_name" is selected, "type_info" and "kind" contain the - concatenated values of the merged lines. x and r of the lines are not influenced - by this as they are always determined from the x and r values of the aggregated - lines. - Default: "standard_lines". + aggregated. See parameter `line_naming_convention` in function + :attr:`~.EDisGo.spatial_complexity_reduction` for more information. aggregation_mode : bool Specifies, whether to aggregate loads and generators at the same bus or not. - If True, loads and generators at the same bus are aggregated - according to their selected modes (see parameters `load_aggregation_mode` and - `generator_aggregation_mode`). Default: False. + See parameter `aggregation_mode` in function + :attr:`~.EDisGo.spatial_complexity_reduction` for more information. load_aggregation_mode : str Specifies, how to aggregate loads at the same bus, in case parameter - `aggregation_mode` is set to True. Possible options are "bus" or "sector". - If "bus" is chosen, loads are aggregated per bus. When "sector" is chosen, - loads are aggregated by bus, type and sector. Default: "sector". + `aggregation_mode` is set to True. See parameter `load_aggregation_mode` in + function :attr:`~.EDisGo.spatial_complexity_reduction` for more information. generator_aggregation_mode : str Specifies, how to aggregate generators at the same bus, in case parameter - `aggregation_mode` is set to True. Possible options are "bus" or "type". - If "bus" is chosen, generators are aggregated per bus. When "type" is chosen, - generators are aggregated by bus and type. + `aggregation_mode` is set to True. See parameter `generator_aggregation_mode` in + function :attr:`~.EDisGo.spatial_complexity_reduction` for more information. mv_pseudo_coordinates : bool, optional If True pseudo coordinates are also generated for MV grid. Default: False. @@ -1951,7 +1886,7 @@ def spatial_complexity_reduction( if apply_pseudo_coordinates: make_pseudo_coordinates( - edisgo_obj, mv_coordinates=kwargs.get("mv_pseudo_coordinates") + edisgo_obj, mv_coordinates=kwargs.pop("mv_pseudo_coordinates", False) ) busmap_df = make_busmap( From 22ebfe0e0995e1e851360ecb2d13871350234d63 Mon Sep 17 00:00:00 2001 From: Jonas Jeckstadt Date: Mon, 17 Apr 2023 09:49:55 +0200 Subject: [PATCH 264/355] solved issues in slow tests --- edisgo/flex_opt/check_tech_constraints.py | 21 +++++++++++---------- examples/edisgo_simple_example.ipynb | 2 +- examples/electromobility_example.ipynb | 10 ++++++---- 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index 6628f4c6e..65be32d86 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -913,7 +913,6 @@ def allowed_voltage_limits(edisgo_obj, buses=None, split_voltage_band=True): buses = edisgo_obj.results.v_res.columns if split_voltage_band: - # MV limits mv_buses = edisgo_obj.topology.mv_grid.buses_df.index mv_upper, mv_lower = _mv_allowed_voltage_limits(edisgo_obj) @@ -1041,17 +1040,18 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): buses_in_pfa = edisgo_obj.results.v_res.columns if mode == "stations": - config_string = "mv_lv_station" # get all primary and secondary sides - primary_sides = pd.Series() - secondary_sides = pd.Series() + dict_primary_sides = {} + dict_secondary_sides = {} for grid in lv_grids: primary_side = grid.transformers_df.iloc[0].bus0 if primary_side in buses_in_pfa: - primary_sides[grid] = primary_side - secondary_sides[grid] = grid.station.index[0] + dict_primary_sides[grid] = primary_side + dict_secondary_sides[grid] = grid.station.index[0] + primary_sides = pd.Series(dict_primary_sides) + secondary_sides = pd.Series(dict_secondary_sides) voltage_base = edisgo_obj.results.v_res.loc[:, primary_sides.values] @@ -1080,14 +1080,15 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): # get all secondary sides and buses in grids buses_dict = {} - secondary_sides = pd.Series() + secondary_sides_dict = {} for grid in lv_grids: secondary_side = grid.station.index[0] if secondary_side in buses_in_pfa: - secondary_sides[grid] = secondary_side + secondary_sides_dict[grid] = secondary_side buses_dict[grid.station.index[0]] = grid.buses_df.index.drop( grid.station.index[0] ) + secondary_sides = pd.Series(secondary_sides_dict) voltage_base = edisgo_obj.results.v_res.loc[:, secondary_sides.values] @@ -1105,14 +1106,14 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): ) # rename columns to secondary side - for colname, values in upper_limits_df_tmp.iteritems(): + for colname, values in upper_limits_df_tmp.items(): tmp = pd.DataFrame( data=np.tile(values, (len(buses_dict[colname]), 1)).T, columns=buses_dict[colname], index=values.index, ) upper_limits_df = pd.concat([upper_limits_df, tmp], axis=1) - for colname, values in lower_limits_df_tmp.iteritems(): + for colname, values in lower_limits_df_tmp.items(): tmp = pd.DataFrame( data=np.tile(values, (len(buses_dict[colname]), 1)).T, columns=buses_dict[colname], diff --git a/examples/edisgo_simple_example.ipynb b/examples/edisgo_simple_example.ipynb index 982b021a2..b0a68fc63 100644 --- a/examples/edisgo_simple_example.ipynb +++ b/examples/edisgo_simple_example.ipynb @@ -892,7 +892,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.10" + "version": "3.9.5" }, "toc": { "base_numbering": 1, diff --git a/examples/electromobility_example.ipynb b/examples/electromobility_example.ipynb index 8d4919824..c2170bf82 100644 --- a/examples/electromobility_example.ipynb +++ b/examples/electromobility_example.ipynb @@ -605,9 +605,9 @@ "charging_parks_with_charging_demand = (\n", " edisgo.electromobility.charging_processes_df.charging_park_id.unique()\n", ")\n", - "charging_parks_not_integrated = set(charging_parks_with_charging_demand) - set(\n", + "charging_parks_not_integrated = list(set(charging_parks_with_charging_demand) - set(\n", " edisgo.electromobility.integrated_charging_parks_df.index\n", - ")\n", + "))\n", "\n", "edisgo.electromobility.potential_charging_parks_gdf.loc[\n", " charging_parks_not_integrated\n", @@ -737,7 +737,9 @@ "cell_type": "code", "execution_count": null, "id": "20d98ca8", - "metadata": {}, + "metadata": { + "tags": [] + }, "outputs": [], "source": [ "fig, ax = plt.subplots(1, 1, figsize=(9, 5))\n", @@ -774,7 +776,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.10" + "version": "3.9.5" }, "toc": { "base_numbering": 1, From 96becff4a2eb815b175f999a2205990829d99b0a Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 18 Apr 2023 09:03:24 +0200 Subject: [PATCH 265/355] Adapt analyze --- edisgo/edisgo.py | 30 ++++++++++++++++++++---------- 1 file changed, 20 insertions(+), 10 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 3e343a677..325b31327 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -865,7 +865,7 @@ def analyze( range_num: int = 10, scale_timeseries: float | None = None, **kwargs, - ): + ) -> tuple[pd.DataFrame, pd.DataFrame]: """ Conducts a static, non-linear power flow analysis. @@ -938,20 +938,28 @@ def analyze( Power flow analysis is conducted by reducing all power values of generators and loads to a fraction, e.g. 10%, solving the load flow and using it as a seed for the power at 20%, iteratively up to 100%. + Using parameters `range_start` and `range_num` you can define at what + scaling factor the iteration should start and how many iterations + should be conducted. range_start : float, optional Specifies the minimum fraction that power values are set to when using - troubleshooting_mode 'iteration'. Must be between 0 and 1. + `troubleshooting_mode` 'iteration'. Must be between 0 and 1. Default: 0.1. range_num : int, optional Specifies the number of fraction samples to generate when using - troubleshooting_mode 'iteration'. Must be non-negative. + `troubleshooting_mode` 'iteration'. Must be non-negative. Default: 10. scale_timeseries : float or None, optional - Scales the timeseries in the pypsa object with the factor - 'scaling_timeseries'. + If a value is given, the timeseries in the pypsa object are scaled with + this factor (values between 0 and 1 will scale down the time series and + values above 1 will scale the timeseries up). Downscaling of time series + can be used to check if power flow converges for smaller + grid loads. If None, timeseries are not scaled. In case of + `troubleshooting_mode` 'iteration' this parameter is ignored. + Default: None. Other Parameters ----------------- @@ -961,7 +969,8 @@ def analyze( Returns -------- - :pandas:`pandas.DatetimeIndex` + tuple(:pandas:`pandas.DatetimeIndex`,\ + :pandas:`pandas.DatetimeIndex`) Returns the time steps for which power flow analysis did not converge. References @@ -996,8 +1005,9 @@ def _check_convergence(): return timesteps_converged, timesteps_not_converged def _scale_timeseries(pypsa_network_copy, fraction): - # Scales the timeseries in the pypsa object - # Reduce power values of generators, loads and storages to fraction of + # Scales the timeseries in the pypsa object, the pypsa_network_copy is + # the network with the original time series + # Reduce power values of generators, loads and storages to given fraction for obj1, obj2 in [ (pypsa_network.generators_t, pypsa_network_copy.generators_t), (pypsa_network.loads_t, pypsa_network_copy.loads_t), @@ -1016,7 +1026,7 @@ def _scale_timeseries(pypsa_network_copy, fraction): pypsa_network = self.to_pypsa(mode=mode, timesteps=timesteps, **kwargs) - if scale_timeseries: + if scale_timeseries is not None and troubleshooting_mode != "iteration": pypsa_network = _scale_timeseries(pypsa_network, scale_timeseries) if troubleshooting_mode == "lpf": @@ -1032,7 +1042,7 @@ def _scale_timeseries(pypsa_network_copy, fraction): pypsa_network = _scale_timeseries(pypsa_network_copy, fraction) # run power flow analysis pf_results = pypsa_network.pf(timesteps, use_seed=True) - logging.warning( + logging.info( "Current fraction in iterative process: {}.".format(fraction) ) # get converged and not converged time steps From fed8c99f7eafc33dca454f0ad5021e1d50384730 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 18 Apr 2023 09:10:50 +0200 Subject: [PATCH 266/355] Move changes to latest whatsnew --- doc/whatsnew/v0-2-1.rst | 2 -- doc/whatsnew/v0-3-0.rst | 3 +++ 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/whatsnew/v0-2-1.rst b/doc/whatsnew/v0-2-1.rst index df2da34a3..4a4d5b787 100644 --- a/doc/whatsnew/v0-2-1.rst +++ b/doc/whatsnew/v0-2-1.rst @@ -10,5 +10,3 @@ Changes * Added MV grid ID to logging output `#309 `_ * Added automatic link checking `#297 `_ * Bug fix `#346 `_ -* Added method to scale timeseries `#353 `_ -* Added method to aggregate lv grid buses to station bus secondary side `#353 `_ diff --git a/doc/whatsnew/v0-3-0.rst b/doc/whatsnew/v0-3-0.rst index d1a2dc27a..e45a2e5df 100644 --- a/doc/whatsnew/v0-3-0.rst +++ b/doc/whatsnew/v0-3-0.rst @@ -17,3 +17,6 @@ Changes * Added integrity check for very short lines `#335 `_ * Refactoring of check_tech_constraints functions `#290 `_ * Add background map to plots `#346 `_ +* Added method to scale timeseries `#353 `_ +* Added method to iteratively reinforce a grid in case the power flow analysis does not always converge `#353 `_ +* Added method to aggregate LV grid buses to station bus secondary side `#353 `_ From 05e16a3cf2775d0d11a909b8f2113e0c776060b6 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 18 Apr 2023 14:02:26 +0200 Subject: [PATCH 267/355] Add docstring --- edisgo/network/timeseries.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index c97df38fc..5df25fd2f 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -2203,6 +2203,23 @@ def resample(self, method: str = "ffill", freq: str | pd.Timedelta = "15min"): def scale_timeseries( self, p_scaling_factor: float = 1.0, q_scaling_factor: float = 1.0 ): + """ + Scales component time series by given factors. + + The changes are directly applied to the TimeSeries object. + + Parameters + ----------- + p_scaling_factor : float + Scaling factor to use for active power time series. Values between 0 and 1 + will scale down the time series and values above 1 will scale the + timeseries up. Default: 1. + q_scaling_factor : float + Scaling factor to use for reactive power time series. Values between 0 and 1 + will scale down the time series and values above 1 will scale the + timeseries up. Default: 1. + + """ attributes_type = ["generators", "loads", "storage_units"] power_types = { "active_power": p_scaling_factor, From 96e9652b9492dca84a26cb3fb462c69da34534ed Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 18 Apr 2023 14:17:42 +0200 Subject: [PATCH 268/355] Adapt aggregation function --- edisgo/network/topology.py | 16 +++++++++------- tests/network/test_topology.py | 20 ++++++++++++++------ 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 8b2738110..366850954 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -3077,15 +3077,20 @@ def check_integrity(self): f"optimisation." ) - def aggregate_lv_grid_buses_on_station(self, lv_grid_id: int | str) -> None: + def aggregate_lv_grid_at_station(self, lv_grid_id: int | str) -> None: """ - Aggregates all lv grid buses on secondary station side bus. Drop all lines of - lv grid and replaces bus names in "loads_df", "storages_df", - "charging_points_df" and "storages_df". + Aggregates all LV grid components to secondary side of the grid's station. + + All lines of the LV grid are dropped, as well as all buses except the station's + secondary side bus. Buses, the loads, generators and storage units are connected + to are changed to the station's secondary side bus. The changes are directly + applied to the Topology object. Parameters ---------- lv_grid_id : int or str + ID of the LV grid to aggregate. + """ lv_grid = self.get_lv_grid(name=lv_grid_id) lines_to_drop = lv_grid.lines_df.index.to_list() @@ -3100,9 +3105,6 @@ def aggregate_lv_grid_buses_on_station(self, lv_grid_id: int | str) -> None: self.generators_df.loc[ self.generators_df.bus.isin(buses_to_drop), "bus" ] = station_bus - self.charging_points_df.loc[ - self.charging_points_df.bus.isin(buses_to_drop), "bus" - ] = station_bus self.storage_units_df.loc[ self.storage_units_df.bus.isin(buses_to_drop), "bus" ] = station_bus diff --git a/tests/network/test_topology.py b/tests/network/test_topology.py index 570c024e8..2eed4c1c0 100644 --- a/tests/network/test_topology.py +++ b/tests/network/test_topology.py @@ -870,15 +870,23 @@ def test_to_csv(self): shutil.rmtree(dir) - def test_aggregate_lv_grid_buses_on_station(self): - """Test method aggregate_lv_grid_buses_on_station""" + def test_aggregate_lv_grid_at_station(self, caplog): + """Test method aggregate_lv_grid_at_station""" - lv_grid_id = str(list(self.topology.mv_grid.lv_grids)[1]) + lv_grid_id = 1 topology_obj = copy.deepcopy(self.topology) - topology_obj.aggregate_lv_grid_buses_on_station(lv_grid_id=lv_grid_id) + lv_grid_orig = self.topology.get_lv_grid(lv_grid_id) + topology_obj.aggregate_lv_grid_at_station(lv_grid_id=lv_grid_id) + lv_grid = topology_obj.get_lv_grid(lv_grid_id) - assert list(self.topology.mv_grid.lv_grids)[1].buses_df.shape[0] == 15 - assert list(topology_obj.mv_grid.lv_grids)[1].buses_df.shape[0] == 1 + assert lv_grid_orig.buses_df.shape[0] == 15 + assert lv_grid.buses_df.shape[0] == 1 + + with caplog.at_level(logging.WARNING): + topology_obj.check_integrity() + assert "which are not defined" not in caplog.text + assert "The following buses are isolated" not in caplog.text + assert "The network has isolated nodes or edges." not in caplog.text class TestTopologyWithEdisgoObject: From 4ba61499aab0ef618712e8a5c58633571ee7406c Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 18 Apr 2023 22:09:01 +0200 Subject: [PATCH 269/355] Adapt check_tech_constraint functions to check only single LV grid --- edisgo/flex_opt/check_tech_constraints.py | 80 +++++++++++++------ tests/flex_opt/test_check_tech_constraints.py | 49 +++++++++++- 2 files changed, 102 insertions(+), 27 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index e5366c38f..6fe9f7528 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -58,7 +58,7 @@ def mv_line_max_relative_overload(edisgo_obj, n_minus_one=False): return crit_lines -def lv_line_max_relative_overload(edisgo_obj, n_minus_one=False): +def lv_line_max_relative_overload(edisgo_obj, n_minus_one=False, lv_grid_id=None): """ Returns time step and value of most severe overloading of lines in LV networks. @@ -70,6 +70,9 @@ def lv_line_max_relative_overload(edisgo_obj, n_minus_one=False): for more information). Currently, n-1 security cannot be handled correctly, wherefore the case where this parameter is set to True will lead to an error being raised. + lv_grid_id : str or int or None + If None, checks overloading for all LV lines. Otherwise, only lines in given + LV grid are checked. Default: None. Returns ------- @@ -93,7 +96,7 @@ def lv_line_max_relative_overload(edisgo_obj, n_minus_one=False): """ crit_lines = _line_max_relative_overload( - edisgo_obj, voltage_level="lv", n_minus_one=n_minus_one + edisgo_obj, voltage_level="lv", n_minus_one=n_minus_one, lv_grid_id=lv_grid_id ) if not crit_lines.empty: @@ -108,7 +111,9 @@ def lv_line_max_relative_overload(edisgo_obj, n_minus_one=False): return crit_lines -def _line_max_relative_overload(edisgo_obj, voltage_level, n_minus_one=False): +def _line_max_relative_overload( + edisgo_obj, voltage_level, n_minus_one=False, lv_grid_id=None +): """ Returns time step and value of most severe overloading of lines. @@ -116,11 +121,14 @@ def _line_max_relative_overload(edisgo_obj, voltage_level, n_minus_one=False): ---------- edisgo_obj : :class:`~.EDisGo` voltage_level : str - Voltage level, over-loading is checked for. Possible options are - 'mv' or 'lv'. + Voltage level, over-loading is checked for. Possible options are 'mv' or 'lv'. n_minus_one : bool Determines which allowed load factors to use. See :py:attr:`~lines_allowed_load` for more information. + lv_grid_id : str or int or None + This parameter is only used in case `voltage_level` is "lv". + If None, checks overloading for all LV lines. Otherwise, only lines in given + LV grid are checked. Default: None. Returns ------- @@ -145,9 +153,13 @@ def _line_max_relative_overload(edisgo_obj, voltage_level, n_minus_one=False): # get lines in voltage level mv_grid = edisgo_obj.topology.mv_grid if voltage_level == "lv": - lines = edisgo_obj.topology.lines_df[ - ~edisgo_obj.topology.lines_df.index.isin(mv_grid.lines_df.index) - ].index + if lv_grid_id is None: + lines = edisgo_obj.topology.lines_df[ + ~edisgo_obj.topology.lines_df.index.isin(mv_grid.lines_df.index) + ].index + else: + lv_grid = edisgo_obj.topology.get_lv_grid(lv_grid_id) + lines = lv_grid.lines_df.index elif voltage_level == "mv": lines = mv_grid.lines_df.index else: @@ -401,18 +413,16 @@ def hv_mv_station_max_overload(edisgo_obj): return crit_stations -def mv_lv_station_max_overload(edisgo_obj, **kwargs): +def mv_lv_station_max_overload(edisgo_obj, lv_grid_id=None): """ Checks for over-loading of MV/LV stations. Parameters ---------- edisgo_obj : :class:`~.EDisGo` - - Other Parameters - ----------------- - lv_grid_id : str or int - LV grid id to specify the grid to check, if mode is "lv". + lv_grid_id : str or int or None + If None, checks overloading for all MV/LV stations. Otherwise, only station + in given LV grid is checked. Default: None. Returns ------- @@ -432,9 +442,13 @@ def mv_lv_station_max_overload(edisgo_obj, **kwargs): section 'grid_expansion_load_factors'. """ - crit_stations = pd.DataFrame(dtype=float) - for lv_grid in edisgo_obj.topology.lv_grids: + + if lv_grid_id is not None: + lv_grids = [edisgo_obj.topology.get_lv_grid(lv_grid_id)] + else: + lv_grids = list(edisgo_obj.topology.lv_grids) + for lv_grid in lv_grids: crit_stations = pd.concat( [ crit_stations, @@ -734,7 +748,7 @@ def components_relative_load(edisgo_obj, n_minus_one=False): return pd.concat([lines_rel_load, stations_rel_load], axis=1) -def voltage_issues(edisgo_obj, voltage_level, split_voltage_band=True): +def voltage_issues(edisgo_obj, voltage_level, split_voltage_band=True, lv_grid_id=None): """ Gives buses with voltage issues and their maximum voltage deviation in p.u.. @@ -751,6 +765,10 @@ def voltage_issues(edisgo_obj, voltage_level, split_voltage_band=True): voltage levels MV, MV/LV and LV according to config values set in section `grid_expansion_allowed_voltage_deviations`. If False, the same voltage limits are used for all voltage levels. Default: True. + lv_grid_id : str or int or None + This parameter is only used in case `voltage_level` is "mv_lv" or "lv". + If None, checks voltage issues for all LV buses. Otherwise, only buses + in given LV grid are checked. Default: None. Returns ------- @@ -773,18 +791,30 @@ def voltage_issues(edisgo_obj, voltage_level, split_voltage_band=True): 'grid_expansion_allowed_voltage_deviations'. """ - station_buses = edisgo_obj.topology.transformers_df.bus1.unique() + if voltage_level: if voltage_level == "mv_lv": - buses = station_buses + if lv_grid_id is None: + buses = edisgo_obj.topology.transformers_df.bus1.unique() + else: + lv_grid = edisgo_obj.topology.get_lv_grid(lv_grid_id) + buses = lv_grid.transformers_df.bus1.unique() elif voltage_level == "lv": - buses = edisgo_obj.topology.buses_df.index - # drop MV buses and buses of stations secondary sides - buses = buses.drop( - edisgo_obj.topology.mv_grid.buses_df.index.append( - pd.Index(station_buses) + if lv_grid_id is None: + buses = edisgo_obj.topology.buses_df.index + # drop MV buses and buses of stations secondary sides + station_buses = edisgo_obj.topology.transformers_df.bus1.unique() + buses = buses.drop( + edisgo_obj.topology.mv_grid.buses_df.index.append( + pd.Index(station_buses) + ) ) - ) + else: + lv_grid = edisgo_obj.topology.get_lv_grid(lv_grid_id) + buses = lv_grid.buses_df.index + # drop buses of station's secondary side + station_buses = lv_grid.transformers_df.bus1.unique() + buses = buses.drop(station_buses) elif voltage_level == "mv": buses = edisgo_obj.topology.mv_grid.buses_df.index else: diff --git a/tests/flex_opt/test_check_tech_constraints.py b/tests/flex_opt/test_check_tech_constraints.py index 93d98f0de..c3ec7ea4e 100644 --- a/tests/flex_opt/test_check_tech_constraints.py +++ b/tests/flex_opt/test_check_tech_constraints.py @@ -51,6 +51,22 @@ def test_lv_line_max_relative_overload(self): ) assert df.at["Line_50000002", "time_index"] == self.timesteps[0] + # test for single LV grid + lv_grid_id = 5 + self.edisgo.analyze(mode="lv", lv_grid_id=lv_grid_id) + df = check_tech_constraints.lv_line_max_relative_overload( + self.edisgo, lv_grid_id=lv_grid_id + ) + # check shape of dataframe + assert (1, 3) == df.shape + # check relative overload of line + assert np.isclose( + df.at["Line_50000002", "max_rel_overload"], + self.edisgo.results.s_res.at[self.timesteps[0], "Line_50000002"] + / 0.08521689973238901, + ) + assert df.at["Line_50000002", "time_index"] == self.timesteps[0] + def test_lines_allowed_load(self): # check with default value (all lines) @@ -177,6 +193,14 @@ def test_mv_lv_station_max_overload(self): ) assert df.at["LVGrid_1_station", "time_index"] == self.timesteps[0] + # test for single LV grid + lv_grid_id = 1 + df = check_tech_constraints.mv_lv_station_max_overload( + self.edisgo, lv_grid_id=lv_grid_id + ) + assert (1, 3) == df.shape + assert df.at["LVGrid_1_station", "time_index"] == self.timesteps[0] + def test__station_load(self): # check LV grid grid = self.edisgo.topology.get_lv_grid(4) @@ -466,8 +490,18 @@ def test_voltage_issues(self): 0.08, ) - # ########################## check mv_lv mode ############################### + # ################ check with single LV grid + lv_grid_id = 1 + # uses same voltage issues as created above + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, + voltage_level="lv", + split_voltage_band=False, + lv_grid_id=lv_grid_id, + ) + assert len(voltage_issues) == 0 + # ########################## check mv_lv mode ############################### # ############## check that voltage issue in station of LVGrid_6 is detected # uses same voltage issues as created above voltage_issues = check_tech_constraints.voltage_issues( @@ -490,7 +524,18 @@ def test_voltage_issues(self): 0.04, ) - # ########################## check mv_lv mode ############################### + # ################ check with single LV grid + lv_grid_id = 1 + # uses same voltage issues as created above + voltage_issues = check_tech_constraints.voltage_issues( + self.edisgo, + voltage_level="mv_lv", + split_voltage_band=False, + lv_grid_id=lv_grid_id, + ) + assert len(voltage_issues) == 0 + + # ########################## check mode None ############################### # ################ check with voltage issues and default values voltage_issues = check_tech_constraints.voltage_issues( From 4b2a861609604d2f81d2735e48a77ee5e31fe47c Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 18 Apr 2023 22:34:02 +0200 Subject: [PATCH 270/355] Minor changes to reinforce --- edisgo/edisgo.py | 39 ++++++++++++++------------------------- 1 file changed, 14 insertions(+), 25 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 325b31327..8bed3e304 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -946,12 +946,10 @@ def analyze( Specifies the minimum fraction that power values are set to when using `troubleshooting_mode` 'iteration'. Must be between 0 and 1. Default: 0.1. - range_num : int, optional Specifies the number of fraction samples to generate when using `troubleshooting_mode` 'iteration'. Must be non-negative. Default: 10. - scale_timeseries : float or None, optional If a value is given, the timeseries in the pypsa object are scaled with this factor (values between 0 and 1 will scale down the time series and @@ -1121,7 +1119,7 @@ def reinforce( timeindex_worst_cases.index.str.contains("lv") ] ) - # Run everytime the analyze-method at the end, to get a power flow for all + # Run the analyze-method at the end, to get a power flow for all # timesteps for reinforced components run_analyze_at_the_end = True if mode is None: @@ -1148,29 +1146,20 @@ def reinforce( for setting in setting_list: logger.info(f"Run the following reinforcement: {setting=}") if not catch_convergence_problems: - reinforce_grid( - edisgo_obj, - max_while_iterations=max_while_iterations, - copy_grid=False, - timesteps_pfa=setting["timesteps_pfa"], - split_voltage_band=split_voltage_band, - mode=setting["mode"], - without_generator_import=without_generator_import, - n_minus_one=n_minus_one, - **kwargs, - ) + func = reinforce_grid else: - catch_convergence_reinforce_grid( - edisgo_obj, - max_while_iterations=max_while_iterations, - copy_grid=False, - timesteps_pfa=setting["timesteps_pfa"], - split_voltage_band=split_voltage_band, - mode=setting["mode"], - without_generator_import=without_generator_import, - n_minus_one=n_minus_one, - **kwargs, - ) + func = catch_convergence_reinforce_grid + func( + edisgo_obj, + max_while_iterations=max_while_iterations, + copy_grid=False, + timesteps_pfa=setting["timesteps_pfa"], + split_voltage_band=split_voltage_band, + mode=setting["mode"], + without_generator_import=without_generator_import, + n_minus_one=n_minus_one, + **kwargs, + ) if run_analyze_at_the_end: edisgo_obj.analyze() From c2a2ec09e72c753b8ce6e78d68266249637c636d Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 10:31:01 +0200 Subject: [PATCH 271/355] Adapt docstring of reinforce --- edisgo/edisgo.py | 95 ++++++++++++++++++++++++++----- edisgo/flex_opt/reinforce_grid.py | 64 +++++---------------- 2 files changed, 97 insertions(+), 62 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 8bed3e304..30d1fab03 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1074,27 +1074,93 @@ def reinforce( Reinforces the network and calculates network expansion costs. If the :attr:`edisgo.network.timeseries.TimeSeries.is_worst_case` is - True input for `timesteps_pfa` and `mode` are overwritten and therefore - ignored. + True input for `timesteps_pfa` is overwritten and therefore ignored. - See :func:`edisgo.flex_opt.reinforce_grid.reinforce_grid` for more - information on input parameters and methodology. + See :ref:`features-in-detail` for more information on how network + reinforcement is conducted. - Other Parameters - ----------------- - is_worst_case : bool - Is used to overwrite the return value from - :attr:`edisgo.network.timeseries.TimeSeries.is_worst_case`. If True - reinforcement is calculated for worst-case MV and LV cases separately. + Parameters + ----------- + timesteps_pfa : str or \ + :pandas:`pandas.DatetimeIndex` or \ + :pandas:`pandas.Timestamp` + timesteps_pfa specifies for which time steps power flow analysis is + conducted and therefore which time steps to consider when checking + for over-loading and over-voltage issues. + It defaults to None in which case all timesteps in + :attr:`~.network.timeseries.TimeSeries.timeindex` are used. + Possible options are: + * None + Time steps in :attr:`~.network.timeseries.TimeSeries.timeindex` are used. + * 'snapshot_analysis' + Reinforcement is conducted for two worst-case snapshots. See + :meth:`edisgo.tools.tools.select_worstcase_snapshots()` for further + explanation on how worst-case snapshots are chosen. + Note: If you have large time series, choosing this option will save + calculation time since power flow analysis is only conducted for two + time steps. If your time series already represents the worst-case, + keep the default value of None because finding the worst-case + snapshots takes some time. + * :pandas:`pandas.DatetimeIndex` or \ + :pandas:`pandas.Timestamp` + Use this option to explicitly choose which time steps to consider. + + copy_grid : bool + If True, reinforcement is conducted on a copied grid and discarded. + Default: False. + max_while_iterations : int + Maximum number of times each while loop is conducted. Default: 20. + split_voltage_band : bool + If True the allowed voltage band of +/-10 percent is allocated to the + different voltage levels MV, MV/LV and LV according to config values set + in section `grid_expansion_allowed_voltage_deviations`. If False, the same + voltage limits are used for all voltage levels. Be aware that this does + currently not work correctly. Default: True. + mode : str + Determines network levels reinforcement is conducted for. Specify + + * None to reinforce MV and LV network levels. None is the default. + * 'mv' to reinforce MV level only, neglecting MV/LV stations, + and LV network topology. LV load and generation is aggregated per + LV network and directly connected to the primary side of the + respective MV/LV station. + * 'mvlv' to reinforce MV network level only, including MV/LV stations, + and neglecting LV network topology. LV load and generation is + aggregated per LV network and directly connected to the secondary + side of the respective MV/LV station. + This mode can currently not be chosen in case `is_worst_case` is True. + * 'lv' to reinforce LV networks including MV/LV stations. + without_generator_import : bool + If True, excludes lines that were added in the generator import to connect + new generators from calculation of network expansion costs. Default: False. + n_minus_one : bool + Determines whether n-1 security should be checked. Currently, n-1 security + cannot be handled correctly, wherefore the case where this parameter is set + to True will lead to an error being raised. Default: False. catch_convergence_problems : bool Uses reinforcement strategy to reinforce not converging grid. Reinforces first with only converging timesteps. Reinforce again with at start not converging timesteps. If still not converging, scale timeseries. Default: False - lv_grid_id : str or int - LV grid id to specify the grid to check, if mode is "lv". + Other Parameters + ----------------- + is_worst_case : bool + Is used to overwrite the return value from + :attr:`edisgo.network.timeseries.TimeSeries.is_worst_case`. If True, + reinforcement is calculated for worst-case MV and LV cases separately. + lv_grid_id : str or int or None + LV grid id to specify the grid to check, if mode is "lv". If no grid is + specified, all LV grids are checked. In that case, the power flow analysis + is conducted including the MV grid, in order to check loading and voltage + drop/rise of MV/LV stations. + + Returns + -------- + :class:`~.network.results.Results` + Returns the Results object holding network expansion costs, equipment + changes, etc. """ if copy_grid: @@ -1132,7 +1198,10 @@ def reinforce( {"mode": "mv", "timesteps_pfa": timesteps_mv}, ] elif mode == "mvlv": - setting_list = [{"mode": "mvlv", "timesteps_pfa": timesteps_mv}] + raise ValueError( + "The mode 'mvlv' is currently not implemented when using " + "worst cases. Choose None, 'mv' or 'lv' instead." + ) elif mode == "lv": setting_list = [{"mode": "lv", "timesteps_pfa": timesteps_lv}] diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index ebe055d42..6b78baced 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -44,34 +44,12 @@ def reinforce_grid( :pandas:`pandas.DatetimeIndex` or \ :pandas:`pandas.Timestamp` timesteps_pfa specifies for which time steps power flow analysis is - conducted and therefore which time steps to consider when checking - for over-loading and over-voltage issues. - It defaults to None in which case all timesteps in - timeseries.timeindex (see :class:`~.network.timeseries.TimeSeries`) are - used. - Possible options are: - - * None - Time steps in timeseries.timeindex (see - :class:`~.network.timeseries.TimeSeries`) are used. - * 'snapshot_analysis' - Reinforcement is conducted for two worst-case snapshots. See - :meth:`edisgo.tools.tools.select_worstcase_snapshots()` for further - explanation on how worst-case snapshots are chosen. - Note: If you have large time series choosing this option will save - calculation time since power flow analysis is only conducted for two - time steps. If your time series already represents the worst-case - keep the default value of None because finding the worst-case - snapshots takes some time. - * :pandas:`pandas.DatetimeIndex` or \ - :pandas:`pandas.Timestamp` - Use this option to explicitly choose which time steps to consider. - + conducted. See parameter `timesteps_pfa` in function :attr:`~.EDisGo.reinforce` + for more information. copy_grid : bool - If True reinforcement is conducted on a copied grid and discarded. - Default: False. + If True, reinforcement is conducted on a copied grid. Default: False. max_while_iterations : int - Maximum number of times each while loop is conducted. + Maximum number of times each while loop is conducted. Default: 20. split_voltage_band : bool If True the allowed voltage band of +/-10 percent is allocated to the different voltage levels MV, MV/LV and LV according to config values set in section @@ -80,31 +58,21 @@ def reinforce_grid( correctly. Default: True. mode : str - Determines network levels reinforcement is conducted for. Specify - - * None to reinforce MV and LV network levels. None is the default. - * 'mv' to reinforce MV network level only, neglecting MV/LV stations, - and LV network topology. LV load and generation is aggregated per - LV network and directly connected to the primary side of the - respective MV/LV station. - * 'mvlv' to reinforce MV network level only, including MV/LV stations, - and neglecting LV network topology. LV load and generation is - aggregated per LV network and directly connected to the secondary - side of the respective MV/LV station. - * 'lv' to reinforce LV networks including MV/LV stations. + Determines network levels reinforcement is conducted for. See parameter + `mode` in function :attr:`~.EDisGo.reinforce` for more information. without_generator_import : bool - If True excludes lines that were added in the generator import to - connect new generators to the topology from calculation of topology expansion - costs. Default: False. + If True, excludes lines that were added in the generator import to connect + new generators from calculation of network expansion costs. Default: False. n_minus_one : bool Determines whether n-1 security should be checked. Currently, n-1 security cannot be handled correctly, wherefore the case where this parameter is set to - True will lead to an error being raised. + True will lead to an error being raised. Default: False. Other Parameters ----------------- - lv_grid_id : str or int - LV grid id to specify the grid to check, if mode is "lv". + lv_grid_id : str or int or None + LV grid id to specify the grid to check, if mode is "lv". See parameter + `lv_grid_id` in function :attr:`~.EDisGo.reinforce` for more information. Returns ------- @@ -176,8 +144,6 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): else: edisgo_reinforce = edisgo - logger.info("Start reinforcement.") - if timesteps_pfa is not None: if isinstance(timesteps_pfa, str) and timesteps_pfa == "snapshot_analysis": snapshots = tools.select_worstcase_snapshots(edisgo_reinforce) @@ -679,13 +645,13 @@ def reinforce(): ) converged = True logger.info( - f"Reinforcement succeeded for {set_scaling_factor=} " f"at {iteration=}" + f"Reinforcement succeeded for {set_scaling_factor=} at {iteration=}" ) except ValueError: results = edisgo.results converged = False logger.info( - f"Reinforcement failed for {set_scaling_factor=} " f"at {iteration=}" + f"Reinforcement failed for {set_scaling_factor=} at {iteration=}" ) return converged, results @@ -704,7 +670,7 @@ def reinforce(): converged, results = reinforce() if converged is False: - logger.info("Initial reinforcement doesn't converged.") + logger.info("Initial reinforcement doesn't converge.") fully_converged = False else: logger.info("Initial reinforcement converged.") From a775b6400d9d75da2f17eb3b94e85688c454bbde Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 11:11:39 +0200 Subject: [PATCH 272/355] Hand over LV grid ID to check functions --- edisgo/flex_opt/reinforce_grid.py | 79 +++++++++++++++++-------------- 1 file changed, 44 insertions(+), 35 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 6b78baced..705f05d9a 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -131,7 +131,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # give warning in case split_voltage_band is set to False if split_voltage_band is False: logger.warning( - "You called the 'reinforce_grid' grid function with option " + "You called the 'reinforce_grid' function with option " "'split_voltage_band' = False. Be aware that this does " "currently not work correctly and might lead to infeasible " "grid reinforcement." @@ -168,42 +168,43 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) iteration_step = 1 - if mode == "lv" and kwargs.get("lv_grid_id", None): + lv_grid_id = kwargs.get("lv_grid_id", None) + if mode == "lv" and lv_grid_id: analyze_mode = "lv" elif mode == "lv": analyze_mode = None else: analyze_mode = mode - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa, **kwargs) + edisgo_reinforce.analyze( + mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + ) # REINFORCE OVERLOADED TRANSFORMERS AND LINES logger.debug("==> Check station load.") - overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" else checks.hv_mv_station_max_overload(edisgo_reinforce) ) - if (kwargs.get("lv_grid_id", None)) or (mode == "mv"): + if lv_grid_id or (mode == "mv"): overloaded_lv_stations = pd.DataFrame(dtype=float) else: - overloaded_lv_stations = checks.mv_lv_station_max_overload( - edisgo_reinforce, **kwargs - ) - logger.debug("==> Check line load.") + overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) + logger.debug("==> Check line load.") crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" else checks.mv_line_max_relative_overload(edisgo_reinforce) ) - if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_relative_overload(edisgo_reinforce), + checks.lv_line_max_relative_overload( + edisgo_reinforce, lv_grid_id=lv_grid_id + ), ] ) @@ -247,7 +248,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-loading problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa, **kwargs) + edisgo_reinforce.analyze( + mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + ) logger.debug("==> Recheck station load.") overloaded_mv_station = ( @@ -255,23 +258,22 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if mode == "lv" else checks.hv_mv_station_max_overload(edisgo_reinforce) ) - - if mode != "mv" and (not kwargs.get("lv_grid_id", None)): + if mode != "mv" and (not lv_grid_id): overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") - crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" else checks.mv_line_max_relative_overload(edisgo_reinforce) ) - if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_relative_overload(edisgo_reinforce), + checks.lv_line_max_relative_overload( + edisgo_reinforce, lv_grid_id=lv_grid_id + ), ] ) @@ -331,7 +333,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa, **kwargs) + edisgo_reinforce.analyze( + mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + ) logger.debug("==> Recheck voltage in MV topology.") crit_nodes = checks.voltage_issues( @@ -364,7 +368,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if mode != "mv": logger.debug("==> Check voltage at secondary side of LV stations.") - if kwargs.get("lv_grid_id", None): + if lv_grid_id: crit_stations = {} else: crit_stations = checks.voltage_issues( @@ -388,7 +392,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") edisgo_reinforce.analyze( - mode=analyze_mode, timesteps=timesteps_pfa, **kwargs + mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id ) logger.debug("==> Recheck voltage at secondary side of LV stations.") @@ -424,7 +428,10 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if not mode or mode == "lv": logger.debug("==> Check voltage in LV grids.") crit_nodes = checks.voltage_issues( - edisgo_reinforce, voltage_level="lv", split_voltage_band=split_voltage_band + edisgo_reinforce, + voltage_level="lv", + split_voltage_band=split_voltage_band, + lv_grid_id=lv_grid_id, ) while_counter = 0 @@ -444,7 +451,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # and check if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") edisgo_reinforce.analyze( - mode=analyze_mode, timesteps=timesteps_pfa, **kwargs + mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id ) logger.debug("==> Recheck voltage in LV grids.") @@ -452,6 +459,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): edisgo_reinforce, voltage_level="lv", split_voltage_band=split_voltage_band, + lv_grid_id=lv_grid_id, ) iteration_step += 1 @@ -478,29 +486,29 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # RECHECK FOR OVERLOADED TRANSFORMERS AND LINES logger.debug("==> Recheck station load.") - overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" else checks.hv_mv_station_max_overload(edisgo_reinforce) ) - - if mode != "mv" and (not kwargs.get("lv_grid_id", None)): + if (lv_grid_id) or (mode == "mv"): + overloaded_lv_stations = pd.DataFrame(dtype=float) + else: overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") - crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" else checks.mv_line_max_relative_overload(edisgo_reinforce) ) - if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_relative_overload(edisgo_reinforce), + checks.lv_line_max_relative_overload( + edisgo_reinforce, lv_grid_id=lv_grid_id + ), ] ) @@ -544,7 +552,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-loading problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze(mode=analyze_mode, timesteps=timesteps_pfa, **kwargs) + edisgo_reinforce.analyze( + mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + ) logger.debug("==> Recheck station load.") overloaded_mv_station = ( @@ -552,23 +562,22 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if mode == "lv" else checks.hv_mv_station_max_overload(edisgo_reinforce) ) - - if mode != "mv": + if mode != "mv" and (not lv_grid_id): overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) logger.debug("==> Recheck line load.") - crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" else checks.mv_line_max_relative_overload(edisgo_reinforce) ) - if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_relative_overload(edisgo_reinforce), + checks.lv_line_max_relative_overload( + edisgo_reinforce, lv_grid_id=lv_grid_id + ), ] ) @@ -829,7 +838,7 @@ def enhanced_reinforce_wrapper( f"Aggregate all nodes to station bus in {lv_grid=}." ) try: - edisgo_obj.topology.aggregate_lv_grid_buses_on_station( + edisgo_obj.topology.aggregate_lv_grid_at_station( lv_grid_id=lv_grid.id ) logger.info( From ba6d7f84fd1124a157589d0a0f5defe8096c07d3 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 17:22:42 +0200 Subject: [PATCH 273/355] Remove copy_grid parameter and add scale_timeseries to analyze --- edisgo/edisgo.py | 7 +- edisgo/flex_opt/reinforce_grid.py | 177 ++++++++++++++++-------------- 2 files changed, 96 insertions(+), 88 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 30d1fab03..8d149cd75 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -926,7 +926,7 @@ def analyze( Default: True. troubleshooting_mode : str or None - Two optional troubleshooting methods in case of nonconvergence of nonlinear + Two optional troubleshooting methods in case of non-convergence of nonlinear power flow (cf. [1]) * None (default) @@ -1130,7 +1130,9 @@ def reinforce( aggregated per LV network and directly connected to the secondary side of the respective MV/LV station. This mode can currently not be chosen in case `is_worst_case` is True. - * 'lv' to reinforce LV networks including MV/LV stations. + * 'lv' to reinforce LV networks. In case an LV grid is specified through + parameter `lv_grid_id`, the grid's MV/LV station is not included. In case + no LV grid ID is given, all MV/LV stations are included. without_generator_import : bool If True, excludes lines that were added in the generator import to connect new generators from calculation of network expansion costs. Default: False. @@ -1221,7 +1223,6 @@ def reinforce( func( edisgo_obj, max_while_iterations=max_while_iterations, - copy_grid=False, timesteps_pfa=setting["timesteps_pfa"], split_voltage_band=split_voltage_band, mode=setting["mode"], diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 705f05d9a..23ad91b61 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -23,7 +23,6 @@ def reinforce_grid( edisgo: EDisGo, timesteps_pfa: str | pd.DatetimeIndex | pd.Timestamp | None = None, - copy_grid: bool = False, max_while_iterations: int = 20, split_voltage_band: bool = True, mode: str | None = None, @@ -39,15 +38,13 @@ def reinforce_grid( Parameters ---------- edisgo : :class:`~.EDisGo` - The eDisGo API object + The eDisGo object grid reinforcement is conducted on. timesteps_pfa : str or \ :pandas:`pandas.DatetimeIndex` or \ :pandas:`pandas.Timestamp` timesteps_pfa specifies for which time steps power flow analysis is conducted. See parameter `timesteps_pfa` in function :attr:`~.EDisGo.reinforce` for more information. - copy_grid : bool - If True, reinforcement is conducted on a copied grid. Default: False. max_while_iterations : int Maximum number of times each while loop is conducted. Default: 20. split_voltage_band : bool @@ -73,6 +70,12 @@ def reinforce_grid( lv_grid_id : str or int or None LV grid id to specify the grid to check, if mode is "lv". See parameter `lv_grid_id` in function :attr:`~.EDisGo.reinforce` for more information. + scale_timeseries : float or None + If a value is given, the timeseries used in the power flow analysis are scaled + with this factor (values between 0 and 1 will scale down the time series and + values above 1 will scale the timeseries up). Downscaling of time series + can be used to gradually reinforce the grid. If None, timeseries are not scaled. + Default: None. Returns ------- @@ -88,14 +91,14 @@ def reinforce_grid( """ def _add_lines_changes_to_equipment_changes(): - edisgo_reinforce.results.equipment_changes = pd.concat( + edisgo.results.equipment_changes = pd.concat( [ - edisgo_reinforce.results.equipment_changes, + edisgo.results.equipment_changes, pd.DataFrame( { "iteration_step": [iteration_step] * len(lines_changes), "change": ["changed"] * len(lines_changes), - "equipment": edisgo_reinforce.topology.lines_df.loc[ + "equipment": edisgo.topology.lines_df.loc[ lines_changes.keys(), "type_info" ].values, "quantity": [_ for _ in lines_changes.values()], @@ -106,7 +109,7 @@ def _add_lines_changes_to_equipment_changes(): ) def _add_transformer_changes_to_equipment_changes(mode: str | None): - df_list = [edisgo_reinforce.results.equipment_changes] + df_list = [edisgo.results.equipment_changes] df_list.extend( pd.DataFrame( { @@ -120,7 +123,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): for station, transformer_list in transformer_changes[mode].items() ) - edisgo_reinforce.results.equipment_changes = pd.concat(df_list) + edisgo.results.equipment_changes = pd.concat(df_list) if n_minus_one is True: raise NotImplementedError("n-1 security can currently not be checked.") @@ -137,16 +140,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): "grid reinforcement." ) - # in case reinforcement needs to be conducted on a copied graph the - # edisgo object is deep copied - if copy_grid is True: - edisgo_reinforce = copy.deepcopy(edisgo) - else: - edisgo_reinforce = edisgo - if timesteps_pfa is not None: if isinstance(timesteps_pfa, str) and timesteps_pfa == "snapshot_analysis": - snapshots = tools.select_worstcase_snapshots(edisgo_reinforce) + snapshots = tools.select_worstcase_snapshots(edisgo) # drop None values in case any of the two snapshots does not exist timesteps_pfa = pd.DatetimeIndex( data=[ @@ -169,6 +165,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): iteration_step = 1 lv_grid_id = kwargs.get("lv_grid_id", None) + scale_timeseries = kwargs.get("scale_timeseries", None) if mode == "lv" and lv_grid_id: analyze_mode = "lv" elif mode == "lv": @@ -176,8 +173,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): else: analyze_mode = mode - edisgo_reinforce.analyze( - mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + edisgo.analyze( + mode=analyze_mode, + timesteps=timesteps_pfa, + lv_grid_id=lv_grid_id, + scale_timeseries=scale_timeseries, ) # REINFORCE OVERLOADED TRANSFORMERS AND LINES @@ -185,26 +185,24 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_max_overload(edisgo_reinforce) + else checks.hv_mv_station_max_overload(edisgo) ) if lv_grid_id or (mode == "mv"): overloaded_lv_stations = pd.DataFrame(dtype=float) else: - overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo) logger.debug("==> Check line load.") crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_max_relative_overload(edisgo_reinforce) + else checks.mv_line_max_relative_overload(edisgo) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_relative_overload( - edisgo_reinforce, lv_grid_id=lv_grid_id - ), + checks.lv_line_max_relative_overload(edisgo, lv_grid_id=lv_grid_id), ] ) @@ -219,7 +217,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # reinforce substations transformer_changes = ( reinforce_measures.reinforce_hv_mv_station_overloading( - edisgo_reinforce, overloaded_mv_station + edisgo, overloaded_mv_station ) ) # write added and removed transformers to results.equipment_changes @@ -230,7 +228,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # reinforce distribution substations transformer_changes = ( reinforce_measures.reinforce_mv_lv_station_overloading( - edisgo_reinforce, overloaded_lv_stations + edisgo, overloaded_lv_stations ) ) # write added and removed transformers to results.equipment_changes @@ -240,7 +238,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if not crit_lines.empty: # reinforce lines lines_changes = reinforce_measures.reinforce_lines_overloading( - edisgo_reinforce, crit_lines + edisgo, crit_lines ) # write changed lines to results.equipment_changes _add_lines_changes_to_equipment_changes() @@ -248,32 +246,33 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-loading problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze( - mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + edisgo.analyze( + mode=analyze_mode, + timesteps=timesteps_pfa, + lv_grid_id=lv_grid_id, + scale_timeseries=scale_timeseries, ) logger.debug("==> Recheck station load.") overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_max_overload(edisgo_reinforce) + else checks.hv_mv_station_max_overload(edisgo) ) if mode != "mv" and (not lv_grid_id): - overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo) logger.debug("==> Recheck line load.") crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_max_relative_overload(edisgo_reinforce) + else checks.mv_line_max_relative_overload(edisgo) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_relative_overload( - edisgo_reinforce, lv_grid_id=lv_grid_id - ), + checks.lv_line_max_relative_overload(edisgo, lv_grid_id=lv_grid_id), ] ) @@ -287,9 +286,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): or not overloaded_mv_station.empty or not overloaded_lv_stations.empty ): - edisgo_reinforce.results.unresolved_issues = pd.concat( + edisgo.results.unresolved_issues = pd.concat( [ - edisgo_reinforce.results.unresolved_issues, + edisgo.results.unresolved_issues, crit_lines, overloaded_lv_stations, overloaded_mv_station, @@ -314,7 +313,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): pd.DataFrame() if mode == "lv" else checks.voltage_issues( - edisgo_reinforce, voltage_level="mv", split_voltage_band=split_voltage_band + edisgo, voltage_level="mv", split_voltage_band=split_voltage_band ) ) @@ -323,8 +322,8 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # reinforce lines lines_changes = reinforce_measures.reinforce_lines_voltage_issues( - edisgo_reinforce, - edisgo_reinforce.topology.mv_grid, + edisgo, + edisgo.topology.mv_grid, crit_nodes, ) # write changed lines to results.equipment_changes @@ -333,13 +332,16 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze( - mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + edisgo.analyze( + mode=analyze_mode, + timesteps=timesteps_pfa, + lv_grid_id=lv_grid_id, + scale_timeseries=scale_timeseries, ) logger.debug("==> Recheck voltage in MV topology.") crit_nodes = checks.voltage_issues( - edisgo_reinforce, voltage_level="mv", split_voltage_band=split_voltage_band + edisgo, voltage_level="mv", split_voltage_band=split_voltage_band ) iteration_step += 1 @@ -348,9 +350,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed if while_counter == max_while_iterations and crit_nodes.empty: - edisgo_reinforce.results.unresolved_issues = pd.concat( + edisgo.results.unresolved_issues = pd.concat( [ - edisgo_reinforce.results.unresolved_issues, + edisgo.results.unresolved_issues, pd.concat([_ for _ in crit_nodes.values()]), ] ) @@ -369,10 +371,10 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Check voltage at secondary side of LV stations.") if lv_grid_id: - crit_stations = {} + crit_stations = pd.DataFrame() else: crit_stations = checks.voltage_issues( - edisgo_reinforce, + edisgo, voltage_level="mv_lv", split_voltage_band=split_voltage_band, ) @@ -382,7 +384,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # reinforce distribution substations transformer_changes = ( reinforce_measures.reinforce_mv_lv_station_voltage_issues( - edisgo_reinforce, crit_stations + edisgo, crit_stations ) ) # write added transformers to results.equipment_changes @@ -391,13 +393,16 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and # check if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze( - mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + edisgo.analyze( + mode=analyze_mode, + timesteps=timesteps_pfa, + lv_grid_id=lv_grid_id, + scale_timeseries=scale_timeseries, ) logger.debug("==> Recheck voltage at secondary side of LV stations.") crit_stations = checks.voltage_issues( - edisgo_reinforce, + edisgo, voltage_level="mv_lv", split_voltage_band=split_voltage_band, ) @@ -408,9 +413,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed if while_counter == max_while_iterations and crit_stations.empty: - edisgo_reinforce.results.unresolved_issues = pd.concat( + edisgo.results.unresolved_issues = pd.concat( [ - edisgo_reinforce.results.unresolved_issues, + edisgo.results.unresolved_issues, pd.concat([_ for _ in crit_stations.values()]), ] ) @@ -428,7 +433,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if not mode or mode == "lv": logger.debug("==> Check voltage in LV grids.") crit_nodes = checks.voltage_issues( - edisgo_reinforce, + edisgo, voltage_level="lv", split_voltage_band=split_voltage_band, lv_grid_id=lv_grid_id, @@ -440,8 +445,8 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): for grid_id in crit_nodes.lv_grid_id.unique(): # reinforce lines lines_changes = reinforce_measures.reinforce_lines_voltage_issues( - edisgo_reinforce, - edisgo_reinforce.topology.get_lv_grid(int(grid_id)), + edisgo, + edisgo.topology.get_lv_grid(int(grid_id)), crit_nodes[crit_nodes.lv_grid_id == grid_id], ) # write changed lines to results.equipment_changes @@ -450,13 +455,16 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) # and check if all over-voltage problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze( - mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + edisgo.analyze( + mode=analyze_mode, + timesteps=timesteps_pfa, + lv_grid_id=lv_grid_id, + scale_timeseries=scale_timeseries, ) logger.debug("==> Recheck voltage in LV grids.") crit_nodes = checks.voltage_issues( - edisgo_reinforce, + edisgo, voltage_level="lv", split_voltage_band=split_voltage_band, lv_grid_id=lv_grid_id, @@ -468,9 +476,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # check if all voltage problems were solved after maximum number of # iterations allowed if while_counter == max_while_iterations and crit_nodes.empty: - edisgo_reinforce.results.unresolved_issues = pd.concat( + edisgo.results.unresolved_issues = pd.concat( [ - edisgo_reinforce.results.unresolved_issues, + edisgo.results.unresolved_issues, pd.concat([_ for _ in crit_nodes.values()]), ] ) @@ -489,26 +497,24 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_max_overload(edisgo_reinforce) + else checks.hv_mv_station_max_overload(edisgo) ) if (lv_grid_id) or (mode == "mv"): overloaded_lv_stations = pd.DataFrame(dtype=float) else: - overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo) logger.debug("==> Recheck line load.") crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_max_relative_overload(edisgo_reinforce) + else checks.mv_line_max_relative_overload(edisgo) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_relative_overload( - edisgo_reinforce, lv_grid_id=lv_grid_id - ), + checks.lv_line_max_relative_overload(edisgo, lv_grid_id=lv_grid_id), ] ) @@ -523,7 +529,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # reinforce substations transformer_changes = ( reinforce_measures.reinforce_hv_mv_station_overloading( - edisgo_reinforce, overloaded_mv_station + edisgo, overloaded_mv_station ) ) # write added and removed transformers to results.equipment_changes @@ -534,7 +540,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # reinforce substations transformer_changes = ( reinforce_measures.reinforce_mv_lv_station_overloading( - edisgo_reinforce, overloaded_lv_stations + edisgo, overloaded_lv_stations ) ) # write added and removed transformers to results.equipment_changes @@ -544,7 +550,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): if not crit_lines.empty: # reinforce lines lines_changes = reinforce_measures.reinforce_lines_overloading( - edisgo_reinforce, crit_lines + edisgo, crit_lines ) # write changed lines to results.equipment_changes _add_lines_changes_to_equipment_changes() @@ -552,32 +558,33 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # run power flow analysis again (after updating pypsa object) and check # if all over-loading problems were solved logger.debug("==> Run power flow analysis.") - edisgo_reinforce.analyze( - mode=analyze_mode, timesteps=timesteps_pfa, lv_grid_id=lv_grid_id + edisgo.analyze( + mode=analyze_mode, + timesteps=timesteps_pfa, + lv_grid_id=lv_grid_id, + scale_timeseries=scale_timeseries, ) logger.debug("==> Recheck station load.") overloaded_mv_station = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.hv_mv_station_max_overload(edisgo_reinforce) + else checks.hv_mv_station_max_overload(edisgo) ) if mode != "mv" and (not lv_grid_id): - overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo_reinforce) + overloaded_lv_stations = checks.mv_lv_station_max_overload(edisgo) logger.debug("==> Recheck line load.") crit_lines = ( pd.DataFrame(dtype=float) if mode == "lv" - else checks.mv_line_max_relative_overload(edisgo_reinforce) + else checks.mv_line_max_relative_overload(edisgo) ) if not mode or mode == "lv": crit_lines = pd.concat( [ crit_lines, - checks.lv_line_max_relative_overload( - edisgo_reinforce, lv_grid_id=lv_grid_id - ), + checks.lv_line_max_relative_overload(edisgo, lv_grid_id=lv_grid_id), ] ) @@ -591,9 +598,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): or not overloaded_mv_station.empty or not overloaded_lv_stations.empty ): - edisgo_reinforce.results.unresolved_issues = pd.concat( + edisgo.results.unresolved_issues = pd.concat( [ - edisgo_reinforce.results.unresolved_issues, + edisgo.results.unresolved_issues, crit_lines, overloaded_lv_stations, overloaded_mv_station, @@ -611,7 +618,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): # final check 10% criteria voltage_dev = checks.voltage_deviation_from_allowed_voltage_limits( - edisgo_reinforce, split_voltage_band=False + edisgo, split_voltage_band=False ) voltage_dev = voltage_dev[voltage_dev != 0.0].dropna(how="all").dropna(how="all") if not voltage_dev.empty: @@ -619,11 +626,11 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): raise ValueError(message) # calculate topology expansion costs - edisgo_reinforce.results.grid_expansion_costs = grid_expansion_costs( - edisgo_reinforce, without_generator_import=without_generator_import + edisgo.results.grid_expansion_costs = grid_expansion_costs( + edisgo, without_generator_import=without_generator_import ) - return edisgo_reinforce.results + return edisgo.results def catch_convergence_reinforce_grid( From 560171097b6f82e1ea96d59fd60d3917774940e5 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 17:23:45 +0200 Subject: [PATCH 274/355] Fix reinforce tests --- tests/test_edisgo.py | 38 ++++++++++++++++++++------------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index ed065439d..1a0699fe5 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -17,6 +17,7 @@ from edisgo import EDisGo from edisgo.edisgo import import_edisgo_from_files from edisgo.flex_opt.reinforce_grid import enhanced_reinforce_wrapper +from edisgo.network.results import Results class TestEDisGo: @@ -461,8 +462,6 @@ def test_reinforce(self): assert self.edisgo.results.v_res.empty # ###################### test mode lv and copy grid ########################## - # self.setup_edisgo_object() - # self.setup_worst_case_time_series() results = self.edisgo.reinforce(mode="lv", copy_grid=True) assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 6 @@ -471,13 +470,26 @@ def test_reinforce(self): assert self.edisgo.results.v_res.empty # ################# test mode mvlv and combined analysis #################### - # self.setup_edisgo_object() - # self.setup_worst_case_time_series() - results = self.edisgo.reinforce(mode="mvlv", combined_analysis=False) + results = self.edisgo.reinforce( + mode="mvlv", combined_analysis=False, is_worst_case=False + ) assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 8 assert len(results.equipment_changes) == 8 - assert results.v_res.shape == (4, 142) + assert results.v_res.shape == (4, 41) + + # ###################### test with only one lv grid ########################## + # test grid without issues + self.edisgo.results = Results(self.edisgo) + lv_grid_id = 1 + results = self.edisgo.reinforce(mode="lv", lv_grid_id=lv_grid_id) + assert results.unresolved_issues.empty + assert results.equipment_changes.empty + # test grid with issues + lv_grid_id = 5 + results = self.edisgo.reinforce(mode="lv", lv_grid_id=lv_grid_id) + assert len(results.grid_expansion_costs) == 1 + assert len(results.equipment_changes) == 1 def test_reinforce_catch_convergence(self): # ###################### test with catch convergence ########################## @@ -503,18 +515,8 @@ def test_reinforce_catch_convergence(self): assert len(results.grid_expansion_costs) == 134 assert len(results.equipment_changes) == 231 assert results.v_res.shape == (4, 142) - - def test_reinforce_one_lv_grid(self): - # ###################### test with only one lv grid ########################## - self.setup_worst_case_time_series() - lv_grid_id = list(self.edisgo.topology.mv_grid.lv_grids)[0].id - results = self.edisgo.reinforce( - mode="lv", copy_grid=True, lv_grid_id=lv_grid_id - ) - - assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 6 - assert len(results.equipment_changes) == 6 + assert len(results.grid_expansion_costs) == 135 + assert len(results.equipment_changes) == 208 assert results.v_res.shape == (4, 142) @pytest.mark.slow From 017a5005bdf24c13718a73c1226f88c4f5d19963 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 17:25:20 +0200 Subject: [PATCH 275/355] Rework catch_convergence reinforcement --- edisgo/flex_opt/reinforce_grid.py | 188 +++++++++++++++++------------- tests/test_edisgo.py | 19 ++- 2 files changed, 119 insertions(+), 88 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 23ad91b61..664fd970f 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -1,6 +1,5 @@ from __future__ import annotations -import copy import datetime import logging @@ -638,126 +637,151 @@ def catch_convergence_reinforce_grid( **kwargs, ) -> Results: """ - Uses a reinforcement strategy to reinforce not converging grids. Reinforces - first with only converging timesteps. Reinforce again with at start not - converging timesteps. If still not converging, scale the timeseries iteratively. + Uses a reinforcement strategy to reinforce grids with non-converging time steps. + + First, conducts a grid reinforcement with only converging time steps. + Afterwards, tries to run reinforcement with all time steps that did not converge + in the beginning. At last, if there are still time steps that do not converge, + the feed-in and load time series are iteratively scaled and the grid reinforced, + starting with a low grid load and scaling-up the time series until the original + values are reached. Parameters ---------- edisgo : :class:`~.EDisGo` - The eDisGo object + kwargs : dict + See parameters of function + :func:`edisgo.flex_opt.reinforce_grid.reinforce_grid`. + + Returns + ------- + :class:`~.network.results.Results` + Returns the Results object holding network expansion costs, equipment + changes, etc. - kwargs: :obj:`dict` - See :func:`edisgo.flex_opt.reinforce_grid.reinforce_grid` """ def reinforce(): try: - results = reinforce_grid( + reinforce_grid( edisgo, timesteps_pfa=selected_timesteps, scale_timeseries=set_scaling_factor, **kwargs, ) converged = True - logger.info( - f"Reinforcement succeeded for {set_scaling_factor=} at {iteration=}" - ) - except ValueError: - results = edisgo.results - converged = False - logger.info( - f"Reinforcement failed for {set_scaling_factor=} at {iteration=}" - ) - return converged, results + except ValueError as e: + if "Power flow analysis did not converge for the" in str(e): + converged = False + else: + raise + return converged - # Initial try - logger.info("Start catch convergence reinforcement") - logger.info("Initial reinforcement try.") + logger.debug("Start 'catch-convergence' reinforcement.") # Get the timesteps from kwargs and then remove it to set it later manually timesteps_pfa = kwargs.get("timesteps_pfa") kwargs.pop("timesteps_pfa") selected_timesteps = timesteps_pfa + # Initial try + logger.info("Run initial reinforcement.") set_scaling_factor = 1.0 iteration = 0 - - converged, results = reinforce() - + converged = reinforce() if converged is False: - logger.info("Initial reinforcement doesn't converge.") - fully_converged = False + logger.info("Initial reinforcement did not succeed.") else: - logger.info("Initial reinforcement converged.") - fully_converged = True + logger.info("Initial reinforcement succeeded.") + return edisgo.results - set_scaling_factor = 1.0 - initial_timerseries = copy.deepcopy(edisgo.timeseries) - minimal_scaling_factor = 0.05 - max_iterations = 10 - iteration = 0 - highest_converged_scaling_factor = 0 - - if fully_converged is False: - # Find non converging timesteps - logger.info("Find converging and non converging timesteps.") - if kwargs.get("mode", None) == "lv" and kwargs.get("lv_grid_id", None): - analyze_mode = "lv" - elif kwargs.get("mode", None) == "lv": - analyze_mode = None - else: - analyze_mode = kwargs.get("mode", None) + # Find non-converging time steps + if kwargs.get("mode", None) == "lv" and kwargs.get("lv_grid_id", None): + analyze_mode = "lv" + elif kwargs.get("mode", None) == "lv": + analyze_mode = None + else: + analyze_mode = kwargs.get("mode", None) + kwargs_analyze = kwargs + kwargs_analyze["mode"] = analyze_mode + converging_timesteps, non_converging_timesteps = edisgo.analyze( + timesteps=timesteps_pfa, raise_not_converged=False, **kwargs_analyze + ) + logger.info(f"The following time steps converged: {converging_timesteps}.") + logger.info( + f"The following time steps did not converge: {non_converging_timesteps}." + ) - kwargs_analyze = kwargs - kwargs["mode"] = analyze_mode - converging_timesteps, non_converging_timesteps = edisgo.analyze( - timesteps=timesteps_pfa, raise_not_converged=False, **kwargs_analyze + # Run reinforcement for time steps that converged after initial reinforcement + if not converging_timesteps.empty: + logger.info( + "Run reinforcement for time steps that converged after initial " + "reinforcement." ) - logger.info(f"Following timesteps {converging_timesteps} converged.") + selected_timesteps = converging_timesteps + reinforce() + + # Run reinforcement for time steps that did not converge after initial reinforcement + if not non_converging_timesteps.empty: logger.info( - f"Following timesteps {non_converging_timesteps} doesnt't converged." + "Run reinforcement for time steps that did not converge after initial " + "reinforcement." ) + selected_timesteps = non_converging_timesteps + converged = reinforce() - if converged is False: - if not converging_timesteps.empty: - logger.info("Reinforce only converged timesteps") - selected_timesteps = converging_timesteps - _, _ = reinforce() + if converged: + return edisgo.results - logger.info("Reinforce only non converged timesteps") - selected_timesteps = non_converging_timesteps - converged, results = reinforce() - - while iteration < max_iterations: - iteration += 1 - if converged: - if set_scaling_factor == 1: - # Initial iteration (0) worked - break + # Run iterative grid reinforcement + else: + max_iterations = 10 + highest_converged_scaling_factor = 0 + minimal_scaling_factor = 0.05 + while iteration < max_iterations: + iteration += 1 + if converged: + if set_scaling_factor == 1: + # reinforcement for scaling factor of 1 worked - finished + break + else: + # if converged, try again with scaling factor of 1 + highest_converged_scaling_factor = set_scaling_factor + set_scaling_factor = 1 else: - highest_converged_scaling_factor = set_scaling_factor - set_scaling_factor = 1 - else: - if set_scaling_factor == minimal_scaling_factor: - raise ValueError(f"Not reinforceable with {minimal_scaling_factor=}!") - elif iteration == 1: - set_scaling_factor = minimal_scaling_factor + if set_scaling_factor == minimal_scaling_factor: + raise ValueError( + f"Not reinforceable with {minimal_scaling_factor=}!" + ) + elif iteration == 1: + set_scaling_factor = minimal_scaling_factor + else: + set_scaling_factor = ( + (set_scaling_factor - highest_converged_scaling_factor) * 0.25 + ) + highest_converged_scaling_factor + + logger.info(f"Try reinforcement with {set_scaling_factor=} at {iteration=}") + converged = reinforce() + if converged: + logger.info( + f"Reinforcement succeeded for {set_scaling_factor=} " + f"at {iteration=}." + ) else: - set_scaling_factor = ( - (set_scaling_factor - highest_converged_scaling_factor) * 0.25 - ) + highest_converged_scaling_factor + logger.info( + f"Reinforcement failed for {set_scaling_factor=} at {iteration=}." + ) - logger.info(f"Try reinforce with {set_scaling_factor=} at {iteration=}") - converged, results = reinforce() - if converged is False and iteration == max_iterations: + if converged is False: raise ValueError( - f"Not reinforceable, max iterations ({max_iterations}) " f"reached!" + f"Not reinforceable, max iterations ({max_iterations}) reached!" ) - edisgo.timeseries = initial_timerseries - selected_timesteps = timesteps_pfa - converged, results = reinforce() + # Final reinforcement + if set_scaling_factor != 1: + logger.info("Run final reinforcement.") + selected_timesteps = timesteps_pfa + reinforce() return edisgo.results diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 1a0699fe5..226f19492 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -492,29 +492,36 @@ def test_reinforce(self): assert len(results.equipment_changes) == 1 def test_reinforce_catch_convergence(self): + + # ###################### test that wrong mode is raised ###################### + msg = "Provided mode mvl is not a valid mode." + with pytest.raises(ValueError, match=msg): + self.edisgo.reinforce( + catch_convergence_problems=True, is_worst_case=False, mode="mvl" + ) + # ###################### test with catch convergence ########################## self.setup_worst_case_time_series() self.edisgo.timeseries.scale_timeseries( p_scaling_factor=10, q_scaling_factor=10 ) results = self.edisgo.reinforce( - catch_convergence_problems=True, is_worst_case=False + catch_convergence_problems=True, + is_worst_case=False, + copy_grid=True, ) assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 134 - assert len(results.equipment_changes) == 231 + assert len(results.equipment_changes) == 230 assert results.v_res.shape == (4, 142) - # ############### test with catch convergence worst case false ################ + # ############### test with catch convergence worst case true ################ self.setup_worst_case_time_series() self.edisgo.timeseries.scale_timeseries( p_scaling_factor=10, q_scaling_factor=10 ) results = self.edisgo.reinforce(catch_convergence_problems=True) assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 134 - assert len(results.equipment_changes) == 231 - assert results.v_res.shape == (4, 142) assert len(results.grid_expansion_costs) == 135 assert len(results.equipment_changes) == 208 assert results.v_res.shape == (4, 142) From afb24e8248fd883400e36cd7a465c7beb8b76528 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 17:25:44 +0200 Subject: [PATCH 276/355] Fix test --- tests/flex_opt/test_reinforce_grid.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/flex_opt/test_reinforce_grid.py b/tests/flex_opt/test_reinforce_grid.py index 0f6c79c70..83bc4aa3b 100644 --- a/tests/flex_opt/test_reinforce_grid.py +++ b/tests/flex_opt/test_reinforce_grid.py @@ -1,3 +1,5 @@ +import copy + import numpy as np import pytest @@ -19,7 +21,7 @@ def test_reinforce_grid(self): modes = [None, "mv", "mvlv", "lv"] results_dict = { - mode: reinforce_grid(edisgo=self.edisgo, copy_grid=True, mode=mode) + mode: reinforce_grid(edisgo=copy.deepcopy(self.edisgo), mode=mode) for mode in modes } From 1c1c83bd819fe3015766ca249b612f75e05ee7e2 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 19:57:37 +0200 Subject: [PATCH 277/355] Add option to run worst-case reinforcement for MV/LV stations --- edisgo/edisgo.py | 50 +++++++++++++++++++++---------- edisgo/flex_opt/reinforce_grid.py | 23 ++++++++------ tests/test_edisgo.py | 8 ++--- 3 files changed, 53 insertions(+), 28 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 8d149cd75..5523eb8c5 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1129,7 +1129,6 @@ def reinforce( and neglecting LV network topology. LV load and generation is aggregated per LV network and directly connected to the secondary side of the respective MV/LV station. - This mode can currently not be chosen in case `is_worst_case` is True. * 'lv' to reinforce LV networks. In case an LV grid is specified through parameter `lv_grid_id`, the grid's MV/LV station is not included. In case no LV grid ID is given, all MV/LV stations are included. @@ -1157,6 +1156,11 @@ def reinforce( specified, all LV grids are checked. In that case, the power flow analysis is conducted including the MV grid, in order to check loading and voltage drop/rise of MV/LV stations. + skip_mv_reinforcement : bool + If True, MV is not reinforced, even if `mode` is "mv", "mvlv" or None. + This is used in case worst-case grid reinforcement is conducted in order to + reinforce MV/LV stations for LV worst-cases. + Default: False. Returns -------- @@ -1191,26 +1195,44 @@ def reinforce( # timesteps for reinforced components run_analyze_at_the_end = True if mode is None: + kwargs_mv = kwargs.copy() + kwargs_mv.update({"mode": "mv", "timesteps_pfa": timesteps_mv}) + kwargs_mvlv = kwargs.copy() + kwargs_mvlv.update( + { + "mode": "mvlv", + "timesteps_pfa": timesteps_lv, + "skip_mv_reinforcement": True, + } + ) + kwargs_lv = kwargs.copy() + kwargs_lv.update({"mode": "lv", "timesteps_pfa": timesteps_lv}) + kwargs.update({"mode": "mv", "timesteps_pfa": timesteps_mv}) setting_list = [ - {"mode": "mv", "timesteps_pfa": timesteps_mv}, - {"mode": "lv", "timesteps_pfa": timesteps_lv}, + kwargs_mv, + kwargs_mvlv, + kwargs_lv, ] elif mode == "mv": - setting_list = [ - {"mode": "mv", "timesteps_pfa": timesteps_mv}, - ] + kwargs.update({"mode": "mv", "timesteps_pfa": timesteps_mv}) + setting_list = [kwargs] elif mode == "mvlv": - raise ValueError( - "The mode 'mvlv' is currently not implemented when using " - "worst cases. Choose None, 'mv' or 'lv' instead." + kwargs.update( + { + "mode": "mvlv", + "timesteps_pfa": timesteps_lv, + "skip_mv_reinforcement": True, + } ) + setting_list = [kwargs] elif mode == "lv": - setting_list = [{"mode": "lv", "timesteps_pfa": timesteps_lv}] - + kwargs.update({"mode": "lv", "timesteps_pfa": timesteps_lv}) + setting_list = [kwargs] else: raise ValueError(f"Mode {mode} does not exist.") else: - setting_list = [{"mode": mode, "timesteps_pfa": timesteps_pfa}] + kwargs.update({"mode": mode, "timesteps_pfa": timesteps_pfa}) + setting_list = [kwargs] run_analyze_at_the_end = False logger.info(f"Run the following reinforcements: {setting_list=}") @@ -1223,12 +1245,10 @@ def reinforce( func( edisgo_obj, max_while_iterations=max_while_iterations, - timesteps_pfa=setting["timesteps_pfa"], split_voltage_band=split_voltage_band, - mode=setting["mode"], without_generator_import=without_generator_import, n_minus_one=n_minus_one, - **kwargs, + **setting, ) if run_analyze_at_the_end: edisgo_obj.analyze() diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 664fd970f..1ce040ab7 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -75,6 +75,11 @@ def reinforce_grid( values above 1 will scale the timeseries up). Downscaling of time series can be used to gradually reinforce the grid. If None, timeseries are not scaled. Default: None. + skip_mv_reinforcement : bool + If True, MV is not reinforced, even if `mode` is "mv", "mvlv" or None. + This is used in case worst-case grid reinforcement is conducted in order to + reinforce MV/LV stations for LV worst-cases. + Default: False. Returns ------- @@ -183,7 +188,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Check station load.") overloaded_mv_station = ( pd.DataFrame(dtype=float) - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.hv_mv_station_max_overload(edisgo) ) if lv_grid_id or (mode == "mv"): @@ -194,7 +199,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Check line load.") crit_lines = ( pd.DataFrame(dtype=float) - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.mv_line_max_relative_overload(edisgo) ) if not mode or mode == "lv": @@ -255,7 +260,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Recheck station load.") overloaded_mv_station = ( pd.DataFrame(dtype=float) - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.hv_mv_station_max_overload(edisgo) ) if mode != "mv" and (not lv_grid_id): @@ -264,7 +269,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Recheck line load.") crit_lines = ( pd.DataFrame(dtype=float) - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.mv_line_max_relative_overload(edisgo) ) if not mode or mode == "lv": @@ -310,7 +315,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_nodes = ( pd.DataFrame() - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.voltage_issues( edisgo, voltage_level="mv", split_voltage_band=split_voltage_band ) @@ -495,7 +500,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Recheck station load.") overloaded_mv_station = ( pd.DataFrame(dtype=float) - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.hv_mv_station_max_overload(edisgo) ) if (lv_grid_id) or (mode == "mv"): @@ -506,7 +511,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Recheck line load.") crit_lines = ( pd.DataFrame(dtype=float) - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.mv_line_max_relative_overload(edisgo) ) if not mode or mode == "lv": @@ -567,7 +572,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Recheck station load.") overloaded_mv_station = ( pd.DataFrame(dtype=float) - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.hv_mv_station_max_overload(edisgo) ) if mode != "mv" and (not lv_grid_id): @@ -576,7 +581,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): logger.debug("==> Recheck line load.") crit_lines = ( pd.DataFrame(dtype=float) - if mode == "lv" + if mode == "lv" or kwargs.get("skip_mv_reinforcement", False) else checks.mv_line_max_relative_overload(edisgo) ) if not mode or mode == "lv": diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 226f19492..d5eb943a7 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -471,12 +471,12 @@ def test_reinforce(self): # ################# test mode mvlv and combined analysis #################### results = self.edisgo.reinforce( - mode="mvlv", combined_analysis=False, is_worst_case=False + mode="mvlv", combined_analysis=False, is_worst_case=True ) assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 8 - assert len(results.equipment_changes) == 8 - assert results.v_res.shape == (4, 41) + assert len(results.grid_expansion_costs) == 4 + assert len(results.equipment_changes) == 4 + assert results.v_res.shape == (4, 142) # ###################### test with only one lv grid ########################## # test grid without issues From 6828fae848592a7fac5e94c92509a02c574b323d Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 20:26:45 +0200 Subject: [PATCH 278/355] Adapt enhanced grid reinforcement --- edisgo/flex_opt/reinforce_grid.py | 65 ++++++++++++++++++++----------- tests/test_edisgo.py | 10 ++--- 2 files changed, 48 insertions(+), 27 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 1ce040ab7..458262257 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -1,5 +1,6 @@ from __future__ import annotations +import copy import datetime import logging @@ -642,7 +643,7 @@ def catch_convergence_reinforce_grid( **kwargs, ) -> Results: """ - Uses a reinforcement strategy to reinforce grids with non-converging time steps. + Reinforcement strategy to reinforce grids with non-converging time steps. First, conducts a grid reinforcement with only converging time steps. Afterwards, tries to run reinforcement with all time steps that did not converge @@ -791,31 +792,51 @@ def reinforce(): return edisgo.results -def enhanced_reinforce_wrapper( - edisgo_obj: EDisGo, activate_cost_results_disturbing_mode: bool = False, **kwargs +def enhanced_reinforce_grid( + edisgo_object: EDisGo, activate_cost_results_disturbing_mode: bool = False, **kwargs ) -> EDisGo: """ - A Wrapper around the reinforce method, to catch exceptions and try to counter them - through reinforcing the grid in small portions: - Reinforcement mode mv, then mvlv mode, then lv powerflow per lv_grid. + Reinforcement strategy to reinforce grids voltage level by voltage level in case + grid reinforcement method + :func:`edisgo.flex_opt.reinforce_grid.catch_convergence_reinforce_grid` is not + sufficient. + + After first grid reinforcement for all voltage levels at once fails, reinforcement + is first conducted for the MV level only, afterwards for the MV level including + MV/LV stations and at last each LV grid separately. Parameters ---------- - edisgo_obj : :class:`~.EDisGo` - The eDisGo object - activate_cost_results_disturbing_mode: :obj:`bool` - If this option is activated to methods are used to fix the problem. These - methods are currently not reinforcement costs increasing. - If the lv_reinforcement fails all branches of the lv_grid are replaced by the - standard type. Should this not work all lv nodes are aggregated to the station - node. + edisgo_object : :class:`~.EDisGo` + activate_cost_results_disturbing_mode : bool + If True, LV grids where normal grid reinforcement does not solve all issues, + two additional approaches are used to obtain a grid where power flow can be + conducted without non-convergence. These two approaches are currently not + included in the calculation of grid reinforcement costs, wherefore grid + reinforcement costs will be underestimated. + In the first approach, all lines in the LV grid are replaced by the + standard line type. Should this not be sufficient to solve non-convergence + issues, all components in the LV grid are aggregated to the MV/LV station. + Default: False. + kwargs : dict + Keyword arguments can be all parameters of function + :func:`edisgo.flex_opt.reinforce_grid.reinforce_grid`, except + `catch_convergence_problems` which will always be set to True, `mode` which + is set to None, and `skip_mv_reinforcement` which will be ignored. Returns ------- :class:`~.EDisGo` - The reinforced eDisGo object + The reinforced eDisGo object. """ + if kwargs.get("copy_grid", True): + edisgo_obj = copy.deepcopy(edisgo_object) + else: + edisgo_obj = edisgo_object + kwargs["copy_grid"] = False + kwargs.pop("skip_mv_reinforcement", False) + try: logger.info("Try initial enhanced reinforcement.") edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) @@ -825,16 +846,16 @@ def enhanced_reinforce_wrapper( logger.info("Try mode 'mv' reinforcement.") try: edisgo_obj.reinforce(mode="mv", catch_convergence_problems=True, **kwargs) - logger.info("Mode 'mv' succeeded.") + logger.info("Mode 'mv' reinforcement succeeded.") except: # noqa: E722 - logger.info("Mode 'mv' failed.") + logger.info("Mode 'mv' reinforcement failed.") logger.info("Try mode 'mvlv' reinforcement.") try: edisgo_obj.reinforce(mode="mvlv", catch_convergence_problems=True, **kwargs) - logger.info("Mode 'mvlv' succeeded.") + logger.info("Mode 'mvlv' reinforcement succeeded.") except: # noqa: E722 - logger.info("Mode 'mvlv' failed.") + logger.info("Mode 'mvlv' reinforcement failed.") for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids): try: @@ -845,15 +866,15 @@ def enhanced_reinforce_wrapper( catch_convergence_problems=True, **kwargs, ) - logger.info(f"Mode 'lv' for {lv_grid} successful.") + logger.info(f"Mode 'lv' reinforcement for {lv_grid} successful.") except: # noqa: E722 - logger.info(f"Mode 'lv' for {lv_grid} failed.") + logger.info(f"Mode 'lv' reinforcement for {lv_grid} failed.") if activate_cost_results_disturbing_mode: try: logger.warning( f"Change all lines to standard type in {lv_grid=}." ) - lv_standard_line_type = edisgo_obj.config.from_cfg()[ + lv_standard_line_type = edisgo_obj.config[ "grid_expansion_standard_equipment" ]["lv_line"] edisgo_obj.topology.change_line_type( diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index d5eb943a7..d91566a9f 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -16,7 +16,7 @@ from edisgo import EDisGo from edisgo.edisgo import import_edisgo_from_files -from edisgo.flex_opt.reinforce_grid import enhanced_reinforce_wrapper +from edisgo.flex_opt.reinforce_grid import enhanced_reinforce_grid from edisgo.network.results import Results @@ -527,21 +527,21 @@ def test_reinforce_catch_convergence(self): assert results.v_res.shape == (4, 142) @pytest.mark.slow - def test_enhanced_reinforce(self): + def test_enhanced_reinforce_grid(self): self.setup_edisgo_object() self.setup_worst_case_time_series() self.edisgo.timeseries.scale_timeseries( p_scaling_factor=100, q_scaling_factor=100 ) edisgo_obj = copy.deepcopy(self.edisgo) - edisgo_obj = enhanced_reinforce_wrapper( + edisgo_obj = enhanced_reinforce_grid( edisgo_obj, activate_cost_results_disturbing_mode=True ) results = edisgo_obj.results - assert len(results.grid_expansion_costs) == 843 - assert len(results.equipment_changes) == 1802 + assert len(results.grid_expansion_costs) == 835 + assert len(results.equipment_changes) == 1764 assert results.v_res.shape == (4, 142) def test_add_component(self, caplog): From 90e7eda9c99d9b129327974e49c009490a4732c7 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 20:37:35 +0200 Subject: [PATCH 279/355] Adapt last analyze --- edisgo/edisgo.py | 15 ++++++++++++--- tests/flex_opt/test_reinforce_grid.py | 5 +++++ tests/test_edisgo.py | 6 ++++-- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 5523eb8c5..a1239b3e2 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -738,7 +738,7 @@ def to_pypsa( Check integrity of edisgo object before translating to pypsa. This option is meant to help the identification of possible sources of errors if the power flow calculations fail. See :attr:`~.edisgo.EDisGo.check_integrity` for - more information. + more information. Default: False. Other Parameters ------------------- @@ -751,7 +751,7 @@ def to_pypsa( Default: False. lv_grid_id : int or str ID (e.g. 1) or name (string representation, e.g. "LVGrid_1") of LV grid - to export in case mode is 'lv'. + to export in case mode is 'lv'. Default: None. aggregate_loads : str Mode for load aggregation in LV grids in case mode is 'mv' or 'mvlv'. Can be 'sectoral' aggregating the loads sector-wise, 'all' aggregating all @@ -1251,7 +1251,16 @@ def reinforce( **setting, ) if run_analyze_at_the_end: - edisgo_obj.analyze() + lv_grid_id = kwargs.get("lv_grid_id", None) + if mode == "lv" and lv_grid_id: + analyze_mode = "lv" + elif mode == "lv": + analyze_mode = None + else: + analyze_mode = mode + edisgo_obj.analyze( + mode=analyze_mode, lv_grid_id=lv_grid_id, timesteps=timesteps_pfa + ) # add measure to Results object if not copy_grid: diff --git a/tests/flex_opt/test_reinforce_grid.py b/tests/flex_opt/test_reinforce_grid.py index 83bc4aa3b..46085164d 100644 --- a/tests/flex_opt/test_reinforce_grid.py +++ b/tests/flex_opt/test_reinforce_grid.py @@ -11,6 +11,11 @@ class TestReinforceGrid: + """ + Here, currently only reinforce_grid function is tested. + Other functions in reinforce_grid module are currently tested in test_edisgo module. + """ + @classmethod def setup_class(cls): cls.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index d91566a9f..96edc88df 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -458,7 +458,7 @@ def test_reinforce(self): assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 4 assert len(results.equipment_changes) == 4 - assert results.v_res.shape == (4, 142) + assert results.v_res.shape == (4, 31) assert self.edisgo.results.v_res.empty # ###################### test mode lv and copy grid ########################## @@ -476,7 +476,7 @@ def test_reinforce(self): assert results.unresolved_issues.empty assert len(results.grid_expansion_costs) == 4 assert len(results.equipment_changes) == 4 - assert results.v_res.shape == (4, 142) + assert results.v_res.shape == (4, 41) # ###################### test with only one lv grid ########################## # test grid without issues @@ -485,11 +485,13 @@ def test_reinforce(self): results = self.edisgo.reinforce(mode="lv", lv_grid_id=lv_grid_id) assert results.unresolved_issues.empty assert results.equipment_changes.empty + assert results.v_res.shape == (4, 15) # test grid with issues lv_grid_id = 5 results = self.edisgo.reinforce(mode="lv", lv_grid_id=lv_grid_id) assert len(results.grid_expansion_costs) == 1 assert len(results.equipment_changes) == 1 + assert results.v_res.shape == (4, 9) def test_reinforce_catch_convergence(self): From a50b99e424b5936d6abd0af8d633ddf37e9ed170 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 21:01:32 +0200 Subject: [PATCH 280/355] Change logging to logger --- edisgo/edisgo.py | 36 +++++++++++++------------- edisgo/flex_opt/charging_strategies.py | 2 +- edisgo/flex_opt/heat_pump_operation.py | 2 +- edisgo/flex_opt/reinforce_measures.py | 2 +- edisgo/io/electromobility_import.py | 2 +- edisgo/network/electromobility.py | 2 +- edisgo/network/timeseries.py | 4 +-- edisgo/network/topology.py | 6 ++--- edisgo/tools/plots.py | 10 +++---- 9 files changed, 33 insertions(+), 33 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index a1239b3e2..0a00acd3c 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1040,7 +1040,7 @@ def _scale_timeseries(pypsa_network_copy, fraction): pypsa_network = _scale_timeseries(pypsa_network_copy, fraction) # run power flow analysis pf_results = pypsa_network.pf(timesteps, use_seed=True) - logging.info( + logger.info( "Current fraction in iterative process: {}.".format(fraction) ) # get converged and not converged time steps @@ -1395,7 +1395,7 @@ def _set_timeseries(): ) elif ts_reactive_power == "default": if ts_active_power is None: - logging.warning( + logger.warning( f"Default reactive power time series of {comp_name} cannot " "be set as active power time series was not provided." ) @@ -2256,13 +2256,13 @@ def plot_mv_voltages(self, **kwargs): """ try: if self.results.v_res is None: - logging.warning( + logger.warning( "Voltages from power flow " "analysis must be available to plot them." ) return except AttributeError: - logging.warning( + logger.warning( "Results must be available to plot voltages. " "Please analyze grid first." ) @@ -2293,13 +2293,13 @@ def plot_mv_line_loading(self, **kwargs): """ try: if self.results.i_res is None: - logging.warning( + logger.warning( "Currents `i_res` from power flow analysis " "must be available to plot line loading." ) return except AttributeError: - logging.warning( + logger.warning( "Results must be available to plot line loading. " "Please analyze grid first." ) @@ -2334,13 +2334,13 @@ def plot_mv_grid_expansion_costs(self, **kwargs): """ try: if self.results.grid_expansion_costs is None: - logging.warning( + logger.warning( "Grid expansion cost results needed to plot " "them. Please do grid reinforcement." ) return except AttributeError: - logging.warning( + logger.warning( "Results of MV topology needed to plot topology " "expansion costs. Please reinforce first." ) @@ -2999,7 +2999,7 @@ def _check_timeindex(check_df, param_name): f"DSM.{param_name}", ) - logging.info("Integrity check finished. Please pay attention to warnings.") + logger.info("Integrity check finished. Please pay attention to warnings.") def resample_timeseries( self, method: str = "ffill", freq: str | pd.Timedelta = "15min" @@ -3219,7 +3219,7 @@ def import_edisgo_from_files( if not from_zip_archive and str(edisgo_path).endswith(".zip"): from_zip_archive = True - logging.info("Given path is a zip archive. Setting 'from_zip_archive' to True.") + logger.info("Given path is a zip archive. Setting 'from_zip_archive' to True.") edisgo_obj = EDisGo() try: @@ -3229,7 +3229,7 @@ def import_edisgo_from_files( "from_zip_archive": from_zip_archive, } except FileNotFoundError: - logging.info( + logger.info( "Configuration data could not be loaded from json wherefore " "the default configuration data is loaded." ) @@ -3248,7 +3248,7 @@ def import_edisgo_from_files( if os.path.exists(directory): edisgo_obj.topology.from_csv(directory, edisgo_obj, from_zip_archive) else: - logging.warning("No topology data found. Topology not imported.") + logger.warning("No topology data found. Topology not imported.") if import_timeseries: dtype = kwargs.get("dtype", None) @@ -3263,7 +3263,7 @@ def import_edisgo_from_files( directory, dtype=dtype, from_zip_archive=from_zip_archive ) else: - logging.warning("No time series data found. Timeseries not imported.") + logger.warning("No time series data found. Timeseries not imported.") if import_results: parameters = kwargs.get("parameters", None) @@ -3279,7 +3279,7 @@ def import_edisgo_from_files( directory, parameters, dtype=dtype, from_zip_archive=from_zip_archive ) else: - logging.warning("No results data found. Results not imported.") + logger.warning("No results data found. Results not imported.") if import_electromobility: if not from_zip_archive: @@ -3293,7 +3293,7 @@ def import_edisgo_from_files( directory, edisgo_obj, from_zip_archive=from_zip_archive ) else: - logging.warning( + logger.warning( "No electromobility data found. Electromobility not imported." ) @@ -3307,7 +3307,7 @@ def import_edisgo_from_files( if os.path.exists(directory): edisgo_obj.heat_pump.from_csv(directory, from_zip_archive=from_zip_archive) else: - logging.warning("No heat pump data found. Heat pump data not imported.") + logger.warning("No heat pump data found. Heat pump data not imported.") if import_dsm: if not from_zip_archive: @@ -3319,7 +3319,7 @@ def import_edisgo_from_files( if os.path.exists(directory): edisgo_obj.dsm.from_csv(directory, from_zip_archive=from_zip_archive) else: - logging.warning("No DSM data found. DSM data not imported.") + logger.warning("No DSM data found. DSM data not imported.") if import_overlying_grid: if not from_zip_archive: @@ -3333,7 +3333,7 @@ def import_edisgo_from_files( directory, from_zip_archive=from_zip_archive ) else: - logging.warning( + logger.warning( "No overlying grid data found. Overlying grid data not imported." ) diff --git a/edisgo/flex_opt/charging_strategies.py b/edisgo/flex_opt/charging_strategies.py index 275e9a033..393b26a05 100644 --- a/edisgo/flex_opt/charging_strategies.py +++ b/edisgo/flex_opt/charging_strategies.py @@ -324,7 +324,7 @@ def charging_strategy( ) # fmt: on - logging.info(f"Charging strategy {strategy} completed.") + logger.info(f"Charging strategy {strategy} completed.") def harmonize_charging_processes_df( diff --git a/edisgo/flex_opt/heat_pump_operation.py b/edisgo/flex_opt/heat_pump_operation.py index 140e57197..88cb413e5 100644 --- a/edisgo/flex_opt/heat_pump_operation.py +++ b/edisgo/flex_opt/heat_pump_operation.py @@ -56,4 +56,4 @@ def operating_strategy( ), ) - logging.debug(f"Heat pump operating strategy {strategy} completed.") + logger.debug(f"Heat pump operating strategy {strategy} completed.") diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 122e66775..56cb9d8a9 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -399,7 +399,7 @@ def reinforce_lines_voltage_issues(edisgo_obj, grid, crit_nodes): # because voltage issues should have been solved during extension of # distribution substations due to overvoltage issues. if len(path) == 1: - logging.error( + logger.error( "Voltage issues at busbar in LV network {} should have " "been solved in previous steps.".format(grid) ) diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index f3cb2ed24..cfc874621 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -284,7 +284,7 @@ def read_simbev_config_df( return df.assign(days=(df.end_date - df.start_date).iat[0].days + 1) except Exception: - logging.warning( + logger.warning( "SimBEV config file could not be imported. Charging point " "efficiency is set to 100%, the stepsize is set to 15 minutes " "and the simulated days are estimated from the charging " diff --git a/edisgo/network/electromobility.py b/edisgo/network/electromobility.py index 82b3f1631..76babfc19 100644 --- a/edisgo/network/electromobility.py +++ b/edisgo/network/electromobility.py @@ -918,7 +918,7 @@ def from_csv(self, data_path, edisgo_obj, from_zip_archive=False): ) except Exception: - logging.warning( + logger.warning( f"Potential charging parks could not be loaded with " f"EPSG {epsg}. Trying with EPSG 4326 as fallback." ) diff --git a/edisgo/network/timeseries.py b/edisgo/network/timeseries.py index 5df25fd2f..de5de9dc1 100644 --- a/edisgo/network/timeseries.py +++ b/edisgo/network/timeseries.py @@ -716,7 +716,7 @@ def _overwrite_time_series(p, q, comp_type): set(df.index) - set(self.loads_active_power.columns) ) if loads_without_ts: - logging.warning( + logger.warning( "There are loads where information on type of load is missing. " "Handled types are 'conventional_load', 'charging_point', and " "'heat_pump'. Loads with missing type information are handled as " @@ -2148,7 +2148,7 @@ def _check_if_components_exist( comps_not_in_network = list(set(component_names) - set(comps_in_network)) if comps_not_in_network: - logging.warning( + logger.warning( f"Some of the provided {component_type} are not in the network. This " f"concerns the following components: {comps_not_in_network}." ) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 366850954..d8db32e99 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -745,7 +745,7 @@ def get_lv_grid(self, name): elif isinstance(name, str): return LVGrid(id=int(name.split("_")[-1]), edisgo_obj=edisgo_obj) else: - logging.warning("`name` must be integer or string.") + logger.warning("`name` must be integer or string.") @property def grid_district(self): @@ -1379,7 +1379,7 @@ def _get_line_data(): (self.lines_df.bus1 == bus0) & (self.lines_df.bus0 == bus1) ] if not bus0_bus1.empty and bus1_bus0.empty: - logging.debug("Line between bus0 {} and bus1 {} already exists.") + logger.debug("Line between bus0 {} and bus1 {} already exists.") return pd.concat( [ bus1_bus0, @@ -1732,7 +1732,7 @@ def change_line_type(self, lines, new_line_type): self.lines_df.at[lines[0], "bus0"], "v_nom" ] if grid_voltage != data_new_line.U_n: - logging.debug( + logger.debug( f"The line type of lines {lines} is changed to a type with a " f"different nominal voltage (nominal voltage of new line type " f"is {data_new_line.U_n} kV while nominal voltage of the medium" diff --git a/edisgo/tools/plots.py b/edisgo/tools/plots.py index 691413643..4170eaed6 100644 --- a/edisgo/tools/plots.py +++ b/edisgo/tools/plots.py @@ -622,7 +622,7 @@ def nodes_by_costs(buses, grid_expansion_costs, edisgo_obj): if kwargs.get("bus_colors", None): bus_colors = pd.Series(kwargs.get("bus_colors")).loc[pypsa_plot.buses] else: - logging.warning( + logger.warning( "Choice for `node_color` is not valid. Default bus colors are " "used instead." ) @@ -630,7 +630,7 @@ def nodes_by_costs(buses, grid_expansion_costs, edisgo_obj): if kwargs.get("bus_sizes", None): bus_sizes = pd.Series(kwargs.get("bus_sizes")).loc[pypsa_plot.buses] else: - logging.warning( + logger.warning( "Choice for `node_color` is not valid. Default bus sizes are " "used instead." ) @@ -638,7 +638,7 @@ def nodes_by_costs(buses, grid_expansion_costs, edisgo_obj): if kwargs.get("bus_cmap", None): bus_cmap = kwargs.get("bus_cmap", None) else: - logging.warning( + logger.warning( "Choice for `node_color` is not valid. Default bus colormap " "is used instead." ) @@ -673,7 +673,7 @@ def nodes_by_costs(buses, grid_expansion_costs, edisgo_obj): region = region.to_crs(epsg=projection) region.plot(ax=ax, color="white", alpha=0.2, edgecolor="red", linewidth=2) except Exception as e: - logging.warning( + logger.warning( "Grid district geometry could not be plotted due " "to the following error: {}".format(e) ) @@ -850,7 +850,7 @@ def nodes_by_costs(buses, grid_expansion_costs, edisgo_obj): try: add_basemap(ax, zoom=12) except Exception as e: - logging.warning( + logger.warning( "Background map could not be plotted due to the " "following error: {}".format(e) ) From 85ec9e9155655fdc177b62cae1a405657a609d5b Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 21:01:44 +0200 Subject: [PATCH 281/355] Fix tests --- tests/test_edisgo.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 96edc88df..39ed35238 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -422,12 +422,13 @@ def test_analyze(self, caplog): self.edisgo.analyze(troubleshooting_mode="iteration", range_start=5) caplog.clear() - self.edisgo.analyze( - troubleshooting_mode="iteration", - range_start=5, - range_num=2, - raise_not_converged=False, - ) + with caplog.at_level("INFO"): + self.edisgo.analyze( + troubleshooting_mode="iteration", + range_start=5, + range_num=2, + raise_not_converged=False, + ) assert "Current fraction in iterative process: 5.0." in caplog.text assert "Current fraction in iterative process: 1.0." in caplog.text @@ -524,8 +525,8 @@ def test_reinforce_catch_convergence(self): ) results = self.edisgo.reinforce(catch_convergence_problems=True) assert results.unresolved_issues.empty - assert len(results.grid_expansion_costs) == 135 - assert len(results.equipment_changes) == 208 + assert len(results.grid_expansion_costs) == 132 + assert len(results.equipment_changes) == 218 assert results.v_res.shape == (4, 142) @pytest.mark.slow From 75b2731315f84a86e3232c8bf099435edb9d0c4a Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 21 Apr 2023 22:07:11 +0200 Subject: [PATCH 282/355] Fix link --- edisgo/edisgo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 0a00acd3c..e216c865b 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -786,7 +786,7 @@ def to_graph(self): Returns ------- - :networkx:`networkx.Graph` + :networkx:`networkx.Graph` Graph representation of the grid as networkx Ordered Graph, where lines are represented by edges in the graph, and buses and transformers are represented by nodes. From 0d536c809ad1120126576abe84798837200d213e Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 26 Apr 2023 19:51:58 +0200 Subject: [PATCH 283/355] Adapt overlying grid class --- edisgo/network/overlying_grid.py | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/edisgo/network/overlying_grid.py b/edisgo/network/overlying_grid.py index c572cd414..85ee1ef8d 100644 --- a/edisgo/network/overlying_grid.py +++ b/edisgo/network/overlying_grid.py @@ -24,14 +24,21 @@ class OverlyingGrid: Curtailment of fluctuating renewables per time step in MW. storage_units_active_power : :pandas:`pandas.Series` Aggregated dispatch of storage units per time step in MW. + storage_units_soc : :pandas:`pandas.Series` + State of charge of storage units per time step in p.u.. dsm_active_power : :pandas:`pandas.Series` Aggregated demand side management utilisation per time step in MW. electromobility_active_power : :pandas:`pandas.Series` - Aggregated charging demand at flexible charging sites per time step in MW. + Aggregated charging demand at all charging sites in grid per time step in MW. heat_pump_decentral_active_power : :pandas:`pandas.Series` Aggregated demand of flexible decentral heat pumps per time step in MW. + thermal_storage_units_decentral_soc : :pandas:`pandas.Series` + State of charge of decentral thermal storage units in p.u.. heat_pump_central_active_power : :pandas:`pandas.Series` Aggregated demand of flexible central heat pumps per time step in MW. + thermal_storage_units_central_soc : :pandas:`pandas.DataFrame` + State of charge of central thermal storage units per district heating area (in + columns) and time step (in index) in p.u.. feedin_district_heating : :pandas:`pandas.DataFrame` Other thermal feed-in into district heating per district heating area (in columns) and time step (in index) in MW. @@ -42,10 +49,12 @@ def __init__(self, **kwargs): self.renewables_curtailment = kwargs.get( "renewables_curtailment", pd.Series(dtype="float64") ) - self.storage_units_active_power = kwargs.get( "storage_units_active_power", pd.Series(dtype="float64") ) + self.storage_units_soc = kwargs.get( + "storage_units_soc", pd.Series(dtype="float64") + ) self.dsm_active_power = kwargs.get( "dsm_active_power", pd.Series(dtype="float64") ) @@ -55,9 +64,15 @@ def __init__(self, **kwargs): self.heat_pump_decentral_active_power = kwargs.get( "heat_pump_decentral_active_power", pd.Series(dtype="float64") ) + self.thermal_storage_units_decentral_soc = kwargs.get( + "thermal_storage_units_decentral_soc", pd.Series(dtype="float64") + ) self.heat_pump_central_active_power = kwargs.get( "heat_pump_central_active_power", pd.Series(dtype="float64") ) + self.thermal_storage_units_central_soc = kwargs.get( + "thermal_storage_units_central_soc", pd.DataFrame(dtype="float64") + ) self.feedin_district_heating = kwargs.get( "feedin_district_heating", pd.DataFrame(dtype="float64") ) @@ -67,10 +82,13 @@ def _attributes(self): return [ "renewables_curtailment", "storage_units_active_power", + "storage_units_soc", "dsm_active_power", "electromobility_active_power", "heat_pump_decentral_active_power", + "thermal_storage_units_decentral_soc", "heat_pump_central_active_power", + "thermal_storage_units_central_soc", "feedin_district_heating", ] From aa1cedd6dd65cbd192b98bbe2dc53f78b42e24e6 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 26 Apr 2023 20:28:49 +0200 Subject: [PATCH 284/355] Add count for disturbed LV grids --- edisgo/flex_opt/reinforce_grid.py | 28 ++++++++++++++++++++++++++++ tests/test_edisgo.py | 1 + 2 files changed, 29 insertions(+) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 458262257..d0acf0250 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -837,6 +837,9 @@ def enhanced_reinforce_grid( kwargs["copy_grid"] = False kwargs.pop("skip_mv_reinforcement", False) + num_lv_grids_standard_lines = 0 + num_lv_grids_aggregated = 0 + try: logger.info("Try initial enhanced reinforcement.") edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) @@ -874,6 +877,7 @@ def enhanced_reinforce_grid( logger.warning( f"Change all lines to standard type in {lv_grid=}." ) + num_lv_grids_standard_lines += 1 lv_standard_line_type = edisgo_obj.config[ "grid_expansion_standard_equipment" ]["lv_line"] @@ -894,6 +898,7 @@ def enhanced_reinforce_grid( logger.warning( f"Aggregate all nodes to station bus in {lv_grid=}." ) + num_lv_grids_aggregated += 1 try: edisgo_obj.topology.aggregate_lv_grid_at_station( lv_grid_id=lv_grid.id @@ -911,4 +916,27 @@ def enhanced_reinforce_grid( logger.info("Enhanced reinforcement failed.") raise e + if activate_cost_results_disturbing_mode is True: + if num_lv_grids_standard_lines > 0: + msg = ( + f"In {num_lv_grids_standard_lines} LV grid(s) all lines were " + f"exchanged by standard lines." + ) + logger.warning(msg) + edisgo_obj.results.measures = msg + else: + msg = ( + "Enhanced reinforcement: No exchange of lines with standard lines or " + "aggregation at MV/LV station needed." + ) + logger.info(msg) + edisgo_obj.results.measures = msg + if num_lv_grids_aggregated > 0: + msg = ( + f"Enhanced reinforcement: In {num_lv_grids_aggregated} LV grid(s) all " + f"components were aggregated at the MV/LV station." + ) + logger.warning(msg) + edisgo_obj.results.measures = msg + return edisgo_obj diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 39ed35238..12cad9148 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -546,6 +546,7 @@ def test_enhanced_reinforce_grid(self): assert len(results.grid_expansion_costs) == 835 assert len(results.equipment_changes) == 1764 assert results.v_res.shape == (4, 142) + assert "Enhanced reinforcement: No exchange of lines" in results.measures[2] def test_add_component(self, caplog): self.setup_worst_case_time_series() From 8fd4280a79262d0feb12368e2cd154742d12876b Mon Sep 17 00:00:00 2001 From: Jonas Jeckstadt Date: Thu, 27 Apr 2023 09:33:14 +0200 Subject: [PATCH 285/355] further issues resolved --- edisgo/flex_opt/check_tech_constraints.py | 16 ++++++---------- edisgo/tools/spatial_complexity_reduction.py | 11 ++++++----- 2 files changed, 12 insertions(+), 15 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index f98c7c24b..46fdaa66b 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -1043,18 +1043,14 @@ def _lv_allowed_voltage_limits(edisgo_obj, lv_grids=None, mode=None): if mode == "stations": config_string = "mv_lv_station" - # get all primary and secondary sides - dict_primary_sides = {} - dict_secondary_sides = {} + # get base voltage (voltage at primary side) for each station + voltage_base = pd.DataFrame() for grid in lv_grids: - primary_side = grid.transformers_df.iloc[0].bus0 + transformers_df = grid.transformers_df + primary_side = transformers_df.iloc[0].bus0 + secondary_side = transformers_df.iloc[0].bus1 if primary_side in buses_in_pfa: - dict_primary_sides[grid] = primary_side - dict_secondary_sides[grid] = grid.station.index[0] - primary_sides = pd.Series(dict_primary_sides) - secondary_sides = pd.Series(dict_secondary_sides) - - voltage_base = edisgo_obj.results.v_res.loc[:, primary_sides.values] + voltage_base[secondary_side] = voltages_pfa.loc[:, primary_side] upper_limits_df = ( voltage_base diff --git a/edisgo/tools/spatial_complexity_reduction.py b/edisgo/tools/spatial_complexity_reduction.py index e4d00830e..8a6cc0320 100644 --- a/edisgo/tools/spatial_complexity_reduction.py +++ b/edisgo/tools/spatial_complexity_reduction.py @@ -156,7 +156,6 @@ def rename_virtual_buses( partial_busmap_df.loc[nodes_to_add_a_virtual, "new_bus"] != transformer_node ): - partial_busmap_df.loc[nodes_to_add_a_virtual, "new_bus"] = ( "virtual_" + partial_busmap_df.loc[feeder_non_virtual, "new_bus"] @@ -537,7 +536,9 @@ def rename_new_buses(series): ) dijkstra_distances_df.loc[:, bus] = path_series - buses_df.loc[:, "medoid"] = dijkstra_distances_df.idxmin(axis=1) + buses_df.loc[:, "medoid"] = dijkstra_distances_df.apply( + pd.to_numeric + ).idxmin(axis=1) partial_busmap_df = pd.DataFrame(index=buses_df.index) for index in buses_df.index: @@ -813,9 +814,9 @@ def transform_coordinates_back(ser): ) dijkstra_distances_df.loc[:, bus] = path_series - feeder_buses_df.loc[:, "medoid"] = dijkstra_distances_df.idxmin( - axis=1 - ) + feeder_buses_df.loc[:, "medoid"] = dijkstra_distances_df.apply( + pd.to_numeric + ).idxmin(axis=1) for index in feeder_buses_df.index.tolist(): partial_busmap_df.loc[index, "new_bus"] = make_name( From 4ed9487b86f2214ae540c6286a92843aa09ae6fc Mon Sep 17 00:00:00 2001 From: AnyaHe Date: Fri, 17 Mar 2023 14:36:37 +0100 Subject: [PATCH 286/355] add methods and test for reduced timesteps reinforcement --- edisgo/opf/timeseries_reduction.py | 108 +++++++++++++++++++++++++ tests/opf/test_timeseries_reduction.py | 57 +++++++++++++ 2 files changed, 165 insertions(+) create mode 100644 tests/opf/test_timeseries_reduction.py diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 4ba6adbb1..3ee48502b 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -30,6 +30,29 @@ def _scored_critical_loading(edisgo_obj): return crit_lines_score.sort_values(ascending=False) +def _scored_most_critical_loading(edisgo_obj): + """ + Method to get time steps where at least one component + """ + + # Get current relative to allowed current + relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj) + + # Get lines that have violations + crit_lines_score = relative_i_res[relative_i_res > 1] + + # Get most critical timesteps per component + crit_lines_score = ( + (crit_lines_score[crit_lines_score == crit_lines_score.max()]) + .dropna(how="all") + .dropna(how="all", axis=1) + ) + + # Sort according to highest cumulated relative overloading + crit_lines_score = (crit_lines_score - 1).sum(axis=1) + return crit_lines_score.sort_values(ascending=False) + + def _scored_critical_overvoltage(edisgo_obj): voltage_dev = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( @@ -44,6 +67,91 @@ def _scored_critical_overvoltage(edisgo_obj): return voltage_dev_ov.sort_values(ascending=False) +def _scored_most_critical_voltage_issues(edisgo_obj): + voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + edisgo_obj + ) + + # Get score for nodes that are over or under the allowed deviations + voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] + # get only most critical events for component + # Todo: should there be different ones for over and undervoltage? + voltage_diff = ( + (voltage_diff[voltage_diff.abs() == voltage_diff.abs().max()]) + .dropna(how="all") + .dropna(how="all", axis=1) + ) + + voltage_diff = voltage_diff.sum(axis=1) + + return voltage_diff.sort_values(ascending=False) + + +def get_steps_reinforcement( + edisgo_obj, num_steps_loading=None, num_steps_voltage=None, percentage=1.0 +): + """ + Get the time steps with the most critical violations for curtailment + optimization. + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + num_steps_loading: int + The number of most critical overloading events to select, if None percentage + is used + num_steps_voltage: int + The number of most critical voltage issues to select, if None percentage is used + percentage : float + The percentage of most critical time steps to select + Returns + -------- + `pandas.DatetimeIndex` + the reduced time index for modeling curtailment + """ + # Run power flow if not available + if edisgo_obj.results.i_res is None or edisgo_obj.results.i_res.empty: + logger.debug("Running initial power flow") + edisgo_obj.analyze(raise_not_converged=False) # Todo: raise warning? + + # Select most critical steps based on current violations + loading_scores = _scored_most_critical_loading(edisgo_obj) + if num_steps_loading is None: + num_steps_loading = int(len(loading_scores) * percentage) + else: + if num_steps_loading > len(loading_scores): + logger.info( + f"The number of time steps with highest overloading " + f"({len(loading_scores)}) is lower than the defined number of " + f"loading time steps ({num_steps_loading}). Therefore, only " + f"{len(loading_scores)} time steps are exported." + ) + num_steps_loading = len(loading_scores) + steps = loading_scores[:num_steps_loading].index + + # Select most critical steps based on voltage violations + voltage_scores = _scored_most_critical_voltage_issues(edisgo_obj) + if num_steps_voltage is None: + num_steps_voltage = int(len(voltage_scores) * percentage) + else: + if num_steps_voltage > len(voltage_scores): + logger.info( + f"The number of time steps with highest voltage issues " + f"({len(voltage_scores)}) is lower than the defined number of " + f"voltage time steps ({num_steps_voltage}). Therefore, only " + f"{len(voltage_scores)} time steps are exported." + ) + num_steps_voltage = len(voltage_scores) + steps = steps.append( + voltage_scores[:num_steps_voltage].index + ) # Todo: Can this cause duplicated? + + if len(steps) == 0: + logger.warning("No critical steps detected. No network expansion required.") + + return pd.DatetimeIndex(steps.unique()) + + def get_steps_curtailment(edisgo_obj, percentage=0.5): """ Get the time steps with the most critical violations for curtailment diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py new file mode 100644 index 000000000..cd6b42c6f --- /dev/null +++ b/tests/opf/test_timeseries_reduction.py @@ -0,0 +1,57 @@ +import numpy as np +import pytest + +from edisgo import EDisGo +from edisgo.opf.timeseries_reduction import ( + _scored_most_critical_loading, + _scored_most_critical_voltage_issues, + get_steps_reinforcement, +) + + +class TestTimeseriesReduction: + @classmethod + def setup_class(self): + self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + self.edisgo.set_time_series_worst_case_analysis() + self.timesteps = self.edisgo.timeseries.timeindex + + @pytest.fixture(autouse=True) + def run_power_flow(self): + """ + Fixture to run new power flow before each test. + + """ + self.edisgo.analyze() + + def test__scored_most_critical_loading(self): + + ts_crit = _scored_most_critical_loading(self.edisgo) + + assert len(ts_crit) == 3 + + assert (ts_crit.index == self.timesteps[[0, 1, 3]]).all() + + assert ( + np.isclose(ts_crit[self.timesteps[[0, 1, 3]]], [1.45613, 1.45613, 1.14647]) + ).all() + + def test__scored_most_critical_voltage_issues(self): + + ts_crit = _scored_most_critical_voltage_issues(self.edisgo) + + assert len(ts_crit) == 2 + + assert (ts_crit.index == self.timesteps[[0, 1]]).all() + + assert ( + np.isclose(ts_crit[self.timesteps[[0, 1]]], [0.01062258, 0.01062258]) + ).all() + + def test_get_steps_reinforcement(self): + + ts_crit = get_steps_reinforcement(self.edisgo) + + assert len(ts_crit) == 3 + + assert (ts_crit == self.timesteps[[0, 1, 3]]).all() From 2da2646a6caaee74d62351157ee0c9f4418c931c Mon Sep 17 00:00:00 2001 From: AnyaHe Date: Fri, 28 Apr 2023 14:49:26 +0200 Subject: [PATCH 287/355] add new option for timesteps_pfa to reinforce_grid and edisgo.reinforce() --- edisgo/edisgo.py | 4 ++++ edisgo/flex_opt/reinforce_grid.py | 3 +++ tests/flex_opt/test_reinforce_grid.py | 7 +++++++ 3 files changed, 14 insertions(+) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index e216c865b..807af58d7 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1102,6 +1102,10 @@ def reinforce( time steps. If your time series already represents the worst-case, keep the default value of None because finding the worst-case snapshots takes some time. + * 'reduced_analysis' + Reinforcement is conducted for all time steps at which at least one + branch shows its highest overloading or one bus shows its highest voltage + violation. * :pandas:`pandas.DatetimeIndex` or \ :pandas:`pandas.Timestamp` Use this option to explicitly choose which time steps to consider. diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index d0acf0250..42fb7d92a 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -11,6 +11,7 @@ from edisgo.flex_opt import check_tech_constraints as checks from edisgo.flex_opt import exceptions, reinforce_measures from edisgo.flex_opt.costs import grid_expansion_costs +from edisgo.opf.timeseries_reduction import get_steps_reinforcement from edisgo.tools import tools if TYPE_CHECKING: @@ -155,6 +156,8 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): snapshots["min_residual_load"], ] ).dropna() + elif isinstance(timesteps_pfa, str) and timesteps_pfa == "reduced_analysis": + timesteps_pfa = get_steps_reinforcement(edisgo) # if timesteps_pfa is not of type datetime or does not contain # datetimes throw an error elif not isinstance(timesteps_pfa, datetime.datetime): diff --git a/tests/flex_opt/test_reinforce_grid.py b/tests/flex_opt/test_reinforce_grid.py index 46085164d..c40344dfb 100644 --- a/tests/flex_opt/test_reinforce_grid.py +++ b/tests/flex_opt/test_reinforce_grid.py @@ -54,3 +54,10 @@ def test_reinforce_grid(self): result.equipment_changes, comparison_result.equipment_changes, ) + # test new mode + res_reduced = reinforce_grid( + edisgo=copy.deepcopy(self.edisgo), timesteps_pfa="reduced_analysis" + ) + assert_frame_equal( + res_reduced.equipment_changes, results_dict[None].equipment_changes + ) From 653b90da730b2bf01453fc8279ae61e7c744f026 Mon Sep 17 00:00:00 2001 From: AnyaHe Date: Fri, 28 Apr 2023 15:20:30 +0200 Subject: [PATCH 288/355] add type hinting --- edisgo/opf/timeseries_reduction.py | 37 +++++++++++++++++++++--------- 1 file changed, 26 insertions(+), 11 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 3ee48502b..bcfe79a21 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -1,5 +1,9 @@ +from __future__ import annotations + import logging +from typing import TYPE_CHECKING + import numpy as np import pandas as pd @@ -8,6 +12,9 @@ from edisgo.flex_opt import check_tech_constraints +if TYPE_CHECKING: + from edisgo import EDisGo + logger = logging.getLogger(__name__) @@ -30,9 +37,9 @@ def _scored_critical_loading(edisgo_obj): return crit_lines_score.sort_values(ascending=False) -def _scored_most_critical_loading(edisgo_obj): +def _scored_most_critical_loading(edisgo_obj: EDisGo) -> pd.Series: """ - Method to get time steps where at least one component + Method to get time steps where at least one branch shows its highest overloading """ # Get current relative to allowed current @@ -67,7 +74,11 @@ def _scored_critical_overvoltage(edisgo_obj): return voltage_dev_ov.sort_values(ascending=False) -def _scored_most_critical_voltage_issues(edisgo_obj): +def _scored_most_critical_voltage_issues(edisgo_obj: EDisGo) -> pd.Series: + """ + Method to get time steps where at least one bus shows its highest deviation from + allowed voltage boundaries + """ voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( edisgo_obj ) @@ -88,20 +99,24 @@ def _scored_most_critical_voltage_issues(edisgo_obj): def get_steps_reinforcement( - edisgo_obj, num_steps_loading=None, num_steps_voltage=None, percentage=1.0 -): + edisgo_obj: EDisGo, + num_steps_loading: int = 0, + num_steps_voltage: int = 0, + percentage: float = 1.0, +) -> pd.DatetimeIndex: """ - Get the time steps with the most critical violations for curtailment - optimization. + Get the time steps with the most critical violations for reduced reinforcement. + Parameters ----------- edisgo_obj : :class:`~.EDisGo` The eDisGo API object num_steps_loading: int - The number of most critical overloading events to select, if None percentage + The number of most critical overloading events to select, if set to 0 percentage is used num_steps_voltage: int - The number of most critical voltage issues to select, if None percentage is used + The number of most critical voltage issues to select, if set to 0 percentage is + used percentage : float The percentage of most critical time steps to select Returns @@ -116,7 +131,7 @@ def get_steps_reinforcement( # Select most critical steps based on current violations loading_scores = _scored_most_critical_loading(edisgo_obj) - if num_steps_loading is None: + if num_steps_loading == 0: num_steps_loading = int(len(loading_scores) * percentage) else: if num_steps_loading > len(loading_scores): @@ -131,7 +146,7 @@ def get_steps_reinforcement( # Select most critical steps based on voltage violations voltage_scores = _scored_most_critical_voltage_issues(edisgo_obj) - if num_steps_voltage is None: + if num_steps_voltage == 0: num_steps_voltage = int(len(voltage_scores) * percentage) else: if num_steps_voltage > len(voltage_scores): From 832087c2fa999e45cddeb6b9fc2d5f98446869b0 Mon Sep 17 00:00:00 2001 From: AnyaHe Date: Fri, 28 Apr 2023 15:22:37 +0200 Subject: [PATCH 289/355] adapt whatsnew --- doc/whatsnew/v0-3-0.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/whatsnew/v0-3-0.rst b/doc/whatsnew/v0-3-0.rst index e45a2e5df..c8462d0de 100644 --- a/doc/whatsnew/v0-3-0.rst +++ b/doc/whatsnew/v0-3-0.rst @@ -20,3 +20,4 @@ Changes * Added method to scale timeseries `#353 `_ * Added method to iteratively reinforce a grid in case the power flow analysis does not always converge `#353 `_ * Added method to aggregate LV grid buses to station bus secondary side `#353 `_ +* Added option to run reinforcement with reduced number of time steps `#379 `_ From d86463b43fd09cdaa7aee0b30246ed12cbe3c22e Mon Sep 17 00:00:00 2001 From: Maike Held Date: Tue, 2 May 2023 10:50:43 +0200 Subject: [PATCH 290/355] deleted resample method for dsm component manually resample dsm data in test_timeseries_reduction adjusted ovelying grid implementation for renewables curtailment --- edisgo/edisgo.py | 1 - edisgo/network/dsm.py | 35 ---------------- edisgo/opf/timeseries_reduction.py | 46 ++++++++++----------- tests/opf/test_timeseries_reduction.py | 57 +++++++++++++++----------- 4 files changed, 54 insertions(+), 85 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index dfb3c3850..2167b3f05 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2762,7 +2762,6 @@ def resample_timeseries( self.timeseries.resample(method=method, freq=freq) self.electromobility.resample(freq=freq) self.heat_pump.resample_timeseries(method=method, freq=freq) - self.dsm.resample(method=method, freq=freq) self.overlying_grid.resample(method=method, freq=freq) diff --git a/edisgo/network/dsm.py b/edisgo/network/dsm.py index 9b09d2874..8180186bf 100644 --- a/edisgo/network/dsm.py +++ b/edisgo/network/dsm.py @@ -7,8 +7,6 @@ import pandas as pd -from edisgo.tools.tools import resample - logger = logging.getLogger(__name__) @@ -264,36 +262,3 @@ def from_csv(self, data_path: str | Path, from_zip_archive: bool = False): if from_zip_archive: # make sure to destroy ZipFile Class to close any open connections zip.close() - - def resample(self, method: str = "ffill", freq: str | pd.Timedelta = "15min"): - """ - Resamples all time series to a desired resolution. - - See :attr:`~.EDisGo.resample_timeseries` for more information. - - Parameters - ---------- - method : str, optional - See :attr:`~.EDisGo.resample_timeseries` for more information. - - freq : str, optional - See :attr:`~.EDisGo.resample_timeseries` for more information. - - """ - # get frequency of time series data - timeindex = [] - for attr_str in self._attributes: - attr = getattr(self, attr_str) - if not attr.empty: - if len(attr) >= 2: - timeindex = attr.index - break - - if len(timeindex) < 2: - logger.warning( - "Data cannot be resampled as it only contains one time step." - ) - return - - freq_orig = timeindex[1] - timeindex[0] - resample(self, freq_orig, method, freq) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 46fd22ec2..5d9029399 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -752,31 +752,29 @@ def distribute_overlying_grid_timeseries(edisgo_obj): " overlying grid can not be distributed." ) if not edisgo_copy.overlying_grid.renewables_curtailment.empty: - for res in ["solar", "wind"]: - gens = edisgo_obj.topology.generators_df.index[ - edisgo_obj.topology.generators_df.type == res - ] - gen_per_ts = edisgo_obj.timeseries.generators_active_power.loc[:, gens].sum( - axis=1 - ) - scaling_factor = ( - ( - edisgo_obj.timeseries.generators_active_power.loc[ - :, gens - ].transpose() - * 1 - / gen_per_ts - ) - .transpose() - .fillna(0) - ) - curtailment = ( - scaling_factor.transpose() - * edisgo_obj.overlying_grid.renewables_curtailment[res] - ).transpose() - edisgo_copy.timeseries._generators_active_power.loc[:, gens] = ( - edisgo_obj.timeseries.generators_active_power.loc[:, gens] - curtailment + gens = edisgo_obj.topology.generators_df[ + (edisgo_obj.topology.generators_df.type == "solar") + | (edisgo_obj.topology.generators_df.type == "wind") + ].index + gen_per_ts = edisgo_obj.timeseries.generators_active_power.loc[:, gens].sum( + axis=1 + ) + scaling_factor = ( + ( + edisgo_obj.timeseries.generators_active_power.loc[:, gens].transpose() + * 1 + / gen_per_ts ) + .transpose() + .fillna(0) + ) + curtailment = ( + scaling_factor.transpose() + * edisgo_obj.overlying_grid.renewables_curtailment + ).transpose() + edisgo_copy.timeseries._generators_active_power.loc[:, gens] = ( + edisgo_obj.timeseries.generators_active_power.loc[:, gens] - curtailment + ) edisgo_copy.set_time_series_reactive_power_control() return edisgo_copy diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index 8ea803956..13f8f5220 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -161,17 +161,13 @@ def setup_flexibility_data(self): data = [0.5, 0.85, 0.85, 0.55] elif attr == "storage_units_active_power": data = [-0.35, -0.35, 0.35, 0.35] - if attr == "renewables_curtailment": - df = pd.DataFrame( - index=self.timesteps, - columns=["solar", "wind"], - data=0.1, - ) - else: - df = pd.Series( - index=self.timesteps, - data=data, - ) + elif attr == "renewables_curtailment": + data = [0, 0, 0.1, 0.1] + + df = pd.Series( + index=self.timesteps, + data=data, + ) setattr( self.edisgo.overlying_grid, attr, @@ -180,6 +176,26 @@ def setup_flexibility_data(self): # Resample timeseries and reindex to hourly timedelta self.edisgo.resample_timeseries(freq="1min") + + for attr in ["p_min", "p_max", "e_min", "e_max"]: + new_dates = pd.DatetimeIndex( + [getattr(self.edisgo.dsm, attr).index[-1] + pd.Timedelta("1h")] + ) + setattr( + self.edisgo.dsm, + attr, + getattr(self.edisgo.dsm, attr) + .reindex( + getattr(self.edisgo.dsm, attr) + .index.union(new_dates) + .unique() + .sort_values() + ) + .ffill() + .resample("1min") + .ffill() + .iloc[:-1], + ) self.timesteps = pd.date_range(start="01/01/2018", periods=240, freq="h") attributes = self.edisgo.timeseries._attributes for attr in attributes: @@ -235,17 +251,10 @@ def setup_flexibility_data(self): "storage_units_active_power", ]: if not getattr(self.edisgo.overlying_grid, attr).empty: - if attr == "renewables_curtailment": - df = pd.DataFrame( - index=self.timesteps, - columns=getattr(self.edisgo.overlying_grid, attr).columns, - data=getattr(self.edisgo.overlying_grid, attr).values, - ) - else: - df = pd.Series( - index=self.timesteps, - data=getattr(self.edisgo.overlying_grid, attr).values, - ) + df = pd.Series( + index=self.timesteps, + data=getattr(self.edisgo.overlying_grid, attr).values, + ) setattr( self.edisgo.overlying_grid, attr, @@ -360,9 +369,7 @@ def test_distribute_overlying_grid_timeseries(self): np.isclose( edisgo_copy.timeseries.generators_active_power[res].sum(axis=1)[i], self.edisgo.timeseries.generators_active_power[res].sum(axis=1)[i] - - self.edisgo.overlying_grid.renewables_curtailment.sum(axis=1).values[ - i - ], + - self.edisgo.overlying_grid.renewables_curtailment.values[i], atol=1e-5, ) for i in range(int(0.5 * len(self.timesteps)), len(self.timesteps)) From 5ebe32292301dd4eef1ac81454251b4b38411108 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 14:46:29 +0200 Subject: [PATCH 291/355] Adapt function _scored_most_critical_loading_time_interval --- edisgo/opf/timeseries_reduction.py | 111 +++++++++++++++++++++-------- 1 file changed, 81 insertions(+), 30 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 5d9029399..d01aed5b9 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -58,25 +58,57 @@ def _scored_most_critical_loading(edisgo_obj): return crit_lines_score.sort_values(ascending=False) -def _scored_most_critical_loading_time_interval(edisgo_obj, window_days): +def _scored_most_critical_loading_time_interval( + edisgo_obj, + time_steps_per_time_interval=168, + time_steps_per_day=24, + time_step_day_start=0, + overloading_factor=0.95, +): """ - Get the time steps with the most critical overloadings for flexibility - optimization. + Get time intervals sorted by severity of overloadings. + + The overloading is weighed by the expansion costs of each respective line and + transformer. + The length of the time intervals and hour of day at which the time intervals should + begin can be set through the parameters `time_steps_per_time_interval` and + `time_step_day_start`. + + This function currently only works for an hourly resolution! Parameters ----------- edisgo_obj : :class:`~.EDisGo` The eDisGo API object - window_days : int - Amount of continuous days that violation is determined for. Default: 7 + time_steps_per_time_interval : int + Amount of continuous time steps in an interval that violation is determined for. + Default: 168. + time_steps_per_day : int + Number of time steps in one day. In case of an hourly resolution this is 24. + Default: 24. + time_step_day_start : int + Time step of the day at which each interval should start. If you want it to + start at midnight, this should be set to 0. Default: 0. + overloading_factor : float + Factor at which an overloading of a component is considered to be close enough + to the highest overloading of that component. This is used to determine the + number of components that reach their highest overloading in each time interval. + Per default, it is set to 0.95, which means that if the highest overloading of + a component is 2, it will be considered maximally overloaded at an overloading + of higher or equal to 2*0.95. + Default: 0.95. Returns -------- - `pandas.DataFrame` - Contains time intervals and first time step of these intervals with worst - overloadings for given timeframe. Also contains information of how many - lines and transformers have had their worst overloading within the considered - timeframes. + :pandas:`pandas.DataFrame` + Contains time intervals in which grid expansion needs due to overloading of + lines and transformers are detected. The time intervals are sorted descending + by the expected cumulated grid expansion costs, so that the time interval with + the highest expected costs corresponds to index 0. The time steps in the + respective time interval are given in column "time_steps" and the share + of components for which the maximum overloading is reached during the time + interval is given in column "percentage_max_overloaded_components". + """ # Get current relative to allowed current @@ -84,7 +116,7 @@ def _scored_most_critical_loading_time_interval(edisgo_obj, window_days): # Get lines that have violations and replace nan values with 0 crit_lines_score = relative_i_res[relative_i_res > 1].fillna(0) - max_per_line = crit_lines_score.max() + # weight line violations with expansion costs costs_lines = ( line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) @@ -94,55 +126,74 @@ def _scored_most_critical_loading_time_interval(edisgo_obj, window_days): str(lv_grid) + "_station" for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids) ], - data=edisgo_obj.config._data["costs_transformers"]["lv"], + data=edisgo_obj.config["costs_transformers"]["lv"], ) costs_trafos_mv = pd.Series( index=["MVGrid_" + str(edisgo_obj.topology.id) + "_station"], - data=edisgo_obj.config._data["costs_transformers"]["mv"], + data=edisgo_obj.config["costs_transformers"]["mv"], ) costs = pd.concat([costs_lines, costs_trafos_lv, costs_trafos_mv]) - crit_lines_cost = crit_lines_score * costs - # Get most "expensive" time intervall over all components + + # Get highest overloading in each window for each component and sum it up crit_timesteps = ( - crit_lines_cost.rolling(window=int(window_days * 24), closed="right") + crit_lines_cost.rolling( + window=int(time_steps_per_time_interval), closed="right" + ) .max() .sum(axis=1) ) - # time intervall starts at 4am on every considered day + # select each nth time window to only consider windows starting at a certain time + # of day and sort time intervals in descending order + # ToDo: To make function work for frequencies other than hourly, the following + # needs to be adapted to index based on time index instead of iloc crit_timesteps = ( - crit_timesteps.iloc[int(window_days * 24) - 1 :] - .iloc[5::24] + crit_timesteps.iloc[int(time_steps_per_time_interval) - 1 :] + .iloc[time_step_day_start + 1 :: time_steps_per_day] .sort_values(ascending=False) ) - timesteps = crit_timesteps.index - pd.DateOffset(hours=int(window_days * 24)) + # move time index as rolling gives the end of the time interval, but we want the + # beginning + timesteps = crit_timesteps.index - pd.DateOffset( + hours=int(time_steps_per_time_interval) + ) time_intervals = [ - pd.date_range(start=timestep, periods=int(window_days * 24) + 1, freq="h") + pd.date_range( + start=timestep, periods=int(time_steps_per_time_interval), freq="h" + ) for timestep in timesteps ] + + # make dataframe with time steps in each time interval and the percentage of + # components that reach their maximum overloading time_intervals_df = pd.DataFrame( - index=range(len(time_intervals)), columns=["OL_ts", "OL_t1", "OL_max"] + index=range(len(time_intervals)), + columns=["time_steps", "percentage_max_overloaded_components"], ) - time_intervals_df["OL_t1"] = timesteps - for i in range(len(time_intervals)): - time_intervals_df["OL_ts"][i] = time_intervals[i] + time_intervals_df["time_steps"] = time_intervals lines_no_max = crit_lines_score.columns.values total_lines = len(lines_no_max) - # check if worst overloading of every line is included in worst three time intervals + max_per_line = crit_lines_score.max() for i in range(len(time_intervals)): - max_per_lin_ti = crit_lines_score.loc[time_intervals[i]].max() - time_intervals_df["OL_max"][i] = ( + # check if worst overloading of every line is included in time interval + max_per_line_ti = crit_lines_score.loc[time_intervals[i]].max() + time_intervals_df["percentage_max_overloaded_components"][i] = ( len( np.intersect1d( lines_no_max, - max_per_lin_ti[max_per_lin_ti >= max_per_line * 0.95].index.values, + max_per_line_ti[ + max_per_line_ti >= max_per_line * overloading_factor + ].index.values, ) ) / total_lines ) + # drop lines whose maximum overloading was not yet included in any time interval lines_no_max = np.intersect1d( lines_no_max, - max_per_lin_ti[max_per_lin_ti < max_per_line * 0.95].index.values, + max_per_line_ti[ + max_per_line_ti < max_per_line * overloading_factor + ].index.values, ) if i == 2: From eab4531c280bc251091650ee5e691d910c41c494 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 14:47:10 +0200 Subject: [PATCH 292/355] Expand test of _scored_most_critical_loading_time_interval --- tests/opf/test_timeseries_reduction.py | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index 13f8f5220..e6244a5d9 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -305,11 +305,31 @@ def test__scored_most_critical_loading_time_interval(self): self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() - ts_crit = _scored_most_critical_loading_time_interval(self.edisgo, 1) + # test with default values + ts_crit = _scored_most_critical_loading_time_interval(self.edisgo, 24) assert len(ts_crit) == 9 - for ts in ts_crit.OL_t1: - assert ts in self.timesteps + assert ( + ts_crit.loc[0, "time_steps"] + == pd.date_range("1/5/2018", periods=24, freq="H") + ).all() + assert np.isclose( + ts_crit.loc[0, "percentage_max_overloaded_components"], 0.96479 + ) + assert np.isclose( + ts_crit.loc[1, "percentage_max_overloaded_components"], 0.035211 + ) + + # test with non-default values + ts_crit = _scored_most_critical_loading_time_interval( + self.edisgo, 24, time_step_day_start=4, overloading_factor=0.9 + ) + assert len(ts_crit) == 9 + assert ( + ts_crit.loc[0, "time_steps"] + == pd.date_range("1/5/2018 4:00", periods=24, freq="H") + ).all() + assert ts_crit.loc[0, "percentage_max_overloaded_components"] == 1 def test__scored_most_critical_voltage_issues_time_interval(self): self.setup_class() From c4923b2fa37c2ce0a050f3b437c6896ffb417c41 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 14:49:36 +0200 Subject: [PATCH 293/355] Undo changes --- edisgo/flex_opt/check_tech_constraints.py | 2 +- tests/conftest.py | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/edisgo/flex_opt/check_tech_constraints.py b/edisgo/flex_opt/check_tech_constraints.py index a2d7df72d..6628f4c6e 100644 --- a/edisgo/flex_opt/check_tech_constraints.py +++ b/edisgo/flex_opt/check_tech_constraints.py @@ -650,7 +650,7 @@ def stations_allowed_load(edisgo_obj, grids=None): def stations_relative_load(edisgo_obj, grids=None): """ Returns relative loading of specified grids stations to the overlying voltage level - per time step in p.u. + per time step in p.u.. Stations relative loading is determined by dividing the stations loading (from power flow analysis) by the allowed loading (considering allowed load factors in diff --git a/tests/conftest.py b/tests/conftest.py index 73c551c3d..b92428ed5 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -20,10 +20,6 @@ def pytest_configure(config): pytest.ding0_test_network_3_path = os.path.join( os.path.realpath(os.path.dirname(__file__)), "data/ding0_test_network_3" ) - # real ding0 grid containing new egon data like flexibilities - pytest.ding0_test_network_4_path = os.path.join( - os.path.realpath(os.path.dirname(__file__)), "data/ding0_test_network_4.zip" - ) pytest.simbev_example_scenario_path = os.path.join( os.path.realpath(os.path.dirname(__file__)), "data/simbev_example_scenario" From 2e21af34a589c4d495b9d0eae351bb6ae1b0f87f Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 14:51:04 +0200 Subject: [PATCH 294/355] Undo changes --- edisgo/edisgo.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 2167b3f05..9d6cae812 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -2703,8 +2703,8 @@ def resample_timeseries( """ Resamples time series data in :class:`~.network.timeseries.TimeSeries`, :class:`~.network.heat.HeatPump`, - :class:`~.network.electromobility.Electromobility`, :class:`~.network.dsm.DSM` - and :class:`~.network.overlying_grid.OverlyingGrid`. + :class:`~.network.electromobility.Electromobility` and + :class:`~.network.overlying_grid.OverlyingGrid`. Both up- and down-sampling methods are possible. @@ -2728,8 +2728,6 @@ def resample_timeseries( * :attr:`~.network.heat.HeatPump.heat_demand_df` - * All data in :class:`~.network.dsm.DSM` - * All data in :class:`~.network.overlying_grid.OverlyingGrid` Parameters From 9eb5d3d8ea771370eec57593c64eab11e7c65782 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 16:47:24 +0200 Subject: [PATCH 295/355] Remove functions introduced in another PR --- edisgo/opf/timeseries_reduction.py | 108 ------------------------- tests/opf/test_timeseries_reduction.py | 62 ++++---------- 2 files changed, 16 insertions(+), 154 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index d01aed5b9..a8d043077 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -35,29 +35,6 @@ def _scored_critical_loading(edisgo_obj): return crit_lines_score.sort_values(ascending=False) -def _scored_most_critical_loading(edisgo_obj): - """ - Method to get time steps where at least one component - """ - - # Get current relative to allowed current - relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj) - - # Get lines that have violations - crit_lines_score = relative_i_res[relative_i_res > 1] - - # Get most critical timesteps per component - crit_lines_score = ( - (crit_lines_score[crit_lines_score == crit_lines_score.max()]) - .dropna(how="all") - .dropna(how="all", axis=1) - ) - - # Sort according to highest cumulated relative overloading - crit_lines_score = (crit_lines_score - 1).sum(axis=1) - return crit_lines_score.sort_values(ascending=False) - - def _scored_most_critical_loading_time_interval( edisgo_obj, time_steps_per_time_interval=168, @@ -220,26 +197,6 @@ def _scored_critical_overvoltage(edisgo_obj): return voltage_dev_ov.sort_values(ascending=False) -def _scored_most_critical_voltage_issues(edisgo_obj): - voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( - edisgo_obj - ) - - # Get score for nodes that are over or under the allowed deviations - voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] - # get only most critical events for component - # Todo: should there be different ones for over and undervoltage? - voltage_diff = ( - (voltage_diff[voltage_diff.abs() == voltage_diff.abs().max()]) - .dropna(how="all") - .dropna(how="all", axis=1) - ) - - voltage_diff = voltage_diff.sum(axis=1) - - return voltage_diff.sort_values(ascending=False) - - def _scored_most_critical_voltage_issues_time_interval(edisgo_obj, window_days): """ Get the time steps with the most critical voltage violations for flexibilities @@ -378,71 +335,6 @@ def _scored_most_critical_voltage_issues_time_interval(edisgo_obj, window_days): return time_intervals_df -def get_steps_reinforcement( - edisgo_obj, num_steps_loading=None, num_steps_voltage=None, percentage=1.0 -): - """ - Get the time steps with the most critical violations for curtailment - optimization. - Parameters - ----------- - edisgo_obj : :class:`~.EDisGo` - The eDisGo API object - num_steps_loading: int - The number of most critical overloading events to select, if None percentage - is used - num_steps_voltage: int - The number of most critical voltage issues to select, if None percentage is used - percentage : float - The percentage of most critical time steps to select - Returns - -------- - `pandas.DatetimeIndex` - the reduced time index for modeling curtailment - """ - # Run power flow if not available - if edisgo_obj.results.i_res is None or edisgo_obj.results.i_res.empty: - logger.debug("Running initial power flow") - edisgo_obj.analyze(raise_not_converged=False) # Todo: raise warning? - - # Select most critical steps based on current violations - loading_scores = _scored_most_critical_loading(edisgo_obj) - if num_steps_loading is None: - num_steps_loading = int(len(loading_scores) * percentage) - else: - if num_steps_loading > len(loading_scores): - logger.info( - f"The number of time steps with highest overloading " - f"({len(loading_scores)}) is lower than the defined number of " - f"loading time steps ({num_steps_loading}). Therefore, only " - f"{len(loading_scores)} time steps are exported." - ) - num_steps_loading = len(loading_scores) - steps = loading_scores[:num_steps_loading].index - - # Select most critical steps based on voltage violations - voltage_scores = _scored_most_critical_voltage_issues(edisgo_obj) - if num_steps_voltage is None: - num_steps_voltage = int(len(voltage_scores) * percentage) - else: - if num_steps_voltage > len(voltage_scores): - logger.info( - f"The number of time steps with highest voltage issues " - f"({len(voltage_scores)}) is lower than the defined number of " - f"voltage time steps ({num_steps_voltage}). Therefore, only " - f"{len(voltage_scores)} time steps are exported." - ) - num_steps_voltage = len(voltage_scores) - steps = steps.append( - voltage_scores[:num_steps_voltage].index - ) # Todo: Can this cause duplicated? - - if len(steps) == 0: - logger.warning("No critical steps detected. No network expansion required.") - - return pd.DatetimeIndex(steps.unique()) - - def get_steps_curtailment(edisgo_obj, percentage=0.5): """ Get the time steps with the most critical violations for curtailment diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index e6244a5d9..3bb6b774e 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -3,15 +3,7 @@ import pytest from edisgo import EDisGo -from edisgo.opf.timeseries_reduction import ( - _scored_most_critical_loading, - _scored_most_critical_loading_time_interval, - _scored_most_critical_voltage_issues, - _scored_most_critical_voltage_issues_time_interval, - distribute_overlying_grid_timeseries, - get_steps_flex_opf, - get_steps_reinforcement, -) +from edisgo.opf import timeseries_reduction class TestTimeseriesReduction: @@ -269,45 +261,15 @@ def run_power_flow(self): """ self.edisgo.analyze() - def test__scored_most_critical_loading(self): - - ts_crit = _scored_most_critical_loading(self.edisgo) - - assert len(ts_crit) == 3 - - assert (ts_crit.index == self.timesteps[[0, 1, 3]]).all() - - assert ( - np.isclose(ts_crit[self.timesteps[[0, 1, 3]]], [1.45613, 1.45613, 1.14647]) - ).all() - - def test__scored_most_critical_voltage_issues(self): - - ts_crit = _scored_most_critical_voltage_issues(self.edisgo) - - assert len(ts_crit) == 2 - - assert (ts_crit.index == self.timesteps[[0, 1]]).all() - - assert ( - np.isclose(ts_crit[self.timesteps[[0, 1]]], [0.01062258, 0.01062258]) - ).all() - - def test_get_steps_reinforcement(self): - - ts_crit = get_steps_reinforcement(self.edisgo) - - assert len(ts_crit) == 3 - - assert (ts_crit == self.timesteps[[0, 1, 3]]).all() - def test__scored_most_critical_loading_time_interval(self): self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() # test with default values - ts_crit = _scored_most_critical_loading_time_interval(self.edisgo, 24) + ts_crit = timeseries_reduction._scored_most_critical_loading_time_interval( + self.edisgo, 24 + ) assert len(ts_crit) == 9 assert ( ts_crit.loc[0, "time_steps"] @@ -321,7 +283,7 @@ def test__scored_most_critical_loading_time_interval(self): ) # test with non-default values - ts_crit = _scored_most_critical_loading_time_interval( + ts_crit = timeseries_reduction._scored_most_critical_loading_time_interval( self.edisgo, 24, time_step_day_start=4, overloading_factor=0.9 ) assert len(ts_crit) == 9 @@ -335,7 +297,11 @@ def test__scored_most_critical_voltage_issues_time_interval(self): self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() - ts_crit = _scored_most_critical_voltage_issues_time_interval(self.edisgo, 1) + ts_crit = ( + timeseries_reduction._scored_most_critical_voltage_issues_time_interval( + self.edisgo, 24, time_step_day_start=4 + ) + ) assert len(ts_crit) == 9 for ts in ts_crit.V_t1: @@ -345,7 +311,9 @@ def test_get_steps_flex_opf(self): self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() - steps = get_steps_flex_opf(self.edisgo, num_ti=6, window_days=1) + steps = timeseries_reduction.get_steps_flex_opf( + self.edisgo, num_ti=6, window_days=1 + ) assert len(steps) == 6 assert len(steps.columns) == 6 @@ -353,7 +321,9 @@ def test_get_steps_flex_opf(self): def test_distribute_overlying_grid_timeseries(self): self.setup_class() self.setup_flexibility_data() - edisgo_copy = distribute_overlying_grid_timeseries(self.edisgo) + edisgo_copy = timeseries_reduction.distribute_overlying_grid_timeseries( + self.edisgo + ) dsm = self.edisgo.dsm.e_max.columns.values hps = self.edisgo.heat_pump.cop_df.columns.values res = self.edisgo.topology.generators_df.loc[ From ab0d07a666bd2865f94695cfa3acca9d413972d2 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 16:47:44 +0200 Subject: [PATCH 296/355] Adapt docstring --- edisgo/opf/timeseries_reduction.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index a8d043077..0470ded5d 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -45,8 +45,8 @@ def _scored_most_critical_loading_time_interval( """ Get time intervals sorted by severity of overloadings. - The overloading is weighed by the expansion costs of each respective line and - transformer. + The overloading is weighed by the estimated expansion costs of each respective line + and transformer. The length of the time intervals and hour of day at which the time intervals should begin can be set through the parameters `time_steps_per_time_interval` and `time_step_day_start`. @@ -59,9 +59,12 @@ def _scored_most_critical_loading_time_interval( The eDisGo API object time_steps_per_time_interval : int Amount of continuous time steps in an interval that violation is determined for. + Currently, these can only be multiples of 24. Default: 168. time_steps_per_day : int Number of time steps in one day. In case of an hourly resolution this is 24. + As currently only an hourly resolution is possible, this value should always be + 24. Default: 24. time_step_day_start : int Time step of the day at which each interval should start. If you want it to @@ -84,7 +87,9 @@ def _scored_most_critical_loading_time_interval( the highest expected costs corresponds to index 0. The time steps in the respective time interval are given in column "time_steps" and the share of components for which the maximum overloading is reached during the time - interval is given in column "percentage_max_overloaded_components". + interval is given in column "percentage_max_overloaded_components". Each + component is only considered once. That means if its maximum voltage deviation + was already considered in an earlier time interval, it is not considered again. """ From 647dd0a4e3417ff899e96917137d42d39f4d94c0 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 16:52:12 +0200 Subject: [PATCH 297/355] Adapt function _scored_most_critical_voltage_issues_time_interval --- edisgo/opf/timeseries_reduction.py | 142 ++++++++++++++++++----------- 1 file changed, 91 insertions(+), 51 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 0470ded5d..faa314a2c 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -202,37 +202,73 @@ def _scored_critical_overvoltage(edisgo_obj): return voltage_dev_ov.sort_values(ascending=False) -def _scored_most_critical_voltage_issues_time_interval(edisgo_obj, window_days): +def _scored_most_critical_voltage_issues_time_interval( + edisgo_obj, + time_steps_per_time_interval=168, + time_steps_per_day=24, + time_step_day_start=0, + voltage_deviation_factor=0.95, +): """ - Get the time steps with the most critical voltage violations for flexibilities - optimization. + Get time intervals sorted by severity of voltage issues. + + The voltage issues are weighed by the estimated expansion costs in each respective + feeder. + The length of the time intervals and hour of day at which the time intervals should + begin can be set through the parameters `time_steps_per_time_interval` and + `time_step_day_start`. + + This function currently only works for an hourly resolution! Parameters ----------- edisgo_obj : :class:`~.EDisGo` The eDisGo API object - window_days : int - Amount of continuous days that violation is determined for. Default: 7 + time_steps_per_time_interval : int + Amount of continuous time steps in an interval that violation is determined for. + Currently, these can only be multiples of 24. + Default: 168. + time_steps_per_day : int + Number of time steps in one day. In case of an hourly resolution this is 24. + As currently only an hourly resolution is possible, this value should always be + 24. + Default: 24. + time_step_day_start : int + Time step of the day at which each interval should start. If you want it to + start at midnight, this should be set to 0. Default: 0. + voltage_deviation_factor : float + Factor at which a voltage deviation at a bus is considered to be close enough + to the highest voltage deviation at that bus. This is used to determine the + number of buses that reach their highest voltage deviation in each time + interval. Per default, it is set to 0.95. This means that if the highest voltage + deviation at a bus is 0.2, it will be included in the determination of number + of buses that reach their maximum voltage deviation in a certain time interval + at a voltage deviation of higher or equal to 0.2*0.95. + Default: 0.95. Returns -------- - `pandas.DataFrame` - Contains time intervals and first time step of these intervals with worst - voltage violations for given timeframe. Also contains information of how many - lines and transformers have had their worst voltage violation within the - considered timeframes. + :pandas:`pandas.DataFrame` + Contains time intervals in which grid expansion needs due to voltage issues + are detected. The time intervals are sorted descending + by the expected cumulated grid expansion costs, so that the time interval with + the highest expected costs corresponds to index 0. The time steps in the + respective time interval are given in column "time_steps" and the share + of buses for which the maximum voltage deviation is reached during the time + interval is given in column "percentage_max_overloaded_components". Each bus + is only considered once. That means if its maximum voltage deviation was + already considered in an earlier time interval, it is not considered again. + """ + + # Get voltage deviation from allowed voltage limits voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( edisgo_obj - ).fillna(0) - - # Get score for nodes that are over or under the allowed deviations + ) voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] - max_per_bus = voltage_diff.max().fillna(0) - - assign_feeder(edisgo_obj, mode="mv_feeder") # determine costs per feeder + # ToDo use LV feeder costs_lines = ( line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) ) @@ -242,12 +278,9 @@ def _scored_most_critical_voltage_issues_time_interval(edisgo_obj, window_days): ], data=edisgo_obj.config._data["costs_transformers"]["lv"], ) - costs_trafos_mv = pd.Series( - index=[edisgo_obj.topology.mv_grid.station.index[0]], - data=edisgo_obj.config._data["costs_transformers"]["mv"], - ) - costs = pd.concat([costs_lines, costs_trafos_lv, costs_trafos_mv]) + costs = pd.concat([costs_lines, costs_trafos_lv]) + assign_feeder(edisgo_obj, mode="mv_feeder") feeder_lines = edisgo_obj.topology.lines_df.mv_feeder feeder_trafos_lv = pd.Series( index=[ @@ -258,24 +291,17 @@ def _scored_most_critical_voltage_issues_time_interval(edisgo_obj, window_days): for lv_grid in edisgo_obj.topology.mv_grid.lv_grids ], ) - feeder_trafos_mv = pd.Series( - index=[edisgo_obj.topology.mv_grid.station.index[0]], - data=[edisgo_obj.topology.mv_grid.station.mv_feeder[0]], - ) - feeder = pd.concat([feeder_lines, feeder_trafos_lv, feeder_trafos_mv]) + feeder = pd.concat([feeder_lines, feeder_trafos_lv]) costs_per_feeder = ( pd.concat([costs.rename("costs"), feeder.rename("feeder")], axis=1) .groupby(by="feeder")[["costs"]] .sum() ) - # check vor every feeder if any of the buses within violate the allowed voltage - # deviation + # check for every feeder if any of the buses within violate the allowed voltage + # deviation, by grouping voltage_diff per MV feeder feeder_buses = edisgo_obj.topology.buses_df.mv_feeder - columns = [ - feeder_buses.loc[voltage_diff.columns[i]] - for i in range(len(voltage_diff.columns)) - ] + columns = [feeder_buses.loc[col] for col in voltage_diff.columns] voltage_diff_copy = deepcopy(voltage_diff).fillna(0) voltage_diff.columns = columns voltage_diff_feeder = ( @@ -283,52 +309,66 @@ def _scored_most_critical_voltage_issues_time_interval(edisgo_obj, window_days): ) voltage_diff_feeder[voltage_diff_feeder != 0] = 1 - # weigth feeder voltage violation with costs per feeder + # weigh feeder voltage violation with costs per feeder voltage_diff_feeder = voltage_diff_feeder * costs_per_feeder.squeeze() - # Todo: should there be different ones for over and undervoltage? - # Get most "expensive" time intervall over all feeders + + # Get the highest voltage issues in each window for each feeder and sum it up crit_timesteps = ( - voltage_diff_feeder.rolling(window=int(window_days * 24), closed="right") + voltage_diff_feeder.rolling( + window=int(time_steps_per_time_interval), closed="right" + ) .max() .sum(axis=1) ) - # time intervall starts at 4am on every considered day + # select each nth time window to only consider windows starting at a certain time + # of day and sort time intervals in descending order + # ToDo: To make function work for frequencies other than hourly, the following + # needs to be adapted to index based on time index instead of iloc crit_timesteps = ( - crit_timesteps.iloc[int(window_days * 24) - 1 :] - .iloc[5::24] + crit_timesteps.iloc[int(time_steps_per_time_interval) - 1 :] + .iloc[time_step_day_start + 1 :: time_steps_per_day] .sort_values(ascending=False) ) - timesteps = crit_timesteps.index - pd.DateOffset(hours=int(window_days * 24)) + timesteps = crit_timesteps.index - pd.DateOffset( + hours=int(time_steps_per_time_interval) + ) time_intervals = [ - pd.date_range(start=timestep, periods=int(window_days * 24) + 1, freq="h") + pd.date_range( + start=timestep, periods=int(time_steps_per_time_interval), freq="h" + ) for timestep in timesteps ] + + # make dataframe with time steps in each time interval and the percentage of + # buses that reach their maximum voltage deviation time_intervals_df = pd.DataFrame( - index=range(len(time_intervals)), columns=["V_ts", "V_t1", "V_max"] + index=range(len(time_intervals)), + columns=["time_steps", "percentage_buses_max_voltage_deviation"], ) - time_intervals_df["V_t1"] = timesteps - for i in range(len(time_intervals)): - time_intervals_df["V_ts"][i] = time_intervals[i] + time_intervals_df["time_steps"] = time_intervals + max_per_bus = voltage_diff_copy.max().fillna(0) buses_no_max = max_per_bus.index.values total_buses = len(buses_no_max) - - # check if worst voltage deviation of every bus is included in worst three time - # intervals for i in range(len(time_intervals)): + # check if worst voltage deviation of every bus is included in time interval max_per_bus_ti = voltage_diff_copy.loc[time_intervals[i]].max() - time_intervals_df["V_max"][i] = ( + time_intervals_df["percentage_buses_max_voltage_deviation"][i] = ( len( np.intersect1d( buses_no_max, - max_per_bus_ti[max_per_bus_ti >= max_per_bus * 0.95].index.values, + max_per_bus_ti[ + max_per_bus_ti >= max_per_bus * voltage_deviation_factor + ].index.values, ) ) / total_buses ) buses_no_max = np.intersect1d( buses_no_max, - max_per_bus_ti[max_per_bus_ti < max_per_bus * 0.95].index.values, + max_per_bus_ti[ + max_per_bus_ti < max_per_bus * voltage_deviation_factor + ].index.values, ) if i == 2: if len(buses_no_max) > 0: From ae2998c3873db9e3100f42095895498a77485fc4 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 20:45:41 +0200 Subject: [PATCH 298/355] Set different feeders for LV components and stations secondary sides --- edisgo/opf/timeseries_reduction.py | 41 ++++++++++++++++++++---------- 1 file changed, 27 insertions(+), 14 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index faa314a2c..4834e0b9c 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -268,28 +268,41 @@ def _scored_most_critical_voltage_issues_time_interval( voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] # determine costs per feeder - # ToDo use LV feeder + lv_station_buses = [ + lv_grid.station.index[0] for lv_grid in edisgo_obj.topology.mv_grid.lv_grids + ] costs_lines = ( line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) ) costs_trafos_lv = pd.Series( - index=[ - lv_grid.station.index[0] for lv_grid in edisgo_obj.topology.mv_grid.lv_grids - ], + index=lv_station_buses, data=edisgo_obj.config._data["costs_transformers"]["lv"], ) costs = pd.concat([costs_lines, costs_trafos_lv]) + # set feeder using MV feeder for MV components and LV feeder for LV components assign_feeder(edisgo_obj, mode="mv_feeder") - feeder_lines = edisgo_obj.topology.lines_df.mv_feeder + assign_feeder(edisgo_obj, mode="lv_feeder") + edisgo_obj.topology.lines_df["feeder"] = edisgo_obj.topology.lines_df.apply( + lambda _: _.mv_feeder + if _.name in edisgo_obj.topology.mv_grid.lines_df.index + else _.lv_feeder, + axis=1, + ) + edisgo_obj.topology.buses_df["feeder"] = edisgo_obj.topology.buses_df.apply( + lambda _: _.mv_feeder + if _.name in edisgo_obj.topology.mv_grid.buses_df.index + else _.lv_feeder, + axis=1, + ) + # feeders of buses at MV/LV station's secondary sides are set to the name of the + # station bus to have them as separate feeders + edisgo_obj.topology.buses_df.loc[lv_station_buses, "feeder"] = lv_station_buses + + feeder_lines = edisgo_obj.topology.lines_df.feeder feeder_trafos_lv = pd.Series( - index=[ - lv_grid.station.index[0] for lv_grid in edisgo_obj.topology.mv_grid.lv_grids - ], - data=[ - lv_grid.station.mv_feeder[0] - for lv_grid in edisgo_obj.topology.mv_grid.lv_grids - ], + index=lv_station_buses, + data=lv_station_buses, ) feeder = pd.concat([feeder_lines, feeder_trafos_lv]) costs_per_feeder = ( @@ -299,8 +312,8 @@ def _scored_most_critical_voltage_issues_time_interval( ) # check for every feeder if any of the buses within violate the allowed voltage - # deviation, by grouping voltage_diff per MV feeder - feeder_buses = edisgo_obj.topology.buses_df.mv_feeder + # deviation, by grouping voltage_diff per feeder + feeder_buses = edisgo_obj.topology.buses_df.feeder columns = [feeder_buses.loc[col] for col in voltage_diff.columns] voltage_diff_copy = deepcopy(voltage_diff).fillna(0) voltage_diff.columns = columns From c4f05584136463fc723344d7df076f58083dff94 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 20:46:46 +0200 Subject: [PATCH 299/355] Expand test --- tests/opf/test_timeseries_reduction.py | 28 +++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index 3bb6b774e..bdd2becc3 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -297,15 +297,37 @@ def test__scored_most_critical_voltage_issues_time_interval(self): self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() + + # test with default values ts_crit = ( timeseries_reduction._scored_most_critical_voltage_issues_time_interval( - self.edisgo, 24, time_step_day_start=4 + self.edisgo, 24 ) ) + assert len(ts_crit) == 9 + assert ( + ts_crit.loc[0, "time_steps"] + == pd.date_range("1/1/2018", periods=24, freq="H") + ).all() + assert np.isclose( + ts_crit.loc[0, "percentage_buses_max_voltage_deviation"], 0.98592 + ) + assert np.isclose(ts_crit.loc[1, "percentage_buses_max_voltage_deviation"], 0.0) + # test with non-default values + ts_crit = ( + timeseries_reduction._scored_most_critical_voltage_issues_time_interval( + self.edisgo, 24, time_step_day_start=4, voltage_deviation_factor=0.5 + ) + ) assert len(ts_crit) == 9 - for ts in ts_crit.V_t1: - assert ts in self.timesteps + assert ( + ts_crit.loc[0, "time_steps"] + == pd.date_range("1/1/2018 4:00", periods=24, freq="H") + ).all() + assert np.isclose( + ts_crit.loc[0, "percentage_buses_max_voltage_deviation"], 0.99296 + ) def test_get_steps_flex_opf(self): self.setup_class() From 1b23a1cfb0abbc2df5fd80f3c9e7d0af3c8700b3 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 21:24:11 +0200 Subject: [PATCH 300/355] Adapt function --- edisgo/opf/timeseries_reduction.py | 147 ++++++++++++++++++------- tests/opf/test_timeseries_reduction.py | 10 +- 2 files changed, 114 insertions(+), 43 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 4834e0b9c..359ba2136 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -486,90 +486,161 @@ def get_steps_storage(edisgo_obj, window=5): return pd.DatetimeIndex(reduced) -def get_steps_flex_opf( +def get_most_critical_time_intervals( edisgo_obj, - num_ti=None, - percentage=0.1, - window_days=7, + num_time_intervals=None, + percentage=1.0, + time_steps_per_time_interval=168, + time_step_day_start=0, save_steps=False, path="", + overloading_factor=0.95, + voltage_deviation_factor=0.95, ): """ - Get the time steps with the most critical violations for curtailment - optimization. + Get time intervals sorted by severity of overloadings as well as voltage issues. + + The overloading and voltage issues are weighed by the estimated expansion costs + solving the issue would require. + The length of the time intervals and hour of day at which the time intervals should + begin can be set through the parameters `time_steps_per_time_interval` and + `time_step_day_start`. + + This function currently only works for an hourly resolution! + Parameters ----------- edisgo_obj : :class:`~.EDisGo` The eDisGo API object - num_ti: int - The number of most critical line loading and voltage issues to select. If None - percentage is used. Default: None + num_time_intervals : int + The number of time intervals of most critical line loading and voltage issues + to select. If None, `percentage` is used. Default: None. percentage : float - The percentage of most critical time intervals to select. Default: 0.1 - window_days : int - Amount of continuous days that violation is determined for. Default: 7 + The percentage of most critical time intervals to select. Default: 1.0. + time_steps_per_time_interval : int + Amount of continuous time steps in an interval that violation is determined for. + Currently, these can only be multiples of 24. + Default: 168. + time_step_day_start : int + Time step of the day at which each interval should start. If you want it to + start at midnight, this should be set to 0. Default: 0. save_steps : bool - If set to True, dataframe with time intervals is saved to csv file. - Default: False - path: - Directory the csv file is saved to. Per default it takes the current + If set to True, dataframe with time intervals is saved to csv file. The path + can be specified through parameter `path`. + Default: False. + path : str + Directory the csv file is saved to. Per default, it takes the current working directory. + overloading_factor : float + Factor at which an overloading of a component is considered to be close enough + to the highest overloading of that component. This is used to determine the + number of components that reach their highest overloading in each time interval. + Per default, it is set to 0.95, which means that if the highest overloading of + a component is 2, it will be considered maximally overloaded at an overloading + of higher or equal to 2*0.95. + Default: 0.95. + voltage_deviation_factor : float + Factor at which a voltage deviation at a bus is considered to be close enough + to the highest voltage deviation at that bus. This is used to determine the + number of buses that reach their highest voltage deviation in each time + interval. Per default, it is set to 0.95. This means that if the highest voltage + deviation at a bus is 0.2, it will be included in the determination of number + of buses that reach their maximum voltage deviation in a certain time interval + at a voltage deviation of higher or equal to 0.2*0.95. + Default: 0.95. Returns -------- - `pandas.DataFrame` - Contains time intervals and first time step of these intervals with worst grid - violations for given timeframe. Also contains information of how many lines and - transformers have had their worst violation within the considered timeframes. + :pandas:`pandas.DataFrame` + Contains time intervals in which grid expansion needs due to overloading and + voltage issues are detected. The time intervals are determined independently + for overloading and voltage issues and sorted descending by the expected + cumulated grid expansion costs, so that the time intervals with the highest + expected costs correspond to index 0. + In case of overloading, the time steps in the respective time interval are given + in column "time_steps_overloading" and the share of components for which the + maximum overloading is reached during the time interval is given in column + "percentage_max_overloaded_components". + For voltage issues, the time steps in the respective time interval are given + in column "time_steps_voltage_issues" and the share of buses for which the + maximum voltage deviation is reached during the time interval is given in column + "percentage_max_overloaded_components". + For the calculation of the percentage, each component respectively bus + is only considered once. That means if its maximum overloading or voltage + deviation was already considered in an earlier time interval, it is not + considered again. + """ + # check frequency of time series data + timeindex = edisgo_obj.timeseries.timeindex + timedelta = timeindex[1] - timeindex[0] + if timedelta != pd.Timedelta("1h"): + logger.warning( + "The function 'get_most_critical_time_intervals' can currently only be " + "applied to time series data in an hourly resolution." + ) + # Run power flow if not available if edisgo_obj.results.i_res is None or edisgo_obj.results.i_res.empty: logger.debug("Running initial power flow") edisgo_obj.analyze(raise_not_converged=False) # Todo: raise warning? - # Select most critical time intervalls based on current violations + # Select most critical time intervals based on current violations loading_scores = _scored_most_critical_loading_time_interval( - edisgo_obj, window_days + edisgo_obj, + time_steps_per_time_interval, + time_step_day_start=time_step_day_start, + overloading_factor=overloading_factor, ) - if num_ti is None: - num_ti = int(np.ceil(len(loading_scores) * percentage)) + if num_time_intervals is None: + num_time_intervals = int(np.ceil(len(loading_scores) * percentage)) else: - if num_ti > len(loading_scores): + if num_time_intervals > len(loading_scores): logger.info( f"The number of time intervals with highest overloading " f"({len(loading_scores)}) is lower than the defined number of " - f"loading time intervals ({num_ti}). Therefore, only " + f"loading time intervals ({num_time_intervals}). Therefore, only " f"{len(loading_scores)} time intervals are exported." ) - num_ti = len(loading_scores) - steps = loading_scores.iloc[:num_ti] + num_time_intervals = len(loading_scores) + steps = loading_scores.iloc[:num_time_intervals] # Select most critical steps based on voltage violations voltage_scores = _scored_most_critical_voltage_issues_time_interval( - edisgo_obj, window_days + edisgo_obj, + time_steps_per_time_interval, + time_step_day_start=time_step_day_start, + voltage_deviation_factor=voltage_deviation_factor, ) - if num_ti is None: - num_ti = int(np.ceil(len(voltage_scores) * percentage)) + if num_time_intervals is None: + num_time_intervals = int(np.ceil(len(voltage_scores) * percentage)) else: - if num_ti > len(voltage_scores): + if num_time_intervals > len(voltage_scores): logger.info( f"The number of time steps with highest voltage issues " f"({len(voltage_scores)}) is lower than the defined number of " - f"voltage time steps ({num_ti}). Therefore, only " + f"voltage time steps ({num_time_intervals}). Therefore, only " f"{len(voltage_scores)} time steps are exported." ) - num_ti = len(voltage_scores) - steps = pd.concat([steps, voltage_scores.iloc[:num_ti]], axis=1) - + num_time_intervals = len(voltage_scores) + + # merge time intervals + steps = pd.merge( + steps, + voltage_scores.iloc[:num_time_intervals], + left_index=True, + right_index=True, + suffixes=("_overloading", "_voltage_issues"), + ) if len(steps) == 0: - logger.warning("No critical steps detected. No network expansion required.") + logger.info("No critical steps detected. No network expansion required.") if save_steps: abs_path = os.path.abspath(path) steps.to_csv( os.path.join( abs_path, - str(edisgo_obj.topology.id) + "_t" + str(window_days * 24 + 1) + ".csv", + f"{edisgo_obj.topology.id}_t_{time_steps_per_time_interval}.csv", ) ) return steps diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index bdd2becc3..df94b20a8 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -329,16 +329,16 @@ def test__scored_most_critical_voltage_issues_time_interval(self): ts_crit.loc[0, "percentage_buses_max_voltage_deviation"], 0.99296 ) - def test_get_steps_flex_opf(self): + def test_get_most_critical_time_intervals(self): self.setup_class() self.setup_flexibility_data() self.edisgo.analyze() - steps = timeseries_reduction.get_steps_flex_opf( - self.edisgo, num_ti=6, window_days=1 + steps = timeseries_reduction.get_most_critical_time_intervals( + self.edisgo, ) - assert len(steps) == 6 - assert len(steps.columns) == 6 + assert len(steps) == 3 + assert len(steps.columns) == 4 def test_distribute_overlying_grid_timeseries(self): self.setup_class() From 0a7f6e5acbf566844526af9dec91ad88040d9d7d Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 2 May 2023 23:14:06 +0200 Subject: [PATCH 301/355] Add iteration until power flow converges --- edisgo/opf/timeseries_reduction.py | 56 +++++++++++++++++++++++++++--- 1 file changed, 52 insertions(+), 4 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 359ba2136..7d4da4c3f 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -494,6 +494,7 @@ def get_most_critical_time_intervals( time_step_day_start=0, save_steps=False, path="", + use_troubleshooting_mode=True, overloading_factor=0.95, voltage_deviation_factor=0.95, ): @@ -531,6 +532,13 @@ def get_most_critical_time_intervals( path : str Directory the csv file is saved to. Per default, it takes the current working directory. + use_troubleshooting_mode : bool + If set to True, non-convergence issues in power flow are tried to be handled + by reducing load and feed-in in steps of 10% down to 20% of the original load + and feed-in until the power flow converges. The most critical time intervals + are then determined based on the power flow results with the reduced load and + feed-in. If False, an error will be raised in case time steps do not converge. + Default: True. overloading_factor : float Factor at which an overloading of a component is considered to be close enough to the highest overloading of that component. This is used to determine the @@ -580,10 +588,50 @@ def get_most_critical_time_intervals( "applied to time series data in an hourly resolution." ) - # Run power flow if not available - if edisgo_obj.results.i_res is None or edisgo_obj.results.i_res.empty: - logger.debug("Running initial power flow") - edisgo_obj.analyze(raise_not_converged=False) # Todo: raise warning? + # Run power flow + if use_troubleshooting_mode: + try: + logger.debug( + "Running initial power flow for temporal complexity reduction." + ) + edisgo_obj.analyze() + except ValueError: + # if power flow did not converge for all time steps, run again with smaller + # loading - loading is decreased, until all time steps converge + logger.warning( + "When running power flow to determine most critical time intervals, " + "not all time steps converged. Power flow is run again with reduced " + "network load." + ) + for fraction in np.linspace(0.9, 0.2, 8): + try: + edisgo_obj.analyze( + troubleshooting_mode="iteration", + range_start=fraction, + range_num=1, + ) + logger.info( + f"Power flow fully converged for a reduction factor " + f"of {fraction}." + ) + break + except ValueError: + if fraction == 0.2: + raise ValueError( + f"Power flow did not converge for smallest reduction " + f"factor of {fraction}. Most critical time intervals " + f"can therefore not be determined." + ) + else: + logger.info( + f"Power flow did not fully converge for a reduction factor " + f"of {fraction}." + ) + except Exception: + raise Exception + else: + logger.debug("Running initial power flow for temporal complexity reduction.") + edisgo_obj.analyze() # Select most critical time intervals based on current violations loading_scores = _scored_most_critical_loading_time_interval( From 17fcf7f49caeb8e5066061919f6db7efc76f5e98 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 08:08:37 +0200 Subject: [PATCH 302/355] Move temporal complexity reduction functions to tools --- edisgo/opf/timeseries_reduction.py | 555 ----------------- edisgo/tools/temporal_complexity_reduction.py | 566 ++++++++++++++++++ tests/opf/test_timeseries_reduction.py | 79 --- .../test_temporal_complexity_reduction.py | 98 +++ 4 files changed, 664 insertions(+), 634 deletions(-) create mode 100644 edisgo/tools/temporal_complexity_reduction.py create mode 100644 tests/tools/test_temporal_complexity_reduction.py diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 7d4da4c3f..3eb6c7b93 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -1,5 +1,4 @@ import logging -import os from copy import deepcopy @@ -10,8 +9,6 @@ from sklearn.preprocessing import StandardScaler from edisgo.flex_opt import check_tech_constraints -from edisgo.flex_opt.costs import line_expansion_costs -from edisgo.tools.tools import assign_feeder logger = logging.getLogger(__name__) @@ -35,159 +32,6 @@ def _scored_critical_loading(edisgo_obj): return crit_lines_score.sort_values(ascending=False) -def _scored_most_critical_loading_time_interval( - edisgo_obj, - time_steps_per_time_interval=168, - time_steps_per_day=24, - time_step_day_start=0, - overloading_factor=0.95, -): - """ - Get time intervals sorted by severity of overloadings. - - The overloading is weighed by the estimated expansion costs of each respective line - and transformer. - The length of the time intervals and hour of day at which the time intervals should - begin can be set through the parameters `time_steps_per_time_interval` and - `time_step_day_start`. - - This function currently only works for an hourly resolution! - - Parameters - ----------- - edisgo_obj : :class:`~.EDisGo` - The eDisGo API object - time_steps_per_time_interval : int - Amount of continuous time steps in an interval that violation is determined for. - Currently, these can only be multiples of 24. - Default: 168. - time_steps_per_day : int - Number of time steps in one day. In case of an hourly resolution this is 24. - As currently only an hourly resolution is possible, this value should always be - 24. - Default: 24. - time_step_day_start : int - Time step of the day at which each interval should start. If you want it to - start at midnight, this should be set to 0. Default: 0. - overloading_factor : float - Factor at which an overloading of a component is considered to be close enough - to the highest overloading of that component. This is used to determine the - number of components that reach their highest overloading in each time interval. - Per default, it is set to 0.95, which means that if the highest overloading of - a component is 2, it will be considered maximally overloaded at an overloading - of higher or equal to 2*0.95. - Default: 0.95. - - Returns - -------- - :pandas:`pandas.DataFrame` - Contains time intervals in which grid expansion needs due to overloading of - lines and transformers are detected. The time intervals are sorted descending - by the expected cumulated grid expansion costs, so that the time interval with - the highest expected costs corresponds to index 0. The time steps in the - respective time interval are given in column "time_steps" and the share - of components for which the maximum overloading is reached during the time - interval is given in column "percentage_max_overloaded_components". Each - component is only considered once. That means if its maximum voltage deviation - was already considered in an earlier time interval, it is not considered again. - - """ - - # Get current relative to allowed current - relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj) - - # Get lines that have violations and replace nan values with 0 - crit_lines_score = relative_i_res[relative_i_res > 1].fillna(0) - - # weight line violations with expansion costs - costs_lines = ( - line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) - ) - costs_trafos_lv = pd.Series( - index=[ - str(lv_grid) + "_station" - for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids) - ], - data=edisgo_obj.config["costs_transformers"]["lv"], - ) - costs_trafos_mv = pd.Series( - index=["MVGrid_" + str(edisgo_obj.topology.id) + "_station"], - data=edisgo_obj.config["costs_transformers"]["mv"], - ) - costs = pd.concat([costs_lines, costs_trafos_lv, costs_trafos_mv]) - crit_lines_cost = crit_lines_score * costs - - # Get highest overloading in each window for each component and sum it up - crit_timesteps = ( - crit_lines_cost.rolling( - window=int(time_steps_per_time_interval), closed="right" - ) - .max() - .sum(axis=1) - ) - # select each nth time window to only consider windows starting at a certain time - # of day and sort time intervals in descending order - # ToDo: To make function work for frequencies other than hourly, the following - # needs to be adapted to index based on time index instead of iloc - crit_timesteps = ( - crit_timesteps.iloc[int(time_steps_per_time_interval) - 1 :] - .iloc[time_step_day_start + 1 :: time_steps_per_day] - .sort_values(ascending=False) - ) - # move time index as rolling gives the end of the time interval, but we want the - # beginning - timesteps = crit_timesteps.index - pd.DateOffset( - hours=int(time_steps_per_time_interval) - ) - time_intervals = [ - pd.date_range( - start=timestep, periods=int(time_steps_per_time_interval), freq="h" - ) - for timestep in timesteps - ] - - # make dataframe with time steps in each time interval and the percentage of - # components that reach their maximum overloading - time_intervals_df = pd.DataFrame( - index=range(len(time_intervals)), - columns=["time_steps", "percentage_max_overloaded_components"], - ) - time_intervals_df["time_steps"] = time_intervals - lines_no_max = crit_lines_score.columns.values - total_lines = len(lines_no_max) - max_per_line = crit_lines_score.max() - for i in range(len(time_intervals)): - # check if worst overloading of every line is included in time interval - max_per_line_ti = crit_lines_score.loc[time_intervals[i]].max() - time_intervals_df["percentage_max_overloaded_components"][i] = ( - len( - np.intersect1d( - lines_no_max, - max_per_line_ti[ - max_per_line_ti >= max_per_line * overloading_factor - ].index.values, - ) - ) - / total_lines - ) - # drop lines whose maximum overloading was not yet included in any time interval - lines_no_max = np.intersect1d( - lines_no_max, - max_per_line_ti[ - max_per_line_ti < max_per_line * overloading_factor - ].index.values, - ) - - if i == 2: - if len(lines_no_max) > 0: - logger.warning( - "Highest overloading of following lines does not lie within the " - "overall worst three time intervals: " + str(lines_no_max) - ) - - return time_intervals_df - - def _scored_critical_overvoltage(edisgo_obj): voltage_dev = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( @@ -202,197 +46,6 @@ def _scored_critical_overvoltage(edisgo_obj): return voltage_dev_ov.sort_values(ascending=False) -def _scored_most_critical_voltage_issues_time_interval( - edisgo_obj, - time_steps_per_time_interval=168, - time_steps_per_day=24, - time_step_day_start=0, - voltage_deviation_factor=0.95, -): - """ - Get time intervals sorted by severity of voltage issues. - - The voltage issues are weighed by the estimated expansion costs in each respective - feeder. - The length of the time intervals and hour of day at which the time intervals should - begin can be set through the parameters `time_steps_per_time_interval` and - `time_step_day_start`. - - This function currently only works for an hourly resolution! - - Parameters - ----------- - edisgo_obj : :class:`~.EDisGo` - The eDisGo API object - time_steps_per_time_interval : int - Amount of continuous time steps in an interval that violation is determined for. - Currently, these can only be multiples of 24. - Default: 168. - time_steps_per_day : int - Number of time steps in one day. In case of an hourly resolution this is 24. - As currently only an hourly resolution is possible, this value should always be - 24. - Default: 24. - time_step_day_start : int - Time step of the day at which each interval should start. If you want it to - start at midnight, this should be set to 0. Default: 0. - voltage_deviation_factor : float - Factor at which a voltage deviation at a bus is considered to be close enough - to the highest voltage deviation at that bus. This is used to determine the - number of buses that reach their highest voltage deviation in each time - interval. Per default, it is set to 0.95. This means that if the highest voltage - deviation at a bus is 0.2, it will be included in the determination of number - of buses that reach their maximum voltage deviation in a certain time interval - at a voltage deviation of higher or equal to 0.2*0.95. - Default: 0.95. - - Returns - -------- - :pandas:`pandas.DataFrame` - Contains time intervals in which grid expansion needs due to voltage issues - are detected. The time intervals are sorted descending - by the expected cumulated grid expansion costs, so that the time interval with - the highest expected costs corresponds to index 0. The time steps in the - respective time interval are given in column "time_steps" and the share - of buses for which the maximum voltage deviation is reached during the time - interval is given in column "percentage_max_overloaded_components". Each bus - is only considered once. That means if its maximum voltage deviation was - already considered in an earlier time interval, it is not considered again. - - """ - - # Get voltage deviation from allowed voltage limits - voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( - edisgo_obj - ) - voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] - - # determine costs per feeder - lv_station_buses = [ - lv_grid.station.index[0] for lv_grid in edisgo_obj.topology.mv_grid.lv_grids - ] - costs_lines = ( - line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) - ) - costs_trafos_lv = pd.Series( - index=lv_station_buses, - data=edisgo_obj.config._data["costs_transformers"]["lv"], - ) - costs = pd.concat([costs_lines, costs_trafos_lv]) - - # set feeder using MV feeder for MV components and LV feeder for LV components - assign_feeder(edisgo_obj, mode="mv_feeder") - assign_feeder(edisgo_obj, mode="lv_feeder") - edisgo_obj.topology.lines_df["feeder"] = edisgo_obj.topology.lines_df.apply( - lambda _: _.mv_feeder - if _.name in edisgo_obj.topology.mv_grid.lines_df.index - else _.lv_feeder, - axis=1, - ) - edisgo_obj.topology.buses_df["feeder"] = edisgo_obj.topology.buses_df.apply( - lambda _: _.mv_feeder - if _.name in edisgo_obj.topology.mv_grid.buses_df.index - else _.lv_feeder, - axis=1, - ) - # feeders of buses at MV/LV station's secondary sides are set to the name of the - # station bus to have them as separate feeders - edisgo_obj.topology.buses_df.loc[lv_station_buses, "feeder"] = lv_station_buses - - feeder_lines = edisgo_obj.topology.lines_df.feeder - feeder_trafos_lv = pd.Series( - index=lv_station_buses, - data=lv_station_buses, - ) - feeder = pd.concat([feeder_lines, feeder_trafos_lv]) - costs_per_feeder = ( - pd.concat([costs.rename("costs"), feeder.rename("feeder")], axis=1) - .groupby(by="feeder")[["costs"]] - .sum() - ) - - # check for every feeder if any of the buses within violate the allowed voltage - # deviation, by grouping voltage_diff per feeder - feeder_buses = edisgo_obj.topology.buses_df.feeder - columns = [feeder_buses.loc[col] for col in voltage_diff.columns] - voltage_diff_copy = deepcopy(voltage_diff).fillna(0) - voltage_diff.columns = columns - voltage_diff_feeder = ( - voltage_diff.transpose().reset_index().groupby(by="index").sum().transpose() - ) - voltage_diff_feeder[voltage_diff_feeder != 0] = 1 - - # weigh feeder voltage violation with costs per feeder - voltage_diff_feeder = voltage_diff_feeder * costs_per_feeder.squeeze() - - # Get the highest voltage issues in each window for each feeder and sum it up - crit_timesteps = ( - voltage_diff_feeder.rolling( - window=int(time_steps_per_time_interval), closed="right" - ) - .max() - .sum(axis=1) - ) - # select each nth time window to only consider windows starting at a certain time - # of day and sort time intervals in descending order - # ToDo: To make function work for frequencies other than hourly, the following - # needs to be adapted to index based on time index instead of iloc - crit_timesteps = ( - crit_timesteps.iloc[int(time_steps_per_time_interval) - 1 :] - .iloc[time_step_day_start + 1 :: time_steps_per_day] - .sort_values(ascending=False) - ) - timesteps = crit_timesteps.index - pd.DateOffset( - hours=int(time_steps_per_time_interval) - ) - time_intervals = [ - pd.date_range( - start=timestep, periods=int(time_steps_per_time_interval), freq="h" - ) - for timestep in timesteps - ] - - # make dataframe with time steps in each time interval and the percentage of - # buses that reach their maximum voltage deviation - time_intervals_df = pd.DataFrame( - index=range(len(time_intervals)), - columns=["time_steps", "percentage_buses_max_voltage_deviation"], - ) - time_intervals_df["time_steps"] = time_intervals - - max_per_bus = voltage_diff_copy.max().fillna(0) - buses_no_max = max_per_bus.index.values - total_buses = len(buses_no_max) - for i in range(len(time_intervals)): - # check if worst voltage deviation of every bus is included in time interval - max_per_bus_ti = voltage_diff_copy.loc[time_intervals[i]].max() - time_intervals_df["percentage_buses_max_voltage_deviation"][i] = ( - len( - np.intersect1d( - buses_no_max, - max_per_bus_ti[ - max_per_bus_ti >= max_per_bus * voltage_deviation_factor - ].index.values, - ) - ) - / total_buses - ) - buses_no_max = np.intersect1d( - buses_no_max, - max_per_bus_ti[ - max_per_bus_ti < max_per_bus * voltage_deviation_factor - ].index.values, - ) - if i == 2: - if len(buses_no_max) > 0: - logger.warning( - "Highest voltage deviation of following buses does not lie within " - "the overall worst three time intervals: " + str(buses_no_max) - ) - - return time_intervals_df - - def get_steps_curtailment(edisgo_obj, percentage=0.5): """ Get the time steps with the most critical violations for curtailment @@ -486,214 +139,6 @@ def get_steps_storage(edisgo_obj, window=5): return pd.DatetimeIndex(reduced) -def get_most_critical_time_intervals( - edisgo_obj, - num_time_intervals=None, - percentage=1.0, - time_steps_per_time_interval=168, - time_step_day_start=0, - save_steps=False, - path="", - use_troubleshooting_mode=True, - overloading_factor=0.95, - voltage_deviation_factor=0.95, -): - """ - Get time intervals sorted by severity of overloadings as well as voltage issues. - - The overloading and voltage issues are weighed by the estimated expansion costs - solving the issue would require. - The length of the time intervals and hour of day at which the time intervals should - begin can be set through the parameters `time_steps_per_time_interval` and - `time_step_day_start`. - - This function currently only works for an hourly resolution! - - Parameters - ----------- - edisgo_obj : :class:`~.EDisGo` - The eDisGo API object - num_time_intervals : int - The number of time intervals of most critical line loading and voltage issues - to select. If None, `percentage` is used. Default: None. - percentage : float - The percentage of most critical time intervals to select. Default: 1.0. - time_steps_per_time_interval : int - Amount of continuous time steps in an interval that violation is determined for. - Currently, these can only be multiples of 24. - Default: 168. - time_step_day_start : int - Time step of the day at which each interval should start. If you want it to - start at midnight, this should be set to 0. Default: 0. - save_steps : bool - If set to True, dataframe with time intervals is saved to csv file. The path - can be specified through parameter `path`. - Default: False. - path : str - Directory the csv file is saved to. Per default, it takes the current - working directory. - use_troubleshooting_mode : bool - If set to True, non-convergence issues in power flow are tried to be handled - by reducing load and feed-in in steps of 10% down to 20% of the original load - and feed-in until the power flow converges. The most critical time intervals - are then determined based on the power flow results with the reduced load and - feed-in. If False, an error will be raised in case time steps do not converge. - Default: True. - overloading_factor : float - Factor at which an overloading of a component is considered to be close enough - to the highest overloading of that component. This is used to determine the - number of components that reach their highest overloading in each time interval. - Per default, it is set to 0.95, which means that if the highest overloading of - a component is 2, it will be considered maximally overloaded at an overloading - of higher or equal to 2*0.95. - Default: 0.95. - voltage_deviation_factor : float - Factor at which a voltage deviation at a bus is considered to be close enough - to the highest voltage deviation at that bus. This is used to determine the - number of buses that reach their highest voltage deviation in each time - interval. Per default, it is set to 0.95. This means that if the highest voltage - deviation at a bus is 0.2, it will be included in the determination of number - of buses that reach their maximum voltage deviation in a certain time interval - at a voltage deviation of higher or equal to 0.2*0.95. - Default: 0.95. - - Returns - -------- - :pandas:`pandas.DataFrame` - Contains time intervals in which grid expansion needs due to overloading and - voltage issues are detected. The time intervals are determined independently - for overloading and voltage issues and sorted descending by the expected - cumulated grid expansion costs, so that the time intervals with the highest - expected costs correspond to index 0. - In case of overloading, the time steps in the respective time interval are given - in column "time_steps_overloading" and the share of components for which the - maximum overloading is reached during the time interval is given in column - "percentage_max_overloaded_components". - For voltage issues, the time steps in the respective time interval are given - in column "time_steps_voltage_issues" and the share of buses for which the - maximum voltage deviation is reached during the time interval is given in column - "percentage_max_overloaded_components". - For the calculation of the percentage, each component respectively bus - is only considered once. That means if its maximum overloading or voltage - deviation was already considered in an earlier time interval, it is not - considered again. - - """ - # check frequency of time series data - timeindex = edisgo_obj.timeseries.timeindex - timedelta = timeindex[1] - timeindex[0] - if timedelta != pd.Timedelta("1h"): - logger.warning( - "The function 'get_most_critical_time_intervals' can currently only be " - "applied to time series data in an hourly resolution." - ) - - # Run power flow - if use_troubleshooting_mode: - try: - logger.debug( - "Running initial power flow for temporal complexity reduction." - ) - edisgo_obj.analyze() - except ValueError: - # if power flow did not converge for all time steps, run again with smaller - # loading - loading is decreased, until all time steps converge - logger.warning( - "When running power flow to determine most critical time intervals, " - "not all time steps converged. Power flow is run again with reduced " - "network load." - ) - for fraction in np.linspace(0.9, 0.2, 8): - try: - edisgo_obj.analyze( - troubleshooting_mode="iteration", - range_start=fraction, - range_num=1, - ) - logger.info( - f"Power flow fully converged for a reduction factor " - f"of {fraction}." - ) - break - except ValueError: - if fraction == 0.2: - raise ValueError( - f"Power flow did not converge for smallest reduction " - f"factor of {fraction}. Most critical time intervals " - f"can therefore not be determined." - ) - else: - logger.info( - f"Power flow did not fully converge for a reduction factor " - f"of {fraction}." - ) - except Exception: - raise Exception - else: - logger.debug("Running initial power flow for temporal complexity reduction.") - edisgo_obj.analyze() - - # Select most critical time intervals based on current violations - loading_scores = _scored_most_critical_loading_time_interval( - edisgo_obj, - time_steps_per_time_interval, - time_step_day_start=time_step_day_start, - overloading_factor=overloading_factor, - ) - if num_time_intervals is None: - num_time_intervals = int(np.ceil(len(loading_scores) * percentage)) - else: - if num_time_intervals > len(loading_scores): - logger.info( - f"The number of time intervals with highest overloading " - f"({len(loading_scores)}) is lower than the defined number of " - f"loading time intervals ({num_time_intervals}). Therefore, only " - f"{len(loading_scores)} time intervals are exported." - ) - num_time_intervals = len(loading_scores) - steps = loading_scores.iloc[:num_time_intervals] - - # Select most critical steps based on voltage violations - voltage_scores = _scored_most_critical_voltage_issues_time_interval( - edisgo_obj, - time_steps_per_time_interval, - time_step_day_start=time_step_day_start, - voltage_deviation_factor=voltage_deviation_factor, - ) - if num_time_intervals is None: - num_time_intervals = int(np.ceil(len(voltage_scores) * percentage)) - else: - if num_time_intervals > len(voltage_scores): - logger.info( - f"The number of time steps with highest voltage issues " - f"({len(voltage_scores)}) is lower than the defined number of " - f"voltage time steps ({num_time_intervals}). Therefore, only " - f"{len(voltage_scores)} time steps are exported." - ) - num_time_intervals = len(voltage_scores) - - # merge time intervals - steps = pd.merge( - steps, - voltage_scores.iloc[:num_time_intervals], - left_index=True, - right_index=True, - suffixes=("_overloading", "_voltage_issues"), - ) - if len(steps) == 0: - logger.info("No critical steps detected. No network expansion required.") - - if save_steps: - abs_path = os.path.abspath(path) - steps.to_csv( - os.path.join( - abs_path, - f"{edisgo_obj.topology.id}_t_{time_steps_per_time_interval}.csv", - ) - ) - return steps - - def get_linked_steps(cluster_params, num_steps=24, keep_steps=[]): """ Use provided data to identify representative time steps and create mapping diff --git a/edisgo/tools/temporal_complexity_reduction.py b/edisgo/tools/temporal_complexity_reduction.py new file mode 100644 index 000000000..d9b1649ea --- /dev/null +++ b/edisgo/tools/temporal_complexity_reduction.py @@ -0,0 +1,566 @@ +import logging +import os + +from copy import deepcopy + +import numpy as np +import pandas as pd + +from edisgo.flex_opt import check_tech_constraints +from edisgo.flex_opt.costs import line_expansion_costs +from edisgo.tools.tools import assign_feeder + +logger = logging.getLogger(__name__) + + +def _scored_most_critical_loading_time_interval( + edisgo_obj, + time_steps_per_time_interval=168, + time_steps_per_day=24, + time_step_day_start=0, + overloading_factor=0.95, +): + """ + Get time intervals sorted by severity of overloadings. + + The overloading is weighed by the estimated expansion costs of each respective line + and transformer. + The length of the time intervals and hour of day at which the time intervals should + begin can be set through the parameters `time_steps_per_time_interval` and + `time_step_day_start`. + + This function currently only works for an hourly resolution! + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + time_steps_per_time_interval : int + Amount of continuous time steps in an interval that violation is determined for. + Currently, these can only be multiples of 24. + Default: 168. + time_steps_per_day : int + Number of time steps in one day. In case of an hourly resolution this is 24. + As currently only an hourly resolution is possible, this value should always be + 24. + Default: 24. + time_step_day_start : int + Time step of the day at which each interval should start. If you want it to + start at midnight, this should be set to 0. Default: 0. + overloading_factor : float + Factor at which an overloading of a component is considered to be close enough + to the highest overloading of that component. This is used to determine the + number of components that reach their highest overloading in each time interval. + Per default, it is set to 0.95, which means that if the highest overloading of + a component is 2, it will be considered maximally overloaded at an overloading + of higher or equal to 2*0.95. + Default: 0.95. + + Returns + -------- + :pandas:`pandas.DataFrame` + Contains time intervals in which grid expansion needs due to overloading of + lines and transformers are detected. The time intervals are sorted descending + by the expected cumulated grid expansion costs, so that the time interval with + the highest expected costs corresponds to index 0. The time steps in the + respective time interval are given in column "time_steps" and the share + of components for which the maximum overloading is reached during the time + interval is given in column "percentage_max_overloaded_components". Each + component is only considered once. That means if its maximum voltage deviation + was already considered in an earlier time interval, it is not considered again. + + """ + + # Get current relative to allowed current + relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj) + + # Get lines that have violations and replace nan values with 0 + crit_lines_score = relative_i_res[relative_i_res > 1].fillna(0) + + # weight line violations with expansion costs + costs_lines = ( + line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) + ) + costs_trafos_lv = pd.Series( + index=[ + str(lv_grid) + "_station" + for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids) + ], + data=edisgo_obj.config["costs_transformers"]["lv"], + ) + costs_trafos_mv = pd.Series( + index=["MVGrid_" + str(edisgo_obj.topology.id) + "_station"], + data=edisgo_obj.config["costs_transformers"]["mv"], + ) + costs = pd.concat([costs_lines, costs_trafos_lv, costs_trafos_mv]) + crit_lines_cost = crit_lines_score * costs + + # Get highest overloading in each window for each component and sum it up + crit_timesteps = ( + crit_lines_cost.rolling( + window=int(time_steps_per_time_interval), closed="right" + ) + .max() + .sum(axis=1) + ) + # select each nth time window to only consider windows starting at a certain time + # of day and sort time intervals in descending order + # ToDo: To make function work for frequencies other than hourly, the following + # needs to be adapted to index based on time index instead of iloc + crit_timesteps = ( + crit_timesteps.iloc[int(time_steps_per_time_interval) - 1 :] + .iloc[time_step_day_start + 1 :: time_steps_per_day] + .sort_values(ascending=False) + ) + # move time index as rolling gives the end of the time interval, but we want the + # beginning + timesteps = crit_timesteps.index - pd.DateOffset( + hours=int(time_steps_per_time_interval) + ) + time_intervals = [ + pd.date_range( + start=timestep, periods=int(time_steps_per_time_interval), freq="h" + ) + for timestep in timesteps + ] + + # make dataframe with time steps in each time interval and the percentage of + # components that reach their maximum overloading + time_intervals_df = pd.DataFrame( + index=range(len(time_intervals)), + columns=["time_steps", "percentage_max_overloaded_components"], + ) + time_intervals_df["time_steps"] = time_intervals + lines_no_max = crit_lines_score.columns.values + total_lines = len(lines_no_max) + max_per_line = crit_lines_score.max() + for i in range(len(time_intervals)): + # check if worst overloading of every line is included in time interval + max_per_line_ti = crit_lines_score.loc[time_intervals[i]].max() + time_intervals_df["percentage_max_overloaded_components"][i] = ( + len( + np.intersect1d( + lines_no_max, + max_per_line_ti[ + max_per_line_ti >= max_per_line * overloading_factor + ].index.values, + ) + ) + / total_lines + ) + # drop lines whose maximum overloading was not yet included in any time interval + lines_no_max = np.intersect1d( + lines_no_max, + max_per_line_ti[ + max_per_line_ti < max_per_line * overloading_factor + ].index.values, + ) + + if i == 2: + if len(lines_no_max) > 0: + logger.warning( + "Highest overloading of following lines does not lie within the " + "overall worst three time intervals: " + str(lines_no_max) + ) + + return time_intervals_df + + +def _scored_most_critical_voltage_issues_time_interval( + edisgo_obj, + time_steps_per_time_interval=168, + time_steps_per_day=24, + time_step_day_start=0, + voltage_deviation_factor=0.95, +): + """ + Get time intervals sorted by severity of voltage issues. + + The voltage issues are weighed by the estimated expansion costs in each respective + feeder. + The length of the time intervals and hour of day at which the time intervals should + begin can be set through the parameters `time_steps_per_time_interval` and + `time_step_day_start`. + + This function currently only works for an hourly resolution! + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + time_steps_per_time_interval : int + Amount of continuous time steps in an interval that violation is determined for. + Currently, these can only be multiples of 24. + Default: 168. + time_steps_per_day : int + Number of time steps in one day. In case of an hourly resolution this is 24. + As currently only an hourly resolution is possible, this value should always be + 24. + Default: 24. + time_step_day_start : int + Time step of the day at which each interval should start. If you want it to + start at midnight, this should be set to 0. Default: 0. + voltage_deviation_factor : float + Factor at which a voltage deviation at a bus is considered to be close enough + to the highest voltage deviation at that bus. This is used to determine the + number of buses that reach their highest voltage deviation in each time + interval. Per default, it is set to 0.95. This means that if the highest voltage + deviation at a bus is 0.2, it will be included in the determination of number + of buses that reach their maximum voltage deviation in a certain time interval + at a voltage deviation of higher or equal to 0.2*0.95. + Default: 0.95. + + Returns + -------- + :pandas:`pandas.DataFrame` + Contains time intervals in which grid expansion needs due to voltage issues + are detected. The time intervals are sorted descending + by the expected cumulated grid expansion costs, so that the time interval with + the highest expected costs corresponds to index 0. The time steps in the + respective time interval are given in column "time_steps" and the share + of buses for which the maximum voltage deviation is reached during the time + interval is given in column "percentage_max_overloaded_components". Each bus + is only considered once. That means if its maximum voltage deviation was + already considered in an earlier time interval, it is not considered again. + + """ + + # Get voltage deviation from allowed voltage limits + voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + edisgo_obj + ) + voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] + + # determine costs per feeder + lv_station_buses = [ + lv_grid.station.index[0] for lv_grid in edisgo_obj.topology.mv_grid.lv_grids + ] + costs_lines = ( + line_expansion_costs(edisgo_obj).drop(columns="voltage_level").sum(axis=1) + ) + costs_trafos_lv = pd.Series( + index=lv_station_buses, + data=edisgo_obj.config._data["costs_transformers"]["lv"], + ) + costs = pd.concat([costs_lines, costs_trafos_lv]) + + # set feeder using MV feeder for MV components and LV feeder for LV components + assign_feeder(edisgo_obj, mode="mv_feeder") + assign_feeder(edisgo_obj, mode="lv_feeder") + edisgo_obj.topology.lines_df["feeder"] = edisgo_obj.topology.lines_df.apply( + lambda _: _.mv_feeder + if _.name in edisgo_obj.topology.mv_grid.lines_df.index + else _.lv_feeder, + axis=1, + ) + edisgo_obj.topology.buses_df["feeder"] = edisgo_obj.topology.buses_df.apply( + lambda _: _.mv_feeder + if _.name in edisgo_obj.topology.mv_grid.buses_df.index + else _.lv_feeder, + axis=1, + ) + # feeders of buses at MV/LV station's secondary sides are set to the name of the + # station bus to have them as separate feeders + edisgo_obj.topology.buses_df.loc[lv_station_buses, "feeder"] = lv_station_buses + + feeder_lines = edisgo_obj.topology.lines_df.feeder + feeder_trafos_lv = pd.Series( + index=lv_station_buses, + data=lv_station_buses, + ) + feeder = pd.concat([feeder_lines, feeder_trafos_lv]) + costs_per_feeder = ( + pd.concat([costs.rename("costs"), feeder.rename("feeder")], axis=1) + .groupby(by="feeder")[["costs"]] + .sum() + ) + + # check for every feeder if any of the buses within violate the allowed voltage + # deviation, by grouping voltage_diff per feeder + feeder_buses = edisgo_obj.topology.buses_df.feeder + columns = [feeder_buses.loc[col] for col in voltage_diff.columns] + voltage_diff_copy = deepcopy(voltage_diff).fillna(0) + voltage_diff.columns = columns + voltage_diff_feeder = ( + voltage_diff.transpose().reset_index().groupby(by="index").sum().transpose() + ) + voltage_diff_feeder[voltage_diff_feeder != 0] = 1 + + # weigh feeder voltage violation with costs per feeder + voltage_diff_feeder = voltage_diff_feeder * costs_per_feeder.squeeze() + + # Get the highest voltage issues in each window for each feeder and sum it up + crit_timesteps = ( + voltage_diff_feeder.rolling( + window=int(time_steps_per_time_interval), closed="right" + ) + .max() + .sum(axis=1) + ) + # select each nth time window to only consider windows starting at a certain time + # of day and sort time intervals in descending order + # ToDo: To make function work for frequencies other than hourly, the following + # needs to be adapted to index based on time index instead of iloc + crit_timesteps = ( + crit_timesteps.iloc[int(time_steps_per_time_interval) - 1 :] + .iloc[time_step_day_start + 1 :: time_steps_per_day] + .sort_values(ascending=False) + ) + timesteps = crit_timesteps.index - pd.DateOffset( + hours=int(time_steps_per_time_interval) + ) + time_intervals = [ + pd.date_range( + start=timestep, periods=int(time_steps_per_time_interval), freq="h" + ) + for timestep in timesteps + ] + + # make dataframe with time steps in each time interval and the percentage of + # buses that reach their maximum voltage deviation + time_intervals_df = pd.DataFrame( + index=range(len(time_intervals)), + columns=["time_steps", "percentage_buses_max_voltage_deviation"], + ) + time_intervals_df["time_steps"] = time_intervals + + max_per_bus = voltage_diff_copy.max().fillna(0) + buses_no_max = max_per_bus.index.values + total_buses = len(buses_no_max) + for i in range(len(time_intervals)): + # check if worst voltage deviation of every bus is included in time interval + max_per_bus_ti = voltage_diff_copy.loc[time_intervals[i]].max() + time_intervals_df["percentage_buses_max_voltage_deviation"][i] = ( + len( + np.intersect1d( + buses_no_max, + max_per_bus_ti[ + max_per_bus_ti >= max_per_bus * voltage_deviation_factor + ].index.values, + ) + ) + / total_buses + ) + # ToDo do not drop + buses_no_max = np.intersect1d( + buses_no_max, + max_per_bus_ti[ + max_per_bus_ti < max_per_bus * voltage_deviation_factor + ].index.values, + ) + if i == 2: + if len(buses_no_max) > 0: + logger.warning( + "Highest voltage deviation of following buses does not lie within " + "the overall worst three time intervals: " + str(buses_no_max) + ) + + return time_intervals_df + + +def get_most_critical_time_intervals( + edisgo_obj, + num_time_intervals=None, + percentage=1.0, + time_steps_per_time_interval=168, + time_step_day_start=0, + save_steps=False, + path="", + use_troubleshooting_mode=True, + overloading_factor=0.95, + voltage_deviation_factor=0.95, +): + """ + Get time intervals sorted by severity of overloadings as well as voltage issues. + + The overloading and voltage issues are weighed by the estimated expansion costs + solving the issue would require. + The length of the time intervals and hour of day at which the time intervals should + begin can be set through the parameters `time_steps_per_time_interval` and + `time_step_day_start`. + + This function currently only works for an hourly resolution! + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + num_time_intervals : int + The number of time intervals of most critical line loading and voltage issues + to select. If None, `percentage` is used. Default: None. + percentage : float + The percentage of most critical time intervals to select. Default: 1.0. + time_steps_per_time_interval : int + Amount of continuous time steps in an interval that violation is determined for. + Currently, these can only be multiples of 24. + Default: 168. + time_step_day_start : int + Time step of the day at which each interval should start. If you want it to + start at midnight, this should be set to 0. Default: 0. + save_steps : bool + If set to True, dataframe with time intervals is saved to csv file. The path + can be specified through parameter `path`. + Default: False. + path : str + Directory the csv file is saved to. Per default, it takes the current + working directory. + use_troubleshooting_mode : bool + If set to True, non-convergence issues in power flow are tried to be handled + by reducing load and feed-in in steps of 10% down to 20% of the original load + and feed-in until the power flow converges. The most critical time intervals + are then determined based on the power flow results with the reduced load and + feed-in. If False, an error will be raised in case time steps do not converge. + Default: True. + overloading_factor : float + Factor at which an overloading of a component is considered to be close enough + to the highest overloading of that component. This is used to determine the + number of components that reach their highest overloading in each time interval. + Per default, it is set to 0.95, which means that if the highest overloading of + a component is 2, it will be considered maximally overloaded at an overloading + of higher or equal to 2*0.95. + Default: 0.95. + voltage_deviation_factor : float + Factor at which a voltage deviation at a bus is considered to be close enough + to the highest voltage deviation at that bus. This is used to determine the + number of buses that reach their highest voltage deviation in each time + interval. Per default, it is set to 0.95. This means that if the highest voltage + deviation at a bus is 0.2, it will be included in the determination of number + of buses that reach their maximum voltage deviation in a certain time interval + at a voltage deviation of higher or equal to 0.2*0.95. + Default: 0.95. + + Returns + -------- + :pandas:`pandas.DataFrame` + Contains time intervals in which grid expansion needs due to overloading and + voltage issues are detected. The time intervals are determined independently + for overloading and voltage issues and sorted descending by the expected + cumulated grid expansion costs, so that the time intervals with the highest + expected costs correspond to index 0. + In case of overloading, the time steps in the respective time interval are given + in column "time_steps_overloading" and the share of components for which the + maximum overloading is reached during the time interval is given in column + "percentage_max_overloaded_components". + For voltage issues, the time steps in the respective time interval are given + in column "time_steps_voltage_issues" and the share of buses for which the + maximum voltage deviation is reached during the time interval is given in column + "percentage_max_overloaded_components". + For the calculation of the percentage, each component respectively bus + is only considered once. That means if its maximum overloading or voltage + deviation was already considered in an earlier time interval, it is not + considered again. + + """ + # check frequency of time series data + timeindex = edisgo_obj.timeseries.timeindex + timedelta = timeindex[1] - timeindex[0] + if timedelta != pd.Timedelta("1h"): + logger.warning( + "The function 'get_most_critical_time_intervals' can currently only be " + "applied to time series data in an hourly resolution." + ) + + # Run power flow + if use_troubleshooting_mode: + try: + logger.debug( + "Running initial power flow for temporal complexity reduction." + ) + edisgo_obj.analyze() + except ValueError: + # if power flow did not converge for all time steps, run again with smaller + # loading - loading is decreased, until all time steps converge + logger.warning( + "When running power flow to determine most critical time intervals, " + "not all time steps converged. Power flow is run again with reduced " + "network load." + ) + for fraction in np.linspace(0.9, 0.2, 8): + try: + edisgo_obj.analyze( + troubleshooting_mode="iteration", + range_start=fraction, + range_num=1, + ) + logger.info( + f"Power flow fully converged for a reduction factor " + f"of {fraction}." + ) + break + except ValueError: + if fraction == 0.2: + raise ValueError( + f"Power flow did not converge for smallest reduction " + f"factor of {fraction}. Most critical time intervals " + f"can therefore not be determined." + ) + else: + logger.info( + f"Power flow did not fully converge for a reduction factor " + f"of {fraction}." + ) + except Exception: + raise Exception + else: + logger.debug("Running initial power flow for temporal complexity reduction.") + edisgo_obj.analyze() + + # Select most critical time intervals based on current violations + loading_scores = _scored_most_critical_loading_time_interval( + edisgo_obj, + time_steps_per_time_interval, + time_step_day_start=time_step_day_start, + overloading_factor=overloading_factor, + ) + if num_time_intervals is None: + num_time_intervals = int(np.ceil(len(loading_scores) * percentage)) + else: + if num_time_intervals > len(loading_scores): + logger.info( + f"The number of time intervals with highest overloading " + f"({len(loading_scores)}) is lower than the defined number of " + f"loading time intervals ({num_time_intervals}). Therefore, only " + f"{len(loading_scores)} time intervals are exported." + ) + num_time_intervals = len(loading_scores) + steps = loading_scores.iloc[:num_time_intervals] + + # Select most critical steps based on voltage violations + voltage_scores = _scored_most_critical_voltage_issues_time_interval( + edisgo_obj, + time_steps_per_time_interval, + time_step_day_start=time_step_day_start, + voltage_deviation_factor=voltage_deviation_factor, + ) + if num_time_intervals is None: + num_time_intervals = int(np.ceil(len(voltage_scores) * percentage)) + else: + if num_time_intervals > len(voltage_scores): + logger.info( + f"The number of time steps with highest voltage issues " + f"({len(voltage_scores)}) is lower than the defined number of " + f"voltage time steps ({num_time_intervals}). Therefore, only " + f"{len(voltage_scores)} time steps are exported." + ) + num_time_intervals = len(voltage_scores) + + # merge time intervals + steps = pd.merge( + steps, + voltage_scores.iloc[:num_time_intervals], + left_index=True, + right_index=True, + suffixes=("_overloading", "_voltage_issues"), + ) + if len(steps) == 0: + logger.info("No critical steps detected. No network expansion required.") + + if save_steps: + abs_path = os.path.abspath(path) + steps.to_csv( + os.path.join( + abs_path, + f"{edisgo_obj.topology.id}_t_{time_steps_per_time_interval}.csv", + ) + ) + return steps diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py index df94b20a8..7527525f7 100644 --- a/tests/opf/test_timeseries_reduction.py +++ b/tests/opf/test_timeseries_reduction.py @@ -261,85 +261,6 @@ def run_power_flow(self): """ self.edisgo.analyze() - def test__scored_most_critical_loading_time_interval(self): - self.setup_class() - self.setup_flexibility_data() - self.edisgo.analyze() - - # test with default values - ts_crit = timeseries_reduction._scored_most_critical_loading_time_interval( - self.edisgo, 24 - ) - assert len(ts_crit) == 9 - assert ( - ts_crit.loc[0, "time_steps"] - == pd.date_range("1/5/2018", periods=24, freq="H") - ).all() - assert np.isclose( - ts_crit.loc[0, "percentage_max_overloaded_components"], 0.96479 - ) - assert np.isclose( - ts_crit.loc[1, "percentage_max_overloaded_components"], 0.035211 - ) - - # test with non-default values - ts_crit = timeseries_reduction._scored_most_critical_loading_time_interval( - self.edisgo, 24, time_step_day_start=4, overloading_factor=0.9 - ) - assert len(ts_crit) == 9 - assert ( - ts_crit.loc[0, "time_steps"] - == pd.date_range("1/5/2018 4:00", periods=24, freq="H") - ).all() - assert ts_crit.loc[0, "percentage_max_overloaded_components"] == 1 - - def test__scored_most_critical_voltage_issues_time_interval(self): - self.setup_class() - self.setup_flexibility_data() - self.edisgo.analyze() - - # test with default values - ts_crit = ( - timeseries_reduction._scored_most_critical_voltage_issues_time_interval( - self.edisgo, 24 - ) - ) - assert len(ts_crit) == 9 - assert ( - ts_crit.loc[0, "time_steps"] - == pd.date_range("1/1/2018", periods=24, freq="H") - ).all() - assert np.isclose( - ts_crit.loc[0, "percentage_buses_max_voltage_deviation"], 0.98592 - ) - assert np.isclose(ts_crit.loc[1, "percentage_buses_max_voltage_deviation"], 0.0) - - # test with non-default values - ts_crit = ( - timeseries_reduction._scored_most_critical_voltage_issues_time_interval( - self.edisgo, 24, time_step_day_start=4, voltage_deviation_factor=0.5 - ) - ) - assert len(ts_crit) == 9 - assert ( - ts_crit.loc[0, "time_steps"] - == pd.date_range("1/1/2018 4:00", periods=24, freq="H") - ).all() - assert np.isclose( - ts_crit.loc[0, "percentage_buses_max_voltage_deviation"], 0.99296 - ) - - def test_get_most_critical_time_intervals(self): - self.setup_class() - self.setup_flexibility_data() - self.edisgo.analyze() - steps = timeseries_reduction.get_most_critical_time_intervals( - self.edisgo, - ) - - assert len(steps) == 3 - assert len(steps.columns) == 4 - def test_distribute_overlying_grid_timeseries(self): self.setup_class() self.setup_flexibility_data() diff --git a/tests/tools/test_temporal_complexity_reduction.py b/tests/tools/test_temporal_complexity_reduction.py new file mode 100644 index 000000000..cafeb7de2 --- /dev/null +++ b/tests/tools/test_temporal_complexity_reduction.py @@ -0,0 +1,98 @@ +import numpy as np +import pandas as pd +import pytest + +from edisgo import EDisGo +from edisgo.tools import temporal_complexity_reduction as temp_red + + +class TestTemporalComplexityReduction: + @classmethod + def setup_class(self): + self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + self.edisgo.set_time_series_worst_case_analysis() + + # Resample timeseries and reindex to hourly timedelta + self.edisgo.resample_timeseries(freq="1min") + self.timesteps = pd.date_range(start="01/01/2018", periods=240, freq="h") + attributes = self.edisgo.timeseries._attributes + for attr in attributes: + if not getattr(self.edisgo.timeseries, attr).empty: + df = pd.DataFrame( + index=self.timesteps, + columns=getattr(self.edisgo.timeseries, attr).columns, + data=getattr(self.edisgo.timeseries, attr).values, + ) + setattr( + self.edisgo.timeseries, + attr, + df, + ) + self.edisgo.timeseries.timeindex = self.timesteps + + def test__scored_most_critical_loading_time_interval(self): + + self.edisgo.analyze() + + # test with default values + ts_crit = temp_red._scored_most_critical_loading_time_interval(self.edisgo, 24) + assert len(ts_crit) == 9 + assert ( + ts_crit.loc[0, "time_steps"] + == pd.date_range("1/5/2018", periods=24, freq="H") + ).all() + assert np.isclose( + ts_crit.loc[0, "percentage_max_overloaded_components"], 0.96479 + ) + assert np.isclose( + ts_crit.loc[1, "percentage_max_overloaded_components"], 0.035211 + ) + + # test with non-default values + ts_crit = temp_red._scored_most_critical_loading_time_interval( + self.edisgo, 24, time_step_day_start=4, overloading_factor=0.9 + ) + assert len(ts_crit) == 9 + assert ( + ts_crit.loc[0, "time_steps"] + == pd.date_range("1/5/2018 4:00", periods=24, freq="H") + ).all() + assert ts_crit.loc[0, "percentage_max_overloaded_components"] == 1 + + def test__scored_most_critical_voltage_issues_time_interval(self): + + self.edisgo.analyze() + + # test with default values + ts_crit = temp_red._scored_most_critical_voltage_issues_time_interval( + self.edisgo, 24 + ) + assert len(ts_crit) == 9 + assert ( + ts_crit.loc[0, "time_steps"] + == pd.date_range("1/1/2018", periods=24, freq="H") + ).all() + assert np.isclose(ts_crit.loc[0, "percentage_buses_max_voltage_deviation"], 1.0) + assert np.isclose(ts_crit.loc[1, "percentage_buses_max_voltage_deviation"], 0.0) + + # test with non-default values + ts_crit = temp_red._scored_most_critical_voltage_issues_time_interval( + self.edisgo, 24, time_step_day_start=4, voltage_deviation_factor=0.5 + ) + assert len(ts_crit) == 9 + assert ( + ts_crit.loc[0, "time_steps"] + == pd.date_range("1/1/2018 4:00", periods=24, freq="H") + ).all() + assert np.isclose(ts_crit.loc[0, "percentage_buses_max_voltage_deviation"], 1.0) + + def test_get_most_critical_time_intervals(self): + + self.edisgo.timeseries.timeindex = self.edisgo.timeseries.timeindex[:25] + self.edisgo.timeseries.scale_timeseries(p_scaling_factor=5, q_scaling_factor=5) + steps = temp_red.get_most_critical_time_intervals( + self.edisgo, time_steps_per_time_interval=24 + ) + + assert len(steps) == 1 + assert len(steps.columns) == 4 From 218b1a3f630198956a89786862373331509ccb84 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 08:33:47 +0200 Subject: [PATCH 303/355] Always consider all lines and buses in the calculation of percentage --- edisgo/tools/temporal_complexity_reduction.py | 51 ++----------------- .../test_temporal_complexity_reduction.py | 4 +- 2 files changed, 5 insertions(+), 50 deletions(-) diff --git a/edisgo/tools/temporal_complexity_reduction.py b/edisgo/tools/temporal_complexity_reduction.py index d9b1649ea..283bb4b94 100644 --- a/edisgo/tools/temporal_complexity_reduction.py +++ b/edisgo/tools/temporal_complexity_reduction.py @@ -65,9 +65,7 @@ def _scored_most_critical_loading_time_interval( the highest expected costs corresponds to index 0. The time steps in the respective time interval are given in column "time_steps" and the share of components for which the maximum overloading is reached during the time - interval is given in column "percentage_max_overloaded_components". Each - component is only considered once. That means if its maximum voltage deviation - was already considered in an earlier time interval, it is not considered again. + interval is given in column "percentage_max_overloaded_components". """ @@ -138,30 +136,9 @@ def _scored_most_critical_loading_time_interval( # check if worst overloading of every line is included in time interval max_per_line_ti = crit_lines_score.loc[time_intervals[i]].max() time_intervals_df["percentage_max_overloaded_components"][i] = ( - len( - np.intersect1d( - lines_no_max, - max_per_line_ti[ - max_per_line_ti >= max_per_line * overloading_factor - ].index.values, - ) - ) + len(max_per_line_ti[max_per_line_ti >= max_per_line * overloading_factor]) / total_lines ) - # drop lines whose maximum overloading was not yet included in any time interval - lines_no_max = np.intersect1d( - lines_no_max, - max_per_line_ti[ - max_per_line_ti < max_per_line * overloading_factor - ].index.values, - ) - - if i == 2: - if len(lines_no_max) > 0: - logger.warning( - "Highest overloading of following lines does not lie within the " - "overall worst three time intervals: " + str(lines_no_max) - ) return time_intervals_df @@ -332,28 +309,10 @@ def _scored_most_critical_voltage_issues_time_interval( max_per_bus_ti = voltage_diff_copy.loc[time_intervals[i]].max() time_intervals_df["percentage_buses_max_voltage_deviation"][i] = ( len( - np.intersect1d( - buses_no_max, - max_per_bus_ti[ - max_per_bus_ti >= max_per_bus * voltage_deviation_factor - ].index.values, - ) + max_per_bus_ti[max_per_bus_ti >= max_per_bus * voltage_deviation_factor] ) / total_buses ) - # ToDo do not drop - buses_no_max = np.intersect1d( - buses_no_max, - max_per_bus_ti[ - max_per_bus_ti < max_per_bus * voltage_deviation_factor - ].index.values, - ) - if i == 2: - if len(buses_no_max) > 0: - logger.warning( - "Highest voltage deviation of following buses does not lie within " - "the overall worst three time intervals: " + str(buses_no_max) - ) return time_intervals_df @@ -445,10 +404,6 @@ def get_most_critical_time_intervals( in column "time_steps_voltage_issues" and the share of buses for which the maximum voltage deviation is reached during the time interval is given in column "percentage_max_overloaded_components". - For the calculation of the percentage, each component respectively bus - is only considered once. That means if its maximum overloading or voltage - deviation was already considered in an earlier time interval, it is not - considered again. """ # check frequency of time series data diff --git a/tests/tools/test_temporal_complexity_reduction.py b/tests/tools/test_temporal_complexity_reduction.py index cafeb7de2..98a8659fd 100644 --- a/tests/tools/test_temporal_complexity_reduction.py +++ b/tests/tools/test_temporal_complexity_reduction.py @@ -45,7 +45,7 @@ def test__scored_most_critical_loading_time_interval(self): ts_crit.loc[0, "percentage_max_overloaded_components"], 0.96479 ) assert np.isclose( - ts_crit.loc[1, "percentage_max_overloaded_components"], 0.035211 + ts_crit.loc[1, "percentage_max_overloaded_components"], 0.96479 ) # test with non-default values @@ -73,7 +73,7 @@ def test__scored_most_critical_voltage_issues_time_interval(self): == pd.date_range("1/1/2018", periods=24, freq="H") ).all() assert np.isclose(ts_crit.loc[0, "percentage_buses_max_voltage_deviation"], 1.0) - assert np.isclose(ts_crit.loc[1, "percentage_buses_max_voltage_deviation"], 0.0) + assert np.isclose(ts_crit.loc[1, "percentage_buses_max_voltage_deviation"], 1.0) # test with non-default values ts_crit = temp_red._scored_most_critical_voltage_issues_time_interval( From 4ee2f725f9eb3ccd9a213ebde574d8f775a3f398 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 09:03:21 +0200 Subject: [PATCH 304/355] Reduce usage of transpose and add comments --- edisgo/opf/timeseries_reduction.py | 134 ++++++++++++++++------------- 1 file changed, 75 insertions(+), 59 deletions(-) diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 3eb6c7b93..4d8bc4dc3 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -8,6 +8,7 @@ from sklearn.cluster import KMeans from sklearn.preprocessing import StandardScaler +from edisgo import EDisGo from edisgo.flex_opt import check_tech_constraints logger = logging.getLogger(__name__) @@ -214,64 +215,82 @@ def distribute_overlying_grid_timeseries(edisgo_obj): Returns -------- :class:`~.EDisGo` - Contains adjusted timeseries for flexibilities. + EDisGo object with only the topology data and adjusted time series data. + """ - edisgo_copy = deepcopy(edisgo_obj) - if not edisgo_copy.overlying_grid.electromobility_active_power.empty: + + edisgo_copy = EDisGo() + edisgo_copy.topology = deepcopy(edisgo_obj.topology) + edisgo_copy.timeseries = deepcopy(edisgo_obj.timeseries) + + # electromobility - distribute charging time series from overlying grid to all + # charging points based on upper power flexibility band + if not edisgo_obj.overlying_grid.electromobility_active_power.empty: cp_loads = edisgo_obj.topology.loads_df.index[ edisgo_obj.topology.loads_df.type == "charging_point" ] # scale flexibility band upper power timeseries - scaling_df = ( - edisgo_obj.electromobility.flexibility_bands["upper_power"].transpose() - / edisgo_obj.electromobility.flexibility_bands["upper_power"].sum(axis=1) - ).transpose() + scaling_df = edisgo_obj.electromobility.flexibility_bands[ + "upper_power" + ].transpose() / edisgo_obj.electromobility.flexibility_bands["upper_power"].sum( + axis=1 + ) edisgo_copy.timeseries._loads_active_power.loc[:, cp_loads] = ( - scaling_df.transpose() - * edisgo_obj.overlying_grid.electromobility_active_power + scaling_df * edisgo_obj.overlying_grid.electromobility_active_power ).transpose() - if not edisgo_copy.overlying_grid.storage_units_active_power.empty: + + # storage units - distribute charging/discharging time series from overlying grid + # to all storage units based on their installed capacity + if not edisgo_obj.overlying_grid.storage_units_active_power.empty: scaling_factor = ( edisgo_obj.topology.storage_units_df.p_nom / edisgo_obj.topology.storage_units_df.p_nom.sum() ) scaling_df = pd.DataFrame( - columns=scaling_factor.index, - index=edisgo_copy.timeseries.timeindex, + index=scaling_factor.index, + columns=edisgo_copy.timeseries.timeindex, data=pd.concat( [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 - ) - .transpose() - .values, + ).values, ) edisgo_copy.timeseries._storage_units_active_power = ( - scaling_df.transpose() - * edisgo_obj.overlying_grid.storage_units_active_power + scaling_df * edisgo_obj.overlying_grid.storage_units_active_power ).transpose() - if not edisgo_copy.overlying_grid.heat_pump_central_active_power.empty: + + # central PtH - distribute dispatch time series from overlying grid + # to all central PtH units based on their installed capacity + if not edisgo_obj.overlying_grid.heat_pump_central_active_power.empty: hp_district = edisgo_obj.topology.loads_df[ (edisgo_obj.topology.loads_df.type == "heat_pump") - & (edisgo_obj.topology.loads_df.sector == "district_heating") + & ( + edisgo_obj.topology.loads_df.sector.isin( + ["district_heating", "district_heating_resistive_heater"] + ) + ) ] scaling_factor = hp_district.p_set / hp_district.p_set.sum() scaling_df = pd.DataFrame( - columns=scaling_factor.index, - index=edisgo_copy.timeseries.timeindex, + index=scaling_factor.index, + columns=edisgo_copy.timeseries.timeindex, data=pd.concat( [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 - ) - .transpose() - .values, + ).values, ) edisgo_copy.timeseries._loads_active_power.loc[:, hp_district.index] = ( - scaling_df.transpose() + scaling_df * edisgo_obj.overlying_grid.heat_pump_central_active_power.sum(axis=1)[0] ).transpose() - if not edisgo_copy.overlying_grid.heat_pump_decentral_active_power.empty: + # decentral PtH - distribute dispatch time series from overlying grid + # to all decentral PtH units based on their installed capacity + if not edisgo_obj.overlying_grid.heat_pump_decentral_active_power.empty: hp_individual = edisgo_obj.topology.loads_df.index[ (edisgo_obj.topology.loads_df.type == "heat_pump") - & (edisgo_obj.topology.loads_df.sector == "individual_heating") + & ( + edisgo_obj.topology.loads_df.sector.isin( + ["individual_heating", "individual_heating_resistive_heater"] + ) + ) ] # scale with heat pump upper power scaling_factor = ( @@ -279,67 +298,64 @@ def distribute_overlying_grid_timeseries(edisgo_obj): / edisgo_obj.topology.loads_df.p_set.loc[hp_individual].sum() ) scaling_df = pd.DataFrame( - columns=scaling_factor.index, - index=edisgo_copy.timeseries.timeindex, + index=scaling_factor.index, + columns=edisgo_copy.timeseries.timeindex, data=pd.concat( [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 - ) - .transpose() - .values, + ).values, ) edisgo_copy.timeseries._loads_active_power.loc[:, hp_individual] = ( - scaling_df.transpose() - * edisgo_obj.overlying_grid.heat_pump_decentral_active_power + scaling_df * edisgo_obj.overlying_grid.heat_pump_decentral_active_power ).transpose() - if not edisgo_copy.overlying_grid.dsm_active_power.empty: - try: - dsm_loads = edisgo_copy.dsm.p_max.columns + + # DSM - distribute dispatch time series from overlying grid to all DSM loads based + # on their maximum load increase (in case of positive dispatch values) or + # their maximum load decrease (in case of negative dispatch values) + if not edisgo_obj.overlying_grid.dsm_active_power.empty: + dsm_loads = edisgo_obj.dsm.p_max.columns + if len(dsm_loads) > 0: scaling_df_max = ( - edisgo_copy.dsm.p_max.transpose() / edisgo_copy.dsm.p_max.sum(axis=1) - ).transpose() + edisgo_obj.dsm.p_max.transpose() / edisgo_obj.dsm.p_max.sum(axis=1) + ) scaling_df_min = ( - edisgo_copy.dsm.p_min.transpose() / edisgo_copy.dsm.p_min.sum(axis=1) - ).transpose() + edisgo_obj.dsm.p_min.transpose() / edisgo_obj.dsm.p_min.sum(axis=1) + ) edisgo_copy.timeseries._loads_active_power.loc[:, dsm_loads] = ( edisgo_obj.timeseries._loads_active_power.loc[:, dsm_loads] + ( - scaling_df_min.transpose() + scaling_df_min * edisgo_obj.overlying_grid.dsm_active_power.clip(upper=0) ).transpose() + ( - scaling_df_max.transpose() + scaling_df_max * edisgo_obj.overlying_grid.dsm_active_power.clip(lower=0) ).transpose() ) - except AttributeError: + else: logger.warning( - "'EDisGo' object has no attribute 'dsm'. DSM timeseries from" - " overlying grid can not be distributed." + "EDisGo object has no attribute 'dsm'. DSM timeseries from " + "overlying grid cannot be distributed." ) - if not edisgo_copy.overlying_grid.renewables_curtailment.empty: + + # curtailment + if not edisgo_obj.overlying_grid.renewables_curtailment.empty: gens = edisgo_obj.topology.generators_df[ - (edisgo_obj.topology.generators_df.type == "solar") - | (edisgo_obj.topology.generators_df.type == "wind") + edisgo_obj.topology.generators_df.type.isin(["solar", "wind"]) ].index gen_per_ts = edisgo_obj.timeseries.generators_active_power.loc[:, gens].sum( axis=1 ) scaling_factor = ( - ( - edisgo_obj.timeseries.generators_active_power.loc[:, gens].transpose() - * 1 - / gen_per_ts - ) - .transpose() - .fillna(0) - ) + edisgo_obj.timeseries.generators_active_power.loc[:, gens].transpose() + / gen_per_ts + ).fillna(0) curtailment = ( - scaling_factor.transpose() - * edisgo_obj.overlying_grid.renewables_curtailment + scaling_factor * edisgo_obj.overlying_grid.renewables_curtailment ).transpose() edisgo_copy.timeseries._generators_active_power.loc[:, gens] = ( edisgo_obj.timeseries.generators_active_power.loc[:, gens] - curtailment ) + # reset reactive power time series edisgo_copy.set_time_series_reactive_power_control() return edisgo_copy From 0dbb354e240f53ec96e14631c4b4d9c741afd5a9 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 09:29:33 +0200 Subject: [PATCH 305/355] Move distribution of overlying grid data --- edisgo/network/overlying_grid.py | 164 +++++++++++++ edisgo/opf/timeseries_reduction.py | 162 ------------- tests/network/test_overlying_grid.py | 241 ++++++++++++++++++- tests/opf/test_timeseries_reduction.py | 317 ------------------------- 4 files changed, 404 insertions(+), 480 deletions(-) delete mode 100644 tests/opf/test_timeseries_reduction.py diff --git a/edisgo/network/overlying_grid.py b/edisgo/network/overlying_grid.py index 85ee1ef8d..4f3a1622d 100644 --- a/edisgo/network/overlying_grid.py +++ b/edisgo/network/overlying_grid.py @@ -3,10 +3,12 @@ import logging import os +from copy import deepcopy from zipfile import ZipFile import pandas as pd +# from edisgo import EDisGo from edisgo.tools.tools import resample logger = logging.getLogger(__name__) @@ -256,3 +258,165 @@ def resample(self, method: str = "ffill", freq: str | pd.Timedelta = "15min"): freq_orig = timeindex[1] - timeindex[0] resample(self, freq_orig, method, freq) + + +def distribute_overlying_grid_requirements(edisgo_obj): + """ + Distributes overlying grid requirements to components in grid. + + Overlying grid requirements for e.g. electromobility charging are distributed to + all charging points where cars are parked, and for DSM to all DSM loads based + on their available load increase and decrease at each time step. + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + + Returns + -------- + :class:`~.EDisGo` + New EDisGo object with only the topology data and adjusted time series data. + + """ + + edisgo_copy = edisgo_obj.__class__() + edisgo_copy.topology = deepcopy(edisgo_obj.topology) + edisgo_copy.timeseries = deepcopy(edisgo_obj.timeseries) + + # electromobility - distribute charging time series from overlying grid to all + # charging points based on upper power flexibility band + if not edisgo_obj.overlying_grid.electromobility_active_power.empty: + cp_loads = edisgo_obj.topology.loads_df.index[ + edisgo_obj.topology.loads_df.type == "charging_point" + ] + # scale flexibility band upper power timeseries + scaling_df = edisgo_obj.electromobility.flexibility_bands[ + "upper_power" + ].transpose() / edisgo_obj.electromobility.flexibility_bands["upper_power"].sum( + axis=1 + ) + edisgo_copy.timeseries._loads_active_power.loc[:, cp_loads] = ( + scaling_df * edisgo_obj.overlying_grid.electromobility_active_power + ).transpose() + + # storage units - distribute charging/discharging time series from overlying grid + # to all storage units based on their installed capacity + if not edisgo_obj.overlying_grid.storage_units_active_power.empty: + scaling_factor = ( + edisgo_obj.topology.storage_units_df.p_nom + / edisgo_obj.topology.storage_units_df.p_nom.sum() + ) + scaling_df = pd.DataFrame( + index=scaling_factor.index, + columns=edisgo_copy.timeseries.timeindex, + data=pd.concat( + [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 + ).values, + ) + edisgo_copy.timeseries._storage_units_active_power = ( + scaling_df * edisgo_obj.overlying_grid.storage_units_active_power + ).transpose() + + # central PtH - distribute dispatch time series from overlying grid + # to all central PtH units based on their installed capacity + if not edisgo_obj.overlying_grid.heat_pump_central_active_power.empty: + hp_district = edisgo_obj.topology.loads_df[ + (edisgo_obj.topology.loads_df.type == "heat_pump") + & ( + edisgo_obj.topology.loads_df.sector.isin( + ["district_heating", "district_heating_resistive_heater"] + ) + ) + ] + scaling_factor = hp_district.p_set / hp_district.p_set.sum() + scaling_df = pd.DataFrame( + index=scaling_factor.index, + columns=edisgo_copy.timeseries.timeindex, + data=pd.concat( + [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 + ).values, + ) + edisgo_copy.timeseries._loads_active_power.loc[:, hp_district.index] = ( + scaling_df + * edisgo_obj.overlying_grid.heat_pump_central_active_power.sum(axis=1)[0] + ).transpose() + + # decentral PtH - distribute dispatch time series from overlying grid + # to all decentral PtH units based on their installed capacity + if not edisgo_obj.overlying_grid.heat_pump_decentral_active_power.empty: + hp_individual = edisgo_obj.topology.loads_df.index[ + (edisgo_obj.topology.loads_df.type == "heat_pump") + & ( + edisgo_obj.topology.loads_df.sector.isin( + ["individual_heating", "individual_heating_resistive_heater"] + ) + ) + ] + # scale with heat pump upper power + scaling_factor = ( + edisgo_obj.topology.loads_df.p_set.loc[hp_individual] + / edisgo_obj.topology.loads_df.p_set.loc[hp_individual].sum() + ) + scaling_df = pd.DataFrame( + index=scaling_factor.index, + columns=edisgo_copy.timeseries.timeindex, + data=pd.concat( + [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 + ).values, + ) + edisgo_copy.timeseries._loads_active_power.loc[:, hp_individual] = ( + scaling_df * edisgo_obj.overlying_grid.heat_pump_decentral_active_power + ).transpose() + + # DSM - distribute dispatch time series from overlying grid to all DSM loads based + # on their maximum load increase (in case of positive dispatch values) or + # their maximum load decrease (in case of negative dispatch values) + if not edisgo_obj.overlying_grid.dsm_active_power.empty: + dsm_loads = edisgo_obj.dsm.p_max.columns + if len(dsm_loads) > 0: + scaling_df_max = ( + edisgo_obj.dsm.p_max.transpose() / edisgo_obj.dsm.p_max.sum(axis=1) + ) + scaling_df_min = ( + edisgo_obj.dsm.p_min.transpose() / edisgo_obj.dsm.p_min.sum(axis=1) + ) + edisgo_copy.timeseries._loads_active_power.loc[:, dsm_loads] = ( + edisgo_obj.timeseries._loads_active_power.loc[:, dsm_loads] + + ( + scaling_df_min + * edisgo_obj.overlying_grid.dsm_active_power.clip(upper=0) + ).transpose() + + ( + scaling_df_max + * edisgo_obj.overlying_grid.dsm_active_power.clip(lower=0) + ).transpose() + ) + else: + logger.warning( + "EDisGo object has no attribute 'dsm'. DSM timeseries from " + "overlying grid cannot be distributed." + ) + + # curtailment + if not edisgo_obj.overlying_grid.renewables_curtailment.empty: + gens = edisgo_obj.topology.generators_df[ + edisgo_obj.topology.generators_df.type.isin(["solar", "wind"]) + ].index + gen_per_ts = edisgo_obj.timeseries.generators_active_power.loc[:, gens].sum( + axis=1 + ) + scaling_factor = ( + edisgo_obj.timeseries.generators_active_power.loc[:, gens].transpose() + / gen_per_ts + ).fillna(0) + curtailment = ( + scaling_factor * edisgo_obj.overlying_grid.renewables_curtailment + ).transpose() + edisgo_copy.timeseries._generators_active_power.loc[:, gens] = ( + edisgo_obj.timeseries.generators_active_power.loc[:, gens] - curtailment + ) + + # reset reactive power time series + edisgo_copy.set_time_series_reactive_power_control() + return edisgo_copy diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index 4d8bc4dc3..4ba6adbb1 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -1,14 +1,11 @@ import logging -from copy import deepcopy - import numpy as np import pandas as pd from sklearn.cluster import KMeans from sklearn.preprocessing import StandardScaler -from edisgo import EDisGo from edisgo.flex_opt import check_tech_constraints logger = logging.getLogger(__name__) @@ -200,162 +197,3 @@ def get_representative(center, values): linked_steps[step + 1] = representatives[cluster_id] + 1 return linked_steps - - -def distribute_overlying_grid_timeseries(edisgo_obj): - """ - Distributes overlying grid timeseries of flexibilities for temporal complexity - reduction. - - Parameters - ----------- - edisgo_obj : :class:`~.EDisGo` - The eDisGo API object - - Returns - -------- - :class:`~.EDisGo` - EDisGo object with only the topology data and adjusted time series data. - - """ - - edisgo_copy = EDisGo() - edisgo_copy.topology = deepcopy(edisgo_obj.topology) - edisgo_copy.timeseries = deepcopy(edisgo_obj.timeseries) - - # electromobility - distribute charging time series from overlying grid to all - # charging points based on upper power flexibility band - if not edisgo_obj.overlying_grid.electromobility_active_power.empty: - cp_loads = edisgo_obj.topology.loads_df.index[ - edisgo_obj.topology.loads_df.type == "charging_point" - ] - # scale flexibility band upper power timeseries - scaling_df = edisgo_obj.electromobility.flexibility_bands[ - "upper_power" - ].transpose() / edisgo_obj.electromobility.flexibility_bands["upper_power"].sum( - axis=1 - ) - edisgo_copy.timeseries._loads_active_power.loc[:, cp_loads] = ( - scaling_df * edisgo_obj.overlying_grid.electromobility_active_power - ).transpose() - - # storage units - distribute charging/discharging time series from overlying grid - # to all storage units based on their installed capacity - if not edisgo_obj.overlying_grid.storage_units_active_power.empty: - scaling_factor = ( - edisgo_obj.topology.storage_units_df.p_nom - / edisgo_obj.topology.storage_units_df.p_nom.sum() - ) - scaling_df = pd.DataFrame( - index=scaling_factor.index, - columns=edisgo_copy.timeseries.timeindex, - data=pd.concat( - [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 - ).values, - ) - edisgo_copy.timeseries._storage_units_active_power = ( - scaling_df * edisgo_obj.overlying_grid.storage_units_active_power - ).transpose() - - # central PtH - distribute dispatch time series from overlying grid - # to all central PtH units based on their installed capacity - if not edisgo_obj.overlying_grid.heat_pump_central_active_power.empty: - hp_district = edisgo_obj.topology.loads_df[ - (edisgo_obj.topology.loads_df.type == "heat_pump") - & ( - edisgo_obj.topology.loads_df.sector.isin( - ["district_heating", "district_heating_resistive_heater"] - ) - ) - ] - scaling_factor = hp_district.p_set / hp_district.p_set.sum() - scaling_df = pd.DataFrame( - index=scaling_factor.index, - columns=edisgo_copy.timeseries.timeindex, - data=pd.concat( - [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 - ).values, - ) - edisgo_copy.timeseries._loads_active_power.loc[:, hp_district.index] = ( - scaling_df - * edisgo_obj.overlying_grid.heat_pump_central_active_power.sum(axis=1)[0] - ).transpose() - - # decentral PtH - distribute dispatch time series from overlying grid - # to all decentral PtH units based on their installed capacity - if not edisgo_obj.overlying_grid.heat_pump_decentral_active_power.empty: - hp_individual = edisgo_obj.topology.loads_df.index[ - (edisgo_obj.topology.loads_df.type == "heat_pump") - & ( - edisgo_obj.topology.loads_df.sector.isin( - ["individual_heating", "individual_heating_resistive_heater"] - ) - ) - ] - # scale with heat pump upper power - scaling_factor = ( - edisgo_obj.topology.loads_df.p_set.loc[hp_individual] - / edisgo_obj.topology.loads_df.p_set.loc[hp_individual].sum() - ) - scaling_df = pd.DataFrame( - index=scaling_factor.index, - columns=edisgo_copy.timeseries.timeindex, - data=pd.concat( - [scaling_factor] * len(edisgo_copy.timeseries.timeindex), axis=1 - ).values, - ) - edisgo_copy.timeseries._loads_active_power.loc[:, hp_individual] = ( - scaling_df * edisgo_obj.overlying_grid.heat_pump_decentral_active_power - ).transpose() - - # DSM - distribute dispatch time series from overlying grid to all DSM loads based - # on their maximum load increase (in case of positive dispatch values) or - # their maximum load decrease (in case of negative dispatch values) - if not edisgo_obj.overlying_grid.dsm_active_power.empty: - dsm_loads = edisgo_obj.dsm.p_max.columns - if len(dsm_loads) > 0: - scaling_df_max = ( - edisgo_obj.dsm.p_max.transpose() / edisgo_obj.dsm.p_max.sum(axis=1) - ) - scaling_df_min = ( - edisgo_obj.dsm.p_min.transpose() / edisgo_obj.dsm.p_min.sum(axis=1) - ) - edisgo_copy.timeseries._loads_active_power.loc[:, dsm_loads] = ( - edisgo_obj.timeseries._loads_active_power.loc[:, dsm_loads] - + ( - scaling_df_min - * edisgo_obj.overlying_grid.dsm_active_power.clip(upper=0) - ).transpose() - + ( - scaling_df_max - * edisgo_obj.overlying_grid.dsm_active_power.clip(lower=0) - ).transpose() - ) - else: - logger.warning( - "EDisGo object has no attribute 'dsm'. DSM timeseries from " - "overlying grid cannot be distributed." - ) - - # curtailment - if not edisgo_obj.overlying_grid.renewables_curtailment.empty: - gens = edisgo_obj.topology.generators_df[ - edisgo_obj.topology.generators_df.type.isin(["solar", "wind"]) - ].index - gen_per_ts = edisgo_obj.timeseries.generators_active_power.loc[:, gens].sum( - axis=1 - ) - scaling_factor = ( - edisgo_obj.timeseries.generators_active_power.loc[:, gens].transpose() - / gen_per_ts - ).fillna(0) - curtailment = ( - scaling_factor * edisgo_obj.overlying_grid.renewables_curtailment - ).transpose() - edisgo_copy.timeseries._generators_active_power.loc[:, gens] = ( - edisgo_obj.timeseries.generators_active_power.loc[:, gens] - curtailment - ) - - # reset reactive power time series - edisgo_copy.set_time_series_reactive_power_control() - return edisgo_copy diff --git a/tests/network/test_overlying_grid.py b/tests/network/test_overlying_grid.py index aef140470..8c3388a3b 100644 --- a/tests/network/test_overlying_grid.py +++ b/tests/network/test_overlying_grid.py @@ -5,7 +5,11 @@ import pandas as pd import pytest -from edisgo.network.overlying_grid import OverlyingGrid +from edisgo import EDisGo +from edisgo.network.overlying_grid import ( + OverlyingGrid, + distribute_overlying_grid_requirements, +) class TestOverlyingGrid: @@ -155,3 +159,238 @@ def test_resample(self, caplog): assert ( "Data cannot be resampled as it only contains one time step." in caplog.text ) + + +class TestOverlyingGridFunc: + @classmethod + def setup_class(self): + self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) + self.edisgo.set_time_series_worst_case_analysis() + self.timesteps = self.edisgo.timeseries.timeindex + + def setup_flexibility_data(self): + # add heat pump dummy data + self.edisgo.add_component( + comp_type="load", + type="heat_pump", + sector="individual_heating", + ts_active_power=pd.Series( + index=self.edisgo.timeseries.timeindex, + data=[1.0 / 5, 2.0 / 6, 2.0 / 5, 1.0 / 6], + ), + ts_reactive_power="default", + bus=self.edisgo.topology.buses_df.index[26], + p_set=2, + ) + self.edisgo.add_component( + comp_type="load", + type="heat_pump", + sector="individual_heating", + ts_active_power=pd.Series( + index=self.edisgo.timeseries.timeindex, + data=[2.0 / 7.0, 4.0 / 8.0, 3.0 / 7.0, 3.0 / 8.0], + ), + ts_reactive_power="default", + bus=self.edisgo.topology.buses_df.index[30], + p_set=3, + ) + + # add electromobility dummy data + self.edisgo.add_component( + comp_type="load", + type="charging_point", + ts_active_power=pd.Series( + index=self.edisgo.timeseries.timeindex, data=[0.5, 0.5, 0.5, 0.5] + ), + ts_reactive_power="default", + bus=self.edisgo.topology.buses_df.index[32], + p_set=3, + ) + flex_bands = { + "lower_energy": pd.DataFrame( + {"Charging_Point_LVGrid_6_1": [0, 0, 1, 2]}, + index=self.edisgo.timeseries.timeindex, + ), + "upper_energy": pd.DataFrame( + {"Charging_Point_LVGrid_6_1": [1, 2, 2, 3]}, + index=self.edisgo.timeseries.timeindex, + ), + "upper_power": pd.DataFrame( + {"Charging_Point_LVGrid_6_1": [1, 1, 2, 1]}, + index=self.edisgo.timeseries.timeindex, + ), + } + self.edisgo.electromobility.flexibility_bands = flex_bands + + # add DSM dummy data + self.edisgo.dsm.p_min = pd.DataFrame( + data={ + "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + -0.3, + -0.3, + -0.3, + -0.3, + ], + "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], + }, + index=self.edisgo.timeseries.timeindex, + ) + self.edisgo.dsm.p_max = pd.DataFrame( + data={ + "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ + 0.3, + 0.3, + 0.3, + 0.3, + ], + "Load_industrial_LVGrid_5_1": [0.07, 0.07, 0.07, 0.07], + }, + index=self.edisgo.timeseries.timeindex, + ) + + # add overlying grid dummy data + for attr in [ + "dsm_active_power", + "electromobility_active_power", + "heat_pump_decentral_active_power", + "renewables_curtailment", + "storage_units_active_power", + ]: + if attr == "dsm_active_power": + data = [0.1, -0.1, -0.1, 0.1] + elif attr == "electromobility_active_power": + data = [0.4, 0.5, 0.5, 0.6] + elif attr == "heat_pump_decentral_active_power": + data = [0.5, 0.85, 0.85, 0.55] + elif attr == "storage_units_active_power": + data = [-0.35, -0.35, 0.35, 0.35] + elif attr == "renewables_curtailment": + data = [0, 0, 0.1, 0.1] + + df = pd.Series( + index=self.timesteps, + data=data, + ) + setattr( + self.edisgo.overlying_grid, + attr, + df, + ) + + # Resample timeseries and reindex to hourly timedelta + self.edisgo.resample_timeseries(freq="1min") + + for attr in ["p_min", "p_max"]: + new_dates = pd.DatetimeIndex( + [getattr(self.edisgo.dsm, attr).index[-1] + pd.Timedelta("1h")] + ) + setattr( + self.edisgo.dsm, + attr, + getattr(self.edisgo.dsm, attr) + .reindex( + getattr(self.edisgo.dsm, attr) + .index.union(new_dates) + .unique() + .sort_values() + ) + .ffill() + .resample("1min") + .ffill() + .iloc[:-1], + ) + self.timesteps = pd.date_range(start="01/01/2018", periods=240, freq="h") + attributes = self.edisgo.timeseries._attributes + for attr in attributes: + if not getattr(self.edisgo.timeseries, attr).empty: + df = pd.DataFrame( + index=self.timesteps, + columns=getattr(self.edisgo.timeseries, attr).columns, + data=getattr(self.edisgo.timeseries, attr).values, + ) + setattr( + self.edisgo.timeseries, + attr, + df, + ) + self.edisgo.timeseries.timeindex = self.timesteps + # Battery electric vehicle timeseries + for key, df in self.edisgo.electromobility.flexibility_bands.items(): + if not df.empty: + df.index = self.timesteps + self.edisgo.electromobility.flexibility_bands.update({key: df}) + # Demand Side Management timeseries + for attr in ["p_min", "p_max"]: + if not getattr(self.edisgo.dsm, attr).empty: + df = pd.DataFrame( + index=self.timesteps, + columns=getattr(self.edisgo.dsm, attr).columns, + data=getattr(self.edisgo.dsm, attr).values, + ) + setattr( + self.edisgo.dsm, + attr, + df, + ) + # overlying grid timeseries + for attr in [ + "dsm_active_power", + "electromobility_active_power", + "heat_pump_decentral_active_power", + "renewables_curtailment", + "storage_units_active_power", + ]: + if not getattr(self.edisgo.overlying_grid, attr).empty: + df = pd.Series( + index=self.timesteps, + data=getattr(self.edisgo.overlying_grid, attr).values, + ) + setattr( + self.edisgo.overlying_grid, + attr, + df, + ) + + def test_distribute_overlying_grid_timeseries(self): + + self.setup_flexibility_data() + edisgo_copy = distribute_overlying_grid_requirements(self.edisgo) + + hps = self.edisgo.topology.loads_df.index[ + self.edisgo.topology.loads_df.sector.isin( + ["individual_heating", "individual_heating_resistive_heater"] + ) + ] + + assert np.isclose( + edisgo_copy.timeseries.loads_active_power[hps].sum(axis=1), + self.edisgo.overlying_grid.heat_pump_decentral_active_power, + atol=1e-5, + ).all() + assert ( + edisgo_copy.timeseries.loads_active_power["Charging_Point_LVGrid_6_1"] + == self.edisgo.overlying_grid.electromobility_active_power.values + ).all() + assert ( + edisgo_copy.timeseries.storage_units_active_power["Storage_1"] + == self.edisgo.overlying_grid.storage_units_active_power.values + ).all() + + dsm = self.edisgo.dsm.p_max.columns.values + assert np.isclose( + edisgo_copy.timeseries.loads_active_power[dsm].sum(axis=1), + self.edisgo.timeseries.loads_active_power[dsm].sum(axis=1) + + self.edisgo.overlying_grid.dsm_active_power, + atol=1e-5, + ).all() + + res = self.edisgo.topology.generators_df.loc[ + (self.edisgo.topology.generators_df.type == "solar") + | (self.edisgo.topology.generators_df.type == "wind") + ].index.values + assert np.isclose( + edisgo_copy.timeseries.generators_active_power[res].sum(axis=1), + self.edisgo.timeseries.generators_active_power[res].sum(axis=1) + - self.edisgo.overlying_grid.renewables_curtailment, + atol=1e-5, + ).all() diff --git a/tests/opf/test_timeseries_reduction.py b/tests/opf/test_timeseries_reduction.py deleted file mode 100644 index 7527525f7..000000000 --- a/tests/opf/test_timeseries_reduction.py +++ /dev/null @@ -1,317 +0,0 @@ -import numpy as np -import pandas as pd -import pytest - -from edisgo import EDisGo -from edisgo.opf import timeseries_reduction - - -class TestTimeseriesReduction: - @classmethod - def setup_class(self): - self.edisgo = EDisGo(ding0_grid=pytest.ding0_test_network_path) - self.edisgo.set_time_series_worst_case_analysis() - self.timesteps = self.edisgo.timeseries.timeindex - - def setup_flexibility_data(self): - # add heat pump dummy data - self.edisgo.add_component( - comp_type="load", - type="heat_pump", - sector="individual_heating", - ts_active_power=pd.Series( - index=self.edisgo.timeseries.timeindex, - data=[1.0 / 5, 2.0 / 6, 2.0 / 5, 1.0 / 6], - ), - ts_reactive_power="default", - bus=self.edisgo.topology.buses_df.index[26], - p_set=2, - ) - self.edisgo.add_component( - comp_type="load", - type="heat_pump", - sector="individual_heating", - ts_active_power=pd.Series( - index=self.edisgo.timeseries.timeindex, - data=[2.0 / 7.0, 4.0 / 8.0, 3.0 / 7.0, 3.0 / 8.0], - ), - ts_reactive_power="default", - bus=self.edisgo.topology.buses_df.index[30], - p_set=3, - ) - - self.edisgo.heat_pump.cop_df = pd.DataFrame( - data={ - "Heat_Pump_LVGrid_3_individual_heating_1": [5.0, 6.0, 5.0, 6.0], - "Heat_Pump_LVGrid_5_individual_heating_1": [7.0, 8.0, 7.0, 8.0], - }, - index=self.edisgo.timeseries.timeindex, - ) - self.edisgo.heat_pump.heat_demand_df = pd.DataFrame( - data={ - "Heat_Pump_LVGrid_3_individual_heating_1": [1.0, 2.0, 2.0, 1.0], - "Heat_Pump_LVGrid_5_individual_heating_1": [2.0, 4.0, 3.0, 3.0], - }, - index=self.edisgo.timeseries.timeindex, - ) - self.edisgo.heat_pump.thermal_storage_units_df = pd.DataFrame( - data={ - "capacity": [4, 8], - "efficiency": [1, 1], - }, - index=self.edisgo.heat_pump.heat_demand_df.columns, - ) - # add electromobility dummy data - self.edisgo.add_component( - comp_type="load", - type="charging_point", - ts_active_power=pd.Series( - index=self.edisgo.timeseries.timeindex, data=[0.5, 0.5, 0.5, 0.5] - ), - ts_reactive_power="default", - bus=self.edisgo.topology.buses_df.index[32], - p_set=3, - ) - - flex_bands = { - "lower_energy": pd.DataFrame( - {"Charging_Point_LVGrid_6_1": [0, 0, 1, 2]}, - index=self.edisgo.timeseries.timeindex, - ), - "upper_energy": pd.DataFrame( - {"Charging_Point_LVGrid_6_1": [1, 2, 2, 3]}, - index=self.edisgo.timeseries.timeindex, - ), - "upper_power": pd.DataFrame( - {"Charging_Point_LVGrid_6_1": [1, 1, 2, 1]}, - index=self.edisgo.timeseries.timeindex, - ), - } - self.edisgo.electromobility.flexibility_bands = flex_bands - # add DSM dummy data - self.edisgo.dsm.p_min = pd.DataFrame( - data={ - "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ - -0.3, - -0.3, - -0.3, - -0.3, - ], - "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], - }, - index=self.edisgo.timeseries.timeindex, - ) - self.edisgo.dsm.p_max = pd.DataFrame( - data={ - "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ - 0.3, - 0.3, - 0.3, - 0.3, - ], - "Load_industrial_LVGrid_5_1": [0.07, 0.07, 0.07, 0.07], - }, - index=self.edisgo.timeseries.timeindex, - ) - self.edisgo.dsm.e_min = pd.DataFrame( - data={ - "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ - -0.3, - -0.4, - -0.5, - -0.4, - ], - "Load_industrial_LVGrid_5_1": [-0.07, -0.07, -0.07, -0.07], - }, - index=self.edisgo.timeseries.timeindex, - ) - self.edisgo.dsm.e_max = pd.DataFrame( - data={ - "Load_retail_MVGrid_1_Load_aggregated_retail_MVGrid_1_1": [ - 0.3, - 0.5, - 0.5, - 0.4, - ], - "Load_industrial_LVGrid_5_1": [0.07, 0.1, 0.09, 0.07], - }, - index=self.edisgo.timeseries.timeindex, - ) - # add overlying grid dummy data - for attr in [ - "dsm_active_power", - "electromobility_active_power", - "heat_pump_decentral_active_power", - "renewables_curtailment", - "storage_units_active_power", - ]: - if attr == "dsm_active_power": - data = [0.1, -0.1, -0.1, 0.1] - elif attr == "electromobility_active_power": - data = [0.4, 0.5, 0.5, 0.6] - elif attr == "heat_pump_decentral_active_power": - data = [0.5, 0.85, 0.85, 0.55] - elif attr == "storage_units_active_power": - data = [-0.35, -0.35, 0.35, 0.35] - elif attr == "renewables_curtailment": - data = [0, 0, 0.1, 0.1] - - df = pd.Series( - index=self.timesteps, - data=data, - ) - setattr( - self.edisgo.overlying_grid, - attr, - df, - ) - - # Resample timeseries and reindex to hourly timedelta - self.edisgo.resample_timeseries(freq="1min") - - for attr in ["p_min", "p_max", "e_min", "e_max"]: - new_dates = pd.DatetimeIndex( - [getattr(self.edisgo.dsm, attr).index[-1] + pd.Timedelta("1h")] - ) - setattr( - self.edisgo.dsm, - attr, - getattr(self.edisgo.dsm, attr) - .reindex( - getattr(self.edisgo.dsm, attr) - .index.union(new_dates) - .unique() - .sort_values() - ) - .ffill() - .resample("1min") - .ffill() - .iloc[:-1], - ) - self.timesteps = pd.date_range(start="01/01/2018", periods=240, freq="h") - attributes = self.edisgo.timeseries._attributes - for attr in attributes: - if not getattr(self.edisgo.timeseries, attr).empty: - df = pd.DataFrame( - index=self.timesteps, - columns=getattr(self.edisgo.timeseries, attr).columns, - data=getattr(self.edisgo.timeseries, attr).values, - ) - setattr( - self.edisgo.timeseries, - attr, - df, - ) - self.edisgo.timeseries.timeindex = self.timesteps - # Battery electric vehicle timeseries - for key, df in self.edisgo.electromobility.flexibility_bands.items(): - if not df.empty: - df.index = self.timesteps - self.edisgo.electromobility.flexibility_bands.update({key: df}) - # Heat pumps timeseries - for attr in ["cop_df", "heat_demand_df"]: - if not getattr(self.edisgo.heat_pump, attr).empty: - df = pd.DataFrame( - index=self.timesteps, - columns=getattr(self.edisgo.heat_pump, attr).columns, - data=getattr(self.edisgo.heat_pump, attr).values, - ) - setattr( - self.edisgo.heat_pump, - attr, - df, - ) - # Demand Side Management timeseries - for attr in ["e_min", "e_max", "p_min", "p_max"]: - if not getattr(self.edisgo.dsm, attr).empty: - df = pd.DataFrame( - index=self.timesteps, - columns=getattr(self.edisgo.dsm, attr).columns, - data=getattr(self.edisgo.dsm, attr).values, - ) - setattr( - self.edisgo.dsm, - attr, - df, - ) - # overlying grid timeseries - for attr in [ - "dsm_active_power", - "electromobility_active_power", - "heat_pump_decentral_active_power", - "renewables_curtailment", - "storage_units_active_power", - ]: - if not getattr(self.edisgo.overlying_grid, attr).empty: - df = pd.Series( - index=self.timesteps, - data=getattr(self.edisgo.overlying_grid, attr).values, - ) - setattr( - self.edisgo.overlying_grid, - attr, - df, - ) - - @pytest.fixture(autouse=True) - def run_power_flow(self): - """ - Fixture to run new power flow before each test. - - """ - self.edisgo.analyze() - - def test_distribute_overlying_grid_timeseries(self): - self.setup_class() - self.setup_flexibility_data() - edisgo_copy = timeseries_reduction.distribute_overlying_grid_timeseries( - self.edisgo - ) - dsm = self.edisgo.dsm.e_max.columns.values - hps = self.edisgo.heat_pump.cop_df.columns.values - res = self.edisgo.topology.generators_df.loc[ - (self.edisgo.topology.generators_df.type == "solar") - | (self.edisgo.topology.generators_df.type == "wind") - ].index.values - assert { - np.isclose( - edisgo_copy.timeseries.loads_active_power[hps].sum(axis=1)[i], - self.edisgo.overlying_grid.heat_pump_decentral_active_power[i], - atol=1e-5, - ) - for i in range(len(self.timesteps)) - } == {True} - assert ( - edisgo_copy.timeseries.loads_active_power["Charging_Point_LVGrid_6_1"] - == self.edisgo.overlying_grid.electromobility_active_power.values - ).all() - assert ( - edisgo_copy.timeseries.storage_units_active_power["Storage_1"] - == self.edisgo.overlying_grid.storage_units_active_power.values - ).all() - assert { - np.isclose( - edisgo_copy.timeseries.loads_active_power[dsm].sum(axis=1)[i], - self.edisgo.timeseries.loads_active_power[dsm].sum(axis=1)[i] - + self.edisgo.overlying_grid.dsm_active_power.values[i], - atol=1e-5, - ) - for i in range(len(self.timesteps)) - } == {True} - assert { - np.isclose( - edisgo_copy.timeseries.generators_active_power[res].sum(axis=1)[i], - self.edisgo.timeseries.generators_active_power[res].sum(axis=1)[i] - - self.edisgo.overlying_grid.renewables_curtailment.values[i], - atol=1e-5, - ) - for i in range(int(0.5 * len(self.timesteps)), len(self.timesteps)) - } == {True} - assert { - np.isclose( - edisgo_copy.timeseries.generators_active_power[res].sum(axis=1)[i], - self.edisgo.timeseries.generators_active_power[res].sum(axis=1)[i], - atol=1e-5, - ) - for i in range(int(0.5 * len(self.timesteps))) - } == {True} From 1afb2be95191d5a39220d0bc4ca4a810daf9a6dc Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Wed, 3 May 2023 14:09:38 +0200 Subject: [PATCH 306/355] added lv grid separation functionality --- edisgo/flex_opt/reinforce_measures.py | 382 ++++++++++++++++++++++++++ 1 file changed, 382 insertions(+) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 56cb9d8a9..7b9dc11de 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -1,6 +1,10 @@ +from __future__ import annotations + import logging import math +from typing import TYPE_CHECKING, Any + import networkx as nx import numpy as np import pandas as pd @@ -11,6 +15,9 @@ from edisgo.network.grids import LVGrid, MVGrid +if TYPE_CHECKING: + from edisgo import EDisGo + logger = logging.getLogger(__name__) @@ -725,3 +732,378 @@ def _replace_by_parallel_standard_lines(lines): _replace_by_parallel_standard_lines(relevant_lines.index) return lines_changes + + +# TODO: check docstrings +def separate_lv_grid( + edisgo_obj: EDisGo, grid: LVGrid +) -> tuple[dict[Any, Any], dict[str, int]]: + """ + Split LV grid by adding a new substation and connect half of each feeder. + + If the number of overloaded feeders in the LV grid is more than 1 (this can be + changed 2 or 3), the feeders are split at their half-length, and the disconnected + points are connected to the new MV/LV station. + + 1. The point at half the length of the feeders is found. + 2. The first node following this point is chosen as the point where the new + connection will be made. This node can only be a station. + 3. This node is disconnected from the previous node and connected to a new station. + 4. New MV/LV is connected to the existing MV/LV station with a line of which length + equals the line length between the node at the half-length (node_1_2) and its + preceding node. + + Notes: + - If the number of overloaded lines in the LV grid is less than 2 (this can be + changed 2 or 3) and the node_1_2 is the first node after the main station, the + method is not applied. + - The name of the new grid will be the existing grid code + (e.g. 40000) + 1001 = 400001001 + - The name of the lines in the new LV grid is the same as the grid where the nodes + are removed + - Except line names, all the data frames are named based on the new grid name + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + grid: class : :class:`~.network.grids.MVGrid` or :class:`~.network.grids.LVGrid` + + Returns + ------- + line_changes= dict + Dictionary with name of lines as keys and the corresponding number of + lines added as values. + transformer_changes= dict + Dictionary with added and removed transformers in the form:: + {'added': {'Grid_1': ['transformer_reinforced_1', + ..., + 'transformer_reinforced_x'], + 'Grid_10': ['transformer_reinforced_10'] + } + } + """ + + def get_weight(u, v, data: dict) -> float: + return data["length"] + + def create_bus_name(bus: str, voltage_level: str) -> str: + """ + Create an LV and MV bus-bar name with the same grid_id but added '1001' that + implies the separation + + Parameters + ---------- + bus : str + Bus name. E.g. 'BusBar_mvgd_460_lvgd_131573_LV' + voltage_level : str + 'mv' or 'lv' + + Returns + ---------- + bus: str New bus-bar name + """ + if bus in edisgo_obj.topology.buses_df.index: + bus = bus.split("_") + grid_id_ind = bus.index(str(grid.id)) + bus[grid_id_ind] = f"{grid.id}1001" + + if voltage_level == "lv": + bus = "_".join([str(_) for _ in bus]) + elif voltage_level == "mv": + bus[-1] = "MV" + bus = "_".join([str(_) for _ in bus]) + else: + logger.error( + f"Voltage level can only be 'mv' or 'lv'. Voltage level used: " + f"{voltage_level}." + ) + else: + raise IndexError(f"Station bus {bus} is not within the buses DataFrame.") + + return bus + + def add_standard_transformer( + edisgo_obj: EDisGo, grid: LVGrid, bus_lv: str, bus_mv: str + ) -> dict: + """ + Adds standard transformer to topology. + + Parameters + ---------- + edisgo_obj: class:`~.EDisGo` + grid: `~.network.grids.LVGrid` + bus_lv: Identifier of lv bus + bus_mv: Identifier of mv bus + + Returns + ---------- + transformer_changes= dict + """ + if bus_lv not in edisgo_obj.topology.buses_df.index: + raise ValueError( + f"Specified bus {bus_lv} is not valid as it is not defined in " + "buses_df." + ) + if bus_mv not in edisgo_obj.topology.buses_df.index: + raise ValueError( + f"Specified bus {bus_mv} is not valid as it is not defined in " + "buses_df." + ) + + try: + standard_transformer = edisgo_obj.topology.equipment_data[ + "lv_transformers" + ].loc[ + edisgo_obj.config["grid_expansion_standard_equipment"][ + "mv_lv_transformer" + ] + ] + except KeyError: + raise KeyError("Standard MV/LV transformer is not in the equipment list.") + + transformers_changes = {"added": {}} + + transformer_s = grid.transformers_df.iloc[0] + new_transformer_name = transformer_s.name.split("_") + grid_id_ind = new_transformer_name.index(str(grid.id)) + new_transformer_name[grid_id_ind] = f"{str(grid.id)}1001" + + transformer_s.s_nom = standard_transformer.S_nom + transformer_s.type_info = None + transformer_s.r_pu = standard_transformer.r_pu + transformer_s.x_pu = standard_transformer.x_pu + transformer_s.name = "_".join([str(_) for _ in new_transformer_name]) + transformer_s.bus0 = bus_mv + transformer_s.bus1 = bus_lv + + new_transformer_df = transformer_s.to_frame().T + + edisgo_obj.topology.transformers_df = pd.concat( + [edisgo_obj.topology.transformers_df, new_transformer_df] + ) + transformers_changes["added"][ + f"LVGrid_{str(grid.id)}1001" + ] = new_transformer_df.index.tolist() + + return transformers_changes + + G = grid.graph + station_node = list(G.nodes)[0] # main station + + relevant_lines = grid.lines_df.loc[ + (grid.lines_df.bus0 == station_node) | (grid.lines_df.bus1 == station_node) + ] + + logger.debug(f"{grid} has {len(relevant_lines)} feeder.") + + paths = {} + first_nodes_feeders = {} + + for node in G.nodes: + path = nx.shortest_path(G, station_node, node) + + for first_node in relevant_lines.bus1.values: + if first_node in path: + paths[node] = path + first_nodes_feeders.setdefault(path[1], []).append( + node # first nodes and paths + ) + + lines_changes = {} + transformers_changes = {} + nodes_tb_relocated = {} # nodes to be moved into the new grid + + # note: The number of critical lines in the Lv grid can be more than 2. However, + # if the node_1_2 of the first feeder in the for loop is not the first node of the + # feeder, it will add data frames even though the following feeders only 1 node + # (node_1_2=first node of feeder). In this type of case,the number of critical lines + # should be evaluated for the feeders whose node_1_2 s are not the first node of the + # feeder. The first check should be done on the feeders that have fewer nodes. + + first_nodes_feeders = dict( + sorted( + first_nodes_feeders.items(), key=lambda item: len(item[1]), reverse=False + ) + ) + + count_inept = 0 + + for first_node, nodes_feeder in first_nodes_feeders.items(): + # first line of the feeder + first_line = relevant_lines[relevant_lines.bus1 == first_node].index[0] + + # the last node of the feeder + last_node = nodes_feeder[-1] + + # the length of each line (the shortest path) + path_length_dict_tmp = dijkstra_shortest_path_length( + G, station_node, get_weight, target=last_node + ) + + # path does not include the nodes branching from the node on the main path + path = paths[last_node] + + node_1_2 = next( + j + for j in path + if path_length_dict_tmp[j] >= path_length_dict_tmp[last_node] * 1 / 2 + ) + + # if LVGrid: check if node_1_2 is outside a house + # and if not find next BranchTee outside the house + while ( + ~np.isnan(grid.buses_df.loc[node_1_2].in_building) + and grid.buses_df.loc[node_1_2].in_building + ): + node_1_2 = path[path.index(node_1_2) - 1] + # break if node is station + if node_1_2 is path[0]: + raise NotImplementedError( + f" {grid}==>{first_line} and following lines could not be " + f"reinforced due to insufficient number of node in the feeder. " + f"A method to handle such cases is not yet implemented." + ) + + # NOTE: If node_1_2 is a representative (meaning it is already directly + # connected to the station) feeder cannot be split. Instead, every second + # inept feeder is assigned to the new grid + if node_1_2 not in first_nodes_feeders or count_inept % 2 == 1: + nodes_tb_relocated[node_1_2] = nodes_feeder[nodes_feeder.index(node_1_2) :] + + if node_1_2 in first_nodes_feeders: + count_inept += 1 + else: + count_inept += 1 + + if nodes_tb_relocated: + logger.info(f"{grid}==>method:add_station_at_half_length is running ") + # Create the bus-bar name of primary and secondary side of new MV/LV station + lv_bus_new = create_bus_name(station_node, "lv") + mv_bus_new = create_bus_name(station_node, "mv") + + # ADD MV and LV bus + v_nom_lv = edisgo_obj.topology.buses_df.at[ + grid.transformers_df.bus1[0], + "v_nom", + ] + v_nom_mv = edisgo_obj.topology.buses_df.at[ + grid.transformers_df.bus0[0], + "v_nom", + ] + + x_bus = grid.buses_df.at[station_node, "x"] + y_bus = grid.buses_df.at[station_node, "y"] + + # the new lv grid id: e.g. 496021001 + lv_grid_id_new = int(f"{str(grid.id)}1001") + building_bus = grid.buses_df.at[station_node, "in_building"] + + dist = 0.001 + + length_mv = np.sqrt(dist**2 + dist**2) + + # add lv busbar + edisgo_obj.topology.add_bus( + lv_bus_new, + v_nom_lv, + x=x_bus + dist, + y=y_bus + dist, + lv_grid_id=lv_grid_id_new, + in_building=building_bus, + ) + # add mv busbar + edisgo_obj.topology.add_bus( + mv_bus_new, + v_nom_mv, + x=x_bus + dist, + y=y_bus + dist, + in_building=building_bus, + ) + + # ADD TRANSFORMER + transformer_changes = add_standard_transformer( + edisgo_obj, grid, lv_bus_new, mv_bus_new + ) + transformers_changes.update(transformer_changes) + + logger.debug( + f"{edisgo_obj.topology.mv_grid}==>A new grid {lv_grid_id_new} " + f"added into topology" + ) + + # ADD the MV LINE between existing and new MV station + standard_line = edisgo_obj.config["grid_expansion_standard_equipment"][ + f"mv_line_{int(edisgo_obj.topology.mv_grid.nominal_voltage)}kv" + ] + + line_added_mv = edisgo_obj.add_component( + comp_type="line", + bus0=grid.transformers_df.bus0[0], + bus1=mv_bus_new, + length=length_mv, + type_info=standard_line, + kind="cable", + ) + + lines_changes[line_added_mv] = 1 + + lv_standard_line = edisgo_obj.config["grid_expansion_standard_equipment"][ + "lv_line" + ] + + # changes on relocated lines to the new LV grid + # grid_ids + for node_1_2, nodes in nodes_tb_relocated.items(): + # the last node of the feeder + last_node = nodes[-1] + + # path does not include the nodes branching from the node on the main path + path = paths[last_node] + + nodes.append(node_1_2) + + edisgo_obj.topology.buses_df.loc[nodes, "lv_grid_id"] = lv_grid_id_new + + dist = dijkstra_shortest_path_length( + G, station_node, get_weight, target=node_1_2 + )[node_1_2] + + line_added_lv = edisgo_obj.add_component( + comp_type="line", + bus0=lv_bus_new, + bus1=node_1_2, + length=dist, + type_info=lv_standard_line, + ) + + lines_changes[line_added_lv] = 1 + + # predecessor node of node_1_2 + pred_node = path[path.index(node_1_2) - 1] + + # the line + line_removed = G.get_edge_data(node_1_2, pred_node)["branch_name"] + + edisgo_obj.remove_component( + comp_type="line", + comp_name=line_removed, + ) + + logger.debug( + f"the node {node_1_2} is split from the line and connected to " + f"{lv_grid_id_new} " + ) + + logger.info( + f"{len(nodes_tb_relocated.keys())} feeders are removed from the grid " + f"{grid} and located in new grid{repr(grid) + str(1001)} by method: " + f"add_station_at_half_length " + ) + + else: + logger.warning( + f"{grid} was not reinforced because it has to few suitable feeders." + ) + + # TODO: check if changes are tracked correctly + return transformers_changes, lines_changes From ea772078d00ffa550620316410f7054511501eef Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Wed, 3 May 2023 14:17:19 +0200 Subject: [PATCH 307/355] added tests for lv grid separation --- edisgo/flex_opt/reinforce_measures.py | 1 + tests/flex_opt/test_reinforce_measures.py | 60 ++++++++++++++++++++++- 2 files changed, 60 insertions(+), 1 deletion(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 7b9dc11de..bb6cf5737 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -805,6 +805,7 @@ def create_bus_name(bus: str, voltage_level: str) -> str: if bus in edisgo_obj.topology.buses_df.index: bus = bus.split("_") grid_id_ind = bus.index(str(grid.id)) + # TODO: how to name new grids? bus[grid_id_ind] = f"{grid.id}1001" if voltage_level == "lv": diff --git a/tests/flex_opt/test_reinforce_measures.py b/tests/flex_opt/test_reinforce_measures.py index 40acf4eab..7696edf59 100644 --- a/tests/flex_opt/test_reinforce_measures.py +++ b/tests/flex_opt/test_reinforce_measures.py @@ -5,7 +5,7 @@ import pytest from edisgo import EDisGo -from edisgo.flex_opt import reinforce_measures +from edisgo.flex_opt import check_tech_constraints, reinforce_measures class TestReinforceMeasures: @@ -453,3 +453,61 @@ def test_reinforce_lines_overloading(self): assert np.isclose(line.x, 0.256 * 2 * np.pi * 50 / 1e3 * line.length) assert np.isclose(line.s_nom, 0.275 * 0.4 * np.sqrt(3)) assert line.num_parallel == 1 + + def test_separate_lv_grid(self): + self.edisgo = copy.deepcopy(self.edisgo_root) + + crit_lines_lv = check_tech_constraints.lv_line_max_relative_overload( + self.edisgo + ) + + lv_grid_ids = ( + self.edisgo.topology.buses_df.loc[ + self.edisgo.topology.lines_df.loc[crit_lines_lv.index].bus0 + ] + .lv_grid_id.unique() + .astype(int) + ) + + lv_grids = [ + lv_grid + for lv_grid in self.edisgo.topology.mv_grid.lv_grids + if lv_grid.id in lv_grid_ids + ] + + for lv_grid in lv_grids: + orig_g = copy.deepcopy(lv_grid) + grid_id = orig_g.id + + reinforce_measures.separate_lv_grid(self.edisgo, lv_grid) + + new_g_0 = [ + g for g in self.edisgo.topology.mv_grid.lv_grids if g.id == grid_id + ][0] + + try: + new_g_1 = [ + g + for g in self.edisgo.topology.mv_grid.lv_grids + if g.id == int(str(grid_id) + "1001") + ][0] + except IndexError: + continue + + assert np.isclose( + orig_g.charging_points_df.p_set.sum(), + new_g_0.charging_points_df.p_set.sum() + + new_g_1.charging_points_df.p_set.sum(), + ) + + assert np.isclose( + orig_g.generators_df.p_nom.sum(), + new_g_0.generators_df.p_nom.sum() + new_g_1.generators_df.p_nom.sum(), + ) + + assert np.isclose( + orig_g.loads_df.p_set.sum(), + new_g_0.loads_df.p_set.sum() + new_g_1.loads_df.p_set.sum(), + ) + + assert len(orig_g.lines_df) == len(new_g_0.lines_df) + len(new_g_1.lines_df) From b696cfead2ad9c96e1f60a1dce9e3804339a7c78 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 17:26:45 +0200 Subject: [PATCH 308/355] Move troubleshooting mode to separate function --- edisgo/tools/temporal_complexity_reduction.py | 89 +++++++++++-------- 1 file changed, 50 insertions(+), 39 deletions(-) diff --git a/edisgo/tools/temporal_complexity_reduction.py b/edisgo/tools/temporal_complexity_reduction.py index 283bb4b94..517bae6fc 100644 --- a/edisgo/tools/temporal_complexity_reduction.py +++ b/edisgo/tools/temporal_complexity_reduction.py @@ -317,6 +317,55 @@ def _scored_most_critical_voltage_issues_time_interval( return time_intervals_df +def _troubleshooting_mode(edisgo_obj): + """ + Handles non-convergence issues in power flow by iteratively reducing load and + feed-in until the power flow converges. + + Load and feed-in is reduced in steps of 10% down to 20% of the original load + and feed-in. The most critical time intervals / time steps can then be determined + based on the power flow results with the reduced load and feed-in. + """ + try: + logger.debug("Running initial power flow for temporal complexity reduction.") + edisgo_obj.analyze() + except ValueError or RuntimeError: + # if power flow did not converge for all time steps, run again with smaller + # loading - loading is decreased, until all time steps converge + logger.warning( + "When running power flow to determine most critical time intervals, " + "not all time steps converged. Power flow is run again with reduced " + "network load." + ) + for fraction in np.linspace(0.9, 0.2, 8): + try: + edisgo_obj.analyze( + troubleshooting_mode="iteration", + range_start=fraction, + range_num=1, + ) + logger.info( + f"Power flow fully converged for a reduction factor " + f"of {fraction}." + ) + break + except ValueError or RuntimeError: + if fraction == 0.2: + raise ValueError( + f"Power flow did not converge for smallest reduction " + f"factor of {fraction}. Most critical time intervals " + f"can therefore not be determined." + ) + else: + logger.info( + f"Power flow did not fully converge for a reduction factor " + f"of {fraction}." + ) + except Exception: + raise Exception + return edisgo_obj + + def get_most_critical_time_intervals( edisgo_obj, num_time_intervals=None, @@ -417,45 +466,7 @@ def get_most_critical_time_intervals( # Run power flow if use_troubleshooting_mode: - try: - logger.debug( - "Running initial power flow for temporal complexity reduction." - ) - edisgo_obj.analyze() - except ValueError: - # if power flow did not converge for all time steps, run again with smaller - # loading - loading is decreased, until all time steps converge - logger.warning( - "When running power flow to determine most critical time intervals, " - "not all time steps converged. Power flow is run again with reduced " - "network load." - ) - for fraction in np.linspace(0.9, 0.2, 8): - try: - edisgo_obj.analyze( - troubleshooting_mode="iteration", - range_start=fraction, - range_num=1, - ) - logger.info( - f"Power flow fully converged for a reduction factor " - f"of {fraction}." - ) - break - except ValueError: - if fraction == 0.2: - raise ValueError( - f"Power flow did not converge for smallest reduction " - f"factor of {fraction}. Most critical time intervals " - f"can therefore not be determined." - ) - else: - logger.info( - f"Power flow did not fully converge for a reduction factor " - f"of {fraction}." - ) - except Exception: - raise Exception + edisgo_obj = _troubleshooting_mode(edisgo_obj) else: logger.debug("Running initial power flow for temporal complexity reduction.") edisgo_obj.analyze() From ce88fd4001914f46e0be315fcde8275c177a3173 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 17:27:19 +0200 Subject: [PATCH 309/355] Fix docstring --- edisgo/tools/temporal_complexity_reduction.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/edisgo/tools/temporal_complexity_reduction.py b/edisgo/tools/temporal_complexity_reduction.py index 517bae6fc..550ad9df9 100644 --- a/edisgo/tools/temporal_complexity_reduction.py +++ b/edisgo/tools/temporal_complexity_reduction.py @@ -196,7 +196,7 @@ def _scored_most_critical_voltage_issues_time_interval( the highest expected costs corresponds to index 0. The time steps in the respective time interval are given in column "time_steps" and the share of buses for which the maximum voltage deviation is reached during the time - interval is given in column "percentage_max_overloaded_components". Each bus + interval is given in column "percentage_buses_max_voltage_deviation". Each bus is only considered once. That means if its maximum voltage deviation was already considered in an earlier time interval, it is not considered again. @@ -397,7 +397,9 @@ def get_most_critical_time_intervals( The number of time intervals of most critical line loading and voltage issues to select. If None, `percentage` is used. Default: None. percentage : float - The percentage of most critical time intervals to select. Default: 1.0. + The percentage of most critical time intervals to select. The default is 1.0, in + which case all most critical time steps are selected. + Default: 1.0. time_steps_per_time_interval : int Amount of continuous time steps in an interval that violation is determined for. Currently, these can only be multiples of 24. @@ -452,7 +454,7 @@ def get_most_critical_time_intervals( For voltage issues, the time steps in the respective time interval are given in column "time_steps_voltage_issues" and the share of buses for which the maximum voltage deviation is reached during the time interval is given in column - "percentage_max_overloaded_components". + "percentage_buses_max_voltage_deviation". """ # check frequency of time series data From 1ec73cf0dca1e311d72a26f65ff3fa7b05500ad9 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 17:32:27 +0200 Subject: [PATCH 310/355] Move functions to tools --- edisgo/flex_opt/reinforce_grid.py | 4 +- edisgo/opf/timeseries_reduction.py | 123 ------------- edisgo/tools/temporal_complexity_reduction.py | 161 ++++++++++++++++++ .../test_temporal_complexity_reduction.py | 28 ++- 4 files changed, 187 insertions(+), 129 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 42fb7d92a..7d4712a47 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -11,8 +11,8 @@ from edisgo.flex_opt import check_tech_constraints as checks from edisgo.flex_opt import exceptions, reinforce_measures from edisgo.flex_opt.costs import grid_expansion_costs -from edisgo.opf.timeseries_reduction import get_steps_reinforcement from edisgo.tools import tools +from edisgo.tools.temporal_complexity_reduction import get_most_critical_time_steps if TYPE_CHECKING: from edisgo import EDisGo @@ -157,7 +157,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ] ).dropna() elif isinstance(timesteps_pfa, str) and timesteps_pfa == "reduced_analysis": - timesteps_pfa = get_steps_reinforcement(edisgo) + timesteps_pfa = get_most_critical_time_steps(edisgo) # if timesteps_pfa is not of type datetime or does not contain # datetimes throw an error elif not isinstance(timesteps_pfa, datetime.datetime): diff --git a/edisgo/opf/timeseries_reduction.py b/edisgo/opf/timeseries_reduction.py index bcfe79a21..4ba6adbb1 100644 --- a/edisgo/opf/timeseries_reduction.py +++ b/edisgo/opf/timeseries_reduction.py @@ -1,9 +1,5 @@ -from __future__ import annotations - import logging -from typing import TYPE_CHECKING - import numpy as np import pandas as pd @@ -12,9 +8,6 @@ from edisgo.flex_opt import check_tech_constraints -if TYPE_CHECKING: - from edisgo import EDisGo - logger = logging.getLogger(__name__) @@ -37,29 +30,6 @@ def _scored_critical_loading(edisgo_obj): return crit_lines_score.sort_values(ascending=False) -def _scored_most_critical_loading(edisgo_obj: EDisGo) -> pd.Series: - """ - Method to get time steps where at least one branch shows its highest overloading - """ - - # Get current relative to allowed current - relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj) - - # Get lines that have violations - crit_lines_score = relative_i_res[relative_i_res > 1] - - # Get most critical timesteps per component - crit_lines_score = ( - (crit_lines_score[crit_lines_score == crit_lines_score.max()]) - .dropna(how="all") - .dropna(how="all", axis=1) - ) - - # Sort according to highest cumulated relative overloading - crit_lines_score = (crit_lines_score - 1).sum(axis=1) - return crit_lines_score.sort_values(ascending=False) - - def _scored_critical_overvoltage(edisgo_obj): voltage_dev = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( @@ -74,99 +44,6 @@ def _scored_critical_overvoltage(edisgo_obj): return voltage_dev_ov.sort_values(ascending=False) -def _scored_most_critical_voltage_issues(edisgo_obj: EDisGo) -> pd.Series: - """ - Method to get time steps where at least one bus shows its highest deviation from - allowed voltage boundaries - """ - voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( - edisgo_obj - ) - - # Get score for nodes that are over or under the allowed deviations - voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] - # get only most critical events for component - # Todo: should there be different ones for over and undervoltage? - voltage_diff = ( - (voltage_diff[voltage_diff.abs() == voltage_diff.abs().max()]) - .dropna(how="all") - .dropna(how="all", axis=1) - ) - - voltage_diff = voltage_diff.sum(axis=1) - - return voltage_diff.sort_values(ascending=False) - - -def get_steps_reinforcement( - edisgo_obj: EDisGo, - num_steps_loading: int = 0, - num_steps_voltage: int = 0, - percentage: float = 1.0, -) -> pd.DatetimeIndex: - """ - Get the time steps with the most critical violations for reduced reinforcement. - - Parameters - ----------- - edisgo_obj : :class:`~.EDisGo` - The eDisGo API object - num_steps_loading: int - The number of most critical overloading events to select, if set to 0 percentage - is used - num_steps_voltage: int - The number of most critical voltage issues to select, if set to 0 percentage is - used - percentage : float - The percentage of most critical time steps to select - Returns - -------- - `pandas.DatetimeIndex` - the reduced time index for modeling curtailment - """ - # Run power flow if not available - if edisgo_obj.results.i_res is None or edisgo_obj.results.i_res.empty: - logger.debug("Running initial power flow") - edisgo_obj.analyze(raise_not_converged=False) # Todo: raise warning? - - # Select most critical steps based on current violations - loading_scores = _scored_most_critical_loading(edisgo_obj) - if num_steps_loading == 0: - num_steps_loading = int(len(loading_scores) * percentage) - else: - if num_steps_loading > len(loading_scores): - logger.info( - f"The number of time steps with highest overloading " - f"({len(loading_scores)}) is lower than the defined number of " - f"loading time steps ({num_steps_loading}). Therefore, only " - f"{len(loading_scores)} time steps are exported." - ) - num_steps_loading = len(loading_scores) - steps = loading_scores[:num_steps_loading].index - - # Select most critical steps based on voltage violations - voltage_scores = _scored_most_critical_voltage_issues(edisgo_obj) - if num_steps_voltage == 0: - num_steps_voltage = int(len(voltage_scores) * percentage) - else: - if num_steps_voltage > len(voltage_scores): - logger.info( - f"The number of time steps with highest voltage issues " - f"({len(voltage_scores)}) is lower than the defined number of " - f"voltage time steps ({num_steps_voltage}). Therefore, only " - f"{len(voltage_scores)} time steps are exported." - ) - num_steps_voltage = len(voltage_scores) - steps = steps.append( - voltage_scores[:num_steps_voltage].index - ) # Todo: Can this cause duplicated? - - if len(steps) == 0: - logger.warning("No critical steps detected. No network expansion required.") - - return pd.DatetimeIndex(steps.unique()) - - def get_steps_curtailment(edisgo_obj, percentage=0.5): """ Get the time steps with the most critical violations for curtailment diff --git a/edisgo/tools/temporal_complexity_reduction.py b/edisgo/tools/temporal_complexity_reduction.py index 550ad9df9..eb8b801e5 100644 --- a/edisgo/tools/temporal_complexity_reduction.py +++ b/edisgo/tools/temporal_complexity_reduction.py @@ -1,7 +1,10 @@ +from __future__ import annotations + import logging import os from copy import deepcopy +from typing import TYPE_CHECKING import numpy as np import pandas as pd @@ -10,9 +13,85 @@ from edisgo.flex_opt.costs import line_expansion_costs from edisgo.tools.tools import assign_feeder +if TYPE_CHECKING: + from edisgo import EDisGo + logger = logging.getLogger(__name__) +def _scored_most_critical_loading(edisgo_obj: EDisGo) -> pd.Series: + """ + Method to get time steps where at least one component shows its highest overloading. + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + + Returns + -------- + :pandas:`pandas.Series` + Series with time index and corresponding sum of maximum relative overloadings + of lines and transformers. The series only contains time steps, where at least + one component is maximally overloaded, and is sorted descending by the + sum of maximum relative overloadings. + + """ + + # Get current relative to allowed current + relative_i_res = check_tech_constraints.components_relative_load(edisgo_obj) + + # Get lines that have violations + crit_lines_score = relative_i_res[relative_i_res > 1] + + # Get most critical timesteps per component + crit_lines_score = ( + (crit_lines_score[crit_lines_score == crit_lines_score.max()]) + .dropna(how="all") + .dropna(how="all", axis=1) + ) + + # Sort according to highest cumulated relative overloading + crit_lines_score = (crit_lines_score - 1).sum(axis=1) + return crit_lines_score.sort_values(ascending=False) + + +def _scored_most_critical_voltage_issues(edisgo_obj: EDisGo) -> pd.Series: + """ + Method to get time steps where at least one bus shows its highest deviation from + allowed voltage boundaries. + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + + Returns + -------- + :pandas:`pandas.Series` + Series with time index and corresponding sum of maximum voltage deviations. + The series only contains time steps, where at least one bus has its highest + deviation from the allowed voltage limits, and is sorted descending by the + sum of maximum voltage deviations. + + """ + voltage_diff = check_tech_constraints.voltage_deviation_from_allowed_voltage_limits( + edisgo_obj + ) + + # Get score for nodes that are over or under the allowed deviations + voltage_diff = voltage_diff.abs()[voltage_diff.abs() > 0] + # get only most critical events for component + # Todo: should there be different ones for over and undervoltage? + voltage_diff = ( + (voltage_diff[voltage_diff.abs() == voltage_diff.abs().max()]) + .dropna(how="all") + .dropna(how="all", axis=1) + ) + + voltage_diff = voltage_diff.sum(axis=1) + + return voltage_diff.sort_values(ascending=False) + + def _scored_most_critical_loading_time_interval( edisgo_obj, time_steps_per_time_interval=168, @@ -532,3 +611,85 @@ def get_most_critical_time_intervals( ) ) return steps + + +def get_most_critical_time_steps( + edisgo_obj: EDisGo, + num_steps_loading=None, + num_steps_voltage=None, + percentage: float = 1.0, + use_troubleshooting_mode=True, +) -> pd.DatetimeIndex: + """ + Get the time steps with the most critical overloading and voltage issues. + + Parameters + ----------- + edisgo_obj : :class:`~.EDisGo` + The eDisGo API object + num_steps_loading : int + The number of most critical overloading events to select. If None, `percentage` + is used. Default: None. + num_steps_voltage : int + The number of most critical voltage issues to select. If None, `percentage` + is used. Default: None. + percentage : float + The percentage of most critical time steps to select. The default is 1.0, in + which case all most critical time steps are selected. + Default: 1.0. + use_troubleshooting_mode : bool + If set to True, non-convergence issues in power flow are tried to be handled + by reducing load and feed-in in steps of 10% down to 20% of the original load + and feed-in until the power flow converges. The most critical time intervals + are then determined based on the power flow results with the reduced load and + feed-in. If False, an error will be raised in case time steps do not converge. + Default: True. + + Returns + -------- + :pandas:`pandas.DatetimeIndex` + Time index with unique time steps where maximum overloading or maximum + voltage deviation is reached for at least one component respectively bus. + + """ + # Run power flow + if use_troubleshooting_mode: + edisgo_obj = _troubleshooting_mode(edisgo_obj) + else: + logger.debug("Running initial power flow for temporal complexity reduction.") + edisgo_obj.analyze() + + # Select most critical steps based on current violations + loading_scores = _scored_most_critical_loading(edisgo_obj) + if num_steps_loading is None: + num_steps_loading = int(len(loading_scores) * percentage) + else: + if num_steps_loading > len(loading_scores): + logger.info( + f"The number of time steps with highest overloading " + f"({len(loading_scores)}) is lower than the defined number of " + f"loading time steps ({num_steps_loading}). Therefore, only " + f"{len(loading_scores)} time steps are exported." + ) + num_steps_loading = len(loading_scores) + steps = loading_scores[:num_steps_loading].index + + # Select most critical steps based on voltage violations + voltage_scores = _scored_most_critical_voltage_issues(edisgo_obj) + if num_steps_voltage is None: + num_steps_voltage = int(len(voltage_scores) * percentage) + else: + if num_steps_voltage > len(voltage_scores): + logger.info( + f"The number of time steps with highest voltage issues " + f"({len(voltage_scores)}) is lower than the defined number of " + f"voltage time steps ({num_steps_voltage}). Therefore, only " + f"{len(voltage_scores)} time steps are exported." + ) + num_steps_voltage = len(voltage_scores) + steps = steps.append(voltage_scores[:num_steps_voltage].index) + + if len(steps) == 0: + logger.warning("No critical steps detected. No network expansion required.") + + return pd.DatetimeIndex(steps.unique()) diff --git a/tests/tools/test_temporal_complexity_reduction.py b/tests/tools/test_temporal_complexity_reduction.py index 98a8659fd..05db1238d 100644 --- a/tests/tools/test_temporal_complexity_reduction.py +++ b/tests/tools/test_temporal_complexity_reduction.py @@ -29,10 +29,32 @@ def setup_class(self): df, ) self.edisgo.timeseries.timeindex = self.timesteps + self.edisgo.analyze() - def test__scored_most_critical_loading_time_interval(self): + def test__scored_most_critical_loading(self): - self.edisgo.analyze() + ts_crit = temp_red._scored_most_critical_loading(self.edisgo) + + assert len(ts_crit) == 180 + assert np.isclose(ts_crit.iloc[0], 1.45613) + assert np.isclose(ts_crit.iloc[-1], 1.14647) + + def test__scored_most_critical_voltage_issues(self): + + ts_crit = temp_red._scored_most_critical_voltage_issues(self.edisgo) + + assert len(ts_crit) == 120 + assert np.isclose(ts_crit.iloc[0], 0.01062258) + assert np.isclose(ts_crit.iloc[-1], 0.01062258) + + def test_get_most_critical_time_steps(self): + + ts_crit = temp_red.get_most_critical_time_steps( + self.edisgo, num_steps_loading=2, num_steps_voltage=2 + ) + assert len(ts_crit) == 3 + + def test__scored_most_critical_loading_time_interval(self): # test with default values ts_crit = temp_red._scored_most_critical_loading_time_interval(self.edisgo, 24) @@ -61,8 +83,6 @@ def test__scored_most_critical_loading_time_interval(self): def test__scored_most_critical_voltage_issues_time_interval(self): - self.edisgo.analyze() - # test with default values ts_crit = temp_red._scored_most_critical_voltage_issues_time_interval( self.edisgo, 24 From b48847ce77e49610e8570b719b2b80a4205f31d4 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 17:32:49 +0200 Subject: [PATCH 311/355] Fix bug in overlying grid --- edisgo/network/overlying_grid.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/edisgo/network/overlying_grid.py b/edisgo/network/overlying_grid.py index 4f3a1622d..82718b6c1 100644 --- a/edisgo/network/overlying_grid.py +++ b/edisgo/network/overlying_grid.py @@ -338,8 +338,7 @@ def distribute_overlying_grid_requirements(edisgo_obj): ).values, ) edisgo_copy.timeseries._loads_active_power.loc[:, hp_district.index] = ( - scaling_df - * edisgo_obj.overlying_grid.heat_pump_central_active_power.sum(axis=1)[0] + scaling_df * edisgo_obj.overlying_grid.heat_pump_central_active_power ).transpose() # decentral PtH - distribute dispatch time series from overlying grid From c97bbe1ec8798030d540a3ce442ca6e0ce44afeb Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 17:35:54 +0200 Subject: [PATCH 312/355] Use more general Exception to catch non-convergence --- edisgo/tools/temporal_complexity_reduction.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/edisgo/tools/temporal_complexity_reduction.py b/edisgo/tools/temporal_complexity_reduction.py index eb8b801e5..06cc54c47 100644 --- a/edisgo/tools/temporal_complexity_reduction.py +++ b/edisgo/tools/temporal_complexity_reduction.py @@ -408,7 +408,9 @@ def _troubleshooting_mode(edisgo_obj): try: logger.debug("Running initial power flow for temporal complexity reduction.") edisgo_obj.analyze() - except ValueError or RuntimeError: + # Exception is used, as non-convergence can also lead to RuntimeError, not only + # ValueError + except Exception: # if power flow did not converge for all time steps, run again with smaller # loading - loading is decreased, until all time steps converge logger.warning( @@ -428,7 +430,7 @@ def _troubleshooting_mode(edisgo_obj): f"of {fraction}." ) break - except ValueError or RuntimeError: + except Exception: if fraction == 0.2: raise ValueError( f"Power flow did not converge for smallest reduction " @@ -440,8 +442,6 @@ def _troubleshooting_mode(edisgo_obj): f"Power flow did not fully converge for a reduction factor " f"of {fraction}." ) - except Exception: - raise Exception return edisgo_obj From 2871276a639261badb82469f0f108587b81cc22d Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 17:59:52 +0200 Subject: [PATCH 313/355] Allow parameterising of temporal complexity reduction --- edisgo/edisgo.py | 21 +++++++++++++++++++++ edisgo/flex_opt/reinforce_grid.py | 26 +++++++++++++++++++++++++- tests/flex_opt/test_reinforce_grid.py | 6 ++++-- 3 files changed, 50 insertions(+), 3 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 807af58d7..700153bc5 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1165,6 +1165,27 @@ def reinforce( This is used in case worst-case grid reinforcement is conducted in order to reinforce MV/LV stations for LV worst-cases. Default: False. + num_steps_loading : int + In case `timesteps_pfa` is set to 'reduced_analysis', this parameter can be + used to specify the number of most critical overloading events to consider. + If None, `percentage` is used. Default: None. + num_steps_voltage : int + In case `timesteps_pfa` is set to 'reduced_analysis', this parameter can be + used to specify the number of most critical voltage issues to select. If + None, `percentage` is used. Default: None. + percentage : float + In case `timesteps_pfa` is set to 'reduced_analysis', this parameter can be + used to specify the percentage of most critical time steps to select. The + default is 1.0, in which case all most critical time steps are selected. + Default: 1.0. + use_troubleshooting_mode : bool + In case `timesteps_pfa` is set to 'reduced_analysis', this parameter can be + used to specify how to handle non-convergence issues in the power flow + analysis. If set to True, non-convergence issues are tried to be + circumvented by reducing load and feed-in until the power flow converges. + The most critical time steps are then determined based on the power flow + results with the reduced load and feed-in. If False, an error will be + raised in case time steps do not converge. Default: True. Returns -------- diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 7d4712a47..b3f06adb1 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -82,6 +82,24 @@ def reinforce_grid( This is used in case worst-case grid reinforcement is conducted in order to reinforce MV/LV stations for LV worst-cases. Default: False. + num_steps_loading : int + In case `timesteps_pfa` is set to 'reduced_analysis', this parameter can be used + to specify the number of most critical overloading events to consider. + If None, `percentage` is used. Default: None. + num_steps_voltage : int + In case `timesteps_pfa` is set to 'reduced_analysis', this parameter can be used + to specify the number of most critical voltage issues to select. If None, + `percentage` is used. Default: None. + percentage : float + In case `timesteps_pfa` is set to 'reduced_analysis', this parameter can be used + to specify the percentage of most critical time steps to select. The default + is 1.0, in which case all most critical time steps are selected. + Default: 1.0. + use_troubleshooting_mode : bool + In case `timesteps_pfa` is set to 'reduced_analysis', this parameter can be used + to specify how to handle non-convergence issues in the power flow analysis. + See parameter `use_troubleshooting_mode` in function :attr:`~.EDisGo.reinforce` + for more information. Default: True. Returns ------- @@ -157,7 +175,13 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ] ).dropna() elif isinstance(timesteps_pfa, str) and timesteps_pfa == "reduced_analysis": - timesteps_pfa = get_most_critical_time_steps(edisgo) + timesteps_pfa = get_most_critical_time_steps( + edisgo, + num_steps_loading=kwargs.get("num_steps_loading", None), + num_steps_voltage=kwargs.get("num_steps_voltage", None), + percentage=kwargs.get("percentage", 1.0), + use_troubleshooting_mode=kwargs.get("use_troubleshooting_mode", True), + ) # if timesteps_pfa is not of type datetime or does not contain # datetimes throw an error elif not isinstance(timesteps_pfa, datetime.datetime): diff --git a/tests/flex_opt/test_reinforce_grid.py b/tests/flex_opt/test_reinforce_grid.py index c40344dfb..26e96ad72 100644 --- a/tests/flex_opt/test_reinforce_grid.py +++ b/tests/flex_opt/test_reinforce_grid.py @@ -54,9 +54,11 @@ def test_reinforce_grid(self): result.equipment_changes, comparison_result.equipment_changes, ) - # test new mode + # test reduced analysis res_reduced = reinforce_grid( - edisgo=copy.deepcopy(self.edisgo), timesteps_pfa="reduced_analysis" + edisgo=copy.deepcopy(self.edisgo), + timesteps_pfa="reduced_analysis", + num_steps_loading=4, ) assert_frame_equal( res_reduced.equipment_changes, results_dict[None].equipment_changes From bbfe81a067123414be4c05536851c59323687287 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 18:00:00 +0200 Subject: [PATCH 314/355] Minor doc change --- edisgo/tools/temporal_complexity_reduction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/tools/temporal_complexity_reduction.py b/edisgo/tools/temporal_complexity_reduction.py index 06cc54c47..7f0b038e0 100644 --- a/edisgo/tools/temporal_complexity_reduction.py +++ b/edisgo/tools/temporal_complexity_reduction.py @@ -640,7 +640,7 @@ def get_most_critical_time_steps( use_troubleshooting_mode : bool If set to True, non-convergence issues in power flow are tried to be handled by reducing load and feed-in in steps of 10% down to 20% of the original load - and feed-in until the power flow converges. The most critical time intervals + and feed-in until the power flow converges. The most critical time steps are then determined based on the power flow results with the reduced load and feed-in. If False, an error will be raised in case time steps do not converge. Default: True. From aac7a505c65128d297712f072bb2da823ed5c058 Mon Sep 17 00:00:00 2001 From: birgits Date: Wed, 3 May 2023 18:52:19 +0200 Subject: [PATCH 315/355] Limit urllib3 version due to error --- rtd_requirements.txt | 1 + setup.py | 1 + 2 files changed, 2 insertions(+) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index de875b297..6cc0e1f98 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -22,4 +22,5 @@ sphinx_rtd_theme >=0.5.2 sphinx-autodoc-typehints sphinx-autoapi sshtunnel +urllib3 < 2.0.0 workalendar diff --git a/setup.py b/setup.py index b04f9eb09..51935b88c 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ def read(fname): "shapely >= 1.7.0", "sqlalchemy < 1.4.0", "sshtunnel", + "urllib3 < 2.0.0", "workalendar", ] From a6793c222ee7d9ec1387365a6927997a4709024e Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 5 May 2023 10:38:35 +0200 Subject: [PATCH 316/355] Added workflow to separate all lv grids Workflow separates lv grids if a specific overloading threshold is reached. LV grids can be separated multiple times if necessary. Workflow is now a selectable part of the enhanced reinforcement method. Added simple tests. --- edisgo/edisgo.py | 14 ++- edisgo/flex_opt/reinforce_grid.py | 117 ++++++++++++++++++++++++-- edisgo/flex_opt/reinforce_measures.py | 113 +++++++++++++++++++++---- edisgo/io/electromobility_import.py | 14 ++- edisgo/network/components.py | 2 - tests/flex_opt/test_reinforce_grid.py | 38 ++++++++- tests/test_edisgo.py | 6 +- 7 files changed, 264 insertions(+), 40 deletions(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index 700153bc5..bc1084e99 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -1261,12 +1261,15 @@ def reinforce( run_analyze_at_the_end = False logger.info(f"Run the following reinforcements: {setting_list=}") + for setting in setting_list: logger.info(f"Run the following reinforcement: {setting=}") - if not catch_convergence_problems: - func = reinforce_grid - else: - func = catch_convergence_reinforce_grid + func = ( + catch_convergence_reinforce_grid + if catch_convergence_problems + else reinforce_grid + ) + func( edisgo_obj, max_while_iterations=max_while_iterations, @@ -1275,14 +1278,17 @@ def reinforce( n_minus_one=n_minus_one, **setting, ) + if run_analyze_at_the_end: lv_grid_id = kwargs.get("lv_grid_id", None) + if mode == "lv" and lv_grid_id: analyze_mode = "lv" elif mode == "lv": analyze_mode = None else: analyze_mode = mode + edisgo_obj.analyze( mode=analyze_mode, lv_grid_id=lv_grid_id, timesteps=timesteps_pfa ) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index b3f06adb1..974dab880 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -4,13 +4,16 @@ import datetime import logging +from numbers import Number from typing import TYPE_CHECKING +import numpy as np import pandas as pd from edisgo.flex_opt import check_tech_constraints as checks from edisgo.flex_opt import exceptions, reinforce_measures from edisgo.flex_opt.costs import grid_expansion_costs +from edisgo.flex_opt.reinforce_measures import separate_lv_grid from edisgo.tools import tools from edisgo.tools.temporal_complexity_reduction import get_most_critical_time_steps @@ -244,7 +247,6 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): or not overloaded_lv_stations.empty or not crit_lines.empty ) and while_counter < max_while_iterations: - if not overloaded_mv_station.empty: # reinforce substations transformer_changes = ( @@ -351,7 +353,6 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): while_counter = 0 while not crit_nodes.empty and while_counter < max_while_iterations: - # reinforce lines lines_changes = reinforce_measures.reinforce_lines_voltage_issues( edisgo, @@ -556,7 +557,6 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): or not overloaded_lv_stations.empty or not crit_lines.empty ) and while_counter < max_while_iterations: - if not overloaded_mv_station.empty: # reinforce substations transformer_changes = ( @@ -819,8 +819,13 @@ def reinforce(): return edisgo.results +# TODO: adapt docstring def enhanced_reinforce_grid( - edisgo_object: EDisGo, activate_cost_results_disturbing_mode: bool = False, **kwargs + edisgo_object: EDisGo, + activate_cost_results_disturbing_mode: bool = False, + separate_lv_grids: bool = True, + separation_threshold: Number = 2, + **kwargs, ) -> EDisGo: """ Reinforcement strategy to reinforce grids voltage level by voltage level in case @@ -861,30 +866,40 @@ def enhanced_reinforce_grid( edisgo_obj = copy.deepcopy(edisgo_object) else: edisgo_obj = edisgo_object + kwargs["copy_grid"] = False kwargs.pop("skip_mv_reinforcement", False) num_lv_grids_standard_lines = 0 num_lv_grids_aggregated = 0 + if separate_lv_grids: + logger.info( + "Separating lv grids. Set the parameter 'separate_lv_grids' to False if " + "this is not desired." + ) + run_separate_lv_grids(edisgo_obj, threshold=separation_threshold) + try: logger.info("Try initial enhanced reinforcement.") edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) logger.info("Initial enhanced reinforcement succeeded.") - except: # noqa: E722 + except ValueError: logger.info("Initial enhanced reinforcement failed.") logger.info("Try mode 'mv' reinforcement.") + try: edisgo_obj.reinforce(mode="mv", catch_convergence_problems=True, **kwargs) logger.info("Mode 'mv' reinforcement succeeded.") - except: # noqa: E722 + except ValueError: logger.info("Mode 'mv' reinforcement failed.") logger.info("Try mode 'mvlv' reinforcement.") + try: edisgo_obj.reinforce(mode="mvlv", catch_convergence_problems=True, **kwargs) logger.info("Mode 'mvlv' reinforcement succeeded.") - except: # noqa: E722 + except ValueError: logger.info("Mode 'mvlv' reinforcement failed.") for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids): @@ -967,3 +982,91 @@ def enhanced_reinforce_grid( edisgo_obj.results.measures = msg return edisgo_obj + + +def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: Number = 2) -> None: + lv_grids = list(edisgo_obj.topology.mv_grid.lv_grids) + n_grids_init = len(lv_grids) + + first_run = True + + active_str = "{}_active_power" + reactive_str = "{}_reactive_power" + tech_str = "{}_df" + techs = ["generators", "loads", "storage_units"] + + n = 0 + + while n_grids_init != len(list(edisgo_obj.topology.mv_grid.lv_grids)) or first_run: + print(n) + n += 1 + first_run = False + + lv_grids = list(edisgo_obj.topology.mv_grid.lv_grids) + n_grids_init = len(lv_grids) + + for lv_grid in lv_grids: + tech_dict = {} + + for tech in techs: + units = getattr(lv_grid, tech_str.format(tech)).index + active_power = ( + getattr( + edisgo_obj.timeseries, + active_str.format(tech), + ) + .loc[:, units] + .astype(float) + ) + + reactive_power = ( + getattr( + edisgo_obj.timeseries, + reactive_str.format(tech), + ) + .loc[:, units] + .astype(float) + ) + + if tech == "storage_units": + tech_dict[tech + "_loads"] = np.hypot( + active_power.clip(upper=0.0), + reactive_power.clip(upper=0.0), + ) + + tech_dict[tech + "_generators"] = np.hypot( + active_power.clip(lower=0.0), + reactive_power.clip(lower=0.0), + ) + else: + tech_dict[tech] = np.hypot(active_power, reactive_power) + + load = pd.concat( + [ + tech_dict["loads"], + tech_dict["storage_units_loads"], + ], + axis=1, + ).sum(axis=1) + + gen = pd.concat( + [ + tech_dict["generators"], + tech_dict["storage_units_generators"], + ], + axis=1, + ).sum(axis=1) + + worst_case = (gen - load).abs().max() + + transformers_s_nom = lv_grid.transformers_df.s_nom.sum() + + if worst_case > threshold * transformers_s_nom: + logger.info(f"Trying to separate {lv_grid}...") + # TODO: Save changes in results + _ = separate_lv_grid(edisgo_obj, lv_grid) + else: + logger.info( + f"The overloading in {lv_grid} does not surpass the set threshold " + f"of {threshold} and is therefore not separated." + ) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index bb6cf5737..d64ec57c5 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -786,7 +786,7 @@ def separate_lv_grid( def get_weight(u, v, data: dict) -> float: return data["length"] - def create_bus_name(bus: str, voltage_level: str) -> str: + def create_bus_name(bus: str, lv_grid_id_new: int, voltage_level: str) -> str: """ Create an LV and MV bus-bar name with the same grid_id but added '1001' that implies the separation @@ -804,9 +804,8 @@ def create_bus_name(bus: str, voltage_level: str) -> str: """ if bus in edisgo_obj.topology.buses_df.index: bus = bus.split("_") - grid_id_ind = bus.index(str(grid.id)) - # TODO: how to name new grids? - bus[grid_id_ind] = f"{grid.id}1001" + + bus[-2] = lv_grid_id_new if voltage_level == "lv": bus = "_".join([str(_) for _ in bus]) @@ -823,8 +822,9 @@ def create_bus_name(bus: str, voltage_level: str) -> str: return bus + # TODO: adapt docstring to describe multiple new transformers def add_standard_transformer( - edisgo_obj: EDisGo, grid: LVGrid, bus_lv: str, bus_mv: str + edisgo_obj: EDisGo, grid: LVGrid, bus_lv: str, bus_mv: str, lv_grid_id_new: int ) -> dict: """ Adds standard transformer to topology. @@ -867,7 +867,7 @@ def add_standard_transformer( transformer_s = grid.transformers_df.iloc[0] new_transformer_name = transformer_s.name.split("_") grid_id_ind = new_transformer_name.index(str(grid.id)) - new_transformer_name[grid_id_ind] = f"{str(grid.id)}1001" + new_transformer_name[grid_id_ind] = lv_grid_id_new transformer_s.s_nom = standard_transformer.S_nom transformer_s.type_info = None @@ -879,33 +879,74 @@ def add_standard_transformer( new_transformer_df = transformer_s.to_frame().T + old_s_nom = 5 # grid.transformers_df.s_nom.sum() + + max_iterations = 10 + n = 0 + + while old_s_nom > new_transformer_df.s_nom.sum() and n < max_iterations: + n += 1 + + another_new_transformer = new_transformer_df.iloc[-1:, :] + + old_name = another_new_transformer.index[0] + + name = old_name.split("_") + + try: + name[-1] = str(int(name[-1]) + 1) + except ValueError: + name.append("_1") + + name = "_".join(name) + + another_new_transformer.rename(index={old_name: name}, inplace=True) + + new_transformer_df = pd.concat( + [new_transformer_df, another_new_transformer] + ) + edisgo_obj.topology.transformers_df = pd.concat( [edisgo_obj.topology.transformers_df, new_transformer_df] ) transformers_changes["added"][ - f"LVGrid_{str(grid.id)}1001" + f"LVGrid_{lv_grid_id_new}" ] = new_transformer_df.index.tolist() return transformers_changes G = grid.graph - station_node = list(G.nodes)[0] # main station + + # main station + station_node = list(G.nodes)[0] relevant_lines = grid.lines_df.loc[ (grid.lines_df.bus0 == station_node) | (grid.lines_df.bus1 == station_node) ] + if len(relevant_lines) <= 1: + logger.warning( + f"{grid} has only {len(relevant_lines)} feeder and is therefore not " + f"separated." + ) + + return {}, {} + logger.debug(f"{grid} has {len(relevant_lines)} feeder.") paths = {} first_nodes_feeders = {} for node in G.nodes: + if node == station_node: + continue + path = nx.shortest_path(G, station_node, node) for first_node in relevant_lines.bus1.values: if first_node in path: paths[node] = path + first_nodes_feeders.setdefault(path[1], []).append( node # first nodes and paths ) @@ -931,7 +972,9 @@ def add_standard_transformer( for first_node, nodes_feeder in first_nodes_feeders.items(): # first line of the feeder - first_line = relevant_lines[relevant_lines.bus1 == first_node].index[0] + first_line = relevant_lines[ + (relevant_lines.bus1 == first_node) | (relevant_lines.bus0 == first_node) + ].index[0] # the last node of the feeder last_node = nodes_feeder[-1] @@ -959,12 +1002,16 @@ def add_standard_transformer( node_1_2 = path[path.index(node_1_2) - 1] # break if node is station if node_1_2 is path[0]: - raise NotImplementedError( - f" {grid}==>{first_line} and following lines could not be " + logger.warning( + f"{grid} ==> {first_line} and following lines could not be " f"reinforced due to insufficient number of node in the feeder. " f"A method to handle such cases is not yet implemented." ) + node_1_2 = path[path.index(node_1_2) + 1] + + break + # NOTE: If node_1_2 is a representative (meaning it is already directly # connected to the station) feeder cannot be split. Instead, every second # inept feeder is assigned to the new grid @@ -978,9 +1025,26 @@ def add_standard_transformer( if nodes_tb_relocated: logger.info(f"{grid}==>method:add_station_at_half_length is running ") + + # the new lv grid id: e.g. 49602X + n = 0 + lv_grid_id_new = int(f"{grid.id}{n}") + + max_iterations = 10**4 + + while lv_grid_id_new in [g.id for g in edisgo_obj.topology.mv_grid.lv_grids]: + n += 1 + lv_grid_id_new = int(f"{grid.id}{n}") + + if n >= max_iterations: + raise ValueError( + f"No suitable name for the new LV grid originating from {grid} was " + f"found in {max_iterations=}." + ) + # Create the bus-bar name of primary and secondary side of new MV/LV station - lv_bus_new = create_bus_name(station_node, "lv") - mv_bus_new = create_bus_name(station_node, "mv") + lv_bus_new = create_bus_name(station_node, lv_grid_id_new, "lv") + mv_bus_new = create_bus_name(station_node, lv_grid_id_new, "mv") # ADD MV and LV bus v_nom_lv = edisgo_obj.topology.buses_df.at[ @@ -995,8 +1059,6 @@ def add_standard_transformer( x_bus = grid.buses_df.at[station_node, "x"] y_bus = grid.buses_df.at[station_node, "y"] - # the new lv grid id: e.g. 496021001 - lv_grid_id_new = int(f"{str(grid.id)}1001") building_bus = grid.buses_df.at[station_node, "in_building"] dist = 0.001 @@ -1012,6 +1074,7 @@ def add_standard_transformer( lv_grid_id=lv_grid_id_new, in_building=building_bus, ) + # add mv busbar edisgo_obj.topology.add_bus( mv_bus_new, @@ -1023,7 +1086,7 @@ def add_standard_transformer( # ADD TRANSFORMER transformer_changes = add_standard_transformer( - edisgo_obj, grid, lv_bus_new, mv_bus_new + edisgo_obj, grid, lv_bus_new, mv_bus_new, lv_grid_id_new ) transformers_changes.update(transformer_changes) @@ -1097,10 +1160,26 @@ def add_standard_transformer( logger.info( f"{len(nodes_tb_relocated.keys())} feeders are removed from the grid " - f"{grid} and located in new grid{repr(grid) + str(1001)} by method: " + f"{grid} and located in new grid {lv_grid_id_new} by method: " f"add_station_at_half_length " ) + # check if new grids have isolated notes + grids = [ + g + for g in edisgo_obj.topology.mv_grid.lv_grids + if g.id in [grid.id, lv_grid_id_new] + ] + + for g in grids: + n = nx.number_of_isolates(g.graph) + + if n > 0 and len(g.buses_df) > 1: + raise ValueError( + f"There are isolated nodes in {g}. The following nodes are " + f"isolated: {list(nx.isolates(g.graph))}" + ) + else: logger.warning( f"{grid} was not reinforced because it has to few suitable feeders." diff --git a/edisgo/io/electromobility_import.py b/edisgo/io/electromobility_import.py index cfc874621..223cea02b 100644 --- a/edisgo/io/electromobility_import.py +++ b/edisgo/io/electromobility_import.py @@ -1077,14 +1077,12 @@ def distribute_public_charging_demand(edisgo_obj, **kwargs): edisgo_obj.electromobility.charging_processes_df.at[ idx, "charging_point_id" ] = charging_point_id - try: - available_charging_points_df.loc[ - charging_point_id - ] = edisgo_obj.electromobility.charging_processes_df.loc[ - idx, available_charging_points_df.columns - ].tolist() - except Exception: - print("break") + + available_charging_points_df.loc[ + charging_point_id + ] = edisgo_obj.electromobility.charging_processes_df.loc[ + idx, available_charging_points_df.columns + ].tolist() designated_charging_point_capacity_df.at[ charging_park_id, "designated_charging_point_capacity" diff --git a/edisgo/network/components.py b/edisgo/network/components.py index 5e4df1fba..8c2193409 100644 --- a/edisgo/network/components.py +++ b/edisgo/network/components.py @@ -894,8 +894,6 @@ def nearest_substation(self): """ substations = self._topology.buses_df.loc[self._topology.transformers_df.bus1] - if self.geometry.y > 90: - print("break") nearest_substation, distance = find_nearest_bus(self.geometry, substations) lv_grid_id = int(self._topology.buses_df.at[nearest_substation, "lv_grid_id"]) diff --git a/tests/flex_opt/test_reinforce_grid.py b/tests/flex_opt/test_reinforce_grid.py index 26e96ad72..73a5c2be7 100644 --- a/tests/flex_opt/test_reinforce_grid.py +++ b/tests/flex_opt/test_reinforce_grid.py @@ -7,7 +7,7 @@ from pandas.testing import assert_frame_equal from edisgo import EDisGo -from edisgo.flex_opt.reinforce_grid import reinforce_grid +from edisgo.flex_opt.reinforce_grid import reinforce_grid, run_separate_lv_grids class TestReinforceGrid: @@ -63,3 +63,39 @@ def test_reinforce_grid(self): assert_frame_equal( res_reduced.equipment_changes, results_dict[None].equipment_changes ) + + def test_run_separate_lv_grids(self): + edisgo = copy.deepcopy(self.edisgo) + + edisgo.timeseries.scale_timeseries(p_scaling_factor=5, q_scaling_factor=5) + + lv_grids = [copy.deepcopy(g) for g in edisgo.topology.mv_grid.lv_grids] + + run_separate_lv_grids(edisgo) + + lv_grids_new = list(edisgo.topology.mv_grid.lv_grids) + + # check that no new lv grid only consist of the station + for g in lv_grids_new: + if g.id != 0: + assert len(g.buses_df) > 1 + + assert len(lv_grids_new) == 26 + + # check if all generators are still present + assert np.isclose( + sum(g.generators_df.p_nom.sum() for g in lv_grids), + sum(g.generators_df.p_nom.sum() for g in lv_grids_new), + ) + + # check if all loads are still present + assert np.isclose( + sum(g.loads_df.p_set.sum() for g in lv_grids), + sum(g.loads_df.p_set.sum() for g in lv_grids_new), + ) + + # check if all storages are still present + assert np.isclose( + sum(g.storage_units_df.p_nom.sum() for g in lv_grids), + sum(g.storage_units_df.p_nom.sum() for g in lv_grids_new), + ) diff --git a/tests/test_edisgo.py b/tests/test_edisgo.py index 12cad9148..f89b2856e 100755 --- a/tests/test_edisgo.py +++ b/tests/test_edisgo.py @@ -532,13 +532,17 @@ def test_reinforce_catch_convergence(self): @pytest.mark.slow def test_enhanced_reinforce_grid(self): self.setup_edisgo_object() + self.setup_worst_case_time_series() self.edisgo.timeseries.scale_timeseries( p_scaling_factor=100, q_scaling_factor=100 ) + edisgo_obj = copy.deepcopy(self.edisgo) edisgo_obj = enhanced_reinforce_grid( - edisgo_obj, activate_cost_results_disturbing_mode=True + edisgo_obj, + activate_cost_results_disturbing_mode=True, + separate_lv_grids=False, ) results = edisgo_obj.results From e720b79abfa424fcccfd54915c8a9bca4f6809e0 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 5 May 2023 11:10:08 +0200 Subject: [PATCH 317/355] connect new lv grid to existing mv bus instead of creating a new mv bus --- edisgo/flex_opt/reinforce_measures.py | 47 +++++---------------------- 1 file changed, 8 insertions(+), 39 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index d64ec57c5..7f0cd9282 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -1032,7 +1032,9 @@ def add_standard_transformer( max_iterations = 10**4 - while lv_grid_id_new in [g.id for g in edisgo_obj.topology.mv_grid.lv_grids]: + g_ids = [g.id for g in edisgo_obj.topology.mv_grid.lv_grids] + + while lv_grid_id_new in g_ids: n += 1 lv_grid_id_new = int(f"{grid.id}{n}") @@ -1044,73 +1046,40 @@ def add_standard_transformer( # Create the bus-bar name of primary and secondary side of new MV/LV station lv_bus_new = create_bus_name(station_node, lv_grid_id_new, "lv") - mv_bus_new = create_bus_name(station_node, lv_grid_id_new, "mv") + mv_bus = grid.transformers_df.bus0.iat[0] # ADD MV and LV bus v_nom_lv = edisgo_obj.topology.buses_df.at[ grid.transformers_df.bus1[0], "v_nom", ] - v_nom_mv = edisgo_obj.topology.buses_df.at[ - grid.transformers_df.bus0[0], - "v_nom", - ] x_bus = grid.buses_df.at[station_node, "x"] y_bus = grid.buses_df.at[station_node, "y"] building_bus = grid.buses_df.at[station_node, "in_building"] - dist = 0.001 - - length_mv = np.sqrt(dist**2 + dist**2) - # add lv busbar edisgo_obj.topology.add_bus( lv_bus_new, v_nom_lv, - x=x_bus + dist, - y=y_bus + dist, + x=x_bus, + y=y_bus, lv_grid_id=lv_grid_id_new, in_building=building_bus, ) - # add mv busbar - edisgo_obj.topology.add_bus( - mv_bus_new, - v_nom_mv, - x=x_bus + dist, - y=y_bus + dist, - in_building=building_bus, - ) - # ADD TRANSFORMER transformer_changes = add_standard_transformer( - edisgo_obj, grid, lv_bus_new, mv_bus_new, lv_grid_id_new + edisgo_obj, grid, lv_bus_new, mv_bus, lv_grid_id_new ) transformers_changes.update(transformer_changes) logger.debug( - f"{edisgo_obj.topology.mv_grid}==>A new grid {lv_grid_id_new} " + f"{edisgo_obj.topology.mv_grid} ==> A new grid {lv_grid_id_new} " f"added into topology" ) - # ADD the MV LINE between existing and new MV station - standard_line = edisgo_obj.config["grid_expansion_standard_equipment"][ - f"mv_line_{int(edisgo_obj.topology.mv_grid.nominal_voltage)}kv" - ] - - line_added_mv = edisgo_obj.add_component( - comp_type="line", - bus0=grid.transformers_df.bus0[0], - bus1=mv_bus_new, - length=length_mv, - type_info=standard_line, - kind="cable", - ) - - lines_changes[line_added_mv] = 1 - lv_standard_line = edisgo_obj.config["grid_expansion_standard_equipment"][ "lv_line" ] From 80fcbaea110ea82daecf9e076b5cea900a0c2d95 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 5 May 2023 16:13:09 +0200 Subject: [PATCH 318/355] make sure that only downstream buses of bus_1_2 are relocated to th new lv grid --- edisgo/flex_opt/reinforce_measures.py | 5 ++++- edisgo/tools/tools.py | 11 ++++++++--- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 7f0cd9282..e8489ac1d 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -14,6 +14,7 @@ ) from edisgo.network.grids import LVGrid, MVGrid +from edisgo.tools.tools import get_downstream_buses if TYPE_CHECKING: from edisgo import EDisGo @@ -951,6 +952,8 @@ def add_standard_transformer( node # first nodes and paths ) + # TODO: make sure nodes are sorted correctly? + lines_changes = {} transformers_changes = {} nodes_tb_relocated = {} # nodes to be moved into the new grid @@ -1016,7 +1019,7 @@ def add_standard_transformer( # connected to the station) feeder cannot be split. Instead, every second # inept feeder is assigned to the new grid if node_1_2 not in first_nodes_feeders or count_inept % 2 == 1: - nodes_tb_relocated[node_1_2] = nodes_feeder[nodes_feeder.index(node_1_2) :] + nodes_tb_relocated[node_1_2] = get_downstream_buses(edisgo_obj, node_1_2) if node_1_2 in first_nodes_feeders: count_inept += 1 diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index c3856806f..fb8c1ac3e 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -420,17 +420,22 @@ def get_downstream_buses(edisgo_obj, comp_name, comp_type="bus"): bus = bus0 if len(path_to_station_bus0) > len(path_to_station_bus1) else bus1 bus_upstream = bus0 if bus == bus1 else bus1 else: - return None + raise ValueError( + f"Component type needs to be either 'bus' or 'line'. Given {comp_type=} is " + f"not valid." + ) # remove edge between bus and next bus upstream graph.remove_edge(bus, bus_upstream) # get subgraph containing relevant bus - subgraphs = list(graph.subgraph(c) for c in nx.connected_components(graph)) + subgraphs = [graph.subgraph(c) for c in nx.connected_components(graph)] + for subgraph in subgraphs: if bus in subgraph.nodes(): return list(subgraph.nodes()) - return None + + return [bus] def assign_voltage_level_to_component(df, buses_df): From fa4f2299756d5994ac404b1abcf85427bed3acab Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Fri, 5 May 2023 16:18:18 +0200 Subject: [PATCH 319/355] change logging string --- edisgo/flex_opt/reinforce_measures.py | 5 +---- edisgo/tools/tools.py | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index e8489ac1d..45a27d725 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -1078,10 +1078,7 @@ def add_standard_transformer( ) transformers_changes.update(transformer_changes) - logger.debug( - f"{edisgo_obj.topology.mv_grid} ==> A new grid {lv_grid_id_new} " - f"added into topology" - ) + logger.debug(f"New grid {lv_grid_id_new} added into topology.") lv_standard_line = edisgo_obj.config["grid_expansion_standard_equipment"][ "lv_line" diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index fb8c1ac3e..fccbf0192 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -400,7 +400,7 @@ def get_downstream_buses(edisgo_obj, comp_name, comp_type="bus"): ------- list(str) List of buses (as in index of :attr:`~.network.topology.Topology.buses_df`) - downstream of the given component. + downstream of the given component incl. the initial bus. """ graph = edisgo_obj.topology.to_graph() From ac17817920b458a6bcef201dc54f3afee30c0762 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 8 May 2023 10:02:59 +0200 Subject: [PATCH 320/355] Make sure that the nodes of a feeder are sorted correctly when separating a grid Also make sure to only use nodes from the main feeder of a feeder. --- edisgo/flex_opt/reinforce_measures.py | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 45a27d725..248cb8960 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -952,12 +952,6 @@ def add_standard_transformer( node # first nodes and paths ) - # TODO: make sure nodes are sorted correctly? - - lines_changes = {} - transformers_changes = {} - nodes_tb_relocated = {} # nodes to be moved into the new grid - # note: The number of critical lines in the Lv grid can be more than 2. However, # if the node_1_2 of the first feeder in the for loop is not the first node of the # feeder, it will add data frames even though the following feeders only 1 node @@ -971,6 +965,20 @@ def add_standard_transformer( ) ) + # make sure nodes are sorted correctly and node_1_2 is part of the main feeder + for first_node, nodes_feeder in first_nodes_feeders.items(): + paths_first_node = { + node: path for node, path in paths.items() if path[1] == first_node + } + + first_nodes_feeders[first_node] = paths_first_node[ + max(paths_first_node, key=lambda x: len(paths_first_node[x])) + ] + + lines_changes = {} + transformers_changes = {} + nodes_tb_relocated = {} # nodes to be moved into the new grid + count_inept = 0 for first_node, nodes_feeder in first_nodes_feeders.items(): @@ -990,6 +998,8 @@ def add_standard_transformer( # path does not include the nodes branching from the node on the main path path = paths[last_node] + # TODO: replace this to be weighted by the connected load per bus incl. + # branched1 of feeders node_1_2 = next( j for j in path From 028d5eccc6d07130a11a0f7f2dae986e87e40890 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 8 May 2023 11:12:17 +0200 Subject: [PATCH 321/355] add equipment changes to workflow --- edisgo/flex_opt/reinforce_grid.py | 147 ++++++++++++++++---------- edisgo/flex_opt/reinforce_measures.py | 10 +- tests/flex_opt/test_reinforce_grid.py | 7 ++ 3 files changed, 106 insertions(+), 58 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 974dab880..66937d62a 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -4,7 +4,6 @@ import datetime import logging -from numbers import Number from typing import TYPE_CHECKING import numpy as np @@ -116,42 +115,6 @@ def reinforce_grid( reinforcement is conducted. """ - - def _add_lines_changes_to_equipment_changes(): - edisgo.results.equipment_changes = pd.concat( - [ - edisgo.results.equipment_changes, - pd.DataFrame( - { - "iteration_step": [iteration_step] * len(lines_changes), - "change": ["changed"] * len(lines_changes), - "equipment": edisgo.topology.lines_df.loc[ - lines_changes.keys(), "type_info" - ].values, - "quantity": [_ for _ in lines_changes.values()], - }, - index=lines_changes.keys(), - ), - ], - ) - - def _add_transformer_changes_to_equipment_changes(mode: str | None): - df_list = [edisgo.results.equipment_changes] - df_list.extend( - pd.DataFrame( - { - "iteration_step": [iteration_step] * len(transformer_list), - "change": [mode] * len(transformer_list), - "equipment": transformer_list, - "quantity": [1] * len(transformer_list), - }, - index=[station] * len(transformer_list), - ) - for station, transformer_list in transformer_changes[mode].items() - ) - - edisgo.results.equipment_changes = pd.concat(df_list) - if n_minus_one is True: raise NotImplementedError("n-1 security can currently not be checked.") @@ -255,8 +218,12 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) ) # write added and removed transformers to results.equipment_changes - _add_transformer_changes_to_equipment_changes("added") - _add_transformer_changes_to_equipment_changes("removed") + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "added" + ) + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "removed" + ) if not overloaded_lv_stations.empty: # reinforce distribution substations @@ -266,8 +233,12 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) ) # write added and removed transformers to results.equipment_changes - _add_transformer_changes_to_equipment_changes("added") - _add_transformer_changes_to_equipment_changes("removed") + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "added" + ) + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "removed" + ) if not crit_lines.empty: # reinforce lines @@ -275,7 +246,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): edisgo, crit_lines ) # write changed lines to results.equipment_changes - _add_lines_changes_to_equipment_changes() + _add_lines_changes_to_equipment_changes( + edisgo, lines_changes, iteration_step + ) # run power flow analysis again (after updating pypsa object) and check # if all over-loading problems were solved @@ -360,7 +333,7 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_nodes, ) # write changed lines to results.equipment_changes - _add_lines_changes_to_equipment_changes() + _add_lines_changes_to_equipment_changes(edisgo, lines_changes, iteration_step) # run power flow analysis again (after updating pypsa object) and check # if all over-voltage problems were solved @@ -421,7 +394,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) ) # write added transformers to results.equipment_changes - _add_transformer_changes_to_equipment_changes("added") + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "added" + ) # run power flow analysis again (after updating pypsa object) and # check if all over-voltage problems were solved @@ -483,7 +458,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): crit_nodes[crit_nodes.lv_grid_id == grid_id], ) # write changed lines to results.equipment_changes - _add_lines_changes_to_equipment_changes() + _add_lines_changes_to_equipment_changes( + edisgo, lines_changes, iteration_step + ) # run power flow analysis again (after updating pypsa object) # and check if all over-voltage problems were solved @@ -565,8 +542,12 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) ) # write added and removed transformers to results.equipment_changes - _add_transformer_changes_to_equipment_changes("added") - _add_transformer_changes_to_equipment_changes("removed") + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "added" + ) + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "removed" + ) if not overloaded_lv_stations.empty: # reinforce substations @@ -576,8 +557,12 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): ) ) # write added and removed transformers to results.equipment_changes - _add_transformer_changes_to_equipment_changes("added") - _add_transformer_changes_to_equipment_changes("removed") + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "added" + ) + _add_transformer_changes_to_equipment_changes( + edisgo, transformer_changes, iteration_step, "removed" + ) if not crit_lines.empty: # reinforce lines @@ -585,7 +570,9 @@ def _add_transformer_changes_to_equipment_changes(mode: str | None): edisgo, crit_lines ) # write changed lines to results.equipment_changes - _add_lines_changes_to_equipment_changes() + _add_lines_changes_to_equipment_changes( + edisgo, lines_changes, iteration_step + ) # run power flow analysis again (after updating pypsa object) and check # if all over-loading problems were solved @@ -824,7 +811,7 @@ def enhanced_reinforce_grid( edisgo_object: EDisGo, activate_cost_results_disturbing_mode: bool = False, separate_lv_grids: bool = True, - separation_threshold: Number = 2, + separation_threshold: int | float = 2, **kwargs, ) -> EDisGo: """ @@ -984,7 +971,8 @@ def enhanced_reinforce_grid( return edisgo_obj -def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: Number = 2) -> None: +# TODO: docstring +def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: int | float = 2) -> None: lv_grids = list(edisgo_obj.topology.mv_grid.lv_grids) n_grids_init = len(lv_grids) @@ -1064,9 +1052,62 @@ def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: Number = 2) -> None: if worst_case > threshold * transformers_s_nom: logger.info(f"Trying to separate {lv_grid}...") # TODO: Save changes in results - _ = separate_lv_grid(edisgo_obj, lv_grid) + transformers_changes, lines_changes = separate_lv_grid( + edisgo_obj, lv_grid + ) + if len(lines_changes) > 0: + _add_lines_changes_to_equipment_changes( + edisgo_obj, lines_changes, 1 + ) + + if len(transformers_changes) > 0: + _add_transformer_changes_to_equipment_changes( + edisgo_obj, transformers_changes, 1, "added" + ) + else: logger.info( f"The overloading in {lv_grid} does not surpass the set threshold " f"of {threshold} and is therefore not separated." ) + + +def _add_lines_changes_to_equipment_changes( + edisgo: EDisGo, lines_changes: dict, iteration_step: int +) -> None: + edisgo.results.equipment_changes = pd.concat( + [ + edisgo.results.equipment_changes, + pd.DataFrame( + { + "iteration_step": [iteration_step] * len(lines_changes), + "change": ["changed"] * len(lines_changes), + "equipment": edisgo.topology.lines_df.loc[ + lines_changes.keys(), "type_info" + ].values, + "quantity": [_ for _ in lines_changes.values()], + }, + index=list(lines_changes.keys()), + ), + ], + ) + + +def _add_transformer_changes_to_equipment_changes( + edisgo: EDisGo, transformer_changes: dict, iteration_step: int, mode: str | None +) -> None: + df_list = [edisgo.results.equipment_changes] + df_list.extend( + pd.DataFrame( + { + "iteration_step": [iteration_step] * len(transformer_list), + "change": [mode] * len(transformer_list), + "equipment": transformer_list, + "quantity": [1] * len(transformer_list), + }, + index=[station] * len(transformer_list), + ) + for station, transformer_list in transformer_changes[mode].items() + ) + + edisgo.results.equipment_changes = pd.concat(df_list) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 248cb8960..7494ba4dc 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -863,7 +863,7 @@ def add_standard_transformer( except KeyError: raise KeyError("Standard MV/LV transformer is not in the equipment list.") - transformers_changes = {"added": {}} + transformer_changes = {"added": {}} transformer_s = grid.transformers_df.iloc[0] new_transformer_name = transformer_s.name.split("_") @@ -880,7 +880,7 @@ def add_standard_transformer( new_transformer_df = transformer_s.to_frame().T - old_s_nom = 5 # grid.transformers_df.s_nom.sum() + old_s_nom = grid.transformers_df.s_nom.sum() max_iterations = 10 n = 0 @@ -897,7 +897,7 @@ def add_standard_transformer( try: name[-1] = str(int(name[-1]) + 1) except ValueError: - name.append("_1") + name.append("1") name = "_".join(name) @@ -910,11 +910,11 @@ def add_standard_transformer( edisgo_obj.topology.transformers_df = pd.concat( [edisgo_obj.topology.transformers_df, new_transformer_df] ) - transformers_changes["added"][ + transformer_changes["added"][ f"LVGrid_{lv_grid_id_new}" ] = new_transformer_df.index.tolist() - return transformers_changes + return transformer_changes G = grid.graph diff --git a/tests/flex_opt/test_reinforce_grid.py b/tests/flex_opt/test_reinforce_grid.py index 73a5c2be7..dd4ca4cb4 100644 --- a/tests/flex_opt/test_reinforce_grid.py +++ b/tests/flex_opt/test_reinforce_grid.py @@ -7,6 +7,7 @@ from pandas.testing import assert_frame_equal from edisgo import EDisGo +from edisgo.flex_opt.costs import grid_expansion_costs from edisgo.flex_opt.reinforce_grid import reinforce_grid, run_separate_lv_grids @@ -73,6 +74,7 @@ def test_run_separate_lv_grids(self): run_separate_lv_grids(edisgo) + edisgo.results.grid_expansion_costs = grid_expansion_costs(edisgo) lv_grids_new = list(edisgo.topology.mv_grid.lv_grids) # check that no new lv grid only consist of the station @@ -81,6 +83,7 @@ def test_run_separate_lv_grids(self): assert len(g.buses_df) > 1 assert len(lv_grids_new) == 26 + assert np.isclose(edisgo.results.grid_expansion_costs.total_costs.sum(), 280.06) # check if all generators are still present assert np.isclose( @@ -99,3 +102,7 @@ def test_run_separate_lv_grids(self): sum(g.storage_units_df.p_nom.sum() for g in lv_grids), sum(g.storage_units_df.p_nom.sum() for g in lv_grids_new), ) + + # test if power flow works + edisgo.set_time_series_worst_case_analysis() + edisgo.analyze() From d7c1992484e3ef916b87a68052e878ccb89a7f30 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 8 May 2023 11:16:52 +0200 Subject: [PATCH 322/355] adapted whatsnew --- doc/whatsnew/v0-3-0.rst | 1 + edisgo/flex_opt/reinforce_grid.py | 7 ++++--- edisgo/flex_opt/reinforce_measures.py | 1 - 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/whatsnew/v0-3-0.rst b/doc/whatsnew/v0-3-0.rst index c8462d0de..c0c5a3d1e 100644 --- a/doc/whatsnew/v0-3-0.rst +++ b/doc/whatsnew/v0-3-0.rst @@ -21,3 +21,4 @@ Changes * Added method to iteratively reinforce a grid in case the power flow analysis does not always converge `#353 `_ * Added method to aggregate LV grid buses to station bus secondary side `#353 `_ * Added option to run reinforcement with reduced number of time steps `#379 `_ +* Added a new reinforcement method that separate lv grids when the overloading is very high `#380 `_ diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 66937d62a..e56e62c18 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -984,9 +984,11 @@ def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: int | float = 2) -> Non techs = ["generators", "loads", "storage_units"] n = 0 + max_iterations = 100 - while n_grids_init != len(list(edisgo_obj.topology.mv_grid.lv_grids)) or first_run: - print(n) + while ( + n_grids_init != len(list(edisgo_obj.topology.mv_grid.lv_grids)) or first_run + ) and n < max_iterations: n += 1 first_run = False @@ -1051,7 +1053,6 @@ def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: int | float = 2) -> Non if worst_case > threshold * transformers_s_nom: logger.info(f"Trying to separate {lv_grid}...") - # TODO: Save changes in results transformers_changes, lines_changes = separate_lv_grid( edisgo_obj, lv_grid ) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 7494ba4dc..693a77083 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -1164,5 +1164,4 @@ def add_standard_transformer( f"{grid} was not reinforced because it has to few suitable feeders." ) - # TODO: check if changes are tracked correctly return transformers_changes, lines_changes From 36b542e4a01257d0b9f30a3f09337e779669d232 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 8 May 2023 16:50:10 +0200 Subject: [PATCH 323/355] docstrings --- edisgo/flex_opt/reinforce_grid.py | 35 ++++++++++++++++++-- edisgo/flex_opt/reinforce_measures.py | 46 ++++++++++++--------------- 2 files changed, 53 insertions(+), 28 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index e56e62c18..36ccea20c 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -806,7 +806,6 @@ def reinforce(): return edisgo.results -# TODO: adapt docstring def enhanced_reinforce_grid( edisgo_object: EDisGo, activate_cost_results_disturbing_mode: bool = False, @@ -822,7 +821,9 @@ def enhanced_reinforce_grid( After first grid reinforcement for all voltage levels at once fails, reinforcement is first conducted for the MV level only, afterwards for the MV level including - MV/LV stations and at last each LV grid separately. + MV/LV stations and at last each LV grid separately. Beforehand the separation of + highly overloaded LV grids can be done by setting 'separate_lv_grids' to True. See + :func:`~.flex_opt.reinforce_grid.run_separate_lv_grids` for more information. Parameters ---------- @@ -842,6 +843,12 @@ def enhanced_reinforce_grid( :func:`edisgo.flex_opt.reinforce_grid.reinforce_grid`, except `catch_convergence_problems` which will always be set to True, `mode` which is set to None, and `skip_mv_reinforcement` which will be ignored. + separate_lv_grids : bool + If True, all highly overloaded LV grids are separated in a first step. + separation_threshold : int or float + Overloading threshold for LV grid separation. If the overloading is higher than + the threshold times the total nominal apparent power of the MV/LV transformer(s) + the grid is separated. Returns ------- @@ -971,8 +978,30 @@ def enhanced_reinforce_grid( return edisgo_obj -# TODO: docstring def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: int | float = 2) -> None: + """ + Separate all highly overloaded LV grids within the MV grid. + + The loading is approximated by aggregation of all load and generator time series + and comparison with the total nominal apparent power of the MV/LV transformer(s). + This approach is chosen because this method is aims at resolving highly overloaded + grid situations in which cases the power flow often does not converge. This method + ignores grid losses and voltage deviations. Originating and new LV grids can be + separated multiple times if the overloading is very high. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + threshold : int or float + Overloading threshold. If the overloading is higher than the threshold times + the total nominal apparent power of the MV/LV transformer(s) the grid is + separated. + + Returns + ------- + :class:`~.EDisGo` + The reinforced eDisGo object. + """ lv_grids = list(edisgo_obj.topology.mv_grid.lv_grids) n_grids_init = len(lv_grids) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 693a77083..3b013e874 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -512,7 +512,7 @@ def reinforce_lines_voltage_issues(edisgo_obj, grid, crit_nodes): ] = path_length_dict[node_2_3] edisgo_obj.topology.change_line_type([crit_line_name], standard_line) lines_changes[crit_line_name] = 1 - # ToDo: Include switch disconnector + # TODO: Include switch disconnector if not lines_changes: logger.debug( @@ -735,46 +735,43 @@ def _replace_by_parallel_standard_lines(lines): return lines_changes -# TODO: check docstrings def separate_lv_grid( edisgo_obj: EDisGo, grid: LVGrid ) -> tuple[dict[Any, Any], dict[str, int]]: """ - Split LV grid by adding a new substation and connect half of each feeder. + Separate LV grid by adding a new substation and connect half of each feeder. - If the number of overloaded feeders in the LV grid is more than 1 (this can be - changed 2 or 3), the feeders are split at their half-length, and the disconnected - points are connected to the new MV/LV station. + Separate LV grid by adding a new substation and connect half of each feeder. If a + feeder cannot be split because it has to few nodes or too few nodes outside a + building each second inept feeder is connected to the new LV grid. The new LV grids + equipped with standard transformers until the nominal apparent power is at least the + same as from the originating LV grid. The new substation is at the same location as + the originating substation. The workflow is as following: - 1. The point at half the length of the feeders is found. - 2. The first node following this point is chosen as the point where the new - connection will be made. This node can only be a station. - 3. This node is disconnected from the previous node and connected to a new station. - 4. New MV/LV is connected to the existing MV/LV station with a line of which length - equals the line length between the node at the half-length (node_1_2) and its - preceding node. + * New MV/LV station is connected to the existing MV/LV station. + * The point at half the length of the feeders is determined. + * The first node following this point is chosen as the point where the new + connection will be made. + * This node is disconnected from the previous node and connected to a new station. Notes: - - If the number of overloaded lines in the LV grid is less than 2 (this can be - changed 2 or 3) and the node_1_2 is the first node after the main station, the - method is not applied. - - The name of the new grid will be the existing grid code - (e.g. 40000) + 1001 = 400001001 - - The name of the lines in the new LV grid is the same as the grid where the nodes + * The name of the new LV grid will be a combination of the originating existing grid + ID. E.g. 40000 + X = 40000X + * The name of the lines in the new LV grid is the same as the grid where the nodes are removed - - Except line names, all the data frames are named based on the new grid name + * Except line names, all the data frames are named based on the new grid name Parameters ---------- edisgo_obj : :class:`~.EDisGo` - grid: class : :class:`~.network.grids.MVGrid` or :class:`~.network.grids.LVGrid` + grid: class : :class:`~.network.grids.LVGrid` Returns ------- - line_changes= dict + dict Dictionary with name of lines as keys and the corresponding number of lines added as values. - transformer_changes= dict + dict Dictionary with added and removed transformers in the form:: {'added': {'Grid_1': ['transformer_reinforced_1', ..., @@ -823,7 +820,6 @@ def create_bus_name(bus: str, lv_grid_id_new: int, voltage_level: str) -> str: return bus - # TODO: adapt docstring to describe multiple new transformers def add_standard_transformer( edisgo_obj: EDisGo, grid: LVGrid, bus_lv: str, bus_mv: str, lv_grid_id_new: int ) -> dict: @@ -999,7 +995,7 @@ def add_standard_transformer( path = paths[last_node] # TODO: replace this to be weighted by the connected load per bus incl. - # branched1 of feeders + # branched of feeders node_1_2 = next( j for j in path From 92c82a520d0c1f3249fdcbd4ba0c8b77f09c66d2 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 8 May 2023 16:55:10 +0200 Subject: [PATCH 324/355] also except RuntimeErrors in enhanced reinforcement --- edisgo/flex_opt/reinforce_grid.py | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 36ccea20c..5c0624a24 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -878,14 +878,14 @@ def enhanced_reinforce_grid( logger.info("Try initial enhanced reinforcement.") edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) logger.info("Initial enhanced reinforcement succeeded.") - except ValueError: + except (ValueError, RuntimeError): logger.info("Initial enhanced reinforcement failed.") logger.info("Try mode 'mv' reinforcement.") try: edisgo_obj.reinforce(mode="mv", catch_convergence_problems=True, **kwargs) logger.info("Mode 'mv' reinforcement succeeded.") - except ValueError: + except (ValueError, RuntimeError): logger.info("Mode 'mv' reinforcement failed.") logger.info("Try mode 'mvlv' reinforcement.") @@ -893,7 +893,7 @@ def enhanced_reinforce_grid( try: edisgo_obj.reinforce(mode="mvlv", catch_convergence_problems=True, **kwargs) logger.info("Mode 'mvlv' reinforcement succeeded.") - except ValueError: + except (ValueError, RuntimeError): logger.info("Mode 'mvlv' reinforcement failed.") for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids): @@ -906,7 +906,7 @@ def enhanced_reinforce_grid( **kwargs, ) logger.info(f"Mode 'lv' reinforcement for {lv_grid} successful.") - except: # noqa: E722 + except (ValueError, RuntimeError): logger.info(f"Mode 'lv' reinforcement for {lv_grid} failed.") if activate_cost_results_disturbing_mode: try: @@ -929,7 +929,7 @@ def enhanced_reinforce_grid( logger.info( f"Changed lines mode 'lv' for {lv_grid} successful." ) - except: # noqa: E722 + except (ValueError, RuntimeError): logger.info(f"Changed lines mode 'lv' for {lv_grid} failed.") logger.warning( f"Aggregate all nodes to station bus in {lv_grid=}." @@ -942,13 +942,16 @@ def enhanced_reinforce_grid( logger.info( f"Aggregate to station for {lv_grid} successful." ) - except: # noqa: E722 - logger.info(f"Aggregate to station for {lv_grid} failed.") + except Exception as e: + logger.info( + f"Aggregate to station for {lv_grid} failed with " + f"exception:\n{e}" + ) try: edisgo_obj.reinforce(mode=None, catch_convergence_problems=True, **kwargs) logger.info("Enhanced reinforcement succeeded.") - except Exception as e: # noqa: E722 + except Exception as e: logger.info("Enhanced reinforcement failed.") raise e From ea470eff8e76fdc381af677289989d2dd992aef2 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 8 May 2023 17:07:58 +0200 Subject: [PATCH 325/355] fix docstrings --- edisgo/flex_opt/reinforce_measures.py | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 3b013e874..4185761ca 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -748,13 +748,15 @@ def separate_lv_grid( same as from the originating LV grid. The new substation is at the same location as the originating substation. The workflow is as following: - * New MV/LV station is connected to the existing MV/LV station. * The point at half the length of the feeders is determined. * The first node following this point is chosen as the point where the new connection will be made. - * This node is disconnected from the previous node and connected to a new station. + * New MV/LV station is connected to the existing MV/LV station. + * The determined nodes are disconnected from the previous nodes and connected to the + new MV/LV station. Notes: + * The name of the new LV grid will be a combination of the originating existing grid ID. E.g. 40000 + X = 40000X * The name of the lines in the new LV grid is the same as the grid where the nodes @@ -772,13 +774,14 @@ def separate_lv_grid( Dictionary with name of lines as keys and the corresponding number of lines added as values. dict - Dictionary with added and removed transformers in the form:: - {'added': {'Grid_1': ['transformer_reinforced_1', - ..., - 'transformer_reinforced_x'], - 'Grid_10': ['transformer_reinforced_10'] - } - } + Dictionary with added transformers in the form:: + + {'added': {'Grid_1': ['transformer_reinforced_1', + ..., + 'transformer_reinforced_x'], + 'Grid_10': ['transformer_reinforced_10'] + } + } """ def get_weight(u, v, data: dict) -> float: From 91f5bb5e1ae966190e4c55bd5b574dc0195c7895 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Mon, 8 May 2023 17:14:41 +0200 Subject: [PATCH 326/355] pre-commit autoupdate --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index bb2612e60..dcd094113 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,7 +19,7 @@ repos: - id: isort name: isort (python) - repo: https://github.com/asottile/pyupgrade - rev: v3.3.1 + rev: v3.4.0 hooks: - id: pyupgrade #- repo: https://github.com/pycqa/pylint From 6684b9226f4f6d2347a6a9129b3f59837e909963 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 8 May 2023 22:10:17 +0200 Subject: [PATCH 327/355] Minor doc and logging changes --- edisgo/flex_opt/reinforce_grid.py | 11 +++--- edisgo/flex_opt/reinforce_measures.py | 55 +++++++++++++-------------- 2 files changed, 33 insertions(+), 33 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 5c0624a24..9ae90d2f9 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -987,9 +987,9 @@ def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: int | float = 2) -> Non The loading is approximated by aggregation of all load and generator time series and comparison with the total nominal apparent power of the MV/LV transformer(s). - This approach is chosen because this method is aims at resolving highly overloaded + This approach is chosen because this method aims at resolving highly overloaded grid situations in which cases the power flow often does not converge. This method - ignores grid losses and voltage deviations. Originating and new LV grids can be + ignores grid losses and voltage deviations. Original and new LV grids can be separated multiple times if the overloading is very high. Parameters @@ -997,13 +997,14 @@ def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: int | float = 2) -> Non edisgo_obj : :class:`~.EDisGo` threshold : int or float Overloading threshold. If the overloading is higher than the threshold times - the total nominal apparent power of the MV/LV transformer(s) the grid is + the total nominal apparent power of the MV/LV transformer(s), the grid is separated. Returns ------- :class:`~.EDisGo` The reinforced eDisGo object. + """ lv_grids = list(edisgo_obj.topology.mv_grid.lv_grids) n_grids_init = len(lv_grids) @@ -1099,9 +1100,9 @@ def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: int | float = 2) -> Non ) else: - logger.info( + logger.debug( f"The overloading in {lv_grid} does not surpass the set threshold " - f"of {threshold} and is therefore not separated." + f"of {threshold}. The grid is therefore not separated." ) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 4185761ca..b00cd7ceb 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -741,12 +741,11 @@ def separate_lv_grid( """ Separate LV grid by adding a new substation and connect half of each feeder. - Separate LV grid by adding a new substation and connect half of each feeder. If a - feeder cannot be split because it has to few nodes or too few nodes outside a - building each second inept feeder is connected to the new LV grid. The new LV grids - equipped with standard transformers until the nominal apparent power is at least the - same as from the originating LV grid. The new substation is at the same location as - the originating substation. The workflow is as following: + If a feeder cannot be split because it has too few nodes or too few nodes outside a + building, each second inept feeder is connected to the new LV grid. The new LV grid + is equipped with standard transformers until the nominal apparent power is at least + the same as in the original LV grid. The new substation is at the same location as + the originating substation. The workflow is as follows: * The point at half the length of the feeders is determined. * The first node following this point is chosen as the point where the new @@ -759,14 +758,14 @@ def separate_lv_grid( * The name of the new LV grid will be a combination of the originating existing grid ID. E.g. 40000 + X = 40000X - * The name of the lines in the new LV grid is the same as the grid where the nodes - are removed + * The name of the lines in the new LV grid are the same as in the grid where the + nodes were removed * Except line names, all the data frames are named based on the new grid name Parameters ---------- edisgo_obj : :class:`~.EDisGo` - grid: class : :class:`~.network.grids.LVGrid` + grid : :class:`~.network.grids.LVGrid` Returns ------- @@ -782,6 +781,7 @@ def separate_lv_grid( 'Grid_10': ['transformer_reinforced_10'] } } + """ def get_weight(u, v, data: dict) -> float: @@ -789,8 +789,8 @@ def get_weight(u, v, data: dict) -> float: def create_bus_name(bus: str, lv_grid_id_new: int, voltage_level: str) -> str: """ - Create an LV and MV bus-bar name with the same grid_id but added '1001' that - implies the separation + Create an LV and MV bus-bar name with the same grid_id but added '1001' which + implies the separation. Parameters ---------- @@ -801,7 +801,9 @@ def create_bus_name(bus: str, lv_grid_id_new: int, voltage_level: str) -> str: Returns ---------- - bus: str New bus-bar name + str + New bus-bar name. + """ if bus in edisgo_obj.topology.buses_df.index: bus = bus.split("_") @@ -831,14 +833,17 @@ def add_standard_transformer( Parameters ---------- - edisgo_obj: class:`~.EDisGo` - grid: `~.network.grids.LVGrid` - bus_lv: Identifier of lv bus - bus_mv: Identifier of mv bus + edisgo_obj : class:`~.EDisGo` + grid : `~.network.grids.LVGrid` + bus_lv : str + Identifier of LV bus. + bus_mv : str + Identifier of MV bus. Returns ---------- - transformer_changes= dict + dict + """ if bus_lv not in edisgo_obj.topology.buses_df.index: raise ValueError( @@ -1036,9 +1041,8 @@ def add_standard_transformer( count_inept += 1 if nodes_tb_relocated: - logger.info(f"{grid}==>method:add_station_at_half_length is running ") - # the new lv grid id: e.g. 49602X + # generate new lv grid id n = 0 lv_grid_id_new = int(f"{grid.id}{n}") @@ -1060,7 +1064,7 @@ def add_standard_transformer( lv_bus_new = create_bus_name(station_node, lv_grid_id_new, "lv") mv_bus = grid.transformers_df.bus0.iat[0] - # ADD MV and LV bus + # Add MV and LV bus v_nom_lv = edisgo_obj.topology.buses_df.at[ grid.transformers_df.bus1[0], "v_nom", @@ -1087,7 +1091,7 @@ def add_standard_transformer( ) transformers_changes.update(transformer_changes) - logger.debug(f"New grid {lv_grid_id_new} added into topology.") + logger.info(f"New LV grid {lv_grid_id_new} added to topology.") lv_standard_line = edisgo_obj.config["grid_expansion_standard_equipment"][ "lv_line" @@ -1131,18 +1135,13 @@ def add_standard_transformer( comp_name=line_removed, ) - logger.debug( - f"the node {node_1_2} is split from the line and connected to " - f"{lv_grid_id_new} " - ) - logger.info( f"{len(nodes_tb_relocated.keys())} feeders are removed from the grid " f"{grid} and located in new grid {lv_grid_id_new} by method: " f"add_station_at_half_length " ) - # check if new grids have isolated notes + # check if new grids have isolated nodes grids = [ g for g in edisgo_obj.topology.mv_grid.lv_grids @@ -1160,7 +1159,7 @@ def add_standard_transformer( else: logger.warning( - f"{grid} was not reinforced because it has to few suitable feeders." + f"{grid} was not split because it has too few suitable feeders." ) return transformers_changes, lines_changes From f473b5ac6990fe55a5b46f1939769ff296d2b6c3 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Tue, 9 May 2023 09:22:21 +0200 Subject: [PATCH 328/355] simplify apparent power calculation --- edisgo/flex_opt/reinforce_grid.py | 48 +++++++++++-------------------- 1 file changed, 17 insertions(+), 31 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 9ae90d2f9..33b3a5052 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -1029,58 +1029,44 @@ def run_separate_lv_grids(edisgo_obj: EDisGo, threshold: int | float = 2) -> Non n_grids_init = len(lv_grids) for lv_grid in lv_grids: - tech_dict = {} + active_power_dict = {} + reactive_power_dict = {} for tech in techs: units = getattr(lv_grid, tech_str.format(tech)).index - active_power = ( + active_power_dict[tech] = ( getattr( edisgo_obj.timeseries, active_str.format(tech), ) .loc[:, units] .astype(float) + .sum(axis=1) ) - reactive_power = ( + reactive_power_dict[tech] = ( getattr( edisgo_obj.timeseries, reactive_str.format(tech), ) .loc[:, units] .astype(float) + .sum(axis=1) ) - if tech == "storage_units": - tech_dict[tech + "_loads"] = np.hypot( - active_power.clip(upper=0.0), - reactive_power.clip(upper=0.0), - ) - - tech_dict[tech + "_generators"] = np.hypot( - active_power.clip(lower=0.0), - reactive_power.clip(lower=0.0), - ) - else: - tech_dict[tech] = np.hypot(active_power, reactive_power) - - load = pd.concat( - [ - tech_dict["loads"], - tech_dict["storage_units_loads"], - ], - axis=1, - ).sum(axis=1) + active_power = ( + active_power_dict["loads"] + - active_power_dict["generators"] + - active_power_dict["storage_units"] + ) - gen = pd.concat( - [ - tech_dict["generators"], - tech_dict["storage_units_generators"], - ], - axis=1, - ).sum(axis=1) + reactive_power = ( + reactive_power_dict["loads"] + - reactive_power_dict["generators"] + - reactive_power_dict["storage_units"] + ) - worst_case = (gen - load).abs().max() + worst_case = np.hypot(active_power, reactive_power).max() transformers_s_nom = lv_grid.transformers_df.s_nom.sum() From 48255d3f4ed21f750fb4b0ddb76791d1bd28c660 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Tue, 9 May 2023 09:30:40 +0200 Subject: [PATCH 329/355] make sure to idntify station node correctly --- edisgo/flex_opt/reinforce_measures.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index b00cd7ceb..300d0be3a 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -415,7 +415,6 @@ def reinforce_lines_voltage_issues(edisgo_obj, grid, crit_nodes): lines_changes = {} for repr_node in nodes_feeder.keys(): - # find node farthest away get_weight = lambda u, v, data: data["length"] # noqa: E731 path_length = 0 @@ -923,7 +922,7 @@ def add_standard_transformer( G = grid.graph # main station - station_node = list(G.nodes)[0] + station_node = grid.transformers_df.bus1.iat[0] relevant_lines = grid.lines_df.loc[ (grid.lines_df.bus0 == station_node) | (grid.lines_df.bus1 == station_node) @@ -1041,7 +1040,6 @@ def add_standard_transformer( count_inept += 1 if nodes_tb_relocated: - # generate new lv grid id n = 0 lv_grid_id_new = int(f"{grid.id}{n}") @@ -1158,8 +1156,6 @@ def add_standard_transformer( ) else: - logger.warning( - f"{grid} was not split because it has too few suitable feeders." - ) + logger.warning(f"{grid} was not split because it has too few suitable feeders.") return transformers_changes, lines_changes From 3a28aa280d8569745d4ded2c11f5ccb906420da3 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Tue, 9 May 2023 10:02:32 +0200 Subject: [PATCH 330/355] add comments at hard to undrstand parts --- edisgo/flex_opt/reinforce_measures.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 300d0be3a..4592e0fb3 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -928,6 +928,10 @@ def add_standard_transformer( (grid.lines_df.bus0 == station_node) | (grid.lines_df.bus1 == station_node) ] + first_nodes = set(relevant_lines.bus0).union(set(relevant_lines.bus1)) - { + station_node, + } + if len(relevant_lines) <= 1: logger.warning( f"{grid} has only {len(relevant_lines)} feeder and is therefore not " @@ -941,17 +945,19 @@ def add_standard_transformer( paths = {} first_nodes_feeders = {} + # determine ordered shortest path between each node and the station node and each + # node per feeder for node in G.nodes: if node == station_node: continue path = nx.shortest_path(G, station_node, node) - for first_node in relevant_lines.bus1.values: + for first_node in first_nodes: if first_node in path: paths[node] = path - first_nodes_feeders.setdefault(path[1], []).append( + first_nodes_feeders.setdefault(first_node, []).append( node # first nodes and paths ) @@ -974,6 +980,7 @@ def add_standard_transformer( node: path for node, path in paths.items() if path[1] == first_node } + # identify main feeder by maximum number of nodes in path first_nodes_feeders[first_node] = paths_first_node[ max(paths_first_node, key=lambda x: len(paths_first_node[x])) ] From ba00bc938454fa4ea94dbbd7bb7432429fb107c5 Mon Sep 17 00:00:00 2001 From: Kilian Helfenbein Date: Tue, 9 May 2023 11:51:52 +0200 Subject: [PATCH 331/355] fix test_separate_lv_grid --- tests/flex_opt/test_reinforce_measures.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/tests/flex_opt/test_reinforce_measures.py b/tests/flex_opt/test_reinforce_measures.py index 7696edf59..5ea720064 100644 --- a/tests/flex_opt/test_reinforce_measures.py +++ b/tests/flex_opt/test_reinforce_measures.py @@ -461,6 +461,10 @@ def test_separate_lv_grid(self): self.edisgo ) + all_lv_grid_ids = [ + lv_grid.id for lv_grid in self.edisgo.topology.mv_grid.lv_grids + ] + lv_grid_ids = ( self.edisgo.topology.buses_df.loc[ self.edisgo.topology.lines_df.loc[crit_lines_lv.index].bus0 @@ -489,8 +493,10 @@ def test_separate_lv_grid(self): new_g_1 = [ g for g in self.edisgo.topology.mv_grid.lv_grids - if g.id == int(str(grid_id) + "1001") + if g.id not in all_lv_grid_ids ][0] + + all_lv_grid_ids.append(new_g_1.id) except IndexError: continue From 20db1e1c6b39785da4a78eb4514b640148c63b34 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 9 May 2023 16:47:04 +0200 Subject: [PATCH 332/355] Minor doc change --- edisgo/flex_opt/reinforce_grid.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 33b3a5052..25dfdebb4 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -838,17 +838,17 @@ def enhanced_reinforce_grid( standard line type. Should this not be sufficient to solve non-convergence issues, all components in the LV grid are aggregated to the MV/LV station. Default: False. - kwargs : dict - Keyword arguments can be all parameters of function - :func:`edisgo.flex_opt.reinforce_grid.reinforce_grid`, except - `catch_convergence_problems` which will always be set to True, `mode` which - is set to None, and `skip_mv_reinforcement` which will be ignored. separate_lv_grids : bool If True, all highly overloaded LV grids are separated in a first step. separation_threshold : int or float Overloading threshold for LV grid separation. If the overloading is higher than the threshold times the total nominal apparent power of the MV/LV transformer(s) the grid is separated. + kwargs : dict + Keyword arguments can be all parameters of function + :func:`edisgo.flex_opt.reinforce_grid.reinforce_grid`, except + `catch_convergence_problems` which will always be set to True, `mode` which + is set to None, and `skip_mv_reinforcement` which will be ignored. Returns ------- From b7230c1427d1597f2a3d2a0118307a7977ced95e Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 9 May 2023 16:47:22 +0200 Subject: [PATCH 333/355] Bug fix avoid float becoming object type --- edisgo/flex_opt/reinforce_measures.py | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/edisgo/flex_opt/reinforce_measures.py b/edisgo/flex_opt/reinforce_measures.py index 4592e0fb3..b93e0f274 100644 --- a/edisgo/flex_opt/reinforce_measures.py +++ b/edisgo/flex_opt/reinforce_measures.py @@ -868,20 +868,18 @@ def add_standard_transformer( transformer_changes = {"added": {}} - transformer_s = grid.transformers_df.iloc[0] - new_transformer_name = transformer_s.name.split("_") + new_transformer_df = grid.transformers_df.iloc[[0]] + new_transformer_name = new_transformer_df.index[0].split("_") grid_id_ind = new_transformer_name.index(str(grid.id)) new_transformer_name[grid_id_ind] = lv_grid_id_new - transformer_s.s_nom = standard_transformer.S_nom - transformer_s.type_info = None - transformer_s.r_pu = standard_transformer.r_pu - transformer_s.x_pu = standard_transformer.x_pu - transformer_s.name = "_".join([str(_) for _ in new_transformer_name]) - transformer_s.bus0 = bus_mv - transformer_s.bus1 = bus_lv - - new_transformer_df = transformer_s.to_frame().T + new_transformer_df.s_nom = standard_transformer.S_nom + new_transformer_df.type_info = None + new_transformer_df.r_pu = standard_transformer.r_pu + new_transformer_df.x_pu = standard_transformer.x_pu + new_transformer_df.index = ["_".join([str(_) for _ in new_transformer_name])] + new_transformer_df.bus0 = bus_mv + new_transformer_df.bus1 = bus_lv old_s_nom = grid.transformers_df.s_nom.sum() From efd4af028f0e198e41707865576a88a3886aa661 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 9 May 2023 19:24:04 +0200 Subject: [PATCH 334/355] Correct docstring --- edisgo/edisgo.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/edisgo/edisgo.py b/edisgo/edisgo.py index bc1084e99..c1af5773a 100755 --- a/edisgo/edisgo.py +++ b/edisgo/edisgo.py @@ -969,7 +969,9 @@ def analyze( -------- tuple(:pandas:`pandas.DatetimeIndex`,\ :pandas:`pandas.DatetimeIndex`) - Returns the time steps for which power flow analysis did not converge. + First index contains time steps for which power flow analysis did converge. + Second index contains time steps for which power flow analysis did not + converge. References -------- From 74ea1e786c88504bd98e1d1fd9b75b8a9da7dd82 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 9 May 2023 19:24:42 +0200 Subject: [PATCH 335/355] Fix check if LV grid ID is provided --- edisgo/io/pypsa_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/io/pypsa_io.py b/edisgo/io/pypsa_io.py index d795d3272..b9ad3fb18 100755 --- a/edisgo/io/pypsa_io.py +++ b/edisgo/io/pypsa_io.py @@ -195,7 +195,7 @@ def _set_slack(grid): pypsa_network.mode = "lv" lv_grid_id = kwargs.get("lv_grid_id", None) - if not lv_grid_id: + if lv_grid_id is None: raise ValueError( "For exporting LV grids, ID or name of LV grid has to be provided" "using parameter `lv_grid_id`." From 5024be3225ac02df06262994bc3c1fec5463776d Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 9 May 2023 19:24:56 +0200 Subject: [PATCH 336/355] Minor logging typo fix --- edisgo/io/pypsa_io.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edisgo/io/pypsa_io.py b/edisgo/io/pypsa_io.py index b9ad3fb18..3825a4d6d 100755 --- a/edisgo/io/pypsa_io.py +++ b/edisgo/io/pypsa_io.py @@ -197,7 +197,7 @@ def _set_slack(grid): lv_grid_id = kwargs.get("lv_grid_id", None) if lv_grid_id is None: raise ValueError( - "For exporting LV grids, ID or name of LV grid has to be provided" + "For exporting LV grids, ID or name of LV grid has to be provided " "using parameter `lv_grid_id`." ) grid_object = edisgo_object.topology.get_lv_grid(lv_grid_id) From 9a9094276235412a31d8fdad5aeae98860e2d3d8 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 9 May 2023 19:27:24 +0200 Subject: [PATCH 337/355] Add grid separation when power flow for LV grid does not converge --- edisgo/flex_opt/reinforce_grid.py | 34 +++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/edisgo/flex_opt/reinforce_grid.py b/edisgo/flex_opt/reinforce_grid.py index 25dfdebb4..c5f17ea74 100644 --- a/edisgo/flex_opt/reinforce_grid.py +++ b/edisgo/flex_opt/reinforce_grid.py @@ -819,11 +819,18 @@ def enhanced_reinforce_grid( :func:`edisgo.flex_opt.reinforce_grid.catch_convergence_reinforce_grid` is not sufficient. - After first grid reinforcement for all voltage levels at once fails, reinforcement - is first conducted for the MV level only, afterwards for the MV level including - MV/LV stations and at last each LV grid separately. Beforehand the separation of - highly overloaded LV grids can be done by setting 'separate_lv_grids' to True. See + In a first step, if `separate_lv_grids` is set to True, LV grids with a large load, + specified through parameter `separation_threshold`, are split, so that part of the + load is served by a separate MV/LV station. See :func:`~.flex_opt.reinforce_grid.run_separate_lv_grids` for more information. + Afterwards it is tried to run the grid reinforcement for all voltage levels at once. + If this fails, reinforcement is first conducted for the MV level only, afterwards + for the MV level including MV/LV stations and at last for each LV grid separately. + For each LV grid is it checked, if all time steps converge in the power flow + analysis. If this is not the case, the grid is split. Afterwards it is tried to + be reinforced. If this fails and `activate_cost_results_disturbing_mode` + parameter is set to True, further measures are taken. See parameter documentation + for more information. Parameters ---------- @@ -897,6 +904,25 @@ def enhanced_reinforce_grid( logger.info("Mode 'mvlv' reinforcement failed.") for lv_grid in list(edisgo_obj.topology.mv_grid.lv_grids): + logger.info(f"Check convergence for {lv_grid=}.") + _, ts_not_converged = edisgo_obj.analyze( + mode="lv", raise_not_converged=False, lv_grid_id=lv_grid.id + ) + if len(ts_not_converged) > 0: + logger.info( + f"Not all time steps converged in power flow analysis for " + f"{lv_grid=}. It is therefore tried to be split.") + transformers_changes, lines_changes = separate_lv_grid( + edisgo_obj, lv_grid + ) + if len(lines_changes) > 0: + _add_lines_changes_to_equipment_changes( + edisgo_obj, lines_changes, 1 + ) + if len(transformers_changes) > 0: + _add_transformer_changes_to_equipment_changes( + edisgo_obj, transformers_changes, 1, "added" + ) try: logger.info(f"Try mode 'lv' reinforcement for {lv_grid=}.") edisgo_obj.reinforce( From 5d38f5917369a0ae28070909a303fd785e2b0dd4 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 25 May 2023 22:26:51 +0200 Subject: [PATCH 338/355] Add file with home storage operation strategy --- edisgo/flex_opt/battery_storage_operation.py | 147 +++++++++++++++++++ 1 file changed, 147 insertions(+) create mode 100644 edisgo/flex_opt/battery_storage_operation.py diff --git a/edisgo/flex_opt/battery_storage_operation.py b/edisgo/flex_opt/battery_storage_operation.py new file mode 100644 index 000000000..3630e26e5 --- /dev/null +++ b/edisgo/flex_opt/battery_storage_operation.py @@ -0,0 +1,147 @@ +from copy import deepcopy + +import pandas as pd + + +def battery_storage_reference_operation( + df, + init_storage_charge, + storage_max, + charger_power, + time_base, + efficiency_charge=0.9, + efficiency_discharge=0.9, +): + """ + Reference operation of storage system where it directly charges + Todo: Find original source + + Parameters + ----------- + df : :pandas:`pandas.DataFrame` + Timeseries of house demand - PV generation + init_storage_charge : float + Initial state of energy of storage device + storage_max : float + Maximum energy level of storage device + charger_power : float + Nominal charging power of storage device + time_base : float + Timestep of inserted timeseries + efficiency_charge: float + Efficiency of storage system in case of charging + efficiency_discharge: float + Efficiency of storage system in case of discharging + + Returns + --------- + :pandas:`pandas.DataFrame` + Dataframe with storage operation timeseries + + """ + # Battery model handles generation positive, demand negative + lst_storage_power = [] + lst_storage_charge = [] + storage_charge = init_storage_charge + + for i, d in df.iterrows(): + # If the house would feed electricity into the grid, charge the storage first. + # No electricity exchange with grid as long as charger power is not exceeded + if (d.house_demand > 0) & (storage_charge < storage_max): + # Check if energy produced exceeds charger power + if d.house_demand < charger_power: + storage_charge = storage_charge + ( + d.house_demand * efficiency_charge * time_base + ) + storage_power = -d.house_demand + # If it does, feed the rest to the grid + else: + storage_charge = storage_charge + ( + charger_power * efficiency_charge * time_base + ) + storage_power = -charger_power + + # If the storage would be overcharged, feed the 'rest' to the grid + if storage_charge > storage_max: + storage_power = storage_power + (storage_charge - storage_max) / ( + efficiency_charge * time_base + ) + storage_charge = storage_max + + # If the house needs electricity from the grid, discharge the storage first. + # In this case d.house_demand is negative! + # No electricity exchange with grid as long as demand does not exceed charger + # power + elif (d.house_demand < 0) & (storage_charge > 0): + # Check if energy demand exceeds charger power + if d.house_demand / efficiency_discharge < (charger_power * -1): + storage_charge = storage_charge - (charger_power * time_base) + storage_power = charger_power * efficiency_discharge + + else: + storage_charge = storage_charge + ( + d.house_demand / efficiency_discharge * time_base + ) + storage_power = -d.house_demand + + # If the storage would be undercharged, take the 'rest' from the grid + if storage_charge < 0: + # since storage_charge is negative in this case it can be taken as + # demand + storage_power = ( + storage_power + storage_charge * efficiency_discharge / time_base + ) + storage_charge = 0 + + # If the storage is full or empty, the demand is not affected + # elif(storage_charge == 0) | (storage_charge == storage_max): + else: + storage_power = 0 + lst_storage_power.append(storage_power) + lst_storage_charge.append(storage_charge) + df["storage_power"] = lst_storage_power + df["storage_charge"] = lst_storage_charge + + return df.round(6) + + +def create_storage_data(edisgo_obj): + storage_units = edisgo_obj.topology.storage_units_df + soc_df = pd.DataFrame(index=edisgo_obj.timeseries.timeindex) + # one storage per roof mounted solar generator + for row in storage_units.iterrows(): + building_id = row[1]["building_id"] + pv_gen = edisgo_obj.topology.generators_df.loc[ + edisgo_obj.topology.generators_df.building_id == building_id + ].index[0] + pv_feedin = edisgo_obj.timeseries.generators_active_power[pv_gen] + loads = edisgo_obj.topology.loads_df.loc[ + edisgo_obj.topology.loads_df.building_id == building_id + ].index + if len(loads) == 0: + pass + else: + house_demand = deepcopy( + edisgo_obj.timeseries.loads_active_power[loads].sum(axis=1) + ) + storage_ts = battery_storage_reference_operation( + pd.DataFrame(columns=["house_demand"], data=pv_feedin - house_demand), + 0, + row[1].p_nom, + row[1].p_nom, + 1, + ) + # Add storage ts to storage_units_active_power dataframe + edisgo_obj.set_time_series_manual( + storage_units_p=pd.DataFrame( + columns=[row[0]], + index=storage_ts.index, + data=storage_ts.storage_power.values, + ) + ) + + soc_df = pd.concat([soc_df, storage_ts.storage_charge], axis=1) + + soc_df.columns = edisgo_obj.topology.storage_units_df.index + edisgo_obj.overlying_grid.storage_units_soc = soc_df + edisgo_obj.set_time_series_reactive_power_control() From ffb87dd7e0d283cbc3a4a9ea5472596ae375a868 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 30 Oct 2023 11:58:46 +0100 Subject: [PATCH 339/355] Update storage operation functions --- edisgo/flex_opt/battery_storage_operation.py | 222 ++++++++++++------- 1 file changed, 146 insertions(+), 76 deletions(-) diff --git a/edisgo/flex_opt/battery_storage_operation.py b/edisgo/flex_opt/battery_storage_operation.py index 3630e26e5..3cbcfc9a6 100644 --- a/edisgo/flex_opt/battery_storage_operation.py +++ b/edisgo/flex_opt/battery_storage_operation.py @@ -1,116 +1,149 @@ from copy import deepcopy +import logging import pandas as pd +logger = logging.getLogger(__name__) -def battery_storage_reference_operation( + +def reference_operation( df, - init_storage_charge, - storage_max, - charger_power, - time_base, + soe_init, + soe_max, + storage_p_nom, + freq, efficiency_charge=0.9, efficiency_discharge=0.9, ): """ - Reference operation of storage system where it directly charges - Todo: Find original source + Reference operation of storage system where it directly charges when PV feed-in is + higher than electricity demand of the building. + + Battery model handles generation positive, demand negative Parameters ----------- df : :pandas:`pandas.DataFrame` - Timeseries of house demand - PV generation - init_storage_charge : float - Initial state of energy of storage device - storage_max : float - Maximum energy level of storage device - charger_power : float - Nominal charging power of storage device - time_base : float - Timestep of inserted timeseries - efficiency_charge: float - Efficiency of storage system in case of charging - efficiency_discharge: float - Efficiency of storage system in case of discharging + Dataframe with time index and the buildings residual electricity demand + (PV generation minus electricity demand) in column "feedin_minus_demand". + soe_init : float + Initial state of energy of storage device in MWh. + soe_max : float + Maximum energy level of storage device in MWh. + storage_p_nom : float + Nominal charging power of storage device in MW. + freq : float + Frequency of provided time series. Set to one, in case of hourly time series or + 0.5 in case of half-hourly time series. + efficiency_charge : float + Efficiency of storage system in case of charging. + efficiency_discharge : float + Efficiency of storage system in case of discharging. Returns --------- :pandas:`pandas.DataFrame` - Dataframe with storage operation timeseries + Dataframe provided through parameter `df` extended by columns "storage_power", + holding the charging (negative values) and discharging (positive values) power + of the storage unit in MW, and "storage_soe" holding the storage unit's state of + energy in MWh. """ - # Battery model handles generation positive, demand negative lst_storage_power = [] - lst_storage_charge = [] - storage_charge = init_storage_charge + lst_storage_soe = [] + storage_soe = soe_init for i, d in df.iterrows(): # If the house would feed electricity into the grid, charge the storage first. - # No electricity exchange with grid as long as charger power is not exceeded - if (d.house_demand > 0) & (storage_charge < storage_max): + # No electricity exchange with grid as long as charger power is not exceeded. + if (d.feedin_minus_demand > 0) & (storage_soe < soe_max): # Check if energy produced exceeds charger power - if d.house_demand < charger_power: - storage_charge = storage_charge + ( - d.house_demand * efficiency_charge * time_base - ) - storage_power = -d.house_demand + if d.feedin_minus_demand < storage_p_nom: + storage_power = -d.feedin_minus_demand # If it does, feed the rest to the grid else: - storage_charge = storage_charge + ( - charger_power * efficiency_charge * time_base - ) - storage_power = -charger_power - - # If the storage would be overcharged, feed the 'rest' to the grid - if storage_charge > storage_max: - storage_power = storage_power + (storage_charge - storage_max) / ( - efficiency_charge * time_base + storage_power = -storage_p_nom + storage_soe = storage_soe + ( + -storage_power * efficiency_charge * freq + ) + # If the storage is overcharged, feed the 'rest' to the grid + if storage_soe > soe_max: + storage_power = storage_power + (storage_soe - soe_max) / ( + efficiency_charge * freq ) - storage_charge = storage_max + storage_soe = soe_max # If the house needs electricity from the grid, discharge the storage first. - # In this case d.house_demand is negative! - # No electricity exchange with grid as long as demand does not exceed charger + # In this case d.feedin_minus_demand is negative! + # No electricity exchange with grid as long as demand does not exceed charging # power - elif (d.house_demand < 0) & (storage_charge > 0): + elif (d.feedin_minus_demand < 0) & (storage_soe > 0): # Check if energy demand exceeds charger power - if d.house_demand / efficiency_discharge < (charger_power * -1): - storage_charge = storage_charge - (charger_power * time_base) - storage_power = charger_power * efficiency_discharge - + if d.feedin_minus_demand / efficiency_discharge < (storage_p_nom * -1): + storage_soe = storage_soe - (storage_p_nom * freq) + storage_power = storage_p_nom * efficiency_discharge else: - storage_charge = storage_charge + ( - d.house_demand / efficiency_discharge * time_base + storage_charge = storage_soe + ( + d.feedin_minus_demand / efficiency_discharge * freq ) - storage_power = -d.house_demand - - # If the storage would be undercharged, take the 'rest' from the grid - if storage_charge < 0: + storage_power = -d.feedin_minus_demand + # If the storage is undercharged, take the 'rest' from the grid + if storage_soe < 0: # since storage_charge is negative in this case it can be taken as # demand storage_power = ( - storage_power + storage_charge * efficiency_discharge / time_base + storage_power + storage_soe * efficiency_discharge / freq ) storage_charge = 0 # If the storage is full or empty, the demand is not affected - # elif(storage_charge == 0) | (storage_charge == storage_max): else: storage_power = 0 lst_storage_power.append(storage_power) - lst_storage_charge.append(storage_charge) + lst_storage_soe.append(storage_soe) + df["storage_power"] = lst_storage_power - df["storage_charge"] = lst_storage_charge + df["storage_soe"] = lst_storage_soe return df.round(6) -def create_storage_data(edisgo_obj): +def create_storage_data(edisgo_obj, soe_init=0.0, freq=1): + """ + Matches storage units to PV plants and building electricity demand using the + building ID and applies reference storage operation. + The storage units active power time series are written to timeseries.loads_active_power. + Reactive power is as well set with default values. + State of energy time series is returned. + + In case there is no electricity load, the storage operation is set to zero. + + Parameters + ---------- + edisgo_obj : :class:`~.EDisGo` + EDisGo object to obtain storage units and PV feed-in and electricity demand + in same building from. + soe_init : float + Initial state of energy of storage device in MWh. Default: 0 MWh. + freq : float + Frequency of provided time series. Set to one, in case of hourly time series or + 0.5 in case of half-hourly time series. Default: 1. + + Returns + -------- + :pandas:`pandas.DataFrame` + Dataframe with time index and state of energy in MWh of each storage in columns. + Column names correspond to storage name as in topology.storage_units_df. + + """ + # ToDo add automatic determination of freq + # ToDo allow setting efficiency through storage_units_df + # ToDo allow specifying storage units for which to apply reference strategy storage_units = edisgo_obj.topology.storage_units_df soc_df = pd.DataFrame(index=edisgo_obj.timeseries.timeindex) # one storage per roof mounted solar generator - for row in storage_units.iterrows(): - building_id = row[1]["building_id"] + for idx, row in storage_units.iterrows(): + building_id = row["building_id"] pv_gen = edisgo_obj.topology.generators_df.loc[ edisgo_obj.topology.generators_df.building_id == building_id ].index[0] @@ -119,29 +152,66 @@ def create_storage_data(edisgo_obj): edisgo_obj.topology.loads_df.building_id == building_id ].index if len(loads) == 0: - pass - else: - house_demand = deepcopy( - edisgo_obj.timeseries.loads_active_power[loads].sum(axis=1) + logger.info( + f"Storage unit {idx} in building {building_id} has not load. " + f"Storage operation is therefore set to zero." ) - storage_ts = battery_storage_reference_operation( - pd.DataFrame(columns=["house_demand"], data=pv_feedin - house_demand), - 0, - row[1].p_nom, - row[1].p_nom, - 1, + edisgo_obj.set_time_series_manual( + storage_units_p=pd.DataFrame( + columns=[idx], + index=soc_df.index, + data=0, + ) ) - # Add storage ts to storage_units_active_power dataframe + else: + house_demand = edisgo_obj.timeseries.loads_active_power[loads].sum(axis=1) + storage_ts = reference_operation( + df=pd.DataFrame(columns=["feedin_minus_demand"], data=pv_feedin - house_demand), + soe_init=soe_init, + soe_max=row.p_nom * row.max_hours, + storage_p_nom=row.p_nom, + freq=freq, + ) + # import matplotlib + # from matplotlib import pyplot as plt + # matplotlib.use('TkAgg', force=True) + # storage_ts.plot() + # plt.show() + # Add storage time series to storage_units_active_power dataframe edisgo_obj.set_time_series_manual( storage_units_p=pd.DataFrame( - columns=[row[0]], + columns=[idx], index=storage_ts.index, data=storage_ts.storage_power.values, ) ) - - soc_df = pd.concat([soc_df, storage_ts.storage_charge], axis=1) + soc_df = pd.concat([soc_df, storage_ts.storage_soe], axis=1) soc_df.columns = edisgo_obj.topology.storage_units_df.index - edisgo_obj.overlying_grid.storage_units_soc = soc_df edisgo_obj.set_time_series_reactive_power_control() + return soc_df + + +if __name__ == "__main__": + import os + from edisgo.edisgo import import_edisgo_from_files + + mv_grid = 33128 + results_dir_base = "/home/birgit/virtualenvs/wp_flex/git_repos/394_wp_flex/results" + results_dir = os.path.join(results_dir_base, str(mv_grid)) + + zip_name = f"grid_data_wp_flex_No-flex.zip" + grid_path = os.path.join(results_dir, zip_name) + edisgo_grid = import_edisgo_from_files( + edisgo_path=grid_path, + import_topology=True, + import_timeseries=True, + import_results=False, + import_electromobility=False, + import_heat_pump=False, + import_dsm=False, + import_overlying_grid=False, + from_zip_archive=True, + ) + edisgo_grid.legacy_grids = False + create_storage_data(edisgo_obj=edisgo_grid) \ No newline at end of file From 444cb010d49f78d1e5ce23efbb8a286801bc08c5 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 30 Oct 2023 11:58:59 +0100 Subject: [PATCH 340/355] Restrict sci-kit to fix failing tests --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 72bbdfbe1..680d01cd5 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def read(fname): "pypsa >= 0.17.0, <= 0.20.1", "pyyaml", "saio", - "scikit-learn", + "scikit-learn <= 1.1.1", "shapely >= 1.7.0", "sqlalchemy < 1.4.0", "sshtunnel", From d2093ce4d5eb458b0aea5dfca9588a3b6c67b980 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 30 Oct 2023 15:11:12 +0100 Subject: [PATCH 341/355] Add build information to rtd yml --- .readthedocs.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.readthedocs.yml b/.readthedocs.yml index 86c001e07..7a2ef9c2e 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -21,3 +21,9 @@ python: version: "3.8" install: - requirements: rtd_requirements.txt + +# Set the version of Python +build: + os: ubuntu-20.04 + tools: + python: "3.10" \ No newline at end of file From a42c685de3b4fb558a8f77a119f4aae0af313ab2 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 30 Oct 2023 15:11:44 +0100 Subject: [PATCH 342/355] Bug fix beautiful soup not needed anymore as github returns json instead of html --- examples/electromobility_example.ipynb | 22 +++++++++++----------- rtd_requirements.txt | 1 - setup.py | 1 - 3 files changed, 11 insertions(+), 13 deletions(-) diff --git a/examples/electromobility_example.ipynb b/examples/electromobility_example.ipynb index c2170bf82..70738b6ab 100644 --- a/examples/electromobility_example.ipynb +++ b/examples/electromobility_example.ipynb @@ -43,7 +43,7 @@ "outputs": [], "source": [ "import os\n", - "\n", + "import json\n", "import geopandas as gpd\n", "import pandas as pd\n", "import requests\n", @@ -53,7 +53,6 @@ "\n", "from copy import deepcopy\n", "from pathlib import Path\n", - "from bs4 import BeautifulSoup\n", "\n", "from edisgo.edisgo import EDisGo\n", "from edisgo.tools.logger import setup_logger\n", @@ -415,11 +414,6 @@ "source": [ "# Download SimBEV data\n", "\n", - "def listFD(url, ext=\"\"):\n", - " page = requests.get(url).text\n", - " soup = BeautifulSoup(page, \"html.parser\")\n", - " return [node.get(\"href\").split(\"/\")[-1] for node in soup.find_all(\"a\") if node.get(\"href\").endswith(ext)]\n", - "\n", "def download_simbev_example_data():\n", "\n", " raw_url = (\"https://raw.githubusercontent.com/openego/eDisGo/dev/\" +\n", @@ -435,7 +429,9 @@ " # download files\n", " url = (f\"https://github.com/openego/eDisGo/tree/dev/\" +\n", " f\"tests/data/simbev_example_scenario/{ags}/\")\n", - " filenames = [f for f in listFD(url, \"csv\")]\n", + " page = requests.get(url).text\n", + " items = json.loads(page)[\"payload\"][\"tree\"][\"items\"]\n", + " filenames = [f[\"name\"] for f in items if \"csv\" in f[\"name\"]]\n", "\n", " for file in filenames:\n", " req = requests.get(f\"{raw_url}/{ags}/{file}\")\n", @@ -473,7 +469,9 @@ " # download files\n", " url = (\"https://github.com/openego/eDisGo/tree/dev/\" +\n", " \"tests/data/tracbev_example_scenario/\")\n", - " filenames = [f for f in listFD(url, \"gpkg\")]\n", + " page = requests.get(url).text\n", + " items = json.loads(page)[\"payload\"][\"tree\"][\"items\"]\n", + " filenames = [f[\"name\"] for f in items if \"gpkg\" in f[\"name\"]]\n", "\n", " for file in filenames:\n", " req = requests.get(\n", @@ -493,7 +491,9 @@ "cell_type": "code", "execution_count": null, "id": "1d65e6d6", - "metadata": {}, + "metadata": { + "scrolled": true + }, "outputs": [], "source": [ "edisgo.import_electromobility(\n", @@ -776,7 +776,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.5" + "version": "3.8.18" }, "toc": { "base_numbering": 1, diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 966400840..560dc8213 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -1,4 +1,3 @@ -beautifulsoup4 dash < 2.9.0 demandlib docutils == 0.16.0 diff --git a/setup.py b/setup.py index 680d01cd5..967ce07dd 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,6 @@ def read(fname): requirements = [ - "beautifulsoup4", "contextily", "dash < 2.9.0", "demandlib", From 8774ce529843cf11f071337e594109e25c452f57 Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 30 Oct 2023 15:15:03 +0100 Subject: [PATCH 343/355] Fix rtd configs --- .readthedocs.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index 7a2ef9c2e..f6d04600f 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -18,12 +18,11 @@ formats: all # Optionally set the version of Python and requirements required to build your docs python: - version: "3.8" install: - requirements: rtd_requirements.txt # Set the version of Python build: - os: ubuntu-20.04 + os: ubuntu-22.04 tools: - python: "3.10" \ No newline at end of file + python: "3.8" \ No newline at end of file From 8f7536852b1f641ec2b5e2711309888000d909dc Mon Sep 17 00:00:00 2001 From: birgits Date: Mon, 30 Oct 2023 15:34:17 +0100 Subject: [PATCH 344/355] Bug fix autoapi fails for versions lower 3.0.0 --- rtd_requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 560dc8213..7592090d5 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -19,7 +19,7 @@ scikit-learn sphinx >= 4.3.0, < 5.1.0 sphinx_rtd_theme >=0.5.2 sphinx-autodoc-typehints -sphinx-autoapi +sphinx-autoapi >= 3.0.0 sshtunnel urllib3 < 2.0.0 workalendar diff --git a/setup.py b/setup.py index 967ce07dd..9c97a90f8 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ def read(fname): "sphinx >= 4.3.0, < 5.1.0", "sphinx_rtd_theme >=0.5.2", "sphinx-autodoc-typehints", - "sphinx-autoapi", + "sphinx-autoapi >= 3.0.0", ] extras = {"dev": dev_requirements} From 8f81acab1d3381b9177b60235c95b4a8154afdc4 Mon Sep 17 00:00:00 2001 From: birgits Date: Tue, 31 Oct 2023 17:02:48 +0100 Subject: [PATCH 345/355] Bug fix use float and forgotten parameter names changes --- edisgo/flex_opt/battery_storage_operation.py | 53 ++++++-------------- 1 file changed, 14 insertions(+), 39 deletions(-) diff --git a/edisgo/flex_opt/battery_storage_operation.py b/edisgo/flex_opt/battery_storage_operation.py index 3cbcfc9a6..4f6498fdc 100644 --- a/edisgo/flex_opt/battery_storage_operation.py +++ b/edisgo/flex_opt/battery_storage_operation.py @@ -1,4 +1,3 @@ -from copy import deepcopy import logging import pandas as pd @@ -56,16 +55,14 @@ def reference_operation( for i, d in df.iterrows(): # If the house would feed electricity into the grid, charge the storage first. # No electricity exchange with grid as long as charger power is not exceeded. - if (d.feedin_minus_demand > 0) & (storage_soe < soe_max): + if (d.feedin_minus_demand > 0.0) & (storage_soe < soe_max): # Check if energy produced exceeds charger power if d.feedin_minus_demand < storage_p_nom: storage_power = -d.feedin_minus_demand # If it does, feed the rest to the grid else: storage_power = -storage_p_nom - storage_soe = storage_soe + ( - -storage_power * efficiency_charge * freq - ) + storage_soe = storage_soe + (-storage_power * efficiency_charge * freq) # If the storage is overcharged, feed the 'rest' to the grid if storage_soe > soe_max: storage_power = storage_power + (storage_soe - soe_max) / ( @@ -77,28 +74,28 @@ def reference_operation( # In this case d.feedin_minus_demand is negative! # No electricity exchange with grid as long as demand does not exceed charging # power - elif (d.feedin_minus_demand < 0) & (storage_soe > 0): + elif (d.feedin_minus_demand < 0.0) & (storage_soe > 0.0): # Check if energy demand exceeds charger power if d.feedin_minus_demand / efficiency_discharge < (storage_p_nom * -1): storage_soe = storage_soe - (storage_p_nom * freq) storage_power = storage_p_nom * efficiency_discharge else: - storage_charge = storage_soe + ( + storage_soe = storage_soe + ( d.feedin_minus_demand / efficiency_discharge * freq ) storage_power = -d.feedin_minus_demand # If the storage is undercharged, take the 'rest' from the grid - if storage_soe < 0: - # since storage_charge is negative in this case it can be taken as + if storage_soe < 0.0: + # since storage_soe is negative in this case it can be taken as # demand storage_power = ( storage_power + storage_soe * efficiency_discharge / freq ) - storage_charge = 0 + storage_soe = 0.0 # If the storage is full or empty, the demand is not affected else: - storage_power = 0 + storage_power = 0.0 lst_storage_power.append(storage_power) lst_storage_soe.append(storage_soe) @@ -112,7 +109,8 @@ def create_storage_data(edisgo_obj, soe_init=0.0, freq=1): """ Matches storage units to PV plants and building electricity demand using the building ID and applies reference storage operation. - The storage units active power time series are written to timeseries.loads_active_power. + The storage units active power time series are written to + timeseries.loads_active_power. Reactive power is as well set with default values. State of energy time series is returned. @@ -160,13 +158,15 @@ def create_storage_data(edisgo_obj, soe_init=0.0, freq=1): storage_units_p=pd.DataFrame( columns=[idx], index=soc_df.index, - data=0, + data=0.0, ) ) else: house_demand = edisgo_obj.timeseries.loads_active_power[loads].sum(axis=1) storage_ts = reference_operation( - df=pd.DataFrame(columns=["feedin_minus_demand"], data=pv_feedin - house_demand), + df=pd.DataFrame( + columns=["feedin_minus_demand"], data=pv_feedin - house_demand + ), soe_init=soe_init, soe_max=row.p_nom * row.max_hours, storage_p_nom=row.p_nom, @@ -190,28 +190,3 @@ def create_storage_data(edisgo_obj, soe_init=0.0, freq=1): soc_df.columns = edisgo_obj.topology.storage_units_df.index edisgo_obj.set_time_series_reactive_power_control() return soc_df - - -if __name__ == "__main__": - import os - from edisgo.edisgo import import_edisgo_from_files - - mv_grid = 33128 - results_dir_base = "/home/birgit/virtualenvs/wp_flex/git_repos/394_wp_flex/results" - results_dir = os.path.join(results_dir_base, str(mv_grid)) - - zip_name = f"grid_data_wp_flex_No-flex.zip" - grid_path = os.path.join(results_dir, zip_name) - edisgo_grid = import_edisgo_from_files( - edisgo_path=grid_path, - import_topology=True, - import_timeseries=True, - import_results=False, - import_electromobility=False, - import_heat_pump=False, - import_dsm=False, - import_overlying_grid=False, - from_zip_archive=True, - ) - edisgo_grid.legacy_grids = False - create_storage_data(edisgo_obj=edisgo_grid) \ No newline at end of file From 24338273f9dd4bd1f5fb63ed58120a0d740944a3 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 7 Dec 2023 17:26:58 -0800 Subject: [PATCH 346/355] Bug fix nan values as string cannot be detected by isna() --- edisgo/tools/tools.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/edisgo/tools/tools.py b/edisgo/tools/tools.py index fccbf0192..10035b16f 100644 --- a/edisgo/tools/tools.py +++ b/edisgo/tools/tools.py @@ -319,6 +319,11 @@ def _assign_to_lines(lines): lambda _: edisgo_obj.topology.buses_df.at[_.bus1, mode], axis=1 ) + # assign np.nan values to new columns, so that missing values can be found through + # isna() + edisgo_obj.topology.lines_df[mode] = np.nan + edisgo_obj.topology.buses_df[mode] = np.nan + if mode == "mv_feeder": graph = edisgo_obj.topology.mv_grid.graph station = edisgo_obj.topology.mv_grid.station.index[0] From a860ee17d92e1c8776adea8be16178755599aeca Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 7 Dec 2023 17:27:19 -0800 Subject: [PATCH 347/355] Version conflicts - try without version limits --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9c97a90f8..e28c14695 100644 --- a/setup.py +++ b/setup.py @@ -71,10 +71,10 @@ def read(fname): "pytest", "pytest-notebook", "pyupgrade", - "sphinx >= 4.3.0, < 5.1.0", + "sphinx", "sphinx_rtd_theme >=0.5.2", "sphinx-autodoc-typehints", - "sphinx-autoapi >= 3.0.0", + "sphinx-autoapi", ] extras = {"dev": dev_requirements} From 75bafd7a0265f72ca4f443afbd1334dec099d383 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 7 Dec 2023 17:29:24 -0800 Subject: [PATCH 348/355] Version conflicts - try removing limits --- rtd_requirements.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 7592090d5..624931811 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -16,10 +16,10 @@ pypsa >=0.17.0, <=0.20.1 pyyaml saio scikit-learn -sphinx >= 4.3.0, < 5.1.0 +sphinx sphinx_rtd_theme >=0.5.2 sphinx-autodoc-typehints -sphinx-autoapi >= 3.0.0 +sphinx-autoapi sshtunnel urllib3 < 2.0.0 workalendar From 82f4b2816e7c7f4471ac29a495f46ed9f4be4742 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 7 Dec 2023 17:36:35 -0800 Subject: [PATCH 349/355] Tru sphinx with python 3.9 --- .readthedocs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.readthedocs.yml b/.readthedocs.yml index f6d04600f..2702d5ab2 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -25,4 +25,4 @@ python: build: os: ubuntu-22.04 tools: - python: "3.8" \ No newline at end of file + python: "3.9" \ No newline at end of file From 2b202507aae8aba3f5414b33617401754174e52a Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 7 Dec 2023 18:03:00 -0800 Subject: [PATCH 350/355] Try sphinx autoapi 3.0.0 --- rtd_requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 624931811..9022feb72 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -19,7 +19,7 @@ scikit-learn sphinx sphinx_rtd_theme >=0.5.2 sphinx-autodoc-typehints -sphinx-autoapi +sphinx-autoapi == 3.0.0 sshtunnel urllib3 < 2.0.0 workalendar diff --git a/setup.py b/setup.py index e28c14695..fd29db750 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ def read(fname): "sphinx", "sphinx_rtd_theme >=0.5.2", "sphinx-autodoc-typehints", - "sphinx-autoapi", + "sphinx-autoapi == 3.0.0", ] extras = {"dev": dev_requirements} From f31f15da779215db316bd4e930feeb603cb42aa2 Mon Sep 17 00:00:00 2001 From: birgits Date: Thu, 7 Dec 2023 18:06:35 -0800 Subject: [PATCH 351/355] Try taking out docutils --- rtd_requirements.txt | 3 +-- setup.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/rtd_requirements.txt b/rtd_requirements.txt index 9022feb72..dd3c393d5 100644 --- a/rtd_requirements.txt +++ b/rtd_requirements.txt @@ -1,6 +1,5 @@ dash < 2.9.0 demandlib -docutils == 0.16.0 egoio >= 0.4.7 geopy >= 2.0.0 jupyter_dash @@ -19,7 +18,7 @@ scikit-learn sphinx sphinx_rtd_theme >=0.5.2 sphinx-autodoc-typehints -sphinx-autoapi == 3.0.0 +sphinx-autoapi sshtunnel urllib3 < 2.0.0 workalendar diff --git a/setup.py b/setup.py index fd29db750..e28c14695 100644 --- a/setup.py +++ b/setup.py @@ -74,7 +74,7 @@ def read(fname): "sphinx", "sphinx_rtd_theme >=0.5.2", "sphinx-autodoc-typehints", - "sphinx-autoapi == 3.0.0", + "sphinx-autoapi", ] extras = {"dev": dev_requirements} From fac800008bafa888e99b0ed6e65298f6a483bab1 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 15 Dec 2023 17:02:30 -0800 Subject: [PATCH 352/355] Clean up functions --- edisgo/flex_opt/battery_storage_operation.py | 175 +++++++++++++------ 1 file changed, 117 insertions(+), 58 deletions(-) diff --git a/edisgo/flex_opt/battery_storage_operation.py b/edisgo/flex_opt/battery_storage_operation.py index 4f6498fdc..c9399430e 100644 --- a/edisgo/flex_opt/battery_storage_operation.py +++ b/edisgo/flex_opt/battery_storage_operation.py @@ -1,24 +1,25 @@ import logging +import math import pandas as pd logger = logging.getLogger(__name__) -def reference_operation( +def _reference_operation( df, soe_init, soe_max, storage_p_nom, freq, - efficiency_charge=0.9, - efficiency_discharge=0.9, + efficiency_store, + efficiency_dispatch, ): """ - Reference operation of storage system where it directly charges when PV feed-in is - higher than electricity demand of the building. + Reference operation of storage system where it is directly charged when PV feed-in + is higher than electricity demand of the building. - Battery model handles generation positive, demand negative + Battery model handles generation positive, demand negative. Parameters ----------- @@ -34,9 +35,9 @@ def reference_operation( freq : float Frequency of provided time series. Set to one, in case of hourly time series or 0.5 in case of half-hourly time series. - efficiency_charge : float + efficiency_store : float Efficiency of storage system in case of charging. - efficiency_discharge : float + efficiency_dispatch : float Efficiency of storage system in case of discharging. Returns @@ -53,7 +54,7 @@ def reference_operation( storage_soe = soe_init for i, d in df.iterrows(): - # If the house would feed electricity into the grid, charge the storage first. + # If the house were to feed electricity into the grid, charge the storage first. # No electricity exchange with grid as long as charger power is not exceeded. if (d.feedin_minus_demand > 0.0) & (storage_soe < soe_max): # Check if energy produced exceeds charger power @@ -62,11 +63,11 @@ def reference_operation( # If it does, feed the rest to the grid else: storage_power = -storage_p_nom - storage_soe = storage_soe + (-storage_power * efficiency_charge * freq) + storage_soe = storage_soe + (-storage_power * efficiency_store * freq) # If the storage is overcharged, feed the 'rest' to the grid if storage_soe > soe_max: storage_power = storage_power + (storage_soe - soe_max) / ( - efficiency_charge * freq + efficiency_store * freq ) storage_soe = soe_max @@ -76,12 +77,12 @@ def reference_operation( # power elif (d.feedin_minus_demand < 0.0) & (storage_soe > 0.0): # Check if energy demand exceeds charger power - if d.feedin_minus_demand / efficiency_discharge < (storage_p_nom * -1): + if d.feedin_minus_demand / efficiency_dispatch < (storage_p_nom * -1): storage_soe = storage_soe - (storage_p_nom * freq) - storage_power = storage_p_nom * efficiency_discharge + storage_power = storage_p_nom * efficiency_dispatch else: storage_soe = storage_soe + ( - d.feedin_minus_demand / efficiency_discharge * freq + d.feedin_minus_demand / efficiency_dispatch * freq ) storage_power = -d.feedin_minus_demand # If the storage is undercharged, take the 'rest' from the grid @@ -89,7 +90,7 @@ def reference_operation( # since storage_soe is negative in this case it can be taken as # demand storage_power = ( - storage_power + storage_soe * efficiency_discharge / freq + storage_power + storage_soe * efficiency_dispatch / freq ) storage_soe = 0.0 @@ -105,22 +106,40 @@ def reference_operation( return df.round(6) -def create_storage_data(edisgo_obj, soe_init=0.0, freq=1): +def apply_reference_operation(edisgo_obj, storage_units_names=None, soe_init=0.0, freq=1): """ - Matches storage units to PV plants and building electricity demand using the - building ID and applies reference storage operation. - The storage units active power time series are written to - timeseries.loads_active_power. - Reactive power is as well set with default values. - State of energy time series is returned. - - In case there is no electricity load, the storage operation is set to zero. + Applies reference storage operation to specified home storage units. + + In the reference storage operation, the home storage system is directly charged when + PV feed-in is higher than electricity demand of the building until the storage + is fully charged. The storage is directly discharged, in case electricity demand + of the building is higher than the PV feed-in, until it is fully discharged. + The battery model handles generation positive and demand negative. + + To determine the PV feed-in and electricity demand of the building that the home + storage is located in (including demand from heat pumps + and electric vehicles), this function matches the storage units to PV plants and + building electricity demand using the building ID. + In case there is no electricity load or no PV system, the storage operation is set + to zero. + + The resulting storage units' active power time series are written to + :attr:`~.network.timeseries.TimeSeries.loads_active_power`. + Further, reactive power time series are set up using function + :attr:`~.edisgo.EDisGo.set_time_series_reactive_power_control` with default values. + The state of energy time series that are calculated within this function are not + written anywhere, but are returned by this function. Parameters ---------- edisgo_obj : :class:`~.EDisGo` EDisGo object to obtain storage units and PV feed-in and electricity demand in same building from. + storage_units_names : list(str) or None + Names of storage units as in + :attr:`~.network.topology.Topology.storage_units_df` to set time for. If None, + time series are set for all storage units in + :attr:`~.network.topology.Topology.storage_units_df`. soe_init : float Initial state of energy of storage device in MWh. Default: 0 MWh. freq : float @@ -131,62 +150,102 @@ def create_storage_data(edisgo_obj, soe_init=0.0, freq=1): -------- :pandas:`pandas.DataFrame` Dataframe with time index and state of energy in MWh of each storage in columns. - Column names correspond to storage name as in topology.storage_units_df. + Column names correspond to storage name as in + :attr:`~.network.topology.Topology.storage_units_df`. + + Notes + ------ + This function requires that the storage parameters `building_id`, + `efficiency_store`, `efficiency_dispatch` and `max_hours` are set in + :attr:`~.network.topology.Topology.storage_units_df` for all storage units + specified in parameter `storage_units_names`. """ - # ToDo add automatic determination of freq - # ToDo allow setting efficiency through storage_units_df - # ToDo allow specifying storage units for which to apply reference strategy - storage_units = edisgo_obj.topology.storage_units_df - soc_df = pd.DataFrame(index=edisgo_obj.timeseries.timeindex) - # one storage per roof mounted solar generator - for idx, row in storage_units.iterrows(): - building_id = row["building_id"] - pv_gen = edisgo_obj.topology.generators_df.loc[ + if storage_units_names is None: + storage_units_names = edisgo_obj.topology.storage_units_df.index + + storage_units = edisgo_obj.topology.storage_units_df.loc[storage_units_names] + soe_df = pd.DataFrame(index=edisgo_obj.timeseries.timeindex) + + for stor_name, stor_data in storage_units.iterrows(): + # get corresponding PV systems and electric loads + building_id = stor_data["building_id"] + pv_gens = edisgo_obj.topology.generators_df.loc[ edisgo_obj.topology.generators_df.building_id == building_id - ].index[0] - pv_feedin = edisgo_obj.timeseries.generators_active_power[pv_gen] + ].index loads = edisgo_obj.topology.loads_df.loc[ edisgo_obj.topology.loads_df.building_id == building_id ].index - if len(loads) == 0: - logger.info( - f"Storage unit {idx} in building {building_id} has not load. " - f"Storage operation is therefore set to zero." - ) + if len(loads) == 0 or len(pv_gens) == 0: + if len(loads) == 0: + logger.warning( + f"Storage unit {stor_name} in building {building_id} has no load. " + f"Storage operation is therefore set to zero." + ) + if len(pv_gens) == 0: + logger.warning( + f"Storage unit {stor_name} in building {building_id} has no PV " + f"system. Storage operation is therefore set to zero." + ) edisgo_obj.set_time_series_manual( storage_units_p=pd.DataFrame( - columns=[idx], - index=soc_df.index, + columns=[stor_name], + index=soe_df.index, data=0.0, ) ) else: + # check storage values + if math.isnan(stor_data.max_hours) is True: + raise ValueError( + f"Parameter max_hours for storage unit {stor_name} is not a " + f"number. It needs to be set in Topology.storage_units_df." + ) + if math.isnan(stor_data.efficiency_store) is True: + raise ValueError( + f"Parameter efficiency_store for storage unit {stor_name} is not a " + f"number. It needs to be set in Topology.storage_units_df." + ) + if math.isnan(stor_data.efficiency_dispatch) is True: + raise ValueError( + f"Parameter efficiency_dispatch for storage unit {stor_name} is " + f"not a number. It needs to be set in Topology.storage_units_df." + ) + pv_feedin = edisgo_obj.timeseries.generators_active_power[pv_gens].sum(axis=1) house_demand = edisgo_obj.timeseries.loads_active_power[loads].sum(axis=1) - storage_ts = reference_operation( + # apply operation strategy + storage_ts = _reference_operation( df=pd.DataFrame( columns=["feedin_minus_demand"], data=pv_feedin - house_demand ), soe_init=soe_init, - soe_max=row.p_nom * row.max_hours, - storage_p_nom=row.p_nom, + soe_max=stor_data.p_nom * stor_data.max_hours, + storage_p_nom=stor_data.p_nom, freq=freq, + efficiency_store=stor_data.efficiency_store, + efficiency_dispatch=stor_data.efficiency_dispatch, ) - # import matplotlib - # from matplotlib import pyplot as plt - # matplotlib.use('TkAgg', force=True) - # storage_ts.plot() - # plt.show() - # Add storage time series to storage_units_active_power dataframe + # add storage time series to storage_units_active_power dataframe edisgo_obj.set_time_series_manual( storage_units_p=pd.DataFrame( - columns=[idx], + columns=[stor_name], index=storage_ts.index, data=storage_ts.storage_power.values, ) ) - soc_df = pd.concat([soc_df, storage_ts.storage_soe], axis=1) - - soc_df.columns = edisgo_obj.topology.storage_units_df.index - edisgo_obj.set_time_series_reactive_power_control() - return soc_df + soe_df = pd.concat([soe_df, storage_ts.storage_soe.to_frame(stor_name)], axis=1) + + edisgo_obj.set_time_series_reactive_power_control( + generators_parametrisation=None, + loads_parametrisation=None, + storage_units_parametrisation=pd.DataFrame( + { + "components": [storage_units_names], + "mode": ["default"], + "power_factor": ["default"], + }, + index=[1], + ), + ) + + return soe_df From 661ac4be6a254e83b8cec7fbbbf542d1e3f3a876 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 15 Dec 2023 17:02:41 -0800 Subject: [PATCH 353/355] Add storage parameters --- edisgo/network/topology.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index d8db32e99..1805cf60c 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -51,7 +51,7 @@ "subtype", "source_id", ], - "storage_units_df": ["bus", "control", "p_nom", "max_hours"], + "storage_units_df": ["bus", "control", "p_nom", "max_hours", "efficiency_store", "efficiency_dispatch"], "transformers_df": ["bus0", "bus1", "x_pu", "r_pu", "s_nom", "type_info"], "lines_df": [ "bus0", @@ -368,6 +368,14 @@ def storage_units_df(self): Maximum state of charge capacity in terms of hours at full output capacity p_nom. + efficiency_store : float + Efficiency of storage system in case of charging. So far only used in + :func:`~.edisgo.flex_opt.battery_storage_operation.apply_reference_operation.` + + efficiency_dispatch : float + Efficiency of storage system in case of discharging. So far only used in + :func:`~.edisgo.flex_opt.battery_storage_operation.apply_reference_operation.` + Returns -------- :pandas:`pandas.DataFrame` From 4198082bd45a746a2964ca98156c05cfce4f7d32 Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 15 Dec 2023 17:03:52 -0800 Subject: [PATCH 354/355] Add tests --- .../test_battery_storage_operation.py | 218 ++++++++++++++++++ 1 file changed, 218 insertions(+) create mode 100644 tests/flex_opt/test_battery_storage_operation.py diff --git a/tests/flex_opt/test_battery_storage_operation.py b/tests/flex_opt/test_battery_storage_operation.py new file mode 100644 index 000000000..2268d7bc6 --- /dev/null +++ b/tests/flex_opt/test_battery_storage_operation.py @@ -0,0 +1,218 @@ +import numpy as np +import pandas as pd +import pytest + +from edisgo import EDisGo +from edisgo.flex_opt.battery_storage_operation import apply_reference_operation + + +class TestStorageOperation: + @classmethod + def setup_class(self): + self.timeindex = pd.date_range("1/1/2011 12:00", periods=5, freq="H") + self.edisgo = EDisGo( + ding0_grid=pytest.ding0_test_network_path, timeindex=self.timeindex + ) + self.edisgo.topology.storage_units_df = pd.DataFrame( + data={ + "bus": [ + "Bus_BranchTee_LVGrid_2_4", + "Bus_BranchTee_LVGrid_2_4", + "Bus_BranchTee_LVGrid_2_4", + "Bus_BranchTee_LVGrid_2_4", + "Bus_BranchTee_LVGrid_2_4", + ], + "control": ["PQ", "PQ", "PQ", "PQ", "PQ"], + "p_nom": [0.2, 2.0, 0.4, 0.5, 0.6], + "max_hours": [6, 6, 1, 6, 6], + "efficiency_store": [0.9, 1.0, 0.9, 1.0, 0.8], + "efficiency_dispatch": [0.9, 1.0, 0.9, 1.0, 0.8], + "building_id": [1, 2, 3, 4, 5], + }, + index=["stor1", "stor2", "stor3", "stor4", "stor5"], + ) + # set building IDs + self.edisgo.topology.loads_df.at[ + "Load_residential_LVGrid_8_2", "building_id" + ] = 2 + self.edisgo.topology.loads_df.at[ + "Load_residential_LVGrid_8_3", "building_id" + ] = 2 + self.edisgo.topology.generators_df.at[ + "GeneratorFluctuating_25", "building_id" + ] = 2 + self.edisgo.topology.generators_df.at[ + "GeneratorFluctuating_26", "building_id" + ] = 2 + self.edisgo.topology.loads_df.at[ + "Load_residential_LVGrid_3_2", "building_id" + ] = 3.0 + self.edisgo.topology.generators_df.at[ + "GeneratorFluctuating_17", "building_id" + ] = 3.0 + self.edisgo.topology.loads_df.at[ + "Load_residential_LVGrid_1_6", "building_id" + ] = 4 + self.edisgo.topology.loads_df.at[ + "Load_residential_LVGrid_1_4", "building_id" + ] = 5.0 + self.edisgo.topology.generators_df.at[ + "GeneratorFluctuating_27", "building_id" + ] = 5.0 + # set time series + self.edisgo.timeseries.loads_active_power = pd.DataFrame( + data={ + "Load_residential_LVGrid_8_2": [0.5, 1.0, 1.5, 0.0, 0.5], + "Load_residential_LVGrid_8_3": [0.5, 1.0, 1.5, 0.0, 0.5], + "Load_residential_LVGrid_3_2": [0.5, 0.0, 1.0, 0.5, 0.5], + "Load_residential_LVGrid_1_4": [0.0, 1.0, 1.5, 0.0, 0.5], + }, + index=self.timeindex, + ) + self.edisgo.timeseries.generators_active_power = pd.DataFrame( + data={ + "GeneratorFluctuating_25": [1.5, 3.0, 4.5, 0.0, 0.0], + "GeneratorFluctuating_26": [0.5, 1.0, 1.5, 0.0, 0.5], + "GeneratorFluctuating_17": [0.0, 1.0, 1.5, 1.0, 0.0], + "GeneratorFluctuating_27": [0.5, 0.0, 0.5, 0.0, 0.0], + }, + index=self.timeindex, + ) + + def test_operating_strategy(self): + # test without load (stor1) + # test with several loads and several PV systems (stor2) + # test with one load and one PV system (stor3) + # test without PV system (stor4) + # test with one value not numeric (stor5) + + # test with providing storage name + apply_reference_operation(edisgo_obj=self.edisgo, storage_units_names=["stor1"]) + + check_ts = pd.DataFrame( + data={ + "stor1": [0.0, 0.0, 0.0, 0.0, 0.0], + }, + index=self.timeindex, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_active_power, + check_ts, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_reactive_power, + check_ts, + ) + + # test without providing storage names + soe_df = apply_reference_operation(edisgo_obj=self.edisgo) + + assert soe_df.shape == (5, 3) + assert self.edisgo.timeseries.storage_units_active_power.shape == (5, 5) + assert self.edisgo.timeseries.storage_units_reactive_power.shape == (5, 5) + + # check stor2 + s = "stor2" + check_ts = pd.DataFrame( + data={ + s: [-1.0, -2.0, -2.0, 0.0, 0.5], + }, + index=self.timeindex, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_active_power.loc[:, [s]], + check_ts, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_reactive_power.loc[:, [s]], + check_ts * -np.tan(np.arccos(0.95)), + ) + check_ts = pd.DataFrame( + data={ + s: [1.0, 3.0, 5.0, 5.0, 4.5], + }, + index=self.timeindex, + ) + pd.testing.assert_frame_equal( + soe_df.loc[:, [s]], + check_ts, + ) + + # check stor3 + s = "stor3" + check_ts = pd.DataFrame( + data={ + s: [0.0, -0.4, -0.044444, 0.0, 0.36], + }, + index=self.timeindex, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_active_power.loc[:, [s]], + check_ts, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_reactive_power.loc[:, [s]], + check_ts * -np.tan(np.arccos(0.95)), + ) + check_ts = pd.DataFrame( + data={ + s: [0.0, 0.36, 0.4, 0.4, 0.0], + }, + index=self.timeindex, + ) + pd.testing.assert_frame_equal( + soe_df.loc[:, [s]], + check_ts, + ) + + # check stor4 - all zeros + s = "stor4" + check_ts = pd.DataFrame( + data={ + s: [0.0, 0.0, 0.0, 0.0, 0.0], + }, + index=self.timeindex, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_active_power.loc[:, [s]], + check_ts, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_reactive_power.loc[:, [s]], + check_ts, + ) + # check stor5 + s = "stor5" + check_ts = pd.DataFrame( + data={ + s: [-0.5, 0.32, 0.0, 0.0, 0.0], + }, + index=self.timeindex, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_active_power.loc[:, [s]], + check_ts, + ) + pd.testing.assert_frame_equal( + self.edisgo.timeseries.storage_units_reactive_power.loc[:, [s]], + check_ts * -np.tan(np.arccos(0.95)), + ) + check_ts = pd.DataFrame( + data={ + s: [0.4, 0.0, 0.0, 0.0, 0.0], + }, + index=self.timeindex, + ) + pd.testing.assert_frame_equal( + soe_df.loc[:, [s]], + check_ts, + ) + + # test error raising + self.edisgo.topology.storage_units_df.at["stor5", "max_hours"] = np.nan + msg = ( + "Parameter max_hours for storage unit stor5 is not a number. It needs " + "to be set in Topology.storage_units_df." + ) + with pytest.raises(ValueError, match=msg): + apply_reference_operation(self.edisgo) From 18118019f91378658644983093bba989022ab5ad Mon Sep 17 00:00:00 2001 From: birgits Date: Fri, 15 Dec 2023 17:08:47 -0800 Subject: [PATCH 355/355] Pre-commit hooks --- edisgo/flex_opt/battery_storage_operation.py | 16 ++++++++++------ edisgo/network/topology.py | 18 ++++++++---------- 2 files changed, 18 insertions(+), 16 deletions(-) diff --git a/edisgo/flex_opt/battery_storage_operation.py b/edisgo/flex_opt/battery_storage_operation.py index c9399430e..64447a8fd 100644 --- a/edisgo/flex_opt/battery_storage_operation.py +++ b/edisgo/flex_opt/battery_storage_operation.py @@ -89,9 +89,7 @@ def _reference_operation( if storage_soe < 0.0: # since storage_soe is negative in this case it can be taken as # demand - storage_power = ( - storage_power + storage_soe * efficiency_dispatch / freq - ) + storage_power = storage_power + storage_soe * efficiency_dispatch / freq storage_soe = 0.0 # If the storage is full or empty, the demand is not affected @@ -106,7 +104,9 @@ def _reference_operation( return df.round(6) -def apply_reference_operation(edisgo_obj, storage_units_names=None, soe_init=0.0, freq=1): +def apply_reference_operation( + edisgo_obj, storage_units_names=None, soe_init=0.0, freq=1 +): """ Applies reference storage operation to specified home storage units. @@ -211,7 +211,9 @@ def apply_reference_operation(edisgo_obj, storage_units_names=None, soe_init=0.0 f"Parameter efficiency_dispatch for storage unit {stor_name} is " f"not a number. It needs to be set in Topology.storage_units_df." ) - pv_feedin = edisgo_obj.timeseries.generators_active_power[pv_gens].sum(axis=1) + pv_feedin = edisgo_obj.timeseries.generators_active_power[pv_gens].sum( + axis=1 + ) house_demand = edisgo_obj.timeseries.loads_active_power[loads].sum(axis=1) # apply operation strategy storage_ts = _reference_operation( @@ -233,7 +235,9 @@ def apply_reference_operation(edisgo_obj, storage_units_names=None, soe_init=0.0 data=storage_ts.storage_power.values, ) ) - soe_df = pd.concat([soe_df, storage_ts.storage_soe.to_frame(stor_name)], axis=1) + soe_df = pd.concat( + [soe_df, storage_ts.storage_soe.to_frame(stor_name)], axis=1 + ) edisgo_obj.set_time_series_reactive_power_control( generators_parametrisation=None, diff --git a/edisgo/network/topology.py b/edisgo/network/topology.py index 1805cf60c..bf1e70a5a 100755 --- a/edisgo/network/topology.py +++ b/edisgo/network/topology.py @@ -51,7 +51,14 @@ "subtype", "source_id", ], - "storage_units_df": ["bus", "control", "p_nom", "max_hours", "efficiency_store", "efficiency_dispatch"], + "storage_units_df": [ + "bus", + "control", + "p_nom", + "max_hours", + "efficiency_store", + "efficiency_dispatch", + ], "transformers_df": ["bus0", "bus1", "x_pu", "r_pu", "s_nom", "type_info"], "lines_df": [ "bus0", @@ -88,7 +95,6 @@ class Topology: """ def __init__(self, **kwargs): - # load technical data of equipment self._equipment_data = self._load_equipment_data(kwargs.get("config", None)) @@ -1901,7 +1907,6 @@ def connect_to_mv(self, edisgo_object, comp_data, comp_type="generator"): # ===== voltage level 4: component is connected to MV station ===== if voltage_level == 4: - # add line line_length = geo.calc_geo_dist_vincenty( grid_topology=self, @@ -1931,7 +1936,6 @@ def connect_to_mv(self, edisgo_object, comp_data, comp_type="generator"): ) elif voltage_level == 5: - # get branches within the predefined `connection_buffer_radius` lines = geo.calc_geo_lines_in_buffer( grid_topology=self, @@ -2131,13 +2135,11 @@ def _choose_random_substation_id(): logger.error(f"Component type {comp_type} is not a valid option.") if mvlv_subst_id is not None and not np.isnan(mvlv_subst_id): - # if substation ID (= LV grid ID) is given and it matches an # existing LV grid ID (i.e. it is no aggregated LV grid), set grid # to connect component to specified grid (in case the component # has no geometry it is connected to the grid's station) if int(mvlv_subst_id) in self._lv_grid_ids: - # get LV grid lv_grid = self.get_lv_grid(int(mvlv_subst_id)) @@ -2190,7 +2192,6 @@ def _choose_random_substation_id(): # v_level 7 -> connect in LV grid elif voltage_level == 7: - # get valid buses to connect new component to lv_loads = lv_grid.loads_df if comp_type == "generator" or comp_type == "storage_unit": @@ -2278,7 +2279,6 @@ def _choose_random_substation_id(): lv_conn_target = None while len(lv_buses_rnd) > 0 and lv_conn_target is None: - lv_bus = lv_buses_rnd.pop() # determine number of components of the same type at LV bus @@ -2487,7 +2487,6 @@ def _connect_mv_bus_to_target_object( # MV line is nearest connection point => split old line into 2 segments # (delete old line and create 2 new ones) if isinstance(target_obj["shp"], LineString): - line_data = self.lines_df.loc[target_obj["repr"], :] # if line that is split is connected to switch, the line name needs @@ -2616,7 +2615,6 @@ def _connect_mv_bus_to_target_object( # bus ist nearest connection point else: - # add new branch for satellite (station to station) line_length = geo.calc_geo_dist_vincenty( grid_topology=self,