Kalwang locations import
This commit is contained in:
+291
@@ -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␍";"8775";"";"61105";
|
||||
"24903937";"";"FTTxCustomerLocation";"Residential";"1952204";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:08";"Spitalsiedlung 17";"Kalwang␍";"8775";"";"61105";
|
||||
"24905727";"";"FTTxCustomerLocation";"Residential";"2065973";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:09";"Bundesstraße 6";"Kalwang␍";"8775";"";"61105";
|
||||
"24907140";"";"FTTxCustomerLocation";"Residential";"2161136";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:36:01";"Blaulichtstraße 4";"Kalwang␍";"8775";"";"61105";
|
||||
"24907141";"";"FTTxCustomerLocation";"Residential";"2161137";1;"Gross planning";0;true;true;"Building";true;"05.04.2023 06:57:30";"Blaulichtstraße 5";"Kalwang␍";"8775";"";"61105";
|
||||
"24907142";"";"FTTxCustomerLocation";"Residential";"2161138";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Feldgasse 5";"Kalwang␍";"8775";"";"61105";
|
||||
"24907144";"";"FTTxCustomerLocation";"Residential";"2161140";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:35:41";"Blaulichtstraße 3";"Kalwang␍";"8775";"";"61105";
|
||||
"24908565";"";"FTTxCustomerLocation";"Residential";"2269919";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:12:20";"Bachgasse 3";"Kalwang␍";"8775";"";"61105";
|
||||
"24908567";"";"FTTxCustomerLocation";"Public";"2269921";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:09";"Marktstraße 71a";"Kalwang␍";"8775";"";"61105";
|
||||
"24908568";"";"FTTxCustomerLocation";"Residential";"2269922";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Blaulichtstraße 6";"Kalwang␍";"8775";"";"61105";
|
||||
"24909326";"";"FTTxCustomerLocation";"Residential";"2316290";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Bachgasse 21";"Kalwang␍";"8775";"";"61105";
|
||||
"24909423";"";"FTTxCustomerLocation";"Multiple dwellings";"2323733";6;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:10";"Fohlenhofweg 6";"Kalwang␍";"8775";"";"61105";
|
||||
"24909424";"";"FTTxCustomerLocation";"Multiple dwellings";"2323734";6;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:10";"Fohlenhofweg 8";"Kalwang␍";"8775";"";"61105";
|
||||
"24909425";"";"FTTxCustomerLocation";"Multiple dwellings";"2323735";4;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:10";"Fohlenhofweg 10";"Kalwang␍";"8775";"";"61105";
|
||||
"24910012";"";"FTTxCustomerLocation";"Residential";"2366594";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Feldgasse 4";"Kalwang␍";"8775";"";"61105";
|
||||
"24912177";"";"FTTxCustomerLocation";"Multiple dwellings";"2493308";4;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:10";"Marktstraße 2";"Kalwang␍";"8775";"";"61105";
|
||||
"24912178";"";"FTTxCustomerLocation";"Multiple dwellings";"2493316";6;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:10";"Marktstraße 4";"Kalwang␍";"8775";"";"61105";
|
||||
"24912326";"";"FTTxCustomerLocation";"Residential";"2503309";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 13:47:50";"Brudergarten 21";"Kalwang␍";"8775";"";"61105";
|
||||
"24914156";"";"FTTxCustomerLocation";"Company";"2578930";5;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:40:59";"Bundesstraße 1";"Kalwang␍";"8775";"";"61105";
|
||||
"24914952";"";"FTTxCustomerLocation";"Multiple dwellings";"2624594";2;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:11";"Marktstraße 60";"Kalwang␍";"8775";"";"61105";
|
||||
"24918150";"";"FTTxCustomerLocation";"Company";"2814958";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 8";"Kalwang␍";"8775";"";"61105";
|
||||
"24918153";"";"FTTxCustomerLocation";"Company";"2814965";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 10";"Kalwang␍";"8775";"";"61105";
|
||||
"24918161";"";"FTTxCustomerLocation";"Company";"2814995";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:11";"Marktstraße 18a";"Kalwang␍";"8775";"";"61105";
|
||||
"25088770";"";"FTTxCustomerLocation";"Transmitting station";"";3;"Gross planning";0;true;true;"Building";false;"26.08.2019 11:13:23";"Kalwang 172";"Leoben";"8775";"";"61105";
|
||||
"25088771";"genaue Pos unbekannt";"FTTxCustomerLocation";"Transmitting station";"";3;"Gross planning";0;true;true;"Building";false;"26.08.2019 11:33:38";"Kalwang 23";"Leoben";"8775";"";"61105";
|
||||
"11000004";"";"FTTxCustomerLocation";"Greenfield";"11000004";1;"Gross planning";0;true;true;"Building";true;"21.11.2019 12:30:20";"";"Kalwang";"";"";"61105";
|
||||
"11000005";"";"FTTxCustomerLocation";"Greenfield";"11000005";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"";"Kalwang";"";"";"61105";
|
||||
"11000006";"";"FTTxCustomerLocation";"Greenfield";"11000006";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"";"Kalwang";"";"";"61105";
|
||||
"11000007";"";"FTTxCustomerLocation";"Greenfield";"11000007";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"";"Kalwang";"";"";"61105";
|
||||
"11000009";"";"FTTxCustomerLocation";"Greenfield";"11000009";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"";"Kalwang";"";"";"61105";
|
||||
"11000010";"";"FTTxCustomerLocation";"Greenfield";"11000010";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 14:46:28";"";"Kalwang";"";"";"61105";
|
||||
"11000044";"";"FTTxCustomerLocation";"Greenfield";"11000044";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"";"Kalwang";"";"";"61105";
|
||||
"11000048";"";"FTTxCustomerLocation";"Greenfield";"11000048";5;"Gross planning";0;true;true;"Building";true;"21.11.2019 12:30:20";"";"Kalwang";"";"";"61105";
|
||||
"11000049";"";"FTTxCustomerLocation";"Greenfield";"11000049";1;"Gross planning";0;true;true;"Building";true;"21.11.2019 12:30:20";"";"Kalwang";"";"";"61105";
|
||||
"11000051";"";"FTTxCustomerLocation";"Greenfield";"11000051";1;"Gross planning";0;true;true;"Building";true;"21.06.2022 14:24:45";"";"Kalwang";"";"";"61105";
|
||||
"11000052";"";"FTTxCustomerLocation";"Greenfield";"11000052";1;"Gross planning";0;false;false;"Building";true;"21.11.2019 12:30:20";"";"Kalwang";"";"";"61105";
|
||||
"11000053";"";"FTTxCustomerLocation";"Greenfield";"11000053";1;"Gross planning";0;true;true;"Building";true;"21.11.2019 12:30:20";"";"Kalwang";"";"";"61105";
|
||||
"11000083";"";"FTTxCustomerLocation";"Greenfield";"11000083";2;"Gross planning";0;true;true;"Building";true;"05.05.2022 08:20:44";"";"Kalwang";"";"";"61105";
|
||||
"11000084";"";"FTTxCustomerLocation";"Greenfield";"11000084";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"";"Kalwang";"";"";"61105";
|
||||
"11000085";"";"FTTxCustomerLocation";"Greenfield";"11000085";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"";"Kalwang";"";"";"61105";
|
||||
"11000091";"";"FTTxCustomerLocation";"Greenfield";"11000091";5;"Gross planning";0;true;true;"Building";true;"21.11.2019 12:30:20";"";"Kalwang";"";"";"61105";
|
||||
"11000099";"";"FTTxCustomerLocation";"Greenfield";"11000099";2;"Gross planning";0;true;true;"Building";true;"05.05.2022 08:20:32";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000104";"";"FTTxCustomerLocation";"Greenfield";"11000104";2;"Gross planning";0;true;true;"Building";true;"05.05.2022 08:20:23";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000109";"";"FTTxCustomerLocation";"Greenfield";"11000109";1;"Gross planning";0;true;true;"Building";true;"21.11.2019 12:30:20";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"25123266";"betreutes Wohnung";"FTTxCustomerLocation";"Greenfield";"";2;"Gross planning";0;true;true;"Building";false;"21.08.2020 14:31:49";"Kalwang 182a";"Leoben";"8775";"";"61105";
|
||||
"25124285";"";"FTTxCustomerLocation";"Multiple dwellings";"";4;"Gross planning";0;true;true;"Building";false;"18.06.2021 08:14:07";"Sportplatzweg 1/1/3";"Kalwang";"8775";"";"61105";
|
||||
"25127257";"Teichen 6";"FTTxCustomerLocation";"Residential";"";1;"Gross planning";0;true;true;"Building";false;"05.04.2023 07:06:13";"Teichen 6";"Kalwang";"8775";"";"61105";
|
||||
"25127358";"";"FTTxCustomerLocation";"Company";"";1;"Gross planning";0;true;true;"Building";false;"20.09.2022 12:26:20";"Kalwang 70a";"Leoben";"8775";"";"61105";
|
||||
"25127385";"";"FTTxCustomerLocation";"Residential";"";1;"Gross planning";0;true;true;"Building";false;"17.05.2023 10:17:32";"Brudergarten Kohlbacher 3";"Leoben";"8775";"";"61105";
|
||||
"25127386";"";"FTTxCustomerLocation";"Residential";"";1;"Gross planning";0;true;true;"Building";false;"19.12.2022 14:38:15";"Brudergarten Kohlbacher 1";"Leoben";"8775";"";"61105";
|
||||
"25127387";"";"FTTxCustomerLocation";"Residential";"";1;"Gross planning";0;true;true;"Building";false;"17.05.2023 10:17:27";"Brudergarten Kohlbacher 4";"Leoben";"8775";"";"61105";
|
||||
"25127388 Bachgasse 10 Bücherei";"";"FTTxCustomerLocation";"Residential";"";1;"Gross planning";0;true;true;"Building";false;"27.09.2022 13:57:41";"Bachgasse 10";"Kalwang";"8775";"";"61105";
|
||||
"25127389";"";"FTTxCustomerLocation";;"";1;"Gross planning";0;true;true;"Building";false;"19.12.2022 14:38:22";"Brudergarten Kohlbacher 2";"Leoben";"8775";"";"61105";
|
||||
"24880764";"";"FTTxCustomerLocation";"Residential";"1225878";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Schießstattweg 1";"Schattenberg␍";"8775";"";"61105";
|
||||
"24880765";"";"FTTxCustomerLocation";"Multiple dwellings";"1225879";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Schießstattweg 4";"Schattenberg␍";"8775";"";"61105";
|
||||
"24880766";"";"FTTxCustomerLocation";"Residential";"1225880";1;"Gross planning";0;true;true;"Building";true;"19.12.2022 10:55:51";"Hochstraße 9";"Schattenberg␍";"8775";"";"61105";
|
||||
"24880767";"";"FTTxCustomerLocation";"Multiple dwellings";"1225881";3;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Hochstraße 8";"Schattenberg␍";"8775";"";"61105";
|
||||
"24880768";"";"FTTxCustomerLocation";"Residential";"1225882";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Schießstattweg 2";"Schattenberg␍";"8775";"";"61105";
|
||||
"24880770";"";"FTTxCustomerLocation";"Company";"1225885";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:04";"Teichen 14";"Schattenberg␍";"8775";"";"61105";
|
||||
"24907139";"";"FTTxCustomerLocation";"Multiple dwellings";"2161135";2;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Hochstraße 7";"Schattenberg␍";"8775";"";"61105";
|
||||
"24908566";"";"FTTxCustomerLocation";"Residential";"2269920";1;"Gross planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Schießstattweg 3";"Schattenberg␍";"8775";"";"61105";
|
||||
"24909188";"";"FTTxCustomerLocation";"Residential";"2310363";1;"Gross planning";0;true;true;"Building";true;"17.09.2019 15:38:10";"Hochstraße 10";"Schattenberg␍";"8775";"";"61105";
|
||||
"24880553";"";"FTTxCustomerLocation";"Multiple dwellings";"1225619";2;"Detailed planning";0;true;true;"Building";true;"05.04.2023 07:06:54";"Fohlenhof 18";"Kalwang␍";"8775";"";"61105";
|
||||
"24880554";"";"FTTxCustomerLocation";"Multiple dwellings";"1225620";15;"Detailed planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof 16";"Kalwang␍";"8775";"";"61105";
|
||||
"24880596";"";"FTTxCustomerLocation";"Residential";"1225663";1;"Detailed planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Teichen 11";"Kalwang␍";"8775";"";"61105";
|
||||
"24880655 Bachgasse 10 Pfarrhof Büro";"";"FTTxCustomerLocation";"Residential";"1225728";1;"Detailed planning";0;true;true;"Building";true;"03.10.2022 07:29:23";"Bachgasse 10";"Kalwang␍";"8775";"";"61105";
|
||||
"24880692";"";"FTTxCustomerLocation";"Residential";"1225767";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 10:58:38";"Marktstraße 79";"Kalwang␍";"8775";"";"61105";
|
||||
"24880699";"";"FTTxCustomerLocation";"Residential";"1225776";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 11:09:04";"Marktstraße 89";"Kalwang␍";"8775";"";"61105";
|
||||
"24880713";"";"FTTxCustomerLocation";"Multiple dwellings";"1225790";12;"Detailed planning";0;true;true;"Building";true;"19.12.2022 13:34:18";"Fohlenhofweg 1";"Kalwang␍";"8775";"";"61105";
|
||||
"24899770";"";"FTTxCustomerLocation";"Company";"1724986";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 13:34:56";"Fohlenhofweg 2";"Kalwang␍";"8775";"";"61105";
|
||||
"24899772";"";"FTTxCustomerLocation";"Residential";"1724988";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 11:09:53";"Marktstraße 87";"Kalwang␍";"8775";"";"61105";
|
||||
"24899774";"";"FTTxCustomerLocation";"Multiple dwellings";"1724997";8;"Detailed planning";0;true;true;"Building";true;"19.12.2022 10:52:57";"Fohlenhofweg 3";"Kalwang␍";"8775";"";"61105";
|
||||
"24899775";"";"FTTxCustomerLocation";"Multiple dwellings";"1725003";8;"Detailed planning";0;true;true;"Building";true;"19.12.2022 10:52:41";"Fohlenhofweg 5";"Kalwang␍";"8775";"";"61105";
|
||||
"24899776";"";"FTTxCustomerLocation";"Multiple dwellings";"1725013";3;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:45";"Fohlenhofweg 7";"Kalwang␍";"8775";"";"61105";
|
||||
"24899782";"";"FTTxCustomerLocation";"Multiple dwellings";"1725043";2;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:45";"""Sonnenweg 4 """"Kalwang, Sonnenweg"""" 4""";"Kalwang␍";"8775";"";"61105";
|
||||
"24899783";"";"FTTxCustomerLocation";"Residential";"1725072";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:45";"""Sonnenweg 5 """"Kalwang, Sonnenweg"""" 5""";"Kalwang␍";"8775";"";"61105";
|
||||
"24899784";"";"FTTxCustomerLocation";"Residential";"1725075";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 11:45:06";"""Sonnenweg 6 """"Kalwang, Sonnenweg"""" 6""";"Kalwang␍";"8775";"";"61105";
|
||||
"24899785";"";"FTTxCustomerLocation";"Residential";"1725076";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 11:44:58";"""Sonnenweg 7 """"Kalwang, Sonnenweg"""" 7""";"Kalwang␍";"8775";"";"61105";
|
||||
"24899786";"";"FTTxCustomerLocation";"Residential";"1725077";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:45";"""Sonnenweg 8 """"Kalwang, Sonnenweg"""" 8""";"Kalwang␍";"8775";"";"61105";
|
||||
"24899787";"";"FTTxCustomerLocation";"Residential";"1725079";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:45";"""Sonnenweg 9 """"Kalwang, Sonnenweg"""" 9""";"Kalwang␍";"8775";"";"61105";
|
||||
"24904697";"";"FTTxCustomerLocation";"Residential";"1989542";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:56";"Fohlenhofweg 11";"Kalwang␍";"8775";"";"61105";
|
||||
"24905155";"";"FTTxCustomerLocation";"Multiple dwellings";"2014026";8;"Detailed planning";0;true;true;"Building";true;"19.12.2022 13:33:25";"Fohlenhofweg 9";"Kalwang␍";"8775";"";"61105";
|
||||
"24905907";"";"FTTxCustomerLocation";"Multiple dwellings";"2082982";21;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:45";"Sportplatzweg 1";"Kalwang␍";"8775";"";"61105";
|
||||
"24909281";"";"FTTxCustomerLocation";"Residential";"2314434";1;"Detailed planning";0;true;true;"Building";true;"13.04.2022 15:50:32";"Wiesenweg 2";"Kalwang␍";"8775";"";"61105";
|
||||
"24910013";"";"FTTxCustomerLocation";"Residential";"2366595";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:45";"""Sonnenweg 3 """"Kalwang, Sonnenweg"""" 3""";"Kalwang␍";"8775";"";"61105";
|
||||
"24910505";"";"FTTxCustomerLocation";"Residential";"2399420";1;"Detailed planning";0;true;true;"Building";true;"13.04.2022 15:50:21";"Wiesenweg 6";"Kalwang␍";"8775";"";"61105";
|
||||
"24910746";"";"FTTxCustomerLocation";"Residential";"2414498";1;"Detailed planning";0;true;true;"Building";true;"13.04.2022 15:50:16";"Wiesenweg 3";"Kalwang␍";"8775";"";"61105";
|
||||
"24910747";"";"FTTxCustomerLocation";"Residential";"2414544";1;"Detailed planning";0;true;true;"Building";true;"13.04.2022 15:50:26";"Wiesenweg 4";"Kalwang␍";"8775";"";"61105";
|
||||
"24912211";"";"FTTxCustomerLocation";"Residential";"2495208";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 11:51:49";"Wiesenweg 1";"Kalwang␍";"8775";"";"61105";
|
||||
"24915674";"";"FTTxCustomerLocation";"Residential";"2671104";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 11:45:14";"""Sonnenweg 2 """"Kalwang, Sonnenweg"""" 2""";"Kalwang␍";"8775";"";"61105";
|
||||
"24915851";"";"FTTxCustomerLocation";"Residential";"2683568";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:23:05";"Brudergarten 4";"Kalwang␍";"8775";"";"61105";
|
||||
"24916862";"";"FTTxCustomerLocation";"Residential";"2743697";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:20:45";"""Sonnenweg 1 """"Kalwang, Sonnenweg"""" 1""";"Kalwang␍";"8775";"";"61105";
|
||||
"24918770";"";"FTTxCustomerLocation";"Residential";"2845156";1;"Detailed planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof GST 328/18";"Kalwang";"8775";"";"61105";
|
||||
"24919575";"bebaut";"FTTxCustomerLocation";"Residential";"2890381";1;"Detailed planning";0;true;true;"Building";true;"19.12.2022 13:10:35";"Fohlenhof 12";"Kalwang␍";"8775";"";"61105";
|
||||
"11000092";"";"FTTxCustomerLocation";"Greenfield";"11000092";2;"Detailed planning";0;true;true;"Building";true;"08.09.2020 09:36:29";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000094";"";"FTTxCustomerLocation";"Greenfield";"11000094";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 13:59:55";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000095";"";"FTTxCustomerLocation";"Greenfield";"11000095";4;"Detailed planning";0;true;true;"Building";true;"21.08.2020 13:08:19";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000096";"";"FTTxCustomerLocation";"Greenfield";"11000096";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:00:04";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000097";"";"FTTxCustomerLocation";"Greenfield";"11000097";4;"Detailed planning";0;true;true;"Building";true;"18.06.2021 08:14:17";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000098";"";"FTTxCustomerLocation";"Greenfield";"11000098";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:01:26";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000100";"";"FTTxCustomerLocation";"Greenfield";"11000100";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:00:43";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000101";"";"FTTxCustomerLocation";"Greenfield";"11000101";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:00:52";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000102";"";"FTTxCustomerLocation";"Greenfield";"11000102";4;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:03:43";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000103";"";"FTTxCustomerLocation";"Greenfield";"11000103";2;"Detailed planning";0;true;true;"Building";true;"08.09.2020 09:36:20";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000105";"";"FTTxCustomerLocation";"Greenfield";"11000105";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:01:00";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000106";"";"FTTxCustomerLocation";"Greenfield";"11000106";4;"Detailed planning";0;true;true;"Building";true;"26.08.2020 13:58:38";"Brudergarten Kohlbacher 7/8";"Kalwang";"";"";"61105";
|
||||
"11000107";"";"FTTxCustomerLocation";"Greenfield";"11000107";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:00:29";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000108";"";"FTTxCustomerLocation";"Greenfield";"11000108";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:01:08";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000110";"";"FTTxCustomerLocation";"Greenfield";"11000110";2;"Detailed planning";0;true;true;"Building";true;"26.08.2020 14:00:36";"Brudergarten ";"Kalwang";"";"";"61105";
|
||||
"11000111";"";"FTTxCustomerLocation";"Greenfield";"11000111";4;"Detailed planning";0;true;true;"Building";true;"26.08.2020 13:58:31";"Brudergarten Kohlbacher 5/6";"Kalwang";"";"";"61105";
|
||||
"11000114";"";"FTTxCustomerLocation";"Greenfield";"11000114";1;"Detailed planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof GST 328/19";"Kalwang";"8775";"";"61105";
|
||||
"11000116";"";"FTTxCustomerLocation";"Greenfield";"11000116";10;"Detailed planning";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof GST 328/9";"Kalwang";"8775";"";"61105";
|
||||
"11000117";"";"FTTxCustomerLocation";"Greenfield";"11000117";1;"Detailed planning";0;true;true;"Building";true;"05.04.2023 07:09:46";"Fohlenhof GST 328/14";"Kalwang";"8775";"";"61105";
|
||||
"11000119";"";"FTTxCustomerLocation";"Greenfield";"11000119";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:22:00";"Fohlenhof GST 328/17";"Kalwang";"8775";"";"61105";
|
||||
"11000120";"";"FTTxCustomerLocation";"Greenfield";"11000120";1;"Detailed planning";0;true;true;"Building";true;"31.07.2020 15:22:00";"Fohlenhof GST 328/16";"Kalwang";"8775";"";"61105";
|
||||
"25100008";"";"FTTxCustomerLocation";"Multiple dwellings";"";7;"Detailed planning";0;true;true;"Building";false;"31.07.2020 15:20:45";"Kalwang 168";"Leoben";"8775";"";"61105";
|
||||
"25123343";"";"FTTxCustomerLocation";"Greenfield";"";1;"Detailed planning";0;true;true;"Building";false;"07.09.2020 14:27:57";"Kalwang 162";"Leoben";"8775";"";"61105";
|
||||
"25123344";"";"FTTxCustomerLocation";"Greenfield";"";1;"Detailed planning";0;true;true;"Building";false;"07.09.2020 14:27:57";"Kalwang 163";"Leoben";"8775";"";"61105";
|
||||
"25123345";"";"FTTxCustomerLocation";"Greenfield";"";1;"Detailed planning";0;true;true;"Building";false;"07.09.2020 15:00:25";"Kalwang 164";"Leoben";"8775";"";"61105";
|
||||
"24880559";"";"FTTxCustomerLocation";"Public";"1225626";5;"Plan released";0;true;true;"Building";true;"19.12.2022 13:37:49";"Marktstraße 71";"Kalwang␍";"8775";"";"61105";
|
||||
"24880590";"";"FTTxCustomerLocation";"Multiple dwellings";"1225657";3;"Plan released";0;true;true;"Building";true;"19.12.2022 13:03:06";"Marktstraße 29";"Kalwang␍";"8775";"";"61105";
|
||||
"24880591";"";"FTTxCustomerLocation";"Company";"1225658";1;"Plan released";0;true;true;"Building";true;"23.02.2023 10:20:53";"Teichen 2";"Kalwang␍";"8775";"";"61105";
|
||||
"24880594";"";"FTTxCustomerLocation";"Residential";"1225661";1;"Plan released";0;true;true;"Building";true;"19.12.2022 11:49:19";"Teichen 8";"Kalwang␍";"8775";"";"61105";
|
||||
"24880598";"";"FTTxCustomerLocation";"Residential";"1225665";1;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Teichen 5";"Kalwang␍";"8775";"";"61105";
|
||||
"24880599";"";"FTTxCustomerLocation";"Multiple dwellings";"1225666";1;"Plan released";0;true;true;"Building";true;"05.04.2023 06:54:33";"Teichen 1";"Kalwang␍";"8775";"";"61105";
|
||||
"24880600";"";"FTTxCustomerLocation";"Residential";"1225667";1;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 27";"Kalwang␍";"8775";"";"61105";
|
||||
"24880601";"";"FTTxCustomerLocation";"Residential";"1225668";1;"Plan released";0;true;true;"Building";true;"19.12.2022 11:36:47";"Marktstraße 25";"Kalwang␍";"8775";"";"61105";
|
||||
"24880602";"";"FTTxCustomerLocation";"Residential";"1225669";1;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 23";"Kalwang␍";"8775";"";"61105";
|
||||
"24907145";"";"FTTxCustomerLocation";"Residential";"2161141";1;"Plan released";0;true;true;"Building";true;"19.12.2022 13:06:58";"Teichen 9";"Kalwang␍";"8775";"";"61105";
|
||||
"24910025";"";"FTTxCustomerLocation";"Residential";"2367478";1;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Teichen 3";"Kalwang␍";"8775";"";"61105";
|
||||
"24880806";"";"FTTxCustomerLocation";"Multiple dwellings";"1225925";1;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 5";"Sonnberg␍";"8775";"";"61105";
|
||||
"24880809";"";"FTTxCustomerLocation";"Residential";"1225928";1;"Plan released";0;true;true;"Building";true;"07.10.2020 11:44:53";"Marktstraße 17";"Sonnberg␍";"8775";"";"61105";
|
||||
"24880810";"";"FTTxCustomerLocation";"Residential";"1225929";1;"Plan released";0;true;true;"Building";true;"05.04.2023 06:55:16";"Marktstraße 15";"Sonnberg␍";"8775";"";"61105";
|
||||
"24880811";"";"FTTxCustomerLocation";"Multiple dwellings";"1225930";1;"Plan released";0;true;true;"Building";true;"22.02.2021 09:48:04";"Marktstraße 21";"Sonnberg␍";"8775";"";"61105";
|
||||
"24899800";"";"FTTxCustomerLocation";"Multiple dwellings";"1725136";1;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 13";"Sonnberg␍";"8775";"";"61105";
|
||||
"24905156";"";"FTTxCustomerLocation";"Residential";"2014027";1;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße 7";"Sonnberg␍";"8775";"";"61105";
|
||||
"24907146";"";"FTTxCustomerLocation";"Residential";"2161142";1;"Plan released";0;true;true;"Building";true;"07.10.2020 11:44:53";"Marktstraße 19";"Sonnberg␍";"8775";"";"61105";
|
||||
"11000125";"";"FTTxCustomerLocation";"Greenfield";"11000125";0;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße GST 291/9";"Kalwang";"";"";"61105";
|
||||
"11000126";"";"FTTxCustomerLocation";"Greenfield";"11000126";0;"Plan released";0;true;true;"Building";true;"18.07.2022 16:18:06";"Marktstraße GST 291/10";"Kalwang";"";"";"61105";
|
||||
"11000112";"";"FTTxCustomerLocation";"Greenfield";"11000112";1;"Documented";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof GST 328/22";"Kalwang";"8775";"";"61105";
|
||||
"11000113";"";"FTTxCustomerLocation";"Greenfield";"11000113";1;"Documented";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof GST 328/21";"Kalwang";"8775";"";"61105";
|
||||
"11000115";"";"FTTxCustomerLocation";"Greenfield";"11000115";1;"Documented";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof GST 328/20";"Kalwang";"8775";"";"61105";
|
||||
"11000121";"";"FTTxCustomerLocation";"Greenfield";"11000121";1;"Documented";0;true;true;"Building";true;"18.07.2022 16:18:06";"Fohlenhof GST 328/10";"Kalwang";"8775";"";"61105";
|
||||
"24880582";"";"FTTxCustomerLocation";"Company";"1225649";0;"Canceled";0;false;false;"Building";true;"19.12.2022 11:28:05";"Marktstraße 37";"Kalwang";"";"";"61105";
|
||||
"24880592";"";"FTTxCustomerLocation";"Residential";"1225659";1;"Canceled";0;false;false;"Building";true;"26.07.2022 20:26:59";"Teichen 6";"Kalwang␍";"8775";"";"61105";
|
||||
"24880607";"";"FTTxCustomerLocation";"Other";"1225676";0;"Canceled";0;false;false;"Building";true;"07.10.2019 09:33:41";"Kaiblingergasse 2";"Kalwang␍";"8775";"";"61105";
|
||||
"24880717";"";"FTTxCustomerLocation";"Other";"1225794";0;"Canceled";0;false;false;"Building";true;"19.12.2022 08:28:14";"Kirchplatz 5 Kirche";"Kalwang␍";"8775";"";"61105";
|
||||
"24910283";"";"FTTxCustomerLocation";"Other";"2389464";0;"Canceled";0;false;false;"Building";true;"19.12.2022 08:51:40";"Feldgasse 5 Privatgarage";"Kalwang␍";"8775";"";"61105";
|
||||
"24910284";"";"FTTxCustomerLocation";"Other";"2389465";0;"Canceled";0;false;false;"Building";true;"18.07.2022 16:18:06";"Bachgasse 21 Privatgarage";"Kalwang␍";"8775";"";"61105";
|
||||
"24910285";"";"FTTxCustomerLocation";"Other";"2389466";0;"Canceled";0;false;false;"Building";true;"07.10.2019 10:19:06";"""Sonnenweg 8 Privatgarage """"Kalwang, Sonnenweg"""" Privatgarage""";"Kalwang␍";"8775";"";"61105";
|
||||
"11000035";"";"FTTxCustomerLocation";"Greenfield";"11000035";0;"Canceled";0;false;false;"Building";true;"05.05.2022 08:25:43";"";"Kalwang";"";"";"61105";
|
||||
"11000047";"";"FTTxCustomerLocation";"Greenfield";"11000047";3;"Canceled";0;false;false;"Building";true;"20.09.2022 11:36:17";"";"Kalwang";"";"";"61105";
|
||||
"11000050";"";"FTTxCustomerLocation";"Greenfield";"11000050";1;"Canceled";0;false;false;"Building";true;"11.07.2022 15:07:55";"";"Kalwang";"";"";"61105";
|
||||
"11000118";"Pflegeheim";"FTTxCustomerLocation";"Greenfield";"11000118";2;"Canceled";0;false;false;"Building";true;"11.11.2021 14:52:21";"Fohlenhof GST 328/8";"Kalwang";"8775";"";"61105";
|
||||
"11000122";"";"FTTxCustomerLocation";"Greenfield";"11000122";1;"Canceled";0;false;false;"Building";true;"05.05.2022 08:17:23";"Fohlenhof GST 301/4";"Kalwang";"8775";"";"61105";
|
||||
"11000123";"";"FTTxCustomerLocation";"Greenfield";"11000123";8;"Canceled";0;false;false;"Building";true;"04.10.2022 13:12:55";"Fohlenhofweg ";"Kalwang";"";"";"61105";
|
||||
"24910280";"";"FTTxCustomerLocation";"Other";"2389461";0;"Canceled";0;false;false;"Building";true;"18.09.2019 09:06:17";"Hochstraße 10 Privatgarage";"Schattenberg␍";"8775";"";"61105";
|
||||
|
Reference in New Issue
Block a user