Kalwang locations import
This commit is contained in:
291
scripts/addressdb/kalwang/01-addressdb_update_buildings.php
Executable file
291
scripts/addressdb/kalwang/01-addressdb_update_buildings.php
Executable file
@@ -0,0 +1,291 @@
|
|||||||
|
#!/usr/bin/php
|
||||||
|
<?php
|
||||||
|
|
||||||
|
//require 'vendor/autoload.php';
|
||||||
|
require("../../../config/config.php");
|
||||||
|
|
||||||
|
define('FRONKDB_SQLDEBUG',false);
|
||||||
|
error_reporting(E_ALL & ~(E_NOTICE | E_STRICT | E_DEPRECATED));
|
||||||
|
|
||||||
|
require_once(LIBDIR."/mvcfronk/mfRouter/mfRouter.php");
|
||||||
|
require_once(LIBDIR."/mvcfronk/mfBase/mfBaseModel.php");
|
||||||
|
require_once(LIBDIR."/mvcfronk/mfBase/mfBaseController.php");
|
||||||
|
|
||||||
|
$me = new User(1);
|
||||||
|
|
||||||
|
$filename = __DIR__."/import/SDIBuilding__Locations__FTTx__ Kalwang.csv";
|
||||||
|
|
||||||
|
$db = FronkDB::singleton(ADDRESSDB_DBHOST, ADDRESSDB_DBUSER, ADDRESSDB_DBPASS, ADDRESSDB_DBNAME);
|
||||||
|
$log = mfLoghandler::singleton();
|
||||||
|
|
||||||
|
$input = fopen($filename, "r");
|
||||||
|
|
||||||
|
$h_extrefs = [];
|
||||||
|
|
||||||
|
//$gemeinde_id = 1448;
|
||||||
|
$netzgebiet = new ADBNetzgebiet(37);
|
||||||
|
$default_plz = "8775";
|
||||||
|
$default_freigabe = json_encode(["interest", "provision", "order", "reorder"]);
|
||||||
|
|
||||||
|
$i = 0;
|
||||||
|
while($csv = fgetcsv($input, 0, ";")) {
|
||||||
|
$i++;
|
||||||
|
if($i == 1) continue;
|
||||||
|
|
||||||
|
|
||||||
|
$hausnummer = false;
|
||||||
|
|
||||||
|
if(!trim($csv[0])) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
//echo implode(", ", $csv)."\n";
|
||||||
|
$gem_kz = trim($csv[17]);
|
||||||
|
$gem_name = trim($csv[14]);
|
||||||
|
//$ort_kz = trim($csv[2]);
|
||||||
|
$plz_name = trim($csv[15]);
|
||||||
|
if(!$plz_name) {
|
||||||
|
$plz_name = $default_plz;
|
||||||
|
}
|
||||||
|
$ort_name = trim($csv[14]);
|
||||||
|
$strasse_hausnummer = trim($csv[13]);
|
||||||
|
$hausnummer_extref = trim($csv[0]);
|
||||||
|
if(in_array($hausnummer_extref, $h_extrefs)) {
|
||||||
|
die("Hausnummer extref doppelt!\n");
|
||||||
|
}
|
||||||
|
$h_extrefs[] = $hausnummer_extref;
|
||||||
|
|
||||||
|
//$lat = str_replace(",",".",trim($csv[10]));
|
||||||
|
//$long = str_replace(",",".",trim($csv[11]));
|
||||||
|
$lat = $long = false;
|
||||||
|
$nutzung = trim($csv[3]);
|
||||||
|
|
||||||
|
$unit_count = $csv[5];
|
||||||
|
if(!$unit_count) $unit_count = 1;
|
||||||
|
|
||||||
|
$adrcd = false;
|
||||||
|
/*$adr = trim($csv[46]);
|
||||||
|
$adr_parts = explode("-", $adr);
|
||||||
|
if(count($adr_parts)) {
|
||||||
|
$adrcd = $adr_parts[0];
|
||||||
|
}*/
|
||||||
|
|
||||||
|
if(!$strasse_hausnummer) continue;
|
||||||
|
|
||||||
|
//echo "strasse: $strasse\n";
|
||||||
|
//echo "strasse_building: $strasse_building\n";
|
||||||
|
|
||||||
|
|
||||||
|
$strasse_name = "";
|
||||||
|
$hausnummer_name = "";
|
||||||
|
$addresszusatz = "";
|
||||||
|
|
||||||
|
$m = [];
|
||||||
|
// (?:\s+((?:gesch(?:ae|ä)ft|betrieb und wohnungen|paketlogistik|cafe|pavillon|pfarrheim|[^ ]*haus|[^ ]*geb(?:ae|ä)ude|[^ ]*halle)(?:\s+[a-z0-9]+)?))?
|
||||||
|
if(preg_match('/^(\D+)\s+(\d+[a-z0-9\/&#._-]*)(?:\s+((?:gesch(?:ae|ä)ft|werkstatt|betrieb und wohnungen|stg|paketlogistik|cafe|pavillon|pfarrheim|[^ ]*haus|[^ ]*geb(?:ae|ä)ude|[^ ]*halle|[^ ]*schule|Öhlmühle)(?:\s+[a-z0-9]+)?))?/i', $strasse_hausnummer, $m)) {
|
||||||
|
$strasse_name = trim($m[1]);
|
||||||
|
$hausnummer_name = trim($m[2]);
|
||||||
|
if(array_key_exists(3, $m)) {
|
||||||
|
$addresszusatz = trim($m[3]);
|
||||||
|
}
|
||||||
|
} elseif(preg_match('/^(.+)\s+(\d+[a-z0-9\/&#._-]*)(.+)?/i', $strasse_hausnummer, $m)) {
|
||||||
|
$strasse_name = trim($m[1]);
|
||||||
|
$hausnummer_name = trim($m[2]);
|
||||||
|
if(array_key_exists(3, $m)) {
|
||||||
|
$addresszusatz = trim($m[3]);
|
||||||
|
}
|
||||||
|
} elseif(preg_match('/^(.+)/i', $strasse_hausnummer, $m)) {
|
||||||
|
// ignore GST objects
|
||||||
|
//continue;
|
||||||
|
$strasse_name = trim($m[1]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if($strasse_name == "Kalwang") {
|
||||||
|
echo "Straße Kalwang gibts ned!\n";
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(preg_match('/GST(\s+\.)?$/', $strasse_name) && !$adrcd) continue;
|
||||||
|
if($gem_name == "Leoben") $gem_name = "Kalwang";
|
||||||
|
if($ort_name == "Leoben") $ort_name = "Kalwang";
|
||||||
|
|
||||||
|
if($strasse_hausnummer == "Brudergarten") continue;
|
||||||
|
if($strasse_name == "Brudergarten Kohlbacher") $strasse_name = "Brudergarten";
|
||||||
|
if($strasse_name == "Brudergarten") continue;
|
||||||
|
|
||||||
|
if(strpos($strasse_hausnummer, '"') !== false) {
|
||||||
|
$m = [];
|
||||||
|
if(preg_match('/^"Sonnenweg (\d+)(?:\s+([^"]+))?/', $strasse_hausnummer, $m)) {
|
||||||
|
$strasse_name = "Sonnenweg";
|
||||||
|
$hausnummer_name = $m[1];
|
||||||
|
if(array_key_exists(2, $m)) {
|
||||||
|
$addresszusatz = $m[2];
|
||||||
|
}
|
||||||
|
echo "$strasse_name $hausnummer_name $addresszusatz\n";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!$strasse_name && ($nutzung != "Greenfield" || $nutzung)) {
|
||||||
|
die("Unbekanntes Adressformat\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if(!$gem_name || !$plz_name || !$ort_name || !$strasse_name) {
|
||||||
|
die("!! Konnte Adresse nicht parsen\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!$hausnummer_extref) {
|
||||||
|
die("!!! Keine Hausnummer Extref\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$gemeinde = ADBGemeindeModel::getFirst(["kennziffer" => $gem_kz]);
|
||||||
|
if(!$gemeinde) {
|
||||||
|
echo "Gemeinde $gem_name $gem_kz nicht gefunden\n";
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
$gemeinde_id = $gemeinde->id;
|
||||||
|
|
||||||
|
//if($nutzung == "Greenfield") continue;
|
||||||
|
|
||||||
|
//continue;
|
||||||
|
// find address in AddressDB and update extrefs
|
||||||
|
|
||||||
|
|
||||||
|
$strasse_name = $db->escape($strasse_name);
|
||||||
|
$hausnummer_name = $db->escape($hausnummer_name);
|
||||||
|
|
||||||
|
if($adrcd) {
|
||||||
|
// get Hausnummer to update
|
||||||
|
$hausnummer = ADBHausnummerModel::getFirst(['adrcd' => $adrcd]);
|
||||||
|
/*if(!$hausnummer) {
|
||||||
|
echo "Hausnummer adrcd $adrcd not found\n";
|
||||||
|
}*/
|
||||||
|
}
|
||||||
|
|
||||||
|
if(!$hausnummer) {
|
||||||
|
// search Hausnummer
|
||||||
|
$strasse_search = [$strasse_name];
|
||||||
|
|
||||||
|
if(strpos($strasse_name, ' ') !== false) $strasse_search[] = str_replace(' ', '-', $strasse_name);
|
||||||
|
if(strpos($strasse_name, '-') !== false) $strasse_search[] = str_replace('-', ' ', $strasse_name);
|
||||||
|
if(strpos($strasse_name, '.') !== false) $strasse_search[] = str_replace('.', '. ', $strasse_name);
|
||||||
|
if(strpos($strasse_name, '.') !== false) $strasse_search[] = str_replace('.', '.-', $strasse_name);
|
||||||
|
if(strpos($strasse_name, '. ') !== false) $strasse_search[] = str_replace('. ', '.', $strasse_name);
|
||||||
|
if(strpos($strasse_name, '. ') !== false) $strasse_search[] = str_replace('. ', '.-', $strasse_name);
|
||||||
|
if(strpos($strasse_name, '.') !== false) $strasse_search[] = str_replace('.-', '.', $strasse_name);
|
||||||
|
if(strpos($strasse_name, '.') !== false) $strasse_search[] = str_replace('.-', '. ', $strasse_name);
|
||||||
|
|
||||||
|
foreach($strasse_search as $search) {
|
||||||
|
if(strpos($search, 'ß') !== false) $strasse_search[] = str_replace('ß', 'ss', $search);
|
||||||
|
if(strpos($search, 'ä') !== false) $strasse_search[] = str_replace('ä', 'ae', $search);
|
||||||
|
if(strpos($search, 'ö') !== false) $strasse_search[] = str_replace('ö', 'oe', $search);
|
||||||
|
if(strpos($search, 'ü') !== false) $strasse_search[] = str_replace('ü', 'ue', $search);
|
||||||
|
|
||||||
|
if(strpos($search, 'ss') !== false) $strasse_search[] = str_replace('ss', 'ß', $search);
|
||||||
|
if(strpos($search, 'ae') !== false) $strasse_search[] = str_replace('ae', 'ä', $search);
|
||||||
|
if(strpos($search, 'oe') !== false) $strasse_search[] = str_replace('oe', 'ö', $search);
|
||||||
|
if(strpos($search, 'ue') !== false) $strasse_search[] = str_replace('ue', 'ü', $search);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$sql = "SELECT * FROM view_hausnummer WHERE gemeinde_id = $gemeinde_id AND strasse IN ('". implode("', '", $strasse_search)."') AND hausnummer='$hausnummer_name'";
|
||||||
|
//echo "$sql\n";
|
||||||
|
/*if(preg_match('/^Tobelbader/i',$strasse_name)) {
|
||||||
|
echo "$sql\n";
|
||||||
|
}*/
|
||||||
|
$res = $db->query($sql);
|
||||||
|
|
||||||
|
if($db->num_rows($res)) {
|
||||||
|
// get Hausnummer to update
|
||||||
|
//echo "Hausnummer per Suche gefunden\n";
|
||||||
|
$data = $db->fetch_object($res);
|
||||||
|
$hausnummer = new ADBHausnummer($data->hausnummer_id);
|
||||||
|
} else {
|
||||||
|
// hausnummer anlegen
|
||||||
|
//echo "hausnummer anlegen\n";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$strasse = ADBStrasseModel::getFirst(["gemeinde_id" => $gemeinde_id, "name" => $strasse_name]);
|
||||||
|
if(!$strasse) die("Strasse $strasse_name (hausnummer: $hausnummer_name) (gemeinde_id $gemeinde_id; gem_kz $gem_kz) [$strasse_hausnummer] nicht gefunden\n");
|
||||||
|
|
||||||
|
$plz = ADBPlzModel::getFirst(["gemeinde_id" => $gemeinde_id, "plz" => $plz_name]);
|
||||||
|
if(!$plz) die("PLZ $plz_name nicht gefunden\n");
|
||||||
|
|
||||||
|
$ortschaft = ADBOrtschaftModel::getFirst(["gemeinde_id" => $gemeinde_id, "name" => $ort_name]);
|
||||||
|
if(!$ortschaft) die("ortschaft $ort_name nicht gefunden\n");
|
||||||
|
|
||||||
|
//echo "Creating hausnummer\n";
|
||||||
|
|
||||||
|
$hausnummer_data = [
|
||||||
|
"netzgebiet_id" => $netzgebiet->id,
|
||||||
|
"adrcd" => ($adrcd) ? $adrcd : null,
|
||||||
|
"extref" => $hausnummer_extref,
|
||||||
|
"ortschaft_id" => $ortschaft->id,
|
||||||
|
"plz_id" => $plz->id,
|
||||||
|
"strasse_id" => $strasse->id,
|
||||||
|
"hausnummer" => $hausnummer_name,
|
||||||
|
"zusatz" => ($addresszusatz) ? $addresszusatz : null,
|
||||||
|
//"gps_lat" => $lat,
|
||||||
|
//"gps_long" => $long,
|
||||||
|
"unit_count" => ($unit_count) ? $unit_count : 1,
|
||||||
|
"freigabe" => $default_freigabe,
|
||||||
|
];
|
||||||
|
$hausnummer = ADBHausnummerModel::create($hausnummer_data);
|
||||||
|
//var_dump($hausnummer);exit;
|
||||||
|
$hausnummer->save();
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//echo "Hausnummer extref: \033[1m$hausnummer_extref\033[0m | gem: \033[1m$gem_name\033[0m | plz: \033[1m$plz_name\033[0m | ort: \033[1m$ort_name\033[0m | strasse: \033[1m$strasse_name\033[0m | hausnummer: \033[1m$hausnummer_name\033[0m |";
|
||||||
|
//echo "Zusatz: \033[1m$addresszusatz\033[0m | (\033[1m$nutzung\033[0m) | ADRCD: \033[1m$adrcd\033[0m\n";
|
||||||
|
|
||||||
|
//var_dump($hausnummer);exit;
|
||||||
|
//continue;
|
||||||
|
if($hausnummer->netzgebiet_id != $netzgebiet->id) {
|
||||||
|
$hausnummer->netzgebiet_id = $netzgebiet->id;
|
||||||
|
//$hausnummer->save();
|
||||||
|
}
|
||||||
|
if($hausnummer->extref != $hausnummer_extref) {
|
||||||
|
$hausnummer->extref = $hausnummer_extref;
|
||||||
|
//$hausnummer->save();
|
||||||
|
}
|
||||||
|
if($lat && $long) {
|
||||||
|
$hausnummer->gps_lat = (float)$lat;
|
||||||
|
$hausnummer->gps_long = (float)$long;
|
||||||
|
}
|
||||||
|
$hausnummer->freigabe = $default_freigabe;
|
||||||
|
//echo "updating hausnummer\n";
|
||||||
|
$hausnummer->save();
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$existing_units_count = ADBWohneinheitModel::count(["hausnummer_id" => $hausnummer->id]);
|
||||||
|
//echo "$existing_units_count\n";
|
||||||
|
|
||||||
|
if(!$existing_units_count) {
|
||||||
|
$hausnummer->unit_count = $unit_count;
|
||||||
|
// create units
|
||||||
|
//echo "Creating $unit_count units\n";
|
||||||
|
|
||||||
|
for($u = 0; $u < $unit_count; $u++) {
|
||||||
|
$num = $u + 1;
|
||||||
|
|
||||||
|
$wohneinheit_data = [
|
||||||
|
'hausnummer_id' => $hausnummer->id,
|
||||||
|
'num' => $num,
|
||||||
|
'tuer' => ($unit_count > 1) ? $num : null
|
||||||
|
];
|
||||||
|
|
||||||
|
$wohneinheit = ADBWohneinheitModel::create($wohneinheit_data);
|
||||||
|
//continue;
|
||||||
|
$wohneinheit->save();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
@@ -0,0 +1,314 @@
|
|||||||
|
Name;User label;Type;Building type;OBJID;Planned TU;Execution state;PlannedCores;Has Connections;Has Cables;Class;Imported;Update TS;Address;City;ZIP Code;Remark;Municipality Name;
|
||||||
|
"24880551";"";"FTTxCustomerLocation";"Multiple dwellings";"1225616";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880552";"";"FTTxCustomerLocation";"Multiple dwellings";"1225618";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880555";"";"FTTxCustomerLocation";"Public";"1225621";3;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Rudolf-von-Gutmann-Straße 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880556";"";"FTTxCustomerLocation";"Multiple dwellings";"1225622";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 77";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880557";"";"FTTxCustomerLocation";"Multiple dwellings";"1225624";3;"Gross planning";0;true;true;"Building";true;"05.04.2023 07:06:36";"Marktstraße 75";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880558";"";"FTTxCustomerLocation";"Multiple dwellings";"1225625";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 73";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880560";"";"FTTxCustomerLocation";"Hotel";"1225627";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:29:52";"Marktstraße 69";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880561";"";"FTTxCustomerLocation";"Residential";"1225628";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 67";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880562";"";"FTTxCustomerLocation";"Multiple dwellings";"1225629";9;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 65";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880563";"";"FTTxCustomerLocation";"Multiple dwellings";"1225630";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 63";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880564";"";"FTTxCustomerLocation";"Residential";"1225631";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 59";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880565";"";"FTTxCustomerLocation";"Residential";"1225632";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 61";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880566";"";"FTTxCustomerLocation";"Residential";"1225633";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:21:02";"Marktstraße 55";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880567";"";"FTTxCustomerLocation";"Residential";"1225634";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 57";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880568";"";"FTTxCustomerLocation";"Residential";"1225635";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:21:15";"Marktstraße 53";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880569";"";"FTTxCustomerLocation";"Residential";"1225636";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:07:25";"Marktstraße 51";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880570";"";"FTTxCustomerLocation";"Residential";"1225637";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 49";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880571";"";"FTTxCustomerLocation";"Company";"1225638";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 47";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880572";"";"FTTxCustomerLocation";"Multiple dwellings";"1225639";7;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 45";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880573";"";"FTTxCustomerLocation";"Residential";"1225640";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Hochstraße 6";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880574";"";"FTTxCustomerLocation";"Residential";"1225641";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Hochstraße 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880575";"";"FTTxCustomerLocation";"Residential";"1225642";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Hochstraße 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880576";"";"FTTxCustomerLocation";"Residential";"1225643";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Hochstraße 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880577";"";"FTTxCustomerLocation";"Residential";"1225644";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Hochstraße 2a";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880578";"";"FTTxCustomerLocation";"Residential";"1225645";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Hochstraße 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880579";"";"FTTxCustomerLocation";"Multiple dwellings";"1225646";3;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:35:23";"Marktstraße 41";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880580";"";"FTTxCustomerLocation";"Multiple dwellings";"1225647";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 43";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880581";"";"FTTxCustomerLocation";"Residential";"1225648";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 39";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880583";"";"FTTxCustomerLocation";"Residential";"1225650";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Kirchgasse 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880584";"";"FTTxCustomerLocation";"Multiple dwellings";"1225651";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Kirchgasse 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880585";"";"FTTxCustomerLocation";"Residential";"1225652";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:28:27";"Marktstraße 35";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880586";"";"FTTxCustomerLocation";"Multiple dwellings";"1225653";6;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 33";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880587";"";"FTTxCustomerLocation";"Multiple dwellings";"1225654";6;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Kirchplatz 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880588";"";"FTTxCustomerLocation";"Company";"1225655";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:52:39";"Kirchplatz 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880589";"";"FTTxCustomerLocation";"Multiple dwellings";"1225656";4;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:23:15";"Marktstraße 31";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880593";"";"FTTxCustomerLocation";"Multiple dwellings";"1225660";4;"Gross planning";0;true;true;"Building";true;"05.04.2023 07:06:03";"Teichen 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880595";"";"FTTxCustomerLocation";"Residential";"1225662";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:49:26";"Teichen 10";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880603";"";"FTTxCustomerLocation";"Residential";"1225670";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:26:25";"Marktstraße 6";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880604";"";"FTTxCustomerLocation";"Multiple dwellings";"1225671";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:04:33";"Parkweg 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880605";"";"FTTxCustomerLocation";"Residential";"1225672";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Parkweg 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880606";"";"FTTxCustomerLocation";"Hotel";"1225675";2;"Gross planning";0;true;true;"Building";true;"27.09.2022 09:58:03";"Kirchplatz 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880608";"";"FTTxCustomerLocation";"Residential";"1225677";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Kaiblingergasse 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880609";"";"FTTxCustomerLocation";"Multiple dwellings";"1225678";3;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:57:40";"Kaiblingergasse 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880610";"";"FTTxCustomerLocation";"Residential";"1225679";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:57:34";"Kaiblingergasse 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880611";"";"FTTxCustomerLocation";"Residential";"1225680";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Kirchplatz 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880612";"";"FTTxCustomerLocation";"Multiple dwellings";"1225681";4;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:32:33";"Kirchplatz 6";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880613";"";"FTTxCustomerLocation";"Company";"1225682";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 12";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880614";"";"FTTxCustomerLocation";"Multiple dwellings";"1225683";7;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Kaiblingergasse 5";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880615";"";"FTTxCustomerLocation";"Multiple dwellings";"1225684";8;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Vasoldgasse 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880616";"";"FTTxCustomerLocation";"Multiple dwellings";"1225685";8;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Vasoldgasse 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880617";"";"FTTxCustomerLocation";"Company";"1225686";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:05:41";"Marktstraße 14";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880618";"";"FTTxCustomerLocation";"Company";"1225687";3;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 16";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880619";"";"FTTxCustomerLocation";"Hotel";"1225688";2;"Gross planning";0;true;true;"Building";true;"21.11.2019 12:45:01";"Marktstraße 18";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880620";"";"FTTxCustomerLocation";"Residential";"1225689";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 20";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880621";"";"FTTxCustomerLocation";"Residential";"1225690";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 24";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880622";"";"FTTxCustomerLocation";"Residential";"1225691";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 26";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880623";"";"FTTxCustomerLocation";"Multiple dwellings";"1225692";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 28";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880624";"";"FTTxCustomerLocation";"Multiple dwellings";"1225693";4;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:21:37";"Marktstraße 30";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880625";"";"FTTxCustomerLocation";"Multiple dwellings";"1225694";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 34";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880626";"";"FTTxCustomerLocation";"Residential";"1225695";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Schloßweg 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880627";"";"FTTxCustomerLocation";"Multiple dwellings";"1225696";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 32";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880628";"";"FTTxCustomerLocation";"Company";"1225697";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Blaulichtstraße 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880629";"";"FTTxCustomerLocation";"Multiple dwellings";"1225698";3;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 36";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880630";"";"FTTxCustomerLocation";"Residential";"1225699";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:31:53";"Marktstraße 38";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880631";"";"FTTxCustomerLocation";"Hotel";"1225700";2;"Gross planning";0;true;true;"Building";true;"21.11.2019 12:46:04";"Bundesstraße 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880632";"";"FTTxCustomerLocation";"Residential";"1225701";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bundesstraße 5";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880633";"";"FTTxCustomerLocation";"Company";"1225702";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bundesstraße 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880634";"";"FTTxCustomerLocation";"Company";"1225703";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Gewerbepark 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880635";"";"FTTxCustomerLocation";"Company";"1225704";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bundesstraße 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880636";"";"FTTxCustomerLocation";"Multiple dwellings";"1225705";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Schloßweg 5";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880637";"";"FTTxCustomerLocation";"Residential";"1225706";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:42:52";"Schloßweg 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880638";"";"FTTxCustomerLocation";"Multiple dwellings";"1225707";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Schloßweg 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880639";"";"FTTxCustomerLocation";"Residential";"1225708";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Schloßweg 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880640";"";"FTTxCustomerLocation";"Residential";"1225709";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:27:09";"Bachgasse 19";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880641";"";"FTTxCustomerLocation";"Residential";"1225710";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bachgasse 22";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880642";"";"FTTxCustomerLocation";"Residential";"1225711";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bachgasse 20";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880643";"";"FTTxCustomerLocation";"Multiple dwellings";"1225713";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bachgasse 17";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880644";"";"FTTxCustomerLocation";"Residential";"1225714";1;"Gross planning";0;true;true;"Building";true;"05.04.2023 06:55:53";"Reitschulgasse 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880645";"";"FTTxCustomerLocation";"Multiple dwellings";"1225717";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bachgasse 16";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880646";"";"FTTxCustomerLocation";"Residential";"1225718";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bachgasse 15";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880647";"";"FTTxCustomerLocation";"Multiple dwellings";"1225719";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Reitschulgasse 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880648";"";"FTTxCustomerLocation";"Multiple dwellings";"1225720";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:24:15";"Bärnplatzweg 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880649";"";"FTTxCustomerLocation";"Multiple dwellings";"1225721";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:23:53";"Bärnplatzweg 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880650";"";"FTTxCustomerLocation";"Multiple dwellings";"1225722";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:30:40";"Bachgasse 13";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880651";"";"FTTxCustomerLocation";"Multiple dwellings";"1225724";16;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:31:40";"Kapellengasse 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880652";"";"FTTxCustomerLocation";"Multiple dwellings";"1225725";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Kapellengasse 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880653";"";"FTTxCustomerLocation";"Multiple dwellings";"1225726";3;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bachgasse 12";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880654";"";"FTTxCustomerLocation";"Residential";"1225727";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:28:56";"Bachgasse 11";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880656";"";"FTTxCustomerLocation";"Residential";"1225729";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bachgasse 9";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880657";"";"FTTxCustomerLocation";"Residential";"1225730";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Lindenallee 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880658";"";"FTTxCustomerLocation";"Multiple dwellings";"1225731";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bachgasse 7";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880659";"";"FTTxCustomerLocation";"Multiple dwellings";"1225732";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bachgasse 6";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880660";"";"FTTxCustomerLocation";"Multiple dwellings";"1225733";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bachgasse 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880661";"";"FTTxCustomerLocation";"Company";"1225734";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bachgasse 5";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880662";"";"FTTxCustomerLocation";"Residential";"1225735";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bachgasse 3a";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880663";"";"FTTxCustomerLocation";"Residential";"1225736";1;"Gross planning";0;true;true;"Building";true;"15.12.2022 10:24:14";"Bachgasse 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880664";"";"FTTxCustomerLocation";"Residential";"1225737";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bachgasse 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880665";"";"FTTxCustomerLocation";"Multiple dwellings";"1225739";9;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:34:24";"Bärnplatzweg 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880666";"";"FTTxCustomerLocation";"Residential";"1225740";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Lindenallee 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880667";"";"FTTxCustomerLocation";"Residential";"1225741";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:49:49";"Teichen 12";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880668";"";"FTTxCustomerLocation";"Multiple dwellings";"1225742";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Reitschulgasse 4a";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880669";"";"FTTxCustomerLocation";"Residential";"1225744";1;"Gross planning";0;true;true;"Building";true;"05.04.2023 06:55:38";"Reitschulgasse 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880670";"";"FTTxCustomerLocation";"Residential";"1225745";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Reitschulgasse 5";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880671";"";"FTTxCustomerLocation";"Residential";"1225746";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:23:59";"Bärnplatzweg 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880672";"";"FTTxCustomerLocation";"Multiple dwellings";"1225747";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:24:22";"Bärnplatzweg 5";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880673";"";"FTTxCustomerLocation";"Residential";"1225748";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:24:35";"Bärnplatzweg 7";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880674";"";"FTTxCustomerLocation";"Multiple dwellings";"1225749";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:35:00";"Bärnplatzweg 9";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880675";"";"FTTxCustomerLocation";"Multiple dwellings";"1225750";9;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bärnplatzweg 11";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880676";"";"FTTxCustomerLocation";"Multiple dwellings";"1225751";9;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Bärnplatzweg 13";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880677";"";"FTTxCustomerLocation";"Residential";"1225752";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bärnplatzweg 10";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880678";"";"FTTxCustomerLocation";"Residential";"1225753";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bärnplatzweg 12";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880679";"";"FTTxCustomerLocation";"Residential";"1225754";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bärnplatzweg 14";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880680";"";"FTTxCustomerLocation";"Residential";"1225755";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bärnplatzweg 16";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880681";"";"FTTxCustomerLocation";"Residential";"1225756";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:58:09";"Lindenallee 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880682";"";"FTTxCustomerLocation";"Residential";"1225757";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:39:35";"Reitschulgasse 6";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880683";"";"FTTxCustomerLocation";"Residential";"1225758";1;"Gross planning";0;true;true;"Building";true;"05.04.2023 06:56:06";"Reitschulgasse 7";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880684";"";"FTTxCustomerLocation";"Residential";"1225759";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:39:16";"Reitschulgasse 8";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880685";"";"FTTxCustomerLocation";"Multiple dwellings";"1225760";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Reitschulgasse 9";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880686";"";"FTTxCustomerLocation";"Multiple dwellings";"1225761";3;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Reitschulgasse 10";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880687";"";"FTTxCustomerLocation";"Multiple dwellings";"1225762";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:41:02";"Reitschulgasse 11";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880688";"";"FTTxCustomerLocation";"Residential";"1225763";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:45:48";"Spielplatzweg 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880689";"";"FTTxCustomerLocation";"Residential";"1225764";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Spielplatzweg 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880690";"";"FTTxCustomerLocation";"Residential";"1225765";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Spielplatzweg 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880691";"";"FTTxCustomerLocation";"Multiple dwellings";"1225766";9;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:33:56";"Spielplatzweg 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880693";"";"FTTxCustomerLocation";"Multiple dwellings";"1225768";9;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:36:56";"Spitalsiedlung 1";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880694";"";"FTTxCustomerLocation";"Multiple dwellings";"1225769";12;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:36:31";"Spitalsiedlung 5";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880695";"";"FTTxCustomerLocation";"Multiple dwellings";"1225771";12;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:47:37";"Spitalsiedlung 7";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880696";"";"FTTxCustomerLocation";"Multiple dwellings";"1225773";3;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:29:07";"Marktstraße 81";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880697";"";"FTTxCustomerLocation";"Multiple dwellings";"1225774";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 83";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880698";"";"FTTxCustomerLocation";"Multiple dwellings";"1225775";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 85";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880700";"";"FTTxCustomerLocation";"Residential";"1225777";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Spitalsiedlung 23";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880701";"";"FTTxCustomerLocation";"Multiple dwellings";"1225778";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Spitalsiedlung 21";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880702";"";"FTTxCustomerLocation";"Multiple dwellings";"1225779";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Spitalsiedlung 6";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880703";"";"FTTxCustomerLocation";"Multiple dwellings";"1225780";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Spitalsiedlung 3";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880704";"";"FTTxCustomerLocation";"Residential";"1225781";1;"Gross planning";0;true;true;"Building";true;"05.04.2023 06:56:36";"Spitalsiedlung 9";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880705";"";"FTTxCustomerLocation";"Residential";"1225782";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Spitalsiedlung 2";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880706";"";"FTTxCustomerLocation";"Multiple dwellings";"1225783";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:47:24";"Spitalsiedlung 4";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880707";"";"FTTxCustomerLocation";"Residential";"1225784";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:46:39";"Spitalsiedlung 13";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880708";"";"FTTxCustomerLocation";"Residential";"1225785";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:41:44";"Spitalsiedlung 15";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880709";"";"FTTxCustomerLocation";"Residential";"1225786";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:46:27";"Spitalsiedlung 19";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880710";"";"FTTxCustomerLocation";"Company";"1225787";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 64";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880711";"";"FTTxCustomerLocation";"Multiple dwellings";"1225788";3;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:33:11";"Marktstraße 62";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880712";"";"FTTxCustomerLocation";"Residential";"1225789";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Marktstraße 56";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880714";"";"FTTxCustomerLocation";"Residential";"1225791";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:10:34";"Marktstraße 48";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24880715";"";"FTTxCustomerLocation";"Multiple dwellings";"1225792";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:25:52";"Marktstraße 54";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899764";"";"FTTxCustomerLocation";"Residential";"1724884";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Hochstraße 5";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899765";"";"FTTxCustomerLocation";"Residential";"1724897";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:08";"Kirchgasse 2a";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899766";"";"FTTxCustomerLocation";"Multiple dwellings";"1724902";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:08";"Marktstraße 50";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899767";"";"FTTxCustomerLocation";"Residential";"1724915";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:24:27";"Marktstraße 22";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899768";"";"FTTxCustomerLocation";"Residential";"1724980";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:08";"Bachgasse 14";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899769";"";"FTTxCustomerLocation";"Multiple dwellings";"1724982";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:08";"Bachgasse 8";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899771";"";"FTTxCustomerLocation";"Residential";"1724987";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:08";"Marktstraße 91";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899773";"";"FTTxCustomerLocation";"Residential";"1724990";1;"Gross planning";0;true;true;"Building";true;"05.04.2023 06:56:55";"Spitalsiedlung 11";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899777";"";"FTTxCustomerLocation";"Residential";"1725017";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:32:10";"Marktstraße 46";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899778";"";"FTTxCustomerLocation";"Residential";"1725019";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 44";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899779";"";"FTTxCustomerLocation";"Multiple dwellings";"1725036";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 11:25:30";"Marktstraße 52";"Kalwang
|
||||||
|
";"8775";"";"61105";
|
||||||
|
"24899780";"";"FTTxCustomerLocation";"Multiple dwellings";"1725038";2;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:48:30";"Bundesstraße 7";"Kalwang
|
||||||
|
Reference in New Issue
Block a user