mn2_rec.py 46 KB

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