#!/usr/bin/python3
# -*- coding: utf-8 -*-
########################################################################
#
# This file is part of python module <pyspc>.
# Copyright (C) 2013-2021 R. Marty
# (renaud.marty@developpement-durable.gouv.fr)
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program (see COPYING.txt).
# If not, see <http://www.gnu.org/licenses/>.
#
########################################################################
"""Méta-data - Statistiques OUAHS - Utilitaires."""
[docs]
def ignore_sample(row):
"""Définir si une valeur est exclue."""
if float(row['continuity1']) > 0 or float(row['continuity8']) > 0:
return 'Oui'
return 'Non'
[docs]
def combining(params, row):
"""Combine (qualification, continuite) pour les données continues."""
value = 1
for n, w in params.items():
value *= row[n] * w
return value