mn1_rec.py 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785
  1. '''
  2. Schéma de validation des données MN1
  3. @author: olivier.massot, 2018
  4. '''
  5. import logging
  6. from qgis.core import QgsProject #@UnresolvedImport
  7. from MnCheck.core.cerberus_ import is_float, is_multi_int, is_int, \
  8. is_modern_french_date, CerberusValidator, CerberusErrorHandler, \
  9. _translate_messages, is_positive_float, is_positive_int, \
  10. is_strictly_positive_float, is_strictly_positive_int
  11. from MnCheck.core.checking import BaseChecker, CheckingException
  12. from MnCheck.core.mncheck import QgsModel
  13. logger = logging.getLogger("mncheck")
  14. SCHEMA_NAME = "Schéma MN v1 REC"
  15. XMIN, XMAX, YMIN, YMAX = 1341999, 1429750, 8147750, 8294000
  16. CRS = 'EPSG:3949' # Coordinate Reference System
  17. TOLERANCE = 0.5
  18. class Artere(QgsModel):
  19. layername = "artere_geo"
  20. geom_type = QgsModel.GEOM_LINE
  21. crs = CRS
  22. bounding_box = (XMIN,YMIN,XMAX,YMAX)
  23. schema = {'AR_ID_INSE': {'type': 'string', 'empty': False, 'regex': r'50\d{3}'},
  24. 'AR_LONG': {'empty': False, 'validator': is_positive_float},
  25. 'AR_ETAT': {'type': 'string', 'empty': False, 'allowed': ['0', '1', '2', '3', '4']},
  26. 'AR_OCCP': {'type': 'string', 'empty': False, 'allowed': ['0', '1.1', '1.2', '2', '3', '4']},
  27. 'AR_NOEUD_A': {'type': 'string', 'empty': False, 'maxlength': 30},
  28. 'AR_NOEUD_B': {'type': 'string', 'empty': False, 'maxlength': 30},
  29. 'AR_NB_FOUR': {'empty': True, 'validator': is_multi_int},
  30. 'AR_FOU_DIS': {'empty': True, 'validator': is_int},
  31. 'AR_TYPE_FO': {'type': 'string', 'multiallowed': ['PVC', 'PEHD', 'SOUS-TUBAGE PEHD', 'SOUS-TUBAGE SOUPLE', 'FACADE', 'AERIEN', 'ENCORBELLEMENT', 'AUTRE']},
  32. 'AR_DIAM_FO': {'type': 'string', 'multiallowed': ['10', '14', '18', '25', '28', '32', '40', '45', '60', '80', '150', 'NUL', '']},
  33. 'AR_PRO_FOU': {'type': 'string', 'multiallowed': ['MANCHE NUMERIQUE', 'COLLECTIVITE', 'ORANGE', 'PRIVE', 'ERDF', 'ENEDIS', 'SDEM', 'AUTRE']},
  34. 'AR_PRO_CAB': {'type': 'string', 'empty': False, 'allowed': ['MANCHE NUMERIQUE']},
  35. 'AR_GEST_FO': {'type': 'string', 'multiallowed': ['MANCHE NUMERIQUE', 'MANCHE TELECOM', 'COLLECTIVITE', 'ORANGE', 'MANCHE FIBRE', 'PRIVE', 'ERDF', 'ENEDIS', 'SDEM', 'AUTRE', 'NUL']},
  36. 'AR_UTIL_FO': {'type': 'string', 'multiallowed': ['MANCHE NUMERIQUE', 'MANCHE TELECOM', 'COLLECTIVITE', 'ORANGE', 'MANCHE FIBRE', 'PRIVE', 'AUTRE', 'SDEM', 'NUL', '']},
  37. 'AR_DATE_IN': {'empty': True, 'validator': is_modern_french_date},
  38. 'AR_DATE_RE': {'empty': True, 'validator': is_modern_french_date},
  39. 'AR_REF_PLA': {'type': 'string', 'maxlength': 100},
  40. 'AR_SRC_GEO': {'type': 'string', 'empty': True, 'maxlength': 50},
  41. 'AR_QLT_GEO': {'type': 'string', 'empty': False, 'allowed': ['A', 'B', 'C']},
  42. 'AR_PRO_MD': {'type': 'string', 'empty': False, 'default': 'MANCHE NUMERIQUE', 'allowed': ['MANCHE NUMERIQUE']},
  43. 'AR_COMMENT': {'type': 'string', 'maxlength': 300, 'empty': True},
  44. 'AR_STATUT': {'type': 'string', 'empty': False, 'allowed': ['APS', 'APD', 'EXE', 'REC']}}
  45. def __repr__(self):
  46. try:
  47. return f"Artere {self.AR_NOEUD_A}-{self.AR_NOEUD_B}"
  48. except AttributeError:
  49. return f"Artere (code manquant)"
  50. class Cable(QgsModel):
  51. layername = "cable_geo"
  52. geom_type = QgsModel.GEOM_LINE
  53. crs = CRS
  54. bounding_box = (XMIN,YMIN,XMAX,YMAX)
  55. pk = "CA_NUMERO"
  56. schema = {'CA_NUMERO': {'type': 'string', 'maxlength': 30},
  57. 'CA_TYPE': {'type': 'string', 'maxlength': 10, 'empty': False, 'allowed': ['AERIEN', 'IMMEUBLE', 'FACADE', 'MIXTE', 'SOUTERRAIN']},
  58. 'CA_ETAT': {'type': 'string', 'maxlength': 1, 'empty': False, 'allowed': ['0', '1', '2', '3', '4']},
  59. 'CA_LONG': {'validator': is_strictly_positive_float},
  60. 'CA_EQ_A': {'type': 'string', 'maxlength': 30},
  61. 'CA_EQ_B': {'type': 'string', 'maxlength': 30},
  62. 'CA_DIAMETR': {'empty': False, 'validator': is_positive_float},
  63. 'CA_COULEUR': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['NOIR', 'BLEU', 'BLANC']},
  64. 'CA_TECHNOL': {'type': 'string', 'maxlength': 17, 'empty': False, 'allowed': ['G657A2_M6', 'G657A2_M12']},
  65. 'CA_NB_FO': {'empty': False, 'validator': is_strictly_positive_int},
  66. 'CA_NB_FO_U': {'empty': False, 'validator': is_positive_int},
  67. 'CA_NB_FO_D': {'empty': False, 'validator': is_positive_int},
  68. 'CA_PRO': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['MANCHE NUMERIQUE']},
  69. 'CA_GEST': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['MANCHE FIBRE']},
  70. 'CA_DATE_IN': {'empty': True, 'validator': is_modern_french_date},
  71. 'CA_COMMENT': {'type': 'string', 'maxlength': 300, 'empty': True},
  72. 'CA_STATUT': {'type': 'string', 'maxlength': 14, 'empty': False, 'allowed': ['APS', 'APD', 'EXE', 'REC']}}
  73. def __repr__(self):
  74. try:
  75. return f"Cable {self.CA_EQ_A}-{self.CA_EQ_B}"
  76. except AttributeError:
  77. return f"Cable (code manquant)"
  78. class Equipement(QgsModel):
  79. layername = "equipement_passif"
  80. geom_type = QgsModel.GEOM_POINT
  81. crs = CRS
  82. bounding_box = (XMIN,YMIN,XMAX,YMAX)
  83. pk = "EQ_NOM"
  84. schema = {'EQ_NOM': {'type': 'string', 'maxlength': 30, 'contains_any_of': ['PBO', 'BPE', 'BAI']},
  85. 'EQ_NOM_NOE': {'type': 'string', 'maxlength': 30},
  86. 'EQ_ETAT': {'type': 'string', 'maxlength': 1, 'empty': False, 'allowed': ['0', '1', '2', '3', '4']},
  87. 'EQ_OCCP': {'type': 'string', 'maxlength': 3, 'empty': False, 'allowed': ['0', '1.1', '1.2', '2', '3', '4']},
  88. 'EQ_TYPE': {'type': 'string', 'empty': False, 'allowed': ['PBO', 'PBOE', 'BPE', 'BAI']},
  89. 'EQ_TYPE_LQ': {'type': 'string', 'maxlength': 6, 'empty': False, 'allowed': ['PBO', 'BPE JB', 'BPE JD', 'BAIDC', 'BAIOP']},
  90. 'EQ_TYPE_PH': {'type': 'string', 'maxlength': 24, 'empty': False, 'allowed': ['PBO 6', 'PBO 12', 'BPE 12EP', 'BPE 24EP', 'BPE 48EP', 'BPE 72EP', 'BPE 96EP', 'BPE 144EP', 'BPE 288EP', 'BPE 576EP', 'BPE 720EP', 'BAI']},
  91. 'EQ_PRO': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['MANCHE NUMERIQUE', 'COLLECTIVITE', 'ORANGE', 'PRIVE', 'AUTRE', 'NUL']},
  92. 'EQ_GEST': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['MANCHE NUMERIQUE', 'MANCHE TELECOM', 'COLLECTIVITE', 'ORANGE', 'MANCHE FIBRE', 'PRIVE', 'AUTRE', 'NUL']},
  93. 'EQ_HAUT': {'empty': True, 'validator': is_float},
  94. 'EQ_DATE_IN': {'empty': True, 'validator': is_modern_french_date},
  95. 'EQ_COMMENT': {'type': 'string', 'maxlength': 300, 'empty': True},
  96. 'EQ_STATUT': {'type': 'string', 'maxlength': 14, 'empty': False, 'allowed': ['APS', 'APD', 'EXE', 'REC']}}
  97. class Noeud(QgsModel):
  98. layername = "noeud_geo"
  99. geom_type = QgsModel.GEOM_POINT
  100. crs = CRS
  101. bounding_box = (XMIN,YMIN,XMAX,YMAX)
  102. pk = "NO_NOM"
  103. schema = {'NO_NOM': {'type': 'string', 'maxlength': 30},
  104. 'NO_ID_INSE': {'type': 'string', 'empty': False, 'regex': r'50\d{3}'},
  105. 'NO_VOIE': {'type': 'string', 'empty': False, 'maxlength': 100},
  106. 'NO_ETAT': {'type': 'string', 'maxlength': 1, 'empty': False, 'allowed': ['0', '1', '2', '3', '4']},
  107. 'NO_OCCP': {'type': 'string', 'maxlength': 3, 'empty': False, 'allowed': ['0', '1.1', '1.2', '2', '3', '4']},
  108. 'NO_TYPE': {'type': 'string', 'maxlength': 3, 'empty': False, 'allowed': ['CHA', 'POT', 'LTE', 'SEM', 'FAC', 'OUV', 'IMM']},
  109. 'NO_TYPE_LQ': {'type': 'string', 'maxlength': 10, 'empty': False, 'allowed': ['CHTIR', 'CHRACC', 'POT', 'NRO', 'PM', 'MIMO', 'FAC', 'OUV', 'IMM']},
  110. 'NO_TYPE_PH': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['CHAMBRE', 'POTEAU', 'ARMOIRE', 'SHELTER', 'BATIMENT', 'SITE MIMO', 'FACADE', 'OUVRAGE', 'IMMEUBLE']},
  111. 'NO_CODE_PH': {'type': 'string', 'maxlength': 20},
  112. 'NO_TECH_PS': {'type': 'string', 'maxlength': 20, 'empty': True, 'multiallowed': ['COAX', 'CUT', 'ECL', 'ELEC', 'VP', 'OPT', 'NC']},
  113. 'NO_AMO': {'type': 'string', 'maxlength': 30},
  114. 'NO_PLINOX': {'required': False, 'type': 'string', 'maxlength': 3, 'allowed': ['OUI', 'NON']},
  115. 'NO_X': {'empty': True, 'validator': is_float},
  116. 'NO_Y': {'empty': True, 'validator': is_float},
  117. 'NO_PRO': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['MANCHE NUMERIQUE', 'COLLECTIVITE', 'ORANGE', 'ERDF', 'ENEDIS', 'PRIVE', 'SDEM', 'AUTRE', 'NUL']},
  118. 'NO_GEST': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['MANCHE NUMERIQUE', 'MANCHE TELECOM', 'COLLECTIVITE', 'ORANGE', 'ERDF', 'ENEDIS', 'SDEM', 'MANCHE FIBRE', 'PRIVE', 'AUTRE', 'NUL']},
  119. 'NO_HAUT': {'empty': True, 'validator': is_float},
  120. 'NO_DATE_IN': {'empty': True, 'validator': is_modern_french_date},
  121. 'NO_REF_PLA': {'type': 'string', 'maxlength': 100},
  122. 'NO_SRC_GEO': {'type': 'string', 'empty': True, 'maxlength': 50},
  123. 'NO_QLT_GEO': {'type': 'string', 'maxlength': 1, 'empty': False, 'allowed': ['A', 'B', 'C']},
  124. 'NO_PRO_MD': {'type': 'string', 'maxlength': 20, 'empty': False, 'allowed': ['MANCHE NUMERIQUE']},
  125. 'NO_COMMENT': {'type': 'string', 'maxlength': 300, 'empty': True},
  126. 'NO_STATUT': {'type': 'string', 'maxlength': 14, 'empty': False, 'allowed': ['APS', 'APD', 'EXE', 'REC']}}
  127. class Tranchee(QgsModel):
  128. layername = "tranchee_geo"
  129. geom_type = QgsModel.GEOM_LINE
  130. crs = CRS
  131. bounding_box = (XMIN,YMIN,XMAX,YMAX)
  132. schema = {'TR_ID_INSE': {'type': 'string', 'empty': False, 'regex': r'50\d{3}'},
  133. 'TR_VOIE': {'type': 'string', 'empty': False, 'maxlength': 200},
  134. 'TR_TYP_IMP': {'type': 'string', 'empty': False, 'allowed': ['ACCOTEMENT STABILISE', 'ACCOTEMENT NON STABILISE', 'CHAUSSEE LOURDE', 'CHAUSSEE LEGERE', 'FOSSE', 'TROTTOIR', 'ESPACE VERT', 'ENCORBELLEMENT']},
  135. 'TR_MOD_POS': {'type': 'string', 'empty': False, 'allowed': ['TRADITIONNEL', 'MICRO TRANCHEE', 'FONCAGE 60', 'FONCAGE 90', 'FONCAGE 120', 'TRANCHEUSE', 'FORAGE URBAIN', 'FORAGE RURAL', 'ENCORBELLEMENT']},
  136. 'TR_LONG': {'empty': False, 'validator': is_strictly_positive_float},
  137. 'TR_LARG': {'empty':True, 'validator': is_strictly_positive_float},
  138. 'TR_REVET': {'empty':True, 'type': 'string', 'allowed': ['SABLE', 'BICOUCHE', 'ENROBE', 'GRAVIER', 'BETON', 'PAVE', 'TERRAIN NATUREL']},
  139. 'TR_CHARGE': {'empty':True, 'validator': is_positive_float},
  140. 'TR_GRILLAG': {'empty':True, 'validator': is_positive_float},
  141. 'TR_REMBLAI': {'type': 'string', 'maxlength': 50},
  142. 'TR_PLYNOX': {'type': 'string', 'empty': False, 'allowed': ['OUI', 'NON']},
  143. 'TR_PRO_VOI': {'type': 'string', 'empty': False, 'allowed': ['COMMUNE', 'COMMUNAUTE DE COMMUNES', 'DEPARTEMENT', 'ETAT', 'PRIVE']},
  144. 'TR_GEST_VO': {'type': 'string', 'empty': False, 'allowed': ['COMMUNE', 'COMMUNAUTE DE COMMUNES', 'DEPARTEMENT', 'ETAT', 'PRIVE']},
  145. 'TR_SCHEMA': {'maxlength': 100, 'empty': False, 'type': 'string'},
  146. 'TR_DATE_IN': {'empty': True, 'validator': is_modern_french_date},
  147. 'TR_SRC_GEO': {'type': 'string', 'empty': True, 'maxlength': 50},
  148. 'TR_QLT_GEO': {'type': 'string', 'empty': False, 'allowed': ['A', 'B', 'C']},
  149. 'TR_PRO_MD': {'type': 'string', 'empty': False, 'maxlength': 20, 'allowed': ['MANCHE NUMERIQUE']},
  150. 'TR_COMMENT': {'type': 'string', 'maxlength': 300, 'empty': True},
  151. 'TR_STATUT': {'type': 'string', 'empty': False, 'allowed': ['APS', 'APD', 'EXE', 'REC']}}
  152. def __repr__(self):
  153. try:
  154. return f"Tranchee {self.TR_VOIE}"
  155. except AttributeError:
  156. return f"Tranchee (voie manquante)"
  157. class Zapbo(QgsModel):
  158. layername = "zapbo_geo"
  159. required = False
  160. geom_type = QgsModel.GEOM_POLYGON
  161. crs = CRS
  162. bounding_box = (XMIN,YMIN,XMAX,YMAX)
  163. pk = "ID_ZAPBO"
  164. schema = {'ID_ZAPBO': {'type': 'string', 'empty': False, 'maxlength': 30, 'contains_any_of': ['PBO', 'BPE', 'PEC', 'BAI']},
  165. 'COMMENTAIR': {'type': 'string', 'maxlength': 254, 'empty': True},
  166. 'STATUT': {'type': 'string', 'empty': False, 'allowed': ['APS', 'APD', 'EXE', 'REC']}}
  167. models = [Artere, Cable, Equipement, Noeud, Tranchee, Zapbo]
  168. class Prise(QgsModel):
  169. layername = "FTTH_SITES_GEO_VALIDE"
  170. layername_bis = "SITE_GEO"
  171. pk = "ID_PRISE"
  172. ####### Validateur
  173. class Mn1Checker(BaseChecker):
  174. def setUp(self):
  175. self.dataset = {}
  176. for model in models:
  177. model.layer = next((l for l in QgsProject.instance().mapLayers().values() \
  178. if l.name().lower() == model.layername.lower()), None)
  179. self.dataset[model] = [model(f) for f in model.layer.getFeatures()] if model.layer else []
  180. self.arteres = self.dataset.get(Artere, [])
  181. self.cables = self.dataset.get(Cable, [])
  182. self.equipements = self.dataset.get(Equipement, [])
  183. self.noeuds = self.dataset.get(Noeud, [])
  184. self.tranchees = self.dataset.get(Tranchee, [])
  185. self.zapbos = self.dataset.get(Zapbo, [])
  186. for artere in self.arteres:
  187. artere.noeud_a = next((n for n in self.noeuds if n.NO_NOM == artere.AR_NOEUD_A), None)
  188. artere.noeud_b = next((n for n in self.noeuds if n.NO_NOM == artere.AR_NOEUD_B), None)
  189. for cable in self.cables:
  190. cable.equipement_a = next((e for e in self.equipements if e.EQ_NOM == cable.CA_EQ_A), None)
  191. cable.equipement_b = next((e for e in self.equipements if e.EQ_NOM == cable.CA_EQ_B), None)
  192. for equipement in self.equipements:
  193. equipement.noeud = next((n for n in self.noeuds if n.NO_NOM == equipement.EQ_NOM_NOE), None)
  194. self.prises = []
  195. Prise.layer = next((l for l in QgsProject.instance().mapLayers().values() \
  196. if l.name().lower() in [Prise.layername.lower(), Prise.layername_bis.lower()]), None)
  197. # Zapm partielles concernées, déduites des prises
  198. self.zapm_pa = []
  199. def _load_prises(self):
  200. """ on charge la couche des prises si elle existe et qu'elle n'est pas déjà chargée """
  201. if not self.prises:
  202. self.prises = []
  203. self.zapmp = []
  204. if Prise.layer:
  205. prises = [Prise(f) for f in Prise.layer.getFeatures()]
  206. self.prises = [p for p in prises if p.T_ETAT.lower() != "obsolete"]
  207. for prise in self.prises:
  208. prise.zapbos = []
  209. if self.zapbos:
  210. for zapbo in self.zapbos:
  211. zapbo.prises = []
  212. for prise in self.prises:
  213. if zapbo.geom.contains(prise.geom):
  214. zapbo.prises.append(prise)
  215. prise.zapbos.append(zapbo)
  216. if not prise.ID_ZAPM_PA in self.zapm_pa:
  217. # la prise est dans une zapbo: on ajoute son id de zapm partielles à la liste
  218. self.zapm_pa.append(prise.ID_ZAPM_PA)
  219. def test_load_layers(self):
  220. """ Chargement des données
  221. Contrôle la présence des couches attendues
  222. """
  223. for model in models:
  224. if model.layer is None:
  225. if model.required:
  226. self.log_critical("Couche manquante", model=model)
  227. else:
  228. self.log_error("Couche manquante", model=model)
  229. continue
  230. if model.pk:
  231. if not model.pk.lower() in [f.name().lower() for f in model.layer.fields()]:
  232. self.log_error(f"Clef primaire manquante ({model.pk})", model=model)
  233. def test_scr(self):
  234. """ Contrôle des projections
  235. Vérifie que les couches ont le bon sytème de projection
  236. """
  237. for model in models:
  238. if model.layer and model.layer.crs().authid() != model.crs:
  239. self.log_error(f"Mauvaise projection (attendu: {model.crs})", model=model)
  240. def _validate_structure(self, model, items):
  241. v = CerberusValidator(model.schema, purge_unknown=True, error_handler=CerberusErrorHandler, require_all=True)
  242. for item in items:
  243. v.validate(item.__dict__)
  244. for field, verrors in v.errors.items():
  245. for err in verrors:
  246. self.log_error(f"{field} : {_translate_messages(err)}", item=item)
  247. def test_structure_arteres(self):
  248. """ Structure des données: Artères
  249. Contrôle les données attributaires de la couche ARTERE_GEO:
  250. présence, format, valeurs autorisées...
  251. """
  252. self._validate_structure(Artere, self.arteres)
  253. def test_structure_cables(self):
  254. """ Structure des données: Cables
  255. Contrôle les données attributaires de la couche CABLE_GEO:
  256. présence, format, valeurs autorisées...
  257. """
  258. self._validate_structure(Cable, self.cables)
  259. def test_structure_equipements(self):
  260. """ Structure des données: Equipements
  261. Contrôle les données attributaires de la couche EQUIPEMENT_GEO:
  262. présence, format, valeurs autorisées...
  263. """
  264. self._validate_structure(Equipement, self.equipements)
  265. def test_structure_noeuds(self):
  266. """ Structure des données: Noeuds
  267. Contrôle les données attributaires de la couche NOEUD_GEO:
  268. présence, format, valeurs autorisées...
  269. """
  270. self._validate_structure(Noeud, self.noeuds)
  271. def test_structure_tranchees(self):
  272. """ Structure des données: Tranchées
  273. Contrôle les données attributaires de la couche TRANCHEE_GEO:
  274. présence, format, valeurs autorisées...
  275. """
  276. self._validate_structure(Tranchee, self.tranchees)
  277. def test_structure_zapbos(self):
  278. """ Structure des données: Zapbos
  279. Contrôle les données attributaires de la couche ZAPBO_GEO:
  280. présence, format, valeurs autorisées...
  281. """
  282. self._validate_structure(Zapbo, self.zapbos)
  283. def test_geometry_validity(self):
  284. """ Contrôle de la validité des géométries
  285. """
  286. for model in models:
  287. for item in self.dataset[model]:
  288. if not item.is_geometry_valid():
  289. self.log_error("La géométrie de l'objet est invalide", item=item)
  290. elif item.geom.isMultipart() and len(item.geom.asGeometryCollection()) > 1:
  291. self.log_error("Géométrie multiple", item=item)
  292. def test_geometry_type(self):
  293. """ Contrôle des types de géométries
  294. """
  295. for model in models:
  296. for item in self.dataset[model]:
  297. item_geom_type = item.get_geom_type()
  298. if item_geom_type != model.geom_type:
  299. expected, found = model.get_geom_name(model.geom_type), model.get_geom_name(item_geom_type)
  300. self.log_error(f"Type de géométrie invalide (attendu: {expected}, trouvé: {found})", item=item)
  301. def test_bounding_box(self):
  302. """ Contrôle des emprises
  303. Vérifie que les objets sont dans le périmètre attendu
  304. """
  305. for model in models:
  306. xmin, ymin, xmax, ymax = model.bounding_box
  307. for item in self.dataset[model]:
  308. x1, y1, x2, y2 = item.get_bounding_box()
  309. if any(x < xmin or x > xmax for x in (x1, x2)) or \
  310. any(y < ymin or y > ymax for y in (y1, y2)):
  311. self.log_error("Hors de l'emprise autorisée", item=item)
  312. def test_duplicates(self):
  313. """ Recherche de doublons
  314. Recherche d'éventuels doublons dans des champs qui supposent l'unicité
  315. """
  316. tmp = []
  317. for noeud in self.noeuds:
  318. if not noeud.NO_NOM:
  319. continue
  320. if not noeud.NO_NOM in tmp:
  321. tmp.append(noeud.NO_NOM)
  322. else:
  323. self.log_error("Doublons dans le champs NO_NOM", item=noeud)
  324. tmp = []
  325. for equipement in self.equipements:
  326. if not equipement.EQ_NOM:
  327. continue
  328. if not equipement.EQ_NOM in tmp:
  329. tmp.append(equipement.EQ_NOM)
  330. else:
  331. self.log_error("Doublons dans le champs EQ_NOM", item=equipement)
  332. tmp = []
  333. for zapbo in self.zapbos:
  334. if not zapbo.ID_ZAPBO:
  335. continue
  336. if not zapbo.ID_ZAPBO in tmp:
  337. tmp.append(zapbo.ID_ZAPBO)
  338. else:
  339. self.log_error("Doublons dans le champs ID_ZAPBO", item=zapbo)
  340. def test_constraints_arteres_noeuds(self):
  341. """ Application des contraintes: Artères / Noeuds
  342. Vérifie que les noeuds attachés aux artères existent
  343. """
  344. for artere in self.arteres:
  345. if artere.noeud_a is None:
  346. self.log_error(f"Le noeud lié '{artere.AR_NOEUD_A}' n'existe pas", item=artere)
  347. if artere.noeud_b is None:
  348. self.log_error(f"Le noeud lié '{artere.AR_NOEUD_B}' n'existe pas", item=artere)
  349. def test_constraints_cables_equipements(self):
  350. """ Application des contraintes: Equipements / Cables
  351. Vérifie que les équipements attachés aux cables existent """
  352. for cable in self.cables:
  353. if cable.equipement_a is None:
  354. self.log_error(f"L'équipement lié '{cable.CA_EQ_A}' n'existe pas", item=cable)
  355. if cable.equipement_b is None:
  356. self.log_error(f"L'équipement lié '{cable.CA_EQ_B}' n'existe pas", item=cable)
  357. def test_constraints_cables_equipements_b(self):
  358. """ Application des contraintes: Equipements B
  359. Vérifie que tous les équipements sont l'équipement B d'au moins un cable """
  360. equipements_b = [cable.CA_EQ_B for cable in self.cables]
  361. for equipement in self.equipements:
  362. if equipement.EQ_TYPE == "BAI":
  363. continue
  364. if not equipement.EQ_NOM in equipements_b:
  365. self.log_error(f"L'equipement '{equipement.EQ_NOM}' n'est l'équipement B d'aucun cable et n'est pas un PM", item=equipement)
  366. def test_constraints_equipements_noeuds(self):
  367. """ Application des contraintes: Noeuds / Equipements
  368. Vérifie que les noeuds attachés aux équipements existent
  369. """
  370. for equipement in self.equipements:
  371. if equipement.noeud is None:
  372. self.log_error(f"Le noeud lié '{equipement.EQ_NOM_NOE}' n'existe pas", item=equipement)
  373. def test_graphic_duplicates(self):
  374. """ Recherche de doublons graphiques """
  375. for i, tranchee in enumerate(self.tranchees):
  376. for other in self.tranchees[i+1:]:
  377. if tranchee.geom.equals(other.geom):
  378. self.log_error("Une entité graphique est dupliquée", item=tranchee)
  379. continue
  380. for i, artere in enumerate(self.arteres):
  381. for other in self.arteres[i+1:]:
  382. if artere.geom.equals(other.geom):
  383. self.log_error("Une entité graphique est dupliquée", item=artere)
  384. continue
  385. for i, cable in enumerate(self.cables):
  386. for other in self.cables[i+1:]:
  387. if cable.geom.equals(other.geom) and cable.CA_EQ_A == other.CA_EQ_A and cable.CA_EQ_B == other.CA_EQ_B:
  388. self.log_error("Une entité graphique est dupliquée", item=cable)
  389. continue
  390. for i, noeud in enumerate(self.noeuds):
  391. for other in self.noeuds[i+1:]:
  392. if noeud.geom.equals(other.geom):
  393. self.log_error("Une entité graphique est dupliquée", item=noeud)
  394. continue
  395. for i, zapbo in enumerate(self.zapbos):
  396. for other in self.zapbos[i+1:]:
  397. if zapbo.geom.equals(other.geom):
  398. self.log_error("Une entité graphique est dupliquée", item=zapbo)
  399. continue
  400. def test_positions_noeuds(self):
  401. """ Topologie: Noeuds / Artères
  402. Compare la géométrie des noeuds à celle des artères
  403. """
  404. for artere in self.arteres:
  405. if not artere.noeud_a or not artere.noeud_b:
  406. continue
  407. artere_points = artere.get_points()
  408. noeud_a_point = artere.noeud_a.get_points()[0]
  409. noeud_b_point = artere.noeud_b.get_points()[0]
  410. a_seen_at = []
  411. b_seen_at = []
  412. for i, p in enumerate(artere_points):
  413. if p.distanceSquared(noeud_a_point) <= TOLERANCE:
  414. a_seen_at.append(i)
  415. if p.distanceSquared(noeud_b_point) <= TOLERANCE:
  416. b_seen_at.append(i)
  417. if a_seen_at:
  418. if 0 in a_seen_at or (len(artere_points) - 1) in a_seen_at:
  419. pass # ok
  420. else:
  421. self.log_error(f"Le noeud A n'est pas situé à l'extremité de l'artère", item=artere)
  422. else:
  423. self.log_error(f"Le noeud A n'est pas aux coordonnées attendues ({artere.noeud_a.NO_NOM})", item=artere)
  424. if b_seen_at:
  425. if 0 in b_seen_at or (len(artere_points) - 1) in b_seen_at:
  426. pass # ok
  427. else:
  428. self.log_error(f"Le noeud B n'est pas situé à l'extremité de l'artère", item=artere)
  429. else:
  430. self.log_error(f"Le noeud B n'est pas aux coordonnées attendues ({artere.noeud_b.NO_NOM})", item=artere)
  431. def test_positions_equipements(self):
  432. """ Topologie: Equipements / Cables
  433. Compare la géométrie des équipements à celle des cables """
  434. for cable in self.cables:
  435. if not cable.equipement_a or not cable.equipement_b or not cable.is_geometry_valid() or not cable.equipement_a.noeud or not cable.equipement_b.noeud:
  436. continue
  437. #! attention: on utilise la géométrie du noeud associé à l'équipement, pas celle de l'équipement lui-même
  438. cable_points = cable.get_points()
  439. equip_a_point = cable.equipement_a.noeud.get_points()[0]
  440. equip_b_point = cable.equipement_b.noeud.get_points()[0]
  441. a_seen_at = []
  442. b_seen_at = []
  443. for i, p in enumerate(cable_points):
  444. if p.distanceSquared(equip_a_point) <= TOLERANCE:
  445. a_seen_at.append(i)
  446. if p.distanceSquared(equip_b_point) <= TOLERANCE:
  447. b_seen_at.append(i)
  448. if a_seen_at:
  449. if 0 in a_seen_at or (len(cable_points) - 1) in a_seen_at:
  450. pass # ok
  451. else:
  452. self.log_error(f"L'équipement A n'est pas situé à l'extremité du cable", item=cable)
  453. else:
  454. self.log_error(f"L'équipement A n'est pas aux coordonnées attendues ({cable.equipement_a.EQ_NOM})", item=cable)
  455. if b_seen_at:
  456. if 0 in b_seen_at or (len(cable_points) - 1) in b_seen_at:
  457. pass # ok
  458. else:
  459. self.log_error(f"L'équipement B n'est pas situé à l'extremité du cable", item=cable)
  460. else:
  461. self.log_error(f"L'équipement B n'est pas aux coordonnées attendues ({cable.equipement_b.EQ_NOM})", item=cable)
  462. def test_tranchee_artere(self):
  463. """ Topologie: Tranchées / Artères
  464. Compare la géométrie des tranchées à celle des artères """
  465. arteres_full_buffer = Artere.full_buffer(TOLERANCE)
  466. for tranchee in self.tranchees:
  467. if not arteres_full_buffer.contains(tranchee.geom):
  468. self.log_error("Tranchée ou portion de tranchée sans artère", item=tranchee)
  469. def test_cable_artere(self):
  470. """ Topologie: Cables / Artères
  471. Compare la géométrie des cables à celle des artères """
  472. # Vérifie que chaque cable a au moins une artère (sauf si commentaire contient 'baguette')
  473. arteres_full_buffer = Artere.full_buffer(TOLERANCE)
  474. for cable in self.cables:
  475. if "baguette" in cable.CA_COMMENT.lower() or not cable.is_geometry_valid():
  476. continue
  477. if not arteres_full_buffer.contains(cable.geom):
  478. self.log_error("Cable ou portion de cable sans artère", item=cable)
  479. def test_artere_cable(self):
  480. """ Topologie: Artères / Cables
  481. Compare la géométrie des artères à celle des cables """
  482. # Vérifie que chaque artère a au moins un cable (sauf si commentaire contient un de ces mots 'racco client adductio attente bus 'sans cable'')
  483. cables_full_buffer = Cable.full_buffer(TOLERANCE)
  484. for artere in self.arteres:
  485. if any(x in artere.AR_COMMENT.lower() for x in ['racco','client','adduction','attente','bus','sans cable']):
  486. continue
  487. if not cables_full_buffer.contains(artere.geom):
  488. self.log_error("Artère ou portion d'artère sans cable", item=artere)
  489. def test_arteres_enterrees(self):
  490. """ Données des artères enterrées
  491. Contrôle les données des artères enterrées ou en encorbellement """
  492. for artere in self.arteres:
  493. if artere.AR_TYPE_FO in ["FACADE", "AERIEN"]:
  494. continue
  495. for field in ["AR_NB_FOUR", "AR_FOU_DIS", "AR_DIAM_FO"]:
  496. if not hasattr(artere, field):
  497. self.log_error("Le champs est obligatoire: {}".format(field), item=artere)
  498. elif getattr(artere, field) == "":
  499. self.log_error("Le champs doit être renseigné: {}".format(field), item=artere)
  500. def test_dates_install(self):
  501. """ Dates d'installation
  502. Vérifie que les dates d'installation sont renseignées pour les équipements en service """
  503. for equipement in self.equipements:
  504. if equipement.EQ_STATUT == "REC" and not equipement.EQ_DATE_IN:
  505. self.log_error("Date d'installation (EQ_DATE_IN) manquante", item=equipement)
  506. for cable in self.cables:
  507. if cable.CA_STATUT == "REC" and not cable.CA_DATE_IN:
  508. self.log_error("Date d'installation (CA_DATE_IN) manquante", item=cable)
  509. for tranchee in self.tranchees:
  510. if tranchee.TR_STATUT == "REC" and not tranchee.TR_DATE_IN:
  511. self.log_error("Date d'installation (TR_DATE_IN) manquante", item=tranchee)
  512. def test_largeur_tranchees(self):
  513. """ Tranchées: Dimensions
  514. Vérifie que la cohérence des dimensions des tranchées """
  515. for tranchee in self.tranchees:
  516. if not ("FONCAGE" in tranchee.TR_MOD_POS or
  517. "FORAGE" in tranchee.TR_MOD_POS or
  518. "ENCORBELLEMENT" in tranchee.TR_MOD_POS):
  519. try:
  520. if float(tranchee.TR_LARG) > 0:
  521. continue
  522. except (TypeError, ValueError):
  523. pass
  524. self.log_error("La largeur de la tranchée doit être supérieure à 0", item=tranchee)
  525. def test_dimensions_fourreaux(self):
  526. """ Dimensions logiques: fourreaux
  527. Vérifie que les nombres de fourreaux renseignés sont cohérents """
  528. for artere in self.arteres:
  529. try:
  530. if not int(artere.AR_FOU_DIS) <= int(artere.AR_NB_FOUR):
  531. self.log_error("Le nombre de fourreaux disponibles (AR_FOU_DIS) doit être inférieur au nombre total (AR_NB_FOUR)", item=artere)
  532. except (TypeError, ValueError):
  533. pass
  534. for cable in self.cables:
  535. try:
  536. if not int(cable.CA_NB_FO_U) <= int(cable.CA_NB_FO):
  537. self.log_error("Le nombre de fourreaux utilisés (CA_NB_FO_U) doit être inférieur au nombre total (CA_NB_FO)", item=cable)
  538. if not int(cable.CA_NB_FO_D) <= int(cable.CA_NB_FO):
  539. self.log_error("Le nombre de fourreaux disponibles (CA_NB_FO_D) doit être inférieur au nombre total (CA_NB_FO)", item=cable)
  540. except (TypeError, ValueError):
  541. pass
  542. def test_prop_gest(self):
  543. """ Propriétaires / Gestionnaires
  544. Vérifie la cohérence des propriétaires et gestionnaires renseignés """
  545. cases = {
  546. "ORANGE": ["ORANGE"],
  547. "ERDF": ["ERDF"],
  548. "ENEDIS": ["ENEDIS"],
  549. "MANCHE NUMERIQUE": ["MANCHE FIBRE", "MANCHE TELECOM"]
  550. }
  551. for artere in self.arteres:
  552. for prop, gests in cases.items():
  553. if artere.AR_PRO_FOU.upper() == prop and not artere.AR_GEST_FO.upper() in gests:
  554. self.log_error("Propriétaire: {}, gestionnaire(s) possible(s): {} (renseigné: {})".format(prop, ', '.join(gests), artere.AR_GEST_FO), item=artere)
  555. for equipement in self.equipements:
  556. for prop, gests in cases.items():
  557. if equipement.EQ_PRO.upper() == prop and not equipement.EQ_GEST.upper() in gests:
  558. self.log_error("Propriétaire: {}, gestionnaire(s) possible(s): {} (renseigné: {})".format(prop, ', '.join(gests), equipement.EQ_GEST), item=equipement)
  559. for noeud in self.noeuds:
  560. for prop, gests in cases.items():
  561. if noeud.NO_PRO.upper() == prop and not noeud.NO_GEST.upper() in gests:
  562. self.log_error("Propriétaire: {}, gestionnaire(s) possible(s): {} (renseigné: {})".format(prop, ', '.join(gests), noeud.NO_GEST), item=noeud)
  563. for artere in self.arteres:
  564. if artere.AR_PRO_FOU.upper() == "ORANGE" and (artere.noeud_a.NO_PRO.upper() == "MANCHE NUMERIQUE" \
  565. or artere.noeud_b.NO_PRO.upper() == "MANCHE NUMERIQUE"):
  566. self.log_error("Les noeuds d'une artère ORANGE ne peuvent pas être propriété de MANCHE NUMERIQUE", item=artere)
  567. def test_statuts(self):
  568. """ Cohérence des statuts
  569. Vérifie que les statuts des éléments sont cohérents """
  570. for cable in self.cables:
  571. if cable.equipement_a and cable.CA_STATUT == "REC" and cable.equipement_a.EQ_STATUT in ('PRO', 'EXE'):
  572. self.log_error(f"Incohérence de statut entre le cable et son équipement A", item=cable)
  573. if cable.equipement_b and cable.CA_STATUT == "REC" and cable.equipement_b.EQ_STATUT in ('PRO', 'EXE'):
  574. self.log_error(f"Incohérence de statut entre le cable et son équipement B", item=cable)
  575. def _za_for_pbo(self, pbo):
  576. # retourne la ZAPBO correspondant à la PBO en parametre, None si aucune
  577. if hasattr(pbo, 'zapbo') and pbo.zapbo:
  578. return pbo.zapbo
  579. for zapbo in self.zapbos:
  580. if zapbo.geom.contains(pbo.geom) and pbo.EQ_NOM in zapbo.ID_ZAPBO:
  581. return zapbo
  582. return None
  583. def test_pbos(self):
  584. """ Topologie: PBO / ZAPBO
  585. Compare la géométrie et le nom des équipements de type PBO à celle des ZAPBO
  586. """
  587. # Verifier que chaque equipement de type PBO est contenu dans une zapbo, et que le nom de la zapbo contient le nom de l'equipement
  588. for equipement in self.equipements:
  589. if not equipement.EQ_TYPE == "PBO":
  590. continue
  591. #zapbos englobant l'equipement
  592. candidates = [z for z in self.zapbos if z.geom.contains(equipement.noeud.geom)]
  593. # le pbo doit être contenu dans une zapbo
  594. if not candidates:
  595. self.log_error("Le PBO n'est contenu dans aucune ZAPBO", item=equipement)
  596. continue
  597. # On se base sur le nom pour trouver la zapbo correspondante
  598. equipement.zapbo = next((z for z in candidates if equipement.EQ_NOM in z.ID_ZAPBO), None)
  599. if not equipement.zapbo:
  600. self.log_error("Le nom de la PBO ne coincide avec le nom d'aucune des ZAPBO qui le contiennent", item=equipement)
  601. continue
  602. if equipement.EQ_STATUT != equipement.zapbo.STATUT:
  603. self.log_error("Le statut de la PBO ne coincide pas avec celui de sa ZAPBO", item=equipement)
  604. continue
  605. def test_comments(self):
  606. """ Présence de commentaires
  607. Vérifie la présence de commentaires là où ils sont attendus
  608. """
  609. for equipement in self.equipements:
  610. if equipement.EQ_STATUT != "REC" and not equipement.EQ_COMMENT:
  611. self.log_error("L'equipement n'est pas en REC, un commentaire devrait en préciser la raison", item=equipement)
  612. for zapbo in self.zapbos:
  613. if zapbo.STATUT != "REC" and not zapbo.COMMENTAIR:
  614. self.log_error("La Zapbo n'est pas en REC, un commentaire devrait en préciser la raison", item=zapbo)
  615. def test_zapbos_prises(self):
  616. """ Topologie: Zapbos / Prises
  617. Toutes les zapbo contiennent au moins une prise"""
  618. self._load_prises()
  619. if not self.prises:
  620. raise CheckingException("La couche des prises n'est pas chargée")
  621. for zapbo in self.zapbos:
  622. if not zapbo.prises:
  623. self.log_error("La Zapbo ne contient aucune prise", item=zapbo)
  624. for prise in self.prises:
  625. if prise.ID_ZAPM_PA in self.zapm_pa and not prise.zapbos:
  626. self.log_error("La prise n'est contenue dans aucune ZAPBO", item=prise)
  627. def test_pbo_dimension(self):
  628. """ Dimensionnement des PBO
  629. Compare la couche des prises (si chargée) au dimensionnement des PBO"""
  630. self._load_prises()
  631. if not self.prises:
  632. raise CheckingException("La couche des prises n'est pas chargée")
  633. for equipement in self.equipements:
  634. if not equipement.EQ_TYPE == "PBO":
  635. continue
  636. zapbo = self._za_for_pbo(equipement)
  637. if not zapbo:
  638. continue
  639. zapbo.nb_prises = sum([int(prise.NB_PRISE) for prise in zapbo.prises if prise.NB_PRISE])
  640. # Controle du dimensionnement des PBO
  641. if equipement.EQ_TYPE_PH == 'PBO 6' and not zapbo.nb_prises < 6:
  642. self.log_error("Le PBO 6 contient plus de 5 prises", item=equipement)
  643. if equipement.EQ_TYPE_PH == 'PBO 12' and not zapbo.nb_prises >= 6 and zapbo.nb_prises <= 8:
  644. self.log_error("Le PBO 12 contient moins de 6 prises ou plus de 8 prises", item=equipement)
  645. if zapbo.STATUT == "REC" and not equipement.EQ_STATUT == "REC":
  646. self.log_error("Le statut du PBO n'est pas cohérent avec le statut de sa ZAPBO", item=equipement)
  647. if equipement.EQ_STATUT == "REC" and not zapbo.STATUT == "REC" and not zapbo.ID_ZAPBO[:4].lower() == "att_":
  648. self.log_error("Le statut du PBO n'est pas cohérent avec le statut de sa ZAPBO", item=equipement)
  649. checkers = [Mn1Checker]