"""Reader of CDAU CSV files."""
import logging
import os
import re
from collections import defaultdict
from datetime import datetime
from qgis.core import QgsCoordinateReferenceSystem, QgsFeature
from catatom2osm import config, download, geo
from catatom2osm.exceptions import CatIOError, CatValueError
from catatom2osm.report import instance as report
log = logging.getLogger(config.app_name)
andalucia = {
"04": "Almeria",
"11": "Cadiz",
"14": "Cordoba",
"18": "Granada",
"21": "Huelva",
"23": "Jaen",
"29": "Malaga",
"41": "Sevilla",
"53": "Cadiz",
}
cdau_url = (
"https://www.juntadeandalucia.es/institutodeestadisticaycartografia/"
"cdau/portales/{}"
)
csv_name = "portal_{}.csv"
meta_url = (
"https://www.callejerodeandalucia.es/portal/informaci%C3%B3n-alfanum%C3%A9rica"
)
cdau_crs = 25830
cdau_thr = 5 # Threshold in meters to conflate Cadastre addresses
cod_mun_trans = {
"04": {40: 901, 104: 902, 105: 903, 900: 13},
"11": {43: 901, 44: 902, 45: 903, 900: 12},
"14": {900: 21},
"18": {
20: 911,
53: 908,
59: 907,
63: 119,
83: 905,
92: 906,
105: 910,
106: 103,
120: 903,
130: 904,
132: 902,
141: 909,
163: 901,
199: 912,
200: 913,
900: 87,
},
"21": {79: 60, 900: 41},
"23": {13: 902, 23: 901, 78: 904, 100: 903, 102: 905, 900: 50},
"29": {102: 902, 103: 901, 900: 67},
"41": {103: 901, 104: 902, 105: 903, 900: 91},
}
highway_types_equiv = {
"ACCESO": "AC",
"ALAMEDA": "AL",
"ARROYO": "AY",
"AUTOPISTA": "AU",
"AUTOVIA": "AU",
"AVENIDA": "AV",
"BARRIO": "BO",
"BAJADA": "BJ",
"BARRANCO": "BR",
"BULEVAR": "BV",
"CALLE": "CL",
"CAÑADA": "CA",
"CASERIO": "CS",
"CALZADA": "CZ",
"CINTURON": "CI",
"CONCEJO, COLEGIO": "CO",
"DISEMINADO": "DS",
"EXPLANADA": "EX",
"EXTRAMUROS": "EM",
"EXTRARRADIO": "ER",
"GRAN VIA": "GV",
"GRUPO": "GR",
"GLORIETA": "GL",
"HUERTA, HUERTO": "HT",
"JARDINES": "JR",
"LUGAR": "LG",
"MONTE": "MT",
"MUELLE": "ML",
"PASEO": "PS",
"POBLADO": "PB",
"PLAZA": "PZ",
"PUENTE": "PT",
"POLIGONO": "PL",
"RAMAL": "RM",
"RAMBLA": "RB",
"RONDA": "RD",
"SUBIDA": "SU",
"SECTOR": "SC",
"URBANIZACION": "UR",
}
[documentos]def cod_mun_cat2ine(cod_mun_cat):
"""Return the INE municipality code from the Cadastre code."""
cod_prov = cod_mun_cat[0:2]
cod_mun = int(cod_mun_cat[2:])
if cod_prov == "18":
if cod_mun in list(cod_mun_trans[cod_prov].keys()):
cod_mun = cod_mun_trans[cod_prov][cod_mun]
else:
if cod_mun in range(64, 120) or cod_mun in range(137, 143):
cod_mun -= 2
elif cod_mun in range(144, 184):
cod_mun -= 3
elif cod_mun in range(185, 199):
cod_mun -= 4
else:
cod_mun -= 1
elif cod_prov == "21":
cod_mun = cod_mun_trans[cod_prov].get(
cod_mun, cod_mun + 1 if cod_mun > 59 else cod_mun
)
elif cod_prov == "53":
cod_prov = "11"
cod_mun = cod_mun_trans[cod_prov].get(cod_mun, cod_mun)
else:
cod_mun = cod_mun_trans[cod_prov].get(cod_mun, cod_mun)
cod_mun_ine = "{}{:03d}".format(cod_prov, cod_mun)
return cod_mun_ine
[documentos]def get_cat_address(ad, cod_mun_cat):
"""Convert CDAU addresses to Cadastre attributes."""
attr = {}
attr["localId"] = "{}.{}.{}.{}".format(
cod_mun_cat[:2], cod_mun_cat[2:], ad["dgc_via"], ad["refcatparc"]
)
nom_tip_via = highway_types_equiv.get(ad["nom_tip_via"], ad["nom_tip_via"])
attr["TN_text"] = "{} {}".format(str(nom_tip_via), str(ad["nom_via"]))
attr["postCode"] = ad["cod_postal"]
attr["spec"] = "Entrance"
to = "{}{}".format(ad["num_por_hasta"] or "", ad["ext_hasta"] or "")
attr["designator"] = "{}{}".format(ad["num_por_desde"] or "", ad["ext_desde"] or "")
if to:
attr["designator"] += "-" + to
return attr
[documentos]class Reader(object):
"""Class to download and read CDAU CSV files."""
def __init__(self, a_path):
"""
Construct a CDAU reader.
Args:
a_path (str): Directory where the source files are located.
"""
self.path = a_path
if not os.path.exists(a_path):
os.makedirs(a_path)
if not os.path.isdir(a_path):
raise CatIOError(_("Not a directory: '%s'") % a_path)
self.crs_ref = cdau_crs
self.src_date = None
[documentos] def read(self, prov_code):
if prov_code not in list(andalucia.keys()):
msg = _("Province code '%s' is not valid") % prov_code
raise CatValueError(msg)
csv_fn = csv_name.format(andalucia[prov_code])
csv_path = os.path.join(self.path, csv_fn)
if not os.path.exists(csv_path):
log.info(_("Downloading '%s'"), csv_path)
url = cdau_url.format(csv_fn)
download.wget(url, csv_path)
csv = geo.BaseLayer(csv_path, csv_fn, "ogr")
if not csv.isValid():
raise CatIOError(_("Failed to load layer '%s'") % csv_path)
csv.setCrs(QgsCoordinateReferenceSystem.fromEpsgId(cdau_crs))
log.info(_("Read %d features in '%s'"), csv.featureCount(), csv_path)
self.get_metadata(csv_path.replace(".csv", ".txt"))
csv.source_date = self.src_date
return csv
[documentos]def conflate(cdau_address, cat_address, cod_mun_cat, split=None):
"""Conflate CDAU over Cadastre addresses datasets."""
cod_mun = cod_mun_cat2ine(cod_mun_cat)
q = "ine_mun='{}' and (tipo_portal_pk='{}' or tipo_portal_pk='{}')"
exp = q.format(cod_mun, "PORTAL", "ACCESORIO")
c = 0
addresses = defaultdict(list)
index = cat_address.get_index()
to_add = []
to_change = {}
to_change_g = {}
crs_transform = cat_address.get_crs_transform(cdau_address.crs(), cat_address.crs())
for feat in cat_address.getFeatures():
g = feat["localId"].split(".")
ref = ".".join(g[:3] + g[4:])
addresses[ref].append(feat)
for ad in cdau_address.search(exp):
c += 1
attr = get_cat_address(ad, cod_mun_cat)
ref = attr["localId"]
pt = geo.Point(float(ad["x"]), float(ad["y"]))
if cat_address.crs() != cdau_address.crs():
g = geo.Geometry.fromPointXY(pt)
g.transform(crs_transform)
pt = g.asPoint()
if split is not None:
if not split.is_inside(g):
continue
if len(addresses[ref]) == 0: # can't resolve cadastral reference
area_of_candidates = geo.Point(pt).boundingBox(cdau_thr)
fids = index.intersects(area_of_candidates)
if len(fids) == 0: # no close cadastre address
feat = QgsFeature(cat_address.fields())
for key, value in list(attr.items()):
feat[key] = value
feat.setGeometry(geo.Geometry.fromPointXY(pt))
to_add.append(feat) # add new
else: # get nearest
min_dist = 100
candidate = None
for feat in addresses[ref]:
dist = feat.geometry().asPoint().sqrDist(pt)
if dist < min_dist:
min_dist = dist
candidate = feat
if candidate is not None: # update existing
to_change_g[candidate.id()] = geo.Geometry.fromPointXY(pt)
for key, value in list(attr.items()):
candidate[key] = value
to_change[candidate.id()] = geo.get_attributes(candidate)
log.info(_("Parsed %d addresses from '%s'"), c, "CDAU")
report.inp_address_cdau = c
if to_change:
cat_address.writer.changeAttributeValues(to_change)
cat_address.writer.changeGeometryValues(to_change_g)
log.info(_("Replaced %d addresses from '%s'"), len(to_change), "CDAU")
report.rep_address_cdau = len(to_change)
cat_address.source_date = cdau_address.source_date
report.address_date = cdau_address.source_date
if to_add:
cat_address.writer.addFeatures(to_add)
log.info(_("Added %d addresses from '%s'"), len(to_add), "CDAU")
report.add_address_cdau = len(to_add)
report.inp_address += len(to_add)
report.inp_address_entrance += len(to_add)
cat_address.source_date = cdau_address.source_date
report.address_date = cdau_address.source_date