21 lines
466 B
Python
21 lines
466 B
Python
|
"""
|
||
|
Author: Michel Peltriaux
|
||
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
||
|
Contact: michel.peltriaux@sgdnord.rlp.de
|
||
|
Created on: 25.10.21
|
||
|
|
||
|
"""
|
||
|
from konova.utils.quality import AbstractQualityChecker
|
||
|
|
||
|
|
||
|
class EmaQualityChecker(AbstractQualityChecker):
|
||
|
def run_check(self):
|
||
|
""" Perform all defined data checks
|
||
|
|
||
|
Returns:
|
||
|
|
||
|
"""
|
||
|
|
||
|
self._check_geometry()
|
||
|
self.valid = len(self.messages) == 0
|